{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js", "ssg:https://framerusercontent.com/modules/hk72mfmzadC4nd02UfDk/VssxqK1fQJ5D2ejNfu5j/Vhzg4ztxW.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useRef,useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles}from\"https://framer.com/m/framer/default-utils.js\";/**\n * @framerIntrinsicWidth 600\n * @framerIntrinsicHeight 400\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n *\n * @framerDisableUnlink\n */export default function Embed({type,url,html,style={}}){if(type===\"url\"&&url){return /*#__PURE__*/_jsx(EmbedUrl,{url:url,style:style});}if(type===\"html\"&&html){return /*#__PURE__*/_jsx(EmbedHtml,{html:html,style:style});}return /*#__PURE__*/_jsx(Instructions,{style:style});}addPropertyControls(Embed,{type:{type:ControlType.Enum,defaultValue:\"url\",displaySegmentedControl:true,options:[\"url\",\"html\"],optionTitles:[\"URL\",\"HTML\"]},url:{title:\"URL\",type:ControlType.String,description:\"Some websites don\u2019t support embedding.\",hidden(props){return props.type!==\"url\";}},html:{title:\"HTML\",type:ControlType.String,displayTextArea:true,hidden(props){return props.type!==\"html\";}}});function Instructions({style}){return /*#__PURE__*/_jsx(\"div\",{style:{minHeight:getMinHeight(style),...emptyStateStyle,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a website or widget, add it to the properties\\xa0panel.\"})});}function EmbedUrl({url,style}){const hasAutoHeight=!style.height;// Add https:// if the URL does not have a protocol.\nif(!/[a-z]+:\\/\\//.test(url)){url=\"https://\"+url;}const onCanvas=useIsOnCanvas();// We need to check if the url is blocked inside an iframe by the X-Frame-Options\n// or Content-Security-Policy headers on the backend.\nconst[state,setState]=useState(onCanvas?undefined:false);useEffect(()=>{// We only want to check on the canvas.\n// On the website we want to avoid the additional delay.\nif(!onCanvas)return;// TODO: We could also use AbortController here.\nlet isLastEffect=true;setState(undefined);async function load(){const response=await fetch(\"https://api.framer.com/functions/check-iframe-url?url=\"+encodeURIComponent(url));if(response.status==200){const{isBlocked}=await response.json();if(isLastEffect){setState(isBlocked);}}else{const message=await response.text();console.error(message);const error=new Error(\"This site can\u2019t be reached.\");setState(error);}}load().catch(error=>{console.error(error);setState(error);});return()=>{isLastEffect=false;};},[url]);if(onCanvas&&hasAutoHeight){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"URL embeds do not support auto height.\",style:style});}if(!url.startsWith(\"https://\")){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Unsupported protocol.\",style:style});}if(state===undefined){return /*#__PURE__*/_jsx(LoadingIndicator,{});}if(state instanceof Error){return /*#__PURE__*/_jsx(ErrorMessage,{message:state.message,style:style});}if(state===true){const message=`Can\u2019t embed ${url} due to its content security policy.`;return /*#__PURE__*/_jsx(ErrorMessage,{message:message,style:style});}return /*#__PURE__*/_jsx(\"iframe\",{src:url,style:{...iframeStyle,...style},loading:\"lazy\",// @ts-ignore\nfetchPriority:onCanvas?\"low\":\"auto\",referrerPolicy:\"no-referrer\",sandbox:getSandbox(onCanvas)});}const iframeStyle={width:\"100%\",height:\"100%\",border:\"none\"};function getSandbox(onCanvas){const result=[\"allow-same-origin\",\"allow-scripts\"];if(!onCanvas){result.push(\"allow-downloads\",\"allow-forms\",\"allow-modals\",\"allow-orientation-lock\",\"allow-pointer-lock\",\"allow-popups\",\"allow-popups-to-escape-sandbox\",\"allow-presentation\",\"allow-storage-access-by-user-activation\",\"allow-top-navigation-by-user-activation\");}return result.join(\" \");}function EmbedHtml({html,...props}){const hasScript=html.includes(\"</script>\");if(hasScript){const hasSplineViewer=html.includes(\"</spline-viewer>\");const hasComment=html.includes(\"<!-- framer-direct-embed -->\");if(hasSplineViewer||hasComment){return /*#__PURE__*/_jsx(EmbedHtmlWithScripts,{html:html,...props});}return /*#__PURE__*/_jsx(EmbedHtmlInsideIframe,{html:html,...props});}return /*#__PURE__*/_jsx(EmbedHtmlWithoutScripts,{html:html,...props});}function EmbedHtmlInsideIframe({html,style}){const ref=useRef();const[iframeHeight,setIframeHeight]=useState(0);// Handle auto sizing\nuseEffect(()=>{var _ref_current;const iframeWindow=(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.contentWindow;function handleMessage(event){if(event.source!==iframeWindow)return;const data=event.data;if(typeof data!==\"object\"||data===null)return;const height=data.embedHeight;if(typeof height!==\"number\")return;setIframeHeight(height);}window.addEventListener(\"message\",handleMessage);// After SSG the iframe loads before we attach the event handler,\n// therefore we need to request the latest height from the iframe.\niframeWindow===null||iframeWindow===void 0?void 0:iframeWindow.postMessage(\"getEmbedHeight\",\"*\");return()=>{window.removeEventListener(\"message\",handleMessage);};},[]);// The CSS is mainly copied from:\n// FramerStudio/src/app/vekter/src/renderer/setDefaultFont.ts\n// FramerStudio/src/app/vekter/src/export/globalStylesForExport.ts\nconst srcDoc=`\n<html>\n    <head>\n        <style>\n            html, body {\n                margin: 0;\n                padding: 0;\n            }\n\n            body {\n                display: flex;\n                justify-content: center;\n                align-items: center;\n                min-height: 100vh;\n            }\n\n            :root {\n                -webkit-font-smoothing: antialiased;\n                -moz-osx-font-smoothing: grayscale;\n            }\n\n            * {\n                box-sizing: border-box;\n                -webkit-font-smoothing: inherit;\n            }\n\n            h1, h2, h3, h4, h5, h6, p, figure {\n                margin: 0;\n            }\n\n            body, input, textarea, select, button {\n                font-size: 12px;\n                font-family: sans-serif;\n            }\n        </style>\n    </head>\n    <body>\n        ${html}\n        <script type=\"module\">\n            let height = 0\n\n            function sendEmbedHeight() {\n                window.parent.postMessage({\n                    embedHeight: height\n                }, \"*\")\n            }\n\n            const observer = new ResizeObserver((entries) => {\n                if (entries.length !== 1) return\n                const entry = entries[0]\n                if (entry.target !== document.body) return\n\n                height = entry.contentRect.height\n                sendEmbedHeight()\n            })\n\n            observer.observe(document.body)\n\n            window.addEventListener(\"message\", (event) => {\n                if (event.source !== window.parent) return\n                if (event.data !== \"getEmbedHeight\") return\n                sendEmbedHeight()\n            })\n        </script>\n    <body>\n</html>\n`;const currentStyle={...iframeStyle,...style};const hasAutoHeight=!style.height;if(hasAutoHeight){currentStyle.height=iframeHeight+\"px\";}return /*#__PURE__*/_jsx(\"iframe\",{ref:ref,style:currentStyle,srcDoc:srcDoc});}function EmbedHtmlWithScripts({html,style}){const ref=useRef();useEffect(()=>{const div=ref.current;if(!div)return;div.innerHTML=html;executeScripts(div);return()=>{div.innerHTML=\"\";};},[html]);return /*#__PURE__*/_jsx(\"div\",{ref:ref,style:{...htmlStyle,...style}});}function EmbedHtmlWithoutScripts({html,style}){return /*#__PURE__*/_jsx(\"div\",{style:{...htmlStyle,...style},dangerouslySetInnerHTML:{__html:html}});}const htmlStyle={width:\"100%\",height:\"100%\",display:\"flex\",flexDirection:\"column\",justifyContent:\"center\",alignItems:\"center\"};// This function replaces scripts with executable ones.\n// https://stackoverflow.com/questions/1197575/can-scripts-be-inserted-with-innerhtml\nfunction executeScripts(node){if(node instanceof Element&&node.tagName===\"SCRIPT\"){const script=document.createElement(\"script\");script.text=node.innerHTML;for(const{name,value}of node.attributes){script.setAttribute(name,value);}node.parentElement.replaceChild(script,node);}else{for(const child of node.childNodes){executeScripts(child);}}}// Generic components\nfunction LoadingIndicator(){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-componentPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"Loading\u2026\"})});}function ErrorMessage({message,style}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{minHeight:getMinHeight(style),...containerStyles,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:message})});}const centerTextStyle={textAlign:\"center\",minWidth:140};// Returns a min-height if the component is using auto-height.\nfunction getMinHeight(style){const hasAutoHeight=!style.height;if(hasAutoHeight)return 200;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Embed\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"400\",\"framerIntrinsicWidth\":\"600\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "// Generated by Framer (3bc9980)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,SVG,useActiveVariantCallback,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useOverlayState,useQueryData,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import*as ReactDOM from\"react-dom\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/ALzPzo9ZL7qsyNt6jnNi/Smooth_Scroll.js\";import ButtonsButton from\"#framer/local/canvasComponent/k6ul5KOU_/k6ul5KOU_.js\";import Footer from\"#framer/local/canvasComponent/KGNM2RJJ0/KGNM2RJJ0.js\";import HighlightedText from\"#framer/local/canvasComponent/ms02EJox8/ms02EJox8.js\";import CardWrapped from\"#framer/local/canvasComponent/QPFPubUWZ/QPFPubUWZ.js\";import Navigation from\"#framer/local/canvasComponent/TQ6OBi3SW/TQ6OBi3SW.js\";import Team from\"#framer/local/collection/ahTd3Plsu/ahTd3Plsu.js\";import*as sharedStyle4 from\"#framer/local/css/LgXPYJgSy/LgXPYJgSy.js\";import*as sharedStyle2 from\"#framer/local/css/LKn1VrNz3/LKn1VrNz3.js\";import*as sharedStyle3 from\"#framer/local/css/oxSyeeDco/oxSyeeDco.js\";import*as sharedStyle5 from\"#framer/local/css/rE0PSOmsG/rE0PSOmsG.js\";import*as sharedStyle1 from\"#framer/local/css/Vlhp0Vikv/Vlhp0Vikv.js\";import*as sharedStyle from\"#framer/local/css/VN8M6HAfa/VN8M6HAfa.js\";import metadataProvider from\"#framer/local/webPageMetadata/Vhzg4ztxW/Vhzg4ztxW.js\";const NavigationFonts=getFonts(Navigation);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const MotionHeaderWithFX=withFX(motion.header);const RichTextWithFX=withFX(RichText);const MotionDivWithFX=withFX(motion.div);const PhosphorFonts=getFonts(Phosphor);const HighlightedTextFonts=getFonts(HighlightedText);const CardWrappedFonts=getFonts(CardWrapped);const ButtonsButtonFonts=getFonts(ButtonsButton);const EmbedFonts=getFonts(Embed);const ImageWithFX=withFX(Image);const FooterFonts=getFonts(Footer);const SmoothScrollFonts=getFonts(SmoothScroll);const breakpoints={AMCeZc8vT:\"(max-width: 809px)\",i71xf7wIi:\"(min-width: 3008px)\",ukQPlHPcU:\"(min-width: 1200px) and (max-width: 3007px)\",y81HLk_Sl:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-EJhXT\";const variantClassNames={AMCeZc8vT:\"framer-v-1mbbxrd\",i71xf7wIi:\"framer-v-q7no4t\",ukQPlHPcU:\"framer-v-tnpcwt\",y81HLk_Sl:\"framer-v-c5b0cv\"};const transition1={damping:100,delay:.2,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:15,y:0};const transition2={damping:100,delay:.4,mass:1,stiffness:400,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const transition3={damping:100,delay:.6,mass:1,stiffness:400,type:\"spring\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const transition4={damping:100,delay:.8,mass:1,stiffness:400,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation5={opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition5={damping:100,delay:.075,mass:1,stiffness:400,type:\"spring\"};const textEffect={effect:animation5,startDelay:.5,tokenization:\"line\",transition:transition5,trigger:\"onMount\",type:\"appear\"};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:100,y:0};const transition6={damping:60,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition7={damping:100,delay:.1,mass:1,stiffness:400,type:\"spring\"};const transition8={damping:100,delay:.3,mass:1,stiffness:400,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition9={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition9,x:0,y:0};const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition9,x:0,y:0};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"ukQPlHPcU\",Phone:\"AMCeZc8vT\",Tablet:\"y81HLk_Sl\",XDR:\"i71xf7wIi\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"ukQPlHPcU\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,kHes4vm0NJYOStbo0S,ZdPHaqz0tJYOStbo0S,pBiSJt1XVJYOStbo0S,iL8DXz2CBJYOStbo0S,fhgjWqsB9JYOStbo0S,P9pMZ9OeUJYOStbo0S,idJYOStbo0S,kHes4vm0NU8q9Us3sU,ZdPHaqz0tU8q9Us3sU,pBiSJt1XVU8q9Us3sU,iL8DXz2CBU8q9Us3sU,fhgjWqsB9U8q9Us3sU,P9pMZ9OeUU8q9Us3sU,idU8q9Us3sU,kHes4vm0NGI6Hylkkn,ZdPHaqz0tGI6Hylkkn,pBiSJt1XVGI6Hylkkn,iL8DXz2CBGI6Hylkkn,fhgjWqsB9GI6Hylkkn,P9pMZ9OeUGI6Hylkkn,idGI6Hylkkn,kHes4vm0Nth13PGhNV,ZdPHaqz0tth13PGhNV,pBiSJt1XVth13PGhNV,iL8DXz2CBth13PGhNV,fhgjWqsB9th13PGhNV,P9pMZ9OeUth13PGhNV,idth13PGhNV,kHes4vm0NqW2sBs4a0,ZdPHaqz0tqW2sBs4a0,pBiSJt1XVqW2sBs4a0,iL8DXz2CBqW2sBs4a0,fhgjWqsB9qW2sBs4a0,P9pMZ9OeUqW2sBs4a0,idqW2sBs4a0,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-EJhXT`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-EJhXT`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const CTmAkyilKwelu7j=({overlay,paginationInfo})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const onClick1wvko5h=({overlay,paginationInfo})=>activeVariantCallback(async(...args)=>{overlay.hide();});const ref1=React.useRef(null);const elementId=useRouteElementId(\"wNiNpOwn3\");const ref2=React.useRef(null);const elementId1=useRouteElementId(\"S48s0AycK\");const ref3=React.useRef(null);const elementId2=useRouteElementId(\"E1cINisI0\");const ref4=React.useRef(null);const elementId3=useRouteElementId(\"Ydswlq77s\");const ref5=React.useRef(null);const elementId4=useRouteElementId(\"tG_t7AhHi\");const ref6=React.useRef(null);const elementId5=useRouteElementId(\"a2v9f4sZF\");const ref7=React.useRef(null);const elementId6=useRouteElementId(\"eutxopSNO\");const ref8=React.useRef(null);const elementId7=useRouteElementId(\"k5uEp1vdq\");const ref9=React.useRef(null);const elementId8=useRouteElementId(\"FZgA7ZYFD\");const ref10=React.useRef(null);const elementId9=useRouteElementId(\"cHkA4zzS0\");const ref11=React.useRef(null);const elementId10=useRouteElementId(\"cXa15PQLB\");const ref12=React.useRef(null);const router=useRouter();const elementId11=useRouteElementId(\"OHZZVD4q1\");const ref13=React.useRef(null);const elementId12=useRouteElementId(\"OAGmZLwa0\");const ref14=React.useRef(null);const elementId13=useRouteElementId(\"XlAYb2Lq_\");const ref15=React.useRef(null);const elementId14=useRouteElementId(\"a3rkY6Rdq\");const ref16=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"ukQPlHPcU\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-tnpcwt\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:91,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ep8wvo-container\",layoutScroll:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AMCeZc8vT:{variant:\"FpYXS6IHe\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"oi8sGjQn3\",layoutId:\"oi8sGjQn3\",style:{width:\"100%\"},variant:\"Wd8zOREu2\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(MotionHeaderWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:110,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:2250},className:\"framer-fxpwdw\",\"data-framer-name\":\"Hero\",name:\"Hero\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4tabin\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u29p5y\",children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-rjaeex\",\"data-styles-preset\":\"VN8M6HAfa\",style:{\"--framer-text-color\":\"var(--token-74a0535f-f442-41a8-b151-0cccf98a8ad7, rgb(255, 255, 255))\"},children:\"Welcome\"})}),className:\"framer-1i9ildy\",\"data-framer-appear-id\":\"1i9ildy\",fonts:[\"Inter\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-rjaeex\",\"data-styles-preset\":\"VN8M6HAfa\",style:{\"--framer-text-color\":\"var(--token-74a0535f-f442-41a8-b151-0cccf98a8ad7, rgb(255, 255, 255))\"},children:\"To\"})}),className:\"framer-1tokoui\",\"data-framer-appear-id\":\"1tokoui\",fonts:[\"Inter\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-35dtyd\",children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation3,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-rjaeex\",\"data-styles-preset\":\"VN8M6HAfa\",style:{\"--framer-text-color\":\"var(--token-74a0535f-f442-41a8-b151-0cccf98a8ad7, rgb(255, 255, 255))\"},children:\"Real\"})}),className:\"framer-1408tdy\",\"data-framer-appear-id\":\"1408tdy\",fonts:[\"Inter\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation4,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-rjaeex\",\"data-styles-preset\":\"VN8M6HAfa\",style:{\"--framer-text-color\":\"var(--token-74a0535f-f442-41a8-b151-0cccf98a8ad7, rgb(255, 255, 255))\"},children:\"Pilates\"})}),className:\"framer-163g07y\",\"data-framer-appear-id\":\"163g07y\",fonts:[\"Inter\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2574,pixelWidth:3861,positionX:\"center\",positionY:\"center\",sizes:\"calc(min(100vw, 2000px) * 1.0008)\",src:\"https://framerusercontent.com/images/Lf8iex7SX1YPq8Qcbaas3BP6tcs.jpg\",srcSet:\"https://framerusercontent.com/images/Lf8iex7SX1YPq8Qcbaas3BP6tcs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Lf8iex7SX1YPq8Qcbaas3BP6tcs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Lf8iex7SX1YPq8Qcbaas3BP6tcs.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Lf8iex7SX1YPq8Qcbaas3BP6tcs.jpg 3861w\"},className:\"framer-gul7wn\",\"data-framer-name\":\"BG\",name:\"BG\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-q1z8dg\",\"data-framer-name\":\"Overlay\",name:\"Overlay\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10sxhng\",\"data-framer-name\":\"Stack\",id:elementId,name:\"Stack\",ref:ref2,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tq9214\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-rwfkoa\",\"data-styles-preset\":\"Vlhp0Vikv\",children:\"Real Pilates is completely focused on wellbeing. We\u2019re more than a studio \u2013 we\u2019re a sanctuary where you can de-stress, restore, reconnect and grow. We\u2019re a truly positive force for good.\"})}),className:\"framer-1bws5mm\",\"data-framer-name\":\"At Real Pilates, we have the formula for success and are determined to empower you with outstanding know-how, resources, training and support to run your own thriving venture.\",effect:textEffect,fonts:[\"Inter\"],name:\"At Real Pilates, we have the formula for success and are determined to empower you with outstanding know-how, resources, training and support to run your own thriving venture.\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-131wz6d\",\"data-framer-name\":\"Years\",name:\"Years\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AMCeZc8vT:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-rwfkoa\",\"data-styles-preset\":\"Vlhp0Vikv\",style:{\"--framer-text-color\":\"var(--token-4fde22cd-ce5e-4c0a-a486-e2e34188b385, rgb(13, 13, 13))\"},children:\"Since\"})}),className:\"framer-i9cyzi\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1vgul6n\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AMCeZc8vT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"100px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-5px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-daa52954-616c-4840-84cc-5688c6feadcd, rgb(36, 168, 36))\"},children:\"2\"})})},y81HLk_Sl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"140px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-8px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-daa52954-616c-4840-84cc-5688c6feadcd, rgb(36, 168, 36))\"},children:\"2\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation7,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"160px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-11px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-daa52954-616c-4840-84cc-5688c6feadcd, rgb(36, 168, 36))\"},children:\"2\"})}),className:\"framer-1ncdxs0\",fonts:[\"GF;Manrope-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AMCeZc8vT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"100px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-5px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-daa52954-616c-4840-84cc-5688c6feadcd, rgb(36, 168, 36))\"},children:\"0\"})})},y81HLk_Sl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"140px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-8px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-daa52954-616c-4840-84cc-5688c6feadcd, rgb(36, 168, 36))\"},children:\"0\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation7,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"160px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-11px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-daa52954-616c-4840-84cc-5688c6feadcd, rgb(36, 168, 36))\"},children:\"0\"})}),className:\"framer-1nrvs2a\",fonts:[\"GF;Manrope-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AMCeZc8vT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"100px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-5px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-daa52954-616c-4840-84cc-5688c6feadcd, rgb(36, 168, 36))\"},children:\"0\"})})},y81HLk_Sl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"140px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-8px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-daa52954-616c-4840-84cc-5688c6feadcd, rgb(36, 168, 36))\"},children:\"0\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation7,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"160px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-11px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-daa52954-616c-4840-84cc-5688c6feadcd, rgb(36, 168, 36))\"},children:\"0\"})}),className:\"framer-qh5mvf\",fonts:[\"GF;Manrope-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AMCeZc8vT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"100px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-5px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-daa52954-616c-4840-84cc-5688c6feadcd, rgb(36, 168, 36))\"},children:\"9\"})})},y81HLk_Sl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"140px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-8px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-daa52954-616c-4840-84cc-5688c6feadcd, rgb(36, 168, 36))\"},children:\"9\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation7,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"160px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-11px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-daa52954-616c-4840-84cc-5688c6feadcd, rgb(36, 168, 36))\"},children:\"9\"})}),className:\"framer-ntgvq4\",fonts:[\"GF;Manrope-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-6j26zx\",\"data-framer-name\":\"Stack\",name:\"Stack\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nbb58f\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nika7l\",\"data-framer-name\":\"Stack\",name:\"Stack\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1nsloer\",\"data-framer-name\":\"graphic\",fill:'var(--token-17c9edf0-6f10-415a-96ce-ba26abf08760, rgb(43, 204, 43)) /* {\"name\":\"Primary-Main\"} */',intrinsicHeight:60,intrinsicWidth:60,name:\"graphic\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"60\" height=\"60\" viewBox=\"0 0 256 256\"><path d=\"M112.41 102.53a8 8 0 0 1 5.06-10.12l12-4A8 8 0 0 1 140 96v40a8 8 0 0 1-16 0v-28.9l-1.47.49a8 8 0 0 1-10.12-5.06ZM248 208a8 8 0 0 1-8 8H16a8 8 0 0 1 0-16h8v-96a16 16 0 0 1 16-16h40V56a16 16 0 0 1 16-16h64a16 16 0 0 1 16 16v72h40a16 16 0 0 1 16 16v56h8a8 8 0 0 1 8 8Zm-72-64v56h40v-56Zm-80 56h64V56H96Zm-56 0h40v-96H40Z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-rwfkoa\",\"data-styles-preset\":\"Vlhp0Vikv\",children:\"Friendly, Professional & Simply the Best\"})}),className:\"framer-odzm7w\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],name:\"Title\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1uocetb\",\"data-styles-preset\":\"LKn1VrNz3\",children:\"All of our instructors are trained and certified in the STOTT PILATES method of exercise. We are experts in our field and have specialist training in injuries and special populations such as pregnant women. Many of us have backgrounds in exercise physiology, rehabilitation, personal training, group exercise, weight training, yoga and dance. Our instructors are inspirational, passionate, caring and calm, but most importantly they want to make a difference in your lives.\"})}),className:\"framer-190dij5\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],name:\"Description\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e8ltyn\",\"data-framer-name\":\"Stack\",name:\"Stack\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-4zlpxa-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-17c9edf0-6f10-415a-96ce-ba26abf08760, rgb(43, 204, 43))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Barbell\",id:\"ODU4WUktz\",layoutId:\"ODU4WUktz\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-rwfkoa\",\"data-styles-preset\":\"Vlhp0Vikv\",children:\"State-of-the-Art Equipment\"})}),className:\"framer-ctxlx8\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],name:\"Title\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1uocetb\",\"data-styles-preset\":\"LKn1VrNz3\",children:\"We take great pride in the superior design of the equipment and accessories in our studios. We have two types of mats and various props available for our mat classes, as well as the latest line of STOTT PILATES equipment. You can experience the V2Max Plus reformers with full vertical frames, split pedal stability chairs, ladder barrels, arc barrels, spine correctors, spine supporters, jumpboards and rotational diskboards, to name a few.\"})}),className:\"framer-sd9kws\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],name:\"Description\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zv9kks\",\"data-framer-name\":\"Stack\",name:\"Stack\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1j0nlm1-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-17c9edf0-6f10-415a-96ce-ba26abf08760, rgb(43, 204, 43))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Heart\",id:\"EYROfrNd_\",layoutId:\"EYROfrNd_\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-rwfkoa\",\"data-styles-preset\":\"Vlhp0Vikv\",children:\"Our Promise & Philosophy\"})}),className:\"framer-c6a5fv\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],name:\"Title\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1uocetb\",\"data-styles-preset\":\"LKn1VrNz3\",children:\"We aim to enrich your life by developing your fitness and wellbeing. Real Pilates will empower you to reach your goals and, by making a difference in your life, we will also improve our place in this world. We will bring health, serenity and peace to you through our holistic approach to wellbeing.\"})}),className:\"framer-mzd5ze\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],name:\"Description\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nh7b07\",\"data-framer-name\":\"Stack\",name:\"Stack\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wnmlii-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-17c9edf0-6f10-415a-96ce-ba26abf08760, rgb(43, 204, 43))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Smiley\",id:\"Mw0BYXTrt\",layoutId:\"Mw0BYXTrt\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-rwfkoa\",\"data-styles-preset\":\"Vlhp0Vikv\",children:\"Relaxing Ambiance\"})}),className:\"framer-1qc5e3y\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],name:\"Title\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1uocetb\",\"data-styles-preset\":\"LKn1VrNz3\",children:\"We have created a sanctuary of strength and serenity in the heart of the city where you can de-stress, restore, reconnect and grow. Our studio is calm, clean, spacious and bright and designed to give you that feeling you experience when walking into a tranquil Zen garden in Kyoto. It is a safe, stress-free environment but also offers the highest standard in comfort with lockers, showers and all the necessities such as towels, shampoo and body wash. We also came up with some studio policies to ensure you and others have the best experience possible.\"})}),className:\"framer-5eu4iv\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],name:\"Description\",verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-jx0221\",\"data-framer-name\":\"Stack\",id:elementId1,name:\"Stack\",ref:ref3,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wkr2e1\",\"data-framer-name\":\"Scroll\",name:\"Scroll\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-rjaeex\",\"data-styles-preset\":\"VN8M6HAfa\",children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-daa52954-616c-4840-84cc-5688c6feadcd, rgb(36, 168, 36))\"},children:\"Real Pilates\"}),\" \",/*#__PURE__*/_jsx(\"br\",{}),\"Timeline\"]})}),className:\"framer-1kaljrr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AMCeZc8vT:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref3,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-3400,y:0}}]}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref3,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-5e3,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1xi6hmj\",\"data-framer-name\":\"Cards\",name:\"Cards\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-vs3ejg\",\"data-framer-name\":\"Card\",name:\"Card\",style:{rotate:-2},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AMCeZc8vT:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1200,pixelHeight:1668,pixelWidth:2502,sizes:\"400px\",src:\"https://framerusercontent.com/images/CbKgBpZdOmWpshPnlmZHyz8NwU.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/CbKgBpZdOmWpshPnlmZHyz8NwU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/CbKgBpZdOmWpshPnlmZHyz8NwU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/CbKgBpZdOmWpshPnlmZHyz8NwU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/CbKgBpZdOmWpshPnlmZHyz8NwU.jpg 2502w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1200,pixelHeight:1668,pixelWidth:2502,sizes:\"606px\",src:\"https://framerusercontent.com/images/CbKgBpZdOmWpshPnlmZHyz8NwU.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/CbKgBpZdOmWpshPnlmZHyz8NwU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/CbKgBpZdOmWpshPnlmZHyz8NwU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/CbKgBpZdOmWpshPnlmZHyz8NwU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/CbKgBpZdOmWpshPnlmZHyz8NwU.jpg 2502w\"},className:\"framer-1jay5z6\",\"data-framer-name\":\"Image\",name:\"Image\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1chdio6\",\"data-framer-name\":\"Card\",name:\"Card\",style:{rotate:1},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AMCeZc8vT:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1200,pixelHeight:1668,pixelWidth:2502,sizes:\"400px\",src:\"https://framerusercontent.com/images/KPGg7QNjcjHIbW8t7ma4dT9m5fc.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/KPGg7QNjcjHIbW8t7ma4dT9m5fc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/KPGg7QNjcjHIbW8t7ma4dT9m5fc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/KPGg7QNjcjHIbW8t7ma4dT9m5fc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/KPGg7QNjcjHIbW8t7ma4dT9m5fc.jpg 2502w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1200,pixelHeight:1668,pixelWidth:2502,sizes:\"606px\",src:\"https://framerusercontent.com/images/KPGg7QNjcjHIbW8t7ma4dT9m5fc.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/KPGg7QNjcjHIbW8t7ma4dT9m5fc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/KPGg7QNjcjHIbW8t7ma4dT9m5fc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/KPGg7QNjcjHIbW8t7ma4dT9m5fc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/KPGg7QNjcjHIbW8t7ma4dT9m5fc.jpg 2502w\"},className:\"framer-69h4yf\",\"data-framer-name\":\"Image\",name:\"Image\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-sxxkwo\",\"data-framer-name\":\"Card\",name:\"Card\",style:{rotate:-1},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AMCeZc8vT:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1200,pixelHeight:1668,pixelWidth:2502,sizes:\"400px\",src:\"https://framerusercontent.com/images/KWEDrgdvrcD80bypS8fRFaKGTU.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/KWEDrgdvrcD80bypS8fRFaKGTU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/KWEDrgdvrcD80bypS8fRFaKGTU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/KWEDrgdvrcD80bypS8fRFaKGTU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/KWEDrgdvrcD80bypS8fRFaKGTU.jpg 2502w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1200,pixelHeight:1668,pixelWidth:2502,sizes:\"606px\",src:\"https://framerusercontent.com/images/KWEDrgdvrcD80bypS8fRFaKGTU.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/KWEDrgdvrcD80bypS8fRFaKGTU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/KWEDrgdvrcD80bypS8fRFaKGTU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/KWEDrgdvrcD80bypS8fRFaKGTU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/KWEDrgdvrcD80bypS8fRFaKGTU.jpg 2502w\"},className:\"framer-1se0v71\",\"data-framer-name\":\"Image\",name:\"Image\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-16z28na\",\"data-framer-name\":\"Card\",name:\"Card\",style:{rotate:-3},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AMCeZc8vT:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1200,pixelHeight:1668,pixelWidth:2502,sizes:\"400px\",src:\"https://framerusercontent.com/images/OmloBK7rFYk2SLBRqth5iZ0Bjk.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/OmloBK7rFYk2SLBRqth5iZ0Bjk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/OmloBK7rFYk2SLBRqth5iZ0Bjk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/OmloBK7rFYk2SLBRqth5iZ0Bjk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/OmloBK7rFYk2SLBRqth5iZ0Bjk.jpg 2502w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1200,pixelHeight:1668,pixelWidth:2502,sizes:\"606px\",src:\"https://framerusercontent.com/images/OmloBK7rFYk2SLBRqth5iZ0Bjk.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/OmloBK7rFYk2SLBRqth5iZ0Bjk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/OmloBK7rFYk2SLBRqth5iZ0Bjk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/OmloBK7rFYk2SLBRqth5iZ0Bjk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/OmloBK7rFYk2SLBRqth5iZ0Bjk.jpg 2502w\"},className:\"framer-1x83etd\",\"data-framer-name\":\"Image\",name:\"Image\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-4ozg87\",\"data-framer-name\":\"Card\",name:\"Card\",style:{rotate:2},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AMCeZc8vT:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1200,pixelHeight:1668,pixelWidth:2502,sizes:\"400px\",src:\"https://framerusercontent.com/images/eDQq8PRt3VuZVPqmXyiPxLZn5E.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/eDQq8PRt3VuZVPqmXyiPxLZn5E.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/eDQq8PRt3VuZVPqmXyiPxLZn5E.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/eDQq8PRt3VuZVPqmXyiPxLZn5E.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/eDQq8PRt3VuZVPqmXyiPxLZn5E.jpg 2502w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1200,pixelHeight:1668,pixelWidth:2502,sizes:\"606px\",src:\"https://framerusercontent.com/images/eDQq8PRt3VuZVPqmXyiPxLZn5E.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/eDQq8PRt3VuZVPqmXyiPxLZn5E.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/eDQq8PRt3VuZVPqmXyiPxLZn5E.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/eDQq8PRt3VuZVPqmXyiPxLZn5E.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/eDQq8PRt3VuZVPqmXyiPxLZn5E.jpg 2502w\"},className:\"framer-oblr2p\",\"data-framer-name\":\"Image\",name:\"Image\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dnz5ql\",\"data-framer-name\":\"Card\",name:\"Card\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AMCeZc8vT:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1200,pixelHeight:1668,pixelWidth:2502,sizes:\"400px\",src:\"https://framerusercontent.com/images/jS9HawA4CLy9UjlBxnbQiQcJdo0.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/jS9HawA4CLy9UjlBxnbQiQcJdo0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/jS9HawA4CLy9UjlBxnbQiQcJdo0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/jS9HawA4CLy9UjlBxnbQiQcJdo0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/jS9HawA4CLy9UjlBxnbQiQcJdo0.jpg 2502w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1200,pixelHeight:1668,pixelWidth:2502,sizes:\"606px\",src:\"https://framerusercontent.com/images/jS9HawA4CLy9UjlBxnbQiQcJdo0.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/jS9HawA4CLy9UjlBxnbQiQcJdo0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/jS9HawA4CLy9UjlBxnbQiQcJdo0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/jS9HawA4CLy9UjlBxnbQiQcJdo0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/jS9HawA4CLy9UjlBxnbQiQcJdo0.jpg 2502w\"},className:\"framer-yeuqeo\",\"data-framer-name\":\"Image\",name:\"Image\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8i4bp0\",\"data-framer-name\":\"Card\",name:\"Card\"})]})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15jsw3b\",\"data-framer-name\":\"Stack\",id:elementId2,name:\"Stack\",ref:ref4,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1iw4sst\",id:elementId3,ref:ref5,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2bwvd8\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,children:/*#__PURE__*/_jsx(Container,{className:\"framer-69n7zw-container\",style:{rotate:-1},children:/*#__PURE__*/_jsx(HighlightedText,{height:\"100%\",id:\"VdUJxkEub\",layoutId:\"VdUJxkEub\",lgWaIBuiB:\"Why Our Team Is So Incredible\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1700afl\",\"data-styles-preset\":\"oxSyeeDco\",style:{\"--framer-text-color\":\"var(--token-4fde22cd-ce5e-4c0a-a486-e2e34188b385, rgb(13, 13, 13))\"},children:\"OUR TEAM\"})}),className:\"framer-nvtxaz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1uocetb\",\"data-styles-preset\":\"LKn1VrNz3\",children:\"Real Pilates is powered and driven by inspirational people who are dedicated to making a difference to your lives. We\u2019re holistic to the core, open, honest, calm, caring and highly accessible.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1uocetb\",\"data-styles-preset\":\"LKn1VrNz3\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1uocetb\",\"data-styles-preset\":\"LKn1VrNz3\",children:\"All of our instructors are trained and certified in the STOTT PILATES method of exercise, one of the safest and most effective methods available. We are experts in our field and have specialist training in injuries and special populations such as pregnant women. Many of us have international experience and backgrounds in exercise physiology, rehabilitation, personal training, group exercise, weight training, yoga and dance.\"})]}),className:\"framer-1dat1b1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1r48pay\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-rwfkoa\",\"data-styles-preset\":\"Vlhp0Vikv\",style:{\"--framer-text-color\":\"var(--token-4fde22cd-ce5e-4c0a-a486-e2e34188b385, rgb(13, 13, 13))\"},children:\"Team Members\"})}),className:\"framer-rabrd1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1d4i6e8\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AMCeZc8vT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"100px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-5px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-daa52954-616c-4840-84cc-5688c6feadcd, rgb(36, 168, 36))\"},children:\"4\"})})},y81HLk_Sl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"140px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-8px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-daa52954-616c-4840-84cc-5688c6feadcd, rgb(36, 168, 36))\"},children:\"4\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"160px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-11px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-daa52954-616c-4840-84cc-5688c6feadcd, rgb(36, 168, 36))\"},children:\"4\"})}),className:\"framer-dipr9h\",fonts:[\"GF;Manrope-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AMCeZc8vT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"100px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-5px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-daa52954-616c-4840-84cc-5688c6feadcd, rgb(36, 168, 36))\"},children:\"0\"})})},y81HLk_Sl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"140px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-8px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-daa52954-616c-4840-84cc-5688c6feadcd, rgb(36, 168, 36))\"},children:\"0\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"160px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-11px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-daa52954-616c-4840-84cc-5688c6feadcd, rgb(36, 168, 36))\"},children:\"0\"})}),className:\"framer-18k0vmb\",fonts:[\"GF;Manrope-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AMCeZc8vT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"100px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-5px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-daa52954-616c-4840-84cc-5688c6feadcd, rgb(36, 168, 36))\"},children:\"+\"})})},y81HLk_Sl:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"140px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-8px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-daa52954-616c-4840-84cc-5688c6feadcd, rgb(36, 168, 36))\"},children:\"+\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"160px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-11px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-daa52954-616c-4840-84cc-5688c6feadcd, rgb(36, 168, 36))\"},children:\"+\"})}),className:\"framer-1omu9ww\",fonts:[\"GF;Manrope-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jxw61h\",\"data-framer-name\":\"Cards-Wrap\",name:\"Cards-Wrap\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ckdo7b\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-rwfkoa\",\"data-styles-preset\":\"Vlhp0Vikv\",children:\"Instructor Squad\"})}),className:\"framer-14ycqni\",\"data-framer-name\":\"Class Description\",fonts:[\"Inter\"],name:\"Class Description\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-3p5zc3\",id:elementId4,ref:ref6,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1clcvu9\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"JYOStbo0S\",data:Team,type:\"Collection\"},select:[{collection:\"JYOStbo0S\",name:\"kHes4vm0N\",type:\"Identifier\"},{collection:\"JYOStbo0S\",name:\"ZdPHaqz0t\",type:\"Identifier\"},{collection:\"JYOStbo0S\",name:\"pBiSJt1XV\",type:\"Identifier\"},{collection:\"JYOStbo0S\",name:\"iL8DXz2CB\",type:\"Identifier\"},{collection:\"JYOStbo0S\",name:\"fhgjWqsB9\",type:\"Identifier\"},{collection:\"JYOStbo0S\",name:\"P9pMZ9OeU\",type:\"Identifier\"},{collection:\"JYOStbo0S\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{collection:\"JYOStbo0S\",name:\"avZ5VkZtv\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"KJx4EXo5b\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"JYOStbo0S\",name:\"nulOUpAkI\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"KJx4EXo5b\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection.map(({\"kHes4vm0N\":kHes4vm0NJYOStbo0S,\"ZdPHaqz0t\":ZdPHaqz0tJYOStbo0S,\"pBiSJt1XV\":pBiSJt1XVJYOStbo0S,\"iL8DXz2CB\":iL8DXz2CBJYOStbo0S,\"fhgjWqsB9\":fhgjWqsB9JYOStbo0S,\"P9pMZ9OeU\":P9pMZ9OeUJYOStbo0S,\"id\":idJYOStbo0S},i)=>{kHes4vm0NJYOStbo0S!==null&&kHes4vm0NJYOStbo0S!==void 0?kHes4vm0NJYOStbo0S:kHes4vm0NJYOStbo0S=true;pBiSJt1XVJYOStbo0S!==null&&pBiSJt1XVJYOStbo0S!==void 0?pBiSJt1XVJYOStbo0S:pBiSJt1XVJYOStbo0S=\"\";iL8DXz2CBJYOStbo0S!==null&&iL8DXz2CBJYOStbo0S!==void 0?iL8DXz2CBJYOStbo0S:iL8DXz2CBJYOStbo0S=\"\";fhgjWqsB9JYOStbo0S!==null&&fhgjWqsB9JYOStbo0S!==void 0?fhgjWqsB9JYOStbo0S:fhgjWqsB9JYOStbo0S=\"\";P9pMZ9OeUJYOStbo0S!==null&&P9pMZ9OeUJYOStbo0S!==void 0?P9pMZ9OeUJYOStbo0S:P9pMZ9OeUJYOStbo0S=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`JYOStbo0S-${idJYOStbo0S}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{fhgjWqsB9:fhgjWqsB9JYOStbo0S},children:kHes4vm0NJYOStbo0S&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-dggz0v\",children:/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:true,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:300,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-3jay3e-container\",id:`${fhgjWqsB9JYOStbo0S}-3jay3e`,children:[/*#__PURE__*/_jsx(CardWrapped,{BpqMX3cRk:toResponsiveImage(ZdPHaqz0tJYOStbo0S),CTmAkyilK:CTmAkyilKwelu7j({overlay}),height:\"100%\",id:\"qT7hhrGe3\",layoutId:\"qT7hhrGe3\",N8vYS_fKJ:pBiSJt1XVJYOStbo0S,pZ18UUIqg:iL8DXz2CBJYOStbo0S,style:{height:\"100%\"},variant:overlay.visible?\"Tca324YyX\":\"Tca324YyX\",width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-1c1yxrc\",\"data-framer-portal-id\":`${fhgjWqsB9JYOStbo0S}-3jay3e`,exit:{opacity:0,transition:{delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"P8Oy6LCU_\"),/*#__PURE__*/_jsxs(motion.div,{animate:animation9,className:\"framer-1q86m5x\",\"data-framer-portal-id\":`${fhgjWqsB9JYOStbo0S}-3jay3e`,exit:animation8,initial:animation7,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kfc9k1-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-4fde22cd-ce5e-4c0a-a486-e2e34188b385, rgb(13, 13, 13))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"X\",id:\"NGdqQ9bz0\",layoutId:\"NGdqQ9bz0\",mirrored:false,onClick:onClick1wvko5h({overlay}),selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AMCeZc8vT:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(50.00000000000023),sizes:\"90vw\",...toResponsiveImage(ZdPHaqz0tJYOStbo0S)}},y81HLk_Sl:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(50.00000000000023),sizes:\"90vw\",...toResponsiveImage(ZdPHaqz0tJYOStbo0S)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(50.00000000000023),sizes:\"calc((90vw - 60px) * 0.4)\",...toResponsiveImage(ZdPHaqz0tJYOStbo0S)},className:\"framer-1o1ix7v\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vr4njd\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19t58mp\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-rwfkoa\",\"data-styles-preset\":\"Vlhp0Vikv\",children:\"Csilla\"})}),className:\"framer-p7fb2z\",fonts:[\"Inter\"],text:iL8DXz2CBJYOStbo0S,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-9o3uey\",\"data-styles-preset\":\"LgXPYJgSy\",style:{\"--framer-text-color\":\"var(--token-daa52954-616c-4840-84cc-5688c6feadcd, rgb(36, 168, 36))\"},children:\"Pilates Instructor\"})}),className:\"framer-k76ue2\",fonts:[\"Inter\"],text:pBiSJt1XVJYOStbo0S,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1uocetb\",\"data-styles-preset\":\"LKn1VrNz3\",children:[\"Born in Manila, Josephine has always had a great fondness for math and being around people and so she did both and joined industries focusing on these principles, now holding a Bachelor\u2019s Degree with honours in Hotel and Restaurant Management and a minor in Accountancy.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"Josephine carries with her nearly two-decades of experience in banking, hospitality, and government office. Her fondness to meet and collaborate with people landed her in leading customer experience jobs, with major companies but when she saw the opportunity with Real Pilates in Dubai, she knew it was time to make a change from the large corporate world to one focused on health and wellbeing.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"What most people don\u2019t know is that she has a long history when it comes to performing arts - this passion has brought her numerous opportunities representing her country, in theatrical and interpretative dance in different events in her country and overseas. After graduating from university, she decided to prioritize her corporate job but she still finds herself channeling and recharging her energy through physical movements, no longer through dance, instead via daily practice of either yoga or Pilates.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"One thing is for sure, when you are greeted by Josephine, there is never a dull moment! She fills the room with positivity, beaming with joy and laughter. It\u2019s impossible to miss the energy that she brings in any room she enters!\"]})}),className:\"framer-1hhrou8\",fonts:[\"Inter\"],text:P9pMZ9OeUJYOStbo0S,verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),document.querySelector(\"#overlay\"))})})]})})})})})})},idJYOStbo0S);})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6uo89c\",\"data-framer-name\":\"Cards-Wrap\",name:\"Cards-Wrap\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bljmhh\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-rwfkoa\",\"data-styles-preset\":\"Vlhp0Vikv\",children:\"Education Squad\"})}),className:\"framer-14ssany\",\"data-framer-name\":\"Class Description\",fonts:[\"Inter\"],name:\"Class Description\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8jmd04\",id:elementId5,ref:ref7,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-u4btw2\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"U8q9Us3sU\",data:Team,type:\"Collection\"},select:[{collection:\"U8q9Us3sU\",name:\"kHes4vm0N\",type:\"Identifier\"},{collection:\"U8q9Us3sU\",name:\"ZdPHaqz0t\",type:\"Identifier\"},{collection:\"U8q9Us3sU\",name:\"pBiSJt1XV\",type:\"Identifier\"},{collection:\"U8q9Us3sU\",name:\"iL8DXz2CB\",type:\"Identifier\"},{collection:\"U8q9Us3sU\",name:\"fhgjWqsB9\",type:\"Identifier\"},{collection:\"U8q9Us3sU\",name:\"P9pMZ9OeU\",type:\"Identifier\"},{collection:\"U8q9Us3sU\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{collection:\"U8q9Us3sU\",name:\"avZ5VkZtv\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"Jd53byigd\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"U8q9Us3sU\",name:\"nulOUpAkI\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"Jd53byigd\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1.map(({\"kHes4vm0N\":kHes4vm0NU8q9Us3sU,\"ZdPHaqz0t\":ZdPHaqz0tU8q9Us3sU,\"pBiSJt1XV\":pBiSJt1XVU8q9Us3sU,\"iL8DXz2CB\":iL8DXz2CBU8q9Us3sU,\"fhgjWqsB9\":fhgjWqsB9U8q9Us3sU,\"P9pMZ9OeU\":P9pMZ9OeUU8q9Us3sU,\"id\":idU8q9Us3sU},i)=>{kHes4vm0NU8q9Us3sU!==null&&kHes4vm0NU8q9Us3sU!==void 0?kHes4vm0NU8q9Us3sU:kHes4vm0NU8q9Us3sU=true;pBiSJt1XVU8q9Us3sU!==null&&pBiSJt1XVU8q9Us3sU!==void 0?pBiSJt1XVU8q9Us3sU:pBiSJt1XVU8q9Us3sU=\"\";iL8DXz2CBU8q9Us3sU!==null&&iL8DXz2CBU8q9Us3sU!==void 0?iL8DXz2CBU8q9Us3sU:iL8DXz2CBU8q9Us3sU=\"\";fhgjWqsB9U8q9Us3sU!==null&&fhgjWqsB9U8q9Us3sU!==void 0?fhgjWqsB9U8q9Us3sU:fhgjWqsB9U8q9Us3sU=\"\";P9pMZ9OeUU8q9Us3sU!==null&&P9pMZ9OeUU8q9Us3sU!==void 0?P9pMZ9OeUU8q9Us3sU:P9pMZ9OeUU8q9Us3sU=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`U8q9Us3sU-${idU8q9Us3sU}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{fhgjWqsB9:fhgjWqsB9U8q9Us3sU},children:kHes4vm0NU8q9Us3sU&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uiacw1\",children:/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:true,children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:300,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-r7es0y-container\",id:`${fhgjWqsB9U8q9Us3sU}-r7es0y`,children:[/*#__PURE__*/_jsx(CardWrapped,{BpqMX3cRk:toResponsiveImage(ZdPHaqz0tU8q9Us3sU),CTmAkyilK:CTmAkyilKwelu7j({overlay:overlay1}),height:\"100%\",id:\"idGF3UYN_\",layoutId:\"idGF3UYN_\",N8vYS_fKJ:pBiSJt1XVU8q9Us3sU,pZ18UUIqg:iL8DXz2CBU8q9Us3sU,style:{height:\"100%\"},variant:overlay1.visible?\"Tca324YyX\":\"Tca324YyX\",width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-vq1hse\",\"data-framer-portal-id\":`${fhgjWqsB9U8q9Us3sU}-r7es0y`,exit:{opacity:0,transition:{delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay1.hide()},\"QAz7SnVl3\"),/*#__PURE__*/_jsxs(motion.div,{animate:animation9,className:\"framer-ptte0m\",\"data-framer-portal-id\":`${fhgjWqsB9U8q9Us3sU}-r7es0y`,exit:animation8,initial:animation7,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-pgmd06-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-4fde22cd-ce5e-4c0a-a486-e2e34188b385, rgb(13, 13, 13))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"X\",id:\"jlqgo7jlY\",layoutId:\"jlqgo7jlY\",mirrored:false,onClick:onClick1wvko5h({overlay:overlay1}),selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AMCeZc8vT:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(50.00000000000023),sizes:\"90vw\",...toResponsiveImage(ZdPHaqz0tU8q9Us3sU)}},y81HLk_Sl:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(50.00000000000023),sizes:\"90vw\",...toResponsiveImage(ZdPHaqz0tU8q9Us3sU)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(50.00000000000023),sizes:\"calc((90vw - 60px) * 0.4)\",...toResponsiveImage(ZdPHaqz0tU8q9Us3sU)},className:\"framer-1qox9qa\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d5igyj\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gi8c4o\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-rwfkoa\",\"data-styles-preset\":\"Vlhp0Vikv\",children:\"Csilla\"})}),className:\"framer-6n2vnq\",fonts:[\"Inter\"],text:iL8DXz2CBU8q9Us3sU,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-9o3uey\",\"data-styles-preset\":\"LgXPYJgSy\",style:{\"--framer-text-color\":\"var(--token-daa52954-616c-4840-84cc-5688c6feadcd, rgb(36, 168, 36))\"},children:\"Pilates Instructor\"})}),className:\"framer-tevnhw\",fonts:[\"Inter\"],text:pBiSJt1XVU8q9Us3sU,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1uocetb\",\"data-styles-preset\":\"LKn1VrNz3\",children:[\"Born in Manila, Josephine has always had a great fondness for math and being around people and so she did both and joined industries focusing on these principles, now holding a Bachelor\u2019s Degree with honours in Hotel and Restaurant Management and a minor in Accountancy.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"Josephine carries with her nearly two-decades of experience in banking, hospitality, and government office. Her fondness to meet and collaborate with people landed her in leading customer experience jobs, with major companies but when she saw the opportunity with Real Pilates in Dubai, she knew it was time to make a change from the large corporate world to one focused on health and wellbeing.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"What most people don\u2019t know is that she has a long history when it comes to performing arts - this passion has brought her numerous opportunities representing her country, in theatrical and interpretative dance in different events in her country and overseas. After graduating from university, she decided to prioritize her corporate job but she still finds herself channeling and recharging her energy through physical movements, no longer through dance, instead via daily practice of either yoga or Pilates.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"One thing is for sure, when you are greeted by Josephine, there is never a dull moment! She fills the room with positivity, beaming with joy and laughter. It\u2019s impossible to miss the energy that she brings in any room she enters!\"]})}),className:\"framer-1uo92a9\",fonts:[\"Inter\"],text:P9pMZ9OeUU8q9Us3sU,verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),document.querySelector(\"#overlay\"))})})]})})})})})})},idU8q9Us3sU);})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sgqkxy\",\"data-framer-name\":\"Cards-Wrap\",name:\"Cards-Wrap\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dlfj6t\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-rwfkoa\",\"data-styles-preset\":\"Vlhp0Vikv\",children:\"Customer Service Squad\"})}),className:\"framer-18y10vc\",\"data-framer-name\":\"Class Description\",fonts:[\"Inter\"],name:\"Class Description\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-s2pq8c\",id:elementId6,ref:ref8,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mda461\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"GI6Hylkkn\",data:Team,type:\"Collection\"},select:[{collection:\"GI6Hylkkn\",name:\"kHes4vm0N\",type:\"Identifier\"},{collection:\"GI6Hylkkn\",name:\"ZdPHaqz0t\",type:\"Identifier\"},{collection:\"GI6Hylkkn\",name:\"pBiSJt1XV\",type:\"Identifier\"},{collection:\"GI6Hylkkn\",name:\"iL8DXz2CB\",type:\"Identifier\"},{collection:\"GI6Hylkkn\",name:\"fhgjWqsB9\",type:\"Identifier\"},{collection:\"GI6Hylkkn\",name:\"P9pMZ9OeU\",type:\"Identifier\"},{collection:\"GI6Hylkkn\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{collection:\"GI6Hylkkn\",name:\"avZ5VkZtv\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"rBu6kY753\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"GI6Hylkkn\",name:\"nulOUpAkI\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"rBu6kY753\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2.map(({\"kHes4vm0N\":kHes4vm0NGI6Hylkkn,\"ZdPHaqz0t\":ZdPHaqz0tGI6Hylkkn,\"pBiSJt1XV\":pBiSJt1XVGI6Hylkkn,\"iL8DXz2CB\":iL8DXz2CBGI6Hylkkn,\"fhgjWqsB9\":fhgjWqsB9GI6Hylkkn,\"P9pMZ9OeU\":P9pMZ9OeUGI6Hylkkn,\"id\":idGI6Hylkkn},i)=>{kHes4vm0NGI6Hylkkn!==null&&kHes4vm0NGI6Hylkkn!==void 0?kHes4vm0NGI6Hylkkn:kHes4vm0NGI6Hylkkn=true;pBiSJt1XVGI6Hylkkn!==null&&pBiSJt1XVGI6Hylkkn!==void 0?pBiSJt1XVGI6Hylkkn:pBiSJt1XVGI6Hylkkn=\"\";iL8DXz2CBGI6Hylkkn!==null&&iL8DXz2CBGI6Hylkkn!==void 0?iL8DXz2CBGI6Hylkkn:iL8DXz2CBGI6Hylkkn=\"\";fhgjWqsB9GI6Hylkkn!==null&&fhgjWqsB9GI6Hylkkn!==void 0?fhgjWqsB9GI6Hylkkn:fhgjWqsB9GI6Hylkkn=\"\";P9pMZ9OeUGI6Hylkkn!==null&&P9pMZ9OeUGI6Hylkkn!==void 0?P9pMZ9OeUGI6Hylkkn:P9pMZ9OeUGI6Hylkkn=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`GI6Hylkkn-${idGI6Hylkkn}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{fhgjWqsB9:fhgjWqsB9GI6Hylkkn},children:kHes4vm0NGI6Hylkkn&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-3lvth2\",children:/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:true,children:overlay2=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:300,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-vu5sb0-container\",id:`${fhgjWqsB9GI6Hylkkn}-vu5sb0`,children:[/*#__PURE__*/_jsx(CardWrapped,{BpqMX3cRk:toResponsiveImage(ZdPHaqz0tGI6Hylkkn),CTmAkyilK:CTmAkyilKwelu7j({overlay:overlay2}),height:\"100%\",id:\"ji7c1XSLa\",layoutId:\"ji7c1XSLa\",N8vYS_fKJ:pBiSJt1XVGI6Hylkkn,pZ18UUIqg:iL8DXz2CBGI6Hylkkn,style:{height:\"100%\"},variant:overlay2.visible?\"Tca324YyX\":\"Tca324YyX\",width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay2.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-g2hm79\",\"data-framer-portal-id\":`${fhgjWqsB9GI6Hylkkn}-vu5sb0`,exit:{opacity:0,transition:{delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay2.hide()},\"f7znViEsx\"),/*#__PURE__*/_jsxs(motion.div,{animate:animation9,className:\"framer-62k3sy\",\"data-framer-portal-id\":`${fhgjWqsB9GI6Hylkkn}-vu5sb0`,exit:animation8,initial:animation7,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-7c57hv-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-4fde22cd-ce5e-4c0a-a486-e2e34188b385, rgb(13, 13, 13))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"X\",id:\"r2RdjreJK\",layoutId:\"r2RdjreJK\",mirrored:false,onClick:onClick1wvko5h({overlay:overlay2}),selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AMCeZc8vT:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(50.00000000000023),sizes:\"90vw\",...toResponsiveImage(ZdPHaqz0tGI6Hylkkn)}},y81HLk_Sl:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(50.00000000000023),sizes:\"90vw\",...toResponsiveImage(ZdPHaqz0tGI6Hylkkn)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(50.00000000000023),sizes:\"calc((90vw - 60px) * 0.4)\",...toResponsiveImage(ZdPHaqz0tGI6Hylkkn)},className:\"framer-13ndts\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19s1omz\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7unqsv\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-rwfkoa\",\"data-styles-preset\":\"Vlhp0Vikv\",children:\"Csilla\"})}),className:\"framer-yb8buh\",fonts:[\"Inter\"],text:iL8DXz2CBGI6Hylkkn,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-9o3uey\",\"data-styles-preset\":\"LgXPYJgSy\",style:{\"--framer-text-color\":\"var(--token-daa52954-616c-4840-84cc-5688c6feadcd, rgb(36, 168, 36))\"},children:\"Pilates Instructor\"})}),className:\"framer-1pm0vsn\",fonts:[\"Inter\"],text:pBiSJt1XVGI6Hylkkn,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1uocetb\",\"data-styles-preset\":\"LKn1VrNz3\",children:[\"Born in Manila, Josephine has always had a great fondness for math and being around people and so she did both and joined industries focusing on these principles, now holding a Bachelor\u2019s Degree with honours in Hotel and Restaurant Management and a minor in Accountancy.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"Josephine carries with her nearly two-decades of experience in banking, hospitality, and government office. Her fondness to meet and collaborate with people landed her in leading customer experience jobs, with major companies but when she saw the opportunity with Real Pilates in Dubai, she knew it was time to make a change from the large corporate world to one focused on health and wellbeing.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"What most people don\u2019t know is that she has a long history when it comes to performing arts - this passion has brought her numerous opportunities representing her country, in theatrical and interpretative dance in different events in her country and overseas. After graduating from university, she decided to prioritize her corporate job but she still finds herself channeling and recharging her energy through physical movements, no longer through dance, instead via daily practice of either yoga or Pilates.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"One thing is for sure, when you are greeted by Josephine, there is never a dull moment! She fills the room with positivity, beaming with joy and laughter. It\u2019s impossible to miss the energy that she brings in any room she enters!\"]})}),className:\"framer-q1vh3r\",fonts:[\"Inter\"],text:P9pMZ9OeUGI6Hylkkn,verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),document.querySelector(\"#overlay\"))})})]})})})})})})},idGI6Hylkkn);})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rn43bc\",\"data-framer-name\":\"Cards-Wrap\",name:\"Cards-Wrap\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-11f5iwd\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-rwfkoa\",\"data-styles-preset\":\"Vlhp0Vikv\",children:\"Franchise Management Squad\"})}),className:\"framer-1qiaw1u\",\"data-framer-name\":\"Class Description\",fonts:[\"Inter\"],name:\"Class Description\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-obr110\",id:elementId7,ref:ref9,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-o46nzq\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"th13PGhNV\",data:Team,type:\"Collection\"},select:[{collection:\"th13PGhNV\",name:\"kHes4vm0N\",type:\"Identifier\"},{collection:\"th13PGhNV\",name:\"ZdPHaqz0t\",type:\"Identifier\"},{collection:\"th13PGhNV\",name:\"pBiSJt1XV\",type:\"Identifier\"},{collection:\"th13PGhNV\",name:\"iL8DXz2CB\",type:\"Identifier\"},{collection:\"th13PGhNV\",name:\"fhgjWqsB9\",type:\"Identifier\"},{collection:\"th13PGhNV\",name:\"P9pMZ9OeU\",type:\"Identifier\"},{collection:\"th13PGhNV\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{collection:\"th13PGhNV\",name:\"avZ5VkZtv\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"N_EZGD539\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"th13PGhNV\",name:\"nulOUpAkI\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"VQ_uSfHId\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}},children:(collection3,paginationInfo3,loadMore3)=>/*#__PURE__*/_jsx(_Fragment,{children:collection3.map(({\"kHes4vm0N\":kHes4vm0Nth13PGhNV,\"ZdPHaqz0t\":ZdPHaqz0tth13PGhNV,\"pBiSJt1XV\":pBiSJt1XVth13PGhNV,\"iL8DXz2CB\":iL8DXz2CBth13PGhNV,\"fhgjWqsB9\":fhgjWqsB9th13PGhNV,\"P9pMZ9OeU\":P9pMZ9OeUth13PGhNV,\"id\":idth13PGhNV},i)=>{kHes4vm0Nth13PGhNV!==null&&kHes4vm0Nth13PGhNV!==void 0?kHes4vm0Nth13PGhNV:kHes4vm0Nth13PGhNV=true;pBiSJt1XVth13PGhNV!==null&&pBiSJt1XVth13PGhNV!==void 0?pBiSJt1XVth13PGhNV:pBiSJt1XVth13PGhNV=\"\";iL8DXz2CBth13PGhNV!==null&&iL8DXz2CBth13PGhNV!==void 0?iL8DXz2CBth13PGhNV:iL8DXz2CBth13PGhNV=\"\";fhgjWqsB9th13PGhNV!==null&&fhgjWqsB9th13PGhNV!==void 0?fhgjWqsB9th13PGhNV:fhgjWqsB9th13PGhNV=\"\";P9pMZ9OeUth13PGhNV!==null&&P9pMZ9OeUth13PGhNV!==void 0?P9pMZ9OeUth13PGhNV:P9pMZ9OeUth13PGhNV=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`th13PGhNV-${idth13PGhNV}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{fhgjWqsB9:fhgjWqsB9th13PGhNV},children:kHes4vm0Nth13PGhNV&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1johb2y\",children:/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:true,children:overlay3=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:300,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-tlmjee-container\",id:`${fhgjWqsB9th13PGhNV}-tlmjee`,children:[/*#__PURE__*/_jsx(CardWrapped,{BpqMX3cRk:toResponsiveImage(ZdPHaqz0tth13PGhNV),CTmAkyilK:CTmAkyilKwelu7j({overlay:overlay3}),height:\"100%\",id:\"PYQdF3LTr\",layoutId:\"PYQdF3LTr\",N8vYS_fKJ:pBiSJt1XVth13PGhNV,pZ18UUIqg:iL8DXz2CBth13PGhNV,style:{height:\"100%\"},variant:overlay3.visible?\"Tca324YyX\":\"Tca324YyX\",width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay3.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-1lm1sov\",\"data-framer-portal-id\":`${fhgjWqsB9th13PGhNV}-tlmjee`,exit:{opacity:0,transition:{delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay3.hide()},\"BxEHWDvTi\"),/*#__PURE__*/_jsxs(motion.div,{animate:animation9,className:\"framer-c4mgdv\",\"data-framer-portal-id\":`${fhgjWqsB9th13PGhNV}-tlmjee`,exit:animation8,initial:animation7,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1t6nr9n-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-4fde22cd-ce5e-4c0a-a486-e2e34188b385, rgb(13, 13, 13))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"X\",id:\"arzKuR7re\",layoutId:\"arzKuR7re\",mirrored:false,onClick:onClick1wvko5h({overlay:overlay3}),selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AMCeZc8vT:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(50.00000000000023),sizes:\"90vw\",...toResponsiveImage(ZdPHaqz0tth13PGhNV)}},y81HLk_Sl:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(50.00000000000023),sizes:\"90vw\",...toResponsiveImage(ZdPHaqz0tth13PGhNV)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(50.00000000000023),sizes:\"calc((90vw - 60px) * 0.4)\",...toResponsiveImage(ZdPHaqz0tth13PGhNV)},className:\"framer-c86l44\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16hczh2\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pu4jze\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-rwfkoa\",\"data-styles-preset\":\"Vlhp0Vikv\",children:\"Csilla\"})}),className:\"framer-cpyqww\",fonts:[\"Inter\"],text:iL8DXz2CBth13PGhNV,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-9o3uey\",\"data-styles-preset\":\"LgXPYJgSy\",style:{\"--framer-text-color\":\"var(--token-daa52954-616c-4840-84cc-5688c6feadcd, rgb(36, 168, 36))\"},children:\"Pilates Instructor\"})}),className:\"framer-1hugbaf\",fonts:[\"Inter\"],text:pBiSJt1XVth13PGhNV,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1uocetb\",\"data-styles-preset\":\"LKn1VrNz3\",children:[\"Born in Manila, Josephine has always had a great fondness for math and being around people and so she did both and joined industries focusing on these principles, now holding a Bachelor\u2019s Degree with honours in Hotel and Restaurant Management and a minor in Accountancy.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"Josephine carries with her nearly two-decades of experience in banking, hospitality, and government office. Her fondness to meet and collaborate with people landed her in leading customer experience jobs, with major companies but when she saw the opportunity with Real Pilates in Dubai, she knew it was time to make a change from the large corporate world to one focused on health and wellbeing.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"What most people don\u2019t know is that she has a long history when it comes to performing arts - this passion has brought her numerous opportunities representing her country, in theatrical and interpretative dance in different events in her country and overseas. After graduating from university, she decided to prioritize her corporate job but she still finds herself channeling and recharging her energy through physical movements, no longer through dance, instead via daily practice of either yoga or Pilates.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"One thing is for sure, when you are greeted by Josephine, there is never a dull moment! She fills the room with positivity, beaming with joy and laughter. It\u2019s impossible to miss the energy that she brings in any room she enters!\"]})}),className:\"framer-dkwopx\",fonts:[\"Inter\"],text:P9pMZ9OeUth13PGhNV,verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),document.querySelector(\"#overlay\"))})})]})})})})})})},idth13PGhNV);})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15nu408\",\"data-framer-name\":\"Cards-Wrap\",name:\"Cards-Wrap\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1s6c50u\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-rwfkoa\",\"data-styles-preset\":\"Vlhp0Vikv\",children:\"HQ Leadership Squad\"})}),className:\"framer-1jtlx12\",\"data-framer-name\":\"Class Description\",fonts:[\"Inter\"],name:\"Class Description\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-15i0xk2\",id:elementId8,ref:ref10,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wsixnp\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"qW2sBs4a0\",data:Team,type:\"Collection\"},select:[{collection:\"qW2sBs4a0\",name:\"kHes4vm0N\",type:\"Identifier\"},{collection:\"qW2sBs4a0\",name:\"ZdPHaqz0t\",type:\"Identifier\"},{collection:\"qW2sBs4a0\",name:\"pBiSJt1XV\",type:\"Identifier\"},{collection:\"qW2sBs4a0\",name:\"iL8DXz2CB\",type:\"Identifier\"},{collection:\"qW2sBs4a0\",name:\"fhgjWqsB9\",type:\"Identifier\"},{collection:\"qW2sBs4a0\",name:\"P9pMZ9OeU\",type:\"Identifier\"},{collection:\"qW2sBs4a0\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{collection:\"qW2sBs4a0\",name:\"avZ5VkZtv\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"O9awPc1mf\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"qW2sBs4a0\",name:\"nulOUpAkI\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"vMxilp6kl\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}},children:(collection4,paginationInfo4,loadMore4)=>/*#__PURE__*/_jsx(_Fragment,{children:collection4.map(({\"kHes4vm0N\":kHes4vm0NqW2sBs4a0,\"ZdPHaqz0t\":ZdPHaqz0tqW2sBs4a0,\"pBiSJt1XV\":pBiSJt1XVqW2sBs4a0,\"iL8DXz2CB\":iL8DXz2CBqW2sBs4a0,\"fhgjWqsB9\":fhgjWqsB9qW2sBs4a0,\"P9pMZ9OeU\":P9pMZ9OeUqW2sBs4a0,\"id\":idqW2sBs4a0},i)=>{kHes4vm0NqW2sBs4a0!==null&&kHes4vm0NqW2sBs4a0!==void 0?kHes4vm0NqW2sBs4a0:kHes4vm0NqW2sBs4a0=true;pBiSJt1XVqW2sBs4a0!==null&&pBiSJt1XVqW2sBs4a0!==void 0?pBiSJt1XVqW2sBs4a0:pBiSJt1XVqW2sBs4a0=\"\";iL8DXz2CBqW2sBs4a0!==null&&iL8DXz2CBqW2sBs4a0!==void 0?iL8DXz2CBqW2sBs4a0:iL8DXz2CBqW2sBs4a0=\"\";fhgjWqsB9qW2sBs4a0!==null&&fhgjWqsB9qW2sBs4a0!==void 0?fhgjWqsB9qW2sBs4a0:fhgjWqsB9qW2sBs4a0=\"\";P9pMZ9OeUqW2sBs4a0!==null&&P9pMZ9OeUqW2sBs4a0!==void 0?P9pMZ9OeUqW2sBs4a0:P9pMZ9OeUqW2sBs4a0=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`qW2sBs4a0-${idqW2sBs4a0}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{fhgjWqsB9:fhgjWqsB9qW2sBs4a0},children:kHes4vm0NqW2sBs4a0&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1179bys\",children:/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:true,children:overlay4=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:300,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-cioa11-container\",id:`${fhgjWqsB9qW2sBs4a0}-cioa11`,children:[/*#__PURE__*/_jsx(CardWrapped,{BpqMX3cRk:toResponsiveImage(ZdPHaqz0tqW2sBs4a0),CTmAkyilK:CTmAkyilKwelu7j({overlay:overlay4}),height:\"100%\",id:\"MtOTh5kvO\",layoutId:\"MtOTh5kvO\",N8vYS_fKJ:pBiSJt1XVqW2sBs4a0,pZ18UUIqg:iL8DXz2CBqW2sBs4a0,style:{height:\"100%\"},variant:overlay4.visible?\"Tca324YyX\":\"Tca324YyX\",width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay4.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-166pc93\",\"data-framer-portal-id\":`${fhgjWqsB9qW2sBs4a0}-cioa11`,exit:{opacity:0,transition:{delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay4.hide()},\"b4ZjiAnqx\"),/*#__PURE__*/_jsxs(motion.div,{animate:animation9,className:\"framer-6akf8a\",\"data-framer-portal-id\":`${fhgjWqsB9qW2sBs4a0}-cioa11`,exit:animation8,initial:animation7,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pmnwr9-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-4fde22cd-ce5e-4c0a-a486-e2e34188b385, rgb(13, 13, 13))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"X\",id:\"yM8s5914W\",layoutId:\"yM8s5914W\",mirrored:false,onClick:onClick1wvko5h({overlay:overlay4}),selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AMCeZc8vT:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(50.00000000000023),sizes:\"90vw\",...toResponsiveImage(ZdPHaqz0tqW2sBs4a0)}},y81HLk_Sl:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(50.00000000000023),sizes:\"90vw\",...toResponsiveImage(ZdPHaqz0tqW2sBs4a0)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(50.00000000000023),sizes:\"calc((90vw - 60px) * 0.4)\",...toResponsiveImage(ZdPHaqz0tqW2sBs4a0)},className:\"framer-2v1fg3\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1awsgki\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d5rent\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-rwfkoa\",\"data-styles-preset\":\"Vlhp0Vikv\",children:\"Csilla\"})}),className:\"framer-1prdnav\",fonts:[\"Inter\"],text:iL8DXz2CBqW2sBs4a0,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-9o3uey\",\"data-styles-preset\":\"LgXPYJgSy\",style:{\"--framer-text-color\":\"var(--token-daa52954-616c-4840-84cc-5688c6feadcd, rgb(36, 168, 36))\"},children:\"Pilates Instructor\"})}),className:\"framer-6ig1od\",fonts:[\"Inter\"],text:pBiSJt1XVqW2sBs4a0,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1uocetb\",\"data-styles-preset\":\"LKn1VrNz3\",children:[\"Born in Manila, Josephine has always had a great fondness for math and being around people and so she did both and joined industries focusing on these principles, now holding a Bachelor\u2019s Degree with honours in Hotel and Restaurant Management and a minor in Accountancy.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"Josephine carries with her nearly two-decades of experience in banking, hospitality, and government office. Her fondness to meet and collaborate with people landed her in leading customer experience jobs, with major companies but when she saw the opportunity with Real Pilates in Dubai, she knew it was time to make a change from the large corporate world to one focused on health and wellbeing.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"What most people don\u2019t know is that she has a long history when it comes to performing arts - this passion has brought her numerous opportunities representing her country, in theatrical and interpretative dance in different events in her country and overseas. After graduating from university, she decided to prioritize her corporate job but she still finds herself channeling and recharging her energy through physical movements, no longer through dance, instead via daily practice of either yoga or Pilates.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"One thing is for sure, when you are greeted by Josephine, there is never a dull moment! She fills the room with positivity, beaming with joy and laughter. It\u2019s impossible to miss the energy that she brings in any room she enters!\"]})}),className:\"framer-w3cpja\",fonts:[\"Inter\"],text:P9pMZ9OeUqW2sBs4a0,verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),document.querySelector(\"#overlay\"))})})]})})})})})})},idqW2sBs4a0);})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-62iz9i\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cl0dzj\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ackpva\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-rwfkoa\",\"data-styles-preset\":\"Vlhp0Vikv\",style:{\"--framer-text-color\":\"var(--token-4fde22cd-ce5e-4c0a-a486-e2e34188b385, rgb(13, 13, 13))\"},children:\"Want to join us?\"})}),className:\"framer-17dqtin\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1uocetb\",\"data-styles-preset\":\"LKn1VrNz3\",style:{\"--framer-text-alignment\":\"center\"},children:\"Interested in joining our team? Share your CV and Letter of Intent with us!\"})}),className:\"framer-1tyjzor\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(Container,{className:\"framer-dszu8s-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AMCeZc8vT:{variant:\"LeyBQ_mvl\"},y81HLk_Sl:{variant:\"AEJNi3k_u\"}},children:/*#__PURE__*/_jsx(ButtonsButton,{DZjwaM2AD:false,gcfyzeWzy:\"mailto:opportunity@real-pilates.com\",height:\"100%\",id:\"toBSSOsbh\",layoutId:\"toBSSOsbh\",O0AfuOCf1:\"Apply\",variant:\"VlqQOLFTn\",width:\"100%\"})})})})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xgejun\",\"data-framer-name\":\"Stack\",name:\"Stack\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1m6iink\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-gn6qx9\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":cHkA4zzS0\",webPageId:\"Vhzg4ztxW\"},nodeId:\"cHkA4zzS0\",openInNewTab:false,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",pixelHeight:2574,pixelWidth:3861,sizes:\"min(100vw, 2000px)\",src:\"https://framerusercontent.com/images/sCEH0KOv4Qva7BJPRT8VFuV5rw.jpg\",srcSet:\"https://framerusercontent.com/images/sCEH0KOv4Qva7BJPRT8VFuV5rw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/sCEH0KOv4Qva7BJPRT8VFuV5rw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/sCEH0KOv4Qva7BJPRT8VFuV5rw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/sCEH0KOv4Qva7BJPRT8VFuV5rw.jpg 3861w\"},className:\"framer-15pf18x framer-1my5474\",id:elementId9,ref:ref11})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lr3970\",id:elementId10,ref:ref12,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kd8lv-container\",style:{rotate:-1},children:/*#__PURE__*/_jsx(HighlightedText,{height:\"100%\",id:\"pzMiVkUIr\",layoutId:\"pzMiVkUIr\",lgWaIBuiB:\"Perkville Rewards Program\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1700afl\",\"data-styles-preset\":\"oxSyeeDco\",style:{\"--framer-text-color\":\"var(--token-4fde22cd-ce5e-4c0a-a486-e2e34188b385, rgb(13, 13, 13))\"},children:\"LOYALTY REWARDS\"})}),className:\"framer-1jz2bm0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1uocetb\",\"data-styles-preset\":\"LKn1VrNz3\",style:{\"--framer-text-alignment\":\"center\"},children:' We have partnered with Perkville to offer an online reward system. It\u2019s a fun and easy way to earn points for attending classes and private sessions, referring friends and posting about us on social media. You\u2019ll automatically receive an opt-in email from Perkville after attending your first class. Sign up and start earning points right away (or click unsubscribe and you\u2019ll never receive another notification).  Perkville keeps tracks of everything and awards you points automatically. These \"perks\" that you get are integrated with our MINDBODY booking system and smartphone apps to keep things simple for you.'})}),className:\"framer-1p85zsh\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ut9kg0\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rvaztl-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AMCeZc8vT:{variant:\"LeyBQ_mvl\"},y81HLk_Sl:{variant:\"AEJNi3k_u\"}},children:/*#__PURE__*/_jsx(ButtonsButton,{DZjwaM2AD:false,gcfyzeWzy:\"http://www.perkville.com/biz/2940/?loc=3994#signin\",height:\"100%\",id:\"nqbYALQPd\",layoutId:\"nqbYALQPd\",O0AfuOCf1:\"Join today\",variant:\"VlqQOLFTn\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"OUwgHZcD5\"},implicitPathVariables:undefined},{href:{webPageId:\"OUwgHZcD5\"},implicitPathVariables:undefined},{href:{webPageId:\"OUwgHZcD5\"},implicitPathVariables:undefined},{href:{webPageId:\"OUwgHZcD5\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(Container,{className:\"framer-4mlpex-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AMCeZc8vT:{gcfyzeWzy:resolvedLinks[2],variant:\"px9xGYmgx\"},i71xf7wIi:{gcfyzeWzy:resolvedLinks[3]},y81HLk_Sl:{gcfyzeWzy:resolvedLinks[1],variant:\"ORgqCMAYs\"}},children:/*#__PURE__*/_jsx(ButtonsButton,{DZjwaM2AD:false,gcfyzeWzy:resolvedLinks[0],height:\"100%\",id:\"XCqRr57na\",layoutId:\"XCqRr57na\",O0AfuOCf1:\"FAQs\",variant:\"i4BLkJQDH\",width:\"100%\"})})})})})]})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ybc254\",\"data-framer-name\":\"Stack\",id:elementId11,name:\"Stack\",ref:ref13,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1u2cs28\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-9o3uey\",\"data-styles-preset\":\"LgXPYJgSy\",children:\"Testimonials\"})}),className:\"framer-ld8b9n\",fonts:[\"Inter\"],id:elementId12,ref:ref14,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-oqkyg9\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-41q82x-container\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<div data-wally-widget=\"6704e97af50f0600148361ce\" style=\"width: 100%; height: 100%;\"></div>\\n<script src=\"https://embed.getwally.net/embed.js\"></script>',id:\"vdpmVe0em\",layoutId:\"vdpmVe0em\",style:{width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-odvirn-container\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<div data-wally-widget=\"6704e9faf50f0600148361cf\" style=\"width: 100%; height: 100%;\"></div>\\n<script src=\"https://embed.getwally.net/embed.js\"></script>',id:\"IErra9T1H\",layoutId:\"IErra9T1H\",style:{width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tecf5q-container\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<div data-wally-widget=\"6704e86cf50f0600148361cd\" style=\"width: 100%; height: 100%;\"></div>\\n<script src=\"https://embed.getwally.net/embed.js\"></script>',id:\"vUJh1XUFf\",layoutId:\"vUJh1XUFf\",style:{width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hx691\",\"data-framer-name\":\"Stack\",id:elementId13,name:\"Stack\",ref:ref15,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-x1xoe2\",id:elementId14,ref:ref16,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1700afl\",\"data-styles-preset\":\"oxSyeeDco\",children:\"Our App\"})}),className:\"framer-mujbbi\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1uocetb\",\"data-styles-preset\":\"LKn1VrNz3\",style:{\"--framer-text-alignment\":\"center\"},children:\"We recommend you turn on App notifications to receive latest updates, flash sales & more!\"}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1uocetb\",\"data-styles-preset\":\"LKn1VrNz3\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Having trouble with the App, please visit our \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"OUwgHZcD5\"},nodeId:\"KWRMjjcDP\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-dk7r4b\",\"data-styles-preset\":\"rE0PSOmsG\",children:\"App FAQ page\"})}),\".\"]})]}),className:\"framer-1i0byol\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ygoqfp\",\"data-framer-name\":\"Phone Wrap\",name:\"Phone Wrap\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:523,intrinsicWidth:250,pixelHeight:1046,pixelWidth:500,positionX:\"center\",positionY:\"top\",sizes:\"259.8039px\",src:\"https://framerusercontent.com/images/Zc96sjCx1IdhxK4w9mPAfMrvY.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/Zc96sjCx1IdhxK4w9mPAfMrvY.png 500w\"},className:\"framer-1bglmt8\",\"data-framer-name\":\"Phone Mockup\",name:\"Phone Mockup\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1faj8jw\",\"data-framer-name\":\"Screen Wrap\",name:\"Screen Wrap\",children:/*#__PURE__*/_jsx(ImageWithFX,{__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:3148,intrinsicWidth:786,pixelHeight:6296,pixelWidth:1572,sizes:\"235.8039px\",src:\"https://framerusercontent.com/images/1m3ArfrTmn01v5YJbh3yR0o4ds.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/1m3ArfrTmn01v5YJbh3yR0o4ds.png?scale-down-to=4096 1022w,https://framerusercontent.com/images/1m3ArfrTmn01v5YJbh3yR0o4ds.png 1572w\"},className:\"framer-1nv0b7a\",\"data-framer-name\":\"Screen\",name:\"Screen\",style:{transformPerspective:1200}})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5nhd7b\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://apps.apple.com/ae/app/real-pilates/id576409131\",nodeId:\"q2TkLwNjp\",openInNewTab:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-iasrzi framer-1my5474\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-qfrp59\",\"data-framer-name\":\"Download_on_the_App_Store_Badge_US_UK_RGB_blk_092917\",fill:\"black\",intrinsicHeight:40,intrinsicWidth:120,name:\"Download_on_the_App_Store_Badge_US_UK_RGB_blk_092917\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"119.664\" height=\"40\"><path d=\"M110.135 0H9.535c-.367 0-.73 0-1.095.002-.306.002-.61.008-.919.013A13.215 13.215 0 0 0 5.517.19a6.665 6.665 0 0 0-1.9.627 6.438 6.438 0 0 0-1.62 1.18A6.258 6.258 0 0 0 .82 3.617 6.601 6.601 0 0 0 .195 5.52a12.993 12.993 0 0 0-.179 2.002c-.01.307-.01.615-.015.921V31.56c.005.31.006.61.015.921a12.992 12.992 0 0 0 .18 2.002 6.588 6.588 0 0 0 .624 1.905A6.208 6.208 0 0 0 1.998 38a6.274 6.274 0 0 0 1.618 1.179 6.7 6.7 0 0 0 1.901.63 13.455 13.455 0 0 0 2.004.177c.31.007.613.011.919.011.366.002.728.002 1.095.002h100.6c.36 0 .724 0 1.084-.002.304 0 .617-.004.922-.01a13.279 13.279 0 0 0 2-.178 6.804 6.804 0 0 0 1.908-.63A6.277 6.277 0 0 0 117.666 38a6.395 6.395 0 0 0 1.182-1.614 6.604 6.604 0 0 0 .619-1.905 13.506 13.506 0 0 0 .185-2.002c.004-.31.004-.61.004-.921.008-.364.008-.725.008-1.094V9.536c0-.366 0-.73-.008-1.092 0-.306 0-.614-.004-.92a13.507 13.507 0 0 0-.185-2.003 6.618 6.618 0 0 0-.62-1.903 6.466 6.466 0 0 0-2.798-2.8 6.768 6.768 0 0 0-1.908-.627 13.044 13.044 0 0 0-2-.176c-.305-.005-.618-.011-.922-.013-.36-.002-.725-.002-1.084-.002Z\" style=\"fill:#a6a6a6\"/><path d=\"M8.445 39.125c-.305 0-.602-.004-.904-.01a12.687 12.687 0 0 1-1.87-.164 5.884 5.884 0 0 1-1.656-.548 5.406 5.406 0 0 1-1.397-1.016 5.32 5.32 0 0 1-1.02-1.397 5.722 5.722 0 0 1-.544-1.657 12.414 12.414 0 0 1-.166-1.875c-.007-.21-.015-.913-.015-.913v-23.1s.009-.692.015-.895a12.37 12.37 0 0 1 .165-1.872 5.755 5.755 0 0 1 .544-1.662 5.373 5.373 0 0 1 1.015-1.398 5.565 5.565 0 0 1 1.402-1.023 5.823 5.823 0 0 1 1.653-.544A12.586 12.586 0 0 1 7.543.887l.902-.012h102.769l.913.013a12.385 12.385 0 0 1 1.858.162 5.938 5.938 0 0 1 1.671.548 5.594 5.594 0 0 1 2.415 2.42 5.763 5.763 0 0 1 .535 1.649 12.995 12.995 0 0 1 .174 1.887c.003.283.003.588.003.89.008.375.008.732.008 1.092v20.929c0 .363 0 .718-.008 1.075 0 .325 0 .623-.004.93a12.731 12.731 0 0 1-.17 1.853 5.739 5.739 0 0 1-.54 1.67 5.48 5.48 0 0 1-1.016 1.386 5.413 5.413 0 0 1-1.4 1.022 5.862 5.862 0 0 1-1.668.55 12.542 12.542 0 0 1-1.869.163c-.293.007-.6.011-.897.011l-1.084.002Z\"/><g data-name=\"&lt;Group&gt;\"><g data-name=\"&lt;Group&gt;\"><path data-name=\"&lt;Path&gt;\" d=\"M24.769 20.3a4.949 4.949 0 0 1 2.356-4.151 5.066 5.066 0 0 0-3.99-2.158c-1.68-.176-3.308 1.005-4.164 1.005-.872 0-2.19-.988-3.608-.958a5.315 5.315 0 0 0-4.473 2.728c-1.934 3.348-.491 8.269 1.361 10.976.927 1.325 2.01 2.805 3.428 2.753 1.387-.058 1.905-.885 3.58-.885 1.658 0 2.144.885 3.59.852 1.489-.025 2.426-1.332 3.32-2.67a10.962 10.962 0 0 0 1.52-3.092 4.782 4.782 0 0 1-2.92-4.4Zm-2.732-8.09a4.872 4.872 0 0 0 1.115-3.49 4.957 4.957 0 0 0-3.208 1.66 4.636 4.636 0 0 0-1.144 3.36 4.1 4.1 0 0 0 3.237-1.53Z\" style=\"fill:#fff\"/></g><path d=\"M42.302 27.14H37.57l-1.137 3.356h-2.005l4.484-12.418h2.083l4.483 12.418h-2.039Zm-4.243-1.55h3.752l-1.85-5.446h-.051Zm17.101.38c0 2.813-1.506 4.62-3.779 4.62a3.07 3.07 0 0 1-2.848-1.583h-.043v4.484h-1.86V21.442h1.8v1.506h.033a3.212 3.212 0 0 1 2.883-1.6c2.298 0 3.813 1.816 3.813 4.622Zm-1.91 0c0-1.833-.948-3.038-2.393-3.038-1.42 0-2.375 1.23-2.375 3.038 0 1.824.955 3.046 2.375 3.046 1.445 0 2.393-1.197 2.393-3.046Zm11.875 0c0 2.813-1.506 4.62-3.779 4.62a3.07 3.07 0 0 1-2.848-1.583h-.043v4.484h-1.859V21.442h1.799v1.506h.034a3.212 3.212 0 0 1 2.883-1.6c2.298 0 3.813 1.816 3.813 4.622Zm-1.91 0c0-1.833-.948-3.038-2.393-3.038-1.42 0-2.375 1.23-2.375 3.038 0 1.824.955 3.046 2.375 3.046 1.445 0 2.392-1.197 2.392-3.046Zm8.495 1.066c.138 1.232 1.334 2.04 2.97 2.04 1.566 0 2.693-.808 2.693-1.919 0-.964-.68-1.54-2.29-1.936l-1.609-.388c-2.28-.55-3.339-1.617-3.339-3.348 0-2.142 1.867-3.614 4.519-3.614 2.624 0 4.423 1.472 4.483 3.614h-1.876c-.112-1.239-1.136-1.987-2.634-1.987s-2.521.757-2.521 1.858c0 .878.654 1.395 2.255 1.79l1.368.336c2.548.603 3.606 1.626 3.606 3.443 0 2.323-1.85 3.778-4.793 3.778-2.754 0-4.614-1.42-4.734-3.667ZM83.346 19.3v2.142h1.722v1.472h-1.722v4.991c0 .776.345 1.137 1.102 1.137a5.808 5.808 0 0 0 .611-.043v1.463a5.104 5.104 0 0 1-1.032.086c-1.833 0-2.548-.689-2.548-2.445v-5.189h-1.316v-1.472h1.316V19.3Zm2.719 6.67c0-2.849 1.678-4.639 4.294-4.639 2.625 0 4.295 1.79 4.295 4.639 0 2.856-1.661 4.638-4.295 4.638-2.633 0-4.294-1.782-4.294-4.638Zm6.695 0c0-1.954-.895-3.108-2.401-3.108s-2.4 1.162-2.4 3.108c0 1.962.894 3.106 2.4 3.106s2.401-1.144 2.401-3.106Zm3.426-4.528h1.773v1.541h.043a2.16 2.16 0 0 1 2.177-1.635 2.866 2.866 0 0 1 .637.069v1.738a2.598 2.598 0 0 0-.835-.112 1.873 1.873 0 0 0-1.937 2.083v5.37h-1.858Zm13.198 6.395c-.25 1.643-1.85 2.771-3.898 2.771-2.634 0-4.269-1.764-4.269-4.595 0-2.84 1.644-4.682 4.19-4.682 2.506 0 4.08 1.72 4.08 4.466v.637h-6.394v.112a2.358 2.358 0 0 0 2.436 2.564 2.048 2.048 0 0 0 2.09-1.273Zm-6.282-2.702h4.526a2.177 2.177 0 0 0-2.22-2.298 2.292 2.292 0 0 0-2.306 2.298Z\" style=\"fill:#fff\"/></g><path d=\"M37.826 8.731a2.64 2.64 0 0 1 2.808 2.965c0 1.906-1.03 3.002-2.808 3.002h-2.155V8.73Zm-1.228 5.123h1.125a1.876 1.876 0 0 0 1.967-2.146 1.881 1.881 0 0 0-1.967-2.134h-1.125Zm5.082-1.41a2.133 2.133 0 1 1 4.248 0 2.134 2.134 0 1 1-4.247 0Zm3.334 0c0-.976-.439-1.547-1.208-1.547-.773 0-1.207.571-1.207 1.547 0 .984.434 1.55 1.207 1.55.77 0 1.208-.57 1.208-1.55Zm6.559 2.254h-.922l-.93-3.317h-.07l-.927 3.317h-.913l-1.242-4.503h.902l.806 3.436h.067l.926-3.436h.852l.926 3.436h.07l.803-3.436h.889Zm2.281-4.503h.855v.715h.066a1.348 1.348 0 0 1 1.344-.802 1.465 1.465 0 0 1 1.559 1.675v2.915h-.889v-2.692c0-.724-.314-1.084-.972-1.084a1.033 1.033 0 0 0-1.075 1.141v2.635h-.888Zm5.24-1.758h.888v6.26h-.888Zm2.124 4.007a2.133 2.133 0 1 1 4.247 0 2.134 2.134 0 1 1-4.247 0Zm3.333 0c0-.976-.439-1.547-1.208-1.547-.773 0-1.207.571-1.207 1.547 0 .984.434 1.55 1.207 1.55.77 0 1.208-.57 1.208-1.55Zm1.849.98c0-.81.604-1.278 1.676-1.344l1.22-.07v-.389c0-.475-.315-.744-.922-.744-.497 0-.84.182-.939.5h-.86c.09-.773.818-1.27 1.84-1.27 1.128 0 1.765.563 1.765 1.514v3.077h-.855v-.633h-.07a1.515 1.515 0 0 1-1.353.707 1.36 1.36 0 0 1-1.501-1.348Zm2.895-.384v-.377l-1.1.07c-.62.042-.9.253-.9.65 0 .405.351.64.834.64a1.062 1.062 0 0 0 1.166-.983Zm2.053-.596c0-1.423.732-2.324 1.87-2.324a1.484 1.484 0 0 1 1.38.79h.067V8.437h.888v6.26h-.851v-.71h-.07a1.563 1.563 0 0 1-1.415.785c-1.145 0-1.869-.901-1.869-2.328Zm.918 0c0 .955.45 1.53 1.203 1.53.75 0 1.212-.583 1.212-1.526 0-.938-.468-1.53-1.212-1.53-.748 0-1.203.58-1.203 1.526Zm6.964 0a2.133 2.133 0 1 1 4.247 0 2.134 2.134 0 1 1-4.247 0Zm3.333 0c0-.976-.438-1.547-1.208-1.547-.772 0-1.207.571-1.207 1.547 0 .984.435 1.55 1.207 1.55.77 0 1.208-.57 1.208-1.55Zm2.107-2.249h.855v.715h.066a1.348 1.348 0 0 1 1.344-.802 1.465 1.465 0 0 1 1.559 1.675v2.915h-.889v-2.692c0-.724-.314-1.084-.972-1.084a1.033 1.033 0 0 0-1.075 1.141v2.635h-.889Zm8.845-1.121v1.141h.976v.749h-.976v2.315c0 .472.194.679.637.679a2.967 2.967 0 0 0 .339-.021v.74a2.916 2.916 0 0 1-.484.046c-.988 0-1.381-.348-1.381-1.216v-2.543h-.715v-.749h.715V9.074Zm2.19-.637h.88v2.481h.07a1.386 1.386 0 0 1 1.374-.806 1.483 1.483 0 0 1 1.55 1.679v2.907h-.889V12.01c0-.72-.335-1.084-.963-1.084a1.052 1.052 0 0 0-1.134 1.142v2.63h-.888Zm9.056 5.045a1.828 1.828 0 0 1-1.95 1.303 2.045 2.045 0 0 1-2.081-2.325 2.077 2.077 0 0 1 2.076-2.352c1.253 0 2.009.856 2.009 2.27v.31h-3.18v.05a1.19 1.19 0 0 0 1.2 1.29 1.08 1.08 0 0 0 1.07-.546Zm-3.126-1.451h2.275a1.086 1.086 0 0 0-1.109-1.167 1.152 1.152 0 0 0-1.166 1.167Z\" style=\"fill:#fff\" data-name=\"&lt;Group&gt;\"/></svg>',withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://play.google.com/store/apps/details?id=com.fitnessmobileapps.realpilatesdubai\",nodeId:\"NAAuFvW6Y\",openInNewTab:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-ybchrt framer-1my5474\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:40,intrinsicWidth:135,pixelHeight:80,pixelWidth:270,src:\"https://framerusercontent.com/images/0w8ONb9ouWJ2GDFdyHnwlzOy90.png\"},className:\"framer-119pyac\",\"data-framer-name\":\"GetItOnGooglePlay_Badge_Web_color_English\",name:\"GetItOnGooglePlay_Badge_Web_color_English\"})})})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:398,width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1sppw2o-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{AMCeZc8vT:{variant:\"VAaP8rhXf\"},y81HLk_Sl:{variant:\"SMbTjtxoi\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"Kci1SAWDq\",layoutId:\"Kci1SAWDq\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"tcg5Y7Ho5\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-mchffx-container\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"SDS5ZYrsi\",intensity:20,layoutId:\"SDS5ZYrsi\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-EJhXT { background: rgb(255, 255, 255); }`,\".framer-EJhXT.framer-1my5474, .framer-EJhXT .framer-1my5474 { display: block; }\",\".framer-EJhXT.framer-tnpcwt { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-EJhXT .framer-1ep8wvo-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 9; }\",\".framer-EJhXT .framer-fxpwdw { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 80vh; justify-content: flex-end; max-width: 2000px; overflow: hidden; padding: 60px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 5; }\",\".framer-EJhXT .framer-4tabin { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-EJhXT .framer-1u29p5y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-EJhXT .framer-1i9ildy, .framer-EJhXT .framer-1tokoui, .framer-EJhXT .framer-1408tdy, .framer-EJhXT .framer-163g07y { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 1; }\",\".framer-EJhXT .framer-35dtyd { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-EJhXT .framer-gul7wn { flex: none; height: 100%; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 100%; }\",\".framer-EJhXT .framer-q1z8dg { background-color: rgba(0, 0, 0, 0.3); flex: none; height: 100%; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 100%; }\",\".framer-EJhXT .framer-10sxhng { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; max-height: 600px; max-width: 2000px; padding: 60px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-EJhXT .framer-1tq9214 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px 60px 0px 60px; position: relative; width: 1px; }\",\".framer-EJhXT .framer-1bws5mm { --framer-paragraph-spacing: 32px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 50%; word-break: break-word; word-wrap: break-word; }\",\".framer-EJhXT .framer-131wz6d { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: sticky; width: 100%; will-change: transform; }\",\".framer-EJhXT .framer-i9cyzi, .framer-EJhXT .framer-1ncdxs0, .framer-EJhXT .framer-1nrvs2a, .framer-EJhXT .framer-qh5mvf, .framer-EJhXT .framer-ntgvq4, .framer-EJhXT .framer-1kaljrr, .framer-EJhXT .framer-rabrd1, .framer-EJhXT .framer-dipr9h, .framer-EJhXT .framer-18k0vmb, .framer-EJhXT .framer-1omu9ww, .framer-EJhXT .framer-ld8b9n { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-EJhXT .framer-1vgul6n { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-EJhXT .framer-6j26zx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; max-width: 2000px; overflow: hidden; padding: 60px; position: relative; width: 100%; }\",\".framer-EJhXT .framer-1nbb58f { display: grid; flex: none; gap: 10px; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-EJhXT .framer-1nika7l, .framer-EJhXT .framer-nh7b07 { align-content: flex-start; align-items: flex-start; align-self: start; background-color: var(--token-ad9c2474-0450-45d5-912d-dbd1b6fefbcf, #fafafa); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; grid-column: auto / span 2; height: auto; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 32px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-EJhXT .framer-1nsloer { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 60px); position: relative; width: 60px; }\",\".framer-EJhXT .framer-odzm7w, .framer-EJhXT .framer-190dij5, .framer-EJhXT .framer-ctxlx8, .framer-EJhXT .framer-sd9kws, .framer-EJhXT .framer-c6a5fv, .framer-EJhXT .framer-mzd5ze, .framer-EJhXT .framer-1qc5e3y, .framer-EJhXT .framer-5eu4iv { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-EJhXT .framer-1e8ltyn, .framer-EJhXT .framer-zv9kks { align-content: flex-start; align-items: flex-start; align-self: start; background-color: var(--token-ad9c2474-0450-45d5-912d-dbd1b6fefbcf, #fafafa); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 440px; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 32px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-EJhXT .framer-4zlpxa-container, .framer-EJhXT .framer-1j0nlm1-container, .framer-EJhXT .framer-1wnmlii-container { flex: none; height: 60px; position: relative; width: 60px; }\",\".framer-EJhXT .framer-jx0221 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 300vh; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-EJhXT .framer-wkr2e1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 90px; height: 100vh; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 60px; position: sticky; top: 0px; width: 100%; will-change: transform; z-index: 1; }\",\".framer-EJhXT .framer-1xi6hmj { align-content: center; align-items: center; background-color: var(--token-74a0535f-f442-41a8-b151-0cccf98a8ad7, #ffffff); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 120px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-EJhXT .framer-vs3ejg, .framer-EJhXT .framer-1chdio6, .framer-EJhXT .framer-sxxkwo, .framer-EJhXT .framer-16z28na, .framer-EJhXT .framer-4ozg87, .framer-EJhXT .framer-1dnz5ql { align-content: center; align-items: center; box-shadow: 0px 0.6021873017743928px 0.6021873017743928px -1px rgba(0, 0, 0, 0.15), 0px 2.288533303243457px 2.288533303243457px -2px rgba(0, 0, 0, 0.13856), 0px 10px 10px -3px rgba(0, 0, 0, 0.1), 0px 0px 0px -1.875px rgba(0, 0, 0, 0.17241), 0px 0px 0px -3.75px rgba(0, 0, 0, 0.0625); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 160px; height: 420px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 606px; }\",\".framer-EJhXT .framer-1jay5z6, .framer-EJhXT .framer-69h4yf, .framer-EJhXT .framer-1se0v71, .framer-EJhXT .framer-1x83etd, .framer-EJhXT .framer-oblr2p, .framer-EJhXT .framer-yeuqeo { flex: none; height: 100%; overflow: hidden; position: relative; width: 100%; }\",\".framer-EJhXT .framer-8i4bp0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 160px; height: 420px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 606px; }\",\".framer-EJhXT .framer-15jsw3b { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 2000px; padding: 60px 0px 60px 0px; position: relative; width: 100%; }\",\".framer-EJhXT .framer-1iw4sst { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px 60px 0px 60px; position: relative; width: 100%; }\",\".framer-EJhXT .framer-2bwvd8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; min-width: 300px; overflow: visible; padding: 0px; position: relative; width: 50%; z-index: 1; }\",\".framer-EJhXT .framer-69n7zw-container, .framer-EJhXT .framer-dszu8s-container, .framer-EJhXT .framer-1kd8lv-container, .framer-EJhXT .framer-1rvaztl-container, .framer-EJhXT .framer-4mlpex-container, .framer-EJhXT .framer-mchffx-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-EJhXT .framer-nvtxaz, .framer-EJhXT .framer-17dqtin, .framer-EJhXT .framer-1jz2bm0, .framer-EJhXT .framer-mujbbi { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 1; }\",\".framer-EJhXT .framer-1dat1b1, .framer-EJhXT .framer-1tyjzor, .framer-EJhXT .framer-1p85zsh { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-EJhXT .framer-1r48pay { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-end; min-width: 100px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-EJhXT .framer-1d4i6e8 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px 4px 0px 0px; position: relative; width: min-content; }\",\".framer-EJhXT .framer-1jxw61h, .framer-EJhXT .framer-6uo89c, .framer-EJhXT .framer-sgqkxy, .framer-EJhXT .framer-1rn43bc, .framer-EJhXT .framer-15nu408 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-EJhXT .framer-1ckdo7b, .framer-EJhXT .framer-1bljmhh, .framer-EJhXT .framer-1dlfj6t, .framer-EJhXT .framer-11f5iwd, .framer-EJhXT .framer-1s6c50u { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 160px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 60px 0px 60px; position: relative; width: 100%; }\",\".framer-EJhXT .framer-14ycqni, .framer-EJhXT .framer-14ssany, .framer-EJhXT .framer-18y10vc, .framer-EJhXT .framer-1qiaw1u, .framer-EJhXT .framer-1jtlx12 { --framer-paragraph-spacing: 32px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-EJhXT .framer-3p5zc3, .framer-EJhXT .framer-8jmd04, .framer-EJhXT .framer-s2pq8c, .framer-EJhXT .framer-15i0xk2 { -webkit-mask: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 5%, rgb(0, 0, 0) 95%, rgba(0, 0, 0, 0) 100%) add; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 160px; height: min-content; justify-content: flex-start; mask: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 5%, rgb(0, 0, 0) 95%, rgba(0, 0, 0, 0) 100%) add; overflow: hidden; overflow-x: auto; padding: 0px 60px 0px 60px; position: relative; width: 100%; }\",\".framer-EJhXT .framer-1clcvu9, .framer-EJhXT .framer-u4btw2, .framer-EJhXT .framer-1mda461, .framer-EJhXT .framer-o46nzq, .framer-EJhXT .framer-1wsixnp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 300px; justify-content: flex-start; padding: 0px; position: relative; width: min-content; }\",\".framer-EJhXT .framer-dggz0v, .framer-EJhXT .framer-1uiacw1, .framer-EJhXT .framer-3lvth2, .framer-EJhXT .framer-1johb2y, .framer-EJhXT .framer-1179bys { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 0px; height: 100%; justify-content: flex-start; padding: 0px; position: relative; width: min-content; }\",\".framer-EJhXT .framer-3jay3e-container, .framer-EJhXT .framer-r7es0y-container, .framer-EJhXT .framer-vu5sb0-container, .framer-EJhXT .framer-tlmjee-container, .framer-EJhXT .framer-cioa11-container { flex: none; height: 100%; position: relative; width: auto; }\",\".framer-EJhXT .framer-1c1yxrc, .framer-EJhXT .framer-vq1hse, .framer-EJhXT .framer-g2hm79, .framer-EJhXT .framer-1lm1sov, .framer-EJhXT .framer-166pc93 { background-color: rgba(13, 13, 13, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 10; }\",\".framer-EJhXT .framer-1q86m5x, .framer-EJhXT .framer-ptte0m, .framer-EJhXT .framer-62k3sy, .framer-EJhXT .framer-c4mgdv, .framer-EJhXT .framer-6akf8a { align-content: center; align-items: center; background-color: var(--token-74a0535f-f442-41a8-b151-0cccf98a8ad7, #ffffff); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: 90%; justify-content: flex-start; left: calc(50.00000000000002% - 90% / 2); overflow: hidden; padding: 0px 60px 0px 0px; position: fixed; top: calc(50.00000000000002% - 90% / 2); width: 90%; will-change: var(--framer-will-change-override, transform); z-index: 10; }\",\".framer-EJhXT .framer-1kfc9k1-container, .framer-EJhXT .framer-pgmd06-container, .framer-EJhXT .framer-7c57hv-container, .framer-EJhXT .framer-1t6nr9n-container, .framer-EJhXT .framer-1pmnwr9-container { cursor: pointer; flex: none; height: 40px; position: absolute; right: 60px; top: 60px; width: 40px; z-index: 1; }\",\".framer-EJhXT .framer-1o1ix7v, .framer-EJhXT .framer-1qox9qa, .framer-EJhXT .framer-13ndts, .framer-EJhXT .framer-c86l44, .framer-EJhXT .framer-2v1fg3 { flex: none; height: 100%; overflow: hidden; position: relative; width: 40%; }\",\".framer-EJhXT .framer-vr4njd, .framer-EJhXT .framer-1d5igyj, .framer-EJhXT .framer-19s1omz, .framer-EJhXT .framer-16hczh2, .framer-EJhXT .framer-1awsgki { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-EJhXT .framer-19t58mp, .framer-EJhXT .framer-gi8c4o, .framer-EJhXT .framer-7unqsv, .framer-EJhXT .framer-1pu4jze, .framer-EJhXT .framer-d5rent { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-EJhXT .framer-p7fb2z, .framer-EJhXT .framer-k76ue2, .framer-EJhXT .framer-1hhrou8, .framer-EJhXT .framer-6n2vnq, .framer-EJhXT .framer-tevnhw, .framer-EJhXT .framer-1uo92a9, .framer-EJhXT .framer-yb8buh, .framer-EJhXT .framer-1pm0vsn, .framer-EJhXT .framer-q1vh3r, .framer-EJhXT .framer-cpyqww, .framer-EJhXT .framer-1hugbaf, .framer-EJhXT .framer-dkwopx, .framer-EJhXT .framer-1prdnav, .framer-EJhXT .framer-6ig1od, .framer-EJhXT .framer-w3cpja { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-EJhXT .framer-obr110 { -webkit-mask: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 5%, rgb(0, 0, 0) 90%, rgba(0, 0, 0, 0) 100%) add; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 160px; height: min-content; justify-content: flex-start; mask: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 5%, rgb(0, 0, 0) 90%, rgba(0, 0, 0, 0) 100%) add; overflow: hidden; overflow-x: auto; padding: 0px 60px 0px 60px; position: relative; width: 100%; }\",\".framer-EJhXT .framer-62iz9i { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 20px 60px 20px 60px; position: relative; width: 100%; }\",\".framer-EJhXT .framer-1cl0dzj { align-content: center; align-items: center; background-color: var(--token-ad9c2474-0450-45d5-912d-dbd1b6fefbcf, #fafafa); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; min-width: 300px; overflow: visible; padding: 40px 0px 40px 0px; position: relative; width: 50%; z-index: 1; }\",\".framer-EJhXT .framer-1ackpva, .framer-EJhXT .framer-x1xoe2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-EJhXT .framer-xgejun { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 2000px; padding: 0px 0px 60px 0px; position: relative; width: 100%; }\",\".framer-EJhXT .framer-1m6iink { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-EJhXT .framer-gn6qx9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 160px; height: 400px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-EJhXT .framer-15pf18x { flex: 1 0 0px; height: 1px; position: relative; text-decoration: none; width: 100%; }\",\".framer-EJhXT .framer-lr3970 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 60px 0px 60px; position: relative; width: 100%; z-index: 1; }\",\".framer-EJhXT .framer-1ut9kg0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-EJhXT .framer-1ybc254 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 2000px; padding: 60px; position: relative; width: 100%; }\",\".framer-EJhXT .framer-1u2cs28 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 20px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-EJhXT .framer-oqkyg9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-EJhXT .framer-41q82x-container, .framer-EJhXT .framer-odvirn-container, .framer-EJhXT .framer-1tecf5q-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-EJhXT .framer-hx691 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 2000px; padding: 60px; position: relative; width: 100%; }\",\".framer-EJhXT .framer-1i0byol { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-EJhXT .framer-ygoqfp { align-content: center; align-items: center; aspect-ratio: 0.49019607843137253 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 530px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 260px; }\",\".framer-EJhXT .framer-1bglmt8 { aspect-ratio: 0.49019607843137253 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 530px); overflow: visible; position: relative; width: 1px; z-index: 2; }\",\".framer-EJhXT .framer-1faj8jw { border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; bottom: 4px; flex: none; left: 12px; overflow: hidden; position: absolute; right: 12px; top: 11px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-EJhXT .framer-1nv0b7a { aspect-ratio: 0.2496823379923761 / 1; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; flex: none; height: var(--framer-aspect-ratio-supported, 944px); left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-EJhXT .framer-5nhd7b { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-EJhXT .framer-iasrzi, .framer-EJhXT .framer-ybchrt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-EJhXT .framer-qfrp59 { aspect-ratio: 3 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); position: relative; width: 120px; }\",\".framer-EJhXT .framer-119pyac { aspect-ratio: 3.375 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); overflow: visible; position: relative; width: 135px; }\",\".framer-EJhXT .framer-1sppw2o-container { flex: none; height: auto; max-width: 100%; position: relative; width: 100%; z-index: 9; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-EJhXT.framer-tnpcwt, .framer-EJhXT .framer-fxpwdw, .framer-EJhXT .framer-4tabin, .framer-EJhXT .framer-1u29p5y, .framer-EJhXT .framer-35dtyd, .framer-EJhXT .framer-10sxhng, .framer-EJhXT .framer-1tq9214, .framer-EJhXT .framer-131wz6d, .framer-EJhXT .framer-1vgul6n, .framer-EJhXT .framer-6j26zx, .framer-EJhXT .framer-1nika7l, .framer-EJhXT .framer-1e8ltyn, .framer-EJhXT .framer-zv9kks, .framer-EJhXT .framer-nh7b07, .framer-EJhXT .framer-jx0221, .framer-EJhXT .framer-wkr2e1, .framer-EJhXT .framer-1xi6hmj, .framer-EJhXT .framer-vs3ejg, .framer-EJhXT .framer-1chdio6, .framer-EJhXT .framer-sxxkwo, .framer-EJhXT .framer-16z28na, .framer-EJhXT .framer-4ozg87, .framer-EJhXT .framer-1dnz5ql, .framer-EJhXT .framer-8i4bp0, .framer-EJhXT .framer-15jsw3b, .framer-EJhXT .framer-1iw4sst, .framer-EJhXT .framer-2bwvd8, .framer-EJhXT .framer-1r48pay, .framer-EJhXT .framer-1d4i6e8, .framer-EJhXT .framer-1jxw61h, .framer-EJhXT .framer-1ckdo7b, .framer-EJhXT .framer-3p5zc3, .framer-EJhXT .framer-1clcvu9, .framer-EJhXT .framer-dggz0v, .framer-EJhXT .framer-1q86m5x, .framer-EJhXT .framer-vr4njd, .framer-EJhXT .framer-19t58mp, .framer-EJhXT .framer-6uo89c, .framer-EJhXT .framer-1bljmhh, .framer-EJhXT .framer-8jmd04, .framer-EJhXT .framer-u4btw2, .framer-EJhXT .framer-1uiacw1, .framer-EJhXT .framer-ptte0m, .framer-EJhXT .framer-1d5igyj, .framer-EJhXT .framer-gi8c4o, .framer-EJhXT .framer-sgqkxy, .framer-EJhXT .framer-1dlfj6t, .framer-EJhXT .framer-s2pq8c, .framer-EJhXT .framer-1mda461, .framer-EJhXT .framer-3lvth2, .framer-EJhXT .framer-62k3sy, .framer-EJhXT .framer-19s1omz, .framer-EJhXT .framer-7unqsv, .framer-EJhXT .framer-1rn43bc, .framer-EJhXT .framer-11f5iwd, .framer-EJhXT .framer-obr110, .framer-EJhXT .framer-o46nzq, .framer-EJhXT .framer-1johb2y, .framer-EJhXT .framer-c4mgdv, .framer-EJhXT .framer-16hczh2, .framer-EJhXT .framer-1pu4jze, .framer-EJhXT .framer-15nu408, .framer-EJhXT .framer-1s6c50u, .framer-EJhXT .framer-15i0xk2, .framer-EJhXT .framer-1wsixnp, .framer-EJhXT .framer-1179bys, .framer-EJhXT .framer-6akf8a, .framer-EJhXT .framer-1awsgki, .framer-EJhXT .framer-d5rent, .framer-EJhXT .framer-62iz9i, .framer-EJhXT .framer-1cl0dzj, .framer-EJhXT .framer-1ackpva, .framer-EJhXT .framer-xgejun, .framer-EJhXT .framer-1m6iink, .framer-EJhXT .framer-gn6qx9, .framer-EJhXT .framer-lr3970, .framer-EJhXT .framer-1ut9kg0, .framer-EJhXT .framer-1ybc254, .framer-EJhXT .framer-1u2cs28, .framer-EJhXT .framer-oqkyg9, .framer-EJhXT .framer-hx691, .framer-EJhXT .framer-x1xoe2, .framer-EJhXT .framer-ygoqfp, .framer-EJhXT .framer-5nhd7b, .framer-EJhXT .framer-iasrzi, .framer-EJhXT .framer-ybchrt { gap: 0px; } .framer-EJhXT.framer-tnpcwt > *, .framer-EJhXT .framer-4tabin > *, .framer-EJhXT .framer-1tq9214 > *, .framer-EJhXT .framer-131wz6d > *, .framer-EJhXT .framer-1r48pay > *, .framer-EJhXT .framer-1u2cs28 > *, .framer-EJhXT .framer-oqkyg9 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-EJhXT.framer-tnpcwt > :first-child, .framer-EJhXT .framer-fxpwdw > :first-child, .framer-EJhXT .framer-4tabin > :first-child, .framer-EJhXT .framer-1tq9214 > :first-child, .framer-EJhXT .framer-131wz6d > :first-child, .framer-EJhXT .framer-6j26zx > :first-child, .framer-EJhXT .framer-1nika7l > :first-child, .framer-EJhXT .framer-1e8ltyn > :first-child, .framer-EJhXT .framer-zv9kks > :first-child, .framer-EJhXT .framer-nh7b07 > :first-child, .framer-EJhXT .framer-jx0221 > :first-child, .framer-EJhXT .framer-15jsw3b > :first-child, .framer-EJhXT .framer-2bwvd8 > :first-child, .framer-EJhXT .framer-1r48pay > :first-child, .framer-EJhXT .framer-1jxw61h > :first-child, .framer-EJhXT .framer-1ckdo7b > :first-child, .framer-EJhXT .framer-vr4njd > :first-child, .framer-EJhXT .framer-19t58mp > :first-child, .framer-EJhXT .framer-6uo89c > :first-child, .framer-EJhXT .framer-1bljmhh > :first-child, .framer-EJhXT .framer-1d5igyj > :first-child, .framer-EJhXT .framer-gi8c4o > :first-child, .framer-EJhXT .framer-sgqkxy > :first-child, .framer-EJhXT .framer-1dlfj6t > :first-child, .framer-EJhXT .framer-19s1omz > :first-child, .framer-EJhXT .framer-7unqsv > :first-child, .framer-EJhXT .framer-1rn43bc > :first-child, .framer-EJhXT .framer-11f5iwd > :first-child, .framer-EJhXT .framer-16hczh2 > :first-child, .framer-EJhXT .framer-1pu4jze > :first-child, .framer-EJhXT .framer-15nu408 > :first-child, .framer-EJhXT .framer-1s6c50u > :first-child, .framer-EJhXT .framer-1awsgki > :first-child, .framer-EJhXT .framer-d5rent > :first-child, .framer-EJhXT .framer-1cl0dzj > :first-child, .framer-EJhXT .framer-1ackpva > :first-child, .framer-EJhXT .framer-xgejun > :first-child, .framer-EJhXT .framer-1m6iink > :first-child, .framer-EJhXT .framer-gn6qx9 > :first-child, .framer-EJhXT .framer-lr3970 > :first-child, .framer-EJhXT .framer-1ybc254 > :first-child, .framer-EJhXT .framer-1u2cs28 > :first-child, .framer-EJhXT .framer-oqkyg9 > :first-child, .framer-EJhXT .framer-hx691 > :first-child, .framer-EJhXT .framer-x1xoe2 > :first-child, .framer-EJhXT .framer-iasrzi > :first-child, .framer-EJhXT .framer-ybchrt > :first-child { margin-top: 0px; } .framer-EJhXT.framer-tnpcwt > :last-child, .framer-EJhXT .framer-fxpwdw > :last-child, .framer-EJhXT .framer-4tabin > :last-child, .framer-EJhXT .framer-1tq9214 > :last-child, .framer-EJhXT .framer-131wz6d > :last-child, .framer-EJhXT .framer-6j26zx > :last-child, .framer-EJhXT .framer-1nika7l > :last-child, .framer-EJhXT .framer-1e8ltyn > :last-child, .framer-EJhXT .framer-zv9kks > :last-child, .framer-EJhXT .framer-nh7b07 > :last-child, .framer-EJhXT .framer-jx0221 > :last-child, .framer-EJhXT .framer-15jsw3b > :last-child, .framer-EJhXT .framer-2bwvd8 > :last-child, .framer-EJhXT .framer-1r48pay > :last-child, .framer-EJhXT .framer-1jxw61h > :last-child, .framer-EJhXT .framer-1ckdo7b > :last-child, .framer-EJhXT .framer-vr4njd > :last-child, .framer-EJhXT .framer-19t58mp > :last-child, .framer-EJhXT .framer-6uo89c > :last-child, .framer-EJhXT .framer-1bljmhh > :last-child, .framer-EJhXT .framer-1d5igyj > :last-child, .framer-EJhXT .framer-gi8c4o > :last-child, .framer-EJhXT .framer-sgqkxy > :last-child, .framer-EJhXT .framer-1dlfj6t > :last-child, .framer-EJhXT .framer-19s1omz > :last-child, .framer-EJhXT .framer-7unqsv > :last-child, .framer-EJhXT .framer-1rn43bc > :last-child, .framer-EJhXT .framer-11f5iwd > :last-child, .framer-EJhXT .framer-16hczh2 > :last-child, .framer-EJhXT .framer-1pu4jze > :last-child, .framer-EJhXT .framer-15nu408 > :last-child, .framer-EJhXT .framer-1s6c50u > :last-child, .framer-EJhXT .framer-1awsgki > :last-child, .framer-EJhXT .framer-d5rent > :last-child, .framer-EJhXT .framer-1cl0dzj > :last-child, .framer-EJhXT .framer-1ackpva > :last-child, .framer-EJhXT .framer-xgejun > :last-child, .framer-EJhXT .framer-1m6iink > :last-child, .framer-EJhXT .framer-gn6qx9 > :last-child, .framer-EJhXT .framer-lr3970 > :last-child, .framer-EJhXT .framer-1ybc254 > :last-child, .framer-EJhXT .framer-1u2cs28 > :last-child, .framer-EJhXT .framer-oqkyg9 > :last-child, .framer-EJhXT .framer-hx691 > :last-child, .framer-EJhXT .framer-x1xoe2 > :last-child, .framer-EJhXT .framer-iasrzi > :last-child, .framer-EJhXT .framer-ybchrt > :last-child { margin-bottom: 0px; } .framer-EJhXT .framer-fxpwdw > *, .framer-EJhXT .framer-1jxw61h > *, .framer-EJhXT .framer-6uo89c > *, .framer-EJhXT .framer-sgqkxy > *, .framer-EJhXT .framer-1rn43bc > *, .framer-EJhXT .framer-15nu408 > *, .framer-EJhXT .framer-lr3970 > *, .framer-EJhXT .framer-1ybc254 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-EJhXT .framer-1u29p5y > *, .framer-EJhXT .framer-35dtyd > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-EJhXT .framer-1u29p5y > :first-child, .framer-EJhXT .framer-35dtyd > :first-child, .framer-EJhXT .framer-10sxhng > :first-child, .framer-EJhXT .framer-1vgul6n > :first-child, .framer-EJhXT .framer-wkr2e1 > :first-child, .framer-EJhXT .framer-1xi6hmj > :first-child, .framer-EJhXT .framer-vs3ejg > :first-child, .framer-EJhXT .framer-1chdio6 > :first-child, .framer-EJhXT .framer-sxxkwo > :first-child, .framer-EJhXT .framer-16z28na > :first-child, .framer-EJhXT .framer-4ozg87 > :first-child, .framer-EJhXT .framer-1dnz5ql > :first-child, .framer-EJhXT .framer-8i4bp0 > :first-child, .framer-EJhXT .framer-1iw4sst > :first-child, .framer-EJhXT .framer-1d4i6e8 > :first-child, .framer-EJhXT .framer-3p5zc3 > :first-child, .framer-EJhXT .framer-1clcvu9 > :first-child, .framer-EJhXT .framer-dggz0v > :first-child, .framer-EJhXT .framer-1q86m5x > :first-child, .framer-EJhXT .framer-8jmd04 > :first-child, .framer-EJhXT .framer-u4btw2 > :first-child, .framer-EJhXT .framer-1uiacw1 > :first-child, .framer-EJhXT .framer-ptte0m > :first-child, .framer-EJhXT .framer-s2pq8c > :first-child, .framer-EJhXT .framer-1mda461 > :first-child, .framer-EJhXT .framer-3lvth2 > :first-child, .framer-EJhXT .framer-62k3sy > :first-child, .framer-EJhXT .framer-obr110 > :first-child, .framer-EJhXT .framer-o46nzq > :first-child, .framer-EJhXT .framer-1johb2y > :first-child, .framer-EJhXT .framer-c4mgdv > :first-child, .framer-EJhXT .framer-15i0xk2 > :first-child, .framer-EJhXT .framer-1wsixnp > :first-child, .framer-EJhXT .framer-1179bys > :first-child, .framer-EJhXT .framer-6akf8a > :first-child, .framer-EJhXT .framer-62iz9i > :first-child, .framer-EJhXT .framer-1ut9kg0 > :first-child, .framer-EJhXT .framer-ygoqfp > :first-child, .framer-EJhXT .framer-5nhd7b > :first-child { margin-left: 0px; } .framer-EJhXT .framer-1u29p5y > :last-child, .framer-EJhXT .framer-35dtyd > :last-child, .framer-EJhXT .framer-10sxhng > :last-child, .framer-EJhXT .framer-1vgul6n > :last-child, .framer-EJhXT .framer-wkr2e1 > :last-child, .framer-EJhXT .framer-1xi6hmj > :last-child, .framer-EJhXT .framer-vs3ejg > :last-child, .framer-EJhXT .framer-1chdio6 > :last-child, .framer-EJhXT .framer-sxxkwo > :last-child, .framer-EJhXT .framer-16z28na > :last-child, .framer-EJhXT .framer-4ozg87 > :last-child, .framer-EJhXT .framer-1dnz5ql > :last-child, .framer-EJhXT .framer-8i4bp0 > :last-child, .framer-EJhXT .framer-1iw4sst > :last-child, .framer-EJhXT .framer-1d4i6e8 > :last-child, .framer-EJhXT .framer-3p5zc3 > :last-child, .framer-EJhXT .framer-1clcvu9 > :last-child, .framer-EJhXT .framer-dggz0v > :last-child, .framer-EJhXT .framer-1q86m5x > :last-child, .framer-EJhXT .framer-8jmd04 > :last-child, .framer-EJhXT .framer-u4btw2 > :last-child, .framer-EJhXT .framer-1uiacw1 > :last-child, .framer-EJhXT .framer-ptte0m > :last-child, .framer-EJhXT .framer-s2pq8c > :last-child, .framer-EJhXT .framer-1mda461 > :last-child, .framer-EJhXT .framer-3lvth2 > :last-child, .framer-EJhXT .framer-62k3sy > :last-child, .framer-EJhXT .framer-obr110 > :last-child, .framer-EJhXT .framer-o46nzq > :last-child, .framer-EJhXT .framer-1johb2y > :last-child, .framer-EJhXT .framer-c4mgdv > :last-child, .framer-EJhXT .framer-15i0xk2 > :last-child, .framer-EJhXT .framer-1wsixnp > :last-child, .framer-EJhXT .framer-1179bys > :last-child, .framer-EJhXT .framer-6akf8a > :last-child, .framer-EJhXT .framer-62iz9i > :last-child, .framer-EJhXT .framer-1ut9kg0 > :last-child, .framer-EJhXT .framer-ygoqfp > :last-child, .framer-EJhXT .framer-5nhd7b > :last-child { margin-right: 0px; } .framer-EJhXT .framer-10sxhng > *, .framer-EJhXT .framer-1q86m5x > *, .framer-EJhXT .framer-ptte0m > *, .framer-EJhXT .framer-62k3sy > *, .framer-EJhXT .framer-c4mgdv > *, .framer-EJhXT .framer-6akf8a > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-EJhXT .framer-1vgul6n > *, .framer-EJhXT .framer-1d4i6e8 > *, .framer-EJhXT .framer-1clcvu9 > *, .framer-EJhXT .framer-dggz0v > *, .framer-EJhXT .framer-u4btw2 > *, .framer-EJhXT .framer-1uiacw1 > *, .framer-EJhXT .framer-1mda461 > *, .framer-EJhXT .framer-3lvth2 > *, .framer-EJhXT .framer-o46nzq > *, .framer-EJhXT .framer-1johb2y > *, .framer-EJhXT .framer-1wsixnp > *, .framer-EJhXT .framer-1179bys > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-EJhXT .framer-6j26zx > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-EJhXT .framer-1nika7l > *, .framer-EJhXT .framer-1e8ltyn > *, .framer-EJhXT .framer-zv9kks > *, .framer-EJhXT .framer-nh7b07 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-EJhXT .framer-jx0221 > *, .framer-EJhXT .framer-2bwvd8 > *, .framer-EJhXT .framer-vr4njd > *, .framer-EJhXT .framer-1d5igyj > *, .framer-EJhXT .framer-19s1omz > *, .framer-EJhXT .framer-16hczh2 > *, .framer-EJhXT .framer-1awsgki > *, .framer-EJhXT .framer-1ackpva > *, .framer-EJhXT .framer-x1xoe2 > *, .framer-EJhXT .framer-iasrzi > *, .framer-EJhXT .framer-ybchrt > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-EJhXT .framer-wkr2e1 > * { margin: 0px; margin-left: calc(90px / 2); margin-right: calc(90px / 2); } .framer-EJhXT .framer-1xi6hmj > * { margin: 0px; margin-left: calc(120px / 2); margin-right: calc(120px / 2); } .framer-EJhXT .framer-vs3ejg > *, .framer-EJhXT .framer-1chdio6 > *, .framer-EJhXT .framer-sxxkwo > *, .framer-EJhXT .framer-16z28na > *, .framer-EJhXT .framer-4ozg87 > *, .framer-EJhXT .framer-1dnz5ql > *, .framer-EJhXT .framer-8i4bp0 > *, .framer-EJhXT .framer-3p5zc3 > *, .framer-EJhXT .framer-8jmd04 > *, .framer-EJhXT .framer-s2pq8c > *, .framer-EJhXT .framer-obr110 > *, .framer-EJhXT .framer-15i0xk2 > * { margin: 0px; margin-left: calc(160px / 2); margin-right: calc(160px / 2); } .framer-EJhXT .framer-15jsw3b > *, .framer-EJhXT .framer-1cl0dzj > *, .framer-EJhXT .framer-xgejun > *, .framer-EJhXT .framer-1m6iink > *, .framer-EJhXT .framer-hx691 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-EJhXT .framer-1iw4sst > *, .framer-EJhXT .framer-62iz9i > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-EJhXT .framer-1ckdo7b > *, .framer-EJhXT .framer-1bljmhh > *, .framer-EJhXT .framer-1dlfj6t > *, .framer-EJhXT .framer-11f5iwd > *, .framer-EJhXT .framer-1s6c50u > *, .framer-EJhXT .framer-gn6qx9 > * { margin: 0px; margin-bottom: calc(160px / 2); margin-top: calc(160px / 2); } .framer-EJhXT .framer-19t58mp > *, .framer-EJhXT .framer-gi8c4o > *, .framer-EJhXT .framer-7unqsv > *, .framer-EJhXT .framer-1pu4jze > *, .framer-EJhXT .framer-d5rent > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-EJhXT .framer-1ut9kg0 > *, .framer-EJhXT .framer-ygoqfp > *, .framer-EJhXT .framer-5nhd7b > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",`@media (min-width: 810px) and (max-width: 1199px) { .${metadata.bodyClassName}-framer-EJhXT { background: rgb(255, 255, 255); } .framer-EJhXT.framer-tnpcwt { width: 810px; } .framer-EJhXT .framer-fxpwdw { border-bottom-left-radius: 60px; border-bottom-right-radius: 60px; height: 70vh; } .framer-EJhXT .framer-1u29p5y, .framer-EJhXT .framer-35dtyd { gap: 16px; } .framer-EJhXT .framer-1tq9214 { gap: 20px; } .framer-EJhXT .framer-1bws5mm { width: 60%; } .framer-EJhXT .framer-1nika7l, .framer-EJhXT .framer-nh7b07 { gap: 20px; padding: 28px; } .framer-EJhXT .framer-1e8ltyn, .framer-EJhXT .framer-zv9kks { gap: 20px; grid-column: auto / span 2; height: min-content; padding: 28px; } .framer-EJhXT .framer-4zlpxa-container, .framer-EJhXT .framer-1j0nlm1-container, .framer-EJhXT .framer-1wnmlii-container { height: 40px; width: 40px; } .framer-EJhXT .framer-1q86m5x, .framer-EJhXT .framer-ptte0m, .framer-EJhXT .framer-62k3sy, .framer-EJhXT .framer-c4mgdv, .framer-EJhXT .framer-6akf8a { flex-direction: column; gap: 0px; padding: 0px; } .framer-EJhXT .framer-1kfc9k1-container, .framer-EJhXT .framer-pgmd06-container, .framer-EJhXT .framer-7c57hv-container, .framer-EJhXT .framer-1t6nr9n-container, .framer-EJhXT .framer-1pmnwr9-container { right: 40px; top: 40px; } .framer-EJhXT .framer-1o1ix7v, .framer-EJhXT .framer-1qox9qa, .framer-EJhXT .framer-13ndts, .framer-EJhXT .framer-c86l44, .framer-EJhXT .framer-2v1fg3 { height: 40%; width: 100%; } .framer-EJhXT .framer-vr4njd, .framer-EJhXT .framer-1d5igyj, .framer-EJhXT .framer-19s1omz, .framer-EJhXT .framer-16hczh2, .framer-EJhXT .framer-1awsgki { flex: none; padding: 40px; width: 100%; } .framer-EJhXT .framer-gn6qx9 { order: 0; } .framer-EJhXT .framer-lr3970 { order: 1; } .framer-EJhXT .framer-1nv0b7a { height: var(--framer-aspect-ratio-supported, 945px); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-EJhXT .framer-1u29p5y, .framer-EJhXT .framer-35dtyd, .framer-EJhXT .framer-1tq9214, .framer-EJhXT .framer-1nika7l, .framer-EJhXT .framer-1e8ltyn, .framer-EJhXT .framer-zv9kks, .framer-EJhXT .framer-nh7b07, .framer-EJhXT .framer-1q86m5x, .framer-EJhXT .framer-ptte0m, .framer-EJhXT .framer-62k3sy, .framer-EJhXT .framer-c4mgdv, .framer-EJhXT .framer-6akf8a { gap: 0px; } .framer-EJhXT .framer-1u29p5y > *, .framer-EJhXT .framer-35dtyd > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-EJhXT .framer-1u29p5y > :first-child, .framer-EJhXT .framer-35dtyd > :first-child { margin-left: 0px; } .framer-EJhXT .framer-1u29p5y > :last-child, .framer-EJhXT .framer-35dtyd > :last-child { margin-right: 0px; } .framer-EJhXT .framer-1tq9214 > *, .framer-EJhXT .framer-1nika7l > *, .framer-EJhXT .framer-1e8ltyn > *, .framer-EJhXT .framer-zv9kks > *, .framer-EJhXT .framer-nh7b07 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-EJhXT .framer-1tq9214 > :first-child, .framer-EJhXT .framer-1nika7l > :first-child, .framer-EJhXT .framer-1e8ltyn > :first-child, .framer-EJhXT .framer-zv9kks > :first-child, .framer-EJhXT .framer-nh7b07 > :first-child, .framer-EJhXT .framer-1q86m5x > :first-child, .framer-EJhXT .framer-ptte0m > :first-child, .framer-EJhXT .framer-62k3sy > :first-child, .framer-EJhXT .framer-c4mgdv > :first-child, .framer-EJhXT .framer-6akf8a > :first-child { margin-top: 0px; } .framer-EJhXT .framer-1tq9214 > :last-child, .framer-EJhXT .framer-1nika7l > :last-child, .framer-EJhXT .framer-1e8ltyn > :last-child, .framer-EJhXT .framer-zv9kks > :last-child, .framer-EJhXT .framer-nh7b07 > :last-child, .framer-EJhXT .framer-1q86m5x > :last-child, .framer-EJhXT .framer-ptte0m > :last-child, .framer-EJhXT .framer-62k3sy > :last-child, .framer-EJhXT .framer-c4mgdv > :last-child, .framer-EJhXT .framer-6akf8a > :last-child { margin-bottom: 0px; } .framer-EJhXT .framer-1q86m5x > *, .framer-EJhXT .framer-ptte0m > *, .framer-EJhXT .framer-62k3sy > *, .framer-EJhXT .framer-c4mgdv > *, .framer-EJhXT .framer-6akf8a > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }}`,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-EJhXT { background: rgb(255, 255, 255); } .framer-EJhXT.framer-tnpcwt { width: 390px; } .framer-EJhXT .framer-fxpwdw { border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; height: 70vh; padding: 0px 20px 40px 20px; } .framer-EJhXT .framer-1u29p5y, .framer-EJhXT .framer-35dtyd { gap: 10px; } .framer-EJhXT .framer-10sxhng { flex-direction: column; padding: 60px 0px 60px 0px; } .framer-EJhXT .framer-1tq9214 { flex: none; gap: 40px; padding: 0px 20px 0px 20px; width: 100%; } .framer-EJhXT .framer-1bws5mm, .framer-EJhXT .framer-2bwvd8 { width: 100%; } .framer-EJhXT .framer-6j26zx { padding: 40px 20px 40px 20px; } .framer-EJhXT .framer-1nika7l, .framer-EJhXT .framer-nh7b07 { gap: 16px; padding: 24px; } .framer-EJhXT .framer-1e8ltyn, .framer-EJhXT .framer-zv9kks { gap: 16px; grid-column: auto / span 2; height: min-content; padding: 24px; } .framer-EJhXT .framer-4zlpxa-container, .framer-EJhXT .framer-1j0nlm1-container, .framer-EJhXT .framer-1wnmlii-container { height: 32px; width: 32px; } .framer-EJhXT .framer-wkr2e1 { padding: 0px 0px 0px 20px; } .framer-EJhXT .framer-1xi6hmj { gap: 28px; } .framer-EJhXT .framer-vs3ejg, .framer-EJhXT .framer-1chdio6, .framer-EJhXT .framer-sxxkwo, .framer-EJhXT .framer-16z28na, .framer-EJhXT .framer-4ozg87, .framer-EJhXT .framer-1dnz5ql, .framer-EJhXT .framer-8i4bp0 { aspect-ratio: 1.4428571428571428 / 1; height: 277px; width: var(--framer-aspect-ratio-supported, 400px); } .framer-EJhXT .framer-1iw4sst, .framer-EJhXT .framer-1ckdo7b, .framer-EJhXT .framer-3p5zc3, .framer-EJhXT .framer-1bljmhh, .framer-EJhXT .framer-8jmd04, .framer-EJhXT .framer-1dlfj6t, .framer-EJhXT .framer-s2pq8c, .framer-EJhXT .framer-11f5iwd, .framer-EJhXT .framer-obr110, .framer-EJhXT .framer-1s6c50u, .framer-EJhXT .framer-15i0xk2 { padding: 0px 20px 0px 20px; } .framer-EJhXT .framer-1q86m5x, .framer-EJhXT .framer-ptte0m, .framer-EJhXT .framer-62k3sy, .framer-EJhXT .framer-c4mgdv, .framer-EJhXT .framer-6akf8a { flex-direction: column; gap: 0px; padding: 0px; } .framer-EJhXT .framer-1kfc9k1-container, .framer-EJhXT .framer-pgmd06-container, .framer-EJhXT .framer-7c57hv-container, .framer-EJhXT .framer-1t6nr9n-container, .framer-EJhXT .framer-1pmnwr9-container { height: 32px; right: 20px; top: 20px; width: 32px; } .framer-EJhXT .framer-1o1ix7v, .framer-EJhXT .framer-1qox9qa, .framer-EJhXT .framer-13ndts, .framer-EJhXT .framer-c86l44, .framer-EJhXT .framer-2v1fg3 { height: 30%; width: 100%; } .framer-EJhXT .framer-vr4njd, .framer-EJhXT .framer-1d5igyj, .framer-EJhXT .framer-19s1omz, .framer-EJhXT .framer-16hczh2, .framer-EJhXT .framer-1awsgki { flex: none; padding: 20px; width: 100%; } .framer-EJhXT .framer-62iz9i, .framer-EJhXT .framer-1ybc254 { padding: 20px; } .framer-EJhXT .framer-1cl0dzj { padding: 40px 20px 40px 0px; } .framer-EJhXT .framer-gn6qx9 { height: 500px; order: 0; } .framer-EJhXT .framer-lr3970 { order: 1; } .framer-EJhXT .framer-1u2cs28 { overflow: visible; } .framer-EJhXT .framer-hx691 { padding: 20px 20px 60px 20px; } .framer-EJhXT .framer-ygoqfp { height: var(--framer-aspect-ratio-supported, 560px); } .framer-EJhXT .framer-1bglmt8 { height: var(--framer-aspect-ratio-supported, 408px); } .framer-EJhXT .framer-1nv0b7a { height: var(--framer-aspect-ratio-supported, 905px); } .framer-EJhXT .framer-1sppw2o-container { z-index: 8; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-EJhXT .framer-1u29p5y, .framer-EJhXT .framer-35dtyd, .framer-EJhXT .framer-10sxhng, .framer-EJhXT .framer-1tq9214, .framer-EJhXT .framer-1nika7l, .framer-EJhXT .framer-1e8ltyn, .framer-EJhXT .framer-zv9kks, .framer-EJhXT .framer-nh7b07, .framer-EJhXT .framer-1xi6hmj, .framer-EJhXT .framer-1q86m5x, .framer-EJhXT .framer-ptte0m, .framer-EJhXT .framer-62k3sy, .framer-EJhXT .framer-c4mgdv, .framer-EJhXT .framer-6akf8a { gap: 0px; } .framer-EJhXT .framer-1u29p5y > *, .framer-EJhXT .framer-35dtyd > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-EJhXT .framer-1u29p5y > :first-child, .framer-EJhXT .framer-35dtyd > :first-child, .framer-EJhXT .framer-1xi6hmj > :first-child { margin-left: 0px; } .framer-EJhXT .framer-1u29p5y > :last-child, .framer-EJhXT .framer-35dtyd > :last-child, .framer-EJhXT .framer-1xi6hmj > :last-child { margin-right: 0px; } .framer-EJhXT .framer-10sxhng > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-EJhXT .framer-10sxhng > :first-child, .framer-EJhXT .framer-1tq9214 > :first-child, .framer-EJhXT .framer-1nika7l > :first-child, .framer-EJhXT .framer-1e8ltyn > :first-child, .framer-EJhXT .framer-zv9kks > :first-child, .framer-EJhXT .framer-nh7b07 > :first-child, .framer-EJhXT .framer-1q86m5x > :first-child, .framer-EJhXT .framer-ptte0m > :first-child, .framer-EJhXT .framer-62k3sy > :first-child, .framer-EJhXT .framer-c4mgdv > :first-child, .framer-EJhXT .framer-6akf8a > :first-child { margin-top: 0px; } .framer-EJhXT .framer-10sxhng > :last-child, .framer-EJhXT .framer-1tq9214 > :last-child, .framer-EJhXT .framer-1nika7l > :last-child, .framer-EJhXT .framer-1e8ltyn > :last-child, .framer-EJhXT .framer-zv9kks > :last-child, .framer-EJhXT .framer-nh7b07 > :last-child, .framer-EJhXT .framer-1q86m5x > :last-child, .framer-EJhXT .framer-ptte0m > :last-child, .framer-EJhXT .framer-62k3sy > :last-child, .framer-EJhXT .framer-c4mgdv > :last-child, .framer-EJhXT .framer-6akf8a > :last-child { margin-bottom: 0px; } .framer-EJhXT .framer-1tq9214 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-EJhXT .framer-1nika7l > *, .framer-EJhXT .framer-1e8ltyn > *, .framer-EJhXT .framer-zv9kks > *, .framer-EJhXT .framer-nh7b07 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-EJhXT .framer-1xi6hmj > * { margin: 0px; margin-left: calc(28px / 2); margin-right: calc(28px / 2); } .framer-EJhXT .framer-1q86m5x > *, .framer-EJhXT .framer-ptte0m > *, .framer-EJhXT .framer-62k3sy > *, .framer-EJhXT .framer-c4mgdv > *, .framer-EJhXT .framer-6akf8a > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }}`,`@media (min-width: 3008px) { .${metadata.bodyClassName}-framer-EJhXT { background: rgb(255, 255, 255); } .framer-EJhXT.framer-tnpcwt { width: 3008px; } .framer-EJhXT .framer-gn6qx9 { border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; will-change: var(--framer-will-change-override, transform); }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,'.framer-EJhXT[data-hide-scrollbars=\"true\"]::-webkit-scrollbar, .framer-EJhXT [data-hide-scrollbars=\"true\"]::-webkit-scrollbar { width: 0px; height: 0px; }','.framer-EJhXT[data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb, .framer-EJhXT [data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb { background: transparent; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 11473\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"y81HLk_Sl\":{\"layout\":[\"fixed\",\"auto\"]},\"AMCeZc8vT\":{\"layout\":[\"fixed\",\"auto\"]},\"i71xf7wIi\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerVhzg4ztxW=withCSS(Component,css,\"framer-EJhXT\");export default FramerVhzg4ztxW;FramerVhzg4ztxW.displayName=\"Franchise\";FramerVhzg4ztxW.defaultProps={height:11473,width:1200};addFonts(FramerVhzg4ztxW,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Manrope\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk7PFO_A87jxeN7B.woff2\",weight:\"500\"}]},...NavigationFonts,...PhosphorFonts,...HighlightedTextFonts,...CardWrappedFonts,...ButtonsButtonFonts,...EmbedFonts,...FooterFonts,...SmoothScrollFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerVhzg4ztxW\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"11473\",\"framerIntrinsicWidth\":\"1200\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"y81HLk_Sl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"AMCeZc8vT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"i71xf7wIi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerResponsiveScreen\":\"\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "6iCAQkB,SAARA,EAAuB,CAAC,KAAAC,EAAK,IAAAC,EAAI,KAAAC,EAAK,MAAAC,EAAM,CAAC,CAAC,EAAE,CAAC,OAAGH,IAAO,OAAOC,EAAyBG,EAAKC,GAAS,CAAC,IAAIJ,EAAI,MAAME,CAAK,CAAC,EAAMH,IAAO,QAAQE,EAA0BE,EAAKE,GAAU,CAAC,KAAKJ,EAAK,MAAMC,CAAK,CAAC,EAAuBC,EAAKG,GAAa,CAAC,MAAMJ,CAAK,CAAC,CAAE,CAACK,GAAoBT,EAAM,CAAC,KAAK,CAAC,KAAKU,GAAY,KAAK,aAAa,MAAM,wBAAwB,GAAK,QAAQ,CAAC,MAAM,MAAM,EAAE,aAAa,CAAC,MAAM,MAAM,CAAC,EAAE,IAAI,CAAC,MAAM,MAAM,KAAKA,GAAY,OAAO,YAAY,8CAAyC,OAAOC,EAAM,CAAC,OAAOA,EAAM,OAAO,KAAM,CAAC,EAAE,KAAK,CAAC,MAAM,OAAO,KAAKD,GAAY,OAAO,gBAAgB,GAAK,OAAOC,EAAM,CAAC,OAAOA,EAAM,OAAO,MAAO,CAAC,CAAC,CAAC,EAAE,SAASH,GAAa,CAAC,MAAAJ,CAAK,EAAE,CAAC,OAAoBC,EAAK,MAAM,CAAC,MAAM,CAAC,UAAUO,GAAaR,CAAK,EAAE,GAAGS,GAAgB,SAAS,SAAS,GAAGT,CAAK,EAAE,SAAsBC,EAAK,MAAM,CAAC,MAAMS,GAAgB,SAAS,kEAAkE,CAAC,CAAC,CAAC,CAAE,CAAC,SAASR,GAAS,CAAC,IAAAJ,EAAI,MAAAE,CAAK,EAAE,CAAC,IAAMW,EAAc,CAACX,EAAM,OAC1/B,cAAc,KAAKF,CAAG,IAAGA,EAAI,WAAWA,GAAK,IAAMc,EAASC,GAAc,EAEzE,CAACC,EAAMC,CAAQ,EAAEC,GAASJ,EAAS,OAAU,EAAK,EAG0c,GAHxcK,EAAU,IAAI,CAEvE,GAAG,CAACL,EAAS,OACb,IAAIM,EAAa,GAAKH,EAAS,MAAS,EAAE,eAAeI,IAAM,CAAC,IAAMC,EAAS,MAAM,MAAM,yDAAyD,mBAAmBtB,CAAG,CAAC,EAAE,GAAGsB,EAAS,QAAQ,IAAI,CAAC,GAAK,CAAC,UAAAC,CAAS,EAAE,MAAMD,EAAS,KAAK,EAAKF,GAAcH,EAASM,CAAS,MAAQ,CAAC,IAAMC,EAAQ,MAAMF,EAAS,KAAK,EAAE,QAAQ,MAAME,CAAO,EAAE,IAAMC,EAAM,IAAI,MAAM,kCAA6B,EAAER,EAASQ,CAAK,EAAG,CAAC,OAAAJ,GAAK,EAAE,MAAMI,GAAO,CAAC,QAAQ,MAAMA,CAAK,EAAER,EAASQ,CAAK,CAAE,CAAC,EAAQ,IAAI,CAACL,EAAa,EAAM,CAAE,EAAE,CAACpB,CAAG,CAAC,EAAKc,GAAUD,EAAe,OAAoBV,EAAKuB,GAAa,CAAC,QAAQ,yCAAyC,MAAMxB,CAAK,CAAC,EAAG,GAAG,CAACF,EAAI,WAAW,UAAU,EAAG,OAAoBG,EAAKuB,GAAa,CAAC,QAAQ,wBAAwB,MAAMxB,CAAK,CAAC,EAAG,GAAGc,IAAQ,OAAW,OAAoBb,EAAKwB,GAAiB,CAAC,CAAC,EAAG,GAAGX,aAAiB,MAAO,OAAoBb,EAAKuB,GAAa,CAAC,QAAQV,EAAM,QAAQ,MAAMd,CAAK,CAAC,EAAG,GAAGc,IAAQ,GAAK,CAAC,IAAMQ,EAAQ,oBAAexB,wCAA0C,OAAoBG,EAAKuB,GAAa,CAAC,QAAQF,EAAQ,MAAMtB,CAAK,CAAC,EAAG,OAAoBC,EAAK,SAAS,CAAC,IAAIH,EAAI,MAAM,CAAC,GAAG4B,GAAY,GAAG1B,CAAK,EAAE,QAAQ,OACvpC,cAAcY,EAAS,MAAM,OAAO,eAAe,cAAc,QAAQe,GAAWf,CAAQ,CAAC,CAAC,CAAE,CAAC,IAAMc,GAAY,CAAC,MAAM,OAAO,OAAO,OAAO,OAAO,MAAM,EAAE,SAASC,GAAWf,EAAS,CAAC,IAAMgB,EAAO,CAAC,oBAAoB,eAAe,EAAE,OAAIhB,GAAUgB,EAAO,KAAK,kBAAkB,cAAc,eAAe,yBAAyB,qBAAqB,eAAe,iCAAiC,qBAAqB,0CAA0C,yCAAyC,EAAUA,EAAO,KAAK,GAAG,CAAE,CAAC,SAASzB,GAAU,CAAC,KAAAJ,EAAK,GAAGQ,CAAK,EAAE,CAA4C,GAA3BR,EAAK,SAAS,YAAW,EAAe,CAAC,IAAM8B,EAAgB9B,EAAK,SAAS,kBAAkB,EAAQ+B,EAAW/B,EAAK,SAAS,8BAA8B,EAAE,OAAG8B,GAAiBC,EAAgC7B,EAAK8B,GAAqB,CAAC,KAAKhC,EAAK,GAAGQ,CAAK,CAAC,EAAuBN,EAAK+B,GAAsB,CAAC,KAAKjC,EAAK,GAAGQ,CAAK,CAAC,EAAG,OAAoBN,EAAKgC,GAAwB,CAAC,KAAKlC,EAAK,GAAGQ,CAAK,CAAC,CAAE,CAAC,SAASyB,GAAsB,CAAC,KAAAjC,EAAK,MAAAC,CAAK,EAAE,CAAC,IAAMkC,EAAIC,EAAO,EAAO,CAACC,EAAaC,CAAe,EAAErB,GAAS,CAAC,EAC/kCC,EAAU,IAAI,CAAC,IAAIqB,EAAa,IAAMC,GAAcD,EAAaJ,EAAI,WAAW,MAAMI,IAAe,OAAO,OAAOA,EAAa,cAAc,SAASE,EAAcC,GAAM,CAAC,GAAGA,GAAM,SAASF,EAAa,OAAO,IAAMG,GAAKD,GAAM,KAAK,GAAG,OAAOC,IAAO,UAAUA,KAAO,KAAK,OAAO,IAAMC,GAAOD,GAAK,YAAe,OAAOC,IAAS,UAAgBN,EAAgBM,EAAM,CAAE,CAAC,OAAAC,GAAO,iBAAiB,UAAUJ,CAAa,EAE7WD,GAAa,YAAY,iBAAiB,GAAG,EAAQ,IAAI,CAACK,GAAO,oBAAoB,UAAUJ,CAAa,CAAE,CAAE,EAAE,CAAC,CAAC,EAGtK,IAAMK,EAAO;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,UAqCH9C;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EA6BF+C,EAAa,CAAC,GAAGpB,GAAY,GAAG1B,CAAK,EAAoC,MAAd,CAACA,EAAM,SAAyB8C,EAAa,OAAOV,EAAa,MAA0BnC,EAAK,SAAS,CAAC,IAAIiC,EAAI,MAAMY,EAAa,OAAOD,CAAM,CAAC,CAAE,CAAC,SAASd,GAAqB,CAAC,KAAAhC,EAAK,MAAAC,CAAK,EAAE,CAAC,IAAMkC,EAAIC,EAAO,EAAE,OAAAlB,EAAU,IAAI,CAAC,IAAM8B,EAAIb,EAAI,QAAQ,GAAIa,EAAW,OAAAA,EAAI,UAAUhD,EAAKiD,GAAeD,CAAG,EAAQ,IAAI,CAACA,EAAI,UAAU,EAAG,CAAE,EAAE,CAAChD,CAAI,CAAC,EAAsBE,EAAK,MAAM,CAAC,IAAIiC,EAAI,MAAM,CAAC,GAAGe,GAAU,GAAGjD,CAAK,CAAC,CAAC,CAAE,CAAC,SAASiC,GAAwB,CAAC,KAAAlC,EAAK,MAAAC,CAAK,EAAE,CAAC,OAAoBC,EAAK,MAAM,CAAC,MAAM,CAAC,GAAGgD,GAAU,GAAGjD,CAAK,EAAE,wBAAwB,CAAC,OAAOD,CAAI,CAAC,CAAC,CAAE,CAAC,IAAMkD,GAAU,CAAC,MAAM,OAAO,OAAO,OAAO,QAAQ,OAAO,cAAc,SAAS,eAAe,SAAS,WAAW,QAAQ,EAEvvB,SAASD,GAAeE,EAAK,CAAC,GAAGA,aAAgB,SAASA,EAAK,UAAU,SAAS,CAAC,IAAMC,EAAO,SAAS,cAAc,QAAQ,EAAEA,EAAO,KAAKD,EAAK,UAAU,OAAS,CAAC,KAAAE,EAAK,MAAAC,CAAK,IAAIH,EAAK,WAAYC,EAAO,aAAaC,EAAKC,CAAK,EAAGH,EAAK,cAAc,aAAaC,EAAOD,CAAI,MAAQ,SAAUI,KAASJ,EAAK,WAAYF,GAAeM,CAAK,CAAI,CACrV,SAAS7B,IAAkB,CAAC,OAAoBxB,EAAK,MAAM,CAAC,UAAU,wCAAwC,MAAM,CAAC,GAAGsD,GAAgB,SAAS,QAAQ,EAAE,SAAsBtD,EAAK,MAAM,CAAC,MAAMS,GAAgB,SAAS,eAAU,CAAC,CAAC,CAAC,CAAE,CAAC,SAASc,GAAa,CAAC,QAAAF,EAAQ,MAAAtB,CAAK,EAAE,CAAC,OAAoBC,EAAK,MAAM,CAAC,UAAU,oCAAoC,MAAM,CAAC,UAAUO,GAAaR,CAAK,EAAE,GAAGuD,GAAgB,SAAS,SAAS,GAAGvD,CAAK,EAAE,SAAsBC,EAAK,MAAM,CAAC,MAAMS,GAAgB,SAASY,CAAO,CAAC,CAAC,CAAC,CAAE,CAAC,IAAMZ,GAAgB,CAAC,UAAU,SAAS,SAAS,GAAG,EACzjB,SAASF,GAAaR,EAAM,CAAmC,GAAd,CAACA,EAAM,OAAwB,MAAO,IAAI,CC1Fg0D,IAAMwD,GAAgBC,EAASC,EAAU,EAAQC,GAAkCC,GAA0BC,CAAQ,EAAQC,GAAmBC,EAAOC,EAAO,MAAM,EAAQC,EAAeF,EAAOF,CAAQ,EAAQK,GAAgBH,EAAOC,EAAO,GAAG,EAAQG,GAAcV,EAASW,CAAQ,EAAQC,GAAqBZ,EAASa,EAAe,EAAQC,GAAiBd,EAASe,CAAW,EAAQC,GAAmBhB,EAASiB,EAAa,EAAQC,GAAWlB,EAASmB,CAAK,EAAQC,GAAYd,EAAOe,CAAK,EAAQC,GAAYtB,EAASuB,EAAM,EAAQC,GAAkBxB,EAASyB,EAAY,EAAQC,GAAY,CAAC,UAAU,qBAAqB,UAAU,sBAAsB,UAAU,8CAA8C,UAAU,4CAA4C,EAAoD,IAAMC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,iBAAiB,EAAQC,GAAY,CAAC,QAAQ,IAAI,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAW,CAAC,QAAQ,KAAK,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,GAAG,EAAE,CAAC,EAAQC,GAAY,CAAC,QAAQ,IAAI,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAY,CAAC,QAAQ,IAAI,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAY,CAAC,QAAQ,IAAI,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAW,CAAC,QAAQ,KAAK,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAY,CAAC,QAAQ,IAAI,MAAM,KAAK,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,OAAOF,GAAW,WAAW,GAAG,aAAa,OAAO,WAAWC,GAAY,QAAQ,UAAU,KAAK,QAAQ,EAAQE,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,IAAI,EAAE,CAAC,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,EAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,EAAQC,GAAY,CAAC,QAAQ,IAAI,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAY,CAAC,QAAQ,IAAI,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,EAAkBC,GAAW,OAAOA,GAAQ,UAAUA,IAAQ,MAAM,OAAOA,EAAM,KAAM,SAAiBA,EAAc,OAAOA,GAAQ,SAAS,CAAC,IAAIA,CAAK,EAAE,OAAkBC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWF,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQG,GAAQ,CAAC,CAAC,SAAAC,EAAS,uBAAAC,EAAuB,QAAAC,EAAQ,EAAI,IAAI,CAAC,GAAK,CAACC,EAAQC,CAAU,EAAEC,GAAgB,CAAC,uBAAAJ,CAAsB,CAAC,EAAE,OAAOD,EAAS,CAAC,KAAK,IAAII,EAAW,EAAK,EAAE,KAAK,IAAIA,EAAW,EAAI,EAAE,OAAO,IAAIA,EAAW,CAACD,CAAO,EAAE,QAAQD,GAASC,CAAO,CAAC,CAAE,EAAQG,GAAU,CAAC,CAAC,MAAAC,EAAM,SAAAC,EAAS,SAAAR,CAAQ,IAAI,CAAC,IAAMS,EAAKC,GAAaH,CAAK,EAAE,OAAOP,EAASS,CAAI,CAAE,EAAQE,GAASA,GAAiB,EAAQC,GAAwB,CAAC,QAAQ,YAAY,MAAM,YAAY,OAAO,YAAY,IAAI,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAuCC,EAAK,MAAM,CAAC,GAAGF,EAAM,SAASE,GAAMD,EAAuCN,GAAwBK,EAAM,OAAO,KAAK,MAAMC,IAAyC,OAAOA,EAAuCD,EAAM,WAAW,MAAME,IAAO,OAAOA,EAAK,WAAW,CAAE,EAAQC,GAA6BC,GAAW,SAASJ,EAAMK,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,GAAQ,mBAAAC,EAAmB,mBAAAC,EAAmB,mBAAAC,EAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,YAAAC,GAAY,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,YAAAC,GAAY,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,YAAAC,GAAY,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,YAAAC,GAAY,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,YAAAC,GAAY,GAAGC,EAAS,EAAEpD,GAASI,CAAK,EAAQiD,EAAU,IAAI,CAAC,IAAMC,EAAUxD,GAAiB,OAAUY,CAAY,EAAE,GAAG4C,EAAU,OAAO,CAAC,IAAIC,EAAU,SAAS,cAAc,qBAAqB,EAAKA,EAAWA,EAAU,aAAa,UAAUD,EAAU,MAAM,GAAQC,EAAU,SAAS,cAAc,MAAM,EAAEA,EAAU,aAAa,OAAO,QAAQ,EAAEA,EAAU,aAAa,UAAUD,EAAU,MAAM,EAAE,SAAS,KAAK,YAAYC,CAAS,GAAI,EAAE,CAAC,OAAU7C,CAAY,CAAC,EAAQ8C,GAAmB,IAAI,CAAC,IAAMF,EAAUxD,GAAiB,OAAUY,CAAY,EAAqC,GAAnC,SAAS,MAAM4C,EAAU,OAAO,GAAMA,EAAU,SAAS,CAAC,IAAIG,GAAyBA,EAAwB,SAAS,cAAc,uBAAuB,KAAK,MAAMA,IAA0B,QAAcA,EAAwB,aAAa,UAAUH,EAAU,QAAQ,EAAG,IAAMI,EAAQJ,EAAU,cAAc,GAAGI,EAAQ,CAAC,IAAMC,EAAK,SAAS,KAAKA,EAAK,UAAU,QAAQC,GAAGA,EAAE,WAAW,cAAc,GAAGD,EAAK,UAAU,OAAOC,CAAC,CAAC,EAAED,EAAK,UAAU,IAAI,GAAGL,EAAU,4BAA4B,EAAG,MAAM,IAAI,CAAII,GAAQ,SAAS,KAAK,UAAU,OAAO,GAAGJ,EAAU,4BAA4B,CAAE,CAAE,EAAE,CAAC,OAAU5C,CAAY,CAAC,EAAE,GAAK,CAACmD,EAAYC,EAAmB,EAAEC,GAA8B/C,GAAQgD,GAAY,EAAK,EAAQC,GAAe,OAAe,CAAC,sBAAAC,GAAsB,MAAAC,EAAK,EAAEC,GAAyB,MAAS,EAAQC,EAAgB,CAAC,CAAC,QAAAC,EAAQ,eAAAC,CAAc,IAAIL,GAAsB,SAASM,IAAO,CAACF,EAAQ,OAAO,CAAE,CAAC,EAAQG,EAAe,CAAC,CAAC,QAAAH,EAAQ,eAAAC,CAAc,IAAIL,GAAsB,SAASM,IAAO,CAACF,EAAQ,KAAK,CAAE,CAAC,EAAQI,GAAWC,EAAO,IAAI,EAAQC,GAAUC,EAAkB,WAAW,EAAQC,EAAWH,EAAO,IAAI,EAAQI,GAAWF,EAAkB,WAAW,EAAQG,GAAWL,EAAO,IAAI,EAAQM,GAAWJ,EAAkB,WAAW,EAAQK,GAAWP,EAAO,IAAI,EAAQQ,GAAWN,EAAkB,WAAW,EAAQO,GAAWT,EAAO,IAAI,EAAQU,GAAWR,EAAkB,WAAW,EAAQS,GAAWX,EAAO,IAAI,EAAQY,GAAWV,EAAkB,WAAW,EAAQW,GAAWb,EAAO,IAAI,EAAQc,GAAWZ,EAAkB,WAAW,EAAQa,GAAWf,EAAO,IAAI,EAAQgB,GAAWd,EAAkB,WAAW,EAAQe,GAAWjB,EAAO,IAAI,EAAQkB,GAAWhB,EAAkB,WAAW,EAAQiB,GAAYnB,EAAO,IAAI,EAAQoB,GAAWlB,EAAkB,WAAW,EAAQmB,GAAYrB,EAAO,IAAI,EAAQsB,GAAYpB,EAAkB,WAAW,EAAQqB,GAAYvB,EAAO,IAAI,EAAQwB,GAAOC,GAAU,EAAQC,GAAYxB,EAAkB,WAAW,EAAQyB,GAAY3B,EAAO,IAAI,EAAQ4B,GAAY1B,EAAkB,WAAW,EAAQ2B,GAAY7B,EAAO,IAAI,EAAQ8B,GAAY5B,EAAkB,WAAW,EAAQ6B,GAAY/B,EAAO,IAAI,EAAQgC,GAAY9B,EAAkB,WAAW,EAAQ+B,GAAYjC,EAAO,IAAI,EAAQkC,GAAsBC,GAAM,EAAQC,GAAsB,CAAajG,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,EAAS,EAAE,OAAAkG,GAAiB,CAAC,CAAC,EAAsBC,EAAKC,GAA0B,SAAS,CAAC,MAAM,CAAC,iBAAiB,YAAY,kBAAAvJ,EAAiB,EAAE,SAAsBwJ,EAAMC,EAAY,CAAC,GAAGrG,GAA4C8F,GAAgB,SAAS,CAAcM,EAAME,EAAO,IAAI,CAAC,GAAGjE,GAAU,UAAUkE,GAAG5J,GAAkB,GAAGqJ,GAAsB,gBAAgBjG,CAAS,EAAE,IAAIL,GAA6BiE,GAAK,MAAM,CAAC,GAAG7D,CAAK,EAAE,SAAS,CAAcoG,EAAKM,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAQ,EAAE,EAAE,SAAsBN,EAAKO,EAAU,CAAC,UAAU,2BAA2B,aAAa,GAAK,SAAsBP,EAAKQ,EAAkB,CAAC,WAAW5D,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBoD,EAAKS,GAAW,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeP,EAAMQ,GAAmB,CAAC,yBAAyB,GAAM,iBAAiB,EAAE,mCAAmC,GAAK,gBAAgB,IAAI,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,KAAK,OAAO,SAAS,CAAcR,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcF,EAAKW,GAAkC,CAAC,sBAAsB,GAAK,QAAQ/J,GAAU,SAAsBoJ,EAAWY,EAAS,CAAC,SAAsBZ,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,wBAAwB,UAAU,MAAM,CAAC,OAAO,EAAE,QAAQnJ,GAAW,UAAU,GAAK,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAemJ,EAAKW,GAAkC,CAAC,sBAAsB,GAAK,QAAQ5J,GAAW,SAAsBiJ,EAAWY,EAAS,CAAC,SAAsBZ,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,IAAI,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,wBAAwB,UAAU,MAAM,CAAC,OAAO,EAAE,QAAQnJ,GAAW,UAAU,GAAK,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeqJ,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcF,EAAKW,GAAkC,CAAC,sBAAsB,GAAK,QAAQ1J,GAAW,SAAsB+I,EAAWY,EAAS,CAAC,SAAsBZ,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,wBAAwB,UAAU,MAAM,CAAC,OAAO,EAAE,QAAQnJ,GAAW,UAAU,GAAK,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAemJ,EAAKW,GAAkC,CAAC,sBAAsB,GAAK,QAAQxJ,GAAW,SAAsB6I,EAAWY,EAAS,CAAC,SAAsBZ,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,wBAAwB,UAAU,MAAM,CAAC,OAAO,EAAE,QAAQnJ,GAAW,UAAU,GAAK,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAemJ,EAAKa,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,oCAAoC,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,gBAAgB,mBAAmB,KAAK,KAAK,IAAI,CAAC,EAAeb,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,SAAS,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,GAAGrC,GAAU,KAAK,QAAQ,IAAIE,EAAK,SAAsBqC,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcF,EAAKc,EAAS,CAAC,sBAAsB,GAAK,SAAsBd,EAAWY,EAAS,CAAC,SAAsBZ,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,gNAA4L,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,kLAAkL,OAAO1I,GAAW,MAAM,CAAC,OAAO,EAAE,KAAK,kLAAkL,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe4I,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,QAAQ,SAAS,CAAcF,EAAKQ,EAAkB,CAAC,WAAW5D,EAAY,UAAU,CAAC,UAAU,CAAC,mCAAmC,MAAS,CAAC,EAAE,SAAsBoD,EAAKe,EAAe,CAAC,kBAAkB,CAAC,WAAWvJ,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAW,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,IAAIsG,EAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsBmC,EAAWY,EAAS,CAAC,SAAsBZ,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeE,EAAMc,GAAgB,CAAC,kBAAkB,CAAC,WAAWxJ,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,SAAS,CAAcyI,EAAKQ,EAAkB,CAAC,WAAW5D,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBoD,EAAWY,EAAS,CAAC,SAAsBZ,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,QAAQ,uBAAuB,MAAM,0BAA0B,OAAO,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,qEAAqE,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWY,EAAS,CAAC,SAAsBZ,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,QAAQ,uBAAuB,MAAM,0BAA0B,OAAO,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,qEAAqE,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKe,EAAe,CAAC,kBAAkB,CAAC,WAAWrJ,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAW,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,IAAIoG,EAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsBmC,EAAWY,EAAS,CAAC,SAAsBZ,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,QAAQ,uBAAuB,MAAM,0BAA0B,QAAQ,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,qEAAqE,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,gBAAgB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKQ,EAAkB,CAAC,WAAW5D,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBoD,EAAWY,EAAS,CAAC,SAAsBZ,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,QAAQ,uBAAuB,MAAM,0BAA0B,OAAO,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,qEAAqE,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWY,EAAS,CAAC,SAAsBZ,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,QAAQ,uBAAuB,MAAM,0BAA0B,OAAO,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,qEAAqE,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKe,EAAe,CAAC,kBAAkB,CAAC,WAAWpK,EAAW,EAAE,sBAAsB,GAAK,gBAAgBc,EAAW,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,IAAIoG,EAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsBmC,EAAWY,EAAS,CAAC,SAAsBZ,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,QAAQ,uBAAuB,MAAM,0BAA0B,QAAQ,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,qEAAqE,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,gBAAgB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKQ,EAAkB,CAAC,WAAW5D,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBoD,EAAWY,EAAS,CAAC,SAAsBZ,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,QAAQ,uBAAuB,MAAM,0BAA0B,OAAO,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,qEAAqE,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWY,EAAS,CAAC,SAAsBZ,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,QAAQ,uBAAuB,MAAM,0BAA0B,OAAO,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,qEAAqE,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKe,EAAe,CAAC,kBAAkB,CAAC,WAAWpJ,EAAW,EAAE,sBAAsB,GAAK,gBAAgBF,EAAW,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,IAAIoG,EAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsBmC,EAAWY,EAAS,CAAC,SAAsBZ,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,QAAQ,uBAAuB,MAAM,0BAA0B,QAAQ,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,qEAAqE,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,gBAAgB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKQ,EAAkB,CAAC,WAAW5D,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBoD,EAAWY,EAAS,CAAC,SAAsBZ,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,QAAQ,uBAAuB,MAAM,0BAA0B,OAAO,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,qEAAqE,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWY,EAAS,CAAC,SAAsBZ,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,QAAQ,uBAAuB,MAAM,0BAA0B,OAAO,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,qEAAqE,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKe,EAAe,CAAC,kBAAkB,CAAC,WAAWjK,EAAW,EAAE,sBAAsB,GAAK,gBAAgBW,EAAW,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,IAAIoG,EAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsBmC,EAAWY,EAAS,CAAC,SAAsBZ,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,QAAQ,uBAAuB,MAAM,0BAA0B,QAAQ,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,qEAAqE,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,gBAAgB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,SAAS,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,QAAQ,SAAsBE,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,QAAQ,SAAS,CAAcF,EAAKiB,GAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,oGAAoG,gBAAgB,GAAG,eAAe,GAAG,KAAK,UAAU,IAAI,uaAAua,mBAAmB,EAAI,CAAC,EAAejB,EAAKc,EAAS,CAAC,sBAAsB,GAAK,SAAsBd,EAAWY,EAAS,CAAC,SAAsBZ,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,0CAA0C,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,MAAM,CAAC,OAAO,EAAE,KAAK,QAAQ,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKc,EAAS,CAAC,sBAAsB,GAAK,SAAsBd,EAAWY,EAAS,CAAC,SAAsBZ,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,2dAA2d,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,cAAc,MAAM,CAAC,OAAO,EAAE,KAAK,cAAc,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeE,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,QAAQ,SAAS,CAAcF,EAAKM,EAA0B,CAAC,SAAsBN,EAAKO,EAAU,CAAC,UAAU,0BAA0B,SAAsBP,EAAKkB,EAAS,CAAC,MAAM,sEAAsE,OAAO,OAAO,WAAW,QAAQ,cAAc,UAAU,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelB,EAAKc,EAAS,CAAC,sBAAsB,GAAK,SAAsBd,EAAWY,EAAS,CAAC,SAAsBZ,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,4BAA4B,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,MAAM,CAAC,OAAO,EAAE,KAAK,QAAQ,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKc,EAAS,CAAC,sBAAsB,GAAK,SAAsBd,EAAWY,EAAS,CAAC,SAAsBZ,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,0bAA0b,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,cAAc,MAAM,CAAC,OAAO,EAAE,KAAK,cAAc,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeE,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,QAAQ,SAAS,CAAcF,EAAKM,EAA0B,CAAC,SAAsBN,EAAKO,EAAU,CAAC,UAAU,2BAA2B,SAAsBP,EAAKkB,EAAS,CAAC,MAAM,sEAAsE,OAAO,OAAO,WAAW,QAAQ,cAAc,QAAQ,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelB,EAAKc,EAAS,CAAC,sBAAsB,GAAK,SAAsBd,EAAWY,EAAS,CAAC,SAAsBZ,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,0BAA0B,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,MAAM,CAAC,OAAO,EAAE,KAAK,QAAQ,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKc,EAAS,CAAC,sBAAsB,GAAK,SAAsBd,EAAWY,EAAS,CAAC,SAAsBZ,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,4SAA4S,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,cAAc,MAAM,CAAC,OAAO,EAAE,KAAK,cAAc,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeE,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,QAAQ,SAAS,CAAcF,EAAKM,EAA0B,CAAC,SAAsBN,EAAKO,EAAU,CAAC,UAAU,2BAA2B,SAAsBP,EAAKkB,EAAS,CAAC,MAAM,sEAAsE,OAAO,OAAO,WAAW,QAAQ,cAAc,SAAS,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelB,EAAKc,EAAS,CAAC,sBAAsB,GAAK,SAAsBd,EAAWY,EAAS,CAAC,SAAsBZ,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,mBAAmB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,MAAM,CAAC,OAAO,EAAE,KAAK,QAAQ,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKc,EAAS,CAAC,sBAAsB,GAAK,SAAsBd,EAAWY,EAAS,CAAC,SAAsBZ,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,4iBAA4iB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,cAAc,MAAM,CAAC,OAAO,EAAE,KAAK,cAAc,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,GAAGlC,GAAW,KAAK,QAAQ,IAAIC,GAAK,SAAsBmC,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,KAAK,SAAS,SAAS,CAAcF,EAAKc,EAAS,CAAC,sBAAsB,GAAK,SAAsBd,EAAWY,EAAS,CAAC,SAAsBV,EAAM,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,CAAcF,EAAK,OAAO,CAAC,MAAM,CAAC,sBAAsB,qEAAqE,EAAE,SAAS,cAAc,CAAC,EAAE,IAAiBA,EAAK,KAAK,CAAC,CAAC,EAAE,UAAU,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKQ,EAAkB,CAAC,WAAW5D,EAAY,UAAU,CAAC,UAAU,CAAC,2BAA2B,CAAC,CAAC,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,EAAE,CAAC,IAAImB,GAAK,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,MAAM,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBmC,EAAMc,GAAgB,CAAC,iBAAiB,CAAC,QAAQ,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAE,sCAAsC,GAAK,2BAA2B,CAAC,CAAC,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,EAAE,CAAC,IAAIjD,GAAK,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,KAAK,EAAE,CAAC,CAAC,CAAC,EAAE,2BAA2B,iBAAiB,qCAAqC,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,QAAQ,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAciC,EAAKI,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,KAAK,OAAO,MAAM,CAAC,OAAO,EAAE,EAAE,SAAsBJ,EAAKQ,EAAkB,CAAC,WAAW5D,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,yFAAyF,OAAO,gWAAgW,CAAC,CAAC,EAAE,SAAsBoD,EAAKa,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,yFAAyF,OAAO,gWAAgW,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeb,EAAKI,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,KAAK,OAAO,MAAM,CAAC,OAAO,CAAC,EAAE,SAAsBJ,EAAKQ,EAAkB,CAAC,WAAW5D,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,0FAA0F,OAAO,oWAAoW,CAAC,CAAC,EAAE,SAAsBoD,EAAKa,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,0FAA0F,OAAO,oWAAoW,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeb,EAAKI,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,KAAK,OAAO,MAAM,CAAC,OAAO,EAAE,EAAE,SAAsBJ,EAAKQ,EAAkB,CAAC,WAAW5D,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,yFAAyF,OAAO,gWAAgW,CAAC,CAAC,EAAE,SAAsBoD,EAAKa,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,yFAAyF,OAAO,gWAAgW,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeb,EAAKI,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,KAAK,OAAO,MAAM,CAAC,OAAO,EAAE,EAAE,SAAsBJ,EAAKQ,EAAkB,CAAC,WAAW5D,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,yFAAyF,OAAO,gWAAgW,CAAC,CAAC,EAAE,SAAsBoD,EAAKa,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,yFAAyF,OAAO,gWAAgW,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeb,EAAKI,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,KAAK,OAAO,MAAM,CAAC,OAAO,CAAC,EAAE,SAAsBJ,EAAKQ,EAAkB,CAAC,WAAW5D,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,yFAAyF,OAAO,gWAAgW,CAAC,CAAC,EAAE,SAAsBoD,EAAKa,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,yFAAyF,OAAO,gWAAgW,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeb,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,KAAK,OAAO,SAAsBA,EAAKQ,EAAkB,CAAC,WAAW5D,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,0FAA0F,OAAO,oWAAoW,CAAC,CAAC,EAAE,SAAsBoD,EAAKa,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,0FAA0F,OAAO,oWAAoW,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeb,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,KAAK,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeE,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,GAAGlC,GAAW,KAAK,QAAQ,IAAIC,GAAK,SAAS,CAAciC,EAAM,MAAM,CAAC,UAAU,iBAAiB,GAAGhC,GAAW,IAAIC,GAAK,SAAS,CAAc+B,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcF,EAAKM,EAA0B,CAAC,OAAO,GAAG,SAAsBN,EAAKO,EAAU,CAAC,UAAU,0BAA0B,MAAM,CAAC,OAAO,EAAE,EAAE,SAAsBP,EAAKmB,GAAgB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,gCAAgC,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAenB,EAAKc,EAAS,CAAC,sBAAsB,GAAK,SAAsBd,EAAWY,EAAS,CAAC,SAAsBZ,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKc,EAAS,CAAC,sBAAsB,GAAK,SAAsBZ,EAAYU,EAAS,CAAC,SAAS,CAAcZ,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,uMAAkM,CAAC,EAAeA,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAsBA,EAAK,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,6aAA6a,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeE,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcF,EAAKe,EAAe,CAAC,kBAAkB,CAAC,WAAWvJ,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAW,mCAAmC,GAAK,oBAAoB,EAAE,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsByI,EAAWY,EAAS,CAAC,SAAsBZ,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeE,EAAMc,GAAgB,CAAC,kBAAkB,CAAC,WAAWxJ,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,SAAS,CAAcyI,EAAKQ,EAAkB,CAAC,WAAW5D,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBoD,EAAWY,EAAS,CAAC,SAAsBZ,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,QAAQ,uBAAuB,MAAM,0BAA0B,OAAO,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,qEAAqE,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWY,EAAS,CAAC,SAAsBZ,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,QAAQ,uBAAuB,MAAM,0BAA0B,OAAO,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,qEAAqE,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKe,EAAe,CAAC,kBAAkB,CAAC,WAAWrJ,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAW,mCAAmC,GAAK,oBAAoB,EAAE,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsBuI,EAAWY,EAAS,CAAC,SAAsBZ,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,QAAQ,uBAAuB,MAAM,0BAA0B,QAAQ,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,qEAAqE,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,gBAAgB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKQ,EAAkB,CAAC,WAAW5D,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBoD,EAAWY,EAAS,CAAC,SAAsBZ,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,QAAQ,uBAAuB,MAAM,0BAA0B,OAAO,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,qEAAqE,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWY,EAAS,CAAC,SAAsBZ,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,QAAQ,uBAAuB,MAAM,0BAA0B,OAAO,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,qEAAqE,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKe,EAAe,CAAC,kBAAkB,CAAC,WAAWpK,EAAW,EAAE,sBAAsB,GAAK,gBAAgBc,EAAW,mCAAmC,GAAK,oBAAoB,EAAE,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsBuI,EAAWY,EAAS,CAAC,SAAsBZ,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,QAAQ,uBAAuB,MAAM,0BAA0B,QAAQ,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,qEAAqE,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,gBAAgB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKQ,EAAkB,CAAC,WAAW5D,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBoD,EAAWY,EAAS,CAAC,SAAsBZ,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,QAAQ,uBAAuB,MAAM,0BAA0B,OAAO,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,qEAAqE,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWY,EAAS,CAAC,SAAsBZ,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,QAAQ,uBAAuB,MAAM,0BAA0B,OAAO,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,qEAAqE,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKe,EAAe,CAAC,kBAAkB,CAAC,WAAWjK,EAAW,EAAE,sBAAsB,GAAK,gBAAgBW,EAAW,mCAAmC,GAAK,oBAAoB,EAAE,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsBuI,EAAWY,EAAS,CAAC,SAAsBZ,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,QAAQ,uBAAuB,MAAM,0BAA0B,QAAQ,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,qEAAqE,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,gBAAgB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeE,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,KAAK,aAAa,SAAS,CAAcF,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKc,EAAS,CAAC,sBAAsB,GAAK,SAAsBd,EAAWY,EAAS,CAAC,SAAsBZ,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,kBAAkB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,oBAAoB,MAAM,CAAC,OAAO,EAAE,KAAK,oBAAoB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,GAAG5B,GAAW,IAAIC,GAAK,SAAsB2B,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKoB,EAAmB,CAAC,SAAsBpB,EAAKxH,GAAU,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,YAAY,KAAK6I,EAAK,KAAK,YAAY,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,eAAe,MAAM,WAAW,EAAE,KAAK,iBAAiB,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,eAAe,MAAM,WAAW,EAAE,KAAK,iBAAiB,EAAE,KAAK,iBAAiB,CAAC,EAAE,SAAS,CAACC,EAAWhE,EAAeiE,IAAwBvB,EAAKwB,EAAU,CAAC,SAASF,EAAW,IAAI,CAAC,CAAC,UAAYtH,EAAmB,UAAYC,EAAmB,UAAYC,EAAmB,UAAYC,EAAmB,UAAYC,EAAmB,UAAYC,EAAmB,GAAKC,CAAW,EAAEmH,MAAKzH,IAA0EA,EAAmB,IAAKE,IAA0EA,EAAmB,IAAGC,IAA0EA,EAAmB,IAAGC,IAA0EA,EAAmB,IAAGC,IAA0EA,EAAmB,IAAuB2F,EAAKG,EAAY,CAAC,GAAG,aAAa7F,IAAc,SAAsB0F,EAAK0B,EAAqB,SAAS,CAAC,MAAM,CAAC,UAAUtH,CAAkB,EAAE,SAASJ,GAAiCgG,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAK/H,GAAQ,CAAC,uBAAuB,GAAK,SAASoF,GAAsB2C,EAAKwB,EAAU,CAAC,SAAsBxB,EAAKM,EAA0B,CAAC,OAAO,IAAI,SAAsBJ,EAAMK,EAAU,CAAC,UAAU,0BAA0B,GAAG,GAAGnG,WAA4B,SAAS,CAAc4F,EAAK2B,EAAY,CAAC,UAAU/J,EAAkBqC,CAAkB,EAAE,UAAUmD,EAAgB,CAAC,QAAAC,CAAO,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUnD,EAAmB,UAAUC,EAAmB,MAAM,CAAC,OAAO,MAAM,EAAE,SAAQkD,EAAQ,QAAQ,aAAwB,MAAM,MAAM,CAAC,EAAe2C,EAAK4B,EAAgB,CAAC,SAASvE,EAAQ,SAAsB2C,EAAKwB,EAAU,CAAC,SAA+BK,EAA0B3B,EAAYU,EAAS,CAAC,SAAS,CAAcZ,EAAKI,EAAO,IAAI,CAAC,QAAQ,CAAC,QAAQ,EAAE,WAAW,CAAC,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,GAAG,EAAE,IAAI,GAAG,EAAE,KAAK,OAAO,CAAC,EAAE,UAAU,iBAAiB,wBAAwB,GAAGhG,WAA4B,KAAK,CAAC,QAAQ,EAAE,WAAW,CAAC,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,IAAI,GAAG,CAAC,EAAE,KAAK,OAAO,CAAC,EAAE,QAAQ,CAAC,QAAQ,CAAC,EAAE,MAAM,IAAIiD,EAAQ,KAAK,CAAC,EAAE,WAAW,EAAe6C,EAAME,EAAO,IAAI,CAAC,QAAQpI,GAAW,UAAU,iBAAiB,wBAAwB,GAAGoC,WAA4B,KAAKrC,GAAW,QAAQN,EAAW,SAAS,CAAcuI,EAAKM,EAA0B,CAAC,SAAsBN,EAAKO,EAAU,CAAC,UAAU,2BAA2B,SAAsBP,EAAKkB,EAAS,CAAC,MAAM,qEAAqE,OAAO,OAAO,WAAW,QAAQ,cAAc,IAAI,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,QAAQ1D,EAAe,CAAC,QAAAH,CAAO,CAAC,EAAE,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe2C,EAAKQ,EAAkB,CAAC,WAAW5D,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQkF,EAA0B,iBAAiB,EAAE,MAAM,OAAO,GAAGlK,EAAkBqC,CAAkB,CAAC,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ6H,EAA0B,iBAAiB,EAAE,MAAM,OAAO,GAAGlK,EAAkBqC,CAAkB,CAAC,CAAC,CAAC,EAAE,SAAsB+F,EAAKa,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQiB,EAA0B,iBAAiB,EAAE,MAAM,4BAA4B,GAAGlK,EAAkBqC,CAAkB,CAAC,EAAE,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeiG,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcF,EAAKc,EAAS,CAAC,sBAAsB,GAAK,SAAsBd,EAAWY,EAAS,CAAC,SAAsBZ,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,KAAK7F,EAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe6F,EAAKc,EAAS,CAAC,sBAAsB,GAAK,SAAsBd,EAAWY,EAAS,CAAC,SAAsBZ,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,qEAAqE,EAAE,SAAS,oBAAoB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,KAAK9F,EAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe8F,EAAKc,EAAS,CAAC,sBAAsB,GAAK,SAAsBd,EAAWY,EAAS,CAAC,SAAsBV,EAAM,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,CAAC,sRAA8RF,EAAK,KAAK,CAAC,CAAC,EAAeA,EAAK,KAAK,CAAC,CAAC,EAAE,8YAA2ZA,EAAK,KAAK,CAAC,CAAC,EAAeA,EAAK,KAAK,CAAC,CAAC,EAAE,qgBAA6gBA,EAAK,KAAK,CAAC,CAAC,EAAeA,EAAK,KAAK,CAAC,CAAC,EAAE,4OAAuO,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,KAAK3F,EAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAS,cAAc,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEC,CAAW,EAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe4F,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,KAAK,aAAa,SAAS,CAAcF,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKc,EAAS,CAAC,sBAAsB,GAAK,SAAsBd,EAAWY,EAAS,CAAC,SAAsBZ,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,oBAAoB,MAAM,CAAC,OAAO,EAAE,KAAK,oBAAoB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,GAAG1B,GAAW,IAAIC,GAAK,SAAsByB,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAKoB,EAAmB,CAAC,SAAsBpB,EAAKxH,GAAU,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,YAAY,KAAK6I,EAAK,KAAK,YAAY,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,eAAe,MAAM,WAAW,EAAE,KAAK,iBAAiB,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,eAAe,MAAM,WAAW,EAAE,KAAK,iBAAiB,EAAE,KAAK,iBAAiB,CAAC,EAAE,SAAS,CAACU,EAAYC,EAAgBC,IAAyBjC,EAAKwB,EAAU,CAAC,SAASO,EAAY,IAAI,CAAC,CAAC,UAAYxH,EAAmB,UAAYC,EAAmB,UAAYC,EAAmB,UAAYC,EAAmB,UAAYC,EAAmB,UAAYC,EAAmB,GAAKC,CAAW,EAAE4G,MAAKlH,IAA0EA,EAAmB,IAAKE,IAA0EA,EAAmB,IAAGC,IAA0EA,EAAmB,IAAGC,IAA0EA,EAAmB,IAAGC,IAA0EA,EAAmB,IAAuBoF,EAAKG,EAAY,CAAC,GAAG,aAAatF,IAAc,SAAsBmF,EAAK0B,EAAqB,SAAS,CAAC,MAAM,CAAC,UAAU/G,CAAkB,EAAE,SAASJ,GAAiCyF,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAK/H,GAAQ,CAAC,uBAAuB,GAAK,SAASiK,GAAuBlC,EAAKwB,EAAU,CAAC,SAAsBxB,EAAKM,EAA0B,CAAC,OAAO,IAAI,SAAsBJ,EAAMK,EAAU,CAAC,UAAU,0BAA0B,GAAG,GAAG5F,WAA4B,SAAS,CAAcqF,EAAK2B,EAAY,CAAC,UAAU/J,EAAkB4C,CAAkB,EAAE,UAAU4C,EAAgB,CAAC,QAAQ8E,CAAQ,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUzH,EAAmB,UAAUC,EAAmB,MAAM,CAAC,OAAO,MAAM,EAAE,SAAQwH,EAAS,QAAQ,aAAwB,MAAM,MAAM,CAAC,EAAelC,EAAK4B,EAAgB,CAAC,SAASM,EAAS,SAAsBlC,EAAKwB,EAAU,CAAC,SAA+BK,EAA0B3B,EAAYU,EAAS,CAAC,SAAS,CAAcZ,EAAKI,EAAO,IAAI,CAAC,QAAQ,CAAC,QAAQ,EAAE,WAAW,CAAC,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,GAAG,EAAE,IAAI,GAAG,EAAE,KAAK,OAAO,CAAC,EAAE,UAAU,gBAAgB,wBAAwB,GAAGzF,WAA4B,KAAK,CAAC,QAAQ,EAAE,WAAW,CAAC,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,IAAI,GAAG,CAAC,EAAE,KAAK,OAAO,CAAC,EAAE,QAAQ,CAAC,QAAQ,CAAC,EAAE,MAAM,IAAIuH,EAAS,KAAK,CAAC,EAAE,WAAW,EAAehC,EAAME,EAAO,IAAI,CAAC,QAAQpI,GAAW,UAAU,gBAAgB,wBAAwB,GAAG2C,WAA4B,KAAK5C,GAAW,QAAQN,EAAW,SAAS,CAAcuI,EAAKM,EAA0B,CAAC,SAAsBN,EAAKO,EAAU,CAAC,UAAU,0BAA0B,SAAsBP,EAAKkB,EAAS,CAAC,MAAM,qEAAqE,OAAO,OAAO,WAAW,QAAQ,cAAc,IAAI,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,QAAQ1D,EAAe,CAAC,QAAQ0E,CAAQ,CAAC,EAAE,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelC,EAAKQ,EAAkB,CAAC,WAAW5D,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQkF,EAA0B,iBAAiB,EAAE,MAAM,OAAO,GAAGlK,EAAkB4C,CAAkB,CAAC,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQsH,EAA0B,iBAAiB,EAAE,MAAM,OAAO,GAAGlK,EAAkB4C,CAAkB,CAAC,CAAC,CAAC,EAAE,SAAsBwF,EAAKa,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQiB,EAA0B,iBAAiB,EAAE,MAAM,4BAA4B,GAAGlK,EAAkB4C,CAAkB,CAAC,EAAE,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAe0F,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcF,EAAKc,EAAS,CAAC,sBAAsB,GAAK,SAAsBd,EAAWY,EAAS,CAAC,SAAsBZ,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,KAAKtF,EAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAesF,EAAKc,EAAS,CAAC,sBAAsB,GAAK,SAAsBd,EAAWY,EAAS,CAAC,SAAsBZ,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,qEAAqE,EAAE,SAAS,oBAAoB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,KAAKvF,EAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeuF,EAAKc,EAAS,CAAC,sBAAsB,GAAK,SAAsBd,EAAWY,EAAS,CAAC,SAAsBV,EAAM,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,CAAC,sRAA8RF,EAAK,KAAK,CAAC,CAAC,EAAeA,EAAK,KAAK,CAAC,CAAC,EAAE,8YAA2ZA,EAAK,KAAK,CAAC,CAAC,EAAeA,EAAK,KAAK,CAAC,CAAC,EAAE,qgBAA6gBA,EAAK,KAAK,CAAC,CAAC,EAAeA,EAAK,KAAK,CAAC,CAAC,EAAE,4OAAuO,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,KAAKpF,EAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAS,cAAc,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEC,CAAW,EAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqF,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,KAAK,aAAa,SAAS,CAAcF,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKc,EAAS,CAAC,sBAAsB,GAAK,SAAsBd,EAAWY,EAAS,CAAC,SAAsBZ,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,wBAAwB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,oBAAoB,MAAM,CAAC,OAAO,EAAE,KAAK,oBAAoB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,GAAGxB,GAAW,IAAIC,GAAK,SAAsBuB,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKoB,EAAmB,CAAC,SAAsBpB,EAAKxH,GAAU,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,YAAY,KAAK6I,EAAK,KAAK,YAAY,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,eAAe,MAAM,WAAW,EAAE,KAAK,iBAAiB,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,eAAe,MAAM,WAAW,EAAE,KAAK,iBAAiB,EAAE,KAAK,iBAAiB,CAAC,EAAE,SAAS,CAACc,EAAYC,EAAgBC,IAAyBrC,EAAKwB,EAAU,CAAC,SAASW,EAAY,IAAI,CAAC,CAAC,UAAYrH,EAAmB,UAAYC,EAAmB,UAAYC,EAAmB,UAAYC,EAAmB,UAAYC,EAAmB,UAAYC,EAAmB,GAAKC,CAAW,EAAEqG,MAAK3G,IAA0EA,EAAmB,IAAKE,IAA0EA,EAAmB,IAAGC,IAA0EA,EAAmB,IAAGC,IAA0EA,EAAmB,IAAGC,IAA0EA,EAAmB,IAAuB6E,EAAKG,EAAY,CAAC,GAAG,aAAa/E,IAAc,SAAsB4E,EAAK0B,EAAqB,SAAS,CAAC,MAAM,CAAC,UAAUxG,CAAkB,EAAE,SAASJ,GAAiCkF,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAK/H,GAAQ,CAAC,uBAAuB,GAAK,SAASqK,GAAuBtC,EAAKwB,EAAU,CAAC,SAAsBxB,EAAKM,EAA0B,CAAC,OAAO,IAAI,SAAsBJ,EAAMK,EAAU,CAAC,UAAU,0BAA0B,GAAG,GAAGrF,WAA4B,SAAS,CAAc8E,EAAK2B,EAAY,CAAC,UAAU/J,EAAkBmD,CAAkB,EAAE,UAAUqC,EAAgB,CAAC,QAAQkF,CAAQ,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUtH,EAAmB,UAAUC,EAAmB,MAAM,CAAC,OAAO,MAAM,EAAE,SAAQqH,EAAS,QAAQ,aAAwB,MAAM,MAAM,CAAC,EAAetC,EAAK4B,EAAgB,CAAC,SAASU,EAAS,SAAsBtC,EAAKwB,EAAU,CAAC,SAA+BK,EAA0B3B,EAAYU,EAAS,CAAC,SAAS,CAAcZ,EAAKI,EAAO,IAAI,CAAC,QAAQ,CAAC,QAAQ,EAAE,WAAW,CAAC,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,GAAG,EAAE,IAAI,GAAG,EAAE,KAAK,OAAO,CAAC,EAAE,UAAU,gBAAgB,wBAAwB,GAAGlF,WAA4B,KAAK,CAAC,QAAQ,EAAE,WAAW,CAAC,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,IAAI,GAAG,CAAC,EAAE,KAAK,OAAO,CAAC,EAAE,QAAQ,CAAC,QAAQ,CAAC,EAAE,MAAM,IAAIoH,EAAS,KAAK,CAAC,EAAE,WAAW,EAAepC,EAAME,EAAO,IAAI,CAAC,QAAQpI,GAAW,UAAU,gBAAgB,wBAAwB,GAAGkD,WAA4B,KAAKnD,GAAW,QAAQN,EAAW,SAAS,CAAcuI,EAAKM,EAA0B,CAAC,SAAsBN,EAAKO,EAAU,CAAC,UAAU,0BAA0B,SAAsBP,EAAKkB,EAAS,CAAC,MAAM,qEAAqE,OAAO,OAAO,WAAW,QAAQ,cAAc,IAAI,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,QAAQ1D,EAAe,CAAC,QAAQ8E,CAAQ,CAAC,EAAE,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAetC,EAAKQ,EAAkB,CAAC,WAAW5D,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQkF,EAA0B,iBAAiB,EAAE,MAAM,OAAO,GAAGlK,EAAkBmD,CAAkB,CAAC,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ+G,EAA0B,iBAAiB,EAAE,MAAM,OAAO,GAAGlK,EAAkBmD,CAAkB,CAAC,CAAC,CAAC,EAAE,SAAsBiF,EAAKa,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQiB,EAA0B,iBAAiB,EAAE,MAAM,4BAA4B,GAAGlK,EAAkBmD,CAAkB,CAAC,EAAE,UAAU,eAAe,CAAC,CAAC,CAAC,EAAemF,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcF,EAAKc,EAAS,CAAC,sBAAsB,GAAK,SAAsBd,EAAWY,EAAS,CAAC,SAAsBZ,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,KAAK/E,EAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe+E,EAAKc,EAAS,CAAC,sBAAsB,GAAK,SAAsBd,EAAWY,EAAS,CAAC,SAAsBZ,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,qEAAqE,EAAE,SAAS,oBAAoB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,KAAKhF,EAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAegF,EAAKc,EAAS,CAAC,sBAAsB,GAAK,SAAsBd,EAAWY,EAAS,CAAC,SAAsBV,EAAM,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,CAAC,sRAA8RF,EAAK,KAAK,CAAC,CAAC,EAAeA,EAAK,KAAK,CAAC,CAAC,EAAE,8YAA2ZA,EAAK,KAAK,CAAC,CAAC,EAAeA,EAAK,KAAK,CAAC,CAAC,EAAE,qgBAA6gBA,EAAK,KAAK,CAAC,CAAC,EAAeA,EAAK,KAAK,CAAC,CAAC,EAAE,4OAAuO,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,KAAK7E,EAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAS,cAAc,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEC,CAAW,EAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe8E,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,KAAK,aAAa,SAAS,CAAcF,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKc,EAAS,CAAC,sBAAsB,GAAK,SAAsBd,EAAWY,EAAS,CAAC,SAAsBZ,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,4BAA4B,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,oBAAoB,MAAM,CAAC,OAAO,EAAE,KAAK,oBAAoB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,GAAGtB,GAAW,IAAIC,GAAK,SAAsBqB,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAKoB,EAAmB,CAAC,SAAsBpB,EAAKxH,GAAU,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,YAAY,KAAK6I,EAAK,KAAK,YAAY,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,eAAe,MAAM,WAAW,EAAE,KAAK,iBAAiB,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,eAAe,MAAM,WAAW,EAAE,KAAK,iBAAiB,EAAE,KAAK,iBAAiB,CAAC,EAAE,SAAS,CAACkB,EAAYC,EAAgBC,IAAyBzC,EAAKwB,EAAU,CAAC,SAASe,EAAY,IAAI,CAAC,CAAC,UAAYlH,EAAmB,UAAYC,EAAmB,UAAYC,EAAmB,UAAYC,EAAmB,UAAYC,EAAmB,UAAYC,EAAmB,GAAKC,CAAW,EAAE8F,MAAKpG,IAA0EA,EAAmB,IAAKE,IAA0EA,EAAmB,IAAGC,IAA0EA,EAAmB,IAAGC,IAA0EA,EAAmB,IAAGC,IAA0EA,EAAmB,IAAuBsE,EAAKG,EAAY,CAAC,GAAG,aAAaxE,IAAc,SAAsBqE,EAAK0B,EAAqB,SAAS,CAAC,MAAM,CAAC,UAAUjG,CAAkB,EAAE,SAASJ,GAAiC2E,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAK/H,GAAQ,CAAC,uBAAuB,GAAK,SAASyK,GAAuB1C,EAAKwB,EAAU,CAAC,SAAsBxB,EAAKM,EAA0B,CAAC,OAAO,IAAI,SAAsBJ,EAAMK,EAAU,CAAC,UAAU,0BAA0B,GAAG,GAAG9E,WAA4B,SAAS,CAAcuE,EAAK2B,EAAY,CAAC,UAAU/J,EAAkB0D,CAAkB,EAAE,UAAU8B,EAAgB,CAAC,QAAQsF,CAAQ,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUnH,EAAmB,UAAUC,EAAmB,MAAM,CAAC,OAAO,MAAM,EAAE,SAAQkH,EAAS,QAAQ,aAAwB,MAAM,MAAM,CAAC,EAAe1C,EAAK4B,EAAgB,CAAC,SAASc,EAAS,SAAsB1C,EAAKwB,EAAU,CAAC,SAA+BK,EAA0B3B,EAAYU,EAAS,CAAC,SAAS,CAAcZ,EAAKI,EAAO,IAAI,CAAC,QAAQ,CAAC,QAAQ,EAAE,WAAW,CAAC,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,GAAG,EAAE,IAAI,GAAG,EAAE,KAAK,OAAO,CAAC,EAAE,UAAU,iBAAiB,wBAAwB,GAAG3E,WAA4B,KAAK,CAAC,QAAQ,EAAE,WAAW,CAAC,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,IAAI,GAAG,CAAC,EAAE,KAAK,OAAO,CAAC,EAAE,QAAQ,CAAC,QAAQ,CAAC,EAAE,MAAM,IAAIiH,EAAS,KAAK,CAAC,EAAE,WAAW,EAAexC,EAAME,EAAO,IAAI,CAAC,QAAQpI,GAAW,UAAU,gBAAgB,wBAAwB,GAAGyD,WAA4B,KAAK1D,GAAW,QAAQN,EAAW,SAAS,CAAcuI,EAAKM,EAA0B,CAAC,SAAsBN,EAAKO,EAAU,CAAC,UAAU,2BAA2B,SAAsBP,EAAKkB,EAAS,CAAC,MAAM,qEAAqE,OAAO,OAAO,WAAW,QAAQ,cAAc,IAAI,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,QAAQ1D,EAAe,CAAC,QAAQkF,CAAQ,CAAC,EAAE,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe1C,EAAKQ,EAAkB,CAAC,WAAW5D,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQkF,EAA0B,iBAAiB,EAAE,MAAM,OAAO,GAAGlK,EAAkB0D,CAAkB,CAAC,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQwG,EAA0B,iBAAiB,EAAE,MAAM,OAAO,GAAGlK,EAAkB0D,CAAkB,CAAC,CAAC,CAAC,EAAE,SAAsB0E,EAAKa,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQiB,EAA0B,iBAAiB,EAAE,MAAM,4BAA4B,GAAGlK,EAAkB0D,CAAkB,CAAC,EAAE,UAAU,eAAe,CAAC,CAAC,CAAC,EAAe4E,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcF,EAAKc,EAAS,CAAC,sBAAsB,GAAK,SAAsBd,EAAWY,EAAS,CAAC,SAAsBZ,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,KAAKxE,EAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAewE,EAAKc,EAAS,CAAC,sBAAsB,GAAK,SAAsBd,EAAWY,EAAS,CAAC,SAAsBZ,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,qEAAqE,EAAE,SAAS,oBAAoB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,KAAKzE,EAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeyE,EAAKc,EAAS,CAAC,sBAAsB,GAAK,SAAsBd,EAAWY,EAAS,CAAC,SAAsBV,EAAM,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,CAAC,sRAA8RF,EAAK,KAAK,CAAC,CAAC,EAAeA,EAAK,KAAK,CAAC,CAAC,EAAE,8YAA2ZA,EAAK,KAAK,CAAC,CAAC,EAAeA,EAAK,KAAK,CAAC,CAAC,EAAE,qgBAA6gBA,EAAK,KAAK,CAAC,CAAC,EAAeA,EAAK,KAAK,CAAC,CAAC,EAAE,4OAAuO,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,KAAKtE,EAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAS,cAAc,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEC,CAAW,EAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuE,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,KAAK,aAAa,SAAS,CAAcF,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKc,EAAS,CAAC,sBAAsB,GAAK,SAAsBd,EAAWY,EAAS,CAAC,SAAsBZ,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,qBAAqB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,oBAAoB,MAAM,CAAC,OAAO,EAAE,KAAK,oBAAoB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,GAAGpB,GAAW,IAAIC,GAAM,SAAsBmB,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKoB,EAAmB,CAAC,SAAsBpB,EAAKxH,GAAU,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,YAAY,KAAK6I,EAAK,KAAK,YAAY,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,eAAe,MAAM,WAAW,EAAE,KAAK,iBAAiB,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,eAAe,MAAM,WAAW,EAAE,KAAK,iBAAiB,EAAE,KAAK,iBAAiB,CAAC,EAAE,SAAS,CAACsB,EAAYC,EAAgBC,IAAyB7C,EAAKwB,EAAU,CAAC,SAASmB,EAAY,IAAI,CAAC,CAAC,UAAY/G,EAAmB,UAAYC,EAAmB,UAAYC,EAAmB,UAAYC,EAAmB,UAAYC,EAAmB,UAAYC,EAAmB,GAAKC,CAAW,EAAEuF,MAAK7F,IAA0EA,EAAmB,IAAKE,IAA0EA,EAAmB,IAAGC,IAA0EA,EAAmB,IAAGC,IAA0EA,EAAmB,IAAGC,IAA0EA,EAAmB,IAAuB+D,EAAKG,EAAY,CAAC,GAAG,aAAajE,IAAc,SAAsB8D,EAAK0B,EAAqB,SAAS,CAAC,MAAM,CAAC,UAAU1F,CAAkB,EAAE,SAASJ,GAAiCoE,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAK/H,GAAQ,CAAC,uBAAuB,GAAK,SAAS6K,GAAuB9C,EAAKwB,EAAU,CAAC,SAAsBxB,EAAKM,EAA0B,CAAC,OAAO,IAAI,SAAsBJ,EAAMK,EAAU,CAAC,UAAU,0BAA0B,GAAG,GAAGvE,WAA4B,SAAS,CAAcgE,EAAK2B,EAAY,CAAC,UAAU/J,EAAkBiE,CAAkB,EAAE,UAAUuB,EAAgB,CAAC,QAAQ0F,CAAQ,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUhH,EAAmB,UAAUC,EAAmB,MAAM,CAAC,OAAO,MAAM,EAAE,SAAQ+G,EAAS,QAAQ,aAAwB,MAAM,MAAM,CAAC,EAAe9C,EAAK4B,EAAgB,CAAC,SAASkB,EAAS,SAAsB9C,EAAKwB,EAAU,CAAC,SAA+BK,EAA0B3B,EAAYU,EAAS,CAAC,SAAS,CAAcZ,EAAKI,EAAO,IAAI,CAAC,QAAQ,CAAC,QAAQ,EAAE,WAAW,CAAC,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,GAAG,EAAE,IAAI,GAAG,EAAE,KAAK,OAAO,CAAC,EAAE,UAAU,iBAAiB,wBAAwB,GAAGpE,WAA4B,KAAK,CAAC,QAAQ,EAAE,WAAW,CAAC,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,IAAI,GAAG,CAAC,EAAE,KAAK,OAAO,CAAC,EAAE,QAAQ,CAAC,QAAQ,CAAC,EAAE,MAAM,IAAI8G,EAAS,KAAK,CAAC,EAAE,WAAW,EAAe5C,EAAME,EAAO,IAAI,CAAC,QAAQpI,GAAW,UAAU,gBAAgB,wBAAwB,GAAGgE,WAA4B,KAAKjE,GAAW,QAAQN,EAAW,SAAS,CAAcuI,EAAKM,EAA0B,CAAC,SAAsBN,EAAKO,EAAU,CAAC,UAAU,2BAA2B,SAAsBP,EAAKkB,EAAS,CAAC,MAAM,qEAAqE,OAAO,OAAO,WAAW,QAAQ,cAAc,IAAI,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,QAAQ1D,EAAe,CAAC,QAAQsF,CAAQ,CAAC,EAAE,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe9C,EAAKQ,EAAkB,CAAC,WAAW5D,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQkF,EAA0B,iBAAiB,EAAE,MAAM,OAAO,GAAGlK,EAAkBiE,CAAkB,CAAC,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQiG,EAA0B,iBAAiB,EAAE,MAAM,OAAO,GAAGlK,EAAkBiE,CAAkB,CAAC,CAAC,CAAC,EAAE,SAAsBmE,EAAKa,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQiB,EAA0B,iBAAiB,EAAE,MAAM,4BAA4B,GAAGlK,EAAkBiE,CAAkB,CAAC,EAAE,UAAU,eAAe,CAAC,CAAC,CAAC,EAAeqE,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcF,EAAKc,EAAS,CAAC,sBAAsB,GAAK,SAAsBd,EAAWY,EAAS,CAAC,SAAsBZ,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,KAAKjE,EAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeiE,EAAKc,EAAS,CAAC,sBAAsB,GAAK,SAAsBd,EAAWY,EAAS,CAAC,SAAsBZ,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,qEAAqE,EAAE,SAAS,oBAAoB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,KAAKlE,EAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAekE,EAAKc,EAAS,CAAC,sBAAsB,GAAK,SAAsBd,EAAWY,EAAS,CAAC,SAAsBV,EAAM,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,CAAC,sRAA8RF,EAAK,KAAK,CAAC,CAAC,EAAeA,EAAK,KAAK,CAAC,CAAC,EAAE,8YAA2ZA,EAAK,KAAK,CAAC,CAAC,EAAeA,EAAK,KAAK,CAAC,CAAC,EAAE,qgBAA6gBA,EAAK,KAAK,CAAC,CAAC,EAAeA,EAAK,KAAK,CAAC,CAAC,EAAE,4OAAuO,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,KAAK/D,EAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAS,cAAc,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEC,CAAW,EAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe8D,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBE,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcF,EAAKc,EAAS,CAAC,sBAAsB,GAAK,SAAsBd,EAAWY,EAAS,CAAC,SAAsBZ,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,kBAAkB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKc,EAAS,CAAC,sBAAsB,GAAK,SAAsBd,EAAWY,EAAS,CAAC,SAAsBZ,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,6EAA6E,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKM,EAA0B,CAAC,OAAO,GAAG,SAAsBN,EAAKO,EAAU,CAAC,UAAU,0BAA0B,SAAsBP,EAAKQ,EAAkB,CAAC,WAAW5D,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBoD,EAAK+C,GAAc,CAAC,UAAU,GAAM,UAAU,sCAAsC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,QAAQ,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,QAAQ,SAAsBE,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcF,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAKgD,GAAK,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,OAAO,YAAY,aAAa,GAAM,SAAsBhD,EAAKa,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,qBAAqB,IAAI,sEAAsE,OAAO,gWAAgW,EAAE,UAAU,gCAAgC,GAAG/B,GAAW,IAAIC,EAAK,CAAC,CAAC,CAAC,CAAC,CAAC,EAAemB,EAAM,MAAM,CAAC,UAAU,gBAAgB,GAAGlB,GAAY,IAAIC,GAAM,SAAS,CAAce,EAAKM,EAA0B,CAAC,OAAO,GAAG,SAAsBN,EAAKO,EAAU,CAAC,UAAU,0BAA0B,MAAM,CAAC,OAAO,EAAE,EAAE,SAAsBP,EAAKmB,GAAgB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,4BAA4B,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAenB,EAAKc,EAAS,CAAC,sBAAsB,GAAK,SAAsBd,EAAWY,EAAS,CAAC,SAAsBZ,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKc,EAAS,CAAC,sBAAsB,GAAK,SAAsBd,EAAWY,EAAS,CAAC,SAAsBZ,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,wnBAAymB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeE,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcF,EAAKM,EAA0B,CAAC,OAAO,GAAG,SAAsBN,EAAKO,EAAU,CAAC,UAAU,2BAA2B,SAAsBP,EAAKQ,EAAkB,CAAC,WAAW5D,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBoD,EAAK+C,GAAc,CAAC,UAAU,GAAM,UAAU,qDAAqD,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,aAAa,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAKiD,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASC,GAA4BlD,EAAKM,EAA0B,CAAC,OAAO,GAAG,SAAsBN,EAAKO,EAAU,CAAC,UAAU,0BAA0B,SAAsBP,EAAKQ,EAAkB,CAAC,WAAW5D,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUsG,EAAc,CAAC,EAAE,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,EAAc,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAc,CAAC,EAAE,QAAQ,WAAW,CAAC,EAAE,SAAsBlD,EAAK+C,GAAc,CAAC,UAAU,GAAM,UAAUG,EAAc,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,OAAO,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehD,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,GAAGd,GAAY,KAAK,QAAQ,IAAIC,GAAM,SAAS,CAAcW,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKc,EAAS,CAAC,sBAAsB,GAAK,SAAsBd,EAAWY,EAAS,CAAC,SAAsBZ,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,GAAGV,GAAY,IAAIC,GAAM,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeW,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcF,EAAKM,EAA0B,CAAC,SAAsBN,EAAKO,EAAU,CAAC,UAAU,0BAA0B,SAAsBP,EAAKmD,EAAM,CAAC,OAAO,OAAO,KAAK;AAAA,8DAA2J,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,KAAK,OAAO,IAAI,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAenD,EAAKM,EAA0B,CAAC,SAAsBN,EAAKO,EAAU,CAAC,UAAU,0BAA0B,SAAsBP,EAAKmD,EAAM,CAAC,OAAO,OAAO,KAAK;AAAA,8DAA2J,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,KAAK,OAAO,IAAI,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAenD,EAAKM,EAA0B,CAAC,SAAsBN,EAAKO,EAAU,CAAC,UAAU,2BAA2B,SAAsBP,EAAKmD,EAAM,CAAC,OAAO,OAAO,KAAK;AAAA,8DAA2J,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,KAAK,OAAO,IAAI,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAejD,EAAM,MAAM,CAAC,UAAU,eAAe,mBAAmB,QAAQ,GAAGV,GAAY,KAAK,QAAQ,IAAIC,GAAM,SAAS,CAAcS,EAAM,MAAM,CAAC,UAAU,gBAAgB,GAAGR,GAAY,IAAIC,GAAM,SAAS,CAAcK,EAAKc,EAAS,CAAC,sBAAsB,GAAK,SAAsBd,EAAWY,EAAS,CAAC,SAAsBZ,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKc,EAAS,CAAC,sBAAsB,GAAK,SAAsBZ,EAAYU,EAAS,CAAC,SAAS,CAAcZ,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,2FAA2F,CAAC,EAAeE,EAAM,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,CAAC,iDAA8DF,EAAKgD,GAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,OAAO,YAAY,aAAa,GAAM,aAAa,GAAK,SAAsBhD,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeE,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,KAAK,aAAa,SAAS,CAAcF,EAAKa,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,KAAK,WAAW,IAAI,UAAU,SAAS,UAAU,MAAM,MAAM,aAAa,IAAI,wFAAwF,OAAO,yEAAyE,EAAE,UAAU,iBAAiB,mBAAmB,eAAe,KAAK,cAAc,CAAC,EAAeb,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,cAAc,KAAK,cAAc,SAAsBA,EAAKoD,GAAY,CAAC,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,IAAI,YAAY,KAAK,WAAW,KAAK,MAAM,aAAa,IAAI,yFAAyF,OAAO,wKAAwK,EAAE,UAAU,iBAAiB,mBAAmB,SAAS,KAAK,SAAS,MAAM,CAAC,qBAAqB,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelD,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcF,EAAKgD,GAAK,CAAC,KAAK,yDAAyD,OAAO,YAAY,aAAa,GAAK,SAAsBhD,EAAK,IAAI,CAAC,UAAU,+BAA+B,SAAsBA,EAAKiB,GAAI,CAAC,UAAU,gBAAgB,mBAAmB,uDAAuD,KAAK,QAAQ,gBAAgB,GAAG,eAAe,IAAI,KAAK,uDAAuD,IAAI,6rOAA6rO,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAejB,EAAKgD,GAAK,CAAC,KAAK,uFAAuF,OAAO,YAAY,aAAa,GAAK,SAAsBhD,EAAK,IAAI,CAAC,UAAU,+BAA+B,SAAsBA,EAAKa,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,GAAG,eAAe,IAAI,YAAY,GAAG,WAAW,IAAI,IAAI,qEAAqE,EAAE,UAAU,iBAAiB,mBAAmB,4CAA4C,KAAK,2CAA2C,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeb,EAAKM,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,SAAsBN,EAAKO,EAAU,CAAC,UAAU,2BAA2B,SAAsBP,EAAKQ,EAAkB,CAAC,WAAW5D,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBoD,EAAKqD,GAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,SAAS,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAerD,EAAKM,EAA0B,CAAC,SAAsBN,EAAKO,EAAU,CAAC,UAAU,0BAA0B,SAAsBP,EAAKsD,GAAa,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU,GAAG,SAAS,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAetD,EAAK,MAAM,CAAC,UAAUK,GAAG5J,GAAkB,GAAGqJ,EAAqB,EAAE,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQyD,GAAI,CAAC,kFAAkF,IAAI1K,GAAS,iEAAiE,kFAAkF,mSAAmS,oKAAoK,mbAAmb,8RAA8R,yRAAyR,wUAAwU,gSAAgS,qIAAqI,2KAA2K,0TAA0T,wSAAwS,sMAAsM,6SAA6S,8eAA8e,yRAAyR,mSAAmS,mUAAmU,koBAAkoB,0JAA0J,wXAAwX,umBAAumB,0LAA0L,8QAA8Q,mUAAmU,oWAAoW,6rBAA6rB,yQAAyQ,wQAAwQ,2SAA2S,8RAA8R,yTAAyT,iTAAiT,qSAAqS,mSAAmS,ySAAyS,sSAAsS,sZAAsZ,maAAma,+QAA+Q,snBAAsnB,yXAAyX,sXAAsX,wQAAwQ,oQAAoQ,ovBAAovB,gUAAgU,yOAAyO,yZAAyZ,wYAAwY,0pBAA0pB,2hBAA2hB,+RAA+R,8gBAA8gB,8SAA8S,ySAAyS,wRAAwR,0QAA0Q,wHAAwH,8SAA8S,6QAA6Q,sRAAsR,6RAA6R,kRAAkR,yLAAyL,oRAAoR,sPAAsP,oVAAoV,8MAA8M,+UAA+U,+VAA+V,oRAAoR,2UAA2U,0JAA0J,kLAAkL,sIAAsI,s2cAAs2c,wDAAwDA,GAAS,q6HAAq6H,gCAAgCA,GAAS,g/LAAg/L,iCAAiCA,GAAS,kVAAkV,GAAe0K,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,6JAA6J,wKAAwK,EASns4JC,GAAgBC,GAAQnK,GAAUiK,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,YAAYA,GAAgB,aAAa,CAAC,OAAO,MAAM,MAAM,IAAI,EAAEG,GAASH,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,UAAU,OAAO,SAAS,MAAM,SAAS,IAAI,6FAA6F,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGI,GAAgB,GAAGC,GAAc,GAAGC,GAAqB,GAAGC,GAAiB,GAAGC,GAAmB,GAAGC,GAAW,GAAGC,GAAY,GAAGC,GAAkB,GAAGC,EAAoCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,EACl4E,IAAMC,GAAqB,CAAC,QAAU,CAAC,QAAU,CAAC,KAAO,iBAAiB,KAAO,kBAAkB,MAAQ,CAAC,EAAE,YAAc,CAAC,sBAAwB,QAAQ,qBAAuB,OAAO,yBAA2B,QAAQ,oCAAsC,oMAA0O,uBAAyB,GAAG,sBAAwB,IAAI,yBAA2B,OAAO,6BAA+B,MAAM,CAAC,EAAE,MAAQ,CAAC,KAAO,SAAS,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC",
  "names": ["Embed", "type", "url", "html", "style", "p", "EmbedUrl", "EmbedHtml", "Instructions", "addPropertyControls", "ControlType", "props", "getMinHeight", "emptyStateStyle", "centerTextStyle", "hasAutoHeight", "onCanvas", "useIsOnCanvas", "state", "setState", "ye", "ue", "isLastEffect", "load", "response", "isBlocked", "message", "error", "ErrorMessage", "LoadingIndicator", "iframeStyle", "getSandbox", "result", "hasSplineViewer", "hasComment", "EmbedHtmlWithScripts", "EmbedHtmlInsideIframe", "EmbedHtmlWithoutScripts", "ref", "pe", "iframeHeight", "setIframeHeight", "_ref_current", "iframeWindow", "handleMessage", "event", "data", "height", "window", "srcDoc", "currentStyle", "div", "executeScripts", "htmlStyle", "node", "script", "name", "value", "child", "containerStyles", "NavigationFonts", "getFonts", "TQ6OBi3SW_default", "RichTextWithOptimizedAppearEffect", "withOptimizedAppearEffect", "RichText2", "MotionHeaderWithFX", "withFX", "motion", "RichTextWithFX", "MotionDivWithFX", "PhosphorFonts", "Icon", "HighlightedTextFonts", "ms02EJox8_default", "CardWrappedFonts", "QPFPubUWZ_default", "ButtonsButtonFonts", "k6ul5KOU_default", "EmbedFonts", "Embed", "ImageWithFX", "Image2", "FooterFonts", "KGNM2RJJ0_default", "SmoothScrollFonts", "SmoothScroll", "breakpoints", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "transition3", "animation3", "transition4", "animation4", "animation5", "transition5", "textEffect", "animation6", "transition6", "animation7", "transition7", "transition8", "toResponsiveImage", "value", "transition9", "animation8", "animation9", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "QueryData", "query", "pageSize", "data", "useQueryData", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "kHes4vm0NJYOStbo0S", "ZdPHaqz0tJYOStbo0S", "pBiSJt1XVJYOStbo0S", "iL8DXz2CBJYOStbo0S", "fhgjWqsB9JYOStbo0S", "P9pMZ9OeUJYOStbo0S", "idJYOStbo0S", "kHes4vm0NU8q9Us3sU", "ZdPHaqz0tU8q9Us3sU", "pBiSJt1XVU8q9Us3sU", "iL8DXz2CBU8q9Us3sU", "fhgjWqsB9U8q9Us3sU", "P9pMZ9OeUU8q9Us3sU", "idU8q9Us3sU", "kHes4vm0NGI6Hylkkn", "ZdPHaqz0tGI6Hylkkn", "pBiSJt1XVGI6Hylkkn", "iL8DXz2CBGI6Hylkkn", "fhgjWqsB9GI6Hylkkn", "P9pMZ9OeUGI6Hylkkn", "idGI6Hylkkn", "kHes4vm0Nth13PGhNV", "ZdPHaqz0tth13PGhNV", "pBiSJt1XVth13PGhNV", "iL8DXz2CBth13PGhNV", "fhgjWqsB9th13PGhNV", "P9pMZ9OeUth13PGhNV", "idth13PGhNV", "kHes4vm0NqW2sBs4a0", "ZdPHaqz0tqW2sBs4a0", "pBiSJt1XVqW2sBs4a0", "iL8DXz2CBqW2sBs4a0", "fhgjWqsB9qW2sBs4a0", "P9pMZ9OeUqW2sBs4a0", "idqW2sBs4a0", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "CTmAkyilKwelu7j", "overlay", "paginationInfo", "args", "onClick1wvko5h", "ref1", "pe", "elementId", "useRouteElementId", "ref2", "elementId1", "ref3", "elementId2", "ref4", "elementId3", "ref5", "elementId4", "ref6", "elementId5", "ref7", "elementId6", "ref8", "elementId7", "ref9", "elementId8", "ref10", "elementId9", "ref11", "elementId10", "ref12", "router", "useRouter", "elementId11", "ref13", "elementId12", "ref14", "elementId13", "ref15", "elementId14", "ref16", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "ComponentViewportProvider", "Container", "PropertyOverrides2", "TQ6OBi3SW_default", "MotionHeaderWithFX", "RichTextWithOptimizedAppearEffect", "x", "Image2", "RichText2", "RichTextWithFX", "MotionDivWithFX", "SVG", "Icon", "ms02EJox8_default", "ChildrenCanSuspend", "ahTd3Plsu_default", "collection", "loadMore", "l", "i", "PathVariablesContext", "QPFPubUWZ_default", "AnimatePresence", "Ga", "getLoadingLazyAtYPosition", "collection1", "paginationInfo1", "loadMore1", "overlay1", "collection2", "paginationInfo2", "loadMore2", "overlay2", "collection3", "paginationInfo3", "loadMore3", "overlay3", "collection4", "paginationInfo4", "loadMore4", "overlay4", "k6ul5KOU_default", "Link", "ResolveLinks", "resolvedLinks", "Embed", "ImageWithFX", "KGNM2RJJ0_default", "SmoothScroll", "css", "FramerVhzg4ztxW", "withCSS", "Vhzg4ztxW_default", "addFonts", "NavigationFonts", "PhosphorFonts", "HighlightedTextFonts", "CardWrappedFonts", "ButtonsButtonFonts", "EmbedFonts", "FooterFonts", "SmoothScrollFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
