{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js", "ssg:https://framerusercontent.com/modules/fpTR9Ob6N9JBGha8hbH4/GqOvYjXXuFtdzJ308n8N/ew3GHYK1L.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 (2ca17d4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Link,PropertyOverrides,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js\";import HeroCenter04 from\"#framer/local/canvasComponent/JtXi9OQ6X/JtXi9OQ6X.js\";import Footer from\"#framer/local/canvasComponent/MvPRU52yR/MvPRU52yR.js\";import Navbar from\"#framer/local/canvasComponent/P9ffjPGqS/P9ffjPGqS.js\";import CTAVertical03 from\"#framer/local/canvasComponent/tXJZZ41W7/tXJZZ41W7.js\";import*as sharedStyle from\"#framer/local/css/sJXPpwmYP/sJXPpwmYP.js\";import*as sharedStyle2 from\"#framer/local/css/YltRG4NVa/YltRG4NVa.js\";import*as sharedStyle1 from\"#framer/local/css/Ym6cjYUno/Ym6cjYUno.js\";import metadataProvider from\"#framer/local/webPageMetadata/ew3GHYK1L/ew3GHYK1L.js\";const NavbarFonts=getFonts(Navbar);const HeroCenter04Fonts=getFonts(HeroCenter04);const EmbedFonts=getFonts(Embed);const CTAVertical03Fonts=getFonts(CTAVertical03);const FooterFonts=getFonts(Footer);const breakpoints={ASwZctj_y:\"(min-width: 1200px)\",CbtnIxqvC:\"(min-width: 810px) and (max-width: 1199px)\",eTCO5XTFZ:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-N6Kcu\";const variantClassNames={ASwZctj_y:\"framer-v-10phd6e\",CbtnIxqvC:\"framer-v-l3tnhy\",eTCO5XTFZ:\"framer-v-1en7ms8\"};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"ASwZctj_y\",Phone:\"eTCO5XTFZ\",Tablet:\"CbtnIxqvC\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"ASwZctj_y\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();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=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();useCustomCursors({});const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"ASwZctj_y\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-92fddb23-b2ef-429e-b64a-b8220fed5a33, rgb(17, 29, 59)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-10phd6e\",className),ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:57,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-15icbjo-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{eTCO5XTFZ:{variant:\"GTOSl3VBU\"}},children:/*#__PURE__*/_jsx(Navbar,{height:\"100%\",id:\"qBpT6w4Eq\",layoutId:\"qBpT6w4Eq\",style:{width:\"100%\"},variant:\"geYB9oN7X\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"main\",{className:\"framer-3oflgw\",\"data-framer-name\":\"Main\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:250,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+57+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-z1xqp0-container\",children:/*#__PURE__*/_jsx(HeroCenter04,{dPkRYuBNZ:\"\",height:\"100%\",id:\"J6IU4wA7s\",layoutId:\"J6IU4wA7s\",style:{width:\"100%\"},variant:\"cQ3jEf0UU\",width:\"100%\",xZ24RwArU:\"Cookie Policy\"})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-4obkc9\",\"data-framer-name\":\"Contact / Form-04\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-i82480\",\"data-framer-name\":\"Container + Padding\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p7ajm6\",\"data-framer-name\":\"Layout\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-xmw7dk\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1dtlomj\",\"data-styles-preset\":\"sJXPpwmYP\",style:{\"--framer-text-color\":\"var(--token-c9883a06-0714-4bde-a248-d9d8eb496918, rgb(109, 113, 133))\"},children:[\"Effective Date: 29-Jul-2024\",/*#__PURE__*/_jsx(\"br\",{}),\"Last Updated: 29-Jul-2024\"]})}),className:\"framer-o1ss0u\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18evoa1\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-nz380f\",\"data-styles-preset\":\"Ym6cjYUno\",style:{\"--framer-text-color\":\"var(--token-801172cb-bf10-456d-b6c0-e7ed31654a54, rgb(17, 29, 59))\"},children:\"What are cookies?\"})}),className:\"framer-3dh8g9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1dtlomj\",\"data-styles-preset\":\"sJXPpwmYP\",style:{\"--framer-text-color\":\"var(--token-c9883a06-0714-4bde-a248-d9d8eb496918, rgb(109, 113, 133))\"},children:\"This Cookie Policy explains what cookies are and how we use them, the types of cookies we use i.e, the information we collect using cookies and how that information is used, and how to manage the cookie settings.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1dtlomj\",\"data-styles-preset\":\"sJXPpwmYP\",style:{\"--framer-text-color\":\"var(--token-c9883a06-0714-4bde-a248-d9d8eb496918, rgb(109, 113, 133))\"},children:\"Cookies are small text files that are used to store small pieces of information. They are stored on your device when the website is loaded on your browser. These cookies help us make the website function properly, make it more secure, provide better user experience, and understand how the website performs and to analyze what works and where it needs improvement\"})]}),className:\"framer-1gec69v\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qo5yqs\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-nz380f\",\"data-styles-preset\":\"Ym6cjYUno\",style:{\"--framer-text-color\":\"var(--token-801172cb-bf10-456d-b6c0-e7ed31654a54, rgb(17, 29, 59))\"},children:\"How do we use cookies?\"})}),className:\"framer-1y5ksm5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1dtlomj\",\"data-styles-preset\":\"sJXPpwmYP\",style:{\"--framer-text-color\":\"var(--token-c9883a06-0714-4bde-a248-d9d8eb496918, rgb(109, 113, 133))\"},children:\"As most of the online services, our website uses first-party and third-party cookies for several purposes. First-party cookies are mostly necessary for the website to function the right way, and they do not collect any of your personally identifiable data.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1dtlomj\",\"data-styles-preset\":\"sJXPpwmYP\",style:{\"--framer-text-color\":\"var(--token-c9883a06-0714-4bde-a248-d9d8eb496918, rgb(109, 113, 133))\"},children:\"The third-party cookies used on our website are mainly for understanding how the website performs, how you interact with our website, keeping our services secure, providing advertisements that are relevant to you, and all in all providing you with a better and improved user experience and help speed up your future interactions with our website.\"})]}),className:\"framer-uuj2pt\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sb30oy\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-nz380f\",\"data-styles-preset\":\"Ym6cjYUno\",style:{\"--framer-text-color\":\"var(--token-801172cb-bf10-456d-b6c0-e7ed31654a54, rgb(17, 29, 59))\"},children:\"Types of Cookies we use\"})}),className:\"framer-1jpg6ka\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ofdk3b-container\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<div class=\"cky-audit-table-element\"></div>',id:\"sjxavwVPs\",layoutId:\"sjxavwVPs\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9jhy6r\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-nz380f\",\"data-styles-preset\":\"Ym6cjYUno\",style:{\"--framer-text-color\":\"var(--token-801172cb-bf10-456d-b6c0-e7ed31654a54, rgb(17, 29, 59))\"},children:\"Manage cookie preferences\"})}),className:\"framer-11ue75m\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-6ye7zm-container\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<a class=\"cky-banner-element\">Cookie Settings</a> <br/>',id:\"OeIKnY_8d\",layoutId:\"OeIKnY_8d\",style:{width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1dtlomj\",\"data-styles-preset\":\"sJXPpwmYP\",style:{\"--framer-text-color\":\"var(--token-c9883a06-0714-4bde-a248-d9d8eb496918, rgb(109, 113, 133))\"},children:\"You can change your cookie preferences any time by clicking the above button. This will let you revisit the cookie consent banner and change your preferences or withdraw your consent right away. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1dtlomj\",\"data-styles-preset\":\"sJXPpwmYP\",style:{\"--framer-text-color\":\"var(--token-c9883a06-0714-4bde-a248-d9d8eb496918, rgb(109, 113, 133))\"},children:\"In addition to this, different browsers provide different methods to block and delete cookies used by websites. You can change the settings of your browser to block/delete the cookies. Listed below are the links to the support documents on how to manage and delete cookies from the major web browsers.\"}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1dtlomj\",\"data-styles-preset\":\"sJXPpwmYP\",style:{\"--framer-text-color\":\"var(--token-c9883a06-0714-4bde-a248-d9d8eb496918, rgb(109, 113, 133))\"},children:[\"Chrome: \",/*#__PURE__*/_jsx(Link,{href:\"https://support.google.com/accounts/answer/32050\",motionChild:true,nodeId:\"mwgfigaF7\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1f7a9ir\",\"data-styles-preset\":\"YltRG4NVa\",children:\"https://support.google.com/accounts/answer/32050\"})})]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1dtlomj\",\"data-styles-preset\":\"sJXPpwmYP\",style:{\"--framer-text-color\":\"var(--token-c9883a06-0714-4bde-a248-d9d8eb496918, rgb(109, 113, 133))\"},children:[\"Safari: \",/*#__PURE__*/_jsx(Link,{href:\"https://support.apple.com/en-in/guide/safari/sfri11471/mac\",motionChild:true,nodeId:\"mwgfigaF7\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1f7a9ir\",\"data-styles-preset\":\"YltRG4NVa\",children:\"https://support.apple.com/en-in/guide/safari/sfri11471/mac\"})})]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1dtlomj\",\"data-styles-preset\":\"sJXPpwmYP\",style:{\"--framer-text-color\":\"var(--token-c9883a06-0714-4bde-a248-d9d8eb496918, rgb(109, 113, 133))\"},children:[\"Firefox: \",/*#__PURE__*/_jsx(Link,{href:\"https://support.mozilla.org/en-US/kb/clear-cookies-and-site-data-firefox?redirectslug=delete-cookies-remove-info-websites-stored&redirectlocale=en-US\",motionChild:true,nodeId:\"mwgfigaF7\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1f7a9ir\",\"data-styles-preset\":\"YltRG4NVa\",children:\"https://support.mozilla.org/en-US/kb/clear-cookies-and-site-data-firefox?redirectslug=delete-cookies-remove-info-websites-stored&redirectlocale=en-US\"})})]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1dtlomj\",\"data-styles-preset\":\"sJXPpwmYP\",style:{\"--framer-text-color\":\"var(--token-c9883a06-0714-4bde-a248-d9d8eb496918, rgb(109, 113, 133))\"},children:[\"Internet Explorer: \",/*#__PURE__*/_jsx(Link,{href:\"https://support.microsoft.com/en-us/topic/how-to-delete-cookie-files-in-internet-explorer-bca9446f-d873-78de-77ba-d42645fa52fc\",motionChild:true,nodeId:\"mwgfigaF7\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1f7a9ir\",\"data-styles-preset\":\"YltRG4NVa\",children:\"https://support.microsoft.com/en-us/topic/how-to-delete-cookie-files-in-internet-explorer-bca9446f-d873-78de-77ba-d42645fa52fc\"})})]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1dtlomj\",\"data-styles-preset\":\"sJXPpwmYP\",style:{\"--framer-text-color\":\"var(--token-c9883a06-0714-4bde-a248-d9d8eb496918, rgb(109, 113, 133))\"},children:\"If you are using any other web browser, please visit your browser\u2019s official support documents.\"}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1dtlomj\",\"data-styles-preset\":\"sJXPpwmYP\",style:{\"--framer-text-color\":\"var(--token-c9883a06-0714-4bde-a248-d9d8eb496918, rgb(109, 113, 133))\"},children:[\"Cookie Policy Generated By\\xa0\",/*#__PURE__*/_jsx(Link,{href:\"https://www.cookieyes.com/free-cookie-policy-generator/?utm_source=CP&utm_medium=footer&utm_campaign=UW\",motionChild:true,nodeId:\"mwgfigaF7\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1f7a9ir\",\"data-styles-preset\":\"YltRG4NVa\",children:\"CookieYes Cookie Policy Generator\"})})]})]}),className:\"framer-1pndw66\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CbtnIxqvC:{y:(componentViewport?.y||0)+0+57+0+3108.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:439,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+57+0+3188.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-12o4pcx-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CbtnIxqvC:{variant:\"YvcsdbrzA\"},eTCO5XTFZ:{variant:\"c8B8jRyc0\"}},children:/*#__PURE__*/_jsx(CTAVertical03,{height:\"100%\",id:\"AyGMsB8H9\",layoutId:\"AyGMsB8H9\",style:{width:\"100%\"},Sw8_5erO6:\"Let Us Help You Address Global Supply Chain Visibility Obligations With Confidence\",TVHvskUe5:\"\",variant:\"olEg1D_EO\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CbtnIxqvC:{y:(componentViewport?.y||0)+0+3604.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1307,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+3684.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-u145py-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CbtnIxqvC:{variant:\"FOtPvYum9\"},eTCO5XTFZ:{variant:\"X3InJ_JMq\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"NJNfaqP5Z\",layoutId:\"NJNfaqP5Z\",style:{width:\"100%\"},variant:\"cEj0DD8NQ\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-N6Kcu.framer-vb1gzo, .framer-N6Kcu .framer-vb1gzo { display: block; }\",\".framer-N6Kcu.framer-10phd6e { align-content: center; align-items: center; background-color: var(--token-92fddb23-b2ef-429e-b64a-b8220fed5a33, #111d3b); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-N6Kcu .framer-15icbjo-container { flex: none; height: auto; position: sticky; top: 0px; width: 100%; will-change: transform; z-index: 10; }\",\".framer-N6Kcu .framer-3oflgw { 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-N6Kcu .framer-z1xqp0-container, .framer-N6Kcu .framer-12o4pcx-container, .framer-N6Kcu .framer-u145py-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-N6Kcu .framer-4obkc9 { align-content: center; align-items: center; background-color: var(--token-80553515-7ab0-44ac-b981-96d7680674fd, #ffffff); 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-N6Kcu .framer-i82480 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1280px; padding: 80px; position: relative; width: 100%; }\",\".framer-N6Kcu .framer-1p7ajm6 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; max-width: 650px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-N6Kcu .framer-xmw7dk { align-content: flex-start; align-items: flex-start; 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-N6Kcu .framer-o1ss0u, .framer-N6Kcu .framer-3dh8g9, .framer-N6Kcu .framer-1gec69v, .framer-N6Kcu .framer-1y5ksm5, .framer-N6Kcu .framer-uuj2pt, .framer-N6Kcu .framer-1jpg6ka, .framer-N6Kcu .framer-11ue75m { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-N6Kcu .framer-18evoa1, .framer-N6Kcu .framer-1qo5yqs, .framer-N6Kcu .framer-sb30oy, .framer-N6Kcu .framer-9jhy6r { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-N6Kcu .framer-ofdk3b-container { flex: none; height: 400px; position: relative; width: 100%; }\",\".framer-N6Kcu .framer-6ye7zm-container { flex: none; height: auto; position: relative; width: 150px; }\",\".framer-N6Kcu .framer-1pndw66 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-N6Kcu.framer-10phd6e, .framer-N6Kcu .framer-3oflgw, .framer-N6Kcu .framer-4obkc9, .framer-N6Kcu .framer-i82480, .framer-N6Kcu .framer-1p7ajm6, .framer-N6Kcu .framer-xmw7dk, .framer-N6Kcu .framer-18evoa1, .framer-N6Kcu .framer-1qo5yqs, .framer-N6Kcu .framer-sb30oy, .framer-N6Kcu .framer-9jhy6r { gap: 0px; } .framer-N6Kcu.framer-10phd6e > *, .framer-N6Kcu .framer-3oflgw > *, .framer-N6Kcu .framer-4obkc9 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-N6Kcu.framer-10phd6e > :first-child, .framer-N6Kcu .framer-3oflgw > :first-child, .framer-N6Kcu .framer-4obkc9 > :first-child, .framer-N6Kcu .framer-1p7ajm6 > :first-child, .framer-N6Kcu .framer-xmw7dk > :first-child, .framer-N6Kcu .framer-18evoa1 > :first-child, .framer-N6Kcu .framer-1qo5yqs > :first-child, .framer-N6Kcu .framer-sb30oy > :first-child, .framer-N6Kcu .framer-9jhy6r > :first-child { margin-top: 0px; } .framer-N6Kcu.framer-10phd6e > :last-child, .framer-N6Kcu .framer-3oflgw > :last-child, .framer-N6Kcu .framer-4obkc9 > :last-child, .framer-N6Kcu .framer-1p7ajm6 > :last-child, .framer-N6Kcu .framer-xmw7dk > :last-child, .framer-N6Kcu .framer-18evoa1 > :last-child, .framer-N6Kcu .framer-1qo5yqs > :last-child, .framer-N6Kcu .framer-sb30oy > :last-child, .framer-N6Kcu .framer-9jhy6r > :last-child { margin-bottom: 0px; } .framer-N6Kcu .framer-i82480 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-N6Kcu .framer-i82480 > :first-child { margin-left: 0px; } .framer-N6Kcu .framer-i82480 > :last-child { margin-right: 0px; } .framer-N6Kcu .framer-1p7ajm6 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-N6Kcu .framer-xmw7dk > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-N6Kcu .framer-18evoa1 > *, .framer-N6Kcu .framer-1qo5yqs > *, .framer-N6Kcu .framer-sb30oy > *, .framer-N6Kcu .framer-9jhy6r > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,\"@media (min-width: 810px) and (max-width: 1199px) { .framer-N6Kcu.framer-10phd6e { width: 810px; } .framer-N6Kcu .framer-z1xqp0-container { order: 0; } .framer-N6Kcu .framer-4obkc9 { order: 1; } .framer-N6Kcu .framer-i82480 { padding: 80px 40px 80px 40px; } .framer-N6Kcu .framer-1p7ajm6 { gap: 40px; } .framer-N6Kcu .framer-12o4pcx-container { order: 2; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-N6Kcu .framer-1p7ajm6 { gap: 0px; } .framer-N6Kcu .framer-1p7ajm6 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-N6Kcu .framer-1p7ajm6 > :first-child { margin-top: 0px; } .framer-N6Kcu .framer-1p7ajm6 > :last-child { margin-bottom: 0px; } }}\",\"@media (max-width: 809px) { .framer-N6Kcu.framer-10phd6e { width: 390px; } .framer-N6Kcu .framer-i82480 { padding: 80px 20px 80px 20px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 3856\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"CbtnIxqvC\":{\"layout\":[\"fixed\",\"auto\"]},\"eTCO5XTFZ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const Framerew3GHYK1L=withCSS(Component,css,\"framer-N6Kcu\");export default Framerew3GHYK1L;Framerew3GHYK1L.displayName=\"Terms Conditions\";Framerew3GHYK1L.defaultProps={height:3856,width:1200};addFonts(Framerew3GHYK1L,[{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\"}]},...NavbarFonts,...HeroCenter04Fonts,...EmbedFonts,...CTAVertical03Fonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerew3GHYK1L\",\"slots\":[],\"annotations\":{\"framerAcceptsLayoutTemplate\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"3856\",\"framerImmutableVariables\":\"true\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CbtnIxqvC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"eTCO5XTFZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1200\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "y9BAQkB,SAARA,EAAuB,CAAC,KAAAC,EAAK,IAAAC,EAAI,KAAAC,EAAK,MAAAC,EAAM,CAAC,CAAC,EAAE,CAAC,OAAGH,IAAO,OAAOC,EAAyBG,EAAKC,GAAS,CAAC,IAAIJ,EAAI,MAAME,CAAK,CAAC,EAAMH,IAAO,QAAQE,EAA0BE,EAAKE,GAAU,CAAC,KAAKJ,EAAK,MAAMC,CAAK,CAAC,EAAuBC,EAAKG,GAAa,CAAC,MAAMJ,CAAK,CAAC,CAAE,CAACK,EAAoBT,EAAM,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,EAAgB,SAAS,SAAS,GAAGT,CAAK,EAAE,SAAsBC,EAAK,MAAM,CAAC,MAAMS,EAAgB,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,EAAc,EAEzE,CAACC,EAAMC,CAAQ,EAAEC,EAASJ,EAAS,OAAU,EAAK,EAG0c,GAHxcK,EAAU,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,MAAQ,CAAC,IAAMC,EAAQ,MAAMF,EAAS,KAAK,EAAE,QAAQ,MAAME,CAAO,EAAE,IAAMC,EAAM,IAAI,MAAM,kCAA6B,EAAER,EAASQ,CAAK,EAAG,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,EAAa,CAAC,QAAQ,yCAAyC,MAAMxB,CAAK,CAAC,EAAG,GAAG,CAACF,EAAI,WAAW,UAAU,EAAG,OAAoBG,EAAKuB,EAAa,CAAC,QAAQ,wBAAwB,MAAMxB,CAAK,CAAC,EAAG,GAAGc,IAAQ,OAAW,OAAoBb,EAAKwB,GAAiB,CAAC,CAAC,EAAG,GAAGX,aAAiB,MAAO,OAAoBb,EAAKuB,EAAa,CAAC,QAAQV,EAAM,QAAQ,MAAMd,CAAK,CAAC,EAAG,GAAGc,IAAQ,GAAK,CAAC,IAAMQ,EAAQ,oBAAexB,wCAA0C,OAAoBG,EAAKuB,EAAa,CAAC,QAAQF,EAAQ,MAAMtB,CAAK,CAAC,EAAG,OAAoBC,EAAK,SAAS,CAAC,IAAIH,EAAI,MAAM,CAAC,GAAG4B,GAAY,GAAG1B,CAAK,EAAE,QAAQ,OACvpC,cAAcY,EAAS,MAAM,OAAO,eAAe,cAAc,QAAQe,GAAWf,CAAQ,CAAC,CAAC,CAAE,CAAC,IAAMc,GAAY,CAAC,MAAM,OAAO,OAAO,OAAO,OAAO,MAAM,EAAE,SAASC,GAAWf,EAAS,CAAC,IAAMgB,EAAO,CAAC,oBAAoB,eAAe,EAAE,OAAIhB,GAAUgB,EAAO,KAAK,kBAAkB,cAAc,eAAe,yBAAyB,qBAAqB,eAAe,iCAAiC,qBAAqB,0CAA0C,yCAAyC,EAAUA,EAAO,KAAK,GAAG,CAAE,CAAC,SAASzB,GAAU,CAAC,KAAAJ,EAAK,GAAGQ,CAAK,EAAE,CAA4C,GAA3BR,EAAK,SAAS,YAAW,EAAe,CAAC,IAAM8B,EAAgB9B,EAAK,SAAS,kBAAkB,EAAQ+B,EAAW/B,EAAK,SAAS,8BAA8B,EAAE,OAAG8B,GAAiBC,EAAgC7B,EAAK8B,GAAqB,CAAC,KAAKhC,EAAK,GAAGQ,CAAK,CAAC,EAAuBN,EAAK+B,GAAsB,CAAC,KAAKjC,EAAK,GAAGQ,CAAK,CAAC,EAAG,OAAoBN,EAAKgC,GAAwB,CAAC,KAAKlC,EAAK,GAAGQ,CAAK,CAAC,CAAE,CAAC,SAASyB,GAAsB,CAAC,KAAAjC,EAAK,MAAAC,CAAK,EAAE,CAAC,IAAMkC,EAAIC,EAAO,EAAO,CAACC,EAAaC,CAAe,EAAErB,EAAS,CAAC,EAC/kCC,EAAU,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,EAAO,iBAAiB,UAAUJ,CAAa,EAE7WD,GAAa,YAAY,iBAAiB,GAAG,EAAQ,IAAI,CAACK,EAAO,oBAAoB,UAAUJ,CAAa,CAAE,CAAE,EAAE,CAAC,CAAC,EAGtK,IAAMK,EAAO;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,UAqCH9C;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EA6BF+C,EAAa,CAAC,GAAGpB,GAAY,GAAG1B,CAAK,EAAoC,MAAd,CAACA,EAAM,SAAyB8C,EAAa,OAAOV,EAAa,MAA0BnC,EAAK,SAAS,CAAC,IAAIiC,EAAI,MAAMY,EAAa,OAAOD,CAAM,CAAC,CAAE,CAAC,SAASd,GAAqB,CAAC,KAAAhC,EAAK,MAAAC,CAAK,EAAE,CAAC,IAAMkC,EAAIC,EAAO,EAAE,OAAAlB,EAAU,IAAI,CAAC,IAAM8B,EAAIb,EAAI,QAAQ,GAAIa,EAAW,OAAAA,EAAI,UAAUhD,EAAKiD,GAAeD,CAAG,EAAQ,IAAI,CAACA,EAAI,UAAU,EAAG,CAAE,EAAE,CAAChD,CAAI,CAAC,EAAsBE,EAAK,MAAM,CAAC,IAAIiC,EAAI,MAAM,CAAC,GAAGe,GAAU,GAAGjD,CAAK,CAAC,CAAC,CAAE,CAAC,SAASiC,GAAwB,CAAC,KAAAlC,EAAK,MAAAC,CAAK,EAAE,CAAC,OAAoBC,EAAK,MAAM,CAAC,MAAM,CAAC,GAAGgD,GAAU,GAAGjD,CAAK,EAAE,wBAAwB,CAAC,OAAOD,CAAI,CAAC,CAAC,CAAE,CAAC,IAAMkD,GAAU,CAAC,MAAM,OAAO,OAAO,OAAO,QAAQ,OAAO,cAAc,SAAS,eAAe,SAAS,WAAW,QAAQ,EAEvvB,SAASD,GAAeE,EAAK,CAAC,GAAGA,aAAgB,SAASA,EAAK,UAAU,SAAS,CAAC,IAAMC,EAAO,SAAS,cAAc,QAAQ,EAAEA,EAAO,KAAKD,EAAK,UAAU,OAAS,CAAC,KAAAE,EAAK,MAAAC,CAAK,IAAIH,EAAK,WAAYC,EAAO,aAAaC,EAAKC,CAAK,EAAGH,EAAK,cAAc,aAAaC,EAAOD,CAAI,MAAQ,SAAUI,KAASJ,EAAK,WAAYF,GAAeM,CAAK,CAAI,CACrV,SAAS7B,IAAkB,CAAC,OAAoBxB,EAAK,MAAM,CAAC,UAAU,wCAAwC,MAAM,CAAC,GAAGsD,EAAgB,SAAS,QAAQ,EAAE,SAAsBtD,EAAK,MAAM,CAAC,MAAMS,EAAgB,SAAS,eAAU,CAAC,CAAC,CAAC,CAAE,CAAC,SAASc,EAAa,CAAC,QAAAF,EAAQ,MAAAtB,CAAK,EAAE,CAAC,OAAoBC,EAAK,MAAM,CAAC,UAAU,oCAAoC,MAAM,CAAC,UAAUO,GAAaR,CAAK,EAAE,GAAGuD,EAAgB,SAAS,SAAS,GAAGvD,CAAK,EAAE,SAAsBC,EAAK,MAAM,CAAC,MAAMS,EAAgB,SAASY,CAAO,CAAC,CAAC,CAAC,CAAE,CAAC,IAAMZ,EAAgB,CAAC,UAAU,SAAS,SAAS,GAAG,EACzjB,SAASF,GAAaR,EAAM,CAAmC,GAAd,CAACA,EAAM,OAAwB,MAAO,IAAI,CC1Fs/B,IAAMwD,GAAYC,EAASC,CAAM,EAAQC,GAAkBF,EAASG,CAAY,EAAQC,GAAWJ,EAASK,CAAK,EAAQC,GAAmBN,EAASO,CAAa,EAAQC,GAAYR,EAASS,CAAM,EAAQC,GAAY,CAAC,UAAU,sBAAsB,UAAU,6CAA6C,UAAU,oBAAoB,EAAoD,IAAMC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,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,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,GAAGC,CAAS,EAAEf,GAASI,CAAK,EAAQY,EAAU,IAAI,CAAC,IAAMC,EAASA,EAAiB,OAAUT,CAAY,EAAE,GAAGS,EAAS,OAAO,CAAC,IAAIC,EAAU,SAAS,cAAc,qBAAqB,EAAKA,EAAWA,EAAU,aAAa,UAAUD,EAAS,MAAM,GAAQC,EAAU,SAAS,cAAc,MAAM,EAAEA,EAAU,aAAa,OAAO,QAAQ,EAAEA,EAAU,aAAa,UAAUD,EAAS,MAAM,EAAE,SAAS,KAAK,YAAYC,CAAS,GAAI,EAAE,CAAC,OAAUV,CAAY,CAAC,EAAQW,EAAmB,IAAI,CAAC,IAAMF,EAASA,EAAiB,OAAUT,CAAY,EAAE,SAAS,MAAMS,EAAS,OAAO,GAAMA,EAAS,UAAU,SAAS,cAAc,uBAAuB,GAAG,aAAa,UAAUA,EAAS,QAAQ,CAAG,EAAE,CAAC,OAAUT,CAAY,CAAC,EAAE,GAAK,CAACY,EAAYC,CAAmB,EAAEC,GAA8BR,EAAQS,GAAY,EAAK,EAAQC,EAAe,OAAkHC,EAAkBC,EAAGjC,GAAkB,GAAnH,CAAamB,GAAuBA,GAAuBA,EAAS,CAAuE,EAAQe,GAAWC,EAAO,IAAI,EAAQC,GAAsBC,EAAM,EAAEC,GAAiB,CAAC,CAAC,EAAE,IAAMC,EAAkBC,GAAqB,EAAE,OAAoBnC,EAAKoC,EAA0B,SAAS,CAAC,MAAM,CAAC,iBAAiB,YAAY,kBAAAxC,EAAiB,EAAE,SAAsByC,EAAMC,EAAY,CAAC,GAAGvB,GAAUgB,GAAgB,SAAS,CAAc/B,EAAKH,GAAU,CAAC,MAAM,+FAA+F,CAAC,EAAewC,EAAME,EAAO,IAAI,CAAC,GAAGtB,EAAU,UAAUW,EAAGD,EAAkB,iBAAiBb,CAAS,EAAE,IAAIL,GAAKoB,GAAK,MAAM,CAAC,GAAGhB,CAAK,EAAE,SAAS,CAAcb,EAAKwC,EAA0B,CAAC,OAAO,GAAG,MAAMN,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,SAAsBlC,EAAKyC,EAAU,CAAC,UAAU,2BAA2B,SAAsBzC,EAAK0C,EAAkB,CAAC,WAAWpB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBtB,EAAK2C,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeN,EAAM,OAAO,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,SAAS,CAAcrC,EAAKwC,EAA0B,CAAC,OAAO,IAAI,MAAMN,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,GAAG,EAAE,EAAE,SAAsBlC,EAAKyC,EAAU,CAAC,UAAU,0BAA0B,SAAsBzC,EAAK4C,EAAa,CAAC,UAAU,GAAG,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe5C,EAAK,UAAU,CAAC,UAAU,gBAAgB,mBAAmB,oBAAoB,SAAsBA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,sBAAsB,SAAsBqC,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,SAAS,CAAcrC,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAsBA,EAAK6C,EAAS,CAAC,sBAAsB,GAAK,SAAsB7C,EAAW8C,EAAS,CAAC,SAAsBT,EAAM,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,CAAC,8BAA2CrC,EAAK,KAAK,CAAC,CAAC,EAAE,2BAA2B,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeqC,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAcrC,EAAK6C,EAAS,CAAC,sBAAsB,GAAK,SAAsB7C,EAAW8C,EAAS,CAAC,SAAsB9C,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,mBAAmB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK6C,EAAS,CAAC,sBAAsB,GAAK,SAAsBR,EAAYS,EAAS,CAAC,SAAS,CAAc9C,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,sNAAsN,CAAC,EAAeA,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,6WAA6W,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeqC,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAcrC,EAAK6C,EAAS,CAAC,sBAAsB,GAAK,SAAsB7C,EAAW8C,EAAS,CAAC,SAAsB9C,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,wBAAwB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK6C,EAAS,CAAC,sBAAsB,GAAK,SAAsBR,EAAYS,EAAS,CAAC,SAAS,CAAc9C,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,kQAAkQ,CAAC,EAAeA,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,4VAA4V,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeqC,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAcrC,EAAK6C,EAAS,CAAC,sBAAsB,GAAK,SAAsB7C,EAAW8C,EAAS,CAAC,SAAsB9C,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,yBAAyB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKwC,EAA0B,CAAC,SAAsBxC,EAAKyC,EAAU,CAAC,UAAU,0BAA0B,SAAsBzC,EAAK+C,EAAM,CAAC,OAAO,OAAO,KAAK,8CAA8C,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,KAAK,OAAO,IAAI,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeV,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAcrC,EAAK6C,EAAS,CAAC,sBAAsB,GAAK,SAAsB7C,EAAW8C,EAAS,CAAC,SAAsB9C,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,2BAA2B,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKwC,EAA0B,CAAC,SAAsBxC,EAAKyC,EAAU,CAAC,UAAU,0BAA0B,SAAsBzC,EAAK+C,EAAM,CAAC,OAAO,OAAO,KAAK,0DAA0D,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,KAAK,OAAO,IAAI,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK6C,EAAS,CAAC,sBAAsB,GAAK,SAAsBR,EAAYS,EAAS,CAAC,SAAS,CAAc9C,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,qMAAqM,CAAC,EAAeA,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,+SAA+S,CAAC,EAAeqC,EAAM,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,CAAC,WAAwBrC,EAAKgD,EAAK,CAAC,KAAK,mDAAmD,YAAY,GAAK,OAAO,YAAY,aAAa,GAAK,aAAa,GAAM,SAAsBhD,EAAKuC,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,kDAAkD,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeF,EAAM,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,CAAC,WAAwBrC,EAAKgD,EAAK,CAAC,KAAK,6DAA6D,YAAY,GAAK,OAAO,YAAY,aAAa,GAAK,aAAa,GAAM,SAAsBhD,EAAKuC,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,4DAA4D,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeF,EAAM,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,CAAC,YAAyBrC,EAAKgD,EAAK,CAAC,KAAK,wJAAwJ,YAAY,GAAK,OAAO,YAAY,aAAa,GAAK,aAAa,GAAM,SAAsBhD,EAAKuC,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,uJAAuJ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeF,EAAM,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,CAAC,sBAAmCrC,EAAKgD,EAAK,CAAC,KAAK,iIAAiI,YAAY,GAAK,OAAO,YAAY,aAAa,GAAK,aAAa,GAAM,SAAsBhD,EAAKuC,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,gIAAgI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAevC,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,sGAAiG,CAAC,EAAeqC,EAAM,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,CAAC,iCAA8CrC,EAAKgD,EAAK,CAAC,KAAK,0GAA0G,YAAY,GAAK,OAAO,YAAY,aAAa,GAAK,aAAa,GAAM,SAAsBhD,EAAKuC,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,mCAAmC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAevC,EAAK0C,EAAkB,CAAC,WAAWpB,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGY,GAAmB,GAAG,GAAG,EAAE,GAAG,EAAE,MAAM,CAAC,EAAE,SAAsBlC,EAAKwC,EAA0B,CAAC,OAAO,IAAI,MAAMN,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,GAAG,EAAE,OAAO,SAAsBlC,EAAKyC,EAAU,CAAC,UAAU,2BAA2B,SAAsBzC,EAAK0C,EAAkB,CAAC,WAAWpB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBtB,EAAKiD,EAAc,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,qFAAqF,UAAU,GAAG,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAejD,EAAK0C,EAAkB,CAAC,WAAWpB,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGY,GAAmB,GAAG,GAAG,EAAE,MAAM,CAAC,EAAE,SAAsBlC,EAAKwC,EAA0B,CAAC,OAAO,KAAK,MAAMN,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,SAAsBlC,EAAKyC,EAAU,CAAC,UAAU,0BAA0B,SAAsBzC,EAAK0C,EAAkB,CAAC,WAAWpB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBtB,EAAKkD,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelD,EAAK,MAAM,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQmD,GAAI,CAAC,kFAAkF,gFAAgF,uVAAuV,sJAAsJ,mRAAmR,yLAAyL,gWAAgW,6QAA6Q,iTAAiT,wRAAwR,yaAAya,oXAAoX,yGAAyG,yGAAyG,qKAAqK,qiEAAqiE,GAAeA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,+sBAA+sB,4IAA4I,EAW36tBC,EAAgBC,EAAQ9C,GAAU4C,GAAI,cAAc,EAASG,GAAQF,EAAgBA,EAAgB,YAAY,mBAAmBA,EAAgB,aAAa,CAAC,OAAO,KAAK,MAAM,IAAI,EAAEG,GAASH,EAAgB,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,CAAC,CAAC,EAAE,GAAGI,GAAY,GAAGC,GAAkB,GAAGC,GAAW,GAAGC,GAAmB,GAAGC,GAAY,GAAGC,EAAoCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,EAC1hE,IAAMC,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,4BAA8B,OAAO,sBAAwB,IAAI,yBAA2B,QAAQ,sBAAwB,OAAO,yBAA2B,OAAO,qBAAuB,4BAA4B,oCAAsC,4JAA0L,qBAAuB,OAAO,6BAA+B,MAAM,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", "NavbarFonts", "getFonts", "P9ffjPGqS_default", "HeroCenter04Fonts", "JtXi9OQ6X_default", "EmbedFonts", "Embed", "CTAVertical03Fonts", "tXJZZ41W7_default", "FooterFonts", "MvPRU52yR_default", "breakpoints", "serializationHash", "variantClassNames", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "useCustomCursors", "componentViewport", "useComponentViewport", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "PropertyOverrides2", "P9ffjPGqS_default", "JtXi9OQ6X_default", "RichText2", "x", "Embed", "Link", "tXJZZ41W7_default", "MvPRU52yR_default", "css", "Framerew3GHYK1L", "withCSS", "ew3GHYK1L_default", "addFonts", "NavbarFonts", "HeroCenter04Fonts", "EmbedFonts", "CTAVertical03Fonts", "FooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
