{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js", "ssg:https://framerusercontent.com/modules/ldQUSGNi8FGbeoTAzIeD/ZhoYyc5wZhcf8uk6DN51/ALsMpQMRR.js", "ssg:https://framerusercontent.com/modules/wdr2hf4dQEz8dXDJywdR/4J3borWXoFKoeaiBpTAO/DPi_nIUbR.js", "ssg:https://framerusercontent.com/modules/3kpItBYxbp4ZWXB2EAbp/MPnLMmpgQna8rO78wYFb/KhGBuamoD.js", "ssg:https://framerusercontent.com/modules/aeEzWdIDbvfBWrAbKR3Y/FdDAz61MqT1RFWk2rVFZ/kHl0ZFZ7j.js", "ssg:https://framerusercontent.com/modules/ErBJnIGK9dCq05RJcKGE/3myqwNQ80mUFaBGXQnjC/vE6EfJAfP.js", "ssg:https://framerusercontent.com/modules/9kEfOdQSKnJWuzJ6GF0L/i4c8SuH0Qot63kAtUW9Z/O6330MTHB.js", "ssg:https://framerusercontent.com/modules/rFwWL88Lin0rbXknvn5t/Lm8BxxqNC1zaavGr2kvI/augiA20Il.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 (d31cd55)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,Link,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";const PhosphorFonts=getFonts(Phosphor);const PhosphorControls=getPropertyControls(Phosphor);const cycleOrder=[\"PSDnSmhAk\",\"fVrFZmaYA\",\"yi6eT2TAy\",\"qbeW3dl6q\",\"LIBdScyTA\",\"c71_2WBA9\"];const serializationHash=\"framer-qbOYI\";const variantClassNames={c71_2WBA9:\"framer-v-1poamf5\",fVrFZmaYA:\"framer-v-i4gjnu\",LIBdScyTA:\"framer-v-yk0j0k\",PSDnSmhAk:\"framer-v-bqvecp\",qbeW3dl6q:\"framer-v-8v0ue0\",yi6eT2TAy:\"framer-v-n4bnyp\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:2,stiffness:400,type:\"spring\"};const transition2={damping:79,delay:0,mass:1.6,stiffness:673,type:\"spring\"};const transition3={damping:10,delay:0,mass:.7,stiffness:673,type:\"spring\"};const transition4={damping:40,delay:0,mass:2,stiffness:400,type:\"spring\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Multipage - hover\":\"LIBdScyTA\",Base:\"PSDnSmhAk\",Clicked:\"yi6eT2TAy\",Hover:\"fVrFZmaYA\",Mobile:\"c71_2WBA9\",Multipage:\"qbeW3dl6q\"};const getProps=({height,icon,id,link,mouseEnter2,smoothScroll,title,width,...props})=>{var _ref,_ref1,_ref2,_humanReadableVariantMap_props_variant,_ref3;return{...props,nD3SKf68G:(_ref=smoothScroll!==null&&smoothScroll!==void 0?smoothScroll:props.nD3SKf68G)!==null&&_ref!==void 0?_ref:true,OgjrYiFSJ:(_ref1=icon!==null&&icon!==void 0?icon:props.OgjrYiFSJ)!==null&&_ref1!==void 0?_ref1:\"House\",staY2GTRV:mouseEnter2!==null&&mouseEnter2!==void 0?mouseEnter2:props.staY2GTRV,TS_h1_wYm:(_ref2=title!==null&&title!==void 0?title:props.TS_h1_wYm)!==null&&_ref2!==void 0?_ref2:\"Home\",variant:(_ref3=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref3!==void 0?_ref3:\"PSDnSmhAk\",wp6SayKCb:link!==null&&link!==void 0?link:props.wp6SayKCb};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,OgjrYiFSJ,TS_h1_wYm,wp6SayKCb,staY2GTRV,nD3SKf68G,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"PSDnSmhAk\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnter1g6g1kp=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});if(staY2GTRV){const res=await staY2GTRV(...args);if(res===false)return false;}setVariant(\"fVrFZmaYA\");});const onTap1bpua9z=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"yi6eT2TAy\");});const onMouseEnterakjz0k=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});if(staY2GTRV){const res=await staY2GTRV(...args);if(res===false)return false;}});const onMouseLeave171k3fs=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"PSDnSmhAk\");});const onAppearor3pof=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"fVrFZmaYA\"),200);});const onMouseEnter1jaf5q2=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});if(staY2GTRV){const res=await staY2GTRV(...args);if(res===false)return false;}setVariant(\"LIBdScyTA\");});const onMouseLeaveeofj5l=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"qbeW3dl6q\");});useOnVariantChange(baseVariant,{yi6eT2TAy:onAppearor3pof});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"c71_2WBA9\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({c71_2WBA9:{value:transition4},fVrFZmaYA:{value:transition2},LIBdScyTA:{value:transition2},yi6eT2TAy:{value:transition3}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Link,{href:wp6SayKCb,openInNewTab:false,smoothScroll:nD3SKf68G,...addPropertyOverrides({c71_2WBA9:{smoothScroll:false}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-bqvecp\",className,classNames)} framer-iptla2`,\"data-framer-name\":\"Base\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"PSDnSmhAk\",onMouseEnter:onMouseEnter1g6g1kp,ref:ref!==null&&ref!==void 0?ref:ref1,style:{borderBottomLeftRadius:25,borderBottomRightRadius:25,borderTopLeftRadius:25,borderTopRightRadius:25,...style},variants:{fVrFZmaYA:{borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40},yi6eT2TAy:{borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40}},...addPropertyOverrides({c71_2WBA9:{\"data-framer-name\":\"Mobile\",\"data-highlight\":undefined,onMouseEnter:undefined},fVrFZmaYA:{\"data-framer-name\":\"Hover\",onMouseEnter:onMouseEnterakjz0k,onMouseLeave:onMouseLeave171k3fs,onTap:onTap1bpua9z},LIBdScyTA:{\"data-framer-name\":\"Multipage - hover\",onMouseEnter:onMouseEnterakjz0k,onMouseLeave:onMouseLeaveeofj5l},qbeW3dl6q:{\"data-framer-name\":\"Multipage\",onMouseEnter:onMouseEnter1jaf5q2},yi6eT2TAy:{\"data-framer-name\":\"Clicked\",onMouseEnter:onMouseEnterakjz0k,onMouseLeave:onMouseLeave171k3fs}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1b3cuxo\",\"data-framer-name\":\"Head\",layoutDependency:layoutDependency,layoutId:\"AdkWEGUQa\",style:{backdropFilter:\"blur(4px)\",backgroundColor:\"rgb(8, 8, 8)\",borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5,boxShadow:\"0px 0px 0px 1px rgba(255, 255, 255, 0.1)\",opacity:0,WebkitBackdropFilter:\"blur(4px)\"},transformTemplate:transformTemplate1,variants:{fVrFZmaYA:{opacity:1},LIBdScyTA:{opacity:1},yi6eT2TAy:{opacity:1}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"13px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.6))\"},children:\"Home\"})}),className:\"framer-4966dy\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"tROeMa6AQ\",style:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.6)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:TS_h1_wYm,variants:{fVrFZmaYA:{\"--extracted-r6o4lv\":\"var(--token-13375b9f-4436-4454-8e2f-e087d57f7eba, rgba(216, 213, 209, 0.8))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({fVrFZmaYA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-13375b9f-4436-4454-8e2f-e087d57f7eba, rgba(216, 213, 209, 0.8)))\"},children:\"Home\"})}),fonts:[\"FS;Satoshi-medium\"]},yi6eT2TAy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.6))\"},children:\"Home\"})}),fonts:[\"FS;Satoshi-medium\"]}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15dyulv\",\"data-framer-name\":\"Button\",layoutDependency:layoutDependency,layoutId:\"DqJbef49w\",style:{borderBottomLeftRadius:25,borderBottomRightRadius:25,borderTopLeftRadius:25,borderTopRightRadius:25},variants:{fVrFZmaYA:{borderBottomLeftRadius:200,borderBottomRightRadius:200,borderTopLeftRadius:200,borderTopRightRadius:200},yi6eT2TAy:{borderBottomLeftRadius:200,borderBottomRightRadius:200,borderTopLeftRadius:200,borderTopRightRadius:200}},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1em9msd\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"RVAnfZWKH\",style:{backgroundColor:\"var(--token-fab76ef7-771e-4cf6-97cc-48deee26da02, rgb(1, 2, 8))\",borderBottomLeftRadius:200,borderBottomRightRadius:200,borderTopLeftRadius:200,borderTopRightRadius:200,boxShadow:\"inset 0px 1px 0px 0px rgba(255, 255, 255, 0.1)\"},variants:{LIBdScyTA:{boxShadow:\"inset 0px 1px 0px 0px rgba(255, 255, 255, 0.16)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-l6b3v1-container\",layoutDependency:layoutDependency,layoutId:\"ecXAUT2XI-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"House\",iconSelection:OgjrYiFSJ,id:\"ecXAUT2XI\",layoutId:\"ecXAUT2XI\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"thin\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1edyh4z\",\"data-framer-name\":\"Dot\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"d3oNa0KWX\",opacity:0,radius:10,style:{backgroundColor:\"rgb(125, 125, 125)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,opacity:0},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4 4\"></svg>',svgContentId:11085352526,variants:{fVrFZmaYA:{opacity:1},LIBdScyTA:{opacity:1},yi6eT2TAy:{opacity:1}},withExternalLayout:true,...addPropertyOverrides({fVrFZmaYA:{opacity:1,svgContentId:9200695877},LIBdScyTA:{opacity:1,svgContentId:9200695877},yi6eT2TAy:{opacity:1,svgContentId:9200695877}},baseVariant,gestureVariant)})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-qbOYI.framer-iptla2, .framer-qbOYI .framer-iptla2 { display: block; }\",\".framer-qbOYI.framer-bqvecp { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 50px; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-qbOYI .framer-1b3cuxo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; overflow: visible; padding: 4px 8px 4px 8px; position: absolute; top: -10px; width: min-content; z-index: 1; }\",\".framer-qbOYI .framer-4966dy { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-qbOYI .framer-15dyulv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-qbOYI .framer-1em9msd { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 50px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 50px; }\",\".framer-qbOYI .framer-l6b3v1-container { flex: none; height: 22px; position: relative; width: 22px; }\",\".framer-qbOYI .framer-1edyh4z { flex: none; height: 4px; position: relative; width: 4px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-qbOYI.framer-bqvecp, .framer-qbOYI .framer-1b3cuxo, .framer-qbOYI .framer-15dyulv, .framer-qbOYI .framer-1em9msd { gap: 0px; } .framer-qbOYI.framer-bqvecp > *, .framer-qbOYI .framer-1b3cuxo > *, .framer-qbOYI .framer-1em9msd > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-qbOYI.framer-bqvecp > :first-child, .framer-qbOYI .framer-1b3cuxo > :first-child, .framer-qbOYI .framer-1em9msd > :first-child { margin-left: 0px; } .framer-qbOYI.framer-bqvecp > :last-child, .framer-qbOYI .framer-1b3cuxo > :last-child, .framer-qbOYI .framer-1em9msd > :last-child { margin-right: 0px; } .framer-qbOYI .framer-15dyulv > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-qbOYI .framer-15dyulv > :first-child { margin-top: 0px; } .framer-qbOYI .framer-15dyulv > :last-child { margin-bottom: 0px; } }\",\".framer-qbOYI.framer-v-i4gjnu.framer-bqvecp { align-content: flex-end; align-items: flex-end; cursor: pointer; }\",\".framer-qbOYI.framer-v-i4gjnu .framer-1b3cuxo { top: -60px; }\",\".framer-qbOYI.framer-v-i4gjnu .framer-1em9msd { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 60px); width: 60px; }\",\".framer-qbOYI.framer-v-i4gjnu .framer-l6b3v1-container { height: 26px; width: 26px; }\",\".framer-qbOYI.framer-v-n4bnyp.framer-bqvecp { align-content: flex-end; align-items: flex-end; }\",\".framer-qbOYI.framer-v-n4bnyp .framer-1b3cuxo { top: -50px; }\",\".framer-qbOYI.framer-v-n4bnyp .framer-1em9msd { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 56px); width: 56px; }\",\".framer-qbOYI.framer-v-n4bnyp .framer-l6b3v1-container { height: 24px; width: 24px; }\",\".framer-qbOYI.framer-v-8v0ue0 .framer-15dyulv, .framer-qbOYI.framer-v-yk0j0k .framer-15dyulv { gap: 8px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-qbOYI.framer-v-8v0ue0 .framer-15dyulv { gap: 0px; } .framer-qbOYI.framer-v-8v0ue0 .framer-15dyulv > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-qbOYI.framer-v-8v0ue0 .framer-15dyulv > :first-child { margin-top: 0px; } .framer-qbOYI.framer-v-8v0ue0 .framer-15dyulv > :last-child { margin-bottom: 0px; } }\",\".framer-qbOYI.framer-v-yk0j0k .framer-1b3cuxo { top: -34px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-qbOYI.framer-v-yk0j0k .framer-15dyulv { gap: 0px; } .framer-qbOYI.framer-v-yk0j0k .framer-15dyulv > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-qbOYI.framer-v-yk0j0k .framer-15dyulv > :first-child { margin-top: 0px; } .framer-qbOYI.framer-v-yk0j0k .framer-15dyulv > :last-child { margin-bottom: 0px; } }\",\".framer-qbOYI.framer-v-1poamf5 .framer-15dyulv { gap: 2px; }\",\".framer-qbOYI.framer-v-1poamf5 .framer-1em9msd { cursor: unset; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-qbOYI.framer-v-1poamf5 .framer-15dyulv { gap: 0px; } .framer-qbOYI.framer-v-1poamf5 .framer-15dyulv > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } .framer-qbOYI.framer-v-1poamf5 .framer-15dyulv > :first-child { margin-top: 0px; } .framer-qbOYI.framer-v-1poamf5 .framer-15dyulv > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 50\n * @framerIntrinsicWidth 50\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"fVrFZmaYA\":{\"layout\":[\"auto\",\"fixed\"]},\"yi6eT2TAy\":{\"layout\":[\"auto\",\"fixed\"]},\"qbeW3dl6q\":{\"layout\":[\"auto\",\"fixed\"]},\"LIBdScyTA\":{\"layout\":[\"auto\",\"fixed\"]},\"c71_2WBA9\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"OgjrYiFSJ\":\"icon\",\"TS_h1_wYm\":\"title\",\"wp6SayKCb\":\"link\",\"staY2GTRV\":\"mouseEnter2\",\"nD3SKf68G\":\"smoothScroll\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerALsMpQMRR=withCSS(Component,css,\"framer-qbOYI\");export default FramerALsMpQMRR;FramerALsMpQMRR.displayName=\"Navigation Button\";FramerALsMpQMRR.defaultProps={height:50,width:50};addPropertyControls(FramerALsMpQMRR,{variant:{options:[\"PSDnSmhAk\",\"fVrFZmaYA\",\"yi6eT2TAy\",\"qbeW3dl6q\",\"LIBdScyTA\",\"c71_2WBA9\"],optionTitles:[\"Base\",\"Hover\",\"Clicked\",\"Multipage\",\"Multipage - hover\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},OgjrYiFSJ:(PhosphorControls===null||PhosphorControls===void 0?void 0:PhosphorControls[\"iconSelection\"])&&{...PhosphorControls[\"iconSelection\"],defaultValue:\"House\",description:undefined,hidden:undefined,title:\"Icon\"},TS_h1_wYm:{defaultValue:\"Home\",displayTextArea:false,title:\"Title\",type:ControlType.String},wp6SayKCb:{title:\"Link\",type:ControlType.Link},staY2GTRV:{title:\"Mouse Enter 2\",type:ControlType.EventHandler},nD3SKf68G:{defaultValue:true,title:\"Smooth Scroll\",type:ControlType.Boolean}});addFonts(FramerALsMpQMRR,[{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:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"}]},...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerALsMpQMRR\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"50\",\"framerIntrinsicHeight\":\"50\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"OgjrYiFSJ\\\":\\\"icon\\\",\\\"TS_h1_wYm\\\":\\\"title\\\",\\\"wp6SayKCb\\\":\\\"link\\\",\\\"staY2GTRV\\\":\\\"mouseEnter2\\\",\\\"nD3SKf68G\\\":\\\"smoothScroll\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"fVrFZmaYA\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"yi6eT2TAy\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"qbeW3dl6q\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"LIBdScyTA\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"c71_2WBA9\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ALsMpQMRR.map", "// Generated by Framer (4d21961)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,ResolveLinks,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Noise from\"https://framerusercontent.com/modules/bamMgJhjMszHbcnxCtZj/20nHFbpxFqdlchR1dDZF/Noise.js\";import NavigationButton from\"https://framerusercontent.com/modules/ldQUSGNi8FGbeoTAzIeD/ZhoYyc5wZhcf8uk6DN51/ALsMpQMRR.js\";const NavigationButtonFonts=getFonts(NavigationButton);const NoiseFonts=getFonts(Noise);const cycleOrder=[\"L88mPpnK9\",\"TpHoyTg5I\",\"YvRdiKcSX\"];const serializationHash=\"framer-M6pJn\";const variantClassNames={L88mPpnK9:\"framer-v-1up68pz\",TpHoyTg5I:\"framer-v-wpqqe2\",YvRdiKcSX:\"framer-v-v170xx\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop - Multipage\":\"YvRdiKcSX\",Desktop:\"L88mPpnK9\",Mobile:\"TpHoyTg5I\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"L88mPpnK9\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"L88mPpnK9\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.nav,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1up68pz\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"L88mPpnK9\",ref:refBinding,style:{...style},...addPropertyOverrides({TpHoyTg5I:{\"data-framer-name\":\"Mobile\"},YvRdiKcSX:{\"data-framer-name\":\"Desktop - Multipage\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-da0ztt\",\"data-framer-name\":\"Dock\",\"data-hide-scrollbars\":true,layoutDependency:layoutDependency,layoutId:\"kaT6WYZM0\",style:{backdropFilter:\"blur(30px)\",backgroundColor:\"rgba(255, 255, 255, 0.08)\",borderBottomLeftRadius:60,borderBottomRightRadius:60,borderTopLeftRadius:60,borderTopRightRadius:60,boxShadow:\"0px 0px 0px 1px rgba(255, 255, 255, 0.1)\",WebkitBackdropFilter:\"blur(30px)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1046rvr\",\"data-framer-name\":\"Buttons\",\"data-hide-scrollbars\":true,layoutDependency:layoutDependency,layoutId:\"wfYG8RpBZ\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":FjDWvnEqu\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":FjDWvnEqu\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":FjDWvnEqu\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,y:(componentViewport?.y||0)+0+((componentViewport?.height||70)-0-70)+0+0+10+0,...addPropertyOverrides({YvRdiKcSX:{y:(componentViewport?.y||0)+0+((componentViewport?.height||60)-0-60)+0+0+5+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1jdwzzw-container\",layoutDependency:layoutDependency,layoutId:\"FpA4SEe8D-container\",nodeId:\"FpA4SEe8D\",rendersWithMotion:true,scopeId:\"DPi_nIUbR\",children:/*#__PURE__*/_jsx(NavigationButton,{height:\"100%\",id:\"FpA4SEe8D\",layoutId:\"FpA4SEe8D\",nD3SKf68G:true,OgjrYiFSJ:\"QrCode\",TS_h1_wYm:\"How it works\",variant:\"PSDnSmhAk\",width:\"100%\",wp6SayKCb:resolvedLinks[0],...addPropertyOverrides({TpHoyTg5I:{variant:\"c71_2WBA9\",wp6SayKCb:resolvedLinks[1]},YvRdiKcSX:{variant:\"qbeW3dl6q\",wp6SayKCb:resolvedLinks[2]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":HfbXUU2y_\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":HfbXUU2y_\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":HfbXUU2y_\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,y:(componentViewport?.y||0)+0+((componentViewport?.height||70)-0-70)+0+0+10+0,...addPropertyOverrides({YvRdiKcSX:{y:(componentViewport?.y||0)+0+((componentViewport?.height||60)-0-60)+0+0+5+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1s6lead-container\",layoutDependency:layoutDependency,layoutId:\"ulWpTAYdb-container\",nodeId:\"ulWpTAYdb\",rendersWithMotion:true,scopeId:\"DPi_nIUbR\",children:/*#__PURE__*/_jsx(NavigationButton,{height:\"100%\",id:\"ulWpTAYdb\",layoutId:\"ulWpTAYdb\",nD3SKf68G:true,OgjrYiFSJ:\"ThumbsUp\",TS_h1_wYm:\"Features\",variant:\"PSDnSmhAk\",width:\"100%\",wp6SayKCb:resolvedLinks1[0],...addPropertyOverrides({TpHoyTg5I:{wp6SayKCb:resolvedLinks1[1]},YvRdiKcSX:{wp6SayKCb:resolvedLinks1[2]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":qzESH2_gj\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":qzESH2_gj\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":qzESH2_gj\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,y:(componentViewport?.y||0)+0+((componentViewport?.height||70)-0-70)+0+0+10+0,...addPropertyOverrides({YvRdiKcSX:{y:(componentViewport?.y||0)+0+((componentViewport?.height||60)-0-60)+0+0+5+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-13vc738-container\",layoutDependency:layoutDependency,layoutId:\"KwDZ1NXZy-container\",nodeId:\"KwDZ1NXZy\",rendersWithMotion:true,scopeId:\"DPi_nIUbR\",children:/*#__PURE__*/_jsx(NavigationButton,{height:\"100%\",id:\"KwDZ1NXZy\",layoutId:\"KwDZ1NXZy\",nD3SKf68G:true,OgjrYiFSJ:\"DotsNine\",TS_h1_wYm:\"Benefits\",variant:\"PSDnSmhAk\",width:\"100%\",wp6SayKCb:resolvedLinks2[0],...addPropertyOverrides({TpHoyTg5I:{wp6SayKCb:resolvedLinks2[1]},YvRdiKcSX:{wp6SayKCb:resolvedLinks2[2]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":t4fQw0KZZ\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":t4fQw0KZZ\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":t4fQw0KZZ\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,y:(componentViewport?.y||0)+0+((componentViewport?.height||70)-0-70)+0+0+10+0,...addPropertyOverrides({YvRdiKcSX:{y:(componentViewport?.y||0)+0+((componentViewport?.height||60)-0-60)+0+0+5+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-9lio0k-container\",layoutDependency:layoutDependency,layoutId:\"vF2dfLPCk-container\",nodeId:\"vF2dfLPCk\",rendersWithMotion:true,scopeId:\"DPi_nIUbR\",children:/*#__PURE__*/_jsx(NavigationButton,{height:\"100%\",id:\"vF2dfLPCk\",layoutId:\"vF2dfLPCk\",nD3SKf68G:true,OgjrYiFSJ:\"Money\",TS_h1_wYm:\"Plans\",variant:\"PSDnSmhAk\",width:\"100%\",wp6SayKCb:resolvedLinks3[0],...addPropertyOverrides({TpHoyTg5I:{wp6SayKCb:resolvedLinks3[1]},YvRdiKcSX:{wp6SayKCb:resolvedLinks3[2]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":CAU0XeMS_\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":CAU0XeMS_\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":CAU0XeMS_\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,y:(componentViewport?.y||0)+0+((componentViewport?.height||70)-0-70)+0+0+10+0,...addPropertyOverrides({YvRdiKcSX:{y:(componentViewport?.y||0)+0+((componentViewport?.height||60)-0-60)+0+0+5+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-j9x23k-container\",layoutDependency:layoutDependency,layoutId:\"CcRlBavkb-container\",nodeId:\"CcRlBavkb\",rendersWithMotion:true,scopeId:\"DPi_nIUbR\",children:/*#__PURE__*/_jsx(NavigationButton,{height:\"100%\",id:\"CcRlBavkb\",layoutId:\"CcRlBavkb\",nD3SKf68G:true,OgjrYiFSJ:\"Phone\",TS_h1_wYm:\"Contact Us\",variant:\"PSDnSmhAk\",width:\"100%\",wp6SayKCb:resolvedLinks4[0],...addPropertyOverrides({TpHoyTg5I:{wp6SayKCb:resolvedLinks4[1]},YvRdiKcSX:{wp6SayKCb:resolvedLinks4[2]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":izsppp4fT\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":izsppp4fT\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":izsppp4fT\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,y:(componentViewport?.y||0)+0+((componentViewport?.height||70)-0-70)+0+0+10+0,...addPropertyOverrides({YvRdiKcSX:{y:(componentViewport?.y||0)+0+((componentViewport?.height||60)-0-60)+0+0+5+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-7au1ld-container\",layoutDependency:layoutDependency,layoutId:\"o3emLqVAm-container\",nodeId:\"o3emLqVAm\",rendersWithMotion:true,scopeId:\"DPi_nIUbR\",children:/*#__PURE__*/_jsx(NavigationButton,{height:\"100%\",id:\"o3emLqVAm\",layoutId:\"o3emLqVAm\",nD3SKf68G:true,OgjrYiFSJ:\"Question\",TS_h1_wYm:\"FAQs\",variant:\"PSDnSmhAk\",width:\"100%\",wp6SayKCb:resolvedLinks5[0],...addPropertyOverrides({TpHoyTg5I:{wp6SayKCb:resolvedLinks5[1]},YvRdiKcSX:{wp6SayKCb:resolvedLinks5[2]}},baseVariant,gestureVariant)})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-18tzbwj-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"PDae65jKR-container\",nodeId:\"PDae65jKR\",rendersWithMotion:true,scopeId:\"DPi_nIUbR\",style:{opacity:.3},children:/*#__PURE__*/_jsx(Noise,{backgroundSize:128,borderRadius:60,height:\"100%\",id:\"PDae65jKR\",layoutId:\"PDae65jKR\",opacity:.1,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-M6pJn.framer-1kzjyna, .framer-M6pJn .framer-1kzjyna { display: block; }\",\".framer-M6pJn.framer-1up68pz { align-content: flex-end; align-items: flex-end; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-M6pJn .framer-da0ztt { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-M6pJn .framer-1046rvr { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 10px 12px 10px 12px; position: relative; width: min-content; z-index: 3; }\",\".framer-M6pJn .framer-1jdwzzw-container, .framer-M6pJn .framer-1s6lead-container, .framer-M6pJn .framer-13vc738-container, .framer-M6pJn .framer-9lio0k-container, .framer-M6pJn .framer-j9x23k-container, .framer-M6pJn .framer-7au1ld-container { flex: none; height: auto; position: relative; width: auto; z-index: 2; }\",\".framer-M6pJn .framer-18tzbwj-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 2; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-M6pJn.framer-1up68pz, .framer-M6pJn .framer-da0ztt, .framer-M6pJn .framer-1046rvr { gap: 0px; } .framer-M6pJn.framer-1up68pz > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-M6pJn.framer-1up68pz > :first-child, .framer-M6pJn .framer-da0ztt > :first-child, .framer-M6pJn .framer-1046rvr > :first-child { margin-left: 0px; } .framer-M6pJn.framer-1up68pz > :last-child, .framer-M6pJn .framer-da0ztt > :last-child, .framer-M6pJn .framer-1046rvr > :last-child { margin-right: 0px; } .framer-M6pJn .framer-da0ztt > *, .framer-M6pJn .framer-1046rvr > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } }\",\".framer-M6pJn.framer-v-wpqqe2 .framer-da0ztt { justify-content: flex-start; max-width: 340px; overflow: auto; }\",\".framer-M6pJn.framer-v-wpqqe2 .framer-1046rvr { gap: 5px; overflow: auto; padding: 10px 4px 10px 4px; }\",\".framer-M6pJn.framer-v-wpqqe2 .framer-1jdwzzw-container, .framer-M6pJn.framer-v-v170xx .framer-1jdwzzw-container { order: 0; }\",\".framer-M6pJn.framer-v-wpqqe2 .framer-1s6lead-container, .framer-M6pJn.framer-v-v170xx .framer-1s6lead-container { order: 1; }\",\".framer-M6pJn.framer-v-wpqqe2 .framer-13vc738-container, .framer-M6pJn.framer-v-v170xx .framer-13vc738-container { order: 2; }\",\".framer-M6pJn.framer-v-wpqqe2 .framer-9lio0k-container, .framer-M6pJn.framer-v-v170xx .framer-9lio0k-container { order: 3; }\",\".framer-M6pJn.framer-v-wpqqe2 .framer-j9x23k-container, .framer-M6pJn.framer-v-v170xx .framer-j9x23k-container { order: 4; }\",\".framer-M6pJn.framer-v-wpqqe2 .framer-7au1ld-container, .framer-M6pJn.framer-v-v170xx .framer-7au1ld-container { order: 5; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-M6pJn.framer-v-wpqqe2 .framer-1046rvr { gap: 0px; } .framer-M6pJn.framer-v-wpqqe2 .framer-1046rvr > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-M6pJn.framer-v-wpqqe2 .framer-1046rvr > :first-child { margin-left: 0px; } .framer-M6pJn.framer-v-wpqqe2 .framer-1046rvr > :last-child { margin-right: 0px; } }\",\".framer-M6pJn.framer-v-v170xx .framer-1046rvr { padding: 5px 7px 5px 7px; }\",'.framer-M6pJn[data-hide-scrollbars=\"true\"]::-webkit-scrollbar, .framer-M6pJn [data-hide-scrollbars=\"true\"]::-webkit-scrollbar { width: 0px; height: 0px; }','.framer-M6pJn[data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb, .framer-M6pJn [data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb { background: transparent; }','.framer-M6pJn[data-hide-scrollbars=\"true\"], .framer-M6pJn [data-hide-scrollbars=\"true\"] { scrollbar-width: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 70\n * @framerIntrinsicWidth 384\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"TpHoyTg5I\":{\"layout\":[\"auto\",\"auto\"]},\"YvRdiKcSX\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerDPi_nIUbR=withCSS(Component,css,\"framer-M6pJn\");export default FramerDPi_nIUbR;FramerDPi_nIUbR.displayName=\"Dock\";FramerDPi_nIUbR.defaultProps={height:70,width:384};addPropertyControls(FramerDPi_nIUbR,{variant:{options:[\"L88mPpnK9\",\"TpHoyTg5I\",\"YvRdiKcSX\"],optionTitles:[\"Desktop\",\"Mobile\",\"Desktop - Multipage\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerDPi_nIUbR,[{explicitInter:true,fonts:[]},...NavigationButtonFonts,...NoiseFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerDPi_nIUbR\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"TpHoyTg5I\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"YvRdiKcSX\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"70\",\"framerIntrinsicWidth\":\"384\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./DPi_nIUbR.map", "// Generated by Framer (d31cd55)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const serializationHash=\"framer-ztU4v\";const variantClassNames={uvtC3J6V4:\"framer-v-1eo7ecx\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,title,width,...props})=>{var _ref;return{...props,zexjRzvBi:(_ref=title!==null&&title!==void 0?title:props.zexjRzvBi)!==null&&_ref!==void 0?_ref:\"Unlimited design requests\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,zexjRzvBi,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"uvtC3J6V4\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1eo7ecx\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"uvtC3J6V4\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-141h3nw\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:22,layoutDependency:layoutDependency,layoutId:\"VXht2UhHW\",svg:'<svg width=\"22\" height=\"22\" viewBox=\"-1 -1 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M20 9.08572V10.0057C19.9988 12.1621 19.3005 14.2604 18.0093 15.9875C16.7182 17.7147 14.9033 18.9782 12.8354 19.5896C10.7674 20.201 8.55726 20.1276 6.53447 19.3803C4.51168 18.633 2.78465 17.2518 1.61096 15.4428C0.437266 13.6338 -0.120209 11.4938 0.0216768 9.34204C0.163562 7.19029 0.997207 5.14205 2.39828 3.5028C3.79935 1.86354 5.69279 0.721106 7.79619 0.24587C9.89959 -0.229366 12.1003 -0.0119393 14.07 0.865724M20 2L10 12.01L7 9.01\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e56856ca-c255-4727-917e-5f001a94b962, rgb(255, 255, 255)))\"},children:\"Unlimited design requests\"})}),className:\"framer-fu2gwc\",\"data-framer-name\":\"Text\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"oQ_1Ryj7i\",style:{\"--extracted-r6o4lv\":\"var(--token-e56856ca-c255-4727-917e-5f001a94b962, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"24px\"},text:zexjRzvBi,verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ztU4v.framer-vrkqcf, .framer-ztU4v .framer-vrkqcf { display: block; }\",\".framer-ztU4v.framer-1eo7ecx { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-ztU4v .framer-141h3nw { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-ztU4v .framer-fu2gwc { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ztU4v.framer-1eo7ecx { gap: 0px; } .framer-ztU4v.framer-1eo7ecx > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-ztU4v.framer-1eo7ecx > :first-child { margin-left: 0px; } .framer-ztU4v.framer-1eo7ecx > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 24\n * @framerIntrinsicWidth 214\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"zexjRzvBi\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerKhGBuamoD=withCSS(Component,css,\"framer-ztU4v\");export default FramerKhGBuamoD;FramerKhGBuamoD.displayName=\"Feature\";FramerKhGBuamoD.defaultProps={height:24,width:214};addPropertyControls(FramerKhGBuamoD,{zexjRzvBi:{defaultValue:\"Unlimited design requests\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(FramerKhGBuamoD,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerKhGBuamoD\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"24\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"zexjRzvBi\\\":\\\"title\\\"}\",\"framerIntrinsicWidth\":\"214\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./KhGBuamoD.map", "// Generated by Framer (f7d95e4)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,Link,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Iconoir}from\"https://framerusercontent.com/modules/zL9598C4KbEbqUGvSR14/rI8sPHpnG9XGcCPc0vU4/Iconoir.js\";const IconoirFonts=getFonts(Iconoir);const IconoirControls=getPropertyControls(Iconoir);const cycleOrder=[\"Ux0PyCxvN\",\"vow_n653X\"];const serializationHash=\"framer-1FYGV\";const variantClassNames={Ux0PyCxvN:\"framer-v-b1sxf8\",vow_n653X:\"framer-v-1uz6jf4\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"Ux0PyCxvN\",\"Variant 2\":\"vow_n653X\"};const getProps=({height,icon,id,link,newTab,width,...props})=>{return{...props,A05ntVEMU:link??props.A05ntVEMU,L6yNMseIU:newTab??props.L6yNMseIU??true,sa6KXxU5R:icon??props.sa6KXxU5R??\"Twitter\",variant:humanReadableVariantMap[props.variant]??props.variant??\"Ux0PyCxvN\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,sa6KXxU5R,A05ntVEMU,L6yNMseIU,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Ux0PyCxvN\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:A05ntVEMU,motionChild:true,nodeId:\"Ux0PyCxvN\",openInNewTab:L6yNMseIU,scopeId:\"kHl0ZFZ7j\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-b1sxf8\",className,classNames)} framer-7m6xwt`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"Ux0PyCxvN\",ref:refBinding,style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,...style},...addPropertyOverrides({vow_n653X:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-193tkm6\",layoutDependency:layoutDependency,layoutId:\"mpd6H7lVL\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-113ohaq\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"rKBqSSZFG\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.06)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(6px)\",backgroundColor:\"rgba(255, 255, 255, 0.01)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"inset 0px 0px 10px 0px rgba(255, 255, 255, 0.06)\",WebkitBackdropFilter:\"blur(6px)\"},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-vwqsy\",\"data-border\":true,\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"Ya2ECzAlW\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.06)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(0px)\",background:\"linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.01) 100%)\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,boxShadow:\"inset 0px 0px 10px 0px rgba(255, 255, 255, 0.06), 0px 0px 8px 0px rgba(255, 255, 255, 0.03)\",WebkitBackdropFilter:\"blur(0px)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-so1pmv-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"lq5HceHSB-container\",nodeId:\"lq5HceHSB\",rendersWithMotion:true,scopeId:\"kHl0ZFZ7j\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"Home\",iconSelection:sa6KXxU5R,id:\"lq5HceHSB\",layoutId:\"lq5HceHSB\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-1FYGV.framer-7m6xwt, .framer-1FYGV .framer-7m6xwt { display: block; }\",\".framer-1FYGV.framer-b1sxf8 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 50px; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 50px; }\",\".framer-1FYGV .framer-193tkm6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 32px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 32px; z-index: 2; }\",\".framer-1FYGV .framer-113ohaq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 32px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 32px; will-change: var(--framer-will-change-override, transform); }\",\".framer-1FYGV .framer-vwqsy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 24px; justify-content: center; overflow: hidden; padding: 4px; position: relative; width: 24px; will-change: var(--framer-will-change-override, transform); }\",\".framer-1FYGV .framer-so1pmv-container { flex: none; height: 16px; position: relative; width: 16px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-1FYGV.framer-b1sxf8, .framer-1FYGV .framer-193tkm6, .framer-1FYGV .framer-113ohaq, .framer-1FYGV .framer-vwqsy { gap: 0px; } .framer-1FYGV.framer-b1sxf8 > *, .framer-1FYGV .framer-113ohaq > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-1FYGV.framer-b1sxf8 > :first-child, .framer-1FYGV .framer-113ohaq > :first-child { margin-left: 0px; } .framer-1FYGV.framer-b1sxf8 > :last-child, .framer-1FYGV .framer-113ohaq > :last-child { margin-right: 0px; } .framer-1FYGV .framer-193tkm6 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-1FYGV .framer-193tkm6 > :first-child, .framer-1FYGV .framer-vwqsy > :first-child { margin-top: 0px; } .framer-1FYGV .framer-193tkm6 > :last-child, .framer-1FYGV .framer-vwqsy > :last-child { margin-bottom: 0px; } .framer-1FYGV .framer-vwqsy > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",'.framer-1FYGV[data-border=\"true\"]::after, .framer-1FYGV [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 50\n * @framerIntrinsicWidth 50\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"vow_n653X\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"sa6KXxU5R\":\"icon\",\"A05ntVEMU\":\"link\",\"L6yNMseIU\":\"newTab\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerkHl0ZFZ7j=withCSS(Component,css,\"framer-1FYGV\");export default FramerkHl0ZFZ7j;FramerkHl0ZFZ7j.displayName=\"Social Button\";FramerkHl0ZFZ7j.defaultProps={height:50,width:50};addPropertyControls(FramerkHl0ZFZ7j,{variant:{options:[\"Ux0PyCxvN\",\"vow_n653X\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},sa6KXxU5R:IconoirControls?.[\"iconSelection\"]&&{...IconoirControls[\"iconSelection\"],defaultValue:\"Twitter\",description:undefined,hidden:undefined,title:\"Icon\"},A05ntVEMU:{title:\"Link\",type:ControlType.Link},L6yNMseIU:{defaultValue:true,title:\"New Tab\",type:ControlType.Boolean}});addFonts(FramerkHl0ZFZ7j,[{explicitInter:true,fonts:[]},...IconoirFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerkHl0ZFZ7j\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"sa6KXxU5R\\\":\\\"icon\\\",\\\"A05ntVEMU\\\":\\\"link\\\",\\\"L6yNMseIU\\\":\\\"newTab\\\"}\",\"framerIntrinsicWidth\":\"50\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"vow_n653X\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"50\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./kHl0ZFZ7j.map", "// Generated by Framer (d31cd55)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Iconoir}from\"https://framerusercontent.com/modules/zL9598C4KbEbqUGvSR14/rI8sPHpnG9XGcCPc0vU4/Iconoir.js\";const IconoirFonts=getFonts(Iconoir);const cycleOrder=[\"FrbuSaeSw\",\"pgwmNQLLr\"];const serializationHash=\"framer-M96d4\";const variantClassNames={FrbuSaeSw:\"framer-v-1mxqduz\",pgwmNQLLr:\"framer-v-6anwi5\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Closed:\"FrbuSaeSw\",Open:\"pgwmNQLLr\"};const getProps=({answer,height,id,question,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1,_ref2;return{...props,T8rQFvSBR:(_ref=answer!==null&&answer!==void 0?answer:props.T8rQFvSBR)!==null&&_ref!==void 0?_ref:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"FrbuSaeSw\",W88zB8mIG:(_ref2=question!==null&&question!==void 0?question:props.W88zB8mIG)!==null&&_ref2!==void 0?_ref2:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,W88zB8mIG,T8rQFvSBR,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"FrbuSaeSw\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1086zaf=activeVariantCallback(async(...args)=>{setVariant(\"pgwmNQLLr\");});const onTap3dr32u=activeVariantCallback(async(...args)=>{setVariant(\"FrbuSaeSw\");});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"pgwmNQLLr\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1mxqduz\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Closed\",layoutDependency:layoutDependency,layoutId:\"FrbuSaeSw\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-0412df64-3808-4a78-b7be-da21828e1f61, rgba(255, 255, 255, 0.15))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style},...addPropertyOverrides({pgwmNQLLr:{\"data-framer-name\":\"Open\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8xkftf\",\"data-framer-name\":\"Question\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"cC3taaPe1\",onTap:onTap1086zaf,...addPropertyOverrides({pgwmNQLLr:{onTap:onTap3dr32u}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1aa20eo-container\",layoutDependency:layoutDependency,layoutId:\"QmlVnm4RO-container\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Plus\",id:\"QmlVnm4RO\",layoutId:\"QmlVnm4RO\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({pgwmNQLLr:{iconSelection:\"Minus\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e56856ca-c255-4727-917e-5f001a94b962, rgb(255, 255, 255)))\"},children:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"})}),className:\"framer-1bku33h\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"hEe2MKTIg\",style:{\"--extracted-r6o4lv\":\"var(--token-e56856ca-c255-4727-917e-5f001a94b962, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:W88zB8mIG,verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-18d43i\",\"data-framer-name\":\"Answer\",layoutDependency:layoutDependency,layoutId:\"coSOQm2Xm\",style:{opacity:0},variants:{pgwmNQLLr:{opacity:1}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1d62b255-7a1f-472b-a63a-43d2fbaf66b6, rgba(216, 213, 209, 0.8)))\"},children:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"})}),className:\"framer-1l1ntfu\",fonts:[\"FS;Satoshi-regular\"],layoutDependency:layoutDependency,layoutId:\"JUIJHRarQ\",style:{\"--extracted-r6o4lv\":\"var(--token-1d62b255-7a1f-472b-a63a-43d2fbaf66b6, rgba(216, 213, 209, 0.8))\",\"--framer-paragraph-spacing\":\"0px\",opacity:.6},text:T8rQFvSBR,variants:{pgwmNQLLr:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-M96d4.framer-13tbhzb, .framer-M96d4 .framer-13tbhzb { display: block; }\",\".framer-M96d4.framer-1mxqduz { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 24px 0px 24px; position: relative; width: 400px; will-change: var(--framer-will-change-override, transform); }\",\".framer-M96d4 .framer-8xkftf { -webkit-user-select: none; align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px 0px 20px 40px; position: relative; user-select: none; width: 100%; }\",\".framer-M96d4 .framer-1aa20eo-container { flex: none; height: 24px; left: 0px; position: absolute; top: 24px; width: 24px; z-index: 1; }\",\".framer-M96d4 .framer-1bku33h { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-M96d4 .framer-18d43i { 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; overflow: visible; padding: 0px 20px 20px 40px; position: relative; width: 100%; }\",\".framer-M96d4 .framer-1l1ntfu { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-M96d4.framer-1mxqduz, .framer-M96d4 .framer-8xkftf, .framer-M96d4 .framer-18d43i { gap: 0px; } .framer-M96d4.framer-1mxqduz > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-M96d4.framer-1mxqduz > :first-child, .framer-M96d4 .framer-18d43i > :first-child { margin-top: 0px; } .framer-M96d4.framer-1mxqduz > :last-child, .framer-M96d4 .framer-18d43i > :last-child { margin-bottom: 0px; } .framer-M96d4 .framer-8xkftf > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-M96d4 .framer-8xkftf > :first-child { margin-left: 0px; } .framer-M96d4 .framer-8xkftf > :last-child { margin-right: 0px; } .framer-M96d4 .framer-18d43i > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",'.framer-M96d4[data-border=\"true\"]::after, .framer-M96d4 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 130\n * @framerIntrinsicWidth 400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"pgwmNQLLr\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"W88zB8mIG\":\"question\",\"T8rQFvSBR\":\"answer\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramervE6EfJAfP=withCSS(Component,css,\"framer-M96d4\");export default FramervE6EfJAfP;FramervE6EfJAfP.displayName=\"Row\";FramervE6EfJAfP.defaultProps={height:130,width:400};addPropertyControls(FramervE6EfJAfP,{variant:{options:[\"FrbuSaeSw\",\"pgwmNQLLr\"],optionTitles:[\"Closed\",\"Open\"],title:\"Variant\",type:ControlType.Enum},W88zB8mIG:{defaultValue:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",displayTextArea:true,title:\"Question\",type:ControlType.String},T8rQFvSBR:{defaultValue:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",displayTextArea:true,title:\"Answer\",type:ControlType.String}});addFonts(FramervE6EfJAfP,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TTX2Z3BF3P6Y5BQT3IV2VNOK6FL22KUT/7QYRJOI3JIMYHGY6CH7SOIFRQLZOLNJ6/KFIAZD4RUMEZIYV6FQ3T3GP5PDBDB6JY.woff2\",weight:\"400\"}]},...IconoirFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramervE6EfJAfP\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"400\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"W88zB8mIG\\\":\\\"question\\\",\\\"T8rQFvSBR\\\":\\\"answer\\\"}\",\"framerIntrinsicHeight\":\"130\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"pgwmNQLLr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./vE6EfJAfP.map", "// Generated by Framer (c105afa)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Row from\"https://framerusercontent.com/modules/ErBJnIGK9dCq05RJcKGE/3myqwNQ80mUFaBGXQnjC/vE6EfJAfP.js\";const RowFonts=getFonts(Row);const serializationHash=\"framer-lXGx7\";const variantClassNames={gVGSJT_aV:\"framer-v-zvb7om\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"gVGSJT_aV\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-zvb7om\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"gVGSJT_aV\",ref:refBinding,style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:130,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ggfynx-container\",layoutDependency:layoutDependency,layoutId:\"NlQL4l4pC-container\",nodeId:\"NlQL4l4pC\",rendersWithMotion:true,scopeId:\"O6330MTHB\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"NlQL4l4pC\",layoutId:\"NlQL4l4pC\",style:{width:\"100%\"},T8rQFvSBR:\"While every business is different, our clients typically see first results within 30 days and achieve a 3.7x return on investment within 90 days. We've structured our process to deliver quick wins while building long-term success.\",variant:\"FrbuSaeSw\",W88zB8mIG:\"How long does the AI implementation process typically take?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:130,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+154,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1rfagao-container\",layoutDependency:layoutDependency,layoutId:\"pV2gPx4N4-container\",nodeId:\"pV2gPx4N4\",rendersWithMotion:true,scopeId:\"O6330MTHB\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"pV2gPx4N4\",layoutId:\"pV2gPx4N4\",style:{width:\"100%\"},T8rQFvSBR:\"The whole premise of our service is to identify areas of weakness that AI is fit for purpose to solve. If your business doesn't consist of a need for AI, we'll be the first to tell you. Our assessments are objective and focused on real business value, not forcing technology where it isn't beneficial. We'd rather build a reputation for honesty than implement solutions with no ROI.\",variant:\"FrbuSaeSw\",W88zB8mIG:\"What if my company doesn't need AI?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:130,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+308,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-78o72h-container\",layoutDependency:layoutDependency,layoutId:\"V2YlXAIwF-container\",nodeId:\"V2YlXAIwF\",rendersWithMotion:true,scopeId:\"O6330MTHB\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"V2YlXAIwF\",layoutId:\"V2YlXAIwF\",style:{width:\"100%\"},T8rQFvSBR:\"Data security is built into every step of our process. We help you implement AI solutions that protect your trade secrets and maintain full control of your sensitive information.\",variant:\"FrbuSaeSw\",W88zB8mIG:\"How do we protect your sensitive business data?\\n\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:130,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+462,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-18j9x6t-container\",layoutDependency:layoutDependency,layoutId:\"n98wVD_hU-container\",nodeId:\"n98wVD_hU\",rendersWithMotion:true,scopeId:\"O6330MTHB\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"n98wVD_hU\",layoutId:\"n98wVD_hU\",style:{width:\"100%\"},T8rQFvSBR:\"No. We focus on integrating AI into your existing processes, starting with quick wins that deliver immediate value while building toward larger improvements. Our goal is to enhance, not disrupt, your operations. As well as align with new strategies and ways of achieving results.\",variant:\"FrbuSaeSw\",W88zB8mIG:\"Do we need to change your entire business operation?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:130,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+616,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1kggjpi-container\",layoutDependency:layoutDependency,layoutId:\"z4hkDpd0D-container\",nodeId:\"z4hkDpd0D\",rendersWithMotion:true,scopeId:\"O6330MTHB\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"z4hkDpd0D\",layoutId:\"z4hkDpd0D\",style:{width:\"100%\"},T8rQFvSBR:\"Most clients see their first efficiency gains within 30 days. For example, we helped one client cut research time by 50% in their first week. Full implementation benefits usually show within 90 days.\",variant:\"FrbuSaeSw\",W88zB8mIG:\"How long until you see actual results?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:130,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+770,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-bo2bz0-container\",layoutDependency:layoutDependency,layoutId:\"yj2tLgoh_-container\",nodeId:\"yj2tLgoh_\",rendersWithMotion:true,scopeId:\"O6330MTHB\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"yj2tLgoh_\",layoutId:\"yj2tLgoh_\",style:{width:\"100%\"},T8rQFvSBR:\"We assess your existing technology and create a plan that works with what you have. Our approach focuses on practical solutions that integrate with your current setup, suggesting upgrades only when necessary.\\n \",variant:\"FrbuSaeSw\",W88zB8mIG:\"What if your current systems are outdated?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:130,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+924,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-p49muv-container\",layoutDependency:layoutDependency,layoutId:\"iMRMKHwmE-container\",nodeId:\"iMRMKHwmE\",rendersWithMotion:true,scopeId:\"O6330MTHB\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"iMRMKHwmE\",layoutId:\"iMRMKHwmE\",style:{width:\"100%\"},T8rQFvSBR:\"Our implementation package includes weekly strategy calls, continuous optimization, team training, and on-demand expert support. We're your partners throughout the entire journey and we will hold your hand the entire way if necessary.\",variant:\"FrbuSaeSw\",W88zB8mIG:\"What kind of ongoing support do we provide?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:130,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+1078,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-tt0nem-container\",layoutDependency:layoutDependency,layoutId:\"wZ61dmIOd-container\",nodeId:\"wZ61dmIOd\",rendersWithMotion:true,scopeId:\"O6330MTHB\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"wZ61dmIOd\",layoutId:\"wZ61dmIOd\",style:{width:\"100%\"},T8rQFvSBR:\"A full-time CAIO costs between $250,000 & $500,000 annually for just ONE person's expertise. Our fractional service provides an entire team of specialists across strategy, education, and implementation for a fraction of that cost, with more diverse expertise than any single individual could offer.\",variant:\"FrbuSaeSw\",W88zB8mIG:\"How does a fractional CAIO compare to hiring full-time?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:130,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+1232,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1qrd1j7-container\",layoutDependency:layoutDependency,layoutId:\"WvDMc08vv-container\",nodeId:\"WvDMc08vv\",rendersWithMotion:true,scopeId:\"O6330MTHB\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"WvDMc08vv\",layoutId:\"WvDMc08vv\",style:{width:\"100%\"},T8rQFvSBR:\"The 6-12 month transformation provides more comprehensive support including dedicated development resources, customized education workshops, and around-the-clock support. It's designed for organizations making AI a core competitive advantage rather than implementing blindly.\",variant:\"FrbuSaeSw\",W88zB8mIG:\"What are the benefits of our 6-12 month transformation?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:130,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+1386,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-4tob19-container\",layoutDependency:layoutDependency,layoutId:\"q1N2l5mVA-container\",nodeId:\"q1N2l5mVA\",rendersWithMotion:true,scopeId:\"O6330MTHB\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"q1N2l5mVA\",layoutId:\"q1N2l5mVA\",style:{width:\"100%\"},T8rQFvSBR:\"Organizations hesitant to invest hundreds of thousands before knowing if AI is right for them, small to medium-sized businesses seeking AI expertise without the full-time cost, and companies wanting to test and validate AI solutions before major investments see the greatest benefit from our service.\",variant:\"FrbuSaeSw\",W88zB8mIG:\"Who benefits most from our Fractional CAIO service?\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:130,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+1540,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-vxshd2-container\",layoutDependency:layoutDependency,layoutId:\"vMVMSOcnL-container\",nodeId:\"vMVMSOcnL\",rendersWithMotion:true,scopeId:\"O6330MTHB\",children:/*#__PURE__*/_jsx(Row,{height:\"100%\",id:\"vMVMSOcnL\",layoutId:\"vMVMSOcnL\",style:{width:\"100%\"},T8rQFvSBR:\"Simply book a free discovery call with our team. During this no-obligation consultation, we'll discuss your specific challenges, opportunities, and how our team may or may not be able to help you achieve measurable results.\",variant:\"FrbuSaeSw\",W88zB8mIG:\"How do I get started with Webforge AI?\",width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-lXGx7.framer-p55vk8, .framer-lXGx7 .framer-p55vk8 { display: block; }\",\".framer-lXGx7.framer-zvb7om { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1000px; will-change: var(--framer-will-change-override, transform); }\",\".framer-lXGx7 .framer-1ggfynx-container, .framer-lXGx7 .framer-1rfagao-container, .framer-lXGx7 .framer-78o72h-container, .framer-lXGx7 .framer-18j9x6t-container, .framer-lXGx7 .framer-1kggjpi-container, .framer-lXGx7 .framer-bo2bz0-container, .framer-lXGx7 .framer-p49muv-container, .framer-lXGx7 .framer-tt0nem-container, .framer-lXGx7 .framer-1qrd1j7-container, .framer-lXGx7 .framer-4tob19-container, .framer-lXGx7 .framer-vxshd2-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-lXGx7.framer-zvb7om { gap: 0px; } .framer-lXGx7.framer-zvb7om > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-lXGx7.framer-zvb7om > :first-child { margin-top: 0px; } .framer-lXGx7.framer-zvb7om > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1010\n * @framerIntrinsicWidth 1000\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerO6330MTHB=withCSS(Component,css,\"framer-lXGx7\");export default FramerO6330MTHB;FramerO6330MTHB.displayName=\"Accordion\";FramerO6330MTHB.defaultProps={height:1010,width:1e3};addFonts(FramerO6330MTHB,[{explicitInter:true,fonts:[]},...RowFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerO6330MTHB\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1000\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"1010\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./O6330MTHB.map", "// Generated by Framer (c105afa)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,Image,Link,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Noise from\"https://framerusercontent.com/modules/bamMgJhjMszHbcnxCtZj/20nHFbpxFqdlchR1dDZF/Noise.js\";import Button from\"https://framerusercontent.com/modules/gj0MCP5CznR9XjNPSCcM/VIbyYQLLS523JRxvfJa8/zmfXfUs2x.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/IZ0vSV62Dv7ax4rBiGUk/Video.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js\";import Shimmer from\"https://framerusercontent.com/modules/qFg6VLSyrkFjia0NaH19/HV61pswZmmqBJg1pjYW9/g_s8LqzcU.js\";import RotatingGradient from\"https://framerusercontent.com/modules/UNqGz66IeqdsXMUqKrUv/FK1VqrnWvJiysDyXaokn/Shiney.js\";import Dock from\"#framer/local/canvasComponent/DPi_nIUbR/DPi_nIUbR.js\";import FeatureBox from\"#framer/local/canvasComponent/fxtGDje59/fxtGDje59.js\";import Feature from\"#framer/local/canvasComponent/KhGBuamoD/KhGBuamoD.js\";import SocialButton from\"#framer/local/canvasComponent/kHl0ZFZ7j/kHl0ZFZ7j.js\";import Accordion from\"#framer/local/canvasComponent/O6330MTHB/O6330MTHB.js\";import Button1 from\"#framer/local/canvasComponent/zmfXfUs2x/zmfXfUs2x.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const DockFonts=getFonts(Dock);const ContainerWithFX=withFX(Container);const VideoFonts=getFonts(Video);const MotionDivWithFX=withFX(motion.div);const ImageWithFX=withFX(Image);const RichTextWithFX=withFX(RichText);const ButtonFonts=getFonts(Button);const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const ShimmerFonts=getFonts(Shimmer);const FeatureBoxFonts=getFonts(FeatureBox);const RotatingGradientFonts=getFonts(RotatingGradient);const Button1Fonts=getFonts(Button1);const NoiseFonts=getFonts(Noise);const FeatureFonts=getFonts(Feature);const EmbedFonts=getFonts(Embed);const AccordionFonts=getFonts(Accordion);const SocialButtonFonts=getFonts(SocialButton);const breakpoints={JXMPRkVjQ:\"(max-width: 809px)\",WQLkyLRf1:\"(min-width: 1440px)\",xSFMhnjU5:\"(min-width: 810px) and (max-width: 1439px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-jSNoe\";const variantClassNames={JXMPRkVjQ:\"framer-v-1n0tk8m\",WQLkyLRf1:\"framer-v-72rtr7\",xSFMhnjU5:\"framer-v-1ehords\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition1={damping:100,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition2={delay:1.5,duration:8,ease:[.12,.23,.5,1],type:\"tween\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:780,y:325};const transition3={delay:.2,duration:5.6,ease:[.12,.23,.5,1],type:\"tween\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.6,skewX:0,skewY:0,x:780,y:325};const transition4={delay:.6,duration:7,ease:[.12,.23,.5,1],type:\"tween\"};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1.4,skewX:0,skewY:0,x:780,y:325};const transition5={delay:.2,duration:5.9,ease:[.12,.23,.5,1],type:\"tween\"};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1.2,skewX:0,skewY:0,x:780,y:325};const transition6={delay:2,duration:6,ease:[.12,.23,.5,1],type:\"tween\"};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,x:780,y:325};const transition7={delay:2.4,duration:6,ease:[.12,.23,.5,1],type:\"tween\"};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.7,skewX:0,skewY:0,x:780,y:325};const transition8={delay:3.2,duration:7.4,ease:[.12,.23,.5,1],type:\"tween\"};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,x:780,y:325};const transition9={delay:1,duration:5,ease:[.12,.23,.5,1],type:\"tween\"};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,x:780,y:325};const transition10={delay:1,duration:6,ease:[.12,.23,.5,1],type:\"tween\"};const transition11={delay:3,duration:5.6,ease:[.12,.23,.5,1],type:\"tween\"};const transition12={delay:2,duration:5.4,ease:[.12,.23,.5,1],type:\"tween\"};const transition13={delay:5.4,duration:5.3,ease:[.12,.23,.5,1],type:\"tween\"};const transition14={delay:2.3,duration:5.8,ease:[.12,.23,.5,1],type:\"tween\"};const transition15={delay:5.4,duration:6,ease:[.12,.23,.5,1],type:\"tween\"};const transition16={delay:2,duration:8,ease:[.12,.23,.5,1],type:\"tween\"};const transition17={delay:2,duration:7,ease:[.12,.23,.5,1],type:\"tween\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"JXMPRkVjQ\",Tablet:\"xSFMhnjU5\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const elementId=useRouteElementId(\"W3ndVywZk\");const ref2=React.useRef(null);const router=useRouter();const elementId1=useRouteElementId(\"FjDWvnEqu\");const elementId2=useRouteElementId(\"ga2YQ4Edb\");const ref3=React.useRef(null);const elementId3=useRouteElementId(\"HfbXUU2y_\");const ref4=React.useRef(null);const elementId4=useRouteElementId(\"qzESH2_gj\");const ref5=React.useRef(null);const elementId5=useRouteElementId(\"t4fQw0KZZ\");const ref6=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"JXMPRkVjQ\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"JXMPRkVjQ\")return true;return false;};const elementId6=useRouteElementId(\"CAU0XeMS_\");const ref7=React.useRef(null);const elementId7=useRouteElementId(\"ym_sKtVnJ\");const ref8=React.useRef(null);const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"xSFMhnjU5\")return false;return true;};const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"xSFMhnjU5\")return true;return false;};const elementId8=useRouteElementId(\"izsppp4fT\");const ref9=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(1, 2, 8); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{y:910}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:70,y:911,children:/*#__PURE__*/_jsx(ContainerWithFX,{__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:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref1,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1is7gum-container\",\"data-framer-name\":\"Navigation Dock\",layoutScroll:true,name:\"Navigation Dock\",nodeId:\"YWErTWOS9\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(Dock,{height:\"100%\",id:\"YWErTWOS9\",layoutId:\"YWErTWOS9\",name:\"Navigation Dock\",variant:\"L88mPpnK9\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"main\",{className:\"framer-5d3nf5\",\"data-framer-name\":\"Main\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-190udz3\",\"data-framer-name\":\"Hero Container\",id:elementId,ref:ref2,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{__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:ref2,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,animate:undefined,initial:undefined,optimized:undefined},xSFMhnjU5:{__perspectiveFX:false,__targetOpacity:1,animate:undefined,initial:undefined,optimized:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{animate:animation,className:\"framer-1iyoh2c\",\"data-framer-appear-id\":\"1iyoh2c\",\"data-framer-name\":\"Hero\",initial:animation1,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__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:ref2,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:.35,className:\"framer-17vx0p5-container\",\"data-framer-name\":\"Background Video\",isAuthoredByUser:true,isModuleExternal:true,name:\"Background Video\",nodeId:\"m42FilpKy\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"m42FilpKy\",isMixedBorderRadius:false,layoutId:\"m42FilpKy\",loop:true,muted:true,name:\"Background Video\",objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/H1BkqKgYZVEnAAuTaoM3FQHxQ.mp4\",srcType:\"Upload\",srcUrl:\"\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(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:ref2,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-tf8tzk\",\"data-framer-name\":\"Background Colour\",style:{transformPerspective:1200}}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{background:{alt:\"Company Logo\",fit:\"fit\",intrinsicHeight:38,intrinsicWidth:231,pixelHeight:45,pixelWidth:300,positionX:\"center\",positionY:\"center\",sizes:\"147.1579px\",src:\"https://framerusercontent.com/images/5KQimGaw4pOuI4ueWWVdeymtGFg.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/5KQimGaw4pOuI4ueWWVdeymtGFg.svg?scale-down-to=512 512w,https://framerusercontent.com/images/5KQimGaw4pOuI4ueWWVdeymtGFg.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/5KQimGaw4pOuI4ueWWVdeymtGFg.svg 1069w\"}},xSFMhnjU5:{background:{alt:\"Company Logo\",fit:\"fit\",intrinsicHeight:38,intrinsicWidth:231,pixelHeight:45,pixelWidth:300,positionX:\"center\",positionY:\"center\",sizes:\"190.0789px\",src:\"https://framerusercontent.com/images/5KQimGaw4pOuI4ueWWVdeymtGFg.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/5KQimGaw4pOuI4ueWWVdeymtGFg.svg?scale-down-to=512 512w,https://framerusercontent.com/images/5KQimGaw4pOuI4ueWWVdeymtGFg.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/5KQimGaw4pOuI4ueWWVdeymtGFg.svg 1069w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__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:ref2,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:0,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"Company Logo\",fit:\"fit\",intrinsicHeight:38,intrinsicWidth:231,pixelHeight:45,pixelWidth:300,positionX:\"center\",positionY:\"center\",sizes:\"233px\",src:\"https://framerusercontent.com/images/5KQimGaw4pOuI4ueWWVdeymtGFg.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/5KQimGaw4pOuI4ueWWVdeymtGFg.svg?scale-down-to=512 512w,https://framerusercontent.com/images/5KQimGaw4pOuI4ueWWVdeymtGFg.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/5KQimGaw4pOuI4ueWWVdeymtGFg.svg 1069w\"},className:\"framer-1gxkxjd\",\"data-framer-name\":\"Logo\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ked844\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8oegii\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsxs(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(4082deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.5) 100%)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"44px\"},children:\" Adding AI is hard. \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"44px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"44px\"},children:\"We make it Easy.\"})]})})})},xSFMhnjU5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"54px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsxs(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(4082deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.5) 100%)\"},children:[\"Implementing AI is hard. \",/*#__PURE__*/_jsx(\"br\",{}),\"We make it Easy.\",/*#__PURE__*/_jsx(\"br\",{})]})})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__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:ref2,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:4,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"80px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsxs(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(4082deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.5) 100%)\"},children:[\"Implementing AI is hard. \",/*#__PURE__*/_jsx(\"br\",{}),\"We make it Easy.\",/*#__PURE__*/_jsx(\"br\",{})]})})}),className:\"framer-1csmffs\",\"data-framer-name\":\"Headline\",fonts:[\"FS;Satoshi-medium\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1d62b255-7a1f-472b-a63a-43d2fbaf66b6, rgba(216, 213, 209, 0.8))\"},children:\"With 80% of AI projects failing, our proven strategy helps you beat the odds\u2014avoiding costly pitfalls and driving measurable results.\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__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:ref2,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:0,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1d62b255-7a1f-472b-a63a-43d2fbaf66b6, rgba(216, 213, 209, 0.8))\"},children:\"With 80% of AI projects failing, our proven strategy helps you beat the odds\u2014avoiding costly pitfalls and driving measurable results.\"})}),className:\"framer-1xm5nks\",\"data-framer-name\":\"Subheading\",fonts:[\"FS;Satoshi-regular\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(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:ref2,target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:0,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1scn0yo\",\"data-framer-name\":\"Button\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":t4fQw0KZZ\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":t4fQw0KZZ\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":t4fQw0KZZ\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1aqvz0z-container\",isModuleExternal:true,nodeId:\"z8Yz6Oh1L\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{eKaJCD5ke:resolvedLinks[2]},xSFMhnjU5:{eKaJCD5ke:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(Button,{ee7BPanBX:\"See plans\",eKaJCD5ke:resolvedLinks[0],ganbFCIun:false,height:\"100%\",HQg2xVuQq:true,id:\"z8Yz6Oh1L\",iTUUBmGZY:\"One\",layoutId:\"z8Yz6Oh1L\",UqXtTGf8R:\"Instagram\",variant:\"ncndWlIOY\",width:\"100%\"})})})})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1r5ytmi\",\"data-framer-name\":\"Pain Point\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fdpq90\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kiiq0s\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__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:.5,skewX:0,skewY:0,x:0,y:0}},{ref:ref2,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1pdGFsaWM=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-style\":\"italic\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(216, 213, 209, 0.8)\"},children:\"We focus on 3 things...\"})}),className:\"framer-va5dz9\",\"data-framer-name\":\"Text\",fonts:[\"FS;Satoshi-italic\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(4082deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.5) 100%)\"},children:\"People. Processes. Tech\"})})})},xSFMhnjU5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(4082deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.5) 100%)\"},children:\"People. Processes. Tech\"})})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__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:.5,skewX:0,skewY:0,x:0,y:0}},{ref:ref2,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(4082deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.5) 100%)\"},children:\"People. Processes. Tech\"})})}),className:\"framer-t8zl60\",\"data-framer-name\":\"Headline\",fonts:[\"FS;Satoshi-medium\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(216, 213, 209, 0.8)\"},children:\" To ensure your AI iniative succeeds without the headaches...\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__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:.5,skewX:0,skewY:0,x:0,y:0}},{ref:ref2,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(216, 213, 209, 0.8)\"},children:\" To ensure your AI iniative succeeds without the headaches...\"})}),className:\"framer-r7z6a4\",\"data-framer-name\":\"Subheading\",fonts:[\"FS;Satoshi-regular\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__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:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:0}},{ref:ref2,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-gq67wx\",\"data-framer-name\":\"Shooting Stars\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation2,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:1.5,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1k61sq2-container\",isModuleExternal:true,nodeId:\"ePO9yrH2b\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{rotate:22.6},children:/*#__PURE__*/_jsx(Shimmer,{height:\"100%\",id:\"ePO9yrH2b\",layoutId:\"ePO9yrH2b\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation3,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:1,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition3,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1j64x43-container\",isModuleExternal:true,nodeId:\"eYaMOHxv7\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{rotate:22.6},children:/*#__PURE__*/_jsx(Shimmer,{height:\"100%\",id:\"eYaMOHxv7\",layoutId:\"eYaMOHxv7\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation4,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:.6,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition4,__perspectiveFX:false,__targetOpacity:1,className:\"framer-elurrp-container\",isModuleExternal:true,nodeId:\"BmKc_zU9T\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{rotate:22.6},children:/*#__PURE__*/_jsx(Shimmer,{height:\"100%\",id:\"BmKc_zU9T\",layoutId:\"BmKc_zU9T\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation5,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:1,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1sc01z7-container\",isModuleExternal:true,nodeId:\"oeNfhM8OM\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{rotate:22.6},children:/*#__PURE__*/_jsx(Shimmer,{height:\"100%\",id:\"oeNfhM8OM\",layoutId:\"oeNfhM8OM\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation6,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:5.4,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition6,__perspectiveFX:false,__targetOpacity:1,className:\"framer-12za3ys-container\",isModuleExternal:true,nodeId:\"h8mROyheq\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{rotate:22.6},children:/*#__PURE__*/_jsx(Shimmer,{height:\"100%\",id:\"h8mROyheq\",layoutId:\"h8mROyheq\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation7,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:2,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition7,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1xfs3r7-container\",isModuleExternal:true,nodeId:\"I9H07BeVS\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{rotate:22.6},children:/*#__PURE__*/_jsx(Shimmer,{height:\"100%\",id:\"I9H07BeVS\",layoutId:\"I9H07BeVS\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation8,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:3.2,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition8,__perspectiveFX:false,__targetOpacity:1,className:\"framer-e7orv6-container\",isModuleExternal:true,nodeId:\"Z6Sojm7y9\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{rotate:22.6},children:/*#__PURE__*/_jsx(Shimmer,{height:\"100%\",id:\"Z6Sojm7y9\",layoutId:\"Z6Sojm7y9\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation9,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:1,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition9,__perspectiveFX:false,__targetOpacity:1,className:\"framer-jn75gg-container\",isModuleExternal:true,nodeId:\"YJqYc6Haw\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{rotate:22.6},children:/*#__PURE__*/_jsx(Shimmer,{height:\"100%\",id:\"YJqYc6Haw\",layoutId:\"YJqYc6Haw\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation5,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:4.5,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition10,__perspectiveFX:false,__targetOpacity:1,className:\"framer-18lr6bo-container\",isModuleExternal:true,nodeId:\"oi_wS6UOV\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{rotate:22.6},children:/*#__PURE__*/_jsx(Shimmer,{height:\"100%\",id:\"oi_wS6UOV\",layoutId:\"oi_wS6UOV\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation2,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:3,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition11,__perspectiveFX:false,__targetOpacity:1,className:\"framer-13p49ym-container\",isModuleExternal:true,nodeId:\"YMSMFHdBT\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{rotate:22.6},children:/*#__PURE__*/_jsx(Shimmer,{height:\"100%\",id:\"YMSMFHdBT\",layoutId:\"YMSMFHdBT\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation9,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:2,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition12,__perspectiveFX:false,__targetOpacity:1,className:\"framer-11n962k-container\",isModuleExternal:true,nodeId:\"jSTbnSGzX\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{rotate:22.6},children:/*#__PURE__*/_jsx(Shimmer,{height:\"100%\",id:\"jSTbnSGzX\",layoutId:\"jSTbnSGzX\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation3,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:1.4,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition13,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1i9wt6p-container\",isModuleExternal:true,nodeId:\"OH5RnCZwq\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{rotate:22.6},children:/*#__PURE__*/_jsx(Shimmer,{height:\"100%\",id:\"OH5RnCZwq\",layoutId:\"OH5RnCZwq\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation6,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:2,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition14,__perspectiveFX:false,__targetOpacity:1,className:\"framer-wnzptp-container\",isModuleExternal:true,nodeId:\"Cz96mVq3y\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{rotate:22.6},children:/*#__PURE__*/_jsx(Shimmer,{height:\"100%\",id:\"Cz96mVq3y\",layoutId:\"Cz96mVq3y\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation9,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:1.7,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition15,__perspectiveFX:false,__targetOpacity:1,className:\"framer-17pw07p-container\",isModuleExternal:true,nodeId:\"ylYJZQEcr\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{rotate:22.6},children:/*#__PURE__*/_jsx(Shimmer,{height:\"100%\",id:\"ylYJZQEcr\",layoutId:\"ylYJZQEcr\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation5,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:.6,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition4,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1xjtlzs-container\",isModuleExternal:true,nodeId:\"VQ2BbzVbg\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{rotate:22.6},children:/*#__PURE__*/_jsx(Shimmer,{height:\"100%\",id:\"VQ2BbzVbg\",layoutId:\"VQ2BbzVbg\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation3,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:2,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition16,__perspectiveFX:false,__targetOpacity:1,className:\"framer-5ih3ag-container\",isModuleExternal:true,nodeId:\"tRMp1_gfP\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{rotate:22.6},children:/*#__PURE__*/_jsx(Shimmer,{height:\"100%\",id:\"tRMp1_gfP\",layoutId:\"tRMp1_gfP\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation7,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:2,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition17,__perspectiveFX:false,__targetOpacity:1,className:\"framer-17wu8v6-container\",isModuleExternal:true,nodeId:\"zsRa8tWSf\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{rotate:22.6},children:/*#__PURE__*/_jsx(Shimmer,{height:\"100%\",id:\"zsRa8tWSf\",layoutId:\"zsRa8tWSf\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1n9dlb0\",\"data-framer-name\":\"How It Works\",id:elementId1,ref:ref1,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-m762ze\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-i93pax\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{__framer__styleTransformEffectEnabled:undefined,style:{}},xSFMhnjU5:{__framer__styleTransformEffectEnabled:undefined,style:{}}},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:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref1,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-4pn1jw\",\"data-framer-name\":\"Boxes\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`},xSFMhnjU5:{width:`calc(${componentViewport?.width||\"100vw\"} - 128px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:357,width:\"394.6667px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cilfsm-container\",nodeId:\"pYvCR4_r4\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{variant:\"tIRLokQm5\"}},children:/*#__PURE__*/_jsx(FeatureBox,{height:\"100%\",id:\"pYvCR4_r4\",jUQ85hyI1:7,layoutId:\"pYvCR4_r4\",qRz5D4LrN:\"People\",style:{width:\"100%\"},variant:\"W5w3ijKbK\",vyoBXWjX1:\"Are the people powering your business equipped with the necessary skills?\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`},xSFMhnjU5:{width:`calc(${componentViewport?.width||\"100vw\"} - 128px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:357,width:\"394.6667px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-ypddax-container\",nodeId:\"TAY2WmJR1\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{variant:\"tIRLokQm5\"}},children:/*#__PURE__*/_jsx(FeatureBox,{height:\"100%\",id:\"TAY2WmJR1\",jUQ85hyI1:9,layoutId:\"TAY2WmJR1\",Oh7Y7ydzW:addImageAlt({src:\"https://framerusercontent.com/images/DiCIqCWCVHayX1NmzH9RHCGjvo.png\",srcSet:\"https://framerusercontent.com/images/DiCIqCWCVHayX1NmzH9RHCGjvo.png?scale-down-to=512 512w,https://framerusercontent.com/images/DiCIqCWCVHayX1NmzH9RHCGjvo.png 790w\"},\"\"),qRz5D4LrN:\"Processes\",style:{width:\"100%\"},variant:\"W5w3ijKbK\",vyoBXWjX1:\"Transform your workflows with implementation that delivers real results\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`},xSFMhnjU5:{width:`calc(${componentViewport?.width||\"100vw\"} - 128px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:357,width:\"394.6667px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-l2p4pw-container\",nodeId:\"o_AlQ1wY1\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{variant:\"tIRLokQm5\"}},children:/*#__PURE__*/_jsx(FeatureBox,{height:\"100%\",id:\"o_AlQ1wY1\",jUQ85hyI1:11,layoutId:\"o_AlQ1wY1\",Oh7Y7ydzW:addImageAlt({src:\"https://framerusercontent.com/images/gnK69OnfXw7UHt6vlIfuE7kODWU.png\",srcSet:\"https://framerusercontent.com/images/gnK69OnfXw7UHt6vlIfuE7kODWU.png?scale-down-to=512 512w,https://framerusercontent.com/images/gnK69OnfXw7UHt6vlIfuE7kODWU.png 790w\"},\"\"),qRz5D4LrN:\"Technology\",style:{width:\"100%\"},variant:\"W5w3ijKbK\",vyoBXWjX1:\"No more wasted tech investments. We implement the right AI tools for your needs\",width:\"100%\"})})})})})]})})})})}),/*#__PURE__*/_jsxs(\"div\",{background:{alt:\"\",fit:\"fit\",intrinsicHeight:3680,intrinsicWidth:3680,pixelHeight:3680,pixelWidth:3680,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/wBPdtQRaVwZKoUvEssAVakAbM.png\"},className:\"framer-wxwimt\",\"data-framer-name\":\"Our Mission\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__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:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref3,target:{opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:.5,className:\"framer-17gpt8q-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"snLrcYOGP\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"snLrcYOGP\",isMixedBorderRadius:false,layoutId:\"snLrcYOGP\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/Ji57Ag3HAMoPzUpO2zO0v93mBqg.mp4\",srcType:\"Upload\",srcUrl:\"https://vimeo.com/865270127?share=copy\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-151n5tt\",\"data-framer-name\":\"Overlay\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-qez04q\",\"data-framer-name\":\"Overlay\",style:{rotate:180}}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sfppei\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(4082deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.5) 100%)\"},children:\"Our Mission: To Create Strategy & Systems That Propel Your Company Forward.\"})})})},xSFMhnjU5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(4082deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.5) 100%)\"},children:\"Our Mission: To Create Strategy & Systems That Propel Your Company Forward.\"})})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__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:.5,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:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(4082deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.5) 100%)\"},children:\"Our Mission: To Create Strategy & Systems That Propel Your Company Forward.\"})})}),className:\"framer-1o8w7yx\",\"data-framer-name\":\"Headline\",fonts:[\"FS;Satoshi-medium\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1d62b255-7a1f-472b-a63a-43d2fbaf66b6, rgba(216, 213, 209, 0.8))\"},children:['We believe in crafting AI solutions that aren\\'t just \"plug-and-play.\" Every strategy we develop is tailor-made to solve the ',/*#__PURE__*/_jsx(\"strong\",{children:\"real challenges\"}),\" you face today\u2014whether it's streamlining workflows, leveraging AI for competitive advantage, or future-proofing your operations.\"]}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1d62b255-7a1f-472b-a63a-43d2fbaf66b6, rgba(216, 213, 209, 0.8))\"},children:[\"Our team doesn't just focus on technology. We build comprehensive solutions around your \",/*#__PURE__*/_jsx(\"strong\",{children:\"people\"}),\" & \",/*#__PURE__*/_jsx(\"strong\",{children:\"processes\"}),\" too. \"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1d62b255-7a1f-472b-a63a-43d2fbaf66b6, rgba(216, 213, 209, 0.8))\"},children:\"Ensuring that every AI implementation delivers measurable results that make your business run smoother.\"})]})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__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:.5,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:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1d62b255-7a1f-472b-a63a-43d2fbaf66b6, rgba(216, 213, 209, 0.8))\"},children:['We believe in crafting AI solutions that aren\\'t just \"plug-and-play.\" Every strategy we develop is tailor-made to solve the ',/*#__PURE__*/_jsx(\"strong\",{children:\"real challenges\"}),\" you face today\u2014whether it's streamlining workflows, leveraging AI for competitive advantage, or future-proofing your operations.\"]}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1d62b255-7a1f-472b-a63a-43d2fbaf66b6, rgba(216, 213, 209, 0.8))\"},children:[\"Our team doesn't just focus on technology. We build comprehensive solutions around your \",/*#__PURE__*/_jsx(\"strong\",{children:\"people\"}),\" & \",/*#__PURE__*/_jsx(\"strong\",{children:\"processes\"}),\" too. \"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1d62b255-7a1f-472b-a63a-43d2fbaf66b6, rgba(216, 213, 209, 0.8))\"},children:\"Ensuring that every AI implementation delivers measurable results that make your business run smoother.\"})]}),className:\"framer-14ac0t5\",\"data-framer-name\":\"Subheading\",fonts:[\"FS;Satoshi-regular\",\"FS;Satoshi-bold\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ok9t3e\",\"data-framer-name\":\"Benefits\",id:elementId3,ref:ref4,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11o6oic\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{__framer__styleTransformEffectEnabled:undefined,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(4082deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.5) 100%)\"},children:\"The Webforge AI Advantage.\"})})}),style:{}},xSFMhnjU5:{__framer__styleTransformEffectEnabled:undefined,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(4082deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.5) 100%)\"},children:\"The Webforge AI Advantage.\"})})}),style:{}}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__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:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref4,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(4082deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.5) 100%)\"},children:\"The Webforge AI Advantage.\"})})}),className:\"framer-1fkce0j\",\"data-framer-name\":\"Heading\",fonts:[\"FS;Satoshi-medium\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-47xce8\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{__framer__styleTransformEffectEnabled:undefined,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-13375b9f-4436-4454-8e2f-e087d57f7eba, rgba(216, 213, 209, 0.8))\"},children:\"Our service brings comprehensive AI expertise to your organization with defined methodology, measurable outcomes, and strategic accountability\"})}),style:{}},xSFMhnjU5:{__framer__styleTransformEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__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:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref4,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-13375b9f-4436-4454-8e2f-e087d57f7eba, rgba(216, 213, 209, 0.8))\"},children:\"Our service brings comprehensive AI expertise to your organization with defined methodology, measurable outcomes, and strategic accountability\"})}),className:\"framer-1r6wqig\",\"data-framer-name\":\"Subheading\",fonts:[\"FS;Satoshi-regular\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{__framer__styleTransformEffectEnabled:undefined,style:{}},xSFMhnjU5:{__framer__styleTransformEffectEnabled:undefined,style:{}}},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:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref4,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ut1100\",\"data-framer-name\":\"Feature Boxes\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5euih4\",\"data-framer-name\":\"Feature Boxes 1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`},xSFMhnjU5:{width:`calc(${componentViewport?.width||\"100vw\"} - 128px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:357,width:\"394.6667px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lh6ehr-container\",nodeId:\"ZyxzI5u9J\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{variant:\"tIRLokQm5\"}},children:/*#__PURE__*/_jsx(FeatureBox,{height:\"100%\",id:\"ZyxzI5u9J\",jUQ85hyI1:5,layoutId:\"ZyxzI5u9J\",Oh7Y7ydzW:addImageAlt({src:\"https://framerusercontent.com/images/LQOr2rjaKZ91st61MANrRakJSs.png\",srcSet:\"https://framerusercontent.com/images/LQOr2rjaKZ91st61MANrRakJSs.png?scale-down-to=512 512w,https://framerusercontent.com/images/LQOr2rjaKZ91st61MANrRakJSs.png 790w\"},\"\"),qRz5D4LrN:\"Strategic AI Roadmap\",style:{width:\"100%\"},variant:\"W5w3ijKbK\",vyoBXWjX1:\"7-pillar assessment aligning AI initiatives with business objectives and ROI targets.\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`},xSFMhnjU5:{width:`calc(${componentViewport?.width||\"100vw\"} - 128px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:357,width:\"394.6667px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-17xtvhj-container\",nodeId:\"oRDjVyHMb\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{variant:\"tIRLokQm5\"}},children:/*#__PURE__*/_jsx(FeatureBox,{height:\"100%\",id:\"oRDjVyHMb\",jUQ85hyI1:6,layoutId:\"oRDjVyHMb\",Oh7Y7ydzW:addImageAlt({src:\"https://framerusercontent.com/images/c6rgRH4BzzBgDJs2Dalw3CEhc8g.png\",srcSet:\"https://framerusercontent.com/images/c6rgRH4BzzBgDJs2Dalw3CEhc8g.png?scale-down-to=512 512w,https://framerusercontent.com/images/c6rgRH4BzzBgDJs2Dalw3CEhc8g.png 790w\"},\"\"),qRz5D4LrN:\"Data-Driven Implementation\",style:{width:\"100%\"},variant:\"W5w3ijKbK\",vyoBXWjX1:\"Measurable outcomes within 30-90 days with 3.7x average ROI on AI investments.\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`},xSFMhnjU5:{width:`calc(${componentViewport?.width||\"100vw\"} - 128px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:357,width:\"394.6667px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gqcs0j-container\",nodeId:\"KjhlRVTYt\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{variant:\"tIRLokQm5\"}},children:/*#__PURE__*/_jsx(FeatureBox,{height:\"100%\",id:\"KjhlRVTYt\",jUQ85hyI1:7,layoutId:\"KjhlRVTYt\",Oh7Y7ydzW:addImageAlt({src:\"https://framerusercontent.com/images/IzS5kjBfuTw1vzS5sVV8eJHbyF4.png\",srcSet:\"https://framerusercontent.com/images/IzS5kjBfuTw1vzS5sVV8eJHbyF4.png?scale-down-to=512 512w,https://framerusercontent.com/images/IzS5kjBfuTw1vzS5sVV8eJHbyF4.png 790w\"},\"\"),qRz5D4LrN:\"Predictable Investment\",style:{width:\"100%\"},variant:\"W5w3ijKbK\",vyoBXWjX1:\"Full AI leadership team at a fraction of hiring one specialist\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gbfmew\",\"data-framer-name\":\"Feature Boxes 2\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`},xSFMhnjU5:{width:`calc(${componentViewport?.width||\"100vw\"} - 128px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:357,width:\"394.6667px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1teutti-container\",nodeId:\"XvCh2psjR\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{variant:\"tIRLokQm5\"}},children:/*#__PURE__*/_jsx(FeatureBox,{height:\"100%\",id:\"XvCh2psjR\",jUQ85hyI1:8,layoutId:\"XvCh2psjR\",qRz5D4LrN:\"Cross-Industry AI Expertise\",style:{width:\"100%\"},variant:\"W5w3ijKbK\",vyoBXWjX1:\"Specialized knowledge across industries & technologies for strategic alignment.\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`},xSFMhnjU5:{width:`calc(${componentViewport?.width||\"100vw\"} - 128px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:357,width:\"394.6667px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-eh3ap8-container\",nodeId:\"OL3d6X3oN\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{variant:\"tIRLokQm5\"}},children:/*#__PURE__*/_jsx(FeatureBox,{height:\"100%\",id:\"OL3d6X3oN\",jUQ85hyI1:9,layoutId:\"OL3d6X3oN\",Oh7Y7ydzW:addImageAlt({src:\"https://framerusercontent.com/images/z6W28Qs37BE6Lw3Flu10iCfHz0.png\",srcSet:\"https://framerusercontent.com/images/z6W28Qs37BE6Lw3Flu10iCfHz0.png?scale-down-to=512 512w,https://framerusercontent.com/images/z6W28Qs37BE6Lw3Flu10iCfHz0.png 790w\"},\"\"),qRz5D4LrN:\"Seamless Integration\",style:{width:\"100%\"},variant:\"W5w3ijKbK\",vyoBXWjX1:\"Solutions designed to enhance existing systems and team capabilities effortlessly.\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`},xSFMhnjU5:{width:`calc(${componentViewport?.width||\"100vw\"} - 128px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:357,width:\"394.6667px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-oi5o46-container\",nodeId:\"Was35W7Ex\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{variant:\"tIRLokQm5\"}},children:/*#__PURE__*/_jsx(FeatureBox,{height:\"100%\",id:\"Was35W7Ex\",jUQ85hyI1:10,layoutId:\"Was35W7Ex\",Oh7Y7ydzW:addImageAlt({src:\"https://framerusercontent.com/images/IM5XWWiqv0vx01NYO0ps2DLSiyQ.png\",srcSet:\"https://framerusercontent.com/images/IM5XWWiqv0vx01NYO0ps2DLSiyQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/IM5XWWiqv0vx01NYO0ps2DLSiyQ.png 790w\"},\"\"),qRz5D4LrN:\"Risk-Free AI Adoption\",style:{width:\"100%\"},variant:\"W5w3ijKbK\",vyoBXWjX1:\"Proven frameworks eliminating the 80% failure rate of typical AI projects.\",width:\"100%\"})})})})})]})]})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xl8k1p\",\"data-framer-name\":\"Features\",id:elementId4,ref:ref5,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u558xk\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{__framer__styleTransformEffectEnabled:undefined,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(4082deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.5) 100%)\"},children:\"You'll Ask Yourself, Why Didn't We Think of That.\"})})}),style:{}},xSFMhnjU5:{__framer__styleTransformEffectEnabled:undefined,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(4082deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.5) 100%)\"},children:\"You'll Ask Yourself, Why Didn't We Think of That.\"})})}),style:{}}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__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:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref5,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(4082deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.5) 100%)\"},children:\"You'll Ask Yourself, Why Didn't We Think of That.\"})})}),className:\"framer-1ayrksd\",\"data-framer-name\":\"Heading\",fonts:[\"FS;Satoshi-medium\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13gl08c\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{__framer__styleTransformEffectEnabled:undefined,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1d62b255-7a1f-472b-a63a-43d2fbaf66b6, rgba(216, 213, 209, 0.8))\"},children:\"Webforge replaces expensive in-house AI teams and removes the risk for implementation projects.\"})}),style:{}},xSFMhnjU5:{__framer__styleTransformEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__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:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref5,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1d62b255-7a1f-472b-a63a-43d2fbaf66b6, rgba(216, 213, 209, 0.8))\"},children:\"Webforge replaces expensive in-house AI teams and removes the risk for implementation projects.\"})}),className:\"framer-b28p73\",\"data-framer-name\":\"Subheading\",fonts:[\"FS;Satoshi-regular\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-182kdtz\",\"data-framer-name\":\"Testimonial + Features\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{__framer__styleTransformEffectEnabled:undefined,style:{}},xSFMhnjU5:{__framer__styleTransformEffectEnabled:undefined,style:{}}},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:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref5,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-dttu6r\",\"data-border\":true,\"data-framer-name\":\"Testimonial\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dn6j5z-container\",\"data-framer-name\":\"Border Shimmer\",isAuthoredByUser:true,isModuleExternal:true,name:\"Border Shimmer\",nodeId:\"w4LicEHIc\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(RotatingGradient,{gradientSize:300,height:\"100%\",id:\"w4LicEHIc\",layoutId:\"w4LicEHIc\",name:\"Border Shimmer\",rotationSpeed:11,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3sest4\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1e6h4uu\",\"data-framer-name\":\"Quote\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:30,intrinsicWidth:36,svg:'<svg width=\"36\" height=\"30\" viewBox=\"0 0 36 30\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M22.8838 27.6777C24.0264 28.9961 25.8721 29.6992 27.9814 29.6992C32.1123 29.6992 34.749 26.9746 34.749 22.7559C34.749 18.625 32.0244 15.6367 28.1572 15.6367C27.3662 15.6367 26.4873 15.8125 25.6084 16.0762C25.0811 9.48438 28.333 4.03516 32.7275 2.36523L32.2881 0.871094C24.7295 3.77148 19.9834 11.1543 19.9834 19.8555C19.9834 22.668 21.0381 25.7441 22.8838 27.6777ZM0.999023 19.8555C0.999023 24.6895 3.72363 29.6992 8.99707 29.6992C13.04 29.6992 15.6768 26.9746 15.6768 22.7559C15.6768 18.625 12.9521 15.6367 9.17285 15.6367C8.38184 15.6367 7.50293 15.8125 6.62402 16.0762C6.09668 9.48438 9.34863 4.03516 13.7432 2.36523L13.2158 0.871094C5.74512 3.77148 0.999023 11.1543 0.999023 19.8555Z\" fill=\"url(#paint0_linear_24_382)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_24_382\" x1=\"1.03729\" y1=\"0.871088\" x2=\"38.967\" y2=\"8.26893\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0.5\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsxs(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(4585deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.5) 100%)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"31px\"},children:\"I can't recommend Webforge enough. This is the most detailed process, with the most amazing exploratory questions for your company. \"}),/*#__PURE__*/_jsxs(\"span\",{style:{\"--framer-font-size\":\"31px\"},children:[/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{})]}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"31px\"},children:\"The forensics, analysis and assessments will leave you asking 'Why didn't we think of that?' Worth every penny if you want to explore AI-fying your company.\"})]})})}),className:\"framer-164614b\",\"data-framer-name\":\"Text\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-6qj68b\",\"data-framer-name\":\"Overlay\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ucolkf\",\"data-framer-name\":\"Overlay\",style:{rotate:180}})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1q29btr\",\"data-framer-name\":\"Overlay\"})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{__framer__styleTransformEffectEnabled:undefined,style:{}},xSFMhnjU5:{__framer__styleTransformEffectEnabled:undefined,style:{}}},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:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref5,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-t15uo1\",\"data-framer-name\":\"Benefits\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e09niz\",\"data-framer-name\":\"Feature\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1b8uunk\",\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-a7c35270-fa27-4776-adf2-21b4ff24d4ba, rgb(216, 213, 209))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(45deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.5) 100%)\"},children:\"Proven 7-Pillar AI Readiness Framework\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a7c35270-fa27-4776-adf2-21b4ff24d4ba, rgb(216, 213, 209))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(45deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.5) 100%)\"},children:\"Proven 7-Pillar AI Readiness Framework\"})})}),className:\"framer-vy1r5r\",\"data-framer-name\":\"Heading\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"center\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7azck2\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-1d62b255-7a1f-472b-a63a-43d2fbaf66b6, rgba(216, 213, 209, 0.8))\"},children:\"Our proprietary assessment methodology identifies exactly where AI can have the biggest impact on your business, eliminating guesswork and ensuring strategic alignment.\"})}),className:\"framer-y1lkyl\",\"data-framer-name\":\"Text\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cgy8wp\",\"data-framer-name\":\"Feature\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-v7kmku\",\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-a7c35270-fa27-4776-adf2-21b4ff24d4ba, rgb(216, 213, 209))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(45deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.5) 100%)\"},children:\"Expert Vendor Selection & Management\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a7c35270-fa27-4776-adf2-21b4ff24d4ba, rgb(216, 213, 209))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(45deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.5) 100%)\"},children:\"Expert Vendor Selection & Management\"})})}),className:\"framer-1vol4ih\",\"data-framer-name\":\"Heading\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"center\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cevalj\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-1d62b255-7a1f-472b-a63a-43d2fbaf66b6, rgba(216, 213, 209, 0.8))\"},children:\"We navigate the complex AI vendor landscape for you, recommending the right solutions and managing relationships to ensure you get maximum value without bias.\"})}),className:\"framer-6xlrda\",\"data-framer-name\":\"Text\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1osn1u8\",\"data-framer-name\":\"Feature\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ufk1mk\",\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-a7c35270-fa27-4776-adf2-21b4ff24d4ba, rgb(216, 213, 209))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(45deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.5) 100%)\"},children:\"Ethical AI Governance & Compliance\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a7c35270-fa27-4776-adf2-21b4ff24d4ba, rgb(216, 213, 209))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(45deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.5) 100%)\"},children:\"Ethical AI Governance & Compliance\"})})}),className:\"framer-o76hds\",\"data-framer-name\":\"Subscribe & request\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"center\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1a3rdvp\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--token-1d62b255-7a1f-472b-a63a-43d2fbaf66b6, rgba(216, 213, 209, 0.8))\"},children:\"We establish governance frameworks and compliance protocols to protect your business and employees from risks associated with AI implementation, including data privacy and regulatory requirements.\"})}),className:\"framer-184r68d\",\"data-framer-name\":\"Invite your entire team, so anyone can submit requests and track their progress.\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"center\",withExternalLayout:true})})]})]})})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1eqmuvl\",\"data-framer-name\":\"Pricing\",id:elementId5,ref:ref6,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ydrhd6\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(4082deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.5) 100%)\"},children:\"Plans that scale with you.\"})})})},xSFMhnjU5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(4082deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.5) 100%)\"},children:\"Plans that scale with you.\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(4082deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.5) 100%)\"},children:\"Plans that scale with you.\"})})}),className:\"framer-110suui\",\"data-framer-name\":\"Heading\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pp1p8b\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1d62b255-7a1f-472b-a63a-43d2fbaf66b6, rgba(216, 213, 209, 0.8))\"},children:\"Choose a plan that's right for you.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1d62b255-7a1f-472b-a63a-43d2fbaf66b6, rgba(216, 213, 209, 0.8))\"},children:\"Choose a plan that's right for you.\"})}),className:\"framer-1s4dyfd\",\"data-framer-name\":\"Subheading\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16bmfij\",\"data-framer-name\":\"Pricing Table\",children:[/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/JT8joSityXk39jtcsiii6Dbjb4.png\"},className:\"framer-1ytm0s5\",\"data-border\":true,\"data-framer-name\":\"Standard\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pnrml1\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1w7kyql\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"45px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(4082deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.5) 100%)\"},children:\"AI Navigator \"})})}),className:\"framer-1t7zglm\",\"data-framer-name\":\"Plan Title\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1d62b255-7a1f-472b-a63a-43d2fbaf66b6, rgba(216, 213, 209, 0.8))\"},children:\"AI Strategy & Implementation Planning\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1d62b255-7a1f-472b-a63a-43d2fbaf66b6, rgba(216, 213, 209, 0.8))\"},children:\"AI Strategy & Implementation Planning\"})}),className:\"framer-cvcu7q\",\"data-framer-name\":\"Description\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1eg88vi\",\"data-framer-name\":\"Divider\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-96aeyf\",\"data-framer-name\":\"Price\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-13375b9f-4436-4454-8e2f-e087d57f7eba, rgba(216, 213, 209, 0.8))\"},children:\"*3 Month Minimum Commitments.\"})}),className:\"framer-1qdoykf\",\"data-framer-name\":\"Byline\",fonts:[\"FS;Satoshi-regular\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yp72w\",\"data-framer-name\":\"Button + CTA\",children:[isDisplayed()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":CAU0XeMS_\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":CAU0XeMS_\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xSFMhnjU5:{width:\"419px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:\"341.33px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-t0zehh-container hidden-1n0tk8m\",\"data-framer-name\":\"Button\",name:\"Button\",nodeId:\"r2pirS5Bx\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xSFMhnjU5:{eKaJCD5ke:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(Button1,{ee7BPanBX:\"Contact Us\",eKaJCD5ke:resolvedLinks1[0],ganbFCIun:false,height:\"100%\",HQg2xVuQq:true,id:\"r2pirS5Bx\",iTUUBmGZY:\"Three\",layoutId:\"r2pirS5Bx\",name:\"Button\",style:{width:\"100%\"},UqXtTGf8R:\"Instagram\",variant:\"zma_MIwuC\",width:\"100%\"})})})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(Link,{href:{hash:\":CAU0XeMS_\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"ScNk8WHCh\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-c20rxj hidden-72rtr7 hidden-1ehords framer-lux5qc\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fote7i\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-gkq4wx\",\"data-border\":true,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1r1sg7g\",\"data-border\":true,\"data-framer-name\":\"withCursorFollow\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Contact Us\"})}),className:\"framer-1c2q52k\",fonts:[\"FS;Satoshi-bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1peqj7s\",\"data-framer-name\":\"Particles\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jlbqiw-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"kWlvdmT20\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Noise,{backgroundSize:128,borderRadius:4,height:\"100%\",id:\"kWlvdmT20\",layoutId:\"kWlvdmT20\",opacity:.1,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kdjjlx\",\"data-framer-name\":\"Features\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-13375b9f-4436-4454-8e2f-e087d57f7eba, rgba(216, 213, 209, 0.8))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"21px\"},children:\"What's included:\"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})]})}),className:\"framer-eth2vw\",\"data-framer-name\":\"Text\",fonts:[\"FS;Satoshi-medium\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cgw2nu\",\"data-framer-name\":\"Features\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{width:`max(${componentViewport?.width||\"100vw\"} - 96px, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,children:/*#__PURE__*/_jsx(Container,{className:\"framer-12kcyy2-container\",nodeId:\"E_baMRjY5\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Feature,{height:\"100%\",id:\"E_baMRjY5\",layoutId:\"E_baMRjY5\",width:\"100%\",zexjRzvBi:\"AI Readiness Pillar Assessments\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bzvn62-container\",nodeId:\"I5hy6BLsQ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Feature,{height:\"100%\",id:\"I5hy6BLsQ\",layoutId:\"I5hy6BLsQ\",width:\"100%\",zexjRzvBi:\"Complete 90-Day AI Roadmap\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kmnnj5-container\",nodeId:\"aHJuFFg9w\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Feature,{height:\"100%\",id:\"aHJuFFg9w\",layoutId:\"aHJuFFg9w\",width:\"100%\",zexjRzvBi:\"20+ Hours Monthly Consultation\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,children:/*#__PURE__*/_jsx(Container,{className:\"framer-17wsrp9-container\",nodeId:\"rwAzgtHbN\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Feature,{height:\"100%\",id:\"rwAzgtHbN\",layoutId:\"rwAzgtHbN\",width:\"100%\",zexjRzvBi:\"Minimum 3.7x ROI Identification\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,children:/*#__PURE__*/_jsx(Container,{className:\"framer-4wdh59-container\",nodeId:\"KzkUAyOC3\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Feature,{height:\"100%\",id:\"KzkUAyOC3\",layoutId:\"KzkUAyOC3\",width:\"100%\",zexjRzvBi:\"Senior AI Strategy Checklists\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nei81v-container\",nodeId:\"awMgXAvnw\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Feature,{height:\"100%\",id:\"awMgXAvnw\",layoutId:\"awMgXAvnw\",width:\"100%\",zexjRzvBi:\"Company Wide AI Integration Planning\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,children:/*#__PURE__*/_jsx(Container,{className:\"framer-hhvxid-container\",nodeId:\"U8CgFstDA\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Feature,{height:\"100%\",id:\"U8CgFstDA\",layoutId:\"U8CgFstDA\",width:\"100%\",zexjRzvBi:\"Company Wide AI Skill Assesments\"})})})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1iddz8z\",\"data-border\":true,\"data-framer-name\":\"Pro\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rhby8h\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gs6gu6\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"45px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(4082deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.5) 100%)\"},children:\"AI Integrator\"})})}),className:\"framer-sdxpjb\",\"data-framer-name\":\"Plan Title\",fonts:[\"FS;Satoshi-medium\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-13375b9f-4436-4454-8e2f-e087d57f7eba, rgba(216, 213, 209, 0.8))\"},children:\"Your Full Fractional AI Implementation Team\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-13375b9f-4436-4454-8e2f-e087d57f7eba, rgba(216, 213, 209, 0.8))\"},children:\"Your Full Fractional AI Implementation Team\"})}),className:\"framer-dxtq78\",\"data-framer-name\":\"Decription\",fonts:[\"FS;Satoshi-regular\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-5di115\",\"data-framer-name\":\"Divider\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ybk9gm\",\"data-framer-name\":\"Price\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-13375b9f-4436-4454-8e2f-e087d57f7eba, rgba(216, 213, 209, 0.8))\"},children:\"*6 & 12 Month Commitments.\"})}),className:\"framer-1j3ml54\",\"data-framer-name\":\"Byline\",fonts:[\"FS;Satoshi-regular\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qp8kcw hidden-1n0tk8m\",\"data-framer-name\":\"Button + CTA\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":CAU0XeMS_\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":CAU0XeMS_\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xSFMhnjU5:{width:\"416.6324px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:\"341.33px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-wu50sd-container\",nodeId:\"DnBXOT0ly\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xSFMhnjU5:{eKaJCD5ke:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(Button1,{ee7BPanBX:\"Contact Us\",eKaJCD5ke:resolvedLinks2[0],ganbFCIun:false,height:\"100%\",HQg2xVuQq:true,id:\"DnBXOT0ly\",iTUUBmGZY:\"Four\",layoutId:\"DnBXOT0ly\",style:{width:\"100%\"},UqXtTGf8R:\"Instagram\",variant:\"zma_MIwuC\",width:\"100%\"})})})})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(Link,{href:{hash:\":CAU0XeMS_\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"x2bwtocKw\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-4v8yw0 hidden-72rtr7 hidden-1ehords framer-lux5qc\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-wpmjxh\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-2jr0ab\",\"data-border\":true,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tju6u3\",\"data-border\":true,\"data-framer-name\":\"withCursorFollow\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Contact Us\"})}),className:\"framer-1cspvd4\",fonts:[\"FS;Satoshi-bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gm2t11\",\"data-framer-name\":\"Particles\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-sye3g2-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"x2bwtocKwZdExZiSJf\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Noise,{backgroundSize:128,borderRadius:4,height:\"100%\",id:\"x2bwtocKwZdExZiSJf\",layoutId:\"x2bwtocKwZdExZiSJf\",opacity:.1,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1st95zz\",\"data-framer-name\":\"Features\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-13375b9f-4436-4454-8e2f-e087d57f7eba, rgba(216, 213, 209, 0.8))\"},children:\"What's included:\"})}),className:\"framer-6q4aih\",\"data-framer-name\":\"Text\",fonts:[\"FS;Satoshi-medium\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-149kosq\",\"data-framer-name\":\"Features\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,children:/*#__PURE__*/_jsx(Container,{className:\"framer-mhfyt8-container\",nodeId:\"DJVq87Oyu\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Feature,{height:\"100%\",id:\"DJVq87Oyu\",layoutId:\"DJVq87Oyu\",width:\"100%\",zexjRzvBi:\"Everything in Standard, plus:\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1d0g9ua-container\",nodeId:\"oOtkbGt6O\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Feature,{height:\"100%\",id:\"oOtkbGt6O\",layoutId:\"oOtkbGt6O\",width:\"100%\",zexjRzvBi:\"40 Hours Monthly Development\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,children:/*#__PURE__*/_jsx(Container,{className:\"framer-gym4ge-container\",nodeId:\"uUVJ30_gK\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Feature,{height:\"100%\",id:\"uUVJ30_gK\",layoutId:\"uUVJ30_gK\",width:\"100%\",zexjRzvBi:\"Custom Education Workshops\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1v8r3nn-container\",nodeId:\"ud2Q80rDx\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Feature,{height:\"100%\",id:\"ud2Q80rDx\",layoutId:\"ud2Q80rDx\",width:\"100%\",zexjRzvBi:\"Implementation Management\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rcu4qc-container\",nodeId:\"qMu7wVIeG\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Feature,{height:\"100%\",id:\"qMu7wVIeG\",layoutId:\"qMu7wVIeG\",width:\"100%\",zexjRzvBi:\"24/7 Critical Support\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,children:/*#__PURE__*/_jsx(Container,{className:\"framer-mh0150-container\",nodeId:\"WsiBXwcVh\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Feature,{height:\"100%\",id:\"WsiBXwcVh\",layoutId:\"WsiBXwcVh\",width:\"100%\",zexjRzvBi:\"Weekly Strategy Sessions & Updates\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tlrx14-container\",nodeId:\"V_N_CUdHt\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Feature,{height:\"100%\",id:\"V_N_CUdHt\",layoutId:\"V_N_CUdHt\",width:\"100%\",zexjRzvBi:\"Risk & Compliance Guidance\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,children:/*#__PURE__*/_jsx(Container,{className:\"framer-z32fm1-container\",nodeId:\"TyUbb_tJj\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Feature,{height:\"100%\",id:\"TyUbb_tJj\",layoutId:\"TyUbb_tJj\",width:\"100%\",zexjRzvBi:\"AI Team, Fraction of the Cost\"})})})]})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e3mjxb\",\"data-framer-name\":\"Actions\",children:[/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/uSYbiVaGgUDjb0GGXbkHhgN4ZI.png\"},className:\"framer-lnxc26\",\"data-border\":true,\"data-framer-name\":\"Book a call\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e5qww3\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-k24lvu\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vq39uv\",\"data-framer-name\":\"Icon\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-mavazo\",\"data-border\":true,\"data-framer-name\":\"Circle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1utcto8\",\"data-framer-name\":\"Phone\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1edd0o9\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:39,intrinsicWidth:38,svg:'<svg width=\"38\" height=\"39\" viewBox=\"-1 -1 38 39\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M21.2469 7.75C22.9562 8.08349 24.5271 8.91945 25.7585 10.1509C26.9899 11.3823 27.8259 12.9532 28.1594 14.6625M21.2469 0.75C24.7981 1.14451 28.1097 2.73481 30.6378 5.25976C33.1659 7.78472 34.7604 11.0943 35.1594 14.645M14.5566 21.5104C12.4538 19.4076 10.7935 17.03 9.57546 14.4932C9.47069 14.2749 9.41831 14.1658 9.37806 14.0278C9.23505 13.5372 9.33777 12.9347 9.63529 12.5192C9.71902 12.4023 9.81904 12.3023 10.0191 12.1022C10.6309 11.4904 10.9368 11.1845 11.1368 10.8769C11.891 9.71683 11.891 8.22131 11.1368 7.06126C10.9368 6.75364 10.6309 6.44774 10.0191 5.83593L9.67806 5.49491C8.74804 4.56488 8.28303 4.09987 7.78361 3.84727C6.79038 3.34489 5.61741 3.34489 4.62418 3.84727C4.12477 4.09987 3.65975 4.56488 2.72973 5.49491L2.45387 5.77077C1.52703 6.69761 1.06361 7.16103 0.709674 7.79108C0.316938 8.49022 0.0345548 9.57608 0.0369413 10.378C0.0390906 11.1006 0.179273 11.5945 0.459635 12.5823C1.96633 17.8907 4.80916 22.8999 8.98813 27.0788C13.1671 31.2578 18.1762 34.1006 23.4847 35.6073C24.4724 35.8877 24.9663 36.0279 25.689 36.03C26.4909 36.0324 27.5767 35.75 28.2759 35.3573C28.9059 35.0034 29.3694 34.5399 30.2962 33.6131L30.5721 33.3372C31.5021 32.4072 31.9671 31.9422 32.2197 31.4428C32.7221 30.4495 32.7221 29.2766 32.2197 28.2834C31.9671 27.7839 31.5021 27.3189 30.5721 26.3889L30.231 26.0479C29.6192 25.4361 29.3133 25.1302 29.0057 24.9302C27.8457 24.1759 26.3501 24.1759 25.1901 24.9302C24.8825 25.1302 24.5766 25.4361 23.9647 26.0479C23.7647 26.2479 23.6647 26.3479 23.5478 26.4317C23.1323 26.7292 22.5298 26.8319 22.0392 26.6889C21.9011 26.6487 21.792 26.5963 21.5738 26.4915C19.037 25.2735 16.6594 23.6131 14.5566 21.5104Z\" stroke=\"#D8D5D1\" stroke-width=\"1.75\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qd89rh\",\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(4082deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.5) 100%)\"},children:\"Book a call\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(4082deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.5) 100%)\"},children:\"Book a call\"})})}),className:\"framer-7lotk6\",\"data-framer-name\":\"Heading\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jmcfgi\",\"data-framer-name\":\"Subheading\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-1d62b255-7a1f-472b-a63a-43d2fbaf66b6, rgba(216, 213, 209, 0.8))\"},children:\"Find out if Webforge is the perfect fit for your AI adoption pathway.\"})}),className:\"framer-18wcdwf\",\"data-framer-name\":\"Subheading\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"center\",withExternalLayout:true})})]}),isDisplayed()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":CAU0XeMS_\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":CAU0XeMS_\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xSFMhnjU5:{width:\"415px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:\"339px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-19wxej1-container hidden-1n0tk8m\",nodeId:\"g70rvdCJA\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xSFMhnjU5:{eKaJCD5ke:resolvedLinks3[1]}},children:/*#__PURE__*/_jsx(Button1,{ee7BPanBX:\"Book a call\",eKaJCD5ke:resolvedLinks3[0],ganbFCIun:true,height:\"100%\",HQg2xVuQq:true,id:\"g70rvdCJA\",iTUUBmGZY:\"Five\",layoutId:\"g70rvdCJA\",style:{width:\"100%\"},UqXtTGf8R:\"Book\",variant:\"zma_MIwuC\",width:\"100%\"})})})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(Link,{href:{hash:\":CAU0XeMS_\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"xgO7Iv7dd\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-mymqjf hidden-72rtr7 hidden-1ehords framer-lux5qc\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1iv9rv5\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1862ju\",\"data-border\":true,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4918b8\",\"data-border\":true,\"data-framer-name\":\"withCursorFollow\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Contact Us\"})}),className:\"framer-14y3wqh\",fonts:[\"FS;Satoshi-bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-zxffme\",\"data-framer-name\":\"Particles\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lk7lwf-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"OdNHHPgqm\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Noise,{backgroundSize:128,borderRadius:4,height:\"100%\",id:\"OdNHHPgqm\",layoutId:\"OdNHHPgqm\",opacity:.1,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/uSYbiVaGgUDjb0GGXbkHhgN4ZI.png\"},className:\"framer-1ak2ops\",\"data-border\":true,\"data-framer-name\":\"Refer a friend\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-fhzroc\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n36r15\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mae4\",\"data-framer-name\":\"Icon\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1sqabzx\",\"data-border\":true,\"data-framer-name\":\"Circle\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19duoeu\",\"data-framer-name\":\"bank-note-01\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-a8oud4\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:31,intrinsicWidth:38,svg:'<svg width=\"38\" height=\"31\" viewBox=\"-1 -1 38 31\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M7.15997 12.75V19.75M28.16 9.25V16.25M26.41 0.5C30.6952 0.5 33.013 1.15583 34.1662 1.66452C34.3198 1.73227 34.3965 1.76614 34.6182 1.97765C34.751 2.10443 34.9935 2.47644 35.0559 2.64915C35.16 2.93729 35.16 3.09479 35.16 3.4098V22.2195C35.16 23.8098 35.16 24.605 34.9215 25.0137C34.6789 25.4295 34.4449 25.6228 33.9909 25.7826C33.5445 25.9397 32.6434 25.7665 30.8413 25.4203C29.5799 25.1779 28.0839 25 26.41 25C21.16 25 15.91 28.5 8.90997 28.5C4.62473 28.5 2.30699 27.8442 1.15377 27.3355C1.00019 27.2677 0.923399 27.2339 0.701773 27.0223C0.568924 26.8956 0.326429 26.5236 0.264045 26.3508C0.159973 26.0627 0.159973 25.9052 0.159973 25.5902L0.159974 6.78049C0.159974 5.19015 0.159974 4.39498 0.39846 3.98625C0.641051 3.57049 0.875007 3.3772 1.32908 3.21742C1.77546 3.06034 2.67653 3.23347 4.47867 3.57973C5.74005 3.82209 7.23606 4 8.90997 4C14.16 4 19.41 0.5 26.41 0.5ZM22.035 14.5C22.035 16.9162 20.0762 18.875 17.66 18.875C15.2437 18.875 13.285 16.9162 13.285 14.5C13.285 12.0838 15.2437 10.125 17.66 10.125C20.0762 10.125 22.035 12.0838 22.035 14.5Z\" stroke=\"#D8D5D1\" stroke-width=\"1.75\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-jixb2f\",\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(4082deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.5) 100%)\"},children:\"Refer a friend & earn\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(4082deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.5) 100%)\"},children:\"Refer a friend & earn\"})})}),className:\"framer-3y2mcp\",\"data-framer-name\":\"Heading\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1e5o8yb\",\"data-framer-name\":\"Subheading\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1d62b255-7a1f-472b-a63a-43d2fbaf66b6, rgba(216, 213, 209, 0.8))\"},children:\"Earn 10% recurring commission for each referral.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1d62b255-7a1f-472b-a63a-43d2fbaf66b6, rgba(216, 213, 209, 0.8))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1d62b255-7a1f-472b-a63a-43d2fbaf66b6, rgba(216, 213, 209, 0.8))\"},children:\"Email Us: admin@webforgedevelopment.tech\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-1d62b255-7a1f-472b-a63a-43d2fbaf66b6, rgba(216, 213, 209, 0.8))\"},children:\"Earn 10% recurring commission for each referral.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-1d62b255-7a1f-472b-a63a-43d2fbaf66b6, rgba(216, 213, 209, 0.8))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--token-1d62b255-7a1f-472b-a63a-43d2fbaf66b6, rgba(216, 213, 209, 0.8))\"},children:\"Email Us: admin@webforgedevelopment.tech\"})]}),className:\"framer-1so2di7\",\"data-framer-name\":\"Subheading\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"center\",withExternalLayout:true})})})]})})})]})]})]})]})}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-1cp58ym\",\"data-framer-name\":\"Discovery Call\",id:elementId6,ref:ref7,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsxs(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(4082deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.5) 100%)\"},children:[\"Book A Discovery \",/*#__PURE__*/_jsx(\"br\",{}),\"Call Today\"]})})})},xSFMhnjU5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsxs(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(4082deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.5) 100%)\"},children:[\"Book A Discovery \",/*#__PURE__*/_jsx(\"br\",{}),\"Call Today\"]})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsxs(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(4082deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.5) 100%)\"},children:[\"Book A Discovery \",/*#__PURE__*/_jsx(\"br\",{}),\"Call Today\"]})})}),className:\"framer-1hp8isd\",\"data-framer-name\":\"Heading\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-lwq5kz\",\"data-framer-name\":\"Add-On\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1472yq1-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Dh1rmruGA\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{style:{height:\"100%\",width:\"100%\"}},xSFMhnjU5:{style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<div style=\"width:100%;height:500px;\" data-fillout-id=\"fVcnsGXmCgus\" data-fillout-embed-type=\"standard\" data-fillout-inherit-parameters data-fillout-dynamic-resize></div><script src=\"https://server.fillout.com/embed/v1/\"></script>',id:\"Dh1rmruGA\",layoutId:\"Dh1rmruGA\",style:{width:\"100%\"},type:\"html\",url:\"https://webforge.fillout.com/ai-discovery-call\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-thufyz\",\"data-framer-name\":\"Work\",id:elementId7,ref:ref8,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1k323vb\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(4082deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.5) 100%)\"},children:\"Let our work do the talking.\"})})})},xSFMhnjU5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(4082deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.5) 100%)\"},children:\"Let our work do the talking.\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(4082deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.5) 100%)\"},children:\"Let our work do the talking.\"})})}),className:\"framer-1hzkw5h\",\"data-framer-name\":\"Heading\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s38alp\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8iypgz\",\"data-framer-name\":\"image Gallery\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{background:{alt:\"Example Work\",fit:\"fill\",pixelHeight:2245,pixelWidth:1587,sizes:\"341px\",src:\"https://framerusercontent.com/images/5EKpxKpWNNPoJJEGmxCqR9yR4c.png\",srcSet:\"https://framerusercontent.com/images/5EKpxKpWNNPoJJEGmxCqR9yR4c.png?scale-down-to=1024 723w,https://framerusercontent.com/images/5EKpxKpWNNPoJJEGmxCqR9yR4c.png?scale-down-to=2048 1447w,https://framerusercontent.com/images/5EKpxKpWNNPoJJEGmxCqR9yR4c.png 1587w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Example Work\",fit:\"fill\",pixelHeight:2245,pixelWidth:1587,sizes:\"593px\",src:\"https://framerusercontent.com/images/5EKpxKpWNNPoJJEGmxCqR9yR4c.png\",srcSet:\"https://framerusercontent.com/images/5EKpxKpWNNPoJJEGmxCqR9yR4c.png?scale-down-to=1024 723w,https://framerusercontent.com/images/5EKpxKpWNNPoJJEGmxCqR9yR4c.png?scale-down-to=2048 1447w,https://framerusercontent.com/images/5EKpxKpWNNPoJJEGmxCqR9yR4c.png 1587w\"},className:\"framer-1x7xne0\",\"data-framer-name\":\"Mockup\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{background:{alt:\"Example Work\",fit:\"fill\",intrinsicHeight:2700,intrinsicWidth:2160,pixelHeight:2245,pixelWidth:1587,sizes:\"339.8262px\",src:\"https://framerusercontent.com/images/mp7OSqOi3eaKJryfZo9ybleU.png\",srcSet:\"https://framerusercontent.com/images/mp7OSqOi3eaKJryfZo9ybleU.png?scale-down-to=1024 723w,https://framerusercontent.com/images/mp7OSqOi3eaKJryfZo9ybleU.png?scale-down-to=2048 1447w,https://framerusercontent.com/images/mp7OSqOi3eaKJryfZo9ybleU.png 1587w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Example Work\",fit:\"fill\",intrinsicHeight:2700,intrinsicWidth:2160,pixelHeight:2245,pixelWidth:1587,sizes:\"595.6953px\",src:\"https://framerusercontent.com/images/mp7OSqOi3eaKJryfZo9ybleU.png\",srcSet:\"https://framerusercontent.com/images/mp7OSqOi3eaKJryfZo9ybleU.png?scale-down-to=1024 723w,https://framerusercontent.com/images/mp7OSqOi3eaKJryfZo9ybleU.png?scale-down-to=2048 1447w,https://framerusercontent.com/images/mp7OSqOi3eaKJryfZo9ybleU.png 1587w\"},className:\"framer-1wj30kn\",\"data-framer-name\":\"Mockup\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-t4w3td\",\"data-framer-name\":\"Subheading & Button\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1d62b255-7a1f-472b-a63a-43d2fbaf66b6, rgba(216, 213, 209, 0.8))\"},children:\"Webforge delivers fast, actionable, and revenue generating strategies that have an immediate positive impact.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1d62b255-7a1f-472b-a63a-43d2fbaf66b6, rgba(216, 213, 209, 0.8))\"},children:\"Webforge delivers fast, actionable, and revenue generating strategies that have an immediate positive impact.\"})}),className:\"framer-v1cxp2\",\"data-framer-name\":\"Subheading\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":CAU0XeMS_\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":CAU0XeMS_\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":CAU0XeMS_\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:\"183px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-6rtcls-container\",nodeId:\"Un6Xj8N_I\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{eKaJCD5ke:resolvedLinks4[2]},xSFMhnjU5:{eKaJCD5ke:resolvedLinks4[1]}},children:/*#__PURE__*/_jsx(Button1,{ee7BPanBX:\"Book A Call\",eKaJCD5ke:resolvedLinks4[0],ganbFCIun:true,height:\"100%\",HQg2xVuQq:true,id:\"Un6Xj8N_I\",iTUUBmGZY:\"Two\",layoutId:\"Un6Xj8N_I\",style:{width:\"100%\"},UqXtTGf8R:\"Instagram\",variant:\"ncndWlIOY\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-djhxzb\",\"data-framer-name\":\"Logos\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(4082deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.5) 100%)\"},children:\"Proudly Partnered With\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"46px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(4082deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.5) 100%)\"},children:\"Proudly Partnered With\"})})}),className:\"framer-1rhx2j\",\"data-framer-name\":\"Designs commonly featured on\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hocwsd hidden-1ehords\",\"data-framer-name\":\"Logos\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:85,intrinsicWidth:300,pixelHeight:85,pixelWidth:300,src:\"https://framerusercontent.com/images/feIj8vUeUTXTNLC5ph3YIL6fvZc.png\"},className:\"framer-ca9bth\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:26,intrinsicWidth:153,pixelHeight:243,pixelWidth:1333,sizes:\"235.3846px\",src:\"https://framerusercontent.com/images/lenSMQUwCKtTFtAYfK6ebAGog.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/lenSMQUwCKtTFtAYfK6ebAGog.png?scale-down-to=512 512w,https://framerusercontent.com/images/lenSMQUwCKtTFtAYfK6ebAGog.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/lenSMQUwCKtTFtAYfK6ebAGog.png 1333w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:26,intrinsicWidth:153,pixelHeight:243,pixelWidth:1333,sizes:\"268px\",src:\"https://framerusercontent.com/images/lenSMQUwCKtTFtAYfK6ebAGog.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/lenSMQUwCKtTFtAYfK6ebAGog.png?scale-down-to=512 512w,https://framerusercontent.com/images/lenSMQUwCKtTFtAYfK6ebAGog.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/lenSMQUwCKtTFtAYfK6ebAGog.png 1333w\"},className:\"framer-1ko0q85\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:25,intrinsicWidth:158,pixelHeight:1513,pixelWidth:5263,sizes:\"252.8px\",src:\"https://framerusercontent.com/images/IAQb43awAz3U9PQlVekCxrC2V8.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/IAQb43awAz3U9PQlVekCxrC2V8.svg?scale-down-to=512 512w,https://framerusercontent.com/images/IAQb43awAz3U9PQlVekCxrC2V8.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/IAQb43awAz3U9PQlVekCxrC2V8.svg?scale-down-to=2048 2048w,https://framerusercontent.com/images/IAQb43awAz3U9PQlVekCxrC2V8.svg?scale-down-to=4096 4096w,https://framerusercontent.com/images/IAQb43awAz3U9PQlVekCxrC2V8.svg 5263w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:25,intrinsicWidth:158,pixelHeight:1513,pixelWidth:5263,sizes:\"341px\",src:\"https://framerusercontent.com/images/IAQb43awAz3U9PQlVekCxrC2V8.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/IAQb43awAz3U9PQlVekCxrC2V8.svg?scale-down-to=512 512w,https://framerusercontent.com/images/IAQb43awAz3U9PQlVekCxrC2V8.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/IAQb43awAz3U9PQlVekCxrC2V8.svg?scale-down-to=2048 2048w,https://framerusercontent.com/images/IAQb43awAz3U9PQlVekCxrC2V8.svg?scale-down-to=4096 4096w,https://framerusercontent.com/images/IAQb43awAz3U9PQlVekCxrC2V8.svg 5263w\"},className:\"framer-zp3tih\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:32,intrinsicWidth:116,pixelHeight:314,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:\"145px\",src:\"https://framerusercontent.com/images/zpFtSBNLFTNt3ogYRec2XWLeA.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/zpFtSBNLFTNt3ogYRec2XWLeA.png?scale-down-to=512 512w,https://framerusercontent.com/images/zpFtSBNLFTNt3ogYRec2XWLeA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zpFtSBNLFTNt3ogYRec2XWLeA.png 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:32,intrinsicWidth:116,pixelHeight:314,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:\"241px\",src:\"https://framerusercontent.com/images/zpFtSBNLFTNt3ogYRec2XWLeA.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/zpFtSBNLFTNt3ogYRec2XWLeA.png?scale-down-to=512 512w,https://framerusercontent.com/images/zpFtSBNLFTNt3ogYRec2XWLeA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zpFtSBNLFTNt3ogYRec2XWLeA.png 1920w\"},className:\"framer-1oj0p9b\",\"data-framer-name\":\"Image\"})})]})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jzrk1s hidden-72rtr7 hidden-1n0tk8m\",\"data-framer-name\":\"Logos\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:26,intrinsicWidth:153,pixelHeight:26,pixelWidth:153,src:\"https://framerusercontent.com/images/sqS2yaOiaQ2Oq7DBdD0FwRJhA.png\"},className:\"framer-1m4vuju\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:85,intrinsicWidth:300,pixelHeight:85,pixelWidth:300,src:\"https://framerusercontent.com/images/feIj8vUeUTXTNLC5ph3YIL6fvZc.png\"},className:\"framer-39vmdx\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:25,intrinsicWidth:158,pixelHeight:25,pixelWidth:158,src:\"https://framerusercontent.com/images/wpOnM505zFDtxOkYkoMlsXoUoE.png\"},className:\"framer-1kd7ma8\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:32,intrinsicWidth:116,pixelHeight:32,pixelWidth:116,src:\"https://framerusercontent.com/images/b2d5K8hzOGmCURUPtcxBgr5XaI.png\"},className:\"framer-1if22cd\",\"data-framer-name\":\"Image\"})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1l3j4ll\",\"data-framer-name\":\"FAQs\",id:elementId8,ref:ref9,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ng721y\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{__framer__styleTransformEffectEnabled:undefined,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(4082deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.5) 100%)\"},children:\"FAQs\"})})}),style:{}},xSFMhnjU5:{__framer__styleTransformEffectEnabled:undefined,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(4082deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.5) 100%)\"},children:\"FAQs\"})})}),style:{}}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__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:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref9,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(4082deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.5) 100%)\"},children:\"FAQs\"})})}),className:\"framer-agsp8y\",\"data-framer-name\":\"Heading\",fonts:[\"FS;Satoshi-medium\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4u0j57\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{__framer__styleTransformEffectEnabled:undefined,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1d62b255-7a1f-472b-a63a-43d2fbaf66b6, rgba(216, 213, 209, 0.8))\"},children:\"We appreciate that we we do things differently than what you've seen before, so we know you have questions. We've done our best to answer the most common ones here.\"})}),style:{}},xSFMhnjU5:{__framer__styleTransformEffectEnabled:undefined,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1d62b255-7a1f-472b-a63a-43d2fbaf66b6, rgba(216, 213, 209, 0.8))\"},children:\"We appreciate that we might do things differently than what you've seen before, so we know you have questions. We've done our best to answer the most common ones here.\"})}),style:{}}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__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:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref9,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1d62b255-7a1f-472b-a63a-43d2fbaf66b6, rgba(216, 213, 209, 0.8))\"},children:\"We appreciate that we we do things differently than what you've seen before, so we know you have questions. We've done our best to answer the most common ones here.\"})}),className:\"framer-afgjrv\",\"data-framer-name\":\"Subheading\",fonts:[\"FS;Satoshi-regular\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 859px)`},xSFMhnjU5:{width:\"682px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1010,width:\"859px\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{__framer__styleTransformEffectEnabled:undefined,style:{}},xSFMhnjU5:{__framer__styleTransformEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__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:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref9,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1pbqb5s-container\",nodeId:\"YMVhkrayI\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Accordion,{height:\"100%\",id:\"YMVhkrayI\",layoutId:\"YMVhkrayI\",style:{maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xxovoc\",\"data-framer-name\":\"CTA\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{style:{}},xSFMhnjU5:{style:{}}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__perspectiveFX:false,__targetOpacity:.25,className:\"framer-11e05db-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"XAkyqe5Lm\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"XAkyqe5Lm\",isMixedBorderRadius:false,layoutId:\"XAkyqe5Lm\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/Ji57Ag3HAMoPzUpO2zO0v93mBqg.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{background:{alt:\"Webforge AI Logo\",fit:\"fit\",intrinsicHeight:38,intrinsicWidth:231,pixelHeight:646,pixelWidth:4281,positionX:\"center\",positionY:\"center\",sizes:\"147.1579px\",src:\"https://framerusercontent.com/images/rAwm94J9LDTqOtOIeJZt7411lgM.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/rAwm94J9LDTqOtOIeJZt7411lgM.png?scale-down-to=512 512w,https://framerusercontent.com/images/rAwm94J9LDTqOtOIeJZt7411lgM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/rAwm94J9LDTqOtOIeJZt7411lgM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/rAwm94J9LDTqOtOIeJZt7411lgM.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/rAwm94J9LDTqOtOIeJZt7411lgM.png 4281w\"}},xSFMhnjU5:{background:{alt:\"Webforge AI Logo\",fit:\"fit\",intrinsicHeight:38,intrinsicWidth:231,pixelHeight:646,pixelWidth:4281,positionX:\"center\",positionY:\"center\",sizes:\"190.0789px\",src:\"https://framerusercontent.com/images/rAwm94J9LDTqOtOIeJZt7411lgM.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/rAwm94J9LDTqOtOIeJZt7411lgM.png?scale-down-to=512 512w,https://framerusercontent.com/images/rAwm94J9LDTqOtOIeJZt7411lgM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/rAwm94J9LDTqOtOIeJZt7411lgM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/rAwm94J9LDTqOtOIeJZt7411lgM.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/rAwm94J9LDTqOtOIeJZt7411lgM.png 4281w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__perspectiveFX:false,__targetOpacity:1,background:{alt:\"Webforge AI Logo\",fit:\"fit\",intrinsicHeight:38,intrinsicWidth:231,pixelHeight:646,pixelWidth:4281,positionX:\"center\",positionY:\"center\",sizes:\"330px\",src:\"https://framerusercontent.com/images/rAwm94J9LDTqOtOIeJZt7411lgM.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/rAwm94J9LDTqOtOIeJZt7411lgM.png?scale-down-to=512 512w,https://framerusercontent.com/images/rAwm94J9LDTqOtOIeJZt7411lgM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/rAwm94J9LDTqOtOIeJZt7411lgM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/rAwm94J9LDTqOtOIeJZt7411lgM.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/rAwm94J9LDTqOtOIeJZt7411lgM.png 4281w\"},className:\"framer-w68w2g\",\"data-framer-name\":\"Logo\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(4082deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.5) 100%)\"},children:\"Open the doors to new opportunities with a future-proofed look on reshaping your business.\"})})}),style:{}},xSFMhnjU5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(4082deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.5) 100%)\"},children:\"Open the doors to new opportunities with a future-proofed look on reshaping your business.\"})})}),style:{}}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(4082deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.5) 100%)\"},children:\"Open the doors to new opportunities with a future-proofed look on reshaping your business.\"})})}),className:\"framer-z7yvmf\",\"data-framer-name\":\"Experience the future of design.\",fonts:[\"FS;Satoshi-medium\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{style:{}},xSFMhnjU5:{style:{}}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__targetOpacity:1,className:\"framer-ubj170\",\"data-framer-name\":\"Button\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":CAU0XeMS_\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":CAU0XeMS_\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":CAU0XeMS_\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,children:/*#__PURE__*/_jsx(Container,{className:\"framer-12kx465-container\",nodeId:\"rdSkUksWp\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{eKaJCD5ke:resolvedLinks5[2]},xSFMhnjU5:{eKaJCD5ke:resolvedLinks5[1]}},children:/*#__PURE__*/_jsx(Button1,{ee7BPanBX:\"Book A Call\",eKaJCD5ke:resolvedLinks5[0],ganbFCIun:false,height:\"100%\",HQg2xVuQq:true,id:\"rdSkUksWp\",iTUUBmGZY:\"Eight\",layoutId:\"rdSkUksWp\",UqXtTGf8R:\"Instagram\",variant:\"ncndWlIOY\",width:\"100%\"})})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1d62b255-7a1f-472b-a63a-43d2fbaf66b6, rgba(216, 213, 209, 0.8))\"},children:\"We're ready to get started, just say the word.\"})}),style:{}},xSFMhnjU5:{style:{}}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1d62b255-7a1f-472b-a63a-43d2fbaf66b6, rgba(216, 213, 209, 0.8))\"},children:\"We're ready to get started, just say the word.\"})}),className:\"framer-2wkj4y\",\"data-framer-name\":\"The design subscription service that\u2019s taking the design world by storm.\",fonts:[\"FS;Satoshi-regular\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ksoax8\",\"data-framer-name\":\"Footer\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1k1y4f1\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ceh1oe\",\"data-framer-name\":\"Content\",children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-uclewy hidden-1n0tk8m\",\"data-framer-name\":\"Left\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xSFMhnjU5:{background:{alt:\"Webforge AI Logo\",fit:\"fit\",intrinsicHeight:38,intrinsicWidth:231,pixelHeight:45,pixelWidth:300,positionX:\"center\",positionY:\"center\",sizes:\"190.0789px\",src:\"https://framerusercontent.com/images/5KQimGaw4pOuI4ueWWVdeymtGFg.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/5KQimGaw4pOuI4ueWWVdeymtGFg.svg?scale-down-to=512 512w,https://framerusercontent.com/images/5KQimGaw4pOuI4ueWWVdeymtGFg.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/5KQimGaw4pOuI4ueWWVdeymtGFg.svg 1069w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__perspectiveFX:false,__targetOpacity:1,background:{alt:\"Webforge AI Logo\",fit:\"fit\",intrinsicHeight:38,intrinsicWidth:231,pixelHeight:45,pixelWidth:300,positionX:\"center\",positionY:\"center\",sizes:\"271px\",src:\"https://framerusercontent.com/images/5KQimGaw4pOuI4ueWWVdeymtGFg.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/5KQimGaw4pOuI4ueWWVdeymtGFg.svg?scale-down-to=512 512w,https://framerusercontent.com/images/5KQimGaw4pOuI4ueWWVdeymtGFg.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/5KQimGaw4pOuI4ueWWVdeymtGFg.svg 1069w\"},className:\"framer-18qxfkk\",\"data-framer-name\":\"Logo\",style:{transformPerspective:1200}})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-x3g3aj\",\"data-framer-name\":\"Right\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o6ntg3\",\"data-framer-name\":\"Social Links\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:82,width:\"71.4px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-de7le3-container\",nodeId:\"gVup5NM79\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SocialButton,{A05ntVEMU:\"https://www.linkedin.com/company/webforge-development/?viewAsMember=true\",height:\"100%\",id:\"gVup5NM79\",L6yNMseIU:true,layoutId:\"gVup5NM79\",sa6KXxU5R:\"LinkedIn\",style:{height:\"100%\",width:\"100%\"},variant:\"Ux0PyCxvN\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:82,width:\"71.4px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-8d8ocq-container\",nodeId:\"LHe0ALYWN\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SocialButton,{A05ntVEMU:\"https://www.youtube.com/@TheFoundersForge_\",height:\"100%\",id:\"LHe0ALYWN\",L6yNMseIU:true,layoutId:\"LHe0ALYWN\",sa6KXxU5R:\"YouTube\",style:{height:\"100%\",width:\"100%\"},variant:\"Ux0PyCxvN\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:\"54px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-ymlpoo-container\",nodeId:\"DgN_CWiXc\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SocialButton,{A05ntVEMU:\"https://www.instagram.com/webforge_ai?igsh=bWxtejd0c3hpcnY1\",height:\"100%\",id:\"DgN_CWiXc\",L6yNMseIU:true,layoutId:\"DgN_CWiXc\",sa6KXxU5R:\"Instagram\",style:{height:\"100%\",width:\"100%\"},variant:\"Ux0PyCxvN\",width:\"100%\"})})})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1i3irx6\",\"data-framer-name\":\"Divider\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-efkbzv\",\"data-framer-name\":\"Bottom\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1d62b255-7a1f-472b-a63a-43d2fbaf66b6, rgba(216, 213, 209, 0.8))\"},children:\"\\xa9 2025 Webforge Development. All rights reserved.\"})})},xSFMhnjU5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1d62b255-7a1f-472b-a63a-43d2fbaf66b6, rgba(216, 213, 209, 0.8))\"},children:\"\\xa9 2025 Webforge Development. All rights reserved.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1d62b255-7a1f-472b-a63a-43d2fbaf66b6, rgba(216, 213, 209, 0.8))\"},children:\"\\xa9 2025 Webforge Development. All rights reserved.\"})}),className:\"framer-1ftm5p1\",\"data-framer-name\":\"\\xa9 2023 Kairo. All rights reserved.\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"center\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vx828e hidden-1n0tk8m\",\"data-framer-name\":\"Links\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JXMPRkVjQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1d62b255-7a1f-472b-a63a-43d2fbaf66b6, rgba(216, 213, 209, 0.8))\"},children:\"Email - admin@webforgedevelopment.tech\"})})},xSFMhnjU5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-1d62b255-7a1f-472b-a63a-43d2fbaf66b6, rgba(216, 213, 209, 0.8))\"},children:\"Email - admin@webforgedevelopment.tech\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-1d62b255-7a1f-472b-a63a-43d2fbaf66b6, rgba(216, 213, 209, 0.8))\"},children:\"Email - admin@webforgedevelopment.tech\"})}),className:\"framer-1rfc8iv\",\"data-framer-name\":\"\\xa9 2023 Kairo. All rights reserved.\",fonts:[\"FS;Satoshi-regular\"],verticalAlignment:\"center\",withExternalLayout:true})})]})]})})]})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-jSNoe.framer-lux5qc, .framer-jSNoe .framer-lux5qc { display: block; }\",\".framer-jSNoe.framer-72rtr7 { align-content: center; align-items: center; background-color: #010208; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1440px; }\",\".framer-jSNoe .framer-1is7gum-container { bottom: 19px; flex: none; height: auto; left: 50%; position: fixed; transform: translateX(-50%); width: auto; z-index: 10; }\",\".framer-jSNoe .framer-5d3nf5 { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-jSNoe .framer-190udz3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 3500px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-jSNoe .framer-1iyoh2c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 100vh; justify-content: center; overflow: hidden; padding: 0px; position: sticky; top: 0px; width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-jSNoe .framer-17vx0p5-container { bottom: 0px; flex: none; left: 0px; opacity: 0.35; position: absolute; top: 0px; width: 100%; z-index: 0; }\",\".framer-jSNoe .framer-tf8tzk { background-color: var(--token-3becceca-d213-4853-b7f6-4fa13665335c, #010208); bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: -1; }\",\".framer-jSNoe .framer-1gxkxjd { flex: none; height: 38px; overflow: visible; position: relative; width: 233px; }\",\".framer-jSNoe .framer-1ked844 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-jSNoe .framer-8oegii { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-jSNoe .framer-1csmffs { flex: none; height: auto; max-width: 1000px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-jSNoe .framer-1xm5nks { --framer-paragraph-spacing: 24px; flex: none; height: auto; max-width: 600px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-jSNoe .framer-1scn0yo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; z-index: 1; }\",\".framer-jSNoe .framer-1aqvz0z-container, .framer-jSNoe .framer-12kx465-container { flex: none; height: auto; position: relative; width: auto; z-index: 1; }\",\".framer-jSNoe .framer-1r5ytmi { align-content: center; align-items: center; background-color: var(--token-fab76ef7-771e-4cf6-97cc-48deee26da02, #010208); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 3500px; justify-content: flex-start; left: 0px; overflow: visible; padding: 0px; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-jSNoe .framer-fdpq90 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 100vh; justify-content: center; overflow: hidden; padding: 0px; position: sticky; top: 0px; width: 1440px; z-index: 1; }\",\".framer-jSNoe .framer-1kiiq0s { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-jSNoe .framer-va5dz9, .framer-jSNoe .framer-cvcu7q, .framer-jSNoe .framer-1qdoykf, .framer-jSNoe .framer-eth2vw, .framer-jSNoe .framer-dxtq78, .framer-jSNoe .framer-1j3ml54, .framer-jSNoe .framer-6q4aih { --framer-paragraph-spacing: 24px; flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 1; }\",\".framer-jSNoe .framer-t8zl60 { flex: none; height: 155px; position: relative; white-space: pre-wrap; width: 844px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-jSNoe .framer-r7z6a4 { --framer-paragraph-spacing: 24px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 491px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-jSNoe .framer-gq67wx { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-jSNoe .framer-1k61sq2-container { flex: none; height: 1px; left: -110px; position: absolute; top: 40px; width: 110px; z-index: 2; }\",\".framer-jSNoe .framer-1j64x43-container { flex: none; height: 1px; left: -100px; position: absolute; top: 70px; width: 100px; z-index: 2; }\",\".framer-jSNoe .framer-elurrp-container { flex: none; height: 1px; left: -120px; position: absolute; top: 140px; width: 100px; z-index: 2; }\",\".framer-jSNoe .framer-1sc01z7-container { flex: none; height: 1px; left: -120px; position: absolute; top: 160px; width: 100px; z-index: 2; }\",\".framer-jSNoe .framer-12za3ys-container { flex: none; height: 1px; left: -120px; position: absolute; top: calc(52.63157894736844% - 1px / 2); width: 100px; z-index: 2; }\",\".framer-jSNoe .framer-1xfs3r7-container { flex: none; height: 1px; left: -100px; position: absolute; top: -30px; width: 100px; z-index: 2; }\",\".framer-jSNoe .framer-e7orv6-container { flex: none; height: 1px; left: -10px; position: absolute; top: -30px; width: 100px; z-index: 2; }\",\".framer-jSNoe .framer-jn75gg-container { flex: none; height: 1px; left: 50px; position: absolute; top: -40px; width: 100px; z-index: 2; }\",\".framer-jSNoe .framer-18lr6bo-container { flex: none; height: 1px; left: -90px; position: absolute; top: -40px; width: 100px; z-index: 2; }\",\".framer-jSNoe .framer-13p49ym-container { flex: none; height: 1px; left: 200px; position: absolute; top: -30px; width: 100px; z-index: 2; }\",\".framer-jSNoe .framer-11n962k-container { flex: none; height: 1px; left: 290px; position: absolute; top: -40px; width: 100px; z-index: 2; }\",\".framer-jSNoe .framer-1i9wt6p-container { flex: none; height: 1px; left: 120px; position: absolute; top: -40px; width: 100px; z-index: 2; }\",\".framer-jSNoe .framer-wnzptp-container { flex: none; height: 1px; left: 140px; position: absolute; top: -40px; width: 100px; z-index: 2; }\",\".framer-jSNoe .framer-17pw07p-container { flex: none; height: 1px; left: -100px; position: absolute; top: calc(50.00000000000002% - 1px / 2); width: 100px; z-index: 2; }\",\".framer-jSNoe .framer-1xjtlzs-container { flex: none; height: 1px; left: -120px; position: absolute; top: 10px; width: 100px; z-index: 2; }\",\".framer-jSNoe .framer-5ih3ag-container, .framer-jSNoe .framer-17wu8v6-container { flex: none; height: 1px; left: 140px; position: absolute; top: -30px; width: 100px; z-index: 2; }\",\".framer-jSNoe .framer-1n9dlb0, .framer-jSNoe .framer-wxwimt, .framer-jSNoe .framer-1xl8k1p, .framer-jSNoe .framer-1eqmuvl, .framer-jSNoe .framer-thufyz { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-jSNoe .framer-m762ze { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 60px 96px 60px 96px; position: relative; width: 100%; }\",\".framer-jSNoe .framer-i93pax, .framer-jSNoe .framer-47xce8, .framer-jSNoe .framer-13gl08c, .framer-jSNoe .framer-4u0j57 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1312px; }\",\".framer-jSNoe .framer-4pn1jw, .framer-jSNoe .framer-5euih4, .framer-jSNoe .framer-1gbfmew, .framer-jSNoe .framer-182kdtz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-jSNoe .framer-1cilfsm-container, .framer-jSNoe .framer-ypddax-container, .framer-jSNoe .framer-l2p4pw-container, .framer-jSNoe .framer-1lh6ehr-container, .framer-jSNoe .framer-17xtvhj-container, .framer-jSNoe .framer-1gqcs0j-container, .framer-jSNoe .framer-1teutti-container, .framer-jSNoe .framer-eh3ap8-container, .framer-jSNoe .framer-oi5o46-container { flex: 1 0 0px; height: auto; pointer-events: none; position: relative; width: 1px; }\",\".framer-jSNoe .framer-17gpt8q-container { bottom: 0px; flex: none; left: 0px; opacity: 0.5; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-jSNoe .framer-151n5tt { background: linear-gradient(180deg, rgba(22, 22, 22, 0) 0%, rgb(1, 2, 8) 100%); bottom: -3px; flex: none; height: 231px; left: 0px; position: absolute; right: 0px; z-index: 1; }\",\".framer-jSNoe .framer-qez04q { background: linear-gradient(180deg, rgba(22, 22, 22, 0) 0%, rgb(1, 2, 8) 100%); flex: none; height: 231px; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-jSNoe .framer-sfppei { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 100vh; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-jSNoe .framer-1o8w7yx { flex: none; height: 151px; position: relative; white-space: pre-wrap; width: 1210px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-jSNoe .framer-14ac0t5 { --framer-paragraph-spacing: 24px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 753px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-jSNoe .framer-ok9t3e { 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-jSNoe .framer-11o6oic, .framer-jSNoe .framer-ng721y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 96px; position: relative; width: 100%; }\",\".framer-jSNoe .framer-1fkce0j { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 828px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-jSNoe .framer-1r6wqig { --framer-paragraph-spacing: 24px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 917px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-jSNoe .framer-ut1100 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-jSNoe .framer-1u558xk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 54px 96px 54px 96px; position: relative; width: 100%; }\",\".framer-jSNoe .framer-1ayrksd, .framer-jSNoe .framer-1hzkw5h { flex: none; height: auto; max-width: 828px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-jSNoe .framer-b28p73, .framer-jSNoe .framer-afgjrv { --framer-paragraph-spacing: 24px; flex: none; height: auto; max-width: 917px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-jSNoe .framer-dttu6r { --border-bottom-width: 1px; --border-color: var(--token-0412df64-3808-4a78-b7be-da21828e1f61, rgba(255, 255, 255, 0.15)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 2px; position: relative; width: 654px; will-change: var(--framer-will-change-override, transform); }\",\".framer-jSNoe .framer-1dn6j5z-container { flex: none; height: 360px; left: 0px; position: absolute; top: 0px; width: 100%; }\",\".framer-jSNoe .framer-3sest4 { align-content: flex-start; align-items: flex-start; background-color: var(--token-fab76ef7-771e-4cf6-97cc-48deee26da02, #010208); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 21px; height: min-content; justify-content: center; overflow: hidden; padding: 120px 64px 120px 64px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-jSNoe .framer-1e6h4uu { flex: none; height: 30px; position: relative; width: 36px; z-index: 1; }\",\".framer-jSNoe .framer-164614b { --framer-paragraph-spacing: 72px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-jSNoe .framer-6qj68b { background: linear-gradient(180deg, rgba(22, 22, 22, 0) 0%, rgb(1, 2, 8) 100%); bottom: -4px; flex: none; height: 120px; left: -29px; position: absolute; right: -29px; z-index: 2; }\",\".framer-jSNoe .framer-ucolkf { background: linear-gradient(180deg, rgba(22, 22, 22, 0) 0%, rgb(1, 2, 8) 100%); flex: none; height: 120px; left: -29px; position: absolute; right: -29px; top: -2px; z-index: 2; }\",\".framer-jSNoe .framer-1q29btr { background: linear-gradient(180deg, rgba(22, 22, 22, 0) 0%, rgb(1, 2, 8) 100%); bottom: -2px; flex: none; height: 120px; left: 0px; position: absolute; width: 100%; z-index: 2; }\",\".framer-jSNoe .framer-t15uo1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-jSNoe .framer-1e09niz, .framer-jSNoe .framer-cgw2nu, .framer-jSNoe .framer-149kosq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-jSNoe .framer-1b8uunk, .framer-jSNoe .framer-v7kmku, .framer-jSNoe .framer-1ufk1mk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 395px; }\",\".framer-jSNoe .framer-vy1r5r, .framer-jSNoe .framer-1vol4ih, .framer-jSNoe .framer-o76hds { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-jSNoe .framer-7azck2, .framer-jSNoe .framer-1cevalj, .framer-jSNoe .framer-1a3rdvp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-jSNoe .framer-y1lkyl, .framer-jSNoe .framer-184r68d { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 351px; word-break: break-word; word-wrap: break-word; }\",\".framer-jSNoe .framer-cgy8wp, .framer-jSNoe .framer-1osn1u8, .framer-jSNoe .framer-uclewy { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-jSNoe .framer-6xlrda { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 370px; word-break: break-word; word-wrap: break-word; }\",\".framer-jSNoe .framer-ydrhd6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 64px; position: relative; width: 100%; }\",\".framer-jSNoe .framer-110suui { flex: none; height: auto; max-width: 729px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-jSNoe .framer-pp1p8b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-jSNoe .framer-1s4dyfd, .framer-jSNoe .framer-v1cxp2 { --framer-paragraph-spacing: 24px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-jSNoe .framer-16bmfij { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-jSNoe .framer-1ytm0s5 { --border-bottom-width: 1px; --border-color: var(--token-0412df64-3808-4a78-b7be-da21828e1f61, rgba(255, 255, 255, 0.15)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 74px 32px 74px 32px; position: relative; width: 405px; }\",\".framer-jSNoe .framer-pnrml1 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-jSNoe .framer-1w7kyql, .framer-jSNoe .framer-96aeyf, .framer-jSNoe .framer-gs6gu6, .framer-jSNoe .framer-ybk9gm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-jSNoe .framer-1t7zglm, .framer-jSNoe .framer-sdxpjb, .framer-jSNoe .framer-7lotk6, .framer-jSNoe .framer-3y2mcp, .framer-jSNoe .framer-agsp8y { flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 1; }\",\".framer-jSNoe .framer-1eg88vi, .framer-jSNoe .framer-5di115 { background-color: var(--token-0412df64-3808-4a78-b7be-da21828e1f61, rgba(255, 255, 255, 0.15)); flex: none; height: 1px; position: relative; width: 339px; }\",\".framer-jSNoe .framer-yp72w, .framer-jSNoe .framer-1qp8kcw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-jSNoe .framer-t0zehh-container, .framer-jSNoe .framer-wu50sd-container, .framer-jSNoe .framer-19wxej1-container { flex: none; height: auto; position: relative; width: 100%; z-index: 5; }\",\".framer-jSNoe .framer-c20rxj, .framer-jSNoe .framer-4v8yw0, .framer-jSNoe .framer-mymqjf { align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0px 20px 1px rgba(255, 255, 255, 0.03); cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-jSNoe .framer-1fote7i, .framer-jSNoe .framer-wpmjxh, .framer-jSNoe .framer-1iv9rv5 { 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: center; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 2; }\",\".framer-jSNoe .framer-gkq4wx, .framer-jSNoe .framer-2jr0ab, .framer-jSNoe .framer-1862ju { --border-bottom-width: 1px; --border-color: #04050b; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(6px); align-content: center; align-items: center; backdrop-filter: blur(6px); background-color: rgba(255, 255, 255, 0.01); border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; box-shadow: inset 0px 0px 10px 0px rgba(255, 255, 255, 0.06); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 8px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-jSNoe .framer-1r1sg7g, .framer-jSNoe .framer-1tju6u3, .framer-jSNoe .framer-4918b8 { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.06); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(4px); align-content: center; align-items: center; backdrop-filter: blur(4px); background: linear-gradient(180deg, #0f1016 0%, rgb(17, 18, 24) 100%); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: inset 0px 0px 10px 0px rgba(255, 255, 255, 0.06), 0px 0px 8px 0px rgba(255, 255, 255, 0.03); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 56px; justify-content: center; overflow: hidden; padding: 0px 8px 0px 8px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-jSNoe .framer-1c2q52k, .framer-jSNoe .framer-1cspvd4, .framer-jSNoe .framer-14y3wqh { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; z-index: 2; }\",\".framer-jSNoe .framer-1peqj7s, .framer-jSNoe .framer-1gm2t11, .framer-jSNoe .framer-zxffme { -webkit-filter: blur(10px); align-content: center; align-items: center; display: flex; filter: blur(10px); flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 54px; justify-content: center; left: 0px; overflow: visible; padding: 0px; position: absolute; top: calc(50.00000000000002% - 54px / 2); width: 100%; }\",\".framer-jSNoe .framer-1jlbqiw-container, .framer-jSNoe .framer-sye3g2-container, .framer-jSNoe .framer-1lk7lwf-container { bottom: 0px; flex: none; left: 0px; opacity: 0.3; position: absolute; right: 0px; top: 0px; z-index: 2; }\",\".framer-jSNoe .framer-kdjjlx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 37px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-jSNoe .framer-12kcyy2-container, .framer-jSNoe .framer-1bzvn62-container, .framer-jSNoe .framer-1kmnnj5-container, .framer-jSNoe .framer-17wsrp9-container, .framer-jSNoe .framer-4wdh59-container, .framer-jSNoe .framer-1nei81v-container, .framer-jSNoe .framer-hhvxid-container, .framer-jSNoe .framer-mhfyt8-container, .framer-jSNoe .framer-1d0g9ua-container, .framer-jSNoe .framer-gym4ge-container, .framer-jSNoe .framer-1v8r3nn-container, .framer-jSNoe .framer-1rcu4qc-container, .framer-jSNoe .framer-mh0150-container, .framer-jSNoe .framer-1tlrx14-container, .framer-jSNoe .framer-z32fm1-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-jSNoe .framer-1iddz8z { --border-bottom-width: 1px; --border-color: var(--token-0412df64-3808-4a78-b7be-da21828e1f61, rgba(255, 255, 255, 0.15)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: var(--token-fab76ef7-771e-4cf6-97cc-48deee26da02, #010208); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 74px 32px 74px 32px; position: relative; width: 405px; }\",\".framer-jSNoe .framer-1rhby8h { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 0; }\",\".framer-jSNoe .framer-1st95zz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-jSNoe .framer-1e3mjxb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: 777px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-jSNoe .framer-lnxc26, .framer-jSNoe .framer-1ak2ops { --border-bottom-width: 1px; --border-color: var(--token-0412df64-3808-4a78-b7be-da21828e1f61, rgba(255, 255, 255, 0.15)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 1px; justify-content: flex-start; overflow: visible; padding: 33px; position: relative; width: 405px; }\",\".framer-jSNoe .framer-1e5qww3 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-jSNoe .framer-k24lvu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-jSNoe .framer-vq39uv, .framer-jSNoe .framer-mae4 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 83px); overflow: visible; position: relative; width: 83px; }\",\".framer-jSNoe .framer-mavazo { --border-bottom-width: 1.125px; --border-color: rgba(255, 255, 255, 0.1); --border-left-width: 1.125px; --border-right-width: 1.125px; --border-style: solid; --border-top-width: 1.125px; background: linear-gradient(255.13099345821925deg, #161616 0%, var(--token-fab76ef7-771e-4cf6-97cc-48deee26da02, rgb(1, 2, 8)) 100%); border-bottom-left-radius: 54px; border-bottom-right-radius: 54px; border-top-left-radius: 54px; border-top-right-radius: 54px; flex: none; height: 83px; left: 0px; position: absolute; top: 0px; width: 83px; }\",\".framer-jSNoe .framer-1utcto8, .framer-jSNoe .framer-19duoeu { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 42px); left: 21px; overflow: hidden; position: absolute; top: 21px; width: 42px; }\",\".framer-jSNoe .framer-1edd0o9 { bottom: 5px; flex: none; left: 2px; position: absolute; right: 5px; top: 2px; }\",\".framer-jSNoe .framer-qd89rh, .framer-jSNoe .framer-jixb2f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 289.3399963378906px 0px 0px; position: relative; width: 339px; }\",\".framer-jSNoe .framer-1jmcfgi, .framer-jSNoe .framer-1e5o8yb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 162.33999633789062px 0px 0px; position: relative; width: 339px; }\",\".framer-jSNoe .framer-18wcdwf, .framer-jSNoe .framer-1so2di7 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 339px; word-break: break-word; word-wrap: break-word; }\",\".framer-jSNoe .framer-fhzroc { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 26px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-jSNoe .framer-n36r15 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 15px 0px 15px 0px; position: relative; width: min-content; }\",\".framer-jSNoe .framer-1sqabzx { --border-bottom-width: 1.125px; --border-color: rgba(255, 255, 255, 0.1); --border-left-width: 1.125px; --border-right-width: 1.125px; --border-style: solid; --border-top-width: 1.125px; background: linear-gradient(255.13099345821925deg, #161616 0%, rgb(1, 2, 8) 100%); border-bottom-left-radius: 54px; border-bottom-right-radius: 54px; border-top-left-radius: 54px; border-top-right-radius: 54px; flex: none; height: 83px; left: 0px; position: absolute; top: 0px; width: 83px; }\",\".framer-jSNoe .framer-a8oud4 { bottom: 9px; flex: none; left: 2px; position: absolute; right: 5px; top: 5px; }\",\".framer-jSNoe .framer-1cp58ym { align-content: center; align-items: center; background-color: var(--token-3becceca-d213-4853-b7f6-4fa13665335c, #010208); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 100%; }\",\".framer-jSNoe .framer-1hp8isd { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-jSNoe .framer-lwq5kz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-jSNoe .framer-1472yq1-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-jSNoe .framer-1k323vb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 28px 96px 28px 96px; position: relative; width: 100%; }\",\".framer-jSNoe .framer-s38alp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-jSNoe .framer-8iypgz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-jSNoe .framer-1x7xne0 { aspect-ratio: 0.7995910020449898 / 1; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0px 4px 50px 0px rgba(0, 0, 0, 0.5); flex: none; height: var(--framer-aspect-ratio-supported, 742px); pointer-events: none; position: relative; width: 593px; }\",\".framer-jSNoe .framer-1wj30kn { aspect-ratio: 0.7995910020449898 / 1; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0px 4px 50px 0px rgba(0, 0, 0, 0.5); flex: none; height: 745px; pointer-events: none; position: relative; width: var(--framer-aspect-ratio-supported, 595px); }\",\".framer-jSNoe .framer-t4w3td { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; max-width: 917px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-jSNoe .framer-6rtcls-container { flex: none; height: auto; position: relative; width: 183px; z-index: 1; }\",\".framer-jSNoe .framer-djhxzb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-jSNoe .framer-1rhx2j { align-self: stretch; flex: none; height: auto; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-jSNoe .framer-1hocwsd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-jSNoe .framer-ca9bth { aspect-ratio: 3.5294117647058822 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 52px); overflow: visible; position: relative; width: 183px; }\",\".framer-jSNoe .framer-1ko0q85 { -webkit-filter: invert(1); aspect-ratio: 5.884615384615385 / 1; filter: invert(1); flex: none; height: var(--framer-aspect-ratio-supported, 45px); overflow: visible; position: relative; width: 268px; }\",\".framer-jSNoe .framer-zp3tih { aspect-ratio: 6.32 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 54px); overflow: visible; position: relative; width: 341px; }\",\".framer-jSNoe .framer-1oj0p9b { aspect-ratio: 3.625 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 67px); overflow: visible; position: relative; width: 241px; }\",\".framer-jSNoe .framer-1jzrk1s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-jSNoe .framer-1m4vuju { aspect-ratio: 5.884615384615385 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 25px); overflow: visible; position: relative; width: 149px; }\",\".framer-jSNoe .framer-39vmdx { aspect-ratio: 3.5294117647058822 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 28px); overflow: visible; position: relative; width: 101px; }\",\".framer-jSNoe .framer-1kd7ma8 { aspect-ratio: 6.32 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); overflow: visible; position: relative; width: 188px; }\",\".framer-jSNoe .framer-1if22cd { aspect-ratio: 3.625 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 47px); overflow: visible; position: relative; width: 170px; }\",\".framer-jSNoe .framer-1l3j4ll { 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: visible; padding: 0px; position: relative; width: 1440px; }\",\".framer-jSNoe .framer-1pbqb5s-container { flex: none; height: auto; max-width: 859px; position: relative; width: 100%; z-index: 2; }\",\".framer-jSNoe .framer-1xxovoc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 45px; height: min-content; justify-content: center; overflow: hidden; padding: 53px 64px 53px 64px; position: relative; width: 100%; z-index: 1; }\",\".framer-jSNoe .framer-11e05db-container { bottom: 0px; flex: none; left: 0px; opacity: 0.25; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-jSNoe .framer-w68w2g { flex: none; height: 110px; overflow: visible; position: relative; width: 330px; }\",\".framer-jSNoe .framer-z7yvmf { flex: none; height: auto; max-width: 904px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 3; }\",\".framer-jSNoe .framer-ubj170 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; z-index: 3; }\",\".framer-jSNoe .framer-2wkj4y { --framer-paragraph-spacing: 24px; flex: none; height: auto; max-width: 475px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 3; }\",\".framer-jSNoe .framer-1ksoax8 { align-content: flex-start; align-items: flex-start; background-color: var(--token-fab76ef7-771e-4cf6-97cc-48deee26da02, #010208); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 24px 96px 64px 96px; position: relative; width: 100%; }\",\".framer-jSNoe .framer-1k1y4f1 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-jSNoe .framer-ceh1oe, .framer-jSNoe .framer-efkbzv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-jSNoe .framer-18qxfkk { flex: none; height: 69px; overflow: visible; position: relative; width: 271px; }\",\".framer-jSNoe .framer-x3g3aj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 96px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-jSNoe .framer-o6ntg3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 193px; }\",\".framer-jSNoe .framer-de7le3-container, .framer-jSNoe .framer-8d8ocq-container { flex: none; height: 82px; position: relative; width: 71px; z-index: 1; }\",\".framer-jSNoe .framer-ymlpoo-container { flex: none; height: 50px; position: sticky; top: 0px; width: 54px; z-index: 1; }\",\".framer-jSNoe .framer-1i3irx6 { background-color: var(--token-0412df64-3808-4a78-b7be-da21828e1f61, rgba(255, 255, 255, 0.15)); flex: none; height: 1px; position: relative; width: 100%; }\",\".framer-jSNoe .framer-1ftm5p1, .framer-jSNoe .framer-1rfc8iv { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-jSNoe .framer-1vx828e { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; min-height: 21px; min-width: 91px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-jSNoe.framer-72rtr7, .framer-jSNoe .framer-5d3nf5, .framer-jSNoe .framer-190udz3, .framer-jSNoe .framer-1iyoh2c, .framer-jSNoe .framer-1ked844, .framer-jSNoe .framer-8oegii, .framer-jSNoe .framer-1scn0yo, .framer-jSNoe .framer-1r5ytmi, .framer-jSNoe .framer-fdpq90, .framer-jSNoe .framer-1kiiq0s, .framer-jSNoe .framer-1n9dlb0, .framer-jSNoe .framer-m762ze, .framer-jSNoe .framer-i93pax, .framer-jSNoe .framer-4pn1jw, .framer-jSNoe .framer-wxwimt, .framer-jSNoe .framer-sfppei, .framer-jSNoe .framer-ok9t3e, .framer-jSNoe .framer-11o6oic, .framer-jSNoe .framer-47xce8, .framer-jSNoe .framer-ut1100, .framer-jSNoe .framer-5euih4, .framer-jSNoe .framer-1gbfmew, .framer-jSNoe .framer-1xl8k1p, .framer-jSNoe .framer-1u558xk, .framer-jSNoe .framer-13gl08c, .framer-jSNoe .framer-182kdtz, .framer-jSNoe .framer-dttu6r, .framer-jSNoe .framer-3sest4, .framer-jSNoe .framer-t15uo1, .framer-jSNoe .framer-1e09niz, .framer-jSNoe .framer-1b8uunk, .framer-jSNoe .framer-7azck2, .framer-jSNoe .framer-cgy8wp, .framer-jSNoe .framer-v7kmku, .framer-jSNoe .framer-1cevalj, .framer-jSNoe .framer-1osn1u8, .framer-jSNoe .framer-1ufk1mk, .framer-jSNoe .framer-1a3rdvp, .framer-jSNoe .framer-1eqmuvl, .framer-jSNoe .framer-ydrhd6, .framer-jSNoe .framer-pp1p8b, .framer-jSNoe .framer-16bmfij, .framer-jSNoe .framer-1ytm0s5, .framer-jSNoe .framer-pnrml1, .framer-jSNoe .framer-1w7kyql, .framer-jSNoe .framer-96aeyf, .framer-jSNoe .framer-yp72w, .framer-jSNoe .framer-c20rxj, .framer-jSNoe .framer-1fote7i, .framer-jSNoe .framer-gkq4wx, .framer-jSNoe .framer-1r1sg7g, .framer-jSNoe .framer-1peqj7s, .framer-jSNoe .framer-kdjjlx, .framer-jSNoe .framer-cgw2nu, .framer-jSNoe .framer-1iddz8z, .framer-jSNoe .framer-1rhby8h, .framer-jSNoe .framer-gs6gu6, .framer-jSNoe .framer-ybk9gm, .framer-jSNoe .framer-1qp8kcw, .framer-jSNoe .framer-4v8yw0, .framer-jSNoe .framer-wpmjxh, .framer-jSNoe .framer-2jr0ab, .framer-jSNoe .framer-1tju6u3, .framer-jSNoe .framer-1gm2t11, .framer-jSNoe .framer-1st95zz, .framer-jSNoe .framer-149kosq, .framer-jSNoe .framer-1e3mjxb, .framer-jSNoe .framer-lnxc26, .framer-jSNoe .framer-1e5qww3, .framer-jSNoe .framer-k24lvu, .framer-jSNoe .framer-qd89rh, .framer-jSNoe .framer-1jmcfgi, .framer-jSNoe .framer-mymqjf, .framer-jSNoe .framer-1iv9rv5, .framer-jSNoe .framer-1862ju, .framer-jSNoe .framer-4918b8, .framer-jSNoe .framer-zxffme, .framer-jSNoe .framer-1ak2ops, .framer-jSNoe .framer-fhzroc, .framer-jSNoe .framer-n36r15, .framer-jSNoe .framer-jixb2f, .framer-jSNoe .framer-1e5o8yb, .framer-jSNoe .framer-1cp58ym, .framer-jSNoe .framer-lwq5kz, .framer-jSNoe .framer-thufyz, .framer-jSNoe .framer-1k323vb, .framer-jSNoe .framer-s38alp, .framer-jSNoe .framer-8iypgz, .framer-jSNoe .framer-t4w3td, .framer-jSNoe .framer-djhxzb, .framer-jSNoe .framer-1hocwsd, .framer-jSNoe .framer-1jzrk1s, .framer-jSNoe .framer-1l3j4ll, .framer-jSNoe .framer-ng721y, .framer-jSNoe .framer-4u0j57, .framer-jSNoe .framer-1xxovoc, .framer-jSNoe .framer-ubj170, .framer-jSNoe .framer-1ksoax8, .framer-jSNoe .framer-1k1y4f1, .framer-jSNoe .framer-uclewy, .framer-jSNoe .framer-x3g3aj, .framer-jSNoe .framer-o6ntg3, .framer-jSNoe .framer-1vx828e { gap: 0px; } .framer-jSNoe.framer-72rtr7 > *, .framer-jSNoe .framer-5d3nf5 > *, .framer-jSNoe .framer-190udz3 > *, .framer-jSNoe .framer-1r5ytmi > *, .framer-jSNoe .framer-1n9dlb0 > *, .framer-jSNoe .framer-wxwimt > *, .framer-jSNoe .framer-ok9t3e > *, .framer-jSNoe .framer-1xl8k1p > *, .framer-jSNoe .framer-1eqmuvl > *, .framer-jSNoe .framer-1cp58ym > *, .framer-jSNoe .framer-thufyz > *, .framer-jSNoe .framer-1l3j4ll > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-jSNoe.framer-72rtr7 > :first-child, .framer-jSNoe .framer-5d3nf5 > :first-child, .framer-jSNoe .framer-190udz3 > :first-child, .framer-jSNoe .framer-1iyoh2c > :first-child, .framer-jSNoe .framer-1ked844 > :first-child, .framer-jSNoe .framer-8oegii > :first-child, .framer-jSNoe .framer-1scn0yo > :first-child, .framer-jSNoe .framer-1r5ytmi > :first-child, .framer-jSNoe .framer-1kiiq0s > :first-child, .framer-jSNoe .framer-1n9dlb0 > :first-child, .framer-jSNoe .framer-m762ze > :first-child, .framer-jSNoe .framer-i93pax > :first-child, .framer-jSNoe .framer-wxwimt > :first-child, .framer-jSNoe .framer-sfppei > :first-child, .framer-jSNoe .framer-ok9t3e > :first-child, .framer-jSNoe .framer-11o6oic > :first-child, .framer-jSNoe .framer-47xce8 > :first-child, .framer-jSNoe .framer-ut1100 > :first-child, .framer-jSNoe .framer-1xl8k1p > :first-child, .framer-jSNoe .framer-1u558xk > :first-child, .framer-jSNoe .framer-13gl08c > :first-child, .framer-jSNoe .framer-3sest4 > :first-child, .framer-jSNoe .framer-t15uo1 > :first-child, .framer-jSNoe .framer-1e09niz > :first-child, .framer-jSNoe .framer-cgy8wp > :first-child, .framer-jSNoe .framer-1osn1u8 > :first-child, .framer-jSNoe .framer-1eqmuvl > :first-child, .framer-jSNoe .framer-ydrhd6 > :first-child, .framer-jSNoe .framer-pp1p8b > :first-child, .framer-jSNoe .framer-pnrml1 > :first-child, .framer-jSNoe .framer-1w7kyql > :first-child, .framer-jSNoe .framer-96aeyf > :first-child, .framer-jSNoe .framer-yp72w > :first-child, .framer-jSNoe .framer-1fote7i > :first-child, .framer-jSNoe .framer-1r1sg7g > :first-child, .framer-jSNoe .framer-kdjjlx > :first-child, .framer-jSNoe .framer-cgw2nu > :first-child, .framer-jSNoe .framer-1rhby8h > :first-child, .framer-jSNoe .framer-gs6gu6 > :first-child, .framer-jSNoe .framer-ybk9gm > :first-child, .framer-jSNoe .framer-1qp8kcw > :first-child, .framer-jSNoe .framer-wpmjxh > :first-child, .framer-jSNoe .framer-1tju6u3 > :first-child, .framer-jSNoe .framer-1st95zz > :first-child, .framer-jSNoe .framer-149kosq > :first-child, .framer-jSNoe .framer-1e3mjxb > :first-child, .framer-jSNoe .framer-1e5qww3 > :first-child, .framer-jSNoe .framer-k24lvu > :first-child, .framer-jSNoe .framer-1iv9rv5 > :first-child, .framer-jSNoe .framer-4918b8 > :first-child, .framer-jSNoe .framer-fhzroc > :first-child, .framer-jSNoe .framer-n36r15 > :first-child, .framer-jSNoe .framer-1cp58ym > :first-child, .framer-jSNoe .framer-thufyz > :first-child, .framer-jSNoe .framer-1k323vb > :first-child, .framer-jSNoe .framer-s38alp > :first-child, .framer-jSNoe .framer-t4w3td > :first-child, .framer-jSNoe .framer-djhxzb > :first-child, .framer-jSNoe .framer-1l3j4ll > :first-child, .framer-jSNoe .framer-ng721y > :first-child, .framer-jSNoe .framer-4u0j57 > :first-child, .framer-jSNoe .framer-1xxovoc > :first-child, .framer-jSNoe .framer-ubj170 > :first-child, .framer-jSNoe .framer-1k1y4f1 > :first-child, .framer-jSNoe .framer-uclewy > :first-child { margin-top: 0px; } .framer-jSNoe.framer-72rtr7 > :last-child, .framer-jSNoe .framer-5d3nf5 > :last-child, .framer-jSNoe .framer-190udz3 > :last-child, .framer-jSNoe .framer-1iyoh2c > :last-child, .framer-jSNoe .framer-1ked844 > :last-child, .framer-jSNoe .framer-8oegii > :last-child, .framer-jSNoe .framer-1scn0yo > :last-child, .framer-jSNoe .framer-1r5ytmi > :last-child, .framer-jSNoe .framer-1kiiq0s > :last-child, .framer-jSNoe .framer-1n9dlb0 > :last-child, .framer-jSNoe .framer-m762ze > :last-child, .framer-jSNoe .framer-i93pax > :last-child, .framer-jSNoe .framer-wxwimt > :last-child, .framer-jSNoe .framer-sfppei > :last-child, .framer-jSNoe .framer-ok9t3e > :last-child, .framer-jSNoe .framer-11o6oic > :last-child, .framer-jSNoe .framer-47xce8 > :last-child, .framer-jSNoe .framer-ut1100 > :last-child, .framer-jSNoe .framer-1xl8k1p > :last-child, .framer-jSNoe .framer-1u558xk > :last-child, .framer-jSNoe .framer-13gl08c > :last-child, .framer-jSNoe .framer-3sest4 > :last-child, .framer-jSNoe .framer-t15uo1 > :last-child, .framer-jSNoe .framer-1e09niz > :last-child, .framer-jSNoe .framer-cgy8wp > :last-child, .framer-jSNoe .framer-1osn1u8 > :last-child, .framer-jSNoe .framer-1eqmuvl > :last-child, .framer-jSNoe .framer-ydrhd6 > :last-child, .framer-jSNoe .framer-pp1p8b > :last-child, .framer-jSNoe .framer-pnrml1 > :last-child, .framer-jSNoe .framer-1w7kyql > :last-child, .framer-jSNoe .framer-96aeyf > :last-child, .framer-jSNoe .framer-yp72w > :last-child, .framer-jSNoe .framer-1fote7i > :last-child, .framer-jSNoe .framer-1r1sg7g > :last-child, .framer-jSNoe .framer-kdjjlx > :last-child, .framer-jSNoe .framer-cgw2nu > :last-child, .framer-jSNoe .framer-1rhby8h > :last-child, .framer-jSNoe .framer-gs6gu6 > :last-child, .framer-jSNoe .framer-ybk9gm > :last-child, .framer-jSNoe .framer-1qp8kcw > :last-child, .framer-jSNoe .framer-wpmjxh > :last-child, .framer-jSNoe .framer-1tju6u3 > :last-child, .framer-jSNoe .framer-1st95zz > :last-child, .framer-jSNoe .framer-149kosq > :last-child, .framer-jSNoe .framer-1e3mjxb > :last-child, .framer-jSNoe .framer-1e5qww3 > :last-child, .framer-jSNoe .framer-k24lvu > :last-child, .framer-jSNoe .framer-1iv9rv5 > :last-child, .framer-jSNoe .framer-4918b8 > :last-child, .framer-jSNoe .framer-fhzroc > :last-child, .framer-jSNoe .framer-n36r15 > :last-child, .framer-jSNoe .framer-1cp58ym > :last-child, .framer-jSNoe .framer-thufyz > :last-child, .framer-jSNoe .framer-1k323vb > :last-child, .framer-jSNoe .framer-s38alp > :last-child, .framer-jSNoe .framer-t4w3td > :last-child, .framer-jSNoe .framer-djhxzb > :last-child, .framer-jSNoe .framer-1l3j4ll > :last-child, .framer-jSNoe .framer-ng721y > :last-child, .framer-jSNoe .framer-4u0j57 > :last-child, .framer-jSNoe .framer-1xxovoc > :last-child, .framer-jSNoe .framer-ubj170 > :last-child, .framer-jSNoe .framer-1k1y4f1 > :last-child, .framer-jSNoe .framer-uclewy > :last-child { margin-bottom: 0px; } .framer-jSNoe .framer-1iyoh2c > *, .framer-jSNoe .framer-8oegii > *, .framer-jSNoe .framer-1kiiq0s > *, .framer-jSNoe .framer-m762ze > *, .framer-jSNoe .framer-sfppei > *, .framer-jSNoe .framer-11o6oic > *, .framer-jSNoe .framer-1u558xk > *, .framer-jSNoe .framer-ydrhd6 > *, .framer-jSNoe .framer-1st95zz > *, .framer-jSNoe .framer-1e5qww3 > *, .framer-jSNoe .framer-1k323vb > *, .framer-jSNoe .framer-djhxzb > *, .framer-jSNoe .framer-ng721y > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-jSNoe .framer-1ked844 > *, .framer-jSNoe .framer-pnrml1 > *, .framer-jSNoe .framer-1rhby8h > *, .framer-jSNoe .framer-1e3mjxb > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-jSNoe .framer-1scn0yo > *, .framer-jSNoe .framer-cgy8wp > *, .framer-jSNoe .framer-1osn1u8 > *, .framer-jSNoe .framer-k24lvu > *, .framer-jSNoe .framer-n36r15 > *, .framer-jSNoe .framer-uclewy > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-jSNoe .framer-fdpq90 > *, .framer-jSNoe .framer-1b8uunk > *, .framer-jSNoe .framer-7azck2 > *, .framer-jSNoe .framer-v7kmku > *, .framer-jSNoe .framer-1cevalj > *, .framer-jSNoe .framer-1ufk1mk > *, .framer-jSNoe .framer-1a3rdvp > *, .framer-jSNoe .framer-1ytm0s5 > *, .framer-jSNoe .framer-1iddz8z > *, .framer-jSNoe .framer-lnxc26 > *, .framer-jSNoe .framer-qd89rh > *, .framer-jSNoe .framer-1jmcfgi > *, .framer-jSNoe .framer-1ak2ops > *, .framer-jSNoe .framer-jixb2f > *, .framer-jSNoe .framer-1e5o8yb > *, .framer-jSNoe .framer-1ksoax8 > *, .framer-jSNoe .framer-o6ntg3 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-jSNoe .framer-fdpq90 > :first-child, .framer-jSNoe .framer-4pn1jw > :first-child, .framer-jSNoe .framer-5euih4 > :first-child, .framer-jSNoe .framer-1gbfmew > :first-child, .framer-jSNoe .framer-182kdtz > :first-child, .framer-jSNoe .framer-dttu6r > :first-child, .framer-jSNoe .framer-1b8uunk > :first-child, .framer-jSNoe .framer-7azck2 > :first-child, .framer-jSNoe .framer-v7kmku > :first-child, .framer-jSNoe .framer-1cevalj > :first-child, .framer-jSNoe .framer-1ufk1mk > :first-child, .framer-jSNoe .framer-1a3rdvp > :first-child, .framer-jSNoe .framer-16bmfij > :first-child, .framer-jSNoe .framer-1ytm0s5 > :first-child, .framer-jSNoe .framer-c20rxj > :first-child, .framer-jSNoe .framer-gkq4wx > :first-child, .framer-jSNoe .framer-1peqj7s > :first-child, .framer-jSNoe .framer-1iddz8z > :first-child, .framer-jSNoe .framer-4v8yw0 > :first-child, .framer-jSNoe .framer-2jr0ab > :first-child, .framer-jSNoe .framer-1gm2t11 > :first-child, .framer-jSNoe .framer-lnxc26 > :first-child, .framer-jSNoe .framer-qd89rh > :first-child, .framer-jSNoe .framer-1jmcfgi > :first-child, .framer-jSNoe .framer-mymqjf > :first-child, .framer-jSNoe .framer-1862ju > :first-child, .framer-jSNoe .framer-zxffme > :first-child, .framer-jSNoe .framer-1ak2ops > :first-child, .framer-jSNoe .framer-jixb2f > :first-child, .framer-jSNoe .framer-1e5o8yb > :first-child, .framer-jSNoe .framer-lwq5kz > :first-child, .framer-jSNoe .framer-8iypgz > :first-child, .framer-jSNoe .framer-1hocwsd > :first-child, .framer-jSNoe .framer-1jzrk1s > :first-child, .framer-jSNoe .framer-1ksoax8 > :first-child, .framer-jSNoe .framer-x3g3aj > :first-child, .framer-jSNoe .framer-o6ntg3 > :first-child, .framer-jSNoe .framer-1vx828e > :first-child { margin-left: 0px; } .framer-jSNoe .framer-fdpq90 > :last-child, .framer-jSNoe .framer-4pn1jw > :last-child, .framer-jSNoe .framer-5euih4 > :last-child, .framer-jSNoe .framer-1gbfmew > :last-child, .framer-jSNoe .framer-182kdtz > :last-child, .framer-jSNoe .framer-dttu6r > :last-child, .framer-jSNoe .framer-1b8uunk > :last-child, .framer-jSNoe .framer-7azck2 > :last-child, .framer-jSNoe .framer-v7kmku > :last-child, .framer-jSNoe .framer-1cevalj > :last-child, .framer-jSNoe .framer-1ufk1mk > :last-child, .framer-jSNoe .framer-1a3rdvp > :last-child, .framer-jSNoe .framer-16bmfij > :last-child, .framer-jSNoe .framer-1ytm0s5 > :last-child, .framer-jSNoe .framer-c20rxj > :last-child, .framer-jSNoe .framer-gkq4wx > :last-child, .framer-jSNoe .framer-1peqj7s > :last-child, .framer-jSNoe .framer-1iddz8z > :last-child, .framer-jSNoe .framer-4v8yw0 > :last-child, .framer-jSNoe .framer-2jr0ab > :last-child, .framer-jSNoe .framer-1gm2t11 > :last-child, .framer-jSNoe .framer-lnxc26 > :last-child, .framer-jSNoe .framer-qd89rh > :last-child, .framer-jSNoe .framer-1jmcfgi > :last-child, .framer-jSNoe .framer-mymqjf > :last-child, .framer-jSNoe .framer-1862ju > :last-child, .framer-jSNoe .framer-zxffme > :last-child, .framer-jSNoe .framer-1ak2ops > :last-child, .framer-jSNoe .framer-jixb2f > :last-child, .framer-jSNoe .framer-1e5o8yb > :last-child, .framer-jSNoe .framer-lwq5kz > :last-child, .framer-jSNoe .framer-8iypgz > :last-child, .framer-jSNoe .framer-1hocwsd > :last-child, .framer-jSNoe .framer-1jzrk1s > :last-child, .framer-jSNoe .framer-1ksoax8 > :last-child, .framer-jSNoe .framer-x3g3aj > :last-child, .framer-jSNoe .framer-o6ntg3 > :last-child, .framer-jSNoe .framer-1vx828e > :last-child { margin-right: 0px; } .framer-jSNoe .framer-i93pax > *, .framer-jSNoe .framer-47xce8 > *, .framer-jSNoe .framer-ut1100 > *, .framer-jSNoe .framer-13gl08c > *, .framer-jSNoe .framer-t15uo1 > *, .framer-jSNoe .framer-s38alp > *, .framer-jSNoe .framer-4u0j57 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-jSNoe .framer-4pn1jw > *, .framer-jSNoe .framer-5euih4 > *, .framer-jSNoe .framer-1gbfmew > *, .framer-jSNoe .framer-182kdtz > *, .framer-jSNoe .framer-1hocwsd > * { margin: 0px; margin-left: calc(64px / 2); margin-right: calc(64px / 2); } .framer-jSNoe .framer-dttu6r > *, .framer-jSNoe .framer-c20rxj > *, .framer-jSNoe .framer-gkq4wx > *, .framer-jSNoe .framer-1peqj7s > *, .framer-jSNoe .framer-4v8yw0 > *, .framer-jSNoe .framer-2jr0ab > *, .framer-jSNoe .framer-1gm2t11 > *, .framer-jSNoe .framer-mymqjf > *, .framer-jSNoe .framer-1862ju > *, .framer-jSNoe .framer-zxffme > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-jSNoe .framer-3sest4 > * { margin: 0px; margin-bottom: calc(21px / 2); margin-top: calc(21px / 2); } .framer-jSNoe .framer-1e09niz > *, .framer-jSNoe .framer-yp72w > *, .framer-jSNoe .framer-cgw2nu > *, .framer-jSNoe .framer-1qp8kcw > *, .framer-jSNoe .framer-149kosq > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-jSNoe .framer-pp1p8b > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-jSNoe .framer-16bmfij > *, .framer-jSNoe .framer-lwq5kz > *, .framer-jSNoe .framer-8iypgz > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-jSNoe .framer-1w7kyql > *, .framer-jSNoe .framer-96aeyf > *, .framer-jSNoe .framer-gs6gu6 > *, .framer-jSNoe .framer-ybk9gm > *, .framer-jSNoe .framer-ubj170 > *, .framer-jSNoe .framer-1k1y4f1 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-jSNoe .framer-1fote7i > *, .framer-jSNoe .framer-1r1sg7g > *, .framer-jSNoe .framer-wpmjxh > *, .framer-jSNoe .framer-1tju6u3 > *, .framer-jSNoe .framer-1iv9rv5 > *, .framer-jSNoe .framer-4918b8 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-jSNoe .framer-kdjjlx > * { margin: 0px; margin-bottom: calc(37px / 2); margin-top: calc(37px / 2); } .framer-jSNoe .framer-fhzroc > * { margin: 0px; margin-bottom: calc(26px / 2); margin-top: calc(26px / 2); } .framer-jSNoe .framer-t4w3td > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-jSNoe .framer-1jzrk1s > * { margin: 0px; margin-left: calc(22px / 2); margin-right: calc(22px / 2); } .framer-jSNoe .framer-1xxovoc > * { margin: 0px; margin-bottom: calc(45px / 2); margin-top: calc(45px / 2); } .framer-jSNoe .framer-x3g3aj > * { margin: 0px; margin-left: calc(96px / 2); margin-right: calc(96px / 2); } .framer-jSNoe .framer-1vx828e > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } }\",'.framer-jSNoe[data-border=\"true\"]::after, .framer-jSNoe [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1439px) { .framer-jSNoe.framer-72rtr7 { width: 810px; } .framer-jSNoe .framer-1iyoh2c { background-color: var(--token-fab76ef7-771e-4cf6-97cc-48deee26da02, #010208); justify-content: flex-start; padding: 128px 64px 0px 64px; will-change: unset; } .framer-jSNoe .framer-17vx0p5-container { bottom: -323px; left: -282px; right: -283px; width: unset; } .framer-jSNoe .framer-1gxkxjd, .framer-jSNoe .framer-w68w2g, .framer-jSNoe .framer-18qxfkk { aspect-ratio: 6.131578947368421 / 1; height: var(--framer-aspect-ratio-supported, 31px); width: 190px; } .framer-jSNoe .framer-1csmffs { --framer-text-wrap: balance; } .framer-jSNoe .framer-1xm5nks { --framer-text-wrap: balance; max-width: unset; } .framer-jSNoe .framer-1r5ytmi, .framer-jSNoe .framer-sfppei { padding: 0px 64px 0px 64px; } .framer-jSNoe .framer-fdpq90, .framer-jSNoe .framer-i93pax, .framer-jSNoe .framer-47xce8, .framer-jSNoe .framer-13gl08c, .framer-jSNoe .framer-1l3j4ll, .framer-jSNoe .framer-4u0j57 { width: 100%; } .framer-jSNoe .framer-t8zl60 { height: auto; width: 629px; } .framer-jSNoe .framer-m762ze { padding: 29px 64px 29px 64px; } .framer-jSNoe .framer-4pn1jw, .framer-jSNoe .framer-5euih4, .framer-jSNoe .framer-1gbfmew, .framer-jSNoe .framer-182kdtz, .framer-jSNoe .framer-16bmfij { flex-direction: column; } .framer-jSNoe .framer-1cilfsm-container, .framer-jSNoe .framer-ypddax-container, .framer-jSNoe .framer-l2p4pw-container, .framer-jSNoe .framer-1lh6ehr-container, .framer-jSNoe .framer-17xtvhj-container, .framer-jSNoe .framer-1gqcs0j-container, .framer-jSNoe .framer-1teutti-container, .framer-jSNoe .framer-eh3ap8-container, .framer-jSNoe .framer-oi5o46-container { flex: none; width: 100%; } .framer-jSNoe .framer-1o8w7yx { height: auto; width: 626px; } .framer-jSNoe .framer-11o6oic { padding: 28px 64px 28px 64px; } .framer-jSNoe .framer-1fkce0j { width: 445px; } .framer-jSNoe .framer-1r6wqig { width: 504px; } .framer-jSNoe .framer-1u558xk { padding: 54px 64px 54px 64px; } .framer-jSNoe .framer-1ayrksd { width: 591px; } .framer-jSNoe .framer-b28p73 { width: 657px; } .framer-jSNoe .framer-dttu6r, .framer-jSNoe .framer-1vx828e { order: 1; } .framer-jSNoe .framer-t15uo1, .framer-jSNoe .framer-1ftm5p1 { order: 0; } .framer-jSNoe .framer-ydrhd6 { gap: 25px; order: 0; padding: 28px 64px 28px 64px; } .framer-jSNoe .framer-110suui { width: 532px; } .framer-jSNoe .framer-1ytm0s5 { width: 483px; } .framer-jSNoe .framer-1iddz8z, .framer-jSNoe .framer-1e3mjxb { width: 481px; } .framer-jSNoe .framer-lnxc26, .framer-jSNoe .framer-1ak2ops { flex: none; height: min-content; width: 100%; } .framer-jSNoe .framer-18wcdwf { width: 340px; } .framer-jSNoe .framer-1cp58ym { gap: 32px; } .framer-jSNoe .framer-lwq5kz { padding: 14px 0px 14px 0px; } .framer-jSNoe .framer-1472yq1-container { height: 825px; order: 0; } .framer-jSNoe .framer-1k323vb { gap: 0px; order: 0; padding: 15px 64px 15px 64px; } .framer-jSNoe .framer-1hzkw5h { order: 0; width: 567px; } .framer-jSNoe .framer-s38alp { order: 1; padding: 113px 0px 113px 0px; } .framer-jSNoe .framer-1wj30kn { width: var(--framer-aspect-ratio-supported, 596px); } .framer-jSNoe .framer-v1cxp2 { width: 654px; } .framer-jSNoe .framer-1rhx2j { align-self: unset; width: 354px; } .framer-jSNoe .framer-39vmdx, .framer-jSNoe .framer-1kd7ma8 { height: var(--framer-aspect-ratio-supported, 29px); } .framer-jSNoe .framer-ng721y { padding: 8px 64px 8px 64px; } .framer-jSNoe .framer-agsp8y { white-space: pre-wrap; width: 145px; word-break: break-word; word-wrap: break-word; } .framer-jSNoe .framer-afgjrv { width: 656px; } .framer-jSNoe .framer-1pbqb5s-container { width: 682px; } .framer-jSNoe .framer-z7yvmf { width: 692px; } .framer-jSNoe .framer-1ksoax8 { overflow: hidden; padding: 24px 32px 64px 32px; } .framer-jSNoe .framer-1rfc8iv { order: 2; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-jSNoe .framer-4pn1jw, .framer-jSNoe .framer-5euih4, .framer-jSNoe .framer-1gbfmew, .framer-jSNoe .framer-182kdtz, .framer-jSNoe .framer-ydrhd6, .framer-jSNoe .framer-16bmfij, .framer-jSNoe .framer-1cp58ym, .framer-jSNoe .framer-1k323vb { gap: 0px; } .framer-jSNoe .framer-4pn1jw > *, .framer-jSNoe .framer-5euih4 > *, .framer-jSNoe .framer-1gbfmew > *, .framer-jSNoe .framer-182kdtz > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-jSNoe .framer-4pn1jw > :first-child, .framer-jSNoe .framer-5euih4 > :first-child, .framer-jSNoe .framer-1gbfmew > :first-child, .framer-jSNoe .framer-182kdtz > :first-child, .framer-jSNoe .framer-ydrhd6 > :first-child, .framer-jSNoe .framer-16bmfij > :first-child, .framer-jSNoe .framer-1cp58ym > :first-child, .framer-jSNoe .framer-1k323vb > :first-child { margin-top: 0px; } .framer-jSNoe .framer-4pn1jw > :last-child, .framer-jSNoe .framer-5euih4 > :last-child, .framer-jSNoe .framer-1gbfmew > :last-child, .framer-jSNoe .framer-182kdtz > :last-child, .framer-jSNoe .framer-ydrhd6 > :last-child, .framer-jSNoe .framer-16bmfij > :last-child, .framer-jSNoe .framer-1cp58ym > :last-child, .framer-jSNoe .framer-1k323vb > :last-child { margin-bottom: 0px; } .framer-jSNoe .framer-ydrhd6 > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-jSNoe .framer-16bmfij > *, .framer-jSNoe .framer-1cp58ym > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-jSNoe .framer-1k323vb > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }}\",\"@media (max-width: 809px) { .framer-jSNoe.framer-72rtr7 { width: 390px; } .framer-jSNoe .framer-1is7gum-container { bottom: 20px; } .framer-jSNoe .framer-1iyoh2c { background-color: var(--token-fab76ef7-771e-4cf6-97cc-48deee26da02, #010208); padding: 0px 24px 0px 24px; will-change: unset; } .framer-jSNoe .framer-17vx0p5-container { bottom: -330px; left: -261px; right: -261px; width: unset; } .framer-jSNoe .framer-1gxkxjd { aspect-ratio: 6.131578947368421 / 1; height: var(--framer-aspect-ratio-supported, 24px); width: 147px; } .framer-jSNoe .framer-1csmffs { --framer-text-wrap: balance; } .framer-jSNoe .framer-1xm5nks { --framer-text-wrap: balance; max-width: unset; } .framer-jSNoe .framer-fdpq90, .framer-jSNoe .framer-47xce8, .framer-jSNoe .framer-1r6wqig, .framer-jSNoe .framer-13gl08c, .framer-jSNoe .framer-1e09niz, .framer-jSNoe .framer-1b8uunk, .framer-jSNoe .framer-7azck2, .framer-jSNoe .framer-cgy8wp, .framer-jSNoe .framer-v7kmku, .framer-jSNoe .framer-1cevalj, .framer-jSNoe .framer-1osn1u8, .framer-jSNoe .framer-1ufk1mk, .framer-jSNoe .framer-1a3rdvp, .framer-jSNoe .framer-1w7kyql, .framer-jSNoe .framer-96aeyf, .framer-jSNoe .framer-cgw2nu, .framer-jSNoe .framer-12kcyy2-container, .framer-jSNoe .framer-149kosq, .framer-jSNoe .framer-k24lvu, .framer-jSNoe .framer-n36r15, .framer-jSNoe .framer-1l3j4ll, .framer-jSNoe .framer-4u0j57 { width: 100%; } .framer-jSNoe .framer-t8zl60 { height: auto; width: 301px; } .framer-jSNoe .framer-r7z6a4 { width: 350px; } .framer-jSNoe .framer-m762ze { order: 0; padding: 96px 24px 96px 24px; } .framer-jSNoe .framer-i93pax, .framer-jSNoe .framer-t15uo1, .framer-jSNoe .framer-gs6gu6 { order: 0; width: 100%; } .framer-jSNoe .framer-4pn1jw, .framer-jSNoe .framer-5euih4, .framer-jSNoe .framer-1gbfmew, .framer-jSNoe .framer-182kdtz { flex-direction: column; } .framer-jSNoe .framer-1cilfsm-container, .framer-jSNoe .framer-ypddax-container, .framer-jSNoe .framer-l2p4pw-container, .framer-jSNoe .framer-1lh6ehr-container, .framer-jSNoe .framer-17xtvhj-container, .framer-jSNoe .framer-1gqcs0j-container, .framer-jSNoe .framer-1teutti-container, .framer-jSNoe .framer-eh3ap8-container, .framer-jSNoe .framer-oi5o46-container, .framer-jSNoe .framer-1k1y4f1 { flex: none; width: 100%; } .framer-jSNoe .framer-sfppei { padding: 0px 24px 0px 24px; } .framer-jSNoe .framer-1o8w7yx { height: auto; order: 0; width: 100%; } .framer-jSNoe .framer-14ac0t5 { max-width: 280px; order: 1; width: 100%; } .framer-jSNoe .framer-11o6oic, .framer-jSNoe .framer-3sest4 { padding: 96px 24px 96px 24px; } .framer-jSNoe .framer-1fkce0j { height: 109px; width: 100%; } .framer-jSNoe .framer-1u558xk { padding: 54px 24px 54px 24px; } .framer-jSNoe .framer-dttu6r { order: 1; width: 100%; } .framer-jSNoe .framer-vy1r5r, .framer-jSNoe .framer-o76hds, .framer-jSNoe .framer-7lotk6, .framer-jSNoe .framer-3y2mcp { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; } .framer-jSNoe .framer-y1lkyl, .framer-jSNoe .framer-6xlrda, .framer-jSNoe .framer-184r68d, .framer-jSNoe .framer-18wcdwf, .framer-jSNoe .framer-1so2di7 { flex: 1 0 0px; width: 1px; } .framer-jSNoe .framer-ydrhd6 { padding: 36px 24px 36px 24px; } .framer-jSNoe .framer-16bmfij { flex-direction: column; width: 100%; } .framer-jSNoe .framer-1ytm0s5, .framer-jSNoe .framer-1iddz8z { padding: 74px 24px 74px 24px; width: 100%; } .framer-jSNoe .framer-cvcu7q, .framer-jSNoe .framer-dxtq78 { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-jSNoe .framer-yp72w, .framer-jSNoe .framer-1e5qww3 { align-content: flex-start; align-items: flex-start; } .framer-jSNoe .framer-5di115, .framer-jSNoe .framer-lwq5kz { order: 1; } .framer-jSNoe .framer-ybk9gm { order: 2; width: 100%; } .framer-jSNoe .framer-4v8yw0, .framer-jSNoe .framer-2wkj4y { order: 3; } .framer-jSNoe .framer-1st95zz { order: 5; } .framer-jSNoe .framer-1e3mjxb { height: min-content; width: 100%; } .framer-jSNoe .framer-lnxc26, .framer-jSNoe .framer-1ak2ops { flex: none; height: min-content; width: 100%; } .framer-jSNoe .framer-qd89rh, .framer-jSNoe .framer-1jmcfgi, .framer-jSNoe .framer-jixb2f, .framer-jSNoe .framer-1e5o8yb { padding: 0px; width: 100%; } .framer-jSNoe .framer-1cp58ym { gap: 32px; padding: 60px 24px 60px 24px; } .framer-jSNoe .framer-1hp8isd, .framer-jSNoe .framer-11e05db-container { order: 0; } .framer-jSNoe .framer-1472yq1-container { height: 813px; } .framer-jSNoe .framer-1k323vb { padding: 28px 24px 28px 24px; } .framer-jSNoe .framer-1x7xne0 { height: var(--framer-aspect-ratio-supported, 426px); width: 341px; } .framer-jSNoe .framer-1wj30kn { height: 425px; width: var(--framer-aspect-ratio-supported, 340px); } .framer-jSNoe .framer-djhxzb { gap: 31px; width: 100%; } .framer-jSNoe .framer-1rhx2j { align-self: unset; order: 0; width: 258px; } .framer-jSNoe .framer-1hocwsd { flex-wrap: wrap; gap: 24px; order: 1; width: 100%; } .framer-jSNoe .framer-ca9bth { height: var(--framer-aspect-ratio-supported, 40px); width: 141px; } .framer-jSNoe .framer-1ko0q85 { height: var(--framer-aspect-ratio-supported, 40px); width: 235px; } .framer-jSNoe .framer-zp3tih { height: var(--framer-aspect-ratio-supported, 40px); width: 253px; } .framer-jSNoe .framer-1oj0p9b { height: var(--framer-aspect-ratio-supported, 40px); width: 145px; } .framer-jSNoe .framer-ng721y { padding: 24px; } .framer-jSNoe .framer-agsp8y { white-space: pre-wrap; width: 97px; word-break: break-word; word-wrap: break-word; } .framer-jSNoe .framer-1xxovoc { padding: 71px 24px 71px 24px; } .framer-jSNoe .framer-w68w2g { aspect-ratio: 6.131578947368421 / 1; height: var(--framer-aspect-ratio-supported, 24px); order: 1; width: 147px; } .framer-jSNoe .framer-z7yvmf { order: 2; } .framer-jSNoe .framer-ubj170 { order: 4; } .framer-jSNoe .framer-1ksoax8 { flex-direction: column; padding: 24px 24px 32px 24px; } .framer-jSNoe .framer-ceh1oe { flex-direction: column; gap: 24px; justify-content: center; } .framer-jSNoe .framer-o6ntg3 { width: min-content; } .framer-jSNoe .framer-efkbzv { flex-direction: column; gap: 16px; justify-content: center; } .framer-jSNoe .framer-1ftm5p1 { flex: none; order: 1; width: 100%; } .framer-jSNoe .framer-1rfc8iv { flex: none; order: 0; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-jSNoe .framer-4pn1jw, .framer-jSNoe .framer-5euih4, .framer-jSNoe .framer-1gbfmew, .framer-jSNoe .framer-182kdtz, .framer-jSNoe .framer-16bmfij, .framer-jSNoe .framer-1cp58ym, .framer-jSNoe .framer-djhxzb, .framer-jSNoe .framer-1hocwsd, .framer-jSNoe .framer-1ksoax8, .framer-jSNoe .framer-ceh1oe, .framer-jSNoe .framer-efkbzv { gap: 0px; } .framer-jSNoe .framer-4pn1jw > *, .framer-jSNoe .framer-5euih4 > *, .framer-jSNoe .framer-1gbfmew > *, .framer-jSNoe .framer-182kdtz > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-jSNoe .framer-4pn1jw > :first-child, .framer-jSNoe .framer-5euih4 > :first-child, .framer-jSNoe .framer-1gbfmew > :first-child, .framer-jSNoe .framer-182kdtz > :first-child, .framer-jSNoe .framer-16bmfij > :first-child, .framer-jSNoe .framer-1cp58ym > :first-child, .framer-jSNoe .framer-djhxzb > :first-child, .framer-jSNoe .framer-1ksoax8 > :first-child, .framer-jSNoe .framer-ceh1oe > :first-child, .framer-jSNoe .framer-efkbzv > :first-child { margin-top: 0px; } .framer-jSNoe .framer-4pn1jw > :last-child, .framer-jSNoe .framer-5euih4 > :last-child, .framer-jSNoe .framer-1gbfmew > :last-child, .framer-jSNoe .framer-182kdtz > :last-child, .framer-jSNoe .framer-16bmfij > :last-child, .framer-jSNoe .framer-1cp58ym > :last-child, .framer-jSNoe .framer-djhxzb > :last-child, .framer-jSNoe .framer-1ksoax8 > :last-child, .framer-jSNoe .framer-ceh1oe > :last-child, .framer-jSNoe .framer-efkbzv > :last-child { margin-bottom: 0px; } .framer-jSNoe .framer-16bmfij > *, .framer-jSNoe .framer-1cp58ym > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-jSNoe .framer-djhxzb > * { margin: 0px; margin-bottom: calc(31px / 2); margin-top: calc(31px / 2); } .framer-jSNoe .framer-1hocwsd > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-jSNoe .framer-1hocwsd > :first-child { margin-left: 0px; } .framer-jSNoe .framer-1hocwsd > :last-child { margin-right: 0px; } .framer-jSNoe .framer-1ksoax8 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-jSNoe .framer-ceh1oe > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-jSNoe .framer-efkbzv > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 12666\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"xSFMhnjU5\":{\"layout\":[\"fixed\",\"auto\"]},\"JXMPRkVjQ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"W3ndVywZk\":{\"pattern\":\":W3ndVywZk\",\"name\":\"hero\"},\"FjDWvnEqu\":{\"pattern\":\":FjDWvnEqu\",\"name\":\"how-it-works\"},\"ga2YQ4Edb\":{\"pattern\":\":ga2YQ4Edb\",\"name\":\"our-mission\"},\"HfbXUU2y_\":{\"pattern\":\":HfbXUU2y_\",\"name\":\"benefits\"},\"qzESH2_gj\":{\"pattern\":\":qzESH2_gj\",\"name\":\"features\"},\"t4fQw0KZZ\":{\"pattern\":\":t4fQw0KZZ\",\"name\":\"pricing\"},\"CAU0XeMS_\":{\"pattern\":\":CAU0XeMS_\",\"name\":\"discoverycall\"},\"ym_sKtVnJ\":{\"pattern\":\":ym_sKtVnJ\",\"name\":\"work\"},\"izsppp4fT\":{\"pattern\":\":izsppp4fT\",\"name\":\"faqs\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-jSNoe\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:12666,width:1440};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TTX2Z3BF3P6Y5BQT3IV2VNOK6FL22KUT/7QYRJOI3JIMYHGY6CH7SOIFRQLZOLNJ6/KFIAZD4RUMEZIYV6FQ3T3GP5PDBDB6JY.woff2\",weight:\"400\"},{family:\"Satoshi\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/MPIFA4B3XXRNY2MJDGP6GOOOAF6EOCLO/W5E4ZFYPJ3V6JKMBGHB6YMITK6EWS2XA/QOMBWPST76ICDYF6WOBS7SQ7RBT67QW2.woff2\",weight:\"400\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"}]},...DockFonts,...VideoFonts,...ButtonFonts,...ShimmerFonts,...FeatureBoxFonts,...RotatingGradientFonts,...Button1Fonts,...NoiseFonts,...FeatureFonts,...EmbedFonts,...AccordionFonts,...SocialButtonFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerResponsiveScreen\":\"\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xSFMhnjU5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"JXMPRkVjQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerScrollSections\":\"{\\\"W3ndVywZk\\\":{\\\"pattern\\\":\\\":W3ndVywZk\\\",\\\"name\\\":\\\"hero\\\"},\\\"FjDWvnEqu\\\":{\\\"pattern\\\":\\\":FjDWvnEqu\\\",\\\"name\\\":\\\"how-it-works\\\"},\\\"ga2YQ4Edb\\\":{\\\"pattern\\\":\\\":ga2YQ4Edb\\\",\\\"name\\\":\\\"our-mission\\\"},\\\"HfbXUU2y_\\\":{\\\"pattern\\\":\\\":HfbXUU2y_\\\",\\\"name\\\":\\\"benefits\\\"},\\\"qzESH2_gj\\\":{\\\"pattern\\\":\\\":qzESH2_gj\\\",\\\"name\\\":\\\"features\\\"},\\\"t4fQw0KZZ\\\":{\\\"pattern\\\":\\\":t4fQw0KZZ\\\",\\\"name\\\":\\\"pricing\\\"},\\\"CAU0XeMS_\\\":{\\\"pattern\\\":\\\":CAU0XeMS_\\\",\\\"name\\\":\\\"discoverycall\\\"},\\\"ym_sKtVnJ\\\":{\\\"pattern\\\":\\\":ym_sKtVnJ\\\",\\\"name\\\":\\\"work\\\"},\\\"izsppp4fT\\\":{\\\"pattern\\\":\\\":izsppp4fT\\\",\\\"name\\\":\\\"faqs\\\"}}\",\"framerIntrinsicHeight\":\"12666\",\"framerDisplayContentsDiv\":\"false\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "guBAQkB,SAARA,GAAuB,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,GAAM,CAAC,KAAK,CAAC,KAAKU,EAAY,KAAK,aAAa,MAAM,wBAAwB,GAAK,QAAQ,CAAC,MAAM,MAAM,EAAE,aAAa,CAAC,MAAM,MAAM,CAAC,EAAE,IAAI,CAAC,MAAM,MAAM,KAAKA,EAAY,OAAO,YAAY,8CAAyC,OAAOC,EAAM,CAAC,OAAOA,EAAM,OAAO,KAAM,CAAC,EAAE,KAAK,CAAC,MAAM,OAAO,KAAKD,EAAY,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,GAAU,IAAI,CAEvE,GAAG,CAACL,EAAS,OACb,IAAIM,EAAa,GAAKH,EAAS,MAAS,EAAE,eAAeI,GAAM,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,CAAG,KAAK,CAAC,IAAMC,EAAQ,MAAMF,EAAS,KAAK,EAAE,QAAQ,MAAME,CAAO,EAAE,IAAMC,EAAM,IAAI,MAAM,kCAA6B,EAAER,EAASQ,CAAK,CAAE,CAAC,CAAC,OAAAJ,EAAK,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,CAAG,uCAAuC,OAAoBG,EAAKuB,GAAa,CAAC,QAAQF,EAAQ,MAAMtB,CAAK,CAAC,CAAE,CAAC,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,CAAE,CAAC,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,GAAU,IAAI,CAAC,IAAIqB,EAAa,IAAMC,GAAcD,EAAaJ,EAAI,WAAW,MAAMI,IAAe,OAAO,OAAOA,EAAa,cAAc,SAASE,EAAcC,EAAM,CAAC,GAAGA,EAAM,SAASF,EAAa,OAAO,IAAMG,EAAKD,EAAM,KAAK,GAAG,OAAOC,GAAO,UAAUA,IAAO,KAAK,OAAO,IAAMC,EAAOD,EAAK,YAAe,OAAOC,GAAS,UAAgBN,EAAgBM,CAAM,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,CAAI;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,EA6BN+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,GAAU,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,CAAE,KAAM,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,CC1Fsa,IAAMwD,GAAcC,EAASC,EAAQ,EAAQC,GAAiBC,GAAoBF,EAAQ,EAAQG,GAAW,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,iBAAiB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,IAAI,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,GAAG,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAmB,CAACC,EAAEC,IAAI,oBAAoBA,CAAC,GAASC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,CAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,GAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAaC,CAAQ,EAAQC,GAAwB,CAAC,oBAAoB,YAAY,KAAK,YAAY,QAAQ,YAAY,MAAM,YAAY,OAAO,YAAY,UAAU,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,KAAAC,EAAK,GAAAC,EAAG,KAAAC,EAAK,YAAAC,EAAY,aAAAC,EAAa,MAAAC,EAAM,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAKC,EAAMC,EAAMC,EAAuCC,EAAM,MAAM,CAAC,GAAGL,EAAM,WAAWC,EAAKJ,GAAwDG,EAAM,aAAa,MAAMC,IAAO,OAAOA,EAAK,GAAK,WAAWC,EAAMT,GAAgCO,EAAM,aAAa,MAAME,IAAQ,OAAOA,EAAM,QAAQ,UAAUN,GAAqDI,EAAM,UAAU,WAAWG,EAAML,GAAmCE,EAAM,aAAa,MAAMG,IAAQ,OAAOA,EAAM,OAAO,SAASE,GAAOD,EAAuCd,GAAwBU,EAAM,OAAO,KAAK,MAAMI,IAAyC,OAAOA,EAAuCJ,EAAM,WAAW,MAAMK,IAAQ,OAAOA,EAAM,YAAY,UAAUV,GAAgCK,EAAM,SAAS,CAAE,EAAQM,GAAuB,CAACN,EAAMjC,IAAeiC,EAAM,iBAAwBjC,EAAS,KAAK,GAAG,EAAEiC,EAAM,iBAAwBjC,EAAS,KAAK,GAAG,EAAUwC,GAA6BC,EAAW,SAASR,EAAMS,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAA9C,EAAQ,UAAA+C,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAE9B,GAASS,CAAK,EAAO,CAAC,YAAAsB,EAAY,WAAAC,GAAW,oBAAAC,GAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAA9D,CAAQ,EAAE+D,GAAgB,CAAC,WAAApE,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQmE,EAAiBzB,GAAuBN,EAAMjC,CAAQ,EAAO,CAAC,sBAAAiE,EAAsB,MAAAC,CAAK,EAAEC,GAAyBZ,CAAW,EAAQa,EAAoBH,EAAsB,SAASI,KAAO,CAAmC,GAAlCR,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAKT,GAAqB,MAAMA,EAAU,GAAGiB,EAAI,IAAW,GAAM,MAAO,GAAOP,EAAW,WAAW,CAAE,CAAC,EAAQQ,GAAaL,EAAsB,SAASI,KAAO,CAACR,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAEC,EAAW,WAAW,CAAE,CAAC,EAAQS,GAAmBN,EAAsB,SAASI,KAAO,CAAmC,GAAlCR,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAKT,GAAqB,MAAMA,EAAU,GAAGiB,EAAI,IAAW,GAAM,MAAO,EAAO,CAAC,EAAQG,GAAoBP,EAAsB,SAASI,KAAO,CAACR,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAEC,EAAW,WAAW,CAAE,CAAC,EAAQW,GAAeR,EAAsB,SAASI,KAAO,CAAC,MAAMH,EAAM,IAAIJ,EAAW,WAAW,EAAE,GAAG,CAAE,CAAC,EAAQY,GAAoBT,EAAsB,SAASI,KAAO,CAAmC,GAAlCR,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAKT,GAAqB,MAAMA,EAAU,GAAGiB,EAAI,IAAW,GAAM,MAAO,GAAOP,EAAW,WAAW,CAAE,CAAC,EAAQa,GAAmBV,EAAsB,SAASI,KAAO,CAACR,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAEC,EAAW,WAAW,CAAE,CAAC,EAAEc,GAAmBrB,EAAY,CAAC,UAAUkB,EAAc,CAAC,EAAE,IAAMI,GAAWC,EAAO,IAAI,EAAQC,GAAY,IAAQxB,IAAc,YAA6CyB,GAAsBC,EAAM,EAAQC,GAAsB,CAAC,EAAQC,GAAkBC,EAAqB,EAAE,OAAoBjE,EAAKkE,EAAY,CAAC,GAAGrC,GAA4CgC,GAAgB,SAAsB7D,EAAKC,GAAS,CAAC,QAAQpB,EAAS,QAAQ,GAAM,SAAsBmB,EAAKT,GAAW,CAAC,MAAMP,GAAY,GAAGL,GAAqB,CAAC,UAAU,CAAC,MAAMQ,EAAW,EAAE,UAAU,CAAC,MAAMF,EAAW,EAAE,UAAU,CAAC,MAAMA,EAAW,EAAE,UAAU,CAAC,MAAMC,EAAW,CAAC,EAAEkD,EAAYI,CAAc,EAAE,SAAsBxC,EAAKmE,GAAK,CAAC,KAAKnC,EAAU,aAAa,GAAM,aAAaE,EAAU,GAAGvD,GAAqB,CAAC,UAAU,CAAC,aAAa,EAAK,CAAC,EAAEyD,EAAYI,CAAc,EAAE,SAAsB4B,EAAMlE,EAAO,EAAE,CAAC,GAAGiC,EAAU,GAAGI,EAAgB,UAAU,GAAG8B,EAAG5F,GAAkB,GAAGsF,GAAsB,gBAAgBnC,EAAUS,EAAU,CAAC,iBAAiB,mBAAmB,OAAO,iBAAiB,GAAK,iBAAiBQ,EAAiB,SAAS,YAAY,aAAaI,EAAoB,IAAI1B,GAA6BmC,GAAK,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,GAAG/B,CAAK,EAAE,SAAS,CAAC,UAAU,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,UAAU,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,CAAC,EAAE,GAAGhD,GAAqB,CAAC,UAAU,CAAC,mBAAmB,SAAS,iBAAiB,OAAU,aAAa,MAAS,EAAE,UAAU,CAAC,mBAAmB,QAAQ,aAAayE,GAAmB,aAAaC,GAAoB,MAAMF,EAAY,EAAE,UAAU,CAAC,mBAAmB,oBAAoB,aAAaC,GAAmB,aAAaI,EAAkB,EAAE,UAAU,CAAC,mBAAmB,YAAY,aAAaD,EAAmB,EAAE,UAAU,CAAC,mBAAmB,UAAU,aAAaH,GAAmB,aAAaC,EAAmB,CAAC,EAAEjB,EAAYI,CAAc,EAAE,SAAS,CAACoB,GAAY,GAAgB5D,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,iBAAiB2C,EAAiB,SAAS,YAAY,MAAM,CAAC,eAAe,YAAY,gBAAgB,eAAe,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,UAAU,2CAA2C,QAAQ,EAAE,qBAAqB,WAAW,EAAE,kBAAkBzD,GAAmB,SAAS,CAAC,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,CAAC,EAAE,SAAsBY,EAAKsE,EAAS,CAAC,sBAAsB,GAAK,SAAsBtE,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,qBAAqB,OAAO,sBAAsB,mDAAmD,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiB2C,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,2BAA2B,2BAA2B,mBAAmB,gCAAgC,YAAY,6BAA6B,KAAK,EAAE,KAAKd,EAAU,SAAS,CAAC,UAAU,CAAC,qBAAqB,6EAA6E,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGpD,GAAqB,CAAC,UAAU,CAAC,SAAsBqB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,QAAQ,sBAAsB,sGAAsG,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,mBAAmB,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,QAAQ,sBAAsB,mDAAmD,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,mBAAmB,CAAC,CAAC,EAAEkC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,EAAe4B,EAAMlE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiB2C,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAS,CAAC,UAAU,CAAC,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,EAAE,UAAU,CAAC,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,EAAE,SAAS,CAAc7C,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,iBAAiB2C,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,kEAAkE,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,IAAI,UAAU,gDAAgD,EAAE,SAAS,CAAC,UAAU,CAAC,UAAU,iDAAiD,CAAC,EAAE,SAAsB7C,EAAKuE,EAA0B,CAAC,SAAsBvE,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB2C,EAAiB,SAAS,sBAAsB,SAAsB7C,EAAK3B,GAAS,CAAC,MAAM,qBAAqB,OAAO,OAAO,WAAW,QAAQ,cAAcyD,EAAU,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,OAAO,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe9B,EAAKwE,GAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,OAAO,WAAW,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,OAAO,GAAG,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,QAAQ,CAAC,EAAE,IAAI,8GAA8G,aAAa,YAAY,SAAS,CAAC,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,CAAC,EAAE,mBAAmB,GAAK,GAAGlE,GAAqB,CAAC,UAAU,CAAC,QAAQ,EAAE,aAAa,UAAU,EAAE,UAAU,CAAC,QAAQ,EAAE,aAAa,UAAU,EAAE,UAAU,CAAC,QAAQ,EAAE,aAAa,UAAU,CAAC,EAAEyD,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQiC,GAAI,CAAC,kFAAkF,gFAAgF,+RAA+R,oUAAoU,gHAAgH,yRAAyR,wRAAwR,wGAAwG,6FAA6F,s7BAAs7B,mHAAmH,gEAAgE,0IAA0I,wFAAwF,kGAAkG,gEAAgE,0IAA0I,wFAAwF,6GAA6G,ibAAib,gEAAgE,ibAAib,+DAA+D,oEAAoE,obAAob,EASv6fC,GAAgBC,EAAQtD,GAAUoD,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,oBAAoBA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,EAAE,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,OAAO,QAAQ,UAAU,YAAY,oBAAoB,QAAQ,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAqExG,IAAiB,eAAmB,CAAC,GAAGA,GAAiB,cAAiB,aAAa,QAAQ,YAAY,OAAU,OAAO,OAAU,MAAM,MAAM,EAAE,UAAU,CAAC,aAAa,OAAO,gBAAgB,GAAM,MAAM,QAAQ,KAAKwG,EAAY,MAAM,EAAE,UAAU,CAAC,MAAM,OAAO,KAAKA,EAAY,IAAI,EAAE,UAAU,CAAC,MAAM,gBAAgB,KAAKA,EAAY,YAAY,EAAE,UAAU,CAAC,aAAa,GAAK,MAAM,gBAAgB,KAAKA,EAAY,OAAO,CAAC,CAAC,EAAEC,EAASL,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,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGvG,EAAa,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECT3rE,IAAM6G,GAAsBC,EAASC,EAAgB,EAAQC,GAAWF,EAASG,EAAK,EAAQC,GAAW,CAAC,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,iBAAiB,EAAE,SAASC,EAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAAAD,GAAU,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,CAAmB,EAAQC,EAAWL,GAAOE,EAAO,WAAiBI,EAAmBC,GAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,sBAAsB,YAAY,QAAQ,YAAY,OAAO,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,QAAQL,GAAwBK,EAAM,OAAO,GAAGA,EAAM,SAAS,WAAW,GAAUC,GAAuB,CAACD,EAAMtB,IAAesB,EAAM,iBAAwBtB,EAAS,KAAK,GAAG,EAAEsB,EAAM,iBAAwBtB,EAAS,KAAK,GAAG,EAAUwB,GAA6BC,EAAW,SAASH,EAAMI,EAAI,CAAC,IAAMC,EAAYC,EAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,EAAM,EAAO,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAQC,EAAkBC,EAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAArC,EAAQ,GAAGsC,CAAS,EAAEtB,GAASI,CAAK,EAAO,CAAC,YAAAmB,EAAY,WAAAC,EAAW,oBAAAC,GAAoB,gBAAAC,GAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAAhD,CAAQ,EAAEiD,GAAgB,CAAC,WAAAtD,GAAW,eAAe,YAAY,IAAIkC,EAAW,QAAA3B,EAAQ,kBAAAL,EAAiB,CAAC,EAAQqD,EAAiB3B,GAAuBD,EAAMtB,CAAQ,EAAuCmD,EAAkBC,EAAGxD,GAAkB,GAAhD,CAAC,CAAuE,EAAQyD,EAAOC,GAAU,EAAE,OAAoBzC,EAAK0C,EAAY,CAAC,GAAGhB,GAAUT,EAAgB,SAAsBjB,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBU,EAAKE,EAAO,IAAI,CAAC,GAAGyB,EAAU,GAAGI,GAAgB,UAAUQ,EAAGD,EAAkB,iBAAiBb,EAAUI,CAAU,EAAE,mBAAmB,UAAU,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIrB,EAAW,MAAM,CAAC,GAAGQ,CAAK,EAAE,GAAGvC,EAAqB,CAAC,UAAU,CAAC,mBAAmB,QAAQ,EAAE,UAAU,CAAC,mBAAmB,qBAAqB,CAAC,EAAE2C,EAAYI,CAAc,EAAE,SAAsBW,EAAMzC,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,uBAAuB,GAAK,iBAAiBmC,EAAiB,SAAS,YAAY,MAAM,CAAC,eAAe,aAAa,gBAAgB,4BAA4B,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,2CAA2C,qBAAqB,YAAY,EAAE,SAAS,CAAcM,EAAMzC,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,uBAAuB,GAAK,iBAAiBmC,EAAiB,SAAS,YAAY,SAAS,CAAcrC,EAAK4C,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASC,GAA4B7C,EAAK8C,EAA0B,CAAC,OAAO,GAAG,GAAGxB,GAAmB,GAAG,GAAG,IAAIA,GAAmB,QAAQ,IAAI,EAAE,IAAI,EAAE,EAAE,GAAG,EAAE,GAAGrC,EAAqB,CAAC,UAAU,CAAC,GAAGqC,GAAmB,GAAG,GAAG,IAAIA,GAAmB,QAAQ,IAAI,EAAE,IAAI,EAAE,EAAE,EAAE,CAAC,CAAC,EAAEM,EAAYI,CAAc,EAAE,SAAsBhC,EAAK+C,EAA8B,CAAC,UAAU,2BAA2B,iBAAiBV,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrC,EAAKrB,GAAiB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,GAAK,UAAU,SAAS,UAAU,eAAe,QAAQ,YAAY,MAAM,OAAO,UAAUkE,EAAc,CAAC,EAAE,GAAG5D,EAAqB,CAAC,UAAU,CAAC,QAAQ,YAAY,UAAU4D,EAAc,CAAC,CAAC,EAAE,UAAU,CAAC,QAAQ,YAAY,UAAUA,EAAc,CAAC,CAAC,CAAC,EAAEjB,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAK4C,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASI,GAA6BhD,EAAK8C,EAA0B,CAAC,OAAO,GAAG,GAAGxB,GAAmB,GAAG,GAAG,IAAIA,GAAmB,QAAQ,IAAI,EAAE,IAAI,EAAE,EAAE,GAAG,EAAE,GAAGrC,EAAqB,CAAC,UAAU,CAAC,GAAGqC,GAAmB,GAAG,GAAG,IAAIA,GAAmB,QAAQ,IAAI,EAAE,IAAI,EAAE,EAAE,EAAE,CAAC,CAAC,EAAEM,EAAYI,CAAc,EAAE,SAAsBhC,EAAK+C,EAA8B,CAAC,UAAU,2BAA2B,iBAAiBV,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrC,EAAKrB,GAAiB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,GAAK,UAAU,WAAW,UAAU,WAAW,QAAQ,YAAY,MAAM,OAAO,UAAUqE,EAAe,CAAC,EAAE,GAAG/D,EAAqB,CAAC,UAAU,CAAC,UAAU+D,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAEpB,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAK4C,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASK,GAA6BjD,EAAK8C,EAA0B,CAAC,OAAO,GAAG,GAAGxB,GAAmB,GAAG,GAAG,IAAIA,GAAmB,QAAQ,IAAI,EAAE,IAAI,EAAE,EAAE,GAAG,EAAE,GAAGrC,EAAqB,CAAC,UAAU,CAAC,GAAGqC,GAAmB,GAAG,GAAG,IAAIA,GAAmB,QAAQ,IAAI,EAAE,IAAI,EAAE,EAAE,EAAE,CAAC,CAAC,EAAEM,EAAYI,CAAc,EAAE,SAAsBhC,EAAK+C,EAA8B,CAAC,UAAU,2BAA2B,iBAAiBV,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrC,EAAKrB,GAAiB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,GAAK,UAAU,WAAW,UAAU,WAAW,QAAQ,YAAY,MAAM,OAAO,UAAUsE,EAAe,CAAC,EAAE,GAAGhE,EAAqB,CAAC,UAAU,CAAC,UAAUgE,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAErB,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAK4C,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASM,GAA6BlD,EAAK8C,EAA0B,CAAC,OAAO,GAAG,GAAGxB,GAAmB,GAAG,GAAG,IAAIA,GAAmB,QAAQ,IAAI,EAAE,IAAI,EAAE,EAAE,GAAG,EAAE,GAAGrC,EAAqB,CAAC,UAAU,CAAC,GAAGqC,GAAmB,GAAG,GAAG,IAAIA,GAAmB,QAAQ,IAAI,EAAE,IAAI,EAAE,EAAE,EAAE,CAAC,CAAC,EAAEM,EAAYI,CAAc,EAAE,SAAsBhC,EAAK+C,EAA8B,CAAC,UAAU,0BAA0B,iBAAiBV,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrC,EAAKrB,GAAiB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,GAAK,UAAU,QAAQ,UAAU,QAAQ,QAAQ,YAAY,MAAM,OAAO,UAAUuE,EAAe,CAAC,EAAE,GAAGjE,EAAqB,CAAC,UAAU,CAAC,UAAUiE,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAEtB,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAK4C,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASO,GAA6BnD,EAAK8C,EAA0B,CAAC,OAAO,GAAG,GAAGxB,GAAmB,GAAG,GAAG,IAAIA,GAAmB,QAAQ,IAAI,EAAE,IAAI,EAAE,EAAE,GAAG,EAAE,GAAGrC,EAAqB,CAAC,UAAU,CAAC,GAAGqC,GAAmB,GAAG,GAAG,IAAIA,GAAmB,QAAQ,IAAI,EAAE,IAAI,EAAE,EAAE,EAAE,CAAC,CAAC,EAAEM,EAAYI,CAAc,EAAE,SAAsBhC,EAAK+C,EAA8B,CAAC,UAAU,0BAA0B,iBAAiBV,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrC,EAAKrB,GAAiB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,GAAK,UAAU,QAAQ,UAAU,aAAa,QAAQ,YAAY,MAAM,OAAO,UAAUwE,EAAe,CAAC,EAAE,GAAGlE,EAAqB,CAAC,UAAU,CAAC,UAAUkE,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAEvB,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAK4C,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASQ,GAA6BpD,EAAK8C,EAA0B,CAAC,OAAO,GAAG,GAAGxB,GAAmB,GAAG,GAAG,IAAIA,GAAmB,QAAQ,IAAI,EAAE,IAAI,EAAE,EAAE,GAAG,EAAE,GAAGrC,EAAqB,CAAC,UAAU,CAAC,GAAGqC,GAAmB,GAAG,GAAG,IAAIA,GAAmB,QAAQ,IAAI,EAAE,IAAI,EAAE,EAAE,EAAE,CAAC,CAAC,EAAEM,EAAYI,CAAc,EAAE,SAAsBhC,EAAK+C,EAA8B,CAAC,UAAU,0BAA0B,iBAAiBV,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrC,EAAKrB,GAAiB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,GAAK,UAAU,WAAW,UAAU,OAAO,QAAQ,YAAY,MAAM,OAAO,UAAUyE,EAAe,CAAC,EAAE,GAAGnE,EAAqB,CAAC,UAAU,CAAC,UAAUmE,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAExB,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAK8C,EAA0B,CAAC,SAAsB9C,EAAK+C,EAA8B,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,iBAAiBV,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,QAAQ,EAAE,EAAE,SAAsBrC,EAAKnB,GAAM,CAAC,eAAe,IAAI,aAAa,GAAG,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,GAAG,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQwE,GAAI,CAAC,kFAAkF,kFAAkF,4QAA4Q,wRAAwR,qTAAqT,+TAA+T,wIAAwI,gvBAAgvB,kHAAkH,0GAA0G,iIAAiI,iIAAiI,iIAAiI,+HAA+H,+HAA+H,+HAA+H,ibAAib,8EAA8E,6JAA6J,yKAAyK,oHAAoH,EAQxueC,GAAgBC,EAAQ5C,GAAU0C,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,OAAOA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,GAAG,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,UAAU,SAAS,qBAAqB,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,EAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,EAAE,GAAG7E,GAAsB,GAAGG,EAAU,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECRrN,IAAMgF,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,EAAkO,IAAMC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,CAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,GAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAaC,CAAQ,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAK,MAAM,CAAC,GAAGD,EAAM,WAAWC,EAAKH,GAAmCE,EAAM,aAAa,MAAMC,IAAO,OAAOA,EAAK,2BAA2B,CAAE,EAAQC,GAAuB,CAACF,EAAMG,IAAeH,EAAM,iBAAwBG,EAAS,KAAK,GAAG,EAAEH,EAAM,iBAAwBG,EAAS,KAAK,GAAG,EAAUC,GAA6BC,EAAW,SAASL,EAAMM,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,UAAAC,EAAU,GAAGC,CAAS,EAAEpB,GAASK,CAAK,EAAO,CAAC,YAAAgB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,GAAU,gBAAAC,GAAgB,WAAAC,EAAW,SAAApB,CAAQ,EAAEqB,GAAgB,CAAC,eAAe,YAAY,QAAAX,EAAQ,kBAAAY,EAAiB,CAAC,EAAQC,EAAiBxB,GAAuBF,EAAMG,CAAQ,EAAQwB,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,EAAM,EAAQC,EAAsB,CAAC,EAAQC,EAAkBC,EAAqB,EAAE,OAAoB1C,EAAK2C,EAAY,CAAC,GAAGtB,GAA4CiB,EAAgB,SAAsBtC,EAAKC,GAAS,CAAC,QAAQW,EAAS,QAAQ,GAAM,SAAsBZ,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBsD,EAAM1C,EAAO,IAAI,CAAC,GAAGsB,EAAU,GAAGI,EAAgB,UAAUiB,EAAGC,GAAkB,GAAGN,EAAsB,iBAAiBpB,EAAUM,CAAU,EAAE,mBAAmB,YAAY,iBAAiBS,EAAiB,SAAS,YAAY,IAAIpB,GAA6BqB,EAAK,MAAM,CAAC,GAAGjB,CAAK,EAAE,SAAS,CAAcnB,EAAK+C,GAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBZ,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA,EAA4nB,mBAAmB,EAAI,CAAC,EAAenC,EAAKgD,EAAS,CAAC,sBAAsB,GAAK,SAAsBhD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,uBAAuB,MAAM,0BAA0B,MAAM,uBAAuB,QAAQ,sBAAsB,gGAAgG,EAAE,SAAS,2BAA2B,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,MAAM,CAAC,mBAAmB,EAAE,iBAAiBiC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,6BAA6B,MAAM,EAAE,KAAKZ,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQ0B,GAAI,CAAC,kFAAkF,gFAAgF,2QAA2Q,+FAA+F,gHAAgH,4WAA4W,EAS1pKC,GAAgBC,EAAQtC,GAAUoC,GAAI,cAAc,EAASG,EAAQF,GAAgBA,GAAgB,YAAY,UAAUA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,GAAG,EAAEG,GAAoBH,GAAgB,CAAC,UAAU,CAAC,aAAa,4BAA4B,gBAAgB,GAAM,MAAM,QAAQ,KAAKI,EAAY,MAAM,CAAC,CAAC,EAAEC,EAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,UAAU,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECTzK,IAAMM,GAAaC,EAASC,EAAO,EAAQC,GAAgBC,GAAoBF,EAAO,EAAQG,GAAW,CAAC,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,kBAAkB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAAAD,GAAU,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,CAAmB,EAAQC,EAAWL,GAAOE,EAAO,WAAiBI,EAAmBC,GAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,KAAAC,EAAK,GAAAC,EAAG,KAAAC,EAAK,OAAAC,EAAO,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,UAAUH,GAAMG,EAAM,UAAU,UAAUF,GAAQE,EAAM,WAAW,GAAK,UAAUL,GAAMK,EAAM,WAAW,UAAU,QAAQR,GAAwBQ,EAAM,OAAO,GAAGA,EAAM,SAAS,WAAW,GAAUC,GAAuB,CAACD,EAAMzB,IAAeyB,EAAM,iBAAwBzB,EAAS,KAAK,GAAG,EAAEyB,EAAM,iBAAwBzB,EAAS,KAAK,GAAG,EAAU2B,GAA6BC,EAAW,SAASH,EAAMI,EAAI,CAAC,IAAMC,EAAYC,EAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,EAAM,EAAO,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAQC,EAAkBC,EAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAxC,EAAQ,UAAAyC,EAAU,UAAAC,EAAU,UAAAC,EAAU,GAAGC,EAAS,EAAE5B,GAASO,CAAK,EAAO,CAAC,YAAAsB,GAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAAtD,CAAQ,EAAEuD,GAAgB,CAAC,WAAA5D,GAAW,eAAe,YAAY,IAAIqC,EAAW,QAAA9B,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ2D,EAAiB9B,GAAuBD,EAAMzB,CAAQ,EAAuCyD,GAAkBC,EAAG9D,GAAkB,GAAhD,CAAC,CAAuE,EAAE,OAAoBiB,EAAK8C,EAAY,CAAC,GAAGjB,GAAUT,EAAgB,SAAsBpB,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBU,EAAK+C,GAAK,CAAC,KAAKhB,EAAU,YAAY,GAAK,OAAO,YAAY,aAAaC,EAAU,QAAQ,YAAY,aAAa,GAAK,SAAsBhC,EAAKE,EAAO,EAAE,CAAC,GAAG+B,GAAU,GAAGI,EAAgB,UAAU,GAAGQ,EAAGD,GAAkB,gBAAgBhB,EAAUO,CAAU,CAAC,iBAAiB,mBAAmB,YAAY,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIxB,EAAW,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,GAAGQ,CAAK,EAAE,GAAG1C,GAAqB,CAAC,UAAU,CAAC,mBAAmB,WAAW,CAAC,EAAEiD,GAAYI,CAAc,EAAE,SAAsBtC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiByC,EAAiB,SAAS,YAAY,SAAsB3C,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,iBAAiByC,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,4BAA4B,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,eAAe,YAAY,gBAAgB,4BAA4B,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,UAAU,mDAAmD,qBAAqB,WAAW,EAAE,SAAsB3C,EAAKE,EAAO,IAAI,CAAC,UAAU,eAAe,cAAc,GAAK,mBAAmB,UAAU,iBAAiByC,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,4BAA4B,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,eAAe,YAAY,WAAW,wFAAwF,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,UAAU,8FAA8F,qBAAqB,WAAW,EAAE,SAAsB3C,EAAKgD,EAA0B,CAAC,SAAsBhD,EAAKiD,EAA8B,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,iBAAiB,GAAK,iBAAiBN,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB3C,EAAKrB,GAAQ,CAAC,MAAM,qBAAqB,OAAO,OAAO,WAAW,OAAO,cAAcmD,EAAU,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQoB,GAAI,CAAC,kFAAkF,gFAAgF,gSAAgS,6RAA6R,iUAAiU,mUAAmU,wGAAwG,u/BAAu/B,+bAA+b,EASrsQC,GAAgBC,EAAQtC,GAAUoC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,gBAAgBA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,EAAE,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,YAAY,WAAW,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU3E,IAAkB,eAAkB,CAAC,GAAGA,GAAgB,cAAiB,aAAa,UAAU,YAAY,OAAU,OAAO,OAAU,MAAM,MAAM,EAAE,UAAU,CAAC,MAAM,OAAO,KAAK2E,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,GAAK,MAAM,UAAU,KAAKA,EAAY,OAAO,CAAC,CAAC,EAAEC,EAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,EAAE,GAAG1E,EAAY,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECT9Q,IAAMgF,GAAaC,EAASC,EAAO,EAAQC,GAAW,CAAC,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,iBAAiB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,CAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,GAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAaC,CAAQ,EAAQC,GAAwB,CAAC,OAAO,YAAY,KAAK,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,OAAAC,EAAO,GAAAC,EAAG,SAAAC,EAAS,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAKC,EAAuCC,EAAMC,EAAM,MAAM,CAAC,GAAGJ,EAAM,WAAWC,EAAKN,GAAsCK,EAAM,aAAa,MAAMC,IAAO,OAAOA,EAAK,4FAA4F,SAASE,GAAOD,EAAuCT,GAAwBO,EAAM,OAAO,KAAK,MAAME,IAAyC,OAAOA,EAAuCF,EAAM,WAAW,MAAMG,IAAQ,OAAOA,EAAM,YAAY,WAAWC,EAAMN,GAA4CE,EAAM,aAAa,MAAMI,IAAQ,OAAOA,EAAM,2FAA2F,CAAE,EAAQC,GAAuB,CAACL,EAAMxB,IAAewB,EAAM,iBAAwBxB,EAAS,KAAK,GAAG,EAAEwB,EAAM,iBAAwBxB,EAAS,KAAK,GAAG,EAAU8B,GAA6BC,EAAW,SAASP,EAAMQ,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAApC,EAAQ,UAAAqC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAEvB,GAASM,CAAK,EAAO,CAAC,YAAAkB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,GAAe,UAAAC,GAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAAjD,CAAQ,EAAEkD,GAAgB,CAAC,WAAAvD,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQsD,EAAiBtB,GAAuBL,EAAMxB,CAAQ,EAAO,CAAC,sBAAAoD,EAAsB,MAAAC,CAAK,EAAEC,GAAyBZ,CAAW,EAAQa,EAAaH,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQQ,EAAYL,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQS,EAAWC,EAAO,IAAI,EAAQC,EAAY,IAAQlB,IAAc,YAA6CmB,GAAsBC,EAAM,EAAQC,GAAsB,CAAC,EAAQC,GAAkBC,EAAqB,EAAE,OAAoBpD,EAAKqD,EAAY,CAAC,GAAG5B,GAA4CuB,GAAgB,SAAsBhD,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBgE,EAAMpD,EAAO,IAAI,CAAC,GAAG0B,EAAU,GAAGI,EAAgB,UAAUuB,EAAGxE,GAAkB,GAAGmE,GAAsB,iBAAiB1B,EAAUM,CAAU,EAAE,cAAc,GAAK,mBAAmB,SAAS,iBAAiBQ,EAAiB,SAAS,YAAY,IAAInB,GAA6B0B,EAAK,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,+EAA+E,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,GAAGtB,CAAK,EAAE,GAAGtC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,MAAM,CAAC,EAAE4C,EAAYI,EAAc,EAAE,SAAS,CAAcqB,EAAMpD,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB,GAAK,iBAAiBoC,EAAiB,SAAS,YAAY,MAAMI,EAAa,GAAGzD,GAAqB,CAAC,UAAU,CAAC,MAAM2D,CAAW,CAAC,EAAEf,EAAYI,EAAc,EAAE,SAAS,CAAcjC,EAAKwD,EAA0B,CAAC,SAAsBxD,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiBoC,EAAiB,SAAS,sBAAsB,SAAsBtC,EAAKnB,GAAQ,CAAC,MAAM,qBAAqB,OAAO,OAAO,WAAW,OAAO,cAAc,OAAO,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,OAAO,GAAGI,GAAqB,CAAC,UAAU,CAAC,cAAc,OAAO,CAAC,EAAE4C,EAAYI,EAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAejC,EAAKyD,EAAS,CAAC,sBAAsB,GAAK,SAAsBzD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,gGAAgG,EAAE,SAAS,2FAA2F,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,mBAAmB,EAAE,iBAAiBoC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,YAAY,6BAA6B,KAAK,EAAE,KAAKZ,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAEqB,EAAY,GAAgB/C,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiBoC,EAAiB,SAAS,YAAY,MAAM,CAAC,QAAQ,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,QAAQ,CAAC,CAAC,EAAE,SAAsBtC,EAAKyD,EAAS,CAAC,sBAAsB,GAAK,SAAsBzD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,0BAA0B,MAAM,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,sGAAsG,EAAE,SAAS,2FAA2F,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,oBAAoB,EAAE,iBAAiBoC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,8EAA8E,6BAA6B,MAAM,QAAQ,EAAE,EAAE,KAAKX,EAAU,SAAS,CAAC,UAAU,CAAC,QAAQ,CAAC,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQ+B,GAAI,CAAC,kFAAkF,kFAAkF,yVAAyV,+VAA+V,2IAA2I,uKAAuK,2SAA2S,mNAAmN,g2BAAg2B,+bAA+b,EASp/TC,GAAgBC,EAAQ3C,GAAUyC,GAAI,cAAc,EAASG,EAAQF,GAAgBA,GAAgB,YAAY,MAAMA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAG,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,SAAS,MAAM,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,4FAA4F,gBAAgB,GAAK,MAAM,WAAW,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,4FAA4F,gBAAgB,GAAK,MAAM,SAAS,KAAKA,EAAY,MAAM,CAAC,CAAC,EAAEC,EAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,UAAU,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,EAAE,CAAC,OAAO,UAAU,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGhF,EAAY,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECT9zB,IAAMsF,GAASC,EAASC,CAAG,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,iBAAiB,EAAyL,IAAMC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,CAAmB,EAAQC,EAAWL,GAAOE,EAAO,WAAiBI,EAAmBC,GAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,CAAK,GAAUC,GAAuB,CAACD,EAAME,IAAeF,EAAM,iBAAwBE,EAAS,KAAK,GAAG,EAAEF,EAAM,iBAAwBE,EAAS,KAAK,GAAG,EAAUC,GAA6BC,EAAW,SAASJ,EAAMK,EAAI,CAAC,IAAMC,EAAYC,EAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,EAAM,EAAO,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAQC,EAAkBC,EAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,GAAGC,CAAS,EAAExB,GAASI,CAAK,EAAO,CAAC,YAAAqB,EAAY,WAAAC,EAAW,oBAAAC,GAAoB,gBAAAC,GAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAA1B,CAAQ,EAAE2B,GAAgB,CAAC,eAAe,YAAY,IAAIrB,EAAW,QAAAW,EAAQ,kBAAAW,EAAiB,CAAC,EAAQC,EAAiB9B,GAAuBD,EAAME,CAAQ,EAAuC8B,EAAkBC,EAAGC,GAAkB,GAAhD,CAAC,CAAuE,EAAE,OAAoB1C,EAAK2C,EAAY,CAAC,GAAGjB,GAAUT,EAAgB,SAAsBjB,EAAKC,GAAS,CAAC,QAAQS,EAAS,QAAQ,GAAM,SAAsBV,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBsD,EAAM1C,EAAO,IAAI,CAAC,GAAG0B,EAAU,GAAGI,GAAgB,UAAUS,EAAGD,EAAkB,gBAAgBf,EAAUK,CAAU,EAAE,mBAAmB,YAAY,iBAAiBS,EAAiB,SAAS,YAAY,IAAIvB,EAAW,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,GAAGQ,CAAK,EAAE,SAAS,CAAcxB,EAAK6C,EAA0B,CAAC,OAAO,IAAI,MAAMvB,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,SAAsBtB,EAAK8C,EAA8B,CAAC,UAAU,2BAA2B,iBAAiBP,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBvC,EAAK+C,EAAI,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,yOAAyO,QAAQ,YAAY,UAAU,8DAA8D,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK6C,EAA0B,CAAC,OAAO,IAAI,MAAMvB,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,IAAI,SAAsBtB,EAAK8C,EAA8B,CAAC,UAAU,2BAA2B,iBAAiBP,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBvC,EAAK+C,EAAI,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,iYAAiY,QAAQ,YAAY,UAAU,sCAAsC,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK6C,EAA0B,CAAC,OAAO,IAAI,MAAMvB,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,IAAI,SAAsBtB,EAAK8C,EAA8B,CAAC,UAAU,0BAA0B,iBAAiBP,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBvC,EAAK+C,EAAI,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,qLAAqL,QAAQ,YAAY,UAAU;AAAA,EAAoD,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK6C,EAA0B,CAAC,OAAO,IAAI,MAAMvB,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,IAAI,SAAsBtB,EAAK8C,EAA8B,CAAC,UAAU,2BAA2B,iBAAiBP,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBvC,EAAK+C,EAAI,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,0RAA0R,QAAQ,YAAY,UAAU,uDAAuD,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK6C,EAA0B,CAAC,OAAO,IAAI,MAAMvB,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,IAAI,SAAsBtB,EAAK8C,EAA8B,CAAC,UAAU,2BAA2B,iBAAiBP,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBvC,EAAK+C,EAAI,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,0MAA0M,QAAQ,YAAY,UAAU,yCAAyC,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK6C,EAA0B,CAAC,OAAO,IAAI,MAAMvB,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,IAAI,SAAsBtB,EAAK8C,EAA8B,CAAC,UAAU,0BAA0B,iBAAiBP,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBvC,EAAK+C,EAAI,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU;AAAA,GAAsN,QAAQ,YAAY,UAAU,6CAA6C,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK6C,EAA0B,CAAC,OAAO,IAAI,MAAMvB,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,IAAI,SAAsBtB,EAAK8C,EAA8B,CAAC,UAAU,0BAA0B,iBAAiBP,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBvC,EAAK+C,EAAI,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,6OAA6O,QAAQ,YAAY,UAAU,8CAA8C,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK6C,EAA0B,CAAC,OAAO,IAAI,MAAMvB,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,SAAsBtB,EAAK8C,EAA8B,CAAC,UAAU,0BAA0B,iBAAiBP,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBvC,EAAK+C,EAAI,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,6SAA6S,QAAQ,YAAY,UAAU,0DAA0D,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK6C,EAA0B,CAAC,OAAO,IAAI,MAAMvB,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,SAAsBtB,EAAK8C,EAA8B,CAAC,UAAU,2BAA2B,iBAAiBP,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBvC,EAAK+C,EAAI,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,sRAAsR,QAAQ,YAAY,UAAU,0DAA0D,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK6C,EAA0B,CAAC,OAAO,IAAI,MAAMvB,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,SAAsBtB,EAAK8C,EAA8B,CAAC,UAAU,0BAA0B,iBAAiBP,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBvC,EAAK+C,EAAI,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,+SAA+S,QAAQ,YAAY,UAAU,sDAAsD,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK6C,EAA0B,CAAC,OAAO,IAAI,MAAMvB,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,SAAsBtB,EAAK8C,EAA8B,CAAC,UAAU,0BAA0B,iBAAiBP,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBvC,EAAK+C,EAAI,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,kOAAkO,QAAQ,YAAY,UAAU,yCAAyC,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQC,GAAI,CAAC,kFAAkF,gFAAgF,4UAA4U,6fAA6f,0WAA0W,EASnyZC,GAAgBC,EAAQvC,GAAUqC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,YAAYA,GAAgB,aAAa,CAAC,OAAO,KAAK,MAAM,GAAG,EAAEG,EAASH,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,EAAE,GAAGI,EAAQ,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECTw3C,IAAMC,GAAUC,EAASC,EAAI,EAAQC,EAAgBC,GAAOC,CAAS,EAAQC,GAAWL,EAASM,EAAK,EAAQC,GAAgBJ,GAAOK,EAAO,GAAG,EAAQC,GAAYN,GAAOO,EAAK,EAAQC,EAAeR,GAAOS,CAAQ,EAAQC,GAAYb,EAASc,EAAM,EAAQC,GAAyCC,GAA0Bb,GAAOK,EAAO,GAAG,CAAC,EAAQS,GAAajB,EAASkB,CAAO,EAAQC,GAAgBnB,EAASoB,EAAU,EAAQC,GAAsBrB,EAASsB,EAAgB,EAAQC,GAAavB,EAASc,EAAO,EAAQU,GAAWxB,EAASyB,EAAK,EAAQC,GAAa1B,EAAS2B,CAAO,EAAQC,GAAW5B,EAAS6B,EAAK,EAAQC,GAAe9B,EAAS+B,EAAS,EAAQC,GAAkBhC,EAASiC,EAAY,EAAQC,GAAY,CAAC,UAAU,qBAAqB,UAAU,sBAAsB,UAAU,4CAA4C,EAAQC,GAAU,IAAI,OAAO,SAAW,IAAkBC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,EAAQC,GAAmB,CAACC,EAAEC,IAAI,oBAAoBA,CAAC,GAASC,GAAY,CAAC,QAAQ,IAAI,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAW,CAAC,QAAQ,KAAK,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,CAAC,EAAQC,GAAY,CAAC,MAAM,IAAI,SAAS,EAAE,KAAK,CAAC,IAAI,IAAI,GAAG,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,IAAI,EAAE,GAAG,EAAQC,GAAY,CAAC,MAAM,GAAG,SAAS,IAAI,KAAK,CAAC,IAAI,IAAI,GAAG,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,GAAG,MAAM,EAAE,MAAM,EAAE,EAAE,IAAI,EAAE,GAAG,EAAQC,GAAY,CAAC,MAAM,GAAG,SAAS,EAAE,KAAK,CAAC,IAAI,IAAI,GAAG,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,IAAI,MAAM,EAAE,MAAM,EAAE,EAAE,IAAI,EAAE,GAAG,EAAQC,GAAY,CAAC,MAAM,GAAG,SAAS,IAAI,KAAK,CAAC,IAAI,IAAI,GAAG,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,IAAI,MAAM,EAAE,MAAM,EAAE,EAAE,IAAI,EAAE,GAAG,EAAQC,GAAY,CAAC,MAAM,EAAE,SAAS,EAAE,KAAK,CAAC,IAAI,IAAI,GAAG,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,GAAG,MAAM,EAAE,MAAM,EAAE,EAAE,IAAI,EAAE,GAAG,EAAQC,GAAY,CAAC,MAAM,IAAI,SAAS,EAAE,KAAK,CAAC,IAAI,IAAI,GAAG,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,GAAG,MAAM,EAAE,MAAM,EAAE,EAAE,IAAI,EAAE,GAAG,EAAQC,GAAY,CAAC,MAAM,IAAI,SAAS,IAAI,KAAK,CAAC,IAAI,IAAI,GAAG,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,IAAI,MAAM,EAAE,MAAM,EAAE,EAAE,IAAI,EAAE,GAAG,EAAQC,GAAY,CAAC,MAAM,EAAE,SAAS,EAAE,KAAK,CAAC,IAAI,IAAI,GAAG,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,GAAG,MAAM,EAAE,MAAM,EAAE,EAAE,IAAI,EAAE,GAAG,EAAQC,GAAa,CAAC,MAAM,EAAE,SAAS,EAAE,KAAK,CAAC,IAAI,IAAI,GAAG,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAa,CAAC,MAAM,EAAE,SAAS,IAAI,KAAK,CAAC,IAAI,IAAI,GAAG,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAa,CAAC,MAAM,EAAE,SAAS,IAAI,KAAK,CAAC,IAAI,IAAI,GAAG,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAa,CAAC,MAAM,IAAI,SAAS,IAAI,KAAK,CAAC,IAAI,IAAI,GAAG,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAa,CAAC,MAAM,IAAI,SAAS,IAAI,KAAK,CAAC,IAAI,IAAI,GAAG,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAa,CAAC,MAAM,IAAI,SAAS,EAAE,KAAK,CAAC,IAAI,IAAI,GAAG,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAa,CAAC,MAAM,EAAE,SAAS,EAAE,KAAK,CAAC,IAAI,IAAI,GAAG,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAa,CAAC,MAAM,EAAE,SAAS,EAAE,KAAK,CAAC,IAAI,IAAI,GAAG,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAY,CAACC,EAAMC,IAAM,CAAC,GAAG,GAACD,GAAO,OAAOA,GAAQ,UAAkB,MAAM,CAAC,GAAGA,EAAM,IAAAC,CAAG,CAAE,EAAQC,GAAU,CAAC,CAAC,MAAAC,CAAK,IAAoBC,GAAoB,EAAqB,KAAyBC,EAAK,QAAQ,CAAC,wBAAwB,CAAC,OAAOF,CAAK,EAAE,yBAAyB,EAAE,CAAC,EAAUG,GAAwB,CAAC,QAAQ,YAAY,MAAM,YAAY,OAAO,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,QAAQL,GAAwBK,EAAM,OAAO,GAAGA,EAAM,SAAS,WAAW,GAAUC,GAA6BC,EAAW,SAASF,EAAMG,EAAI,CAAC,IAAMC,EAAYC,EAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,EAAM,EAAO,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAQC,EAAkBC,EAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,GAAGC,CAAS,EAAEtB,GAASI,CAAK,EAAQmB,GAAU,IAAI,CAAC,IAAMC,EAASA,GAAiB,OAAUX,CAAY,EAAE,GAAGW,EAAS,OAAO,CAAC,IAAIC,GAAU,SAAS,cAAc,qBAAqB,EAAKA,GAAWA,GAAU,aAAa,UAAUD,EAAS,MAAM,GAAQC,GAAU,SAAS,cAAc,MAAM,EAAEA,GAAU,aAAa,OAAO,QAAQ,EAAEA,GAAU,aAAa,UAAUD,EAAS,MAAM,EAAE,SAAS,KAAK,YAAYC,EAAS,EAAG,CAAC,EAAE,CAAC,OAAUZ,CAAY,CAAC,EAAQa,GAAmB,IAAI,CAAC,IAAMF,EAASA,GAAiB,OAAUX,CAAY,EAAE,SAAS,MAAMW,EAAS,OAAO,GAAMA,EAAS,UAAU,SAAS,cAAc,uBAAuB,GAAG,aAAa,UAAUA,EAAS,QAAQ,CAAG,EAAE,CAAC,OAAUX,CAAY,CAAC,EAAE,GAAK,CAACc,EAAYC,CAAmB,EAAEC,GAA8BR,EAAQ/D,GAAY,EAAK,EAAQwE,GAAe,OAA+CC,EAAkBC,EAAGxE,GAAkB,GAAhD,CAAC,CAAuE,EAAQyE,EAAWxB,EAAO,IAAI,EAAQyB,EAAUC,GAAkB,WAAW,EAAQC,EAAW3B,EAAO,IAAI,EAAQ4B,EAAOC,GAAU,EAAQC,EAAWJ,GAAkB,WAAW,EAAQK,EAAWL,GAAkB,WAAW,EAAQM,EAAWhC,EAAO,IAAI,EAAQiC,EAAWP,GAAkB,WAAW,EAAQQ,EAAWlC,EAAO,IAAI,EAAQmC,GAAWT,GAAkB,WAAW,EAAQU,GAAWpC,EAAO,IAAI,EAAQqC,GAAWX,GAAkB,WAAW,EAAQY,GAAWtC,EAAO,IAAI,EAAQuC,GAAY,IAASzF,GAAU,EAAiBoE,IAAc,YAAtB,GAAmEsB,GAAa,IAAQ,CAAC1F,GAAU,GAAiBoE,IAAc,YAA6CuB,GAAWf,GAAkB,WAAW,EAAQgB,GAAW1C,EAAO,IAAI,EAAQ2C,GAAWjB,GAAkB,WAAW,EAAQkB,GAAW5C,EAAO,IAAI,EAAQ6C,GAAa,IAAS/F,GAAU,EAAiBoE,IAAc,YAAtB,GAAmE4B,GAAa,IAAQ,CAAChG,GAAU,GAAiBoE,IAAc,YAA6C6B,GAAWrB,GAAkB,WAAW,EAAQsB,GAAWhD,EAAO,IAAI,EAAE,OAAAiD,GAAiB,CAAC,CAAC,EAAsB5D,EAAK6D,GAA0B,SAAS,CAAC,MAAM,CAAC,iBAAiB,YAAY,kBAAAlG,EAAiB,EAAE,SAAsBmG,EAAMC,EAAY,CAAC,GAAGzC,GAAUT,EAAgB,SAAS,CAAcb,EAAKH,GAAU,CAAC,MAAM,yCAAyC,CAAC,EAAeiE,EAAMhI,EAAO,IAAI,CAAC,GAAG0F,EAAU,UAAUU,EAAGD,EAAkB,gBAAgBZ,CAAS,EAAE,IAAIT,EAAW,MAAM,CAAC,GAAGQ,CAAK,EAAE,SAAS,CAAcpB,EAAKgE,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,GAAG,CAAC,EAAE,SAAsB7B,EAAKiE,EAA0B,CAAC,OAAO,GAAG,EAAE,IAAI,SAAsBjE,EAAKxE,EAAgB,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,IAAI2G,EAAK,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,2BAA2B,iBAAiB,qCAAqC,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,2BAA2B,mBAAmB,kBAAkB,aAAa,GAAK,KAAK,kBAAkB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkBvE,GAAmB,SAAsBoC,EAAKzE,GAAK,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,kBAAkB,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuI,EAAM,OAAO,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,iBAAiB,GAAG1B,EAAU,IAAIE,EAAK,SAAS,CAActC,EAAKgE,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,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,IAAIS,EAAK,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,2BAA2B,iBAAiB,qCAAqC,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,QAAQ,OAAU,QAAQ,OAAU,UAAU,MAAS,EAAE,UAAU,CAAC,gBAAgB,GAAM,gBAAgB,EAAE,QAAQ,OAAU,QAAQ,OAAU,UAAU,MAAS,CAAC,EAAE,SAAsBwB,EAAMzH,GAAyC,CAAC,QAAQ2B,GAAU,UAAU,iBAAiB,wBAAwB,UAAU,mBAAmB,OAAO,QAAQC,GAAW,UAAU,GAAK,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAc+B,EAAKiE,EAA0B,CAAC,SAAsBjE,EAAKxE,EAAgB,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,IAAI8G,EAAK,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,2BAA2B,iBAAiB,qCAAqC,EAAE,gBAAgB,GAAM,gBAAgB,IAAI,UAAU,2BAA2B,mBAAmB,mBAAmB,iBAAiB,GAAK,iBAAiB,GAAK,KAAK,mBAAmB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsBtC,EAAKpE,GAAM,CAAC,gBAAgB,mBAAmB,aAAa,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,SAAS,GAAM,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,SAAS,YAAY,KAAK,GAAK,MAAM,GAAK,KAAK,mBAAmB,UAAU,QAAQ,QAAQ,GAAK,cAAc,GAAM,QAAQ,qEAAqE,QAAQ,SAAS,OAAO,GAAG,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,cAAc,EAAE,eAAe,EAAE,OAAO,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeoE,EAAKnE,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,IAAIyG,EAAK,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,2BAA2B,iBAAiB,qCAAqC,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,mBAAmB,oBAAoB,MAAM,CAAC,qBAAqB,IAAI,CAAC,CAAC,EAAetC,EAAKgE,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,eAAe,IAAI,MAAM,gBAAgB,GAAG,eAAe,IAAI,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,aAAa,IAAI,yFAAyF,OAAO,sQAAsQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,eAAe,IAAI,MAAM,gBAAgB,GAAG,eAAe,IAAI,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,aAAa,IAAI,yFAAyF,OAAO,sQAAsQ,CAAC,CAAC,EAAE,SAAsB7B,EAAKjE,GAAY,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,IAAIuG,EAAK,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,2BAA2B,iBAAiB,qCAAqC,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,eAAe,IAAI,MAAM,gBAAgB,GAAG,eAAe,IAAI,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,yFAAyF,OAAO,sQAAsQ,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,MAAM,CAAC,qBAAqB,IAAI,CAAC,CAAC,CAAC,CAAC,EAAewB,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAc9D,EAAKgE,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,QAAQ,EAAE,SAAsB8D,EAAM,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,gFAAgF,EAAE,SAAS,CAAc9D,EAAK,OAAO,CAAC,MAAM,CAAC,qBAAqB,MAAM,EAAE,SAAS,sBAAsB,CAAC,EAAeA,EAAK,OAAO,CAAC,MAAM,CAAC,qBAAqB,MAAM,EAAE,SAAsBA,EAAK,KAAK,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,OAAO,CAAC,MAAM,CAAC,qBAAqB,MAAM,EAAE,SAAS,kBAAkB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,QAAQ,EAAE,SAAsB8D,EAAM,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,gFAAgF,EAAE,SAAS,CAAC,4BAAyC9D,EAAK,KAAK,CAAC,CAAC,EAAE,mBAAgCA,EAAK,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK/D,EAAe,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,IAAIqG,EAAK,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,2BAA2B,iBAAiB,qCAAqC,EAAE,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsBtC,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,QAAQ,EAAE,SAAsB8D,EAAM,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,gFAAgF,EAAE,SAAS,CAAC,4BAAyC9D,EAAK,KAAK,CAAC,CAAC,EAAE,mBAAgCA,EAAK,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,WAAW,MAAM,CAAC,mBAAmB,EAAE,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKgE,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,6EAA6E,EAAE,SAAS,4IAAuI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK/D,EAAe,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,IAAIqG,EAAK,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,2BAA2B,iBAAiB,qCAAqC,EAAE,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsBtC,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,6EAA6E,EAAE,SAAS,4IAAuI,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,aAAa,MAAM,CAAC,oBAAoB,EAAE,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKnE,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,IAAIyG,EAAK,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,2BAA2B,iBAAiB,qCAAqC,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,mBAAmB,SAAS,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsBtC,EAAKmE,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASC,GAA4BpE,EAAKiE,EAA0B,CAAC,OAAO,GAAG,SAAsBjE,EAAKtE,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBsE,EAAKgE,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUuC,EAAc,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAc,CAAC,CAAC,CAAC,EAAE,SAAsBpE,EAAK5D,GAAO,CAAC,UAAU,YAAY,UAAUgI,EAAc,CAAC,EAAE,UAAU,GAAM,OAAO,OAAO,UAAU,GAAK,GAAG,YAAY,UAAU,MAAM,SAAS,YAAY,UAAU,YAAY,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAepE,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,SAAsB8D,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,SAAS,CAAc9D,EAAK/D,EAAe,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,GAAG,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,EAAE,CAAC,IAAIqG,EAAK,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,2BAA2B,iBAAiB,qCAAqC,EAAE,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsBtC,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,sBAAsB,SAAS,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,0BAA0B,EAAE,SAAS,yBAAyB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,MAAM,CAAC,mBAAmB,EAAE,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKgE,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,QAAQ,EAAE,SAAsBA,EAAK,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,gFAAgF,EAAE,SAAS,yBAAyB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,QAAQ,EAAE,SAAsBA,EAAK,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,gFAAgF,EAAE,SAAS,yBAAyB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK/D,EAAe,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,GAAG,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,EAAE,CAAC,IAAIqG,EAAK,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,2BAA2B,iBAAiB,qCAAqC,EAAE,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsBtC,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,QAAQ,EAAE,SAAsBA,EAAK,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,gFAAgF,EAAE,SAAS,yBAAyB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,MAAM,CAAC,mBAAmB,EAAE,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKgE,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,0BAA0B,EAAE,SAAS,+DAA+D,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK/D,EAAe,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,GAAG,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,EAAE,CAAC,IAAIqG,EAAK,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,2BAA2B,iBAAiB,qCAAqC,EAAE,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsBtC,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,0BAA0B,EAAE,SAAS,+DAA+D,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,aAAa,MAAM,CAAC,oBAAoB,EAAE,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe8D,EAAMjI,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,GAAG,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,EAAE,CAAC,IAAIyG,EAAK,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,2BAA2B,iBAAiB,qCAAqC,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,mBAAmB,iBAAiB,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAActC,EAAKiE,EAA0B,CAAC,SAAsBjE,EAAKxE,EAAgB,CAAC,eAAe2C,GAAW,4BAA4B,GAAK,0BAA0B,IAAI,yBAAyB,OAAO,yBAAyBD,GAAY,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,2BAA2B,iBAAiB,GAAK,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,OAAO,IAAI,EAAE,SAAsB8B,EAAKxD,EAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewD,EAAKiE,EAA0B,CAAC,SAAsBjE,EAAKxE,EAAgB,CAAC,eAAe6C,GAAW,4BAA4B,GAAK,0BAA0B,EAAE,yBAAyB,OAAO,yBAAyBD,GAAY,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,2BAA2B,iBAAiB,GAAK,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,OAAO,IAAI,EAAE,SAAsB4B,EAAKxD,EAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewD,EAAKiE,EAA0B,CAAC,SAAsBjE,EAAKxE,EAAgB,CAAC,eAAe+C,GAAW,4BAA4B,GAAK,0BAA0B,GAAG,yBAAyB,OAAO,yBAAyBD,GAAY,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,0BAA0B,iBAAiB,GAAK,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,OAAO,IAAI,EAAE,SAAsB0B,EAAKxD,EAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewD,EAAKiE,EAA0B,CAAC,SAAsBjE,EAAKxE,EAAgB,CAAC,eAAeiD,GAAW,4BAA4B,GAAK,0BAA0B,EAAE,yBAAyB,OAAO,yBAAyBD,GAAY,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,2BAA2B,iBAAiB,GAAK,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,OAAO,IAAI,EAAE,SAAsBwB,EAAKxD,EAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewD,EAAKiE,EAA0B,CAAC,SAAsBjE,EAAKxE,EAAgB,CAAC,eAAemD,GAAW,4BAA4B,GAAK,0BAA0B,IAAI,yBAAyB,OAAO,yBAAyBD,GAAY,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,2BAA2B,iBAAiB,GAAK,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,OAAO,IAAI,EAAE,SAAsBsB,EAAKxD,EAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewD,EAAKiE,EAA0B,CAAC,SAAsBjE,EAAKxE,EAAgB,CAAC,eAAeqD,GAAW,4BAA4B,GAAK,0BAA0B,EAAE,yBAAyB,OAAO,yBAAyBD,GAAY,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,2BAA2B,iBAAiB,GAAK,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,OAAO,IAAI,EAAE,SAAsBoB,EAAKxD,EAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewD,EAAKiE,EAA0B,CAAC,SAAsBjE,EAAKxE,EAAgB,CAAC,eAAeuD,GAAW,4BAA4B,GAAK,0BAA0B,IAAI,yBAAyB,OAAO,yBAAyBD,GAAY,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,0BAA0B,iBAAiB,GAAK,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,OAAO,IAAI,EAAE,SAAsBkB,EAAKxD,EAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewD,EAAKiE,EAA0B,CAAC,SAAsBjE,EAAKxE,EAAgB,CAAC,eAAeyD,GAAW,4BAA4B,GAAK,0BAA0B,EAAE,yBAAyB,OAAO,yBAAyBD,GAAY,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,0BAA0B,iBAAiB,GAAK,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,OAAO,IAAI,EAAE,SAAsBgB,EAAKxD,EAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewD,EAAKiE,EAA0B,CAAC,SAAsBjE,EAAKxE,EAAgB,CAAC,eAAeiD,GAAW,4BAA4B,GAAK,0BAA0B,IAAI,yBAAyB,OAAO,yBAAyBS,GAAa,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,2BAA2B,iBAAiB,GAAK,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,OAAO,IAAI,EAAE,SAAsBc,EAAKxD,EAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewD,EAAKiE,EAA0B,CAAC,SAAsBjE,EAAKxE,EAAgB,CAAC,eAAe2C,GAAW,4BAA4B,GAAK,0BAA0B,EAAE,yBAAyB,OAAO,yBAAyBgB,GAAa,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,2BAA2B,iBAAiB,GAAK,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,OAAO,IAAI,EAAE,SAAsBa,EAAKxD,EAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewD,EAAKiE,EAA0B,CAAC,SAAsBjE,EAAKxE,EAAgB,CAAC,eAAeyD,GAAW,4BAA4B,GAAK,0BAA0B,EAAE,yBAAyB,OAAO,yBAAyBG,GAAa,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,2BAA2B,iBAAiB,GAAK,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,OAAO,IAAI,EAAE,SAAsBY,EAAKxD,EAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewD,EAAKiE,EAA0B,CAAC,SAAsBjE,EAAKxE,EAAgB,CAAC,eAAe6C,GAAW,4BAA4B,GAAK,0BAA0B,IAAI,yBAAyB,OAAO,yBAAyBgB,GAAa,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,2BAA2B,iBAAiB,GAAK,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,OAAO,IAAI,EAAE,SAAsBW,EAAKxD,EAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewD,EAAKiE,EAA0B,CAAC,SAAsBjE,EAAKxE,EAAgB,CAAC,eAAemD,GAAW,4BAA4B,GAAK,0BAA0B,EAAE,yBAAyB,OAAO,yBAAyBW,GAAa,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,0BAA0B,iBAAiB,GAAK,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,OAAO,IAAI,EAAE,SAAsBU,EAAKxD,EAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewD,EAAKiE,EAA0B,CAAC,SAAsBjE,EAAKxE,EAAgB,CAAC,eAAeyD,GAAW,4BAA4B,GAAK,0BAA0B,IAAI,yBAAyB,OAAO,yBAAyBM,GAAa,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,2BAA2B,iBAAiB,GAAK,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,OAAO,IAAI,EAAE,SAAsBS,EAAKxD,EAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewD,EAAKiE,EAA0B,CAAC,SAAsBjE,EAAKxE,EAAgB,CAAC,eAAeiD,GAAW,4BAA4B,GAAK,0BAA0B,GAAG,yBAAyB,OAAO,yBAAyBH,GAAY,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,2BAA2B,iBAAiB,GAAK,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,OAAO,IAAI,EAAE,SAAsB0B,EAAKxD,EAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewD,EAAKiE,EAA0B,CAAC,SAAsBjE,EAAKxE,EAAgB,CAAC,eAAe6C,GAAW,4BAA4B,GAAK,0BAA0B,EAAE,yBAAyB,OAAO,yBAAyBmB,GAAa,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,0BAA0B,iBAAiB,GAAK,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,OAAO,IAAI,EAAE,SAAsBQ,EAAKxD,EAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewD,EAAKiE,EAA0B,CAAC,SAAsBjE,EAAKxE,EAAgB,CAAC,eAAeqD,GAAW,4BAA4B,GAAK,0BAA0B,EAAE,yBAAyB,OAAO,yBAAyBY,GAAa,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,2BAA2B,iBAAiB,GAAK,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,OAAO,IAAI,EAAE,SAAsBO,EAAKxD,EAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewD,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,eAAe,GAAGyC,EAAW,IAAIN,EAAK,SAAsBnC,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAsBA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAsBA,EAAKgE,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,sCAAsC,OAAU,MAAM,CAAC,CAAC,EAAE,UAAU,CAAC,sCAAsC,OAAU,MAAM,CAAC,CAAC,CAAC,EAAE,SAAsBiC,EAAMjI,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,IAAIsG,EAAK,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,2BAA2B,iBAAiB,qCAAqC,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAcnC,EAAKgE,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,QAAQX,GAAmB,OAAO,OAAO,UAAU,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,WAAW,CAAC,EAAE,SAAsBlB,EAAKiE,EAA0B,CAAC,OAAO,IAAI,MAAM,aAAa,SAAsBjE,EAAKtE,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBsE,EAAKgE,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAKtD,GAAW,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU,EAAE,SAAS,YAAY,UAAU,SAAS,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAU,4EAA4E,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAesD,EAAKgE,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,QAAQX,GAAmB,OAAO,OAAO,UAAU,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,WAAW,CAAC,EAAE,SAAsBlB,EAAKiE,EAA0B,CAAC,OAAO,IAAI,MAAM,aAAa,SAAsBjE,EAAKtE,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBsE,EAAKgE,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAKtD,GAAW,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU,EAAE,SAAS,YAAY,UAAUgD,GAAY,CAAC,IAAI,sEAAsE,OAAO,qKAAqK,EAAE,EAAE,EAAE,UAAU,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAU,0EAA0E,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeM,EAAKgE,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,QAAQX,GAAmB,OAAO,OAAO,UAAU,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,WAAW,CAAC,EAAE,SAAsBlB,EAAKiE,EAA0B,CAAC,OAAO,IAAI,MAAM,aAAa,SAAsBjE,EAAKtE,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBsE,EAAKgE,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAKtD,GAAW,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU,GAAG,SAAS,YAAY,UAAUgD,GAAY,CAAC,IAAI,uEAAuE,OAAO,uKAAuK,EAAE,EAAE,EAAE,UAAU,aAAa,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAU,kFAAkF,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeoE,EAAM,MAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,IAAI,oEAAoE,EAAE,UAAU,gBAAgB,mBAAmB,cAAc,GAAGpB,EAAW,IAAIC,EAAK,SAAS,CAAc3C,EAAKiE,EAA0B,CAAC,SAAsBjE,EAAKxE,EAAgB,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,IAAImH,EAAK,OAAO,CAAC,QAAQ,GAAG,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,2BAA2B,iBAAiB,qCAAqC,EAAE,gBAAgB,GAAM,gBAAgB,GAAG,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsB3C,EAAKpE,GAAM,CAAC,gBAAgB,mBAAmB,aAAa,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,SAAS,GAAM,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,SAAS,YAAY,KAAK,GAAK,MAAM,GAAK,UAAU,QAAQ,QAAQ,GAAK,cAAc,GAAM,QAAQ,uEAAuE,QAAQ,SAAS,OAAO,yCAAyC,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,cAAc,EAAE,eAAe,EAAE,OAAO,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeoE,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,CAAC,EAAeA,EAAKlE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,MAAM,CAAC,OAAO,GAAG,CAAC,CAAC,EAAegI,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAc9D,EAAKgE,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,QAAQ,EAAE,SAAsBA,EAAK,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,gFAAgF,EAAE,SAAS,6EAA6E,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,QAAQ,EAAE,SAAsBA,EAAK,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,gFAAgF,EAAE,SAAS,6EAA6E,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK/D,EAAe,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,GAAG,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,EAAE,CAAC,IAAI0G,EAAK,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,2BAA2B,iBAAiB,qCAAqC,EAAE,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsB3C,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,QAAQ,EAAE,SAAsBA,EAAK,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,gFAAgF,EAAE,SAAS,6EAA6E,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,WAAW,MAAM,CAAC,mBAAmB,EAAE,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKgE,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBiC,EAAYI,EAAS,CAAC,SAAS,CAAcJ,EAAM,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,6EAA6E,EAAE,SAAS,CAAC,+HAA6I9D,EAAK,SAAS,CAAC,SAAS,iBAAiB,CAAC,EAAE,wIAAmI,CAAC,CAAC,EAAe8D,EAAM,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,6EAA6E,EAAE,SAAS,CAAC,2FAAwG9D,EAAK,SAAS,CAAC,SAAS,QAAQ,CAAC,EAAE,MAAmBA,EAAK,SAAS,CAAC,SAAS,WAAW,CAAC,EAAE,QAAQ,CAAC,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,6EAA6E,EAAE,SAAS,yGAAyG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK/D,EAAe,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,GAAG,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,EAAE,CAAC,IAAI0G,EAAK,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,2BAA2B,iBAAiB,qCAAqC,EAAE,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsBmB,EAAYI,EAAS,CAAC,SAAS,CAAcJ,EAAM,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,6EAA6E,EAAE,SAAS,CAAC,+HAA6I9D,EAAK,SAAS,CAAC,SAAS,iBAAiB,CAAC,EAAE,wIAAmI,CAAC,CAAC,EAAe8D,EAAM,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,6EAA6E,EAAE,SAAS,CAAC,2FAAwG9D,EAAK,SAAS,CAAC,SAAS,QAAQ,CAAC,EAAE,MAAmBA,EAAK,SAAS,CAAC,SAAS,WAAW,CAAC,EAAE,QAAQ,CAAC,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,6EAA6E,EAAE,SAAS,yGAAyG,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,aAAa,MAAM,CAAC,qBAAqB,iBAAiB,EAAE,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,GAAG4C,EAAW,IAAIC,EAAK,SAAsBiB,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAc9D,EAAKgE,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,sCAAsC,OAAU,SAAsB7B,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,QAAQ,EAAE,SAAsBA,EAAK,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,gFAAgF,EAAE,SAAS,4BAA4B,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,EAAE,UAAU,CAAC,sCAAsC,OAAU,SAAsBA,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,QAAQ,EAAE,SAAsBA,EAAK,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,gFAAgF,EAAE,SAAS,4BAA4B,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK/D,EAAe,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,IAAI4G,EAAK,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,2BAA2B,iBAAiB,qCAAqC,EAAE,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsB7C,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,QAAQ,EAAE,SAAsBA,EAAK,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,gFAAgF,EAAE,SAAS,4BAA4B,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,UAAU,MAAM,CAAC,mBAAmB,EAAE,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe8D,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAc9D,EAAKgE,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,sCAAsC,OAAU,SAAsB7B,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,6EAA6E,EAAE,SAAS,gJAAgJ,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,EAAE,UAAU,CAAC,sCAAsC,OAAU,MAAM,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK/D,EAAe,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,IAAI4G,EAAK,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,2BAA2B,iBAAiB,qCAAqC,EAAE,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsB7C,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,6EAA6E,EAAE,SAAS,gJAAgJ,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,aAAa,MAAM,CAAC,oBAAoB,EAAE,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKgE,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,sCAAsC,OAAU,MAAM,CAAC,CAAC,EAAE,UAAU,CAAC,sCAAsC,OAAU,MAAM,CAAC,CAAC,CAAC,EAAE,SAAsBiC,EAAMjI,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,IAAIgH,EAAK,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,2BAA2B,iBAAiB,qCAAqC,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,mBAAmB,gBAAgB,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAciB,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,kBAAkB,SAAS,CAAc9D,EAAKgE,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,QAAQX,GAAmB,OAAO,OAAO,UAAU,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,WAAW,CAAC,EAAE,SAAsBlB,EAAKiE,EAA0B,CAAC,OAAO,IAAI,MAAM,aAAa,SAAsBjE,EAAKtE,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBsE,EAAKgE,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAKtD,GAAW,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU,EAAE,SAAS,YAAY,UAAUgD,GAAY,CAAC,IAAI,sEAAsE,OAAO,qKAAqK,EAAE,EAAE,EAAE,UAAU,uBAAuB,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAU,wFAAwF,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeM,EAAKgE,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,QAAQX,GAAmB,OAAO,OAAO,UAAU,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,WAAW,CAAC,EAAE,SAAsBlB,EAAKiE,EAA0B,CAAC,OAAO,IAAI,MAAM,aAAa,SAAsBjE,EAAKtE,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBsE,EAAKgE,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAKtD,GAAW,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU,EAAE,SAAS,YAAY,UAAUgD,GAAY,CAAC,IAAI,uEAAuE,OAAO,uKAAuK,EAAE,EAAE,EAAE,UAAU,6BAA6B,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAU,iFAAiF,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeM,EAAKgE,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,QAAQX,GAAmB,OAAO,OAAO,UAAU,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,WAAW,CAAC,EAAE,SAAsBlB,EAAKiE,EAA0B,CAAC,OAAO,IAAI,MAAM,aAAa,SAAsBjE,EAAKtE,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBsE,EAAKgE,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAKtD,GAAW,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU,EAAE,SAAS,YAAY,UAAUgD,GAAY,CAAC,IAAI,uEAAuE,OAAO,uKAAuK,EAAE,EAAE,EAAE,UAAU,yBAAyB,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAU,iEAAiE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeoE,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,kBAAkB,SAAS,CAAc9D,EAAKgE,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,QAAQX,GAAmB,OAAO,OAAO,UAAU,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,WAAW,CAAC,EAAE,SAAsBlB,EAAKiE,EAA0B,CAAC,OAAO,IAAI,MAAM,aAAa,SAAsBjE,EAAKtE,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBsE,EAAKgE,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAKtD,GAAW,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU,EAAE,SAAS,YAAY,UAAU,8BAA8B,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAU,kFAAkF,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAesD,EAAKgE,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,QAAQX,GAAmB,OAAO,OAAO,UAAU,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,WAAW,CAAC,EAAE,SAAsBlB,EAAKiE,EAA0B,CAAC,OAAO,IAAI,MAAM,aAAa,SAAsBjE,EAAKtE,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBsE,EAAKgE,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAKtD,GAAW,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU,EAAE,SAAS,YAAY,UAAUgD,GAAY,CAAC,IAAI,sEAAsE,OAAO,qKAAqK,EAAE,EAAE,EAAE,UAAU,uBAAuB,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAU,qFAAqF,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeM,EAAKgE,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,QAAQX,GAAmB,OAAO,OAAO,UAAU,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,WAAW,CAAC,EAAE,SAAsBlB,EAAKiE,EAA0B,CAAC,OAAO,IAAI,MAAM,aAAa,SAAsBjE,EAAKtE,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBsE,EAAKgE,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAKtD,GAAW,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU,GAAG,SAAS,YAAY,UAAUgD,GAAY,CAAC,IAAI,uEAAuE,OAAO,uKAAuK,EAAE,EAAE,EAAE,UAAU,wBAAwB,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAU,6EAA6E,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeM,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,GAAG8C,GAAW,IAAIC,GAAK,SAAsBe,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAc9D,EAAKgE,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,sCAAsC,OAAU,SAAsB7B,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,QAAQ,EAAE,SAAsBA,EAAK,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,gFAAgF,EAAE,SAAS,mDAAmD,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,EAAE,UAAU,CAAC,sCAAsC,OAAU,SAAsBA,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,QAAQ,EAAE,SAAsBA,EAAK,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,gFAAgF,EAAE,SAAS,mDAAmD,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK/D,EAAe,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,IAAI8G,GAAK,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,2BAA2B,iBAAiB,qCAAqC,EAAE,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsB/C,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,QAAQ,EAAE,SAAsBA,EAAK,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,gFAAgF,EAAE,SAAS,mDAAmD,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,UAAU,MAAM,CAAC,mBAAmB,EAAE,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe8D,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAc9D,EAAKgE,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,sCAAsC,OAAU,SAAsB7B,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,6EAA6E,EAAE,SAAS,iGAAiG,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,EAAE,UAAU,CAAC,sCAAsC,OAAU,MAAM,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK/D,EAAe,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,IAAI8G,GAAK,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,2BAA2B,iBAAiB,qCAAqC,EAAE,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsB/C,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,6EAA6E,EAAE,SAAS,iGAAiG,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,aAAa,MAAM,CAAC,oBAAoB,EAAE,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe8D,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,yBAAyB,SAAS,CAAc9D,EAAKgE,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,sCAAsC,OAAU,MAAM,CAAC,CAAC,EAAE,UAAU,CAAC,sCAAsC,OAAU,MAAM,CAAC,CAAC,CAAC,EAAE,SAAsBiC,EAAMjI,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,IAAIkH,GAAK,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,2BAA2B,iBAAiB,qCAAqC,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,cAAc,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAc/C,EAAKiE,EAA0B,CAAC,SAAsBjE,EAAKtE,EAAU,CAAC,UAAU,2BAA2B,mBAAmB,iBAAiB,iBAAiB,GAAK,iBAAiB,GAAK,KAAK,iBAAiB,OAAO,YAAY,QAAQ,YAAY,SAAsBsE,EAAKpD,GAAiB,CAAC,aAAa,IAAI,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,iBAAiB,cAAc,GAAG,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAekH,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAc9D,EAAKqE,GAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAokC,mBAAmB,EAAI,CAAC,EAAerE,EAAK9D,EAAS,CAAC,sBAAsB,GAAK,SAAsB8D,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,0BAA0B,MAAM,EAAE,SAAsB8D,EAAM,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,gFAAgF,EAAE,SAAS,CAAc9D,EAAK,OAAO,CAAC,MAAM,CAAC,qBAAqB,MAAM,EAAE,SAAS,sIAAsI,CAAC,EAAe8D,EAAM,OAAO,CAAC,MAAM,CAAC,qBAAqB,MAAM,EAAE,SAAS,CAAc9D,EAAK,KAAK,CAAC,CAAC,EAAeA,EAAK,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,OAAO,CAAC,MAAM,CAAC,qBAAqB,MAAM,EAAE,SAAS,8JAA8J,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,MAAM,CAAC,mBAAmB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,CAAC,EAAeA,EAAKlE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,MAAM,CAAC,OAAO,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,EAAekE,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKgE,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,sCAAsC,OAAU,MAAM,CAAC,CAAC,EAAE,UAAU,CAAC,sCAAsC,OAAU,MAAM,CAAC,CAAC,CAAC,EAAE,SAAsBiC,EAAMjI,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,IAAIkH,GAAK,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,2BAA2B,iBAAiB,qCAAqC,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAce,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAc9D,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAsBA,EAAKgE,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAsBA,EAAK,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,8EAA8E,EAAE,SAAS,wCAAwC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK9D,EAAS,CAAC,sBAAsB,GAAK,SAAsB8D,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAsBA,EAAK,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,8EAA8E,EAAE,SAAS,wCAAwC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,MAAM,CAAC,mBAAmB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,SAAsBA,EAAK9D,EAAS,CAAC,sBAAsB,GAAK,SAAsB8D,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,OAAO,sBAAsB,6EAA6E,EAAE,SAAS,0KAA0K,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,MAAM,CAAC,oBAAoB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe8D,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAc9D,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAsBA,EAAKgE,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAsBA,EAAK,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,8EAA8E,EAAE,SAAS,sCAAsC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK9D,EAAS,CAAC,sBAAsB,GAAK,SAAsB8D,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAsBA,EAAK,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,8EAA8E,EAAE,SAAS,sCAAsC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,UAAU,MAAM,CAAC,mBAAmB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,SAAsBA,EAAK9D,EAAS,CAAC,sBAAsB,GAAK,SAAsB8D,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,OAAO,sBAAsB,6EAA6E,EAAE,SAAS,gKAAgK,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,MAAM,CAAC,oBAAoB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe8D,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAc9D,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAsBA,EAAKgE,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAsBA,EAAK,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,8EAA8E,EAAE,SAAS,oCAAoC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK9D,EAAS,CAAC,sBAAsB,GAAK,SAAsB8D,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAsBA,EAAK,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,8EAA8E,EAAE,SAAS,oCAAoC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,sBAAsB,MAAM,CAAC,mBAAmB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,SAAsBA,EAAK9D,EAAS,CAAC,sBAAsB,GAAK,SAAsB8D,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,OAAO,sBAAsB,6EAA6E,EAAE,SAAS,sMAAsM,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,mFAAmF,MAAM,CAAC,oBAAoB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,GAAGgD,GAAW,IAAIC,GAAK,SAAsBa,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAc9D,EAAKgE,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,QAAQ,EAAE,SAAsBA,EAAK,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,gFAAgF,EAAE,SAAS,4BAA4B,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,QAAQ,EAAE,SAAsBA,EAAK,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,gFAAgF,EAAE,SAAS,4BAA4B,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK9D,EAAS,CAAC,sBAAsB,GAAK,SAAsB8D,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,QAAQ,EAAE,SAAsBA,EAAK,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,gFAAgF,EAAE,SAAS,4BAA4B,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,UAAU,MAAM,CAAC,mBAAmB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe8D,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAc9D,EAAKgE,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,6EAA6E,EAAE,SAAS,qCAAqC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK9D,EAAS,CAAC,sBAAsB,GAAK,SAAsB8D,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,6EAA6E,EAAE,SAAS,qCAAqC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,aAAa,MAAM,CAAC,oBAAoB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe8D,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,SAAS,CAAc9D,EAAK,MAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,EAAE,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,WAAW,SAAsB8D,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,SAAS,CAAc9D,EAAK9D,EAAS,CAAC,sBAAsB,GAAK,SAAsB8D,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,QAAQ,EAAE,SAAsBA,EAAK,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,gFAAgF,EAAE,SAAS,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,aAAa,MAAM,CAAC,mBAAmB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKgE,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,6EAA6E,EAAE,SAAS,uCAAuC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK9D,EAAS,CAAC,sBAAsB,GAAK,SAAsB8D,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,6EAA6E,EAAE,SAAS,uCAAuC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,cAAc,MAAM,CAAC,oBAAoB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,SAAsBA,EAAK/D,EAAe,CAAC,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsB+D,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,6EAA6E,EAAE,SAAS,+BAA+B,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,SAAS,MAAM,CAAC,oBAAoB,EAAE,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe8D,EAAM,MAAM,CAAC,UAAU,eAAe,mBAAmB,eAAe,SAAS,CAACZ,GAAY,GAAgBlD,EAAKmE,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASG,GAA6BtE,EAAKgE,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,OAAO,CAAC,EAAE,SAAsB7B,EAAKiE,EAA0B,CAAC,OAAO,GAAG,MAAM,WAAW,SAAsBjE,EAAKtE,EAAU,CAAC,UAAU,yCAAyC,mBAAmB,SAAS,KAAK,SAAS,OAAO,YAAY,QAAQ,YAAY,SAAsBsE,EAAKgE,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUyC,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsBtE,EAAK5D,GAAQ,CAAC,UAAU,aAAa,UAAUkI,EAAe,CAAC,EAAE,UAAU,GAAM,OAAO,OAAO,UAAU,GAAK,GAAG,YAAY,UAAU,QAAQ,SAAS,YAAY,KAAK,SAAS,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,YAAY,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEnB,GAAa,GAAgBnD,EAAKuE,GAAK,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAK,SAAsBvE,EAAKlE,EAAO,EAAE,CAAC,UAAU,2DAA2D,mBAAmB,SAAS,SAAsBkE,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAK,MAAM,CAAC,UAAU,gBAAgB,cAAc,GAAK,SAAsB8D,EAAM,MAAM,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,mBAAmB,SAAS,CAAc9D,EAAK9D,EAAS,CAAC,sBAAsB,GAAK,SAAsB8D,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,oBAAoB,EAAE,SAAS,YAAY,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,iBAAiB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,CAAC,EAAeA,EAAKiE,EAA0B,CAAC,SAAsBjE,EAAKtE,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBsE,EAAKjD,GAAM,CAAC,eAAe,IAAI,aAAa,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,GAAG,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+G,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,SAAS,CAAc9D,EAAK/D,EAAe,CAAC,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsB+D,EAAWkE,EAAS,CAAC,SAAsBJ,EAAM,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,6EAA6E,EAAE,SAAS,CAAc9D,EAAK,OAAO,CAAC,MAAM,CAAC,qBAAqB,MAAM,EAAE,SAAS,kBAAkB,CAAC,EAAeA,EAAK,KAAK,CAAC,CAAC,EAAeA,EAAK,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,MAAM,CAAC,mBAAmB,EAAE,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe8D,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,SAAS,CAAc9D,EAAKgE,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,OAAOX,GAAmB,OAAO,OAAO,eAAe,CAAC,EAAE,SAAsBlB,EAAKiE,EAA0B,CAAC,OAAO,GAAG,SAAsBjE,EAAKtE,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBsE,EAAKgE,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,CAAC,MAAM,MAAM,CAAC,CAAC,EAAE,SAAsB7B,EAAK/C,EAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,OAAO,UAAU,iCAAiC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+C,EAAKiE,EAA0B,CAAC,OAAO,GAAG,SAAsBjE,EAAKtE,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBsE,EAAK/C,EAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,OAAO,UAAU,4BAA4B,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+C,EAAKiE,EAA0B,CAAC,OAAO,GAAG,SAAsBjE,EAAKtE,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBsE,EAAK/C,EAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,OAAO,UAAU,gCAAgC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+C,EAAKiE,EAA0B,CAAC,OAAO,GAAG,SAAsBjE,EAAKtE,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBsE,EAAK/C,EAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,OAAO,UAAU,iCAAiC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+C,EAAKiE,EAA0B,CAAC,OAAO,GAAG,SAAsBjE,EAAKtE,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBsE,EAAK/C,EAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,OAAO,UAAU,+BAA+B,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+C,EAAKiE,EAA0B,CAAC,OAAO,GAAG,SAAsBjE,EAAKtE,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBsE,EAAK/C,EAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,OAAO,UAAU,sCAAsC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+C,EAAKiE,EAA0B,CAAC,OAAO,GAAG,SAAsBjE,EAAKtE,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBsE,EAAK/C,EAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,OAAO,UAAU,kCAAkC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+C,EAAK,MAAM,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,MAAM,SAAsB8D,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,SAAS,CAAc9D,EAAK/D,EAAe,CAAC,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsB+D,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,QAAQ,EAAE,SAAsBA,EAAK,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,gFAAgF,EAAE,SAAS,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,aAAa,MAAM,CAAC,mBAAmB,EAAE,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKgE,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,6EAA6E,EAAE,SAAS,6CAA6C,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK/D,EAAe,CAAC,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsB+D,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,6EAA6E,EAAE,SAAS,6CAA6C,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,aAAa,MAAM,CAAC,oBAAoB,EAAE,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,SAAsBA,EAAK/D,EAAe,CAAC,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsB+D,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,6EAA6E,EAAE,SAAS,4BAA4B,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,SAAS,MAAM,CAAC,oBAAoB,EAAE,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAEkD,GAAY,GAAgBlD,EAAK,MAAM,CAAC,UAAU,gCAAgC,mBAAmB,eAAe,SAAsBA,EAAKmE,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASK,GAA6BxE,EAAKgE,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,YAAY,CAAC,EAAE,SAAsB7B,EAAKiE,EAA0B,CAAC,OAAO,GAAG,MAAM,WAAW,SAAsBjE,EAAKtE,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBsE,EAAKgE,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU2C,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsBxE,EAAK5D,GAAQ,CAAC,UAAU,aAAa,UAAUoI,EAAe,CAAC,EAAE,UAAU,GAAM,OAAO,OAAO,UAAU,GAAK,GAAG,YAAY,UAAU,OAAO,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,YAAY,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAErB,GAAa,GAAgBnD,EAAKuE,GAAK,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAK,SAAsBvE,EAAKlE,EAAO,EAAE,CAAC,UAAU,2DAA2D,mBAAmB,SAAS,SAAsBkE,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAK,MAAM,CAAC,UAAU,gBAAgB,cAAc,GAAK,SAAsB8D,EAAM,MAAM,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,mBAAmB,SAAS,CAAc9D,EAAK9D,EAAS,CAAC,sBAAsB,GAAK,SAAsB8D,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,oBAAoB,EAAE,SAAS,YAAY,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,iBAAiB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,CAAC,EAAeA,EAAKiE,EAA0B,CAAC,SAAsBjE,EAAKtE,EAAU,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,qBAAqB,QAAQ,YAAY,SAAsBsE,EAAKjD,GAAM,CAAC,eAAe,IAAI,aAAa,EAAE,OAAO,OAAO,GAAG,qBAAqB,SAAS,qBAAqB,QAAQ,GAAG,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+G,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,SAAS,CAAc9D,EAAK/D,EAAe,CAAC,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsB+D,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,6EAA6E,EAAE,SAAS,kBAAkB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,MAAM,CAAC,mBAAmB,EAAE,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe8D,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,SAAS,CAAc9D,EAAKiE,EAA0B,CAAC,OAAO,GAAG,SAAsBjE,EAAKtE,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBsE,EAAK/C,EAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,OAAO,UAAU,+BAA+B,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+C,EAAKiE,EAA0B,CAAC,OAAO,GAAG,SAAsBjE,EAAKtE,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBsE,EAAK/C,EAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,OAAO,UAAU,8BAA8B,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+C,EAAKiE,EAA0B,CAAC,OAAO,GAAG,SAAsBjE,EAAKtE,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBsE,EAAK/C,EAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,OAAO,UAAU,4BAA4B,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+C,EAAKiE,EAA0B,CAAC,OAAO,GAAG,SAAsBjE,EAAKtE,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBsE,EAAK/C,EAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,OAAO,UAAU,2BAA2B,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+C,EAAKiE,EAA0B,CAAC,OAAO,GAAG,SAAsBjE,EAAKtE,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBsE,EAAK/C,EAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,OAAO,UAAU,uBAAuB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+C,EAAKiE,EAA0B,CAAC,OAAO,GAAG,SAAsBjE,EAAKtE,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBsE,EAAK/C,EAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,OAAO,UAAU,oCAAoC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+C,EAAKiE,EAA0B,CAAC,OAAO,GAAG,SAAsBjE,EAAKtE,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBsE,EAAK/C,EAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,OAAO,UAAU,4BAA4B,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+C,EAAKiE,EAA0B,CAAC,OAAO,GAAG,SAAsBjE,EAAKtE,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBsE,EAAK/C,EAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,OAAO,UAAU,+BAA+B,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe6G,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAc9D,EAAK,MAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,cAAc,SAAsB8D,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,SAAS,CAAc9D,EAAK,MAAM,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,QAAQ,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,SAAsBA,EAAKqE,GAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,IAAI;AAAA;AAAA;AAAA,EAAuzD,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAerE,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAsBA,EAAKgE,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,MAAM,EAAE,SAAsBA,EAAK,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,gFAAgF,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK9D,EAAS,CAAC,sBAAsB,GAAK,SAAsB8D,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,QAAQ,EAAE,SAAsBA,EAAK,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,gFAAgF,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,MAAM,CAAC,mBAAmB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,SAAsBA,EAAK9D,EAAS,CAAC,sBAAsB,GAAK,SAAsB8D,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,6EAA6E,EAAE,SAAS,uEAAuE,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,aAAa,MAAM,CAAC,oBAAoB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEkD,GAAY,GAAgBlD,EAAKmE,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASM,GAA6BzE,EAAKgE,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,OAAO,CAAC,EAAE,SAAsB7B,EAAKiE,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAQ,SAAsBjE,EAAKtE,EAAU,CAAC,UAAU,0CAA0C,OAAO,YAAY,QAAQ,YAAY,SAAsBsE,EAAKgE,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU4C,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsBzE,EAAK5D,GAAQ,CAAC,UAAU,cAAc,UAAUqI,EAAe,CAAC,EAAE,UAAU,GAAK,OAAO,OAAO,UAAU,GAAK,GAAG,YAAY,UAAU,OAAO,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,OAAO,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEtB,GAAa,GAAgBnD,EAAKuE,GAAK,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAK,SAAsBvE,EAAKlE,EAAO,EAAE,CAAC,UAAU,2DAA2D,mBAAmB,SAAS,SAAsBkE,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAK,MAAM,CAAC,UAAU,gBAAgB,cAAc,GAAK,SAAsB8D,EAAM,MAAM,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,mBAAmB,SAAS,CAAc9D,EAAK9D,EAAS,CAAC,sBAAsB,GAAK,SAAsB8D,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,oBAAoB,EAAE,SAAS,YAAY,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,iBAAiB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,CAAC,EAAeA,EAAKiE,EAA0B,CAAC,SAAsBjE,EAAKtE,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBsE,EAAKjD,GAAM,CAAC,eAAe,IAAI,aAAa,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,GAAG,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeiD,EAAK,MAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,EAAE,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,iBAAiB,SAAsBA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAsB8D,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,cAAc,mBAAmB,OAAO,SAAS,CAAc9D,EAAK,MAAM,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,QAAQ,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,eAAe,SAAsBA,EAAKqE,GAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,IAAI;AAAA;AAAA;AAAA,EAA2uC,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAerE,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAsBA,EAAKgE,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,MAAM,EAAE,SAAsBA,EAAK,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,gFAAgF,EAAE,SAAS,uBAAuB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK9D,EAAS,CAAC,sBAAsB,GAAK,SAAsB8D,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,QAAQ,EAAE,SAAsBA,EAAK,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,gFAAgF,EAAE,SAAS,uBAAuB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,MAAM,CAAC,mBAAmB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,SAAsBA,EAAKgE,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBiC,EAAYI,EAAS,CAAC,SAAS,CAAclE,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,6EAA6E,EAAE,SAAS,kDAAkD,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,6EAA6E,EAAE,SAAsBA,EAAK,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,6EAA6E,EAAE,SAAS,0CAA0C,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK9D,EAAS,CAAC,sBAAsB,GAAK,SAAsB4H,EAAYI,EAAS,CAAC,SAAS,CAAclE,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,6EAA6E,EAAE,SAAS,kDAAkD,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,6EAA6E,EAAE,SAAsBA,EAAK,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,6EAA6E,EAAE,SAAS,0CAA0C,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,aAAa,MAAM,CAAC,oBAAoB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe8D,EAAM,SAAS,CAAC,UAAU,iBAAiB,mBAAmB,iBAAiB,GAAGV,GAAW,IAAIC,GAAK,SAAS,CAAcrD,EAAKgE,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,QAAQ,EAAE,SAAsB8D,EAAM,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,gFAAgF,EAAE,SAAS,CAAC,oBAAiC9D,EAAK,KAAK,CAAC,CAAC,EAAE,YAAY,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,QAAQ,EAAE,SAAsB8D,EAAM,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,gFAAgF,EAAE,SAAS,CAAC,oBAAiC9D,EAAK,KAAK,CAAC,CAAC,EAAE,YAAY,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK9D,EAAS,CAAC,sBAAsB,GAAK,SAAsB8D,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,QAAQ,EAAE,SAAsB8D,EAAM,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,gFAAgF,EAAE,SAAS,CAAC,oBAAiC9D,EAAK,KAAK,CAAC,CAAC,EAAE,YAAY,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,UAAU,MAAM,CAAC,mBAAmB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,SAAsBA,EAAKiE,EAA0B,CAAC,SAAsBjE,EAAKtE,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBsE,EAAKgE,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,CAAC,EAAE,UAAU,CAAC,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,CAAC,CAAC,EAAE,SAAsB7B,EAAK7C,GAAM,CAAC,OAAO,OAAO,KAAK,0OAAyO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,KAAK,OAAO,IAAI,iDAAiD,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe6C,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,GAAGsD,GAAW,IAAIC,GAAK,SAAsBO,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAc9D,EAAKgE,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,QAAQ,EAAE,SAAsBA,EAAK,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,gFAAgF,EAAE,SAAS,8BAA8B,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,QAAQ,EAAE,SAAsBA,EAAK,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,gFAAgF,EAAE,SAAS,8BAA8B,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK9D,EAAS,CAAC,sBAAsB,GAAK,SAAsB8D,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,QAAQ,EAAE,SAAsBA,EAAK,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,gFAAgF,EAAE,SAAS,8BAA8B,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,UAAU,MAAM,CAAC,mBAAmB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe8D,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,gBAAgB,SAAS,CAAc9D,EAAKgE,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,eAAe,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,sEAAsE,OAAO,oQAAoQ,CAAC,CAAC,EAAE,SAAsB7B,EAAKhE,GAAM,CAAC,WAAW,CAAC,IAAI,eAAe,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,sEAAsE,OAAO,oQAAoQ,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,CAAC,CAAC,CAAC,EAAegE,EAAKgE,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,eAAe,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,MAAM,aAAa,IAAI,oEAAoE,OAAO,8PAA8P,CAAC,CAAC,EAAE,SAAsB7B,EAAKhE,GAAM,CAAC,WAAW,CAAC,IAAI,eAAe,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,MAAM,aAAa,IAAI,oEAAoE,OAAO,8PAA8P,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe8H,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,sBAAsB,SAAS,CAAc9D,EAAKgE,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,6EAA6E,EAAE,SAAS,+GAA+G,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK9D,EAAS,CAAC,sBAAsB,GAAK,SAAsB8D,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,6EAA6E,EAAE,SAAS,+GAA+G,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,aAAa,MAAM,CAAC,oBAAoB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKmE,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASO,GAA6B1E,EAAKiE,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAQ,SAAsBjE,EAAKtE,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBsE,EAAKgE,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU6C,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsB1E,EAAK5D,GAAQ,CAAC,UAAU,cAAc,UAAUsI,EAAe,CAAC,EAAE,UAAU,GAAK,OAAO,OAAO,UAAU,GAAK,GAAG,YAAY,UAAU,MAAM,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,YAAY,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeZ,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,SAAS,CAAc9D,EAAKgE,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,QAAQ,EAAE,SAAsBA,EAAK,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,gFAAgF,EAAE,SAAS,wBAAwB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK9D,EAAS,CAAC,sBAAsB,GAAK,SAAsB8D,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,QAAQ,EAAE,SAAsBA,EAAK,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,gFAAgF,EAAE,SAAS,wBAAwB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,+BAA+B,MAAM,CAAC,mBAAmB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAEwD,GAAa,GAAgBM,EAAM,MAAM,CAAC,UAAU,gCAAgC,mBAAmB,QAAQ,SAAS,CAAc9D,EAAKhE,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,GAAG,eAAe,IAAI,YAAY,GAAG,WAAW,IAAI,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,CAAC,EAAegE,EAAKgE,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,GAAG,eAAe,IAAI,YAAY,IAAI,WAAW,KAAK,MAAM,aAAa,IAAI,uFAAuF,OAAO,gQAAgQ,CAAC,CAAC,EAAE,SAAsB7B,EAAKhE,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,GAAG,eAAe,IAAI,YAAY,IAAI,WAAW,KAAK,MAAM,QAAQ,IAAI,uFAAuF,OAAO,gQAAgQ,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,CAAC,CAAC,CAAC,EAAegE,EAAKgE,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,GAAG,eAAe,IAAI,YAAY,KAAK,WAAW,KAAK,MAAM,UAAU,IAAI,wFAAwF,OAAO,6bAA6b,CAAC,CAAC,EAAE,SAAsB7B,EAAKhE,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,GAAG,eAAe,IAAI,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wFAAwF,OAAO,6bAA6b,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,CAAC,CAAC,CAAC,EAAegE,EAAKgE,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,GAAG,eAAe,IAAI,YAAY,IAAI,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,uFAAuF,OAAO,gQAAgQ,CAAC,CAAC,EAAE,SAAsB7B,EAAKhE,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,GAAG,eAAe,IAAI,YAAY,IAAI,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,uFAAuF,OAAO,gQAAgQ,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEyH,GAAa,GAAgBK,EAAM,MAAM,CAAC,UAAU,8CAA8C,mBAAmB,QAAQ,SAAS,CAAc9D,EAAKhE,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,GAAG,eAAe,IAAI,YAAY,GAAG,WAAW,IAAI,IAAI,oEAAoE,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,CAAC,EAAegE,EAAKhE,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,GAAG,eAAe,IAAI,YAAY,GAAG,WAAW,IAAI,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,CAAC,EAAegE,EAAKhE,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,GAAG,eAAe,IAAI,YAAY,GAAG,WAAW,IAAI,IAAI,qEAAqE,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,CAAC,EAAegE,EAAKhE,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,GAAG,eAAe,IAAI,YAAY,GAAG,WAAW,IAAI,IAAI,qEAAqE,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegE,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,GAAG0D,GAAW,IAAIC,GAAK,SAAsBG,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAc9D,EAAKgE,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,sCAAsC,OAAU,SAAsB7B,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,QAAQ,EAAE,SAAsBA,EAAK,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,gFAAgF,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,EAAE,UAAU,CAAC,sCAAsC,OAAU,SAAsBA,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,QAAQ,EAAE,SAAsBA,EAAK,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,gFAAgF,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK/D,EAAe,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,IAAI0H,GAAK,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,2BAA2B,iBAAiB,qCAAqC,EAAE,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsB3D,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,QAAQ,EAAE,SAAsBA,EAAK,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,gFAAgF,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,MAAM,CAAC,mBAAmB,EAAE,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe8D,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAc9D,EAAKgE,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,sCAAsC,OAAU,SAAsB7B,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,6EAA6E,EAAE,SAAS,sKAAsK,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,EAAE,UAAU,CAAC,sCAAsC,OAAU,SAAsBA,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,6EAA6E,EAAE,SAAS,yKAAyK,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK/D,EAAe,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,IAAI0H,GAAK,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,2BAA2B,iBAAiB,qCAAqC,EAAE,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsB3D,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,6EAA6E,EAAE,SAAS,sKAAsK,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,aAAa,MAAM,CAAC,oBAAoB,EAAE,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKgE,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,OAAOX,GAAmB,OAAO,OAAO,iBAAiB,EAAE,UAAU,CAAC,MAAM,OAAO,CAAC,EAAE,SAAsBlB,EAAKiE,EAA0B,CAAC,OAAO,KAAK,MAAM,QAAQ,SAAsBjE,EAAKgE,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,sCAAsC,OAAU,MAAM,CAAC,CAAC,EAAE,UAAU,CAAC,sCAAsC,OAAU,MAAM,CAAC,CAAC,CAAC,EAAE,SAAsB7B,EAAKxE,EAAgB,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,IAAImI,GAAK,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,2BAA2B,iBAAiB,qCAAqC,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,2BAA2B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsB3D,EAAK3C,GAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,SAAS,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeyG,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,SAAS,CAAc9D,EAAKiE,EAA0B,CAAC,SAAsBjE,EAAKgE,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,CAAC,CAAC,EAAE,UAAU,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,SAAsB7B,EAAKxE,EAAgB,CAAC,gBAAgB,GAAM,gBAAgB,IAAI,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsBwE,EAAKpE,GAAM,CAAC,gBAAgB,mBAAmB,aAAa,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,SAAS,GAAM,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,SAAS,YAAY,KAAK,GAAK,MAAM,GAAK,UAAU,QAAQ,QAAQ,GAAK,cAAc,GAAM,QAAQ,uEAAuE,QAAQ,SAAS,OAAO,oHAAoH,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,cAAc,EAAE,eAAe,EAAE,OAAO,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeoE,EAAKgE,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,mBAAmB,IAAI,MAAM,gBAAgB,GAAG,eAAe,IAAI,YAAY,IAAI,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,aAAa,IAAI,yFAAyF,OAAO,kcAAkc,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,mBAAmB,IAAI,MAAM,gBAAgB,GAAG,eAAe,IAAI,YAAY,IAAI,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,aAAa,IAAI,yFAAyF,OAAO,kcAAkc,CAAC,CAAC,EAAE,SAAsB7B,EAAKjE,GAAY,CAAC,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,mBAAmB,IAAI,MAAM,gBAAgB,GAAG,eAAe,IAAI,YAAY,IAAI,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,yFAAyF,OAAO,kcAAkc,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,MAAM,CAAC,qBAAqB,IAAI,CAAC,CAAC,CAAC,CAAC,EAAeiE,EAAKgE,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,QAAQ,EAAE,SAAsBA,EAAK,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,gFAAgF,EAAE,SAAS,4FAA4F,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,QAAQ,EAAE,SAAsBA,EAAK,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,gFAAgF,EAAE,SAAS,4FAA4F,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK/D,EAAe,CAAC,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsB+D,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,QAAQ,EAAE,SAAsBA,EAAK,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,gFAAgF,EAAE,SAAS,4FAA4F,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,mCAAmC,MAAM,CAAC,mBAAmB,EAAE,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKgE,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,CAAC,CAAC,EAAE,UAAU,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,SAAsB7B,EAAKnE,GAAgB,CAAC,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,mBAAmB,SAAS,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsBmE,EAAKmE,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASQ,GAA6B3E,EAAKiE,EAA0B,CAAC,OAAO,GAAG,SAAsBjE,EAAKtE,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBsE,EAAKgE,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU8C,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsB3E,EAAK5D,GAAQ,CAAC,UAAU,cAAc,UAAUuI,EAAe,CAAC,EAAE,UAAU,GAAM,OAAO,OAAO,UAAU,GAAK,GAAG,YAAY,UAAU,QAAQ,SAAS,YAAY,UAAU,YAAY,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe3E,EAAKgE,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,6EAA6E,EAAE,SAAS,gDAAgD,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,EAAE,UAAU,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK/D,EAAe,CAAC,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsB+D,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,6EAA6E,EAAE,SAAS,gDAAgD,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,gFAA2E,MAAM,CAAC,oBAAoB,EAAE,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,SAAsB8D,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAACZ,GAAY,GAAgBlD,EAAK,MAAM,CAAC,UAAU,+BAA+B,mBAAmB,OAAO,SAAsBA,EAAKgE,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,mBAAmB,IAAI,MAAM,gBAAgB,GAAG,eAAe,IAAI,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,aAAa,IAAI,yFAAyF,OAAO,sQAAsQ,CAAC,CAAC,EAAE,SAAsB7B,EAAKjE,GAAY,CAAC,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,mBAAmB,IAAI,MAAM,gBAAgB,GAAG,eAAe,IAAI,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,yFAAyF,OAAO,sQAAsQ,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,MAAM,CAAC,qBAAqB,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeiE,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,SAAsB8D,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,SAAS,CAAc9D,EAAKiE,EAA0B,CAAC,OAAO,GAAG,MAAM,SAAS,SAAsBjE,EAAKtE,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBsE,EAAKzC,GAAa,CAAC,UAAU,2EAA2E,OAAO,OAAO,GAAG,YAAY,UAAU,GAAK,SAAS,YAAY,UAAU,WAAW,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeyC,EAAKiE,EAA0B,CAAC,OAAO,GAAG,MAAM,SAAS,SAAsBjE,EAAKtE,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBsE,EAAKzC,GAAa,CAAC,UAAU,6CAA6C,OAAO,OAAO,GAAG,YAAY,UAAU,GAAK,SAAS,YAAY,UAAU,UAAU,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeyC,EAAKiE,EAA0B,CAAC,OAAO,GAAG,MAAM,OAAO,SAAsBjE,EAAKtE,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBsE,EAAKzC,GAAa,CAAC,UAAU,8DAA8D,OAAO,OAAO,GAAG,YAAY,UAAU,GAAK,SAAS,YAAY,UAAU,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeyC,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,CAAC,EAAe8D,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,SAAS,CAAc9D,EAAKgE,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,6EAA6E,EAAE,SAAS,sDAAsD,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,6EAA6E,EAAE,SAAS,sDAAsD,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK9D,EAAS,CAAC,sBAAsB,GAAK,SAAsB8D,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,6EAA6E,EAAE,SAAS,sDAAsD,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,wCAAwC,MAAM,CAAC,oBAAoB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAEkD,GAAY,GAAgBlD,EAAK,MAAM,CAAC,UAAU,gCAAgC,mBAAmB,OAAO,CAAC,EAAeA,EAAKgE,EAAkB,CAAC,WAAWnC,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,6EAA6E,EAAE,SAAS,wCAAwC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,QAAQ,sBAAsB,6EAA6E,EAAE,SAAS,wCAAwC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK9D,EAAS,CAAC,sBAAsB,GAAK,SAAsB8D,EAAWkE,EAAS,CAAC,SAAsBlE,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,QAAQ,sBAAsB,6EAA6E,EAAE,SAAS,wCAAwC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,wCAAwC,MAAM,CAAC,oBAAoB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQ4E,GAAI,CAAC,kFAAkF,gFAAgF,mSAAmS,yKAAyK,+QAA+Q,+QAA+Q,iWAAiW,wJAAwJ,4MAA4M,mHAAmH,iRAAiR,gRAAgR,oMAAoM,qOAAqO,oSAAoS,8JAA8J,6XAA6X,2RAA2R,wSAAwS,oVAAoV,kLAAkL,mNAAmN,+IAA+I,8IAA8I,8IAA8I,8IAA8I,+IAA+I,4KAA4K,+IAA+I,6IAA6I,4IAA4I,8IAA8I,8IAA8I,8IAA8I,8IAA8I,6IAA6I,4KAA4K,8IAA8I,sLAAsL,8YAA8Y,gSAAgS,4WAA4W,yWAAyW,qcAAqc,sJAAsJ,oNAAoN,+MAA+M,0QAA0Q,oLAAoL,oNAAoN,kRAAkR,gTAAgT,kLAAkL,oNAAoN,gRAAgR,iSAAiS,kOAAkO,kQAAkQ,orBAAorB,+HAA+H,qjBAAqjB,2GAA2G,mNAAmN,uNAAuN,oNAAoN,qNAAqN,uRAAuR,6VAA6V,uVAAuV,6KAA6K,yVAAyV,oMAAoM,4VAA4V,qKAAqK,iRAAiR,mMAAmM,+QAA+Q,iPAAiP,yRAAyR,yoBAAyoB,8RAA8R,6XAA6X,qPAAqP,6NAA6N,kTAAkT,qMAAqM,yiBAAyiB,oWAAoW,y0BAAy0B,w6BAAw6B,uVAAuV,yaAAya,uOAAuO,uRAAuR,iqBAAiqB,utBAAutB,2SAA2S,wRAAwR,8RAA8R,mpBAAmpB,mRAAmR,mSAAmS,wMAAwM,ojBAAojB,kOAAkO,kHAAkH,2UAA2U,sVAAsV,qMAAqM,kRAAkR,iTAAiT,kgBAAkgB,iHAAiH,8VAA8V,iLAAiL,6QAA6Q,2GAA2G,iSAAiS,+QAA+Q,uRAAuR,oXAAoX,oXAAoX,iSAAiS,qHAAqH,uRAAuR,yLAAyL,oRAAoR,8LAA8L,4OAA4O,gLAAgL,kLAAkL,oRAAoR,8LAA8L,8LAA8L,iLAAiL,kLAAkL,sRAAsR,uIAAuI,4SAA4S,uJAAuJ,mHAAmH,kMAAkM,kSAAkS,oOAAoO,sYAAsY,kRAAkR,uSAAuS,mHAAmH,gSAAgS,4QAA4Q,4JAA4J,4HAA4H,8LAA8L,sMAAsM,gUAAgU,oxiBAAoxiB,gcAAgc,43KAA43K,67QAA67Q,EAYhw/NC,GAAgBC,EAAQvE,GAAUqE,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,OAAOA,GAAgB,aAAa,CAAC,OAAO,MAAM,MAAM,IAAI,EAAEG,EAASH,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,UAAU,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,EAAE,CAAC,OAAO,UAAU,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,EAAE,CAAC,OAAO,UAAU,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,EAAE,CAAC,OAAO,UAAU,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGxJ,GAAU,GAAGM,GAAW,GAAGQ,GAAY,GAAGI,GAAa,GAAGE,GAAgB,GAAGE,GAAsB,GAAGE,GAAa,GAAGC,GAAW,GAAGE,GAAa,GAAGE,GAAW,GAAGE,GAAe,GAAGE,EAAiB,EAAE,CAAC,6BAA6B,EAAI,CAAC,EACj5C,IAAM2H,GAAqB,CAAC,QAAU,CAAC,MAAQ,CAAC,KAAO,SAAS,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,QAAU,CAAC,KAAO,iBAAiB,KAAO,kBAAkB,MAAQ,CAAC,EAAE,YAAc,CAAC,uBAAyB,GAAG,kBAAoB,OAAO,qBAAuB,OAAO,oCAAsC,4JAA0L,qBAAuB,kfAA4kB,sBAAwB,QAAQ,yBAA2B,QAAQ,4BAA8B,OAAO,yBAA2B,OAAO,6BAA+B,OAAO,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", "PhosphorFonts", "getFonts", "Icon", "PhosphorControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "transition3", "transition4", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "icon", "id", "link", "mouseEnter2", "smoothScroll", "title", "width", "props", "_ref", "_ref1", "_ref2", "_humanReadableVariantMap_props_variant", "_ref3", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "OgjrYiFSJ", "TS_h1_wYm", "wp6SayKCb", "staY2GTRV", "nD3SKf68G", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnter1g6g1kp", "args", "onTap1bpua9z", "onMouseEnterakjz0k", "onMouseLeave171k3fs", "onAppearor3pof", "onMouseEnter1jaf5q2", "onMouseLeaveeofj5l", "useOnVariantChange", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "RichText2", "ComponentViewportProvider", "SVG", "css", "FramerALsMpQMRR", "withCSS", "ALsMpQMRR_default", "addPropertyControls", "ControlType", "addFonts", "NavigationButtonFonts", "getFonts", "ALsMpQMRR_default", "NoiseFonts", "Noise", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "router", "useRouter", "LayoutGroup", "u", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "SmartComponentScopedContainer", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "css", "FramerDPi_nIUbR", "withCSS", "DPi_nIUbR_default", "addPropertyControls", "ControlType", "addFonts", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "title", "width", "props", "_ref", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "zexjRzvBi", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "SVG", "RichText2", "css", "FramerKhGBuamoD", "withCSS", "KhGBuamoD_default", "addPropertyControls", "ControlType", "addFonts", "IconoirFonts", "getFonts", "Icon", "IconoirControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "icon", "id", "link", "newTab", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "sa6KXxU5R", "A05ntVEMU", "L6yNMseIU", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "Link", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerkHl0ZFZ7j", "withCSS", "kHl0ZFZ7j_default", "addPropertyControls", "ControlType", "addFonts", "IconoirFonts", "getFonts", "Icon", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "answer", "height", "id", "question", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "W88zB8mIG", "T8rQFvSBR", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1086zaf", "args", "onTap3dr32u", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "RichText2", "css", "FramervE6EfJAfP", "withCSS", "vE6EfJAfP_default", "addPropertyControls", "ControlType", "addFonts", "RowFonts", "getFonts", "vE6EfJAfP_default", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "vE6EfJAfP_default", "css", "FramerO6330MTHB", "withCSS", "O6330MTHB_default", "addFonts", "RowFonts", "DockFonts", "getFonts", "DPi_nIUbR_default", "ContainerWithFX", "withFX", "Container", "VideoFonts", "Video", "MotionDivWithFX", "motion", "ImageWithFX", "Image2", "RichTextWithFX", "RichText2", "ButtonFonts", "zmfXfUs2x_default", "MotionDivWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "ShimmerFonts", "g_s8LqzcU_default", "FeatureBoxFonts", "fxtGDje59_default", "RotatingGradientFonts", "Shiney_default", "Button1Fonts", "NoiseFonts", "Noise", "FeatureFonts", "KhGBuamoD_default", "EmbedFonts", "Embed", "AccordionFonts", "O6330MTHB_default", "SocialButtonFonts", "kHl0ZFZ7j_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "transition1", "animation", "animation1", "transition2", "animation2", "transition3", "animation3", "transition4", "animation4", "transition5", "animation5", "transition6", "animation6", "transition7", "animation7", "transition8", "animation8", "transition9", "animation9", "transition10", "transition11", "transition12", "transition13", "transition14", "transition15", "transition16", "transition17", "addImageAlt", "image", "alt", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "ref1", "elementId", "useRouteElementId", "ref2", "router", "useRouter", "elementId1", "elementId2", "ref3", "elementId3", "ref4", "elementId4", "ref5", "elementId5", "ref6", "isDisplayed", "isDisplayed1", "elementId6", "ref7", "elementId7", "ref8", "isDisplayed2", "isDisplayed3", "elementId8", "ref9", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "x", "ResolveLinks", "resolvedLinks", "SVG", "resolvedLinks1", "Link", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "__FramerMetadata__"]
}
