{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js", "ssg:https://framerusercontent.com/modules/QOTfGwjK7kdh7SELbIEB/H8B5RElsFmnX0WbTDvIZ/hEtP03HEL.js", "ssg:https://framerusercontent.com/modules/Ij8gglbxa41qZ6BcZU1z/bS1qkET6FMhgXTN14Z9u/uThx947WR.js", "ssg:https://framerusercontent.com/modules/vNY0iT2tNUhwjXAHXBr9/CLr1dp0RGJkaFyjd5N0w/LtOAUqctZ.js", "ssg:https://framerusercontent.com/modules/FcGDWw6jAhcA0dsVTfdb/cCP8f67aFS7gCsYFAIog/Blu0UQk0d.js", "ssg:https://framerusercontent.com/modules/vOb15zojqmYtSvlHwuQh/RWdR4zC8pBfcSOXFpYN9/lgTzqx72w.js", "ssg:https://framerusercontent.com/modules/XkxOuLX5bcXHx4mOct49/53f94b5zBdggEdKO6Lob/lgTzqx72w.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", "import{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Work Sans-regular\",\"GF;Work Sans-700\",\"GF;Work Sans-700italic\",\"GF;Work Sans-italic\"]);export const fonts=[{family:\"Work Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/worksans/v19/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K0nXNi0Dp6_cOyA.woff2\",weight:\"400\"},{family:\"Work Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/worksans/v19/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K67QNi0Dp6_cOyA.woff2\",weight:\"700\"},{family:\"Work Sans\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/worksans/v19/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUOWwJpo3ZKyDSQQ.woff2\",weight:\"700\"},{family:\"Work Sans\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/worksans/v19/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGU3msJpo3ZKyDSQQ.woff2\",weight:\"400\"}];export const css=['.framer-ZYI0N .framer-styles-preset-1ft0kqt:not(.rich-text-wrapper), .framer-ZYI0N .framer-styles-preset-1ft0kqt.rich-text-wrapper p { --framer-font-family: \"Work Sans\", \"Work Sans Placeholder\", sans-serif; --framer-font-family-bold: \"Work Sans\", \"Work Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Work Sans\", \"Work Sans Placeholder\", sans-serif; --framer-font-family-italic: \"Work Sans\", \"Work Sans Placeholder\", sans-serif; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.3em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-1f43fba6-8015-48d1-bd7d-60c54c253d75, #ffffff); --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-ZYI0N\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[];export const css=[\".framer-NwnD4 .framer-styles-preset-13maw6v:not(.rich-text-wrapper), .framer-NwnD4 .framer-styles-preset-13maw6v.rich-text-wrapper a { --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: var(--token-1f43fba6-8015-48d1-bd7d-60c54c253d75, #ffffff); --framer-link-hover-text-decoration: underline; --framer-link-text-color: var(--token-1f43fba6-8015-48d1-bd7d-60c54c253d75, #ffffff); --framer-link-text-decoration: underline; }\"];export const className=\"framer-NwnD4\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (100f99d)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentPresetsProvider,ControlType,cx,getFontsFromComponentPreset,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as componentPresets from\"https://framerusercontent.com/modules/MtNnk0sz6EvPJn5cUpPj/VKDW8cxfixPICitUJA7S/componentPresets.js\";import*as sharedStyle7 from\"https://framerusercontent.com/modules/jlL1IfBcWtmAhvCOw0Dl/zlQLSmoI9XqNLzxzMkvi/FjjPpzBdZ.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/hZv31OeTjvu7bt2QWP4F/HkhhFKMcM8b2mWfXisEc/hES50ZT8m.js\";import*as sharedStyle12 from\"https://framerusercontent.com/modules/QOTfGwjK7kdh7SELbIEB/H8B5RElsFmnX0WbTDvIZ/hEtP03HEL.js\";import*as sharedStyle6 from\"https://framerusercontent.com/modules/z2wfjMOi599s4GbMoYdB/QF4MrDNLUSaZ6eiJxLoU/J1k63gYZB.js\";import*as sharedStyle9 from\"https://framerusercontent.com/modules/ud2cMCop7LLxGZWgHxab/2ytTQJ7QKJTyWA8NydaP/JCw9UwEU6.js\";import*as sharedStyle8 from\"https://framerusercontent.com/modules/YSouAbQLi5ngkrgJAboN/lBiGE6tL5P5RmJv858vr/JjXm2UTBo.js\";import*as sharedStyle11 from\"https://framerusercontent.com/modules/D0PTf53UyXyWUxXQuF6f/5FphdCaoZhgwYMqYvTvy/K5yiDub5F.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/wXoYGy2riLgwcENNJOEY/oIGoBXzHD3BOisWrSH6m/Kpg0gMnOT.js\";import*as sharedStyle5 from\"https://framerusercontent.com/modules/f9fnTc9L3SpD47Tux89l/CkoLWkYoKuKt7dY8vxAi/PmWq0zXXg.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/czTauAPwgSAhLmUUW0Bx/shp5fI9PHUYioobqjwXo/pS0f27MbF.js\";import*as sharedStyle13 from\"https://framerusercontent.com/modules/Ij8gglbxa41qZ6BcZU1z/bS1qkET6FMhgXTN14Z9u/uThx947WR.js\";import*as sharedStyle10 from\"https://framerusercontent.com/modules/v96lfIgG3PaPU3T4haYX/zZ0gNFzq4xAYGHsz9ZLf/x5d8QIfX5.js\";import*as sharedStyle4 from\"https://framerusercontent.com/modules/oZlcnUlIFcEJp6TEOQOF/oDHarKFAMLiIAd0p9PMt/Yox5NbY_B.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/mQht6YbEKb07KP5SIV8x/msmb1yZkPNLZXXCIC8O5/ZkAEvoMyE.js\";const cycleOrder=[\"WsZqhciAQ\",\"eg2BdPfc6\"];const serializationHash=\"framer-8UuwD\";const variantClassNames={eg2BdPfc6:\"framer-v-17aq9ke\",WsZqhciAQ:\"framer-v-zvstt0\"};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={Answer:\"eg2BdPfc6\",Question:\"WsZqhciAQ\"};const getProps=({bubbleContent,height,id,width,...props})=>{return{...props,Dff3Vhuja:bubbleContent??props.Dff3Vhuja??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{children:\"It way okay mate! \uD83E\uDDD0\"})}),variant:humanReadableVariantMap[props.variant]??props.variant??\"WsZqhciAQ\"};};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,Dff3Vhuja,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"WsZqhciAQ\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className,sharedStyle11.className,sharedStyle12.className,sharedStyle13.className];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(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-zvstt0\",className,classNames),\"data-framer-name\":\"Question\",layoutDependency:layoutDependency,layoutId:\"WsZqhciAQ\",ref:refBinding,style:{backgroundColor:\"var(--token-ab25eaba-dcb6-428b-96f3-f94a6e0a714d, rgba(255, 255, 255, 0.05))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,...style},variants:{eg2BdPfc6:{backgroundColor:\"var(--token-f175bdc8-37af-40b0-a27b-b93afd1c3d6c, rgb(38, 208, 124))\"}},...addPropertyOverrides({eg2BdPfc6:{\"data-framer-name\":\"Answer\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js:Youtube\":componentPresets.props[\"x5LvOxgFn\"],\"module:pVk4QsoHxASnVtUBp6jr/F3DAaPbkrr19izpZS3jO/CodeBlock.js:default\":componentPresets.props[\"icjR_slka\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:Dff3Vhuja,className:\"framer-8pppvz\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ZWD8Z4Ocu\",stylesPresetsClassNames:{a:\"framer-styles-preset-12expcd\",blockquote:\"framer-styles-preset-4wpnyn\",code:\"framer-styles-preset-1ock48u\",h1:\"framer-styles-preset-4fm1iy\",h2:\"framer-styles-preset-48tihs\",h3:\"framer-styles-preset-2kp3lv\",h4:\"framer-styles-preset-13fah2o\",h5:\"framer-styles-preset-1czsaa2\",h6:\"framer-styles-preset-kdz1q8\",img:\"framer-styles-preset-pefokr\",p:\"framer-styles-preset-1f4om1\",table:\"framer-styles-preset-3037if\"},variants:{eg2BdPfc6:{\"--extracted-r6o4lv\":\"var(--token-1f43fba6-8015-48d1-bd7d-60c54c253d75, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({eg2BdPfc6:{stylesPresetsClassNames:{a:\"framer-styles-preset-13maw6v\",blockquote:\"framer-styles-preset-4wpnyn\",code:\"framer-styles-preset-1ock48u\",h1:\"framer-styles-preset-4fm1iy\",h2:\"framer-styles-preset-48tihs\",h3:\"framer-styles-preset-2kp3lv\",h4:\"framer-styles-preset-13fah2o\",h5:\"framer-styles-preset-1czsaa2\",h6:\"framer-styles-preset-kdz1q8\",img:\"framer-styles-preset-pefokr\",p:\"framer-styles-preset-1ft0kqt\",table:\"framer-styles-preset-3037if\"}}},baseVariant,gestureVariant)})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-8UuwD.framer-rs8uh, .framer-8UuwD .framer-rs8uh { display: block; }\",\".framer-8UuwD.framer-zvstt0 { align-content: flex-end; align-items: flex-end; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 12px 16px 12px 16px; position: relative; width: 100px; }\",\".framer-8UuwD .framer-8pppvz { flex: none; height: auto; max-width: 400px; position: relative; 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-8UuwD.framer-zvstt0 { gap: 0px; } .framer-8UuwD.framer-zvstt0 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-8UuwD.framer-zvstt0 > :first-child { margin-top: 0px; } .framer-8UuwD.framer-zvstt0 > :last-child { margin-bottom: 0px; } }\",\".framer-8UuwD.framer-v-17aq9ke.framer-zvstt0 { align-content: flex-start; align-items: flex-start; }\",\".framer-8UuwD.framer-v-17aq9ke .framer-8pppvz { width: auto; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,...sharedStyle11.css,...sharedStyle12.css,...sharedStyle13.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 120\n * @framerIntrinsicWidth 100\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"eg2BdPfc6\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"Dff3Vhuja\":\"bubbleContent\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerLtOAUqctZ=withCSS(Component,css,\"framer-8UuwD\");export default FramerLtOAUqctZ;FramerLtOAUqctZ.displayName=\"Chat Bubble\";FramerLtOAUqctZ.defaultProps={height:120,width:100};addPropertyControls(FramerLtOAUqctZ,{variant:{options:[\"WsZqhciAQ\",\"eg2BdPfc6\"],optionTitles:[\"Question\",\"Answer\"],title:\"Variant\",type:ControlType.Enum},Dff3Vhuja:{defaultValue:\"<p>It way okay mate! \uD83E\uDDD0</p>\",title:\"Bubble Content\",type:ControlType.RichText}});addFonts(FramerLtOAUqctZ,[{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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...getFontsFromSharedStyle(sharedStyle10.fonts),...getFontsFromSharedStyle(sharedStyle11.fonts),...getFontsFromSharedStyle(sharedStyle12.fonts),...getFontsFromSharedStyle(sharedStyle13.fonts),...componentPresets.fonts?.[\"icjR_slka\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"icjR_slka\"]):[],...componentPresets.fonts?.[\"x5LvOxgFn\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"x5LvOxgFn\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerLtOAUqctZ\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"100\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"eg2BdPfc6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"Dff3Vhuja\\\":\\\"bubbleContent\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"120\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./LtOAUqctZ.map", "// Generated by Framer (83b8097)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,Link,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import ChatBubble from\"https://framerusercontent.com/modules/vNY0iT2tNUhwjXAHXBr9/CLr1dp0RGJkaFyjd5N0w/LtOAUqctZ.js\";const ChatBubbleFonts=getFonts(ChatBubble);const serializationHash=\"framer-42uRH\";const variantClassNames={uLEV9Rhdp:\"framer-v-1ewra34\"};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 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{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"uLEV9Rhdp\",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??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-1ewra34\",className,classNames),\"data-framer-name\":\"DCM Dmitry\",layoutDependency:layoutDependency,layoutId:\"uLEV9Rhdp\",ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-yx17yg\",\"data-framer-name\":\"Question 1\",layoutDependency:layoutDependency,layoutId:\"FgbaRG398\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,width:`min(max(${componentViewport?.width||\"100vw\"}, 1px), 400px)`,y:(componentViewport?.y||0)+0+0+0+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jpggdx-container\",layoutDependency:layoutDependency,layoutId:\"hkHjqOHLI-container\",children:/*#__PURE__*/_jsx(ChatBubble,{Dff3Vhuja:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Honza:\"}),\" First of all, thank you for doing a great job with DCM! I use DCM every day and love it. Could you tell us why you started developing a tool for additional lints for Dart? Weren\u2019t Dart lints enough?\"]})}),height:\"100%\",id:\"hkHjqOHLI\",layoutId:\"hkHjqOHLI\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"WsZqhciAQ\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-yuupb1\",\"data-framer-name\":\"Answer 1\",layoutDependency:layoutDependency,layoutId:\"Pu6yJcX0i\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,width:`min(max(${componentViewport?.width||\"100vw\"}, 1px), 400px)`,y:(componentViewport?.y||0)+0+130+0+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dqrkaa-container\",layoutDependency:layoutDependency,layoutId:\"wYoBPPIHb-container\",children:/*#__PURE__*/_jsx(ChatBubble,{Dff3Vhuja:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Dmitry:\"}),\" The tool was created about 3.5 years ago in Wrike by another developer with the initial idea of calculating metrics (which is why it has ''metrics'' in its name). Then, they discovered the analyzer plugin's API and created the first few rules. Soon after, I joined the project and helped fix bugs (mostly stabilize the way we used the API) and introduce the first complex rules like `prefer-conditional-expressions`, `prefer-trailing-comma`, `no-equal-arguments`, and `member-ordering`. As for the standard Dart lints, we first had, and still have two main differences: configurability and release schedule. Not every team can and should write code the same way as others, and configurability helped a lot here. It\u2019s hard to imagine rules like `member-ordering` to not be configurable. But another difference is more philosophical: The Dart team doesn\u2019t add rules that they disagree with or don't see much value in (even if it\u2019s clear to other teams). So, instead of wasting time trying to convince them, we came up with our own solution. And this has also shaped our philosophy \u2014 we are very open to different suggestions for rules, and add most of what our users ask us to.\"]})}),height:\"100%\",id:\"wYoBPPIHb\",layoutId:\"wYoBPPIHb\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"eg2BdPfc6\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1u389sh\",\"data-framer-name\":\"Question 2\",layoutDependency:layoutDependency,layoutId:\"l27jauLNP\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,width:`min(max(${componentViewport?.width||\"100vw\"}, 1px), 400px)`,y:(componentViewport?.y||0)+0+260+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ovtqxo-container\",layoutDependency:layoutDependency,layoutId:\"YJJvGiO2L-container\",children:/*#__PURE__*/_jsx(ChatBubble,{Dff3Vhuja:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"H: \"}),\"I agree! I don\u2019t like Dart lints for that, at least something like 80 chars per line should have configuration, or they should have added a rule for 120 at least a few years ago! Generally, DCM is\\xa0\",/*#__PURE__*/_jsx(\"strong\",{children:\"really\\xa0\"}),\"fast. What language and tools do you use to develop it?\"]})}),height:\"100%\",id:\"YJJvGiO2L\",layoutId:\"YJJvGiO2L\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"WsZqhciAQ\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1g1xasp\",\"data-framer-name\":\"Answer 2\",layoutDependency:layoutDependency,layoutId:\"JZXX7ppNs\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,width:`min(max(min(${componentViewport?.width||\"100vw\"}, 720px), 1px), 400px)`,y:(componentViewport?.y||0)+0+390+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-2mladv-container\",layoutDependency:layoutDependency,layoutId:\"HSzOlnIzX-container\",children:/*#__PURE__*/_jsx(ChatBubble,{Dff3Vhuja:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"D:\"}),\" DCM reuses some parts of the Dart analyzer (eg. parsing, element model resolution) and is written in Dart. VS Code extension and our backend are written in TypeScript and the IntelliJ / AS plugin is written in Kotlin. Aside from the IDE as the main tool for development, we use Codemagic and Github Actions to compile the tool and upload it to different package managers (Brew, Choco, and apt). \"]})}),height:\"100%\",id:\"HSzOlnIzX\",layoutId:\"HSzOlnIzX\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"eg2BdPfc6\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1j4edee\",\"data-framer-name\":\"Question 3\",layoutDependency:layoutDependency,layoutId:\"l04HgKt8B\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,width:`min(max(${componentViewport?.width||\"100vw\"}, 1px), 400px)`,y:(componentViewport?.y||0)+0+520+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-l6rlqs-container\",layoutDependency:layoutDependency,layoutId:\"JeTJxQ6zX-container\",children:/*#__PURE__*/_jsx(ChatBubble,{Dff3Vhuja:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"H:\"}),\" So, do you use DCM to validate DCM? \uD83D\uDE05\"]})}),height:\"100%\",id:\"JeTJxQ6zX\",layoutId:\"JeTJxQ6zX\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"WsZqhciAQ\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-14imaoc\",\"data-framer-name\":\"Answer 3\",layoutDependency:layoutDependency,layoutId:\"Cn0GG7L49\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,width:`min(max(min(${componentViewport?.width||\"100vw\"}, 720px), 1px), 400px)`,y:(componentViewport?.y||0)+0+650+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-153kc8s-container\",layoutDependency:layoutDependency,layoutId:\"VirKJupGs-container\",children:/*#__PURE__*/_jsx(ChatBubble,{Dff3Vhuja:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"D: \"}),\"Yes! I strongly believe that developers should dogfood their own creations in order to better understand users. Plus it helps to find stupid mistakes.\"]})}),height:\"100%\",id:\"VirKJupGs\",layoutId:\"VirKJupGs\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"eg2BdPfc6\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-144h7qw\",\"data-framer-name\":\"Question 4\",layoutDependency:layoutDependency,layoutId:\"ZKsP0uW2Z\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,width:`min(max(${componentViewport?.width||\"100vw\"}, 1px), 400px)`,y:(componentViewport?.y||0)+0+780+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-5j0vau-container\",layoutDependency:layoutDependency,layoutId:\"ABsRItaTP-container\",children:/*#__PURE__*/_jsx(ChatBubble,{Dff3Vhuja:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"H:\"}),\" Could you briefly describe your journey in software engineering/ development?\"]})}),height:\"100%\",id:\"ABsRItaTP\",layoutId:\"ABsRItaTP\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"WsZqhciAQ\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ckhtxm\",\"data-framer-name\":\"Answer 4\",layoutDependency:layoutDependency,layoutId:\"yZJBpJKCc\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,width:`min(max(${componentViewport?.width||\"100vw\"}, 1px), 400px)`,y:(componentViewport?.y||0)+0+910+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-uejobi-container\",layoutDependency:layoutDependency,layoutId:\"wISX8ze_V-container\",children:/*#__PURE__*/_jsx(ChatBubble,{Dff3Vhuja:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"D:\"}),\" Well, my journey started at university with C# as my main language. I worked on a gaming side project with a friend, then got my first full-time job and combined it with university for 2 years before finally graduating. But when I first discovered HTML, CSS, and JS, something clicked inside me, and I really enjoyed working on the frontend. I think it\u2019s mostly related to the ability to see the changes fast and the overall result of your work. So, I spent the next 1.5 years at an outsourcing company, working mostly on the frontend (and some other stuff, like Python backend). And then I found out about Dart. My first thought was, \u201Chm, this is something not many people do, so why not try it.\u201D As you can see, I really love challenges \uD83D\uDE00. That's why I joined Wrike and continued my frontend journey, but this time with Dart. By the way, for those who remember that Wrike at some point decided to switch from Dart to TS, I was one of the main developers who worked on it. But it seems that this is a topic for another article. \uD83D\uDE00 Afterwards, I joined the team to work on the browser as a frontend department lead until I decided it was time to work on DCM full-time. \"]})}),height:\"100%\",id:\"wISX8ze_V\",layoutId:\"wISX8ze_V\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"eg2BdPfc6\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pvk8hk\",\"data-framer-name\":\"Question 5\",layoutDependency:layoutDependency,layoutId:\"OPx9GrQXH\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,width:`min(max(${componentViewport?.width||\"100vw\"}, 1px), 400px)`,y:(componentViewport?.y||0)+0+1040+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-yb0bpi-container\",layoutDependency:layoutDependency,layoutId:\"rqapFp3D1-container\",children:/*#__PURE__*/_jsx(ChatBubble,{Dff3Vhuja:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"H:\"}),\" Do you think that a technical/ university background is important, or would you, on the contrary, go the self-taught route?\"]})}),height:\"100%\",id:\"rqapFp3D1\",layoutId:\"rqapFp3D1\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"WsZqhciAQ\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-hpafmp\",\"data-framer-name\":\"Answer 5\",layoutDependency:layoutDependency,layoutId:\"QxCDXOCye\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,width:`min(max(${componentViewport?.width||\"100vw\"}, 1px), 400px)`,y:(componentViewport?.y||0)+0+1170+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-z64x5j-container\",layoutDependency:layoutDependency,layoutId:\"sIOA1d06x-container\",children:/*#__PURE__*/_jsx(ChatBubble,{Dff3Vhuja:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"D: \"}),\"I think it's more important to learn how to learn new things and develop critical thinking. Where you get these skills is not that important. For me it was at the university, one particular professor to be exact. With these skills, you can learn basically anything, which gives you a huge advantage. On the other hand, you never know how specific knowledge can help you in the future. In this regard, life can be quite unpredictable. For example, if you only work on frontend/mobile, learning backend can help you see the bigger picture and make better decisions. And the university provides you with a great opportunity to learn the basics.\"]})}),height:\"100%\",id:\"sIOA1d06x\",layoutId:\"sIOA1d06x\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"eg2BdPfc6\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-qc5w4p\",\"data-framer-name\":\"Question 6\",layoutDependency:layoutDependency,layoutId:\"AfUJeCIWS\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,width:`min(max(${componentViewport?.width||\"100vw\"}, 1px), 400px)`,y:(componentViewport?.y||0)+0+1300+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-73jzq6-container\",layoutDependency:layoutDependency,layoutId:\"gIVnoFvFU-container\",children:/*#__PURE__*/_jsx(ChatBubble,{Dff3Vhuja:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"H: \"}),\"Where do you get inspiration for new lints? How long does one lint take to finish on average?\"]})}),height:\"100%\",id:\"gIVnoFvFU\",layoutId:\"gIVnoFvFU\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"WsZqhciAQ\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ie8wh0\",\"data-framer-name\":\"Answer 6\",layoutDependency:layoutDependency,layoutId:\"Tg5Mu71b3\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,width:`min(max(${componentViewport?.width||\"100vw\"}, 1px), 400px)`,y:(componentViewport?.y||0)+0+1430+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1038qfr-container\",layoutDependency:layoutDependency,layoutId:\"vEtjEKmzL-container\",children:/*#__PURE__*/_jsx(ChatBubble,{Dff3Vhuja:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"D: \"}),\"From different places. Some lint rules are based on experience, some are based on user feedback. Others are already implemented in other linters and we are simply porting them to Dart. The time it takes to implement a rule depends on the rule itself. Implementing and testing one rule can take on average from 30 minutes to 6-8 hours. The more flexible the rules, the longer it takes.\"]})}),height:\"100%\",id:\"vEtjEKmzL\",layoutId:\"vEtjEKmzL\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"eg2BdPfc6\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1a3wrme\",\"data-framer-name\":\"Question 7\",layoutDependency:layoutDependency,layoutId:\"SKZW6HnTQ\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,width:`min(max(${componentViewport?.width||\"100vw\"}, 1px), 400px)`,y:(componentViewport?.y||0)+0+1560+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-sm6d6c-container\",layoutDependency:layoutDependency,layoutId:\"Ep8UiInYX-container\",children:/*#__PURE__*/_jsx(ChatBubble,{Dff3Vhuja:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"H: \"}),\"That\u2019s actually pretty fast! What advantages does DCM have over packages that support creating their lints?\"]})}),height:\"100%\",id:\"Ep8UiInYX\",layoutId:\"Ep8UiInYX\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"WsZqhciAQ\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-xbmvh5\",\"data-framer-name\":\"Answer 7\",layoutDependency:layoutDependency,layoutId:\"v67r6IEND\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,width:`min(max(${componentViewport?.width||\"100vw\"}, 1px), 400px)`,y:(componentViewport?.y||0)+0+1690+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-88hb1e-container\",layoutDependency:layoutDependency,layoutId:\"CJ86G4u4B-container\",children:/*#__PURE__*/_jsx(ChatBubble,{Dff3Vhuja:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"D: \"}),\"First of all, DCM is not only about lint rules. We provide additional features, like unused code and file detection, code metrics calculation, etc. And if we look closer into DCM\u2019s goal \u2014 it\u2019s mostly about saving time. Recreating the rules that DCM provides on your own will probably take more time for you to implement and maintain than just buying a license. Plus, the \u201Clinting\u201D domain your team needs to get familiar with to support these rules is very different from the day-to-day Flutter developer job. \"]})}),height:\"100%\",id:\"CJ86G4u4B\",layoutId:\"CJ86G4u4B\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"eg2BdPfc6\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sj3ycu\",\"data-framer-name\":\"Question 8\",layoutDependency:layoutDependency,layoutId:\"tpA7kFfmk\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,width:`min(max(${componentViewport?.width||\"100vw\"}, 1px), 400px)`,y:(componentViewport?.y||0)+0+1820+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-hzb1c9-container\",layoutDependency:layoutDependency,layoutId:\"w170Xuv7n-container\",children:/*#__PURE__*/_jsx(ChatBubble,{Dff3Vhuja:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"H:\"}),\" Do you plan a web admin for managing team licenses?\"]})}),height:\"100%\",id:\"w170Xuv7n\",layoutId:\"w170Xuv7n\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"WsZqhciAQ\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-19rad7i\",\"data-framer-name\":\"Answer 8\",layoutDependency:layoutDependency,layoutId:\"ipkCC39yB\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,width:`min(max(${componentViewport?.width||\"100vw\"}, 1px), 400px)`,y:(componentViewport?.y||0)+0+1950+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-szh5h3-container\",layoutDependency:layoutDependency,layoutId:\"lDTtA5DoG-container\",children:/*#__PURE__*/_jsx(ChatBubble,{Dff3Vhuja:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"D:\"}),\" Yes. I initially wanted to avoid storing any user-related data (you can\u2019t really expose the thing you don\u2019t have), but this has a huge downside in managing licenses. So, an admin panel is a thing that we need to introduce to help our users with it.\"]})}),height:\"100%\",id:\"lDTtA5DoG\",layoutId:\"lDTtA5DoG\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"eg2BdPfc6\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-149ty8c\",\"data-framer-name\":\"Question 9\",layoutDependency:layoutDependency,layoutId:\"Co_kVZy20\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,width:`min(max(${componentViewport?.width||\"100vw\"}, 1px), 400px)`,y:(componentViewport?.y||0)+0+2080+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1702ijo-container\",layoutDependency:layoutDependency,layoutId:\"B4D2WgsJP-container\",children:/*#__PURE__*/_jsx(ChatBubble,{Dff3Vhuja:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"H:\"}),\" Is there anything you can share about the future of DCM? Any interesting plans?\"]})}),height:\"100%\",id:\"B4D2WgsJP\",layoutId:\"B4D2WgsJP\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"WsZqhciAQ\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-uwslpn\",\"data-framer-name\":\"Answer 9\",layoutDependency:layoutDependency,layoutId:\"ooHAKcmGk\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,width:`min(max(${componentViewport?.width||\"100vw\"}, 1px), 400px)`,y:(componentViewport?.y||0)+0+2210+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-19mmfmr-container\",layoutDependency:layoutDependency,layoutId:\"SmF57pt6I-container\",children:/*#__PURE__*/_jsx(ChatBubble,{Dff3Vhuja:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"D: \"}),\"Well, as I mentioned \",/*#__PURE__*/_jsx(Link,{href:\"https://dcm.dev/blog/2023/06/06/announcing-dcm-free-version-sunset/\",nodeId:\"SmF57pt6I\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{children:\"here\"})}),\", I believe that there are plenty of things that can be improved in Dart static analysis. I'm not giving a specific release date yet, but making unused code and files to display their output in real-time in the IDE is one of the features we want to implement next. Then there are various plans for new commands, such as an AST-based code duplication check command that allows even renamed code to be marked as duplicate. Similarly, much remains to be done to improve the overall metrics experience. In addition, we receive a lot of feedback from users, so there will be something that we decide to implement as well.\"]})}),height:\"100%\",id:\"SmF57pt6I\",layoutId:\"SmF57pt6I\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"eg2BdPfc6\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1llpufv\",\"data-framer-name\":\"Question 10\",layoutDependency:layoutDependency,layoutId:\"K919jUwRU\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,width:`min(max(${componentViewport?.width||\"100vw\"}, 1px), 400px)`,y:(componentViewport?.y||0)+0+2340+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-qi10ml-container\",layoutDependency:layoutDependency,layoutId:\"cx0PHqS27-container\",children:/*#__PURE__*/_jsx(ChatBubble,{Dff3Vhuja:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"H:\"}),\" That sounds great; I hope everything goes well. And lastly: Does pineapple belong on pizza? \uD83C\uDF55\"]})}),height:\"100%\",id:\"cx0PHqS27\",layoutId:\"cx0PHqS27\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"WsZqhciAQ\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-vk9tqh\",\"data-framer-name\":\"Answer 10\",layoutDependency:layoutDependency,layoutId:\"NczWkR_0g\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,width:`min(max(${componentViewport?.width||\"100vw\"}, 1px), 200px)`,y:(componentViewport?.y||0)+0+2470+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-h5t8v9-container\",layoutDependency:layoutDependency,layoutId:\"qoRDUZ8iX-container\",children:/*#__PURE__*/_jsx(ChatBubble,{Dff3Vhuja:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{children:[/*#__PURE__*/_jsx(\"strong\",{children:\"D: \"}),\"For me, no. \uD83D\uDE42\"]})}),height:\"100%\",id:\"qoRDUZ8iX\",layoutId:\"qoRDUZ8iX\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"eg2BdPfc6\",width:\"100%\"})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-42uRH.framer-1tt3kxe, .framer-42uRH .framer-1tt3kxe { display: block; }\",\".framer-42uRH.framer-1ewra34 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 720px; }\",\".framer-42uRH .framer-yx17yg { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; padding: 0px; position: relative; width: 100%; }\",\".framer-42uRH .framer-1jpggdx-container, .framer-42uRH .framer-1dqrkaa-container, .framer-42uRH .framer-1ovtqxo-container, .framer-42uRH .framer-2mladv-container, .framer-42uRH .framer-l6rlqs-container, .framer-42uRH .framer-153kc8s-container, .framer-42uRH .framer-5j0vau-container, .framer-42uRH .framer-uejobi-container, .framer-42uRH .framer-yb0bpi-container, .framer-42uRH .framer-z64x5j-container, .framer-42uRH .framer-73jzq6-container, .framer-42uRH .framer-1038qfr-container, .framer-42uRH .framer-sm6d6c-container, .framer-42uRH .framer-88hb1e-container, .framer-42uRH .framer-hzb1c9-container, .framer-42uRH .framer-szh5h3-container, .framer-42uRH .framer-1702ijo-container, .framer-42uRH .framer-19mmfmr-container, .framer-42uRH .framer-qi10ml-container { flex: 1 0 0px; height: auto; max-width: 400px; position: relative; width: 1px; }\",\".framer-42uRH .framer-yuupb1 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-42uRH .framer-1u389sh, .framer-42uRH .framer-1j4edee, .framer-42uRH .framer-144h7qw, .framer-42uRH .framer-1pvk8hk, .framer-42uRH .framer-qc5w4p, .framer-42uRH .framer-1a3wrme, .framer-42uRH .framer-1sj3ycu, .framer-42uRH .framer-149ty8c, .framer-42uRH .framer-1llpufv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; padding: 0px; position: relative; width: 100%; }\",\".framer-42uRH .framer-1g1xasp, .framer-42uRH .framer-14imaoc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 720px; padding: 0px; position: relative; width: 100%; }\",\".framer-42uRH .framer-1ckhtxm, .framer-42uRH .framer-hpafmp, .framer-42uRH .framer-1ie8wh0, .framer-42uRH .framer-xbmvh5, .framer-42uRH .framer-19rad7i, .framer-42uRH .framer-uwslpn, .framer-42uRH .framer-vk9tqh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-42uRH .framer-h5t8v9-container { flex: 1 0 0px; height: auto; max-width: 200px; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-42uRH.framer-1ewra34, .framer-42uRH .framer-yx17yg, .framer-42uRH .framer-yuupb1, .framer-42uRH .framer-1u389sh, .framer-42uRH .framer-1g1xasp, .framer-42uRH .framer-1j4edee, .framer-42uRH .framer-14imaoc, .framer-42uRH .framer-144h7qw, .framer-42uRH .framer-1ckhtxm, .framer-42uRH .framer-1pvk8hk, .framer-42uRH .framer-hpafmp, .framer-42uRH .framer-qc5w4p, .framer-42uRH .framer-1ie8wh0, .framer-42uRH .framer-1a3wrme, .framer-42uRH .framer-xbmvh5, .framer-42uRH .framer-1sj3ycu, .framer-42uRH .framer-19rad7i, .framer-42uRH .framer-149ty8c, .framer-42uRH .framer-uwslpn, .framer-42uRH .framer-1llpufv, .framer-42uRH .framer-vk9tqh { gap: 0px; } .framer-42uRH.framer-1ewra34 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-42uRH.framer-1ewra34 > :first-child { margin-top: 0px; } .framer-42uRH.framer-1ewra34 > :last-child { margin-bottom: 0px; } .framer-42uRH .framer-yx17yg > *, .framer-42uRH .framer-yuupb1 > *, .framer-42uRH .framer-1u389sh > *, .framer-42uRH .framer-1g1xasp > *, .framer-42uRH .framer-1j4edee > *, .framer-42uRH .framer-14imaoc > *, .framer-42uRH .framer-144h7qw > *, .framer-42uRH .framer-1ckhtxm > *, .framer-42uRH .framer-1pvk8hk > *, .framer-42uRH .framer-hpafmp > *, .framer-42uRH .framer-qc5w4p > *, .framer-42uRH .framer-1ie8wh0 > *, .framer-42uRH .framer-1a3wrme > *, .framer-42uRH .framer-xbmvh5 > *, .framer-42uRH .framer-1sj3ycu > *, .framer-42uRH .framer-19rad7i > *, .framer-42uRH .framer-149ty8c > *, .framer-42uRH .framer-uwslpn > *, .framer-42uRH .framer-1llpufv > *, .framer-42uRH .framer-vk9tqh > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-42uRH .framer-yx17yg > :first-child, .framer-42uRH .framer-yuupb1 > :first-child, .framer-42uRH .framer-1u389sh > :first-child, .framer-42uRH .framer-1g1xasp > :first-child, .framer-42uRH .framer-1j4edee > :first-child, .framer-42uRH .framer-14imaoc > :first-child, .framer-42uRH .framer-144h7qw > :first-child, .framer-42uRH .framer-1ckhtxm > :first-child, .framer-42uRH .framer-1pvk8hk > :first-child, .framer-42uRH .framer-hpafmp > :first-child, .framer-42uRH .framer-qc5w4p > :first-child, .framer-42uRH .framer-1ie8wh0 > :first-child, .framer-42uRH .framer-1a3wrme > :first-child, .framer-42uRH .framer-xbmvh5 > :first-child, .framer-42uRH .framer-1sj3ycu > :first-child, .framer-42uRH .framer-19rad7i > :first-child, .framer-42uRH .framer-149ty8c > :first-child, .framer-42uRH .framer-uwslpn > :first-child, .framer-42uRH .framer-1llpufv > :first-child, .framer-42uRH .framer-vk9tqh > :first-child { margin-left: 0px; } .framer-42uRH .framer-yx17yg > :last-child, .framer-42uRH .framer-yuupb1 > :last-child, .framer-42uRH .framer-1u389sh > :last-child, .framer-42uRH .framer-1g1xasp > :last-child, .framer-42uRH .framer-1j4edee > :last-child, .framer-42uRH .framer-14imaoc > :last-child, .framer-42uRH .framer-144h7qw > :last-child, .framer-42uRH .framer-1ckhtxm > :last-child, .framer-42uRH .framer-1pvk8hk > :last-child, .framer-42uRH .framer-hpafmp > :last-child, .framer-42uRH .framer-qc5w4p > :last-child, .framer-42uRH .framer-1ie8wh0 > :last-child, .framer-42uRH .framer-1a3wrme > :last-child, .framer-42uRH .framer-xbmvh5 > :last-child, .framer-42uRH .framer-1sj3ycu > :last-child, .framer-42uRH .framer-19rad7i > :last-child, .framer-42uRH .framer-149ty8c > :last-child, .framer-42uRH .framer-uwslpn > :last-child, .framer-42uRH .framer-1llpufv > :last-child, .framer-42uRH .framer-vk9tqh > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 4792\n * @framerIntrinsicWidth 720\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerBlu0UQk0d=withCSS(Component,css,\"framer-42uRH\");export default FramerBlu0UQk0d;FramerBlu0UQk0d.displayName=\"Chat\";FramerBlu0UQk0d.defaultProps={height:4792,width:720};addFonts(FramerBlu0UQk0d,[{explicitInter:true,fonts:[]},...ChatBubbleFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerBlu0UQk0d\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"720\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"4792\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (d65f646)\nimport{LazyValue}from\"framer\";const valuesByLocaleId={OlDnri8__:new LazyValue(()=>import(\"./lgTzqx72w-0.js\"))};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values.read()[key];if(value)return value;}locale=locale.fallback;}}function preload(locale){const promises=[];while(locale){const values=valuesByLocaleId[locale.id];if(values){const promise=values.preload();if(promise)promises.push(promise);}locale=locale.fallback;}if(promises.length>0)return Promise.all(promises);}export function usePreloadLocalizedValues(locale){const preloadPromise=preload(locale);if(preloadPromise)throw preloadPromise;}\nexport const __FramerMetadata__ = {\"exports\":{\"usePreloadLocalizedValues\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (d65f646)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentPresetsProvider,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js\";import Chat from\"#framer/local/canvasComponent/Blu0UQk0d/Blu0UQk0d.js\";import ArticleCard from\"#framer/local/canvasComponent/ixkYFWvEm/ixkYFWvEm.js\";import Quote from\"#framer/local/canvasComponent/kYAOgRDQR/kYAOgRDQR.js\";import Navigation from\"#framer/local/canvasComponent/MlINLuFIb/MlINLuFIb.js\";import ArticleBadge from\"#framer/local/canvasComponent/YNmpEaOvj/YNmpEaOvj.js\";import BigFooter from\"#framer/local/canvasComponent/zIuqJRMh8/zIuqJRMh8.js\";import Blog from\"#framer/local/collection/g6N57Yr4H/g6N57Yr4H.js\";import Author from\"#framer/local/collection/UBVPNp5pC/UBVPNp5pC.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle5 from\"#framer/local/css/hES50ZT8m/hES50ZT8m.js\";import*as sharedStyle1 from\"#framer/local/css/IaF2uwuVm/IaF2uwuVm.js\";import*as sharedStyle2 from\"#framer/local/css/J1k63gYZB/J1k63gYZB.js\";import*as sharedStyle10 from\"#framer/local/css/JCw9UwEU6/JCw9UwEU6.js\";import*as sharedStyle9 from\"#framer/local/css/JjXm2UTBo/JjXm2UTBo.js\";import*as sharedStyle12 from\"#framer/local/css/K5yiDub5F/K5yiDub5F.js\";import*as sharedStyle from\"#framer/local/css/Kpg0gMnOT/Kpg0gMnOT.js\";import*as sharedStyle8 from\"#framer/local/css/PmWq0zXXg/PmWq0zXXg.js\";import*as sharedStyle6 from\"#framer/local/css/pS0f27MbF/pS0f27MbF.js\";import*as sharedStyle11 from\"#framer/local/css/x5d8QIfX5/x5d8QIfX5.js\";import*as sharedStyle3 from\"#framer/local/css/XUnXxBeb6/XUnXxBeb6.js\";import*as sharedStyle7 from\"#framer/local/css/Yox5NbY_B/Yox5NbY_B.js\";import*as sharedStyle4 from\"#framer/local/css/ZkAEvoMyE/ZkAEvoMyE.js\";import getLocalizedValue,{usePreloadLocalizedValues}from\"#framer/local/localization/lgTzqx72w/lgTzqx72w.js\";import metadataProvider from\"#framer/local/webPageMetadata/lgTzqx72w/lgTzqx72w.js\";const ImageWithFX=withFX(Image);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const ArticleBadgeFonts=getFonts(ArticleBadge);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const NavigationFonts=getFonts(Navigation);const ChatFonts=getFonts(Chat);const EmbedFonts=getFonts(Embed);const QuoteFonts=getFonts(Quote);const ArticleCardFonts=getFonts(ArticleCard);const ContainerWithFX=withFX(Container);const BigFooterFonts=getFonts(BigFooter);const breakpoints={G1XgIZuni:\"(min-width: 1440px)\",O00M08Ez7:\"(min-width: 810px) and (max-width: 1439px)\",wJRSMK_jS:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-60uZs\";const variantClassNames={G1XgIZuni:\"framer-v-1hrzro0\",O00M08Ez7:\"framer-v-1b4ypxb\",wJRSMK_jS:\"framer-v-o6fonb\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition1={damping:40,delay:.6,mass:1,stiffness:160,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={damping:50,delay:.7,mass:1,stiffness:180,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const convertFromEnum=(value,activeLocale)=>{switch(value){case\"szUGKDwaJ\":return\"CRMrQKJDt\";case\"J5X7FMmgZ\":return\"ZqHZHXyx9\";case\"b5WC6hHAJ\":return\"uDD1Gy_7t\";case\"t9XStM5Ga\":return\"pL66cqj51\";case\"WnfLRR6rP\":return\"wGEx3QwhM\";case\"afiNj61NA\":return\"gmNk6WB0h\";default:return\"CRMrQKJDt\";}};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const equals=(a,b)=>{return typeof a===\"string\"&&typeof b===\"string\"?a.toLowerCase()===b.toLowerCase():a===b;};const toDateString=(value,options={},activeLocale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const display=options.display?options.display:\"date\";const dateOptions={dateStyle:display!==\"time\"?options.dateStyle:undefined,timeStyle:display===\"date\"?undefined:\"short\",timeZone:\"UTC\"};const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;// We add a try block because an invalid language code results in a crash\ntry{return date.toLocaleString(locale,dateOptions);}catch{return date.toLocaleString(fallbackLocale,dateOptions);}};const convertFromEnum1=(value,activeLocale)=>{switch(value){case\"KGcOK44Ff\":return\"url\";case\"LKC7cDXOM\":return\"html\";default:return\"url\";}};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:20};const transition3={damping:30,delay:.1,mass:1,stiffness:180,type:\"spring\"};const convertFromEnum2=(value,activeLocale)=>{switch(value){case\"szUGKDwaJ\":return\"CRMrQKJDt\";case\"J5X7FMmgZ\":return\"ZqHZHXyx9\";case\"b5WC6hHAJ\":return\"uDD1Gy_7t\";case\"t9XStM5Ga\":return\"pL66cqj51\";case\"K0A42JDtc\":return\"CRMrQKJDt\";case\"WnfLRR6rP\":return\"wGEx3QwhM\";case\"afiNj61NA\":return\"gmNk6WB0h\";default:return\"CRMrQKJDt\";}};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"G1XgIZuni\",Phone:\"wJRSMK_jS\",Tablet:\"O00M08Ez7\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"G1XgIZuni\"};};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 currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"lgTzqx72w\",data:Blog,type:\"Collection\"},select:[{collection:\"lgTzqx72w\",name:\"Kx0gEexBD\",type:\"Identifier\"},{collection:\"lgTzqx72w\",name:\"IQVfA80JE\",type:\"Identifier\"},{collection:\"lgTzqx72w\",name:\"vNu0uoF69\",type:\"Identifier\"},{collection:\"lgTzqx72w\",name:\"JVuiQdxNI\",type:\"Identifier\"},{collection:\"lgTzqx72w\",name:\"MFHumcP86\",type:\"Identifier\"},{collection:\"lgTzqx72w\",name:\"IewDImXsO\",type:\"Identifier\"},{collection:\"lgTzqx72w\",name:\"t7Qdw3Hb8\",type:\"Identifier\"},{collection:\"lgTzqx72w\",name:\"TsQeHcbqL\",type:\"Identifier\"},{collection:\"lgTzqx72w\",name:\"ZEa_V9M_b\",type:\"Identifier\"},{collection:\"lgTzqx72w\",name:\"oALAirZ8I\",type:\"Identifier\"},{collection:\"lgTzqx72w\",name:\"zqGE08kvY\",type:\"Identifier\"},{collection:\"lgTzqx72w\",name:\"SfVcURf9f\",type:\"Identifier\"},{collection:\"lgTzqx72w\",name:\"dSClFGWVR\",type:\"Identifier\"},{collection:\"lgTzqx72w\",name:\"MHhESyIf1\",type:\"Identifier\"},{collection:\"lgTzqx72w\",name:\"zwrmUfgKk\",type:\"Identifier\"},{collection:\"lgTzqx72w\",name:\"I90IVYE0Y\",type:\"Identifier\"},{collection:\"lgTzqx72w\",name:\"aSYO4AF4n\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"lgTzqx72w\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,JVuiQdxNI=getFromCurrentRouteData(\"JVuiQdxNI\"),Kx0gEexBD=getFromCurrentRouteData(\"Kx0gEexBD\")??\"\",IewDImXsO=getFromCurrentRouteData(\"IewDImXsO\"),IQVfA80JE=getFromCurrentRouteData(\"IQVfA80JE\")??\"\",ZbhObglsrzVicSFfKV,tFV5GtCc6zVicSFfKV,idzVicSFfKV,TsQeHcbqL=getFromCurrentRouteData(\"TsQeHcbqL\")??\"\",ZEa_V9M_b=getFromCurrentRouteData(\"ZEa_V9M_b\")??\"\",ZbhObglsrHUynkH46j,tFV5GtCc6HUynkH46j,idHUynkH46j,oALAirZ8I=getFromCurrentRouteData(\"oALAirZ8I\")??\"\",ZbhObglsrWGcauN7Nc,tFV5GtCc6WGcauN7Nc,idWGcauN7Nc,zqGE08kvY=getFromCurrentRouteData(\"zqGE08kvY\")??\"\",ZbhObglsrUmCRpuHwf,tFV5GtCc6UmCRpuHwf,idUmCRpuHwf,tFV5GtCc6LYePy0PLM,vS7DuQnjlLYePy0PLM,idLYePy0PLM,t7Qdw3Hb8=getFromCurrentRouteData(\"t7Qdw3Hb8\"),tFV5GtCc6tctoFonPj,vS7DuQnjltctoFonPj,idtctoFonPj,tFV5GtCc6eZHmt8GX0,vS7DuQnjleZHmt8GX0,ideZHmt8GX0,tFV5GtCc6TK9xNIlOo,vS7DuQnjlTK9xNIlOo,idTK9xNIlOo,vNu0uoF69=getFromCurrentRouteData(\"vNu0uoF69\"),SfVcURf9f=getFromCurrentRouteData(\"SfVcURf9f\")??\"\",dSClFGWVR=getFromCurrentRouteData(\"dSClFGWVR\")??true,I90IVYE0Y=getFromCurrentRouteData(\"I90IVYE0Y\")??\"\",zwrmUfgKk=getFromCurrentRouteData(\"zwrmUfgKk\"),MHhESyIf1=getFromCurrentRouteData(\"MHhESyIf1\")??\"\",aSYO4AF4n=getFromCurrentRouteData(\"aSYO4AF4n\")??\"\",Kx0gEexBDatNw1ptSR,IQVfA80JEatNw1ptSR,JVuiQdxNIatNw1ptSR,G6drGBuP1atNw1ptSR,IewDImXsOatNw1ptSR,idatNw1ptSR,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(currentRouteData,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);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className,sharedStyle11.className,sharedStyle12.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"vRYFxLfxY\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"YV4YxqRo7\");const ref2=React.useRef(null);const visible=isSet(ZEa_V9M_b);const visible1=isSet(oALAirZ8I);const visible2=isSet(zqGE08kvY);const visible3=equals(t7Qdw3Hb8,\"MmD8M1aK_\");const visible4=equals(t7Qdw3Hb8,\"sM4nzGE8n\");const visible5=equals(t7Qdw3Hb8,\"ZaSZzY7fw\");const activeLocaleCode=useLocaleCode();const textContent=toDateString(vNu0uoF69,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode);const elementId2=useRouteElementId(\"VBf7smDuC\");const ref3=React.useRef(null);const visible6=isSet(I90IVYE0Y);const visible7=isSet(MHhESyIf1);const visible8=isSet(aSYO4AF4n);const elementId3=useRouteElementId(\"xWpsEAGj2\");const ref4=React.useRef(null);usePreloadLocalizedValues(activeLocale);const router=useRouter();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"G1XgIZuni\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-0431a5f4-4ca5-4c58-a73d-9fcd4b83b887, rgb(9, 1, 18)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1hrzro0\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsxs(\"header\",{className:\"framer-1pfemno\",\"data-framer-name\":\"Blog Header\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ipg8gf\",\"data-framer-name\":\"Accent Color BG\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O00M08Ez7:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0),sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(JVuiQdxNI),...{positionX:\"center\",positionY:\"top\"}}},wJRSMK_jS:{background:{alt:\"\",fit:\"fill\",sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(JVuiQdxNI),...{positionX:\"center\",positionY:\"top\"}}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:.4,rotate:0,rotateX:20,rotateY:0,scale:2,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScroll\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+1.25),sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(JVuiQdxNI)},className:\"framer-12s6gh4\",\"data-framer-name\":\"Blog Image\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-x2povk\",\"data-framer-name\":\"Image Overlay\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wyohsd\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-507xqj\",\"data-framer-appear-id\":\"507xqj\",\"data-framer-name\":\"Row\",initial:animation1,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-5plno1\",\"data-framer-name\":\"Text Wrapper\",children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-4fm1iy\",\"data-styles-preset\":\"Kpg0gMnOT\",style:{\"--framer-text-color\":\"var(--token-1f43fba6-8015-48d1-bd7d-60c54c253d75, rgb(255, 255, 255))\"},children:\"Title\"})}),className:\"framer-cg31m7\",\"data-framer-appear-id\":\"cg31m7\",\"data-framer-name\":\"Blog Title\",fonts:[\"Inter\"],initial:animation3,optimized:true,style:{transformPerspective:1200},text:Kx0gEexBD,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O00M08Ez7:{y:(componentViewport?.y||0)+0+0+0+416+0+0+0+131},wJRSMK_jS:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:33,y:(componentViewport?.y||0)+0+0+0+685+0+0+0+202,children:/*#__PURE__*/_jsx(Container,{className:\"framer-31f8s2-container\",nodeId:\"Y2iNkscuy\",scopeId:\"lgTzqx72w\",children:/*#__PURE__*/_jsx(ArticleBadge,{height:\"100%\",id:\"Y2iNkscuy\",layoutId:\"Y2iNkscuy\",variant:convertFromEnum(IewDImXsO,activeLocale),width:\"100%\"})})})})]})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ibzos8-container\",layoutScroll:true,nodeId:\"FQX0Nl9Wv\",scopeId:\"lgTzqx72w\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O00M08Ez7:{KP5NFN0j8:\"wudXByQ0i\",variant:\"uSKUIypr9\"},wJRSMK_jS:{variant:\"nbqE2LDbs\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"FQX0Nl9Wv\",KP5NFN0j8:\"R9TLnXVeX\",layoutId:\"FQX0Nl9Wv\",rznzImwFE:\"KRzzSKySN\",style:{width:\"100%\"},variant:\"LsxQaUb2_\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nby285\",\"data-framer-name\":\"Post\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-igk5hq\",\"data-styles-preset\":\"IaF2uwuVm\",children:\"Article Description\"})}),className:\"framer-1tf18sq\",\"data-framer-name\":\"Everything you love about the conference packed into a one-day online experience.\",fonts:[\"Inter\"],text:IQVfA80JE,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rvu4om\",\"data-framer-name\":\"Authors and Date\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yn2vrb\",\"data-framer-name\":\"Authors\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pp4nps\",\"data-framer-name\":\"Avatars\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1i4b1zx\",\"data-framer-name\":\"Author 1 Avatar\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"zVicSFfKV\",data:Author,type:\"Collection\"},select:[{collection:\"zVicSFfKV\",name:\"ZbhObglsr\",type:\"Identifier\"},{collection:\"zVicSFfKV\",name:\"tFV5GtCc6\",type:\"Identifier\"},{collection:\"zVicSFfKV\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"zVicSFfKV\",name:\"vS7DuQnjl\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:TsQeHcbqL},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({id:idzVicSFfKV,tFV5GtCc6:tFV5GtCc6zVicSFfKV,ZbhObglsr:ZbhObglsrzVicSFfKV},index)=>{tFV5GtCc6zVicSFfKV??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`zVicSFfKV-${idzVicSFfKV}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{tFV5GtCc6:tFV5GtCc6zVicSFfKV},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1viqi89\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O00M08Ez7:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+600+40+227.5+0+0+0+0+0+0),sizes:\"48px\",...toResponsiveImage(ZbhObglsrzVicSFfKV)}},wJRSMK_jS:{background:{alt:\"\",fit:\"fill\",sizes:\"24px\",...toResponsiveImage(ZbhObglsrzVicSFfKV)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1e3+40+227.5+0+0+0+0+0+0),sizes:\"48px\",...toResponsiveImage(ZbhObglsrzVicSFfKV)},className:\"framer-8gsbx6\",\"data-framer-name\":\"Avatar\"})})})})},idzVicSFfKV);})})})})}),visible&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-6ownh6\",\"data-framer-name\":\"Author 2 Avatar\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"HUynkH46j\",data:Author,type:\"Collection\"},select:[{collection:\"HUynkH46j\",name:\"ZbhObglsr\",type:\"Identifier\"},{collection:\"HUynkH46j\",name:\"tFV5GtCc6\",type:\"Identifier\"},{collection:\"HUynkH46j\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"HUynkH46j\",name:\"vS7DuQnjl\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:ZEa_V9M_b},type:\"BinaryOperation\"}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({id:idHUynkH46j,tFV5GtCc6:tFV5GtCc6HUynkH46j,ZbhObglsr:ZbhObglsrHUynkH46j},index1)=>{tFV5GtCc6HUynkH46j??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`HUynkH46j-${idHUynkH46j}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{tFV5GtCc6:tFV5GtCc6HUynkH46j},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jcretw\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O00M08Ez7:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+600+40+227.5+0+0+0+0+0+0),sizes:\"48px\",...toResponsiveImage(ZbhObglsrHUynkH46j)}},wJRSMK_jS:{background:{alt:\"\",fit:\"fill\",sizes:\"24px\",...toResponsiveImage(ZbhObglsrHUynkH46j)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1e3+40+227.5+0+0+0+0+0+0),sizes:\"48px\",...toResponsiveImage(ZbhObglsrHUynkH46j)},className:\"framer-3e4631\",\"data-framer-name\":\"Avatar\"})})})})},idHUynkH46j);})})})})}),visible1&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-10eq0w5\",\"data-framer-name\":\"Author 3 Avatar\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"WGcauN7Nc\",data:Author,type:\"Collection\"},select:[{collection:\"WGcauN7Nc\",name:\"ZbhObglsr\",type:\"Identifier\"},{collection:\"WGcauN7Nc\",name:\"tFV5GtCc6\",type:\"Identifier\"},{collection:\"WGcauN7Nc\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"WGcauN7Nc\",name:\"vS7DuQnjl\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:oALAirZ8I},type:\"BinaryOperation\"}},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2?.map(({id:idWGcauN7Nc,tFV5GtCc6:tFV5GtCc6WGcauN7Nc,ZbhObglsr:ZbhObglsrWGcauN7Nc},index2)=>{tFV5GtCc6WGcauN7Nc??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`WGcauN7Nc-${idWGcauN7Nc}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{tFV5GtCc6:tFV5GtCc6WGcauN7Nc},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ozh7qq\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O00M08Ez7:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+600+40+227.5+0+0+0+0+0+0),sizes:\"48px\",...toResponsiveImage(ZbhObglsrWGcauN7Nc)}},wJRSMK_jS:{background:{alt:\"\",fit:\"fill\",sizes:\"24px\",...toResponsiveImage(ZbhObglsrWGcauN7Nc)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1e3+40+227.5+0+0+0+0+0+0),sizes:\"48px\",...toResponsiveImage(ZbhObglsrWGcauN7Nc)},className:\"framer-17dic9\",\"data-framer-name\":\"Avatar\"})})})})},idWGcauN7Nc);})})})})}),visible2&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lkhnif\",\"data-framer-name\":\"Author 4 Avatar\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"UmCRpuHwf\",data:Author,type:\"Collection\"},select:[{collection:\"UmCRpuHwf\",name:\"ZbhObglsr\",type:\"Identifier\"},{collection:\"UmCRpuHwf\",name:\"tFV5GtCc6\",type:\"Identifier\"},{collection:\"UmCRpuHwf\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"UmCRpuHwf\",name:\"vS7DuQnjl\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:zqGE08kvY},type:\"BinaryOperation\"}},children:(collection3,paginationInfo3,loadMore3)=>/*#__PURE__*/_jsx(_Fragment,{children:collection3?.map(({id:idUmCRpuHwf,tFV5GtCc6:tFV5GtCc6UmCRpuHwf,ZbhObglsr:ZbhObglsrUmCRpuHwf},index3)=>{tFV5GtCc6UmCRpuHwf??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`UmCRpuHwf-${idUmCRpuHwf}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{tFV5GtCc6:tFV5GtCc6UmCRpuHwf},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-oxowfr\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O00M08Ez7:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+600+40+227.5+0+0+0+0+0+0),sizes:\"48px\",...toResponsiveImage(ZbhObglsrUmCRpuHwf)}},wJRSMK_jS:{background:{alt:\"\",fit:\"fill\",sizes:\"24px\",...toResponsiveImage(ZbhObglsrUmCRpuHwf)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1e3+40+227.5+0+0+0+0+0+0),sizes:\"48px\",...toResponsiveImage(ZbhObglsrUmCRpuHwf)},className:\"framer-1qtqgnl\",\"data-framer-name\":\"Avatar\"})})})})},idUmCRpuHwf);})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-je0dvq\",\"data-framer-name\":\"Author Names\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-m5h022\",\"data-framer-name\":\"Author 1 Name\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"LYePy0PLM\",data:Author,type:\"Collection\"},select:[{collection:\"LYePy0PLM\",name:\"tFV5GtCc6\",type:\"Identifier\"},{collection:\"LYePy0PLM\",name:\"vS7DuQnjl\",type:\"Identifier\"},{collection:\"LYePy0PLM\",name:\"id\",type:\"Identifier\"}],where:{arguments:[{collection:\"LYePy0PLM\",name:\"vS7DuQnjl\",type:\"Identifier\"},{type:\"LiteralValue\",value:TsQeHcbqL}],functionName:\"CONTAINS\",type:\"FunctionCall\"}},children:(collection4,paginationInfo4,loadMore4)=>/*#__PURE__*/_jsx(_Fragment,{children:collection4?.map(({id:idLYePy0PLM,tFV5GtCc6:tFV5GtCc6LYePy0PLM,vS7DuQnjl:vS7DuQnjlLYePy0PLM},index4)=>{tFV5GtCc6LYePy0PLM??=\"\";vS7DuQnjlLYePy0PLM??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`LYePy0PLM-${idLYePy0PLM}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{tFV5GtCc6:tFV5GtCc6LYePy0PLM},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-19e5ghr\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1f4om1\",\"data-styles-preset\":\"J1k63gYZB\",style:{\"--framer-text-color\":\"var(--token-04d379fd-7034-4886-a692-3d31a57ca6af, rgb(66, 250, 161))\"},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{tFV5GtCc6:tFV5GtCc6LYePy0PLM},webPageId:\"domRhaseA\"},motionChild:true,nodeId:\"wAcE_oS31\",openInNewTab:false,scopeId:\"lgTzqx72w\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-x0yjoe\",\"data-styles-preset\":\"XUnXxBeb6\",children:\"Author Name\"})})})}),className:\"framer-d1ig5w\",\"data-framer-name\":\"Author Name\",fonts:[\"Inter\"],text:vS7DuQnjlLYePy0PLM,verticalAlignment:\"top\",withExternalLayout:true})})})},idLYePy0PLM);})})})})}),visible3&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"var(--token-04d379fd-7034-4886-a692-3d31a57ca6af, rgb(66, 250, 161))\"},children:\", \"})}),className:\"framer-5csopz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),visible4&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"var(--token-04d379fd-7034-4886-a692-3d31a57ca6af, rgb(66, 250, 161))\"},children:\", \"})}),className:\"framer-1jjmav9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),visible5&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"var(--token-04d379fd-7034-4886-a692-3d31a57ca6af, rgb(66, 250, 161))\"},children:\" & \"})}),className:\"framer-gwlre1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),visible&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-16qn9vv\",\"data-framer-name\":\"Author 2 Name\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"tctoFonPj\",data:Author,type:\"Collection\"},select:[{collection:\"tctoFonPj\",name:\"tFV5GtCc6\",type:\"Identifier\"},{collection:\"tctoFonPj\",name:\"vS7DuQnjl\",type:\"Identifier\"},{collection:\"tctoFonPj\",name:\"id\",type:\"Identifier\"}],where:{arguments:[{collection:\"tctoFonPj\",name:\"vS7DuQnjl\",type:\"Identifier\"},{type:\"LiteralValue\",value:ZEa_V9M_b}],functionName:\"CONTAINS\",type:\"FunctionCall\"}},children:(collection5,paginationInfo5,loadMore5)=>/*#__PURE__*/_jsx(_Fragment,{children:collection5?.map(({id:idtctoFonPj,tFV5GtCc6:tFV5GtCc6tctoFonPj,vS7DuQnjl:vS7DuQnjltctoFonPj},index5)=>{tFV5GtCc6tctoFonPj??=\"\";vS7DuQnjltctoFonPj??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`tctoFonPj-${idtctoFonPj}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{tFV5GtCc6:tFV5GtCc6tctoFonPj},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ge608q\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1f4om1\",\"data-styles-preset\":\"J1k63gYZB\",style:{\"--framer-text-color\":\"var(--token-04d379fd-7034-4886-a692-3d31a57ca6af, rgb(66, 250, 161))\"},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{tFV5GtCc6:tFV5GtCc6tctoFonPj},webPageId:\"domRhaseA\"},motionChild:true,nodeId:\"Pt199CioP\",openInNewTab:false,scopeId:\"lgTzqx72w\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-x0yjoe\",\"data-styles-preset\":\"XUnXxBeb6\",children:\"Author Name\"})})})}),className:\"framer-1wnm6jw\",\"data-framer-name\":\"Author Name\",fonts:[\"Inter\"],text:vS7DuQnjltctoFonPj,verticalAlignment:\"top\",withExternalLayout:true})})})},idtctoFonPj);})})})})}),visible4&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"var(--token-04d379fd-7034-4886-a692-3d31a57ca6af, rgb(66, 250, 161))\"},children:\", \"})}),className:\"framer-3e5ss8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),visible3&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"var(--token-04d379fd-7034-4886-a692-3d31a57ca6af, rgb(66, 250, 161))\"},children:\" & \"})}),className:\"framer-7k9ta\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),visible1&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-17gbg5z\",\"data-framer-name\":\"Author 3 Name\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"eZHmt8GX0\",data:Author,type:\"Collection\"},select:[{collection:\"eZHmt8GX0\",name:\"tFV5GtCc6\",type:\"Identifier\"},{collection:\"eZHmt8GX0\",name:\"vS7DuQnjl\",type:\"Identifier\"},{collection:\"eZHmt8GX0\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"eZHmt8GX0\",name:\"vS7DuQnjl\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:oALAirZ8I},type:\"BinaryOperation\"}},children:(collection6,paginationInfo6,loadMore6)=>/*#__PURE__*/_jsx(_Fragment,{children:collection6?.map(({id:ideZHmt8GX0,tFV5GtCc6:tFV5GtCc6eZHmt8GX0,vS7DuQnjl:vS7DuQnjleZHmt8GX0},index6)=>{tFV5GtCc6eZHmt8GX0??=\"\";vS7DuQnjleZHmt8GX0??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`eZHmt8GX0-${ideZHmt8GX0}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{tFV5GtCc6:tFV5GtCc6eZHmt8GX0},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-148ogjr\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1f4om1\",\"data-styles-preset\":\"J1k63gYZB\",style:{\"--framer-text-color\":\"var(--token-04d379fd-7034-4886-a692-3d31a57ca6af, rgb(66, 250, 161))\"},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{tFV5GtCc6:tFV5GtCc6eZHmt8GX0},webPageId:\"domRhaseA\"},motionChild:true,nodeId:\"Zy7e2pg17\",openInNewTab:false,scopeId:\"lgTzqx72w\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-x0yjoe\",\"data-styles-preset\":\"XUnXxBeb6\",children:\"Author Name\"})})})}),className:\"framer-11krc7z\",\"data-framer-name\":\"Author Name\",fonts:[\"Inter\"],text:vS7DuQnjleZHmt8GX0,verticalAlignment:\"top\",withExternalLayout:true})})})},ideZHmt8GX0);})})})})}),visible4&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-color\":\"var(--token-04d379fd-7034-4886-a692-3d31a57ca6af, rgb(66, 250, 161))\"},children:\" & \"})}),className:\"framer-s66yk6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),visible2&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-65gsdd\",\"data-framer-name\":\"Author 4 Name\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"TK9xNIlOo\",data:Author,type:\"Collection\"},select:[{collection:\"TK9xNIlOo\",name:\"tFV5GtCc6\",type:\"Identifier\"},{collection:\"TK9xNIlOo\",name:\"vS7DuQnjl\",type:\"Identifier\"},{collection:\"TK9xNIlOo\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"TK9xNIlOo\",name:\"vS7DuQnjl\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:zqGE08kvY},type:\"BinaryOperation\"}},children:(collection7,paginationInfo7,loadMore7)=>/*#__PURE__*/_jsx(_Fragment,{children:collection7?.map(({id:idTK9xNIlOo,tFV5GtCc6:tFV5GtCc6TK9xNIlOo,vS7DuQnjl:vS7DuQnjlTK9xNIlOo},index7)=>{tFV5GtCc6TK9xNIlOo??=\"\";vS7DuQnjlTK9xNIlOo??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`TK9xNIlOo-${idTK9xNIlOo}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{tFV5GtCc6:tFV5GtCc6TK9xNIlOo},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rzadzj\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1f4om1\",\"data-styles-preset\":\"J1k63gYZB\",style:{\"--framer-text-color\":\"var(--token-04d379fd-7034-4886-a692-3d31a57ca6af, rgb(66, 250, 161))\"},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{tFV5GtCc6:tFV5GtCc6TK9xNIlOo},webPageId:\"domRhaseA\"},motionChild:true,nodeId:\"uWvYTGLae\",openInNewTab:false,scopeId:\"lgTzqx72w\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-x0yjoe\",\"data-styles-preset\":\"XUnXxBeb6\",children:\"Author Name\"})})})}),className:\"framer-19f5dny\",\"data-framer-name\":\"Author Name\",fonts:[\"Inter\"],text:vS7DuQnjlTK9xNIlOo,verticalAlignment:\"top\",withExternalLayout:true})})})},idTK9xNIlOo);})})})})})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1f4om1\",\"data-styles-preset\":\"J1k63gYZB\",style:{\"--framer-text-color\":\"var(--token-0b32df3f-8422-4f7a-bb8b-794b19758b84, rgb(181, 164, 227))\"},children:\"Content\"})}),className:\"framer-1ua34s0\",\"data-framer-name\":\"Date\",fonts:[\"Inter\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js:Youtube\":componentPresets.props[\"x5LvOxgFn\"],\"module:pVk4QsoHxASnVtUBp6jr/F3DAaPbkrr19izpZS3jO/CodeBlock.js:default\":componentPresets.props[\"icjR_slka\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:SfVcURf9f,className:\"framer-1qqdcjs\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],id:elementId2,ref:ref3,stylesPresetsClassNames:{a:\"framer-styles-preset-x0yjoe\",blockquote:\"framer-styles-preset-4wpnyn\",code:\"framer-styles-preset-1ock48u\",h1:\"framer-styles-preset-4fm1iy\",h2:\"framer-styles-preset-48tihs\",h3:\"framer-styles-preset-2kp3lv\",h4:\"framer-styles-preset-13fah2o\",h5:\"framer-styles-preset-1czsaa2\",h6:\"framer-styles-preset-kdz1q8\",img:\"framer-styles-preset-pefokr\",p:\"framer-styles-preset-1f4om1\",table:\"framer-styles-preset-3037if\"},verticalAlignment:\"top\",withExternalLayout:true})}),dSClFGWVR&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O00M08Ez7:{y:(componentViewport?.y||0)+0+600+40+451.5},wJRSMK_jS:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 720px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:4792,width:`min(${componentViewport?.width||\"100vw\"}, 720px)`,y:(componentViewport?.y||0)+0+1e3+40+451.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-hrfgb-container\",nodeId:\"zNzi0KACW\",scopeId:\"lgTzqx72w\",children:/*#__PURE__*/_jsx(Chat,{height:\"100%\",id:\"zNzi0KACW\",layoutId:\"zNzi0KACW\",style:{maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})}),visible6&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-w39juf-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"gO1A9M4jL\",scopeId:\"lgTzqx72w\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:I90IVYE0Y,id:\"gO1A9M4jL\",layoutId:\"gO1A9M4jL\",style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},type:convertFromEnum1(zwrmUfgKk,activeLocale),url:I90IVYE0Y,width:\"100%\"})})}),visible7&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O00M08Ez7:{y:(componentViewport?.y||0)+0+600+40+6153.5},wJRSMK_jS:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:110,width:\"600px\",y:(componentViewport?.y||0)+0+1e3+40+6153.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1a28ec2-container\",nodeId:\"qj51d00fS\",scopeId:\"lgTzqx72w\",children:/*#__PURE__*/_jsx(Quote,{fPrd7I79t:MHhESyIf1,gvfHQJEDe:\"var(--token-f175bdc8-37af-40b0-a27b-b93afd1c3d6c, rgb(38, 208, 124))\",height:\"100%\",id:\"qj51d00fS\",KbHXpMWac:true,layoutId:\"qj51d00fS\",style:{width:\"100%\"},variant:\"ovCBoFemC\",width:\"100%\"})})})}),visible8&&/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js:Youtube\":componentPresets.props[\"x5LvOxgFn\"],\"module:pVk4QsoHxASnVtUBp6jr/F3DAaPbkrr19izpZS3jO/CodeBlock.js:default\":componentPresets.props[\"icjR_slka\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:aSYO4AF4n,className:\"framer-5xqc8y\",\"data-framer-name\":\"Content 2\",fonts:[\"Inter\"],id:elementId3,ref:ref4,stylesPresetsClassNames:{a:\"framer-styles-preset-x0yjoe\",blockquote:\"framer-styles-preset-4wpnyn\",code:\"framer-styles-preset-1ock48u\",h1:\"framer-styles-preset-4fm1iy\",h2:\"framer-styles-preset-48tihs\",h3:\"framer-styles-preset-2kp3lv\",h4:\"framer-styles-preset-13fah2o\",h5:\"framer-styles-preset-1czsaa2\",h6:\"framer-styles-preset-kdz1q8\",img:\"framer-styles-preset-pefokr\",p:\"framer-styles-preset-1f4om1\",table:\"framer-styles-preset-3037if\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-r93v9e\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O00M08Ez7:{children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-48tihs\",\"data-styles-preset\":\"ZkAEvoMyE\",style:{\"--framer-text-alignment\":\"left\"},children:\"Podobn\\xe9 \u010Dl\\xe1nky\"})})},wJRSMK_jS:{children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-48tihs\",\"data-styles-preset\":\"ZkAEvoMyE\",style:{\"--framer-text-alignment\":\"left\"},children:\"Podobn\\xe9 \u010Dl\\xe1nky\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-48tihs\",\"data-styles-preset\":\"ZkAEvoMyE\",children:\"Podobn\\xe9 \u010Dl\\xe1nky\"})}),className:\"framer-1dibhnc\",\"data-framer-name\":\"Expect only the best\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ynu95x\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"atNw1ptSR\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"atNw1ptSR\",name:\"Kx0gEexBD\",type:\"Identifier\"},{collection:\"atNw1ptSR\",name:\"IQVfA80JE\",type:\"Identifier\"},{collection:\"atNw1ptSR\",name:\"JVuiQdxNI\",type:\"Identifier\"},{collection:\"atNw1ptSR\",name:\"G6drGBuP1\",type:\"Identifier\"},{collection:\"atNw1ptSR\",name:\"IewDImXsO\",type:\"Identifier\"},{collection:\"atNw1ptSR\",name:\"id\",type:\"Identifier\"}],where:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"atNw1ptSR\",name:\"Kx0gEexBD\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:Kx0gEexBD},type:\"BinaryOperation\"}}},children:(collection8,paginationInfo8,loadMore8)=>/*#__PURE__*/_jsx(_Fragment,{children:collection8?.map(({G6drGBuP1:G6drGBuP1atNw1ptSR,id:idatNw1ptSR,IewDImXsO:IewDImXsOatNw1ptSR,IQVfA80JE:IQVfA80JEatNw1ptSR,JVuiQdxNI:JVuiQdxNIatNw1ptSR,Kx0gEexBD:Kx0gEexBDatNw1ptSR},index8)=>{Kx0gEexBDatNw1ptSR??=\"\";IQVfA80JEatNw1ptSR??=\"\";G6drGBuP1atNw1ptSR??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`atNw1ptSR-${idatNw1ptSR}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{G6drGBuP1:G6drGBuP1atNw1ptSR},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":vRYFxLfxY\",pathVariables:{G6drGBuP1:G6drGBuP1atNw1ptSR},webPageId:\"lgTzqx72w\"},implicitPathVariables:undefined},{href:{hash:\":vRYFxLfxY\",pathVariables:{G6drGBuP1:G6drGBuP1atNw1ptSR},webPageId:\"lgTzqx72w\"},implicitPathVariables:undefined},{href:{hash:\":vRYFxLfxY\",pathVariables:{G6drGBuP1:G6drGBuP1atNw1ptSR},webPageId:\"lgTzqx72w\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O00M08Ez7:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 120px)`,y:(componentViewport?.y||0)+0+600+40+6439.5+80+103.25+0+0},wJRSMK_jS:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1440px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:301,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) - 160px)`,y:(componentViewport?.y||0)+0+1e3+40+6439.5+80+103.25+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-3thxtb-container\",nodeId:\"qGUmpeeqe\",rendersWithMotion:true,scopeId:\"lgTzqx72w\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O00M08Ez7:{SYrX04BNg:resolvedLinks[1]},wJRSMK_jS:{SYrX04BNg:resolvedLinks[2],variant:\"LfTNj5mkj\"}},children:/*#__PURE__*/_jsx(ArticleCard,{gm_y55CtU:toResponsiveImage(JVuiQdxNIatNw1ptSR),height:\"100%\",id:\"qGUmpeeqe\",layoutId:\"qGUmpeeqe\",MRm4Ux5Ve:\"#Flutter\",style:{width:\"100%\"},SYrX04BNg:resolvedLinks[0],tvBdxa7a6:convertFromEnum2(IewDImXsOatNw1ptSR,activeLocale),variant:\"z3q9DHkFe\",VwAhqApIZ:IQVfA80JEatNw1ptSR,VxOMeUJyX:Kx0gEexBDatNw1ptSR,width:\"100%\"})})})})})})})},idatNw1ptSR);})})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O00M08Ez7:{y:(componentViewport?.y||0)+0+1655.75},wJRSMK_jS:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1301,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+2055.75,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ll9va5-container\",nodeId:\"MtnbHAccP\",scopeId:\"lgTzqx72w\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O00M08Ez7:{variant:\"hoBd_SLY9\"},wJRSMK_jS:{variant:\"gU7d0xQQd\"}},children:/*#__PURE__*/_jsx(BigFooter,{height:\"100%\",id:\"MtnbHAccP\",layoutId:\"MtnbHAccP\",style:{width:\"100%\"},variant:\"KZQE5lCJt\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-60uZs.framer-15za9k1, .framer-60uZs .framer-15za9k1 { display: block; }\",\".framer-60uZs.framer-1hrzro0 { align-content: center; align-items: center; background-color: var(--token-0431a5f4-4ca5-4c58-a73d-9fcd4b83b887, #090112); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-60uZs .framer-1pfemno { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 120px; height: 100vh; justify-content: flex-end; max-width: 100%; overflow: hidden; padding: 0px 80px 80px 80px; position: relative; scroll-margin-top: 10px; width: 100%; }\",\".framer-60uZs .framer-1ipg8gf { background-color: var(--token-f5fa5032-7750-4595-83be-1e432af82232, #1a0947); flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: calc(49.87500000000003% - 100% / 2); width: 100%; z-index: 0; }\",\".framer-60uZs .framer-12s6gh4 { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: calc(50.12500000000002% - 100% / 2); width: 100%; z-index: 0; }\",\".framer-60uZs .framer-x2povk { background: linear-gradient(180deg, rgba(13, 0, 26, 0.8) 0%, rgba(13, 0, 26, 0.3) 29.38309403153153%, rgba(13, 0, 26, 0) 43.86304492882563%, rgba(13, 0, 26, 0.1) 51.35135135135135%, rgba(13, 0, 26, 0.2) 57.50281531531532%, rgba(13, 0, 26, 0.6) 67.93055555555556%, rgb(13, 0, 26) 93.34476039260969%); flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: 0px; width: 100%; z-index: 2; }\",\".framer-60uZs .framer-1wyohsd { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-60uZs .framer-507xqj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 235px; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-60uZs .framer-5plno1 { 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 0px 16px 0px; position: relative; width: 100%; }\",\".framer-60uZs .framer-cg31m7 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-60uZs .framer-31f8s2-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-60uZs .framer-ibzos8-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 2; }\",\".framer-60uZs .framer-1nby285 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 40px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-60uZs .framer-1tf18sq { flex: none; height: auto; max-width: 720px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-60uZs .framer-rvu4om { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 720px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-60uZs .framer-1yn2vrb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-60uZs .framer-1pp4nps { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-60uZs .framer-1i4b1zx, .framer-60uZs .framer-10eq0w5, .framer-60uZs .framer-1lkhnif, .framer-60uZs .framer-m5h022, .framer-60uZs .framer-16qn9vv, .framer-60uZs .framer-17gbg5z, .framer-60uZs .framer-65gsdd { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: min-content; }\",\".framer-60uZs .framer-1viqi89, .framer-60uZs .framer-1jcretw, .framer-60uZs .framer-1ozh7qq, .framer-60uZs .framer-oxowfr, .framer-60uZs .framer-19e5ghr, .framer-60uZs .framer-1ge608q, .framer-60uZs .framer-148ogjr, .framer-60uZs .framer-1rzadzj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: min-content; }\",\".framer-60uZs .framer-8gsbx6, .framer-60uZs .framer-3e4631, .framer-60uZs .framer-17dic9, .framer-60uZs .framer-1qtqgnl { aspect-ratio: 1 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: var(--framer-aspect-ratio-supported, 48px); position: relative; width: 48px; }\",\".framer-60uZs .framer-6ownh6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: min-content; z-index: 1; }\",\".framer-60uZs .framer-je0dvq { 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: min-content; }\",\".framer-60uZs .framer-d1ig5w, .framer-60uZs .framer-1wnm6jw, .framer-60uZs .framer-11krc7z, .framer-60uZs .framer-19f5dny, .framer-60uZs .framer-1ua34s0 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-60uZs .framer-5csopz, .framer-60uZs .framer-1jjmav9, .framer-60uZs .framer-gwlre1, .framer-60uZs .framer-3e5ss8, .framer-60uZs .framer-7k9ta, .framer-60uZs .framer-s66yk6 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-60uZs .framer-1qqdcjs, .framer-60uZs .framer-5xqc8y { --framer-paragraph-spacing: 32px; flex: none; height: auto; max-width: 720px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-60uZs .framer-hrfgb-container { flex: none; height: auto; max-width: 720px; position: relative; width: 100%; }\",\".framer-60uZs .framer-w39juf-container { flex: none; height: 830px; max-width: 720px; position: relative; width: 100%; }\",\".framer-60uZs .framer-1a28ec2-container { flex: none; height: auto; position: relative; width: 600px; }\",\".framer-60uZs .framer-r93v9e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 80px; position: relative; width: 100%; }\",\".framer-60uZs .framer-1dibhnc { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-60uZs .framer-1ynu95x { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-60uZs .framer-3thxtb-container, .framer-60uZs .framer-ll9va5-container { flex: none; height: auto; position: relative; width: 100%; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,...sharedStyle11.css,...sharedStyle12.css,\"@media (min-width: 810px) and (max-width: 1439px) { .framer-60uZs.framer-1hrzro0 { width: 810px; } .framer-60uZs .framer-1pfemno { height: 600px; padding: 0px 40px 20px 40px; } .framer-60uZs .framer-12s6gh4 { height: 78%; left: 0px; top: 0px; } .framer-60uZs .framer-x2povk { background: linear-gradient(180deg, rgba(13, 0, 26, 0.8) 0%, rgba(13, 0, 26, 0.3) 29.38309403153153%, rgba(13, 0, 26, 0) 37.370388040712484%, rgba(13, 0, 26, 0.1) 44.535782442748086%, rgba(13, 0, 26, 0.2) 52.02687659033081%, rgba(13, 0, 26, 0.6) 60.16937022900765%, rgba(13, 0, 26, 0.99) 75.80295801526721%, rgb(13, 0, 26) 100%); } .framer-60uZs .framer-507xqj { height: min-content; } .framer-60uZs .framer-r93v9e { padding: 80px 60px 80px 60px; }}\",\"@media (max-width: 809px) { .framer-60uZs.framer-1hrzro0 { width: 390px; } .framer-60uZs .framer-1pfemno { background-color: var(--token-299f76c6-8faa-48cf-841b-c848cb80150e, #0d001a); padding: 0px 20px 20px 20px; } .framer-60uZs .framer-1ipg8gf { background-color: var(--token-299f76c6-8faa-48cf-841b-c848cb80150e, #0d001a); top: 0px; } .framer-60uZs .framer-12s6gh4 { height: 471px; top: 0px; } .framer-60uZs .framer-x2povk { background: linear-gradient(180deg, rgba(13, 0, 26, 0.2) 0%, rgba(13, 0, 26, 0.3) 35.78199052132701%, rgba(13, 0, 26, 0.9) 43.453541654770746%, rgb(13, 0, 26) 47.26791190409813%); } .framer-60uZs .framer-1nby285 { padding: 40px 20px 0px 20px; } .framer-60uZs .framer-rvu4om { flex-wrap: wrap; gap: 0px; justify-content: center; min-width: 100px; width: min-content; } .framer-60uZs .framer-8gsbx6, .framer-60uZs .framer-3e4631, .framer-60uZs .framer-17dic9, .framer-60uZs .framer-1qtqgnl { height: var(--framer-aspect-ratio-supported, 24px); width: 24px; } .framer-60uZs .framer-w39juf-container { height: 630px; } .framer-60uZs .framer-1a28ec2-container { width: 100%; } .framer-60uZs .framer-r93v9e { padding: 80px 0px 80px 0px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 10258\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"O00M08Ez7\":{\"layout\":[\"fixed\",\"auto\"]},\"wJRSMK_jS\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"vRYFxLfxY\":{\"pattern\":\":vRYFxLfxY\",\"name\":\"blog-header\"},\"YV4YxqRo7\":{\"pattern\":\":YV4YxqRo7\",\"name\":\"post\"},\"VBf7smDuC\":{\"pattern\":\":VBf7smDuC\",\"name\":\"content\"},\"xWpsEAGj2\":{\"pattern\":\":xWpsEAGj2\",\"name\":\"content-2\"}}\n * @framerResponsiveScreen\n */const FramerlgTzqx72w=withCSS(Component,css,\"framer-60uZs\");export default FramerlgTzqx72w;FramerlgTzqx72w.displayName=\"Blog Detail\";FramerlgTzqx72w.defaultProps={height:10258,width:1440};addFonts(FramerlgTzqx72w,[{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\"}]},...ArticleBadgeFonts,...NavigationFonts,...ChatFonts,...EmbedFonts,...QuoteFonts,...ArticleCardFonts,...BigFooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...getFontsFromSharedStyle(sharedStyle10.fonts),...getFontsFromSharedStyle(sharedStyle11.fonts),...getFontsFromSharedStyle(sharedStyle12.fonts),...componentPresets.fonts?.[\"icjR_slka\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"icjR_slka\"]):[],...componentPresets.fonts?.[\"x5LvOxgFn\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"x5LvOxgFn\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerlgTzqx72w\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"10258\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"O00M08Ez7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wJRSMK_jS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerScrollSections\":\"{\\\"vRYFxLfxY\\\":{\\\"pattern\\\":\\\":vRYFxLfxY\\\",\\\"name\\\":\\\"blog-header\\\"},\\\"YV4YxqRo7\\\":{\\\"pattern\\\":\\\":YV4YxqRo7\\\",\\\"name\\\":\\\"post\\\"},\\\"VBf7smDuC\\\":{\\\"pattern\\\":\\\":VBf7smDuC\\\",\\\"name\\\":\\\"content\\\"},\\\"xWpsEAGj2\\\":{\\\"pattern\\\":\\\":xWpsEAGj2\\\",\\\"name\\\":\\\"content-2\\\"}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerImmutableVariables\":\"true\",\"framerResponsiveScreen\":\"\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "+6CAQkB,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,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,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,CC3F7DwD,GAAU,UAAU,CAAC,uBAAuB,mBAAmB,yBAAyB,qBAAqB,CAAC,EAAS,IAAMC,GAAM,CAAC,CAAC,OAAO,YAAY,OAAO,SAAS,MAAM,SAAS,IAAI,iGAAiG,OAAO,KAAK,EAAE,CAAC,OAAO,YAAY,OAAO,SAAS,MAAM,SAAS,IAAI,iGAAiG,OAAO,KAAK,EAAE,CAAC,OAAO,YAAY,OAAO,SAAS,MAAM,SAAS,IAAI,oGAAoG,OAAO,KAAK,EAAE,CAAC,OAAO,YAAY,OAAO,SAAS,MAAM,SAAS,IAAI,oGAAoG,OAAO,KAAK,CAAC,EAAeC,GAAI,CAAC,y/BAAy/B,EAAeC,GAAU,eCAv0DC,GAAU,UAAU,CAAC,CAAC,EAAS,IAAMC,GAAM,CAAC,EAAeC,GAAI,CAAC,wcAAwc,EAAeC,GAAU,eCCymD,IAAMC,GAAW,CAAC,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,iBAAiB,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,EAAmB,EAAQC,EAAWL,GAAOE,EAAO,WAAiBI,EAAmBC,GAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,GAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,OAAO,YAAY,SAAS,WAAW,EAAQC,GAAS,CAAC,CAAC,cAAAC,EAAc,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,UAAUJ,GAAeI,EAAM,WAAwBV,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,SAAS,6BAAsB,CAAC,CAAC,CAAC,EAAE,QAAQE,GAAwBM,EAAM,OAAO,GAAGA,EAAM,SAAS,WAAW,GAAUC,GAAuB,CAACD,EAAMvB,IAAeuB,EAAM,iBAAwBvB,EAAS,KAAK,GAAG,EAAEuB,EAAM,iBAAwBvB,EAAS,KAAK,GAAG,EAAUyB,GAA6BC,GAAW,SAASH,EAAMI,EAAI,CAAC,IAAMC,EAAYC,EAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsB,GAAM,EAAO,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAQC,EAAkBC,GAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAArC,EAAQ,UAAAsC,EAAU,GAAGC,CAAS,EAAEvB,GAASK,CAAK,EAAO,CAAC,YAAAmB,GAAY,WAAAC,EAAW,oBAAAC,GAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,GAAU,gBAAAC,GAAgB,WAAAC,GAAW,SAAAjD,CAAQ,EAAEkD,GAAgB,CAAC,WAAAvD,GAAW,eAAe,YAAY,IAAImC,EAAW,QAAA5B,EAAQ,kBAAAL,EAAiB,CAAC,EAAQsD,GAAiB3B,GAAuBD,EAAMvB,CAAQ,EAA2WoD,GAAkBC,EAAGzD,GAAkB,GAApX,CAAa0C,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAwBA,GAAwBA,GAAwBA,GAAwBA,EAAS,CAAuE,EAAE,OAAoBzB,EAAKyC,EAAY,CAAC,GAAGf,GAAUR,EAAgB,SAAsBlB,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBU,EAAKE,EAAO,IAAI,CAAC,GAAG0B,EAAU,GAAGI,EAAgB,UAAUQ,EAAGD,GAAkB,gBAAgBd,EAAUK,CAAU,EAAE,mBAAmB,WAAW,iBAAiBQ,GAAiB,SAAS,YAAY,IAAIrB,EAAW,MAAM,CAAC,gBAAgB,+EAA+E,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,GAAGO,CAAK,EAAE,SAAS,CAAC,UAAU,CAAC,gBAAgB,sEAAsE,CAAC,EAAE,GAAGvC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,QAAQ,CAAC,EAAE4C,GAAYI,CAAc,EAAE,SAAsBjC,EAAK0C,GAAyB,CAAC,QAAQ,CAAC,sEAAuFhC,EAAM,UAAa,wEAAyFA,EAAM,SAAY,EAAE,SAAsBV,EAAK2C,EAAS,CAAC,sBAAsB,GAAK,SAAShB,EAAU,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiBW,GAAiB,SAAS,YAAY,wBAAwB,CAAC,EAAE,+BAA+B,WAAW,8BAA8B,KAAK,+BAA+B,GAAG,8BAA8B,GAAG,8BAA8B,GAAG,8BAA8B,GAAG,+BAA+B,GAAG,+BAA+B,GAAG,8BAA8B,IAAI,8BAA8B,EAAE,8BAA8B,MAAM,6BAA6B,EAAE,SAAS,CAAC,UAAU,CAAC,qBAAqB,uEAAuE,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGrD,GAAqB,CAAC,UAAU,CAAC,wBAAwB,CAAC,EAAE,+BAA+B,WAAW,8BAA8B,KAAK,+BAA+B,GAAG,8BAA8B,GAAG,8BAA8B,GAAG,8BAA8B,GAAG,+BAA+B,GAAG,+BAA+B,GAAG,8BAA8B,IAAI,8BAA8B,EAAE,+BAA+B,MAAM,6BAA6B,CAAC,CAAC,EAAE4C,GAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQW,GAAI,CAAC,kFAAkF,8EAA8E,qQAAqQ,sLAAsL,2WAA2W,uGAAuG,iEAAiE,GAAeA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAiBA,GAAI,GAAiBA,GAAI,GAAiBA,GAAI,GAAiBA,EAAG,EAWzuQC,GAAgBC,GAAQlC,GAAUgC,GAAI,cAAc,EAASG,EAAQF,GAAgBA,GAAgB,YAAY,cAAcA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAG,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,WAAW,QAAQ,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,qCAA8B,MAAM,iBAAiB,KAAKA,EAAY,QAAQ,CAAC,CAAC,EAAEC,GAASL,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,CAAC,CAAC,EAAE,GAAGM,EAAoCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAsCC,EAAK,EAAE,GAAGD,EAAsCC,EAAK,EAAE,GAAGD,EAAsCC,EAAK,EAAE,GAAGD,EAAsCC,EAAK,EAAE,GAAoBA,GAAQ,UAAaC,GAA6CD,GAAQ,SAAY,EAAE,CAAC,EAAE,GAAoBA,GAAQ,UAAaC,GAA6CD,GAAQ,SAAY,EAAE,CAAC,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECX/hF,IAAME,GAAgBC,EAASC,CAAU,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,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,EAAmB,EAAQC,EAAWL,GAAOE,EAAO,WAAiBI,EAAmBC,GAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,GAAoB,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,GAAW,SAASJ,EAAMK,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,GAAGC,CAAS,EAAEjB,GAASI,CAAK,EAAO,CAAC,YAAAc,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,GAAU,gBAAAC,EAAgB,WAAAC,GAAW,SAAAnB,CAAQ,EAAEoB,GAAgB,CAAC,eAAe,YAAY,QAAAV,EAAQ,kBAAAW,EAAiB,CAAC,EAAQC,EAAiBvB,GAAuBD,EAAME,CAAQ,EAAQuB,GAAWC,EAAO,IAAI,EAAQC,GAAsB,GAAM,EAAQC,GAAsB,CAAC,EAAQC,EAAkBC,GAAqB,EAAE,OAAoBtC,EAAKuC,EAAY,CAAC,GAAGpB,GAAUgB,GAAgB,SAAsBnC,EAAKC,GAAS,CAAC,QAAQS,EAAS,QAAQ,GAAM,SAAsBV,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBkD,EAAMtC,EAAO,IAAI,CAAC,GAAGmB,EAAU,GAAGI,EAAgB,UAAUgB,EAAGC,GAAkB,GAAGN,GAAsB,iBAAiBlB,EAAUK,CAAU,EAAE,mBAAmB,aAAa,iBAAiBS,EAAiB,SAAS,YAAY,IAAInB,GAAKoB,GAAK,MAAM,CAAC,GAAGhB,CAAK,EAAE,SAAS,CAAcjB,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,iBAAiB8B,EAAiB,SAAS,YAAY,SAAsBhC,EAAK2C,EAA0B,CAAC,OAAO,IAAI,MAAM,WAAWN,GAAmB,OAAO,OAAO,iBAAiB,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,EAAE,SAAsBrC,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAK4C,EAAW,CAAC,UAAuB5C,EAAWG,EAAS,CAAC,SAAsBqC,EAAM,IAAI,CAAC,SAAS,CAAcxC,EAAK,SAAS,CAAC,SAAS,QAAQ,CAAC,EAAE,8MAAyM,CAAC,CAAC,CAAC,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,SAAS,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB8B,EAAiB,SAAS,YAAY,SAAsBhC,EAAK2C,EAA0B,CAAC,OAAO,IAAI,MAAM,WAAWN,GAAmB,OAAO,OAAO,iBAAiB,GAAGA,GAAmB,GAAG,GAAG,EAAE,IAAI,EAAE,EAAE,SAAsBrC,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAK4C,EAAW,CAAC,UAAuB5C,EAAWG,EAAS,CAAC,SAAsBqC,EAAM,IAAI,CAAC,SAAS,CAAcxC,EAAK,SAAS,CAAC,SAAS,SAAS,CAAC,EAAE,8qCAA0pC,CAAC,CAAC,CAAC,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,SAAS,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,iBAAiB8B,EAAiB,SAAS,YAAY,SAAsBhC,EAAK2C,EAA0B,CAAC,OAAO,IAAI,MAAM,WAAWN,GAAmB,OAAO,OAAO,iBAAiB,GAAGA,GAAmB,GAAG,GAAG,EAAE,IAAI,EAAE,SAAsBrC,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAK4C,EAAW,CAAC,UAAuB5C,EAAWG,EAAS,CAAC,SAAsBqC,EAAM,IAAI,CAAC,SAAS,CAAcxC,EAAK,SAAS,CAAC,SAAS,KAAK,CAAC,EAAE,gNAAwNA,EAAK,SAAS,CAAC,SAAS,YAAY,CAAC,EAAE,yDAAyD,CAAC,CAAC,CAAC,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,SAAS,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB8B,EAAiB,SAAS,YAAY,SAAsBhC,EAAK2C,EAA0B,CAAC,OAAO,IAAI,MAAM,eAAeN,GAAmB,OAAO,OAAO,yBAAyB,GAAGA,GAAmB,GAAG,GAAG,EAAE,IAAI,EAAE,SAAsBrC,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAK4C,EAAW,CAAC,UAAuB5C,EAAWG,EAAS,CAAC,SAAsBqC,EAAM,IAAI,CAAC,SAAS,CAAcxC,EAAK,SAAS,CAAC,SAAS,IAAI,CAAC,EAAE,8YAA8Y,CAAC,CAAC,CAAC,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,SAAS,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,iBAAiB8B,EAAiB,SAAS,YAAY,SAAsBhC,EAAK2C,EAA0B,CAAC,OAAO,IAAI,MAAM,WAAWN,GAAmB,OAAO,OAAO,iBAAiB,GAAGA,GAAmB,GAAG,GAAG,EAAE,IAAI,EAAE,SAAsBrC,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAK4C,EAAW,CAAC,UAAuB5C,EAAWG,EAAS,CAAC,SAAsBqC,EAAM,IAAI,CAAC,SAAS,CAAcxC,EAAK,SAAS,CAAC,SAAS,IAAI,CAAC,EAAE,gDAAyC,CAAC,CAAC,CAAC,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,SAAS,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB8B,EAAiB,SAAS,YAAY,SAAsBhC,EAAK2C,EAA0B,CAAC,OAAO,IAAI,MAAM,eAAeN,GAAmB,OAAO,OAAO,yBAAyB,GAAGA,GAAmB,GAAG,GAAG,EAAE,IAAI,EAAE,SAAsBrC,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAK4C,EAAW,CAAC,UAAuB5C,EAAWG,EAAS,CAAC,SAAsBqC,EAAM,IAAI,CAAC,SAAS,CAAcxC,EAAK,SAAS,CAAC,SAAS,KAAK,CAAC,EAAE,wJAAwJ,CAAC,CAAC,CAAC,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,SAAS,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,iBAAiB8B,EAAiB,SAAS,YAAY,SAAsBhC,EAAK2C,EAA0B,CAAC,OAAO,IAAI,MAAM,WAAWN,GAAmB,OAAO,OAAO,iBAAiB,GAAGA,GAAmB,GAAG,GAAG,EAAE,IAAI,EAAE,SAAsBrC,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAK4C,EAAW,CAAC,UAAuB5C,EAAWG,EAAS,CAAC,SAAsBqC,EAAM,IAAI,CAAC,SAAS,CAAcxC,EAAK,SAAS,CAAC,SAAS,IAAI,CAAC,EAAE,gFAAgF,CAAC,CAAC,CAAC,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,SAAS,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB8B,EAAiB,SAAS,YAAY,SAAsBhC,EAAK2C,EAA0B,CAAC,OAAO,IAAI,MAAM,WAAWN,GAAmB,OAAO,OAAO,iBAAiB,GAAGA,GAAmB,GAAG,GAAG,EAAE,IAAI,EAAE,SAAsBrC,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAK4C,EAAW,CAAC,UAAuB5C,EAAWG,EAAS,CAAC,SAAsBqC,EAAM,IAAI,CAAC,SAAS,CAAcxC,EAAK,SAAS,CAAC,SAAS,IAAI,CAAC,EAAE,krCAAqpC,CAAC,CAAC,CAAC,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,SAAS,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,iBAAiB8B,EAAiB,SAAS,YAAY,SAAsBhC,EAAK2C,EAA0B,CAAC,OAAO,IAAI,MAAM,WAAWN,GAAmB,OAAO,OAAO,iBAAiB,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,SAAsBrC,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAK4C,EAAW,CAAC,UAAuB5C,EAAWG,EAAS,CAAC,SAAsBqC,EAAM,IAAI,CAAC,SAAS,CAAcxC,EAAK,SAAS,CAAC,SAAS,IAAI,CAAC,EAAE,8HAA8H,CAAC,CAAC,CAAC,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,SAAS,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB8B,EAAiB,SAAS,YAAY,SAAsBhC,EAAK2C,EAA0B,CAAC,OAAO,IAAI,MAAM,WAAWN,GAAmB,OAAO,OAAO,iBAAiB,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,SAAsBrC,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAK4C,EAAW,CAAC,UAAuB5C,EAAWG,EAAS,CAAC,SAAsBqC,EAAM,IAAI,CAAC,SAAS,CAAcxC,EAAK,SAAS,CAAC,SAAS,KAAK,CAAC,EAAE,moBAAmoB,CAAC,CAAC,CAAC,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,SAAS,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,iBAAiB8B,EAAiB,SAAS,YAAY,SAAsBhC,EAAK2C,EAA0B,CAAC,OAAO,IAAI,MAAM,WAAWN,GAAmB,OAAO,OAAO,iBAAiB,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,SAAsBrC,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAK4C,EAAW,CAAC,UAAuB5C,EAAWG,EAAS,CAAC,SAAsBqC,EAAM,IAAI,CAAC,SAAS,CAAcxC,EAAK,SAAS,CAAC,SAAS,KAAK,CAAC,EAAE,+FAA+F,CAAC,CAAC,CAAC,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,SAAS,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB8B,EAAiB,SAAS,YAAY,SAAsBhC,EAAK2C,EAA0B,CAAC,OAAO,IAAI,MAAM,WAAWN,GAAmB,OAAO,OAAO,iBAAiB,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,SAAsBrC,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAK4C,EAAW,CAAC,UAAuB5C,EAAWG,EAAS,CAAC,SAAsBqC,EAAM,IAAI,CAAC,SAAS,CAAcxC,EAAK,SAAS,CAAC,SAAS,KAAK,CAAC,EAAE,kYAAkY,CAAC,CAAC,CAAC,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,SAAS,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,iBAAiB8B,EAAiB,SAAS,YAAY,SAAsBhC,EAAK2C,EAA0B,CAAC,OAAO,IAAI,MAAM,WAAWN,GAAmB,OAAO,OAAO,iBAAiB,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,SAAsBrC,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAK4C,EAAW,CAAC,UAAuB5C,EAAWG,EAAS,CAAC,SAAsBqC,EAAM,IAAI,CAAC,SAAS,CAAcxC,EAAK,SAAS,CAAC,SAAS,KAAK,CAAC,EAAE,kHAA6G,CAAC,CAAC,CAAC,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,SAAS,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB8B,EAAiB,SAAS,YAAY,SAAsBhC,EAAK2C,EAA0B,CAAC,OAAO,IAAI,MAAM,WAAWN,GAAmB,OAAO,OAAO,iBAAiB,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,SAAsBrC,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAK4C,EAAW,CAAC,UAAuB5C,EAAWG,EAAS,CAAC,SAAsBqC,EAAM,IAAI,CAAC,SAAS,CAAcxC,EAAK,SAAS,CAAC,SAAS,KAAK,CAAC,EAAE,whBAA+f,CAAC,CAAC,CAAC,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,SAAS,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,iBAAiB8B,EAAiB,SAAS,YAAY,SAAsBhC,EAAK2C,EAA0B,CAAC,OAAO,IAAI,MAAM,WAAWN,GAAmB,OAAO,OAAO,iBAAiB,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,SAAsBrC,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAK4C,EAAW,CAAC,UAAuB5C,EAAWG,EAAS,CAAC,SAAsBqC,EAAM,IAAI,CAAC,SAAS,CAAcxC,EAAK,SAAS,CAAC,SAAS,IAAI,CAAC,EAAE,sDAAsD,CAAC,CAAC,CAAC,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,SAAS,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB8B,EAAiB,SAAS,YAAY,SAAsBhC,EAAK2C,EAA0B,CAAC,OAAO,IAAI,MAAM,WAAWN,GAAmB,OAAO,OAAO,iBAAiB,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,SAAsBrC,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAK4C,EAAW,CAAC,UAAuB5C,EAAWG,EAAS,CAAC,SAAsBqC,EAAM,IAAI,CAAC,SAAS,CAAcxC,EAAK,SAAS,CAAC,SAAS,IAAI,CAAC,EAAE,qQAA2P,CAAC,CAAC,CAAC,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,SAAS,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,iBAAiB8B,EAAiB,SAAS,YAAY,SAAsBhC,EAAK2C,EAA0B,CAAC,OAAO,IAAI,MAAM,WAAWN,GAAmB,OAAO,OAAO,iBAAiB,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,SAAsBrC,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAK4C,EAAW,CAAC,UAAuB5C,EAAWG,EAAS,CAAC,SAAsBqC,EAAM,IAAI,CAAC,SAAS,CAAcxC,EAAK,SAAS,CAAC,SAAS,IAAI,CAAC,EAAE,kFAAkF,CAAC,CAAC,CAAC,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,SAAS,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB8B,EAAiB,SAAS,YAAY,SAAsBhC,EAAK2C,EAA0B,CAAC,OAAO,IAAI,MAAM,WAAWN,GAAmB,OAAO,OAAO,iBAAiB,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,SAAsBrC,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAK4C,EAAW,CAAC,UAAuB5C,EAAWG,EAAS,CAAC,SAAsBqC,EAAM,IAAI,CAAC,SAAS,CAAcxC,EAAK,SAAS,CAAC,SAAS,KAAK,CAAC,EAAE,wBAAqCA,EAAK6C,EAAK,CAAC,KAAK,sEAAsE,OAAO,YAAY,aAAa,GAAK,aAAa,GAAM,SAAsB7C,EAAK,IAAI,CAAC,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,0mBAA0mB,CAAC,CAAC,CAAC,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,SAAS,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,cAAc,iBAAiB8B,EAAiB,SAAS,YAAY,SAAsBhC,EAAK2C,EAA0B,CAAC,OAAO,IAAI,MAAM,WAAWN,GAAmB,OAAO,OAAO,iBAAiB,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,SAAsBrC,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAK4C,EAAW,CAAC,UAAuB5C,EAAWG,EAAS,CAAC,SAAsBqC,EAAM,IAAI,CAAC,SAAS,CAAcxC,EAAK,SAAS,CAAC,SAAS,IAAI,CAAC,EAAE,wGAAiG,CAAC,CAAC,CAAC,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,SAAS,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB8B,EAAiB,SAAS,YAAY,SAAsBhC,EAAK2C,EAA0B,CAAC,OAAO,IAAI,MAAM,WAAWN,GAAmB,OAAO,OAAO,iBAAiB,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,SAAsBrC,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAK4C,EAAW,CAAC,UAAuB5C,EAAWG,EAAS,CAAC,SAAsBqC,EAAM,IAAI,CAAC,SAAS,CAAcxC,EAAK,SAAS,CAAC,SAAS,KAAK,CAAC,EAAE,uBAAgB,CAAC,CAAC,CAAC,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,SAAS,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQ8C,GAAI,CAAC,kFAAkF,kFAAkF,wQAAwQ,gQAAgQ,m1BAAm1B,kQAAkQ,ofAAof,gTAAgT,qbAAqb,4HAA4H,4gHAA4gH,EAQt58BC,GAAgBC,GAAQrC,GAAUmC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,OAAOA,GAAgB,aAAa,CAAC,OAAO,KAAK,MAAM,GAAG,EAAEG,GAASH,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,EAAE,GAAGI,EAAe,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECRvQ,IAAMC,GAAiB,CAAC,UAAU,IAAIC,GAAU,IAAI,OAAO,4BAAkB,CAAC,CAAC,EAAiB,SAARC,GAAmCC,EAAIC,EAAO,CAAC,KAAMA,GAAO,CAAC,IAAMC,EAAOL,GAAiBI,EAAO,EAAE,EAAE,GAAGC,EAAO,CAAC,IAAMC,EAAMD,EAAO,KAAK,EAAEF,CAAG,EAAE,GAAGG,EAAM,OAAOA,CAAM,CAACF,EAAOA,EAAO,QAAS,CAAC,CAAC,SAASG,GAAQH,EAAO,CAAC,IAAMI,EAAS,CAAC,EAAE,KAAMJ,GAAO,CAAC,IAAMC,EAAOL,GAAiBI,EAAO,EAAE,EAAE,GAAGC,EAAO,CAAC,IAAMI,EAAQJ,EAAO,QAAQ,EAAKI,GAAQD,EAAS,KAAKC,CAAO,CAAE,CAACL,EAAOA,EAAO,QAAS,CAAC,GAAGI,EAAS,OAAO,EAAE,OAAO,QAAQ,IAAIA,CAAQ,CAAE,CAAQ,SAASE,GAA0BN,EAAO,CAAC,IAAMO,EAAeJ,GAAQH,CAAM,EAAE,GAAGO,EAAe,MAAMA,CAAe,CCAy6D,IAAMC,GAAYC,GAAOC,EAAK,EAAQC,GAAkCC,GAA0BC,CAAQ,EAAQC,GAAkBC,EAASC,EAAY,EAAQC,GAAmCL,GAA0BM,EAAO,GAAG,EAAQC,GAAgBJ,EAASK,EAAU,EAAQC,GAAUN,EAASO,EAAI,EAAQC,GAAWR,EAASS,EAAK,EAAQC,GAAWV,EAASW,EAAK,EAAQC,GAAiBZ,EAASa,EAAW,EAAQC,GAAgBpB,GAAOqB,CAAS,EAAQC,GAAehB,EAASiB,EAAS,EAAQC,GAAY,CAAC,UAAU,sBAAsB,UAAU,6CAA6C,UAAU,oBAAoB,EAAoD,IAAMC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,iBAAiB,EAAQC,EAAkBC,GAAW,OAAOA,GAAQ,UAAUA,IAAQ,MAAM,OAAOA,EAAM,KAAM,SAAiBA,EAAc,OAAOA,GAAQ,SAAS,CAAC,IAAIA,CAAK,EAAE,OAAkBC,GAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,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,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAgB,CAACP,EAAMQ,IAAe,CAAC,OAAOR,EAAM,CAAC,IAAI,YAAY,MAAM,YAAY,IAAI,YAAY,MAAM,YAAY,IAAI,YAAY,MAAM,YAAY,IAAI,YAAY,MAAM,YAAY,IAAI,YAAY,MAAM,YAAY,IAAI,YAAY,MAAM,YAAY,QAAQ,MAAM,WAAY,CAAC,EAAQS,EAAU,CAAC,CAAC,MAAAC,EAAM,SAAAC,EAAS,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAKC,GAAaJ,CAAK,EAAE,OAAOE,EAASC,CAAI,CAAE,EAAQE,GAAMf,GAAW,MAAM,QAAQA,CAAK,EAASA,EAAM,OAAO,EAA4BA,GAAQ,MAAMA,IAAQ,GAAWgB,GAAO,CAACC,EAAEC,IAAY,OAAOD,GAAI,UAAU,OAAOC,GAAI,SAASD,EAAE,YAAY,IAAIC,EAAE,YAAY,EAAED,IAAIC,EAAUC,GAAa,CAACnB,EAAMoB,EAAQ,CAAC,EAAEZ,IAAe,CAAC,GAAG,OAAOR,GAAQ,SAAS,MAAM,GAAG,IAAMqB,EAAK,IAAI,KAAKrB,CAAK,EAAE,GAAG,MAAMqB,EAAK,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAMC,EAAQF,EAAQ,QAAQA,EAAQ,QAAQ,OAAaG,EAAY,CAAC,UAAUD,IAAU,OAAOF,EAAQ,UAAU,OAAU,UAAUE,IAAU,OAAO,OAAU,QAAQ,SAAS,KAAK,EAAQE,EAAe,QAAcC,EAAOL,EAAQ,QAAQZ,GAAcgB,EAC1uK,GAAG,CAAC,OAAOH,EAAK,eAAeI,EAAOF,CAAW,CAAE,MAAM,CAAC,OAAOF,EAAK,eAAeG,EAAeD,CAAW,CAAE,CAAC,EAAQG,GAAiB,CAAC1B,EAAMQ,IAAe,CAAC,OAAOR,EAAM,CAAC,IAAI,YAAY,MAAM,MAAM,IAAI,YAAY,MAAM,OAAO,QAAQ,MAAM,KAAM,CAAC,EAAQ2B,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAiB,CAAC7B,EAAMQ,IAAe,CAAC,OAAOR,EAAM,CAAC,IAAI,YAAY,MAAM,YAAY,IAAI,YAAY,MAAM,YAAY,IAAI,YAAY,MAAM,YAAY,IAAI,YAAY,MAAM,YAAY,IAAI,YAAY,MAAM,YAAY,IAAI,YAAY,MAAM,YAAY,IAAI,YAAY,MAAM,YAAY,QAAQ,MAAM,WAAY,CAAC,EAAQ8B,GAAU,CAAC,CAAC,MAAA9B,CAAK,IAAoB+B,GAAoB,EAAqB,KAAyBC,EAAK,QAAQ,CAAC,wBAAwB,CAAC,OAAOhC,CAAK,EAAE,yBAAyB,EAAE,CAAC,EAAUiC,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,GAAW,SAASF,EAAMG,EAAI,CAAC,IAAMC,EAAYC,EAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsB,GAAM,EAAO,CAAC,aAAArC,EAAa,UAAAsC,CAAS,EAAEC,GAAc,EAAQC,EAAkBC,GAAqB,EAAQC,EAAqBC,GAAwB,EAAO,CAACC,CAAgB,EAAEtC,GAAa,CAAC,KAAK,CAAC,MAAM,YAAY,KAAKuC,GAAK,KAAK,YAAY,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,CAAC,EAAE,MAAMC,GAAoCJ,EAAqB,WAAW,CAAC,CAAC,EAAQK,EAAwBC,GAAK,CAAC,GAAG,CAACJ,EAAiB,MAAM,IAAIK,GAAc,mCAAmC,KAAK,UAAUP,CAAoB,CAAC,EAAE,EAAE,OAAOE,EAAiBI,CAAG,CAAE,EAAO,CAAC,MAAAE,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,GAAQ,UAAAC,EAAUP,EAAwB,WAAW,EAAE,UAAAQ,GAAUR,EAAwB,WAAW,GAAG,GAAG,UAAAS,EAAUT,EAAwB,WAAW,EAAE,UAAAU,EAAUV,EAAwB,WAAW,GAAG,GAAG,mBAAAW,GAAmB,mBAAAC,GAAmB,YAAAC,GAAY,UAAAC,EAAUd,EAAwB,WAAW,GAAG,GAAG,UAAAe,GAAUf,EAAwB,WAAW,GAAG,GAAG,mBAAAgB,GAAmB,mBAAAC,GAAmB,YAAAC,GAAY,UAAAC,GAAUnB,EAAwB,WAAW,GAAG,GAAG,mBAAAoB,GAAmB,mBAAAC,GAAmB,YAAAC,GAAY,UAAAC,GAAUvB,EAAwB,WAAW,GAAG,GAAG,mBAAAwB,GAAmB,mBAAAC,GAAmB,YAAAC,GAAY,mBAAAC,GAAmB,mBAAAC,GAAmB,YAAAC,GAAY,UAAAC,GAAU9B,EAAwB,WAAW,EAAE,mBAAA+B,GAAmB,mBAAAC,GAAmB,YAAAC,GAAY,mBAAAC,GAAmB,mBAAAC,GAAmB,YAAAC,GAAY,mBAAAC,GAAmB,mBAAAC,GAAmB,YAAAC,GAAY,UAAAC,GAAUxC,EAAwB,WAAW,EAAE,UAAAyC,GAAUzC,EAAwB,WAAW,GAAG,GAAG,UAAA0C,GAAU1C,EAAwB,WAAW,GAAG,GAAK,UAAA2C,GAAU3C,EAAwB,WAAW,GAAG,GAAG,UAAA4C,GAAU5C,EAAwB,WAAW,EAAE,UAAA6C,GAAU7C,EAAwB,WAAW,GAAG,GAAG,UAAA8C,GAAU9C,EAAwB,WAAW,GAAG,GAAG,mBAAA+C,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,YAAAC,GAAY,GAAGC,EAAS,EAAE1E,GAASI,CAAK,EAAQuE,GAAU,IAAI,CAAC,IAAMC,EAASA,GAAiB1D,EAAiB5C,CAAY,EAAE,GAAGsG,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,EAAG,CAAC,EAAE,CAAC3D,EAAiB5C,CAAY,CAAC,EAAQwG,GAAmB,IAAI,CAAC,IAAMF,EAASA,GAAiB1D,EAAiB5C,CAAY,EAAE,SAAS,MAAMsG,EAAS,OAAO,GAAMA,EAAS,UAAU,SAAS,cAAc,uBAAuB,GAAG,aAAa,UAAUA,EAAS,QAAQ,CAAG,EAAE,CAAC1D,EAAiB5C,CAAY,CAAC,EAAE,GAAK,CAACyG,EAAYC,EAAmB,EAAEC,GAA8BtD,GAAQuD,GAAY,EAAK,EAAQC,GAAe,OAA2VC,GAAkBC,EAAG1H,GAAkB,GAA5V,CAAa8D,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAwBA,GAAwBA,GAAwBA,EAAS,CAAuE,EAAQ6D,GAAUC,GAAkB,WAAW,EAAQC,GAAW/E,EAAO,IAAI,EAAQgF,GAAWF,GAAkB,WAAW,EAAQG,GAAWjF,EAAO,IAAI,EAAQkF,GAAQ9G,GAAMuD,EAAS,EAAQwD,GAAS/G,GAAM2D,EAAS,EAAQqD,GAAShH,GAAM+D,EAAS,EAAQkD,GAAShH,GAAOqE,GAAU,WAAW,EAAQ4C,GAASjH,GAAOqE,GAAU,WAAW,EAAQ6C,GAASlH,GAAOqE,GAAU,WAAW,EAAQ8C,GAAiBC,GAAc,EAAQC,GAAYlH,GAAa4E,GAAU,CAAC,UAAU,SAAS,OAAO,EAAE,EAAEoC,EAAgB,EAAQG,GAAWb,GAAkB,WAAW,EAAQc,GAAW5F,EAAO,IAAI,EAAQ6F,GAASzH,GAAMmF,EAAS,EAAQuC,GAAS1H,GAAMqF,EAAS,EAAQsC,GAAS3H,GAAMsF,EAAS,EAAQsC,GAAWlB,GAAkB,WAAW,EAAQmB,GAAWjG,EAAO,IAAI,EAAEkG,GAA0BrI,CAAY,EAAE,IAAMsI,GAAOC,GAAU,EAAE,OAAAC,GAAiB,CAAC,CAAC,EAAsBhH,EAAKiH,GAA0B,SAAS,CAAC,MAAM,CAAC,iBAAiB,YAAY,kBAAAnJ,EAAiB,EAAE,SAAsBoJ,EAAMC,EAAY,CAAC,GAAGvF,GAAUf,EAAgB,SAAS,CAAcb,EAAKF,GAAU,CAAC,MAAM,6FAA6F,CAAC,EAAeoH,EAAME,EAAO,IAAI,CAAC,GAAGxC,GAAU,UAAUW,EAAGD,GAAkB,iBAAiB3D,CAAS,EAAE,IAAIf,EAAW,MAAM,CAAC,GAAGc,CAAK,EAAE,SAAS,CAAcwF,EAAM,SAAS,CAAC,UAAU,iBAAiB,mBAAmB,cAAc,GAAG1B,GAAU,IAAIE,GAAK,SAAS,CAAc1F,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,iBAAiB,CAAC,EAAeA,EAAKqH,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQqC,GAA2BtG,GAAmB,GAAG,GAAG,EAAE,EAAE,CAAC,EAAE,MAAMA,GAAmB,OAAO,QAAQ,GAAGjD,EAAkB+D,CAAS,EAAM,UAAU,SAAS,UAAU,KAAM,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAMd,GAAmB,OAAO,QAAQ,GAAGjD,EAAkB+D,CAAS,EAAM,UAAU,SAAS,UAAU,KAAM,CAAC,CAAC,EAAE,SAAsB9B,EAAKuH,GAAY,CAAC,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,OAAO,CAAC,QAAQ,GAAG,OAAO,EAAE,QAAQ,GAAG,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,2BAA2B,WAAW,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQD,GAA2BtG,GAAmB,GAAG,GAAG,EAAE,EAAE,IAAI,EAAE,MAAMA,GAAmB,OAAO,QAAQ,GAAGjD,EAAkB+D,CAAS,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,aAAa,MAAM,CAAC,qBAAqB,IAAI,CAAC,CAAC,CAAC,CAAC,EAAe9B,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAsBkH,EAAMM,GAAmC,CAAC,QAAQtJ,GAAU,UAAU,gBAAgB,wBAAwB,SAAS,mBAAmB,MAAM,QAAQC,GAAW,UAAU,GAAK,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAc6B,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,SAAsBA,EAAKyH,GAAkC,CAAC,sBAAsB,GAAK,QAAQpJ,GAAW,SAAsB2B,EAAW0H,EAAS,CAAC,SAAsB1H,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,wBAAwB,SAAS,mBAAmB,aAAa,MAAM,CAAC,OAAO,EAAE,QAAQ1B,GAAW,UAAU,GAAK,MAAM,CAAC,qBAAqB,IAAI,EAAE,KAAKyD,GAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe/B,EAAKqH,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGjE,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,IAAI,EAAE,EAAE,EAAE,GAAG,EAAE,UAAU,CAAC,EAAE,MAAS,CAAC,EAAE,SAAsBhB,EAAK2H,EAA0B,CAAC,OAAO,GAAG,GAAG3G,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,IAAI,EAAE,EAAE,EAAE,IAAI,SAAsBhB,EAAK4H,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsB5H,EAAK6H,GAAa,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQtJ,GAAgByD,EAAUxD,CAAY,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewB,EAAK2H,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAQ,EAAE,EAAE,SAAsB3H,EAAK4H,EAAU,CAAC,UAAU,0BAA0B,aAAa,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB5H,EAAKqH,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU,YAAY,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBjF,EAAK8H,GAAW,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU,YAAY,SAAS,YAAY,UAAU,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeZ,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,GAAGvB,GAAW,IAAIC,GAAK,SAAS,CAAc5F,EAAK+H,EAAS,CAAC,sBAAsB,GAAK,SAAsB/H,EAAW0H,EAAS,CAAC,SAAsB1H,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,qBAAqB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,oFAAoF,MAAM,CAAC,OAAO,EAAE,KAAKiC,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeiF,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,mBAAmB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAclH,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,kBAAkB,SAAsBA,EAAKgI,EAAmB,CAAC,SAAsBhI,EAAKvB,EAAU,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,YAAY,KAAKwJ,EAAO,KAAK,YAAY,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,eAAe,MAAM5F,CAAS,EAAE,KAAK,iBAAiB,CAAC,EAAE,SAAS,CAAC6F,EAAWC,EAAeC,IAAwBpI,EAAKqI,EAAU,CAAC,SAASH,GAAY,IAAI,CAAC,CAAC,GAAG9F,EAAY,UAAUD,EAAmB,UAAUD,CAAkB,EAAEoG,KAASnG,IAAqB,GAAuBnC,EAAKmH,EAAY,CAAC,GAAG,aAAa/E,CAAW,GAAG,SAAsBpC,EAAKuI,EAAqB,SAAS,CAAC,MAAM,CAAC,UAAUpG,CAAkB,EAAE,SAAsBnC,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKqH,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQqC,GAA2BtG,GAAmB,GAAG,GAAG,EAAE,IAAI,GAAG,MAAM,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,MAAM,OAAO,GAAGjD,EAAkBmE,CAAkB,CAAC,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,OAAO,GAAGnE,EAAkBmE,CAAkB,CAAC,CAAC,CAAC,EAAE,SAAsBlC,EAAKwI,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQlB,GAA2BtG,GAAmB,GAAG,GAAG,EAAE,IAAI,GAAG,MAAM,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,MAAM,OAAO,GAAGjD,EAAkBmE,CAAkB,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEE,CAAW,EAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEyD,IAAsB7F,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,kBAAkB,SAAsBA,EAAKgI,EAAmB,CAAC,SAAsBhI,EAAKvB,EAAU,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,YAAY,KAAKwJ,EAAO,KAAK,YAAY,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,eAAe,MAAM3F,EAAS,EAAE,KAAK,iBAAiB,CAAC,EAAE,SAAS,CAACmG,EAAYC,EAAgBC,IAAyB3I,EAAKqI,EAAU,CAAC,SAASI,GAAa,IAAI,CAAC,CAAC,GAAGhG,EAAY,UAAUD,EAAmB,UAAUD,CAAkB,EAAEqG,KAAUpG,IAAqB,GAAuBxC,EAAKmH,EAAY,CAAC,GAAG,aAAa1E,CAAW,GAAG,SAAsBzC,EAAKuI,EAAqB,SAAS,CAAC,MAAM,CAAC,UAAU/F,CAAkB,EAAE,SAAsBxC,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKqH,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQqC,GAA2BtG,GAAmB,GAAG,GAAG,EAAE,IAAI,GAAG,MAAM,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,MAAM,OAAO,GAAGjD,EAAkBwE,CAAkB,CAAC,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,OAAO,GAAGxE,EAAkBwE,CAAkB,CAAC,CAAC,CAAC,EAAE,SAAsBvC,EAAKwI,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQlB,GAA2BtG,GAAmB,GAAG,GAAG,EAAE,IAAI,GAAG,MAAM,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,MAAM,OAAO,GAAGjD,EAAkBwE,CAAkB,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEE,CAAW,EAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEqD,IAAuB9F,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,kBAAkB,SAAsBA,EAAKgI,EAAmB,CAAC,SAAsBhI,EAAKvB,EAAU,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,YAAY,KAAKwJ,EAAO,KAAK,YAAY,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,eAAe,MAAMvF,EAAS,EAAE,KAAK,iBAAiB,CAAC,EAAE,SAAS,CAACmG,EAAYC,EAAgBC,IAAyB/I,EAAKqI,EAAU,CAAC,SAASQ,GAAa,IAAI,CAAC,CAAC,GAAGhG,EAAY,UAAUD,EAAmB,UAAUD,CAAkB,EAAEqG,KAAUpG,IAAqB,GAAuB5C,EAAKmH,EAAY,CAAC,GAAG,aAAatE,CAAW,GAAG,SAAsB7C,EAAKuI,EAAqB,SAAS,CAAC,MAAM,CAAC,UAAU3F,CAAkB,EAAE,SAAsB5C,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKqH,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQqC,GAA2BtG,GAAmB,GAAG,GAAG,EAAE,IAAI,GAAG,MAAM,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,MAAM,OAAO,GAAGjD,EAAkB4E,CAAkB,CAAC,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,OAAO,GAAG5E,EAAkB4E,CAAkB,CAAC,CAAC,CAAC,EAAE,SAAsB3C,EAAKwI,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQlB,GAA2BtG,GAAmB,GAAG,GAAG,EAAE,IAAI,GAAG,MAAM,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,MAAM,OAAO,GAAGjD,EAAkB4E,CAAkB,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEE,CAAW,EAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEkD,IAAuB/F,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,kBAAkB,SAAsBA,EAAKgI,EAAmB,CAAC,SAAsBhI,EAAKvB,EAAU,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,YAAY,KAAKwJ,EAAO,KAAK,YAAY,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,eAAe,MAAMnF,EAAS,EAAE,KAAK,iBAAiB,CAAC,EAAE,SAAS,CAACmG,EAAYC,EAAgBC,IAAyBnJ,EAAKqI,EAAU,CAAC,SAASY,GAAa,IAAI,CAAC,CAAC,GAAGhG,EAAY,UAAUD,EAAmB,UAAUD,CAAkB,EAAEqG,KAAUpG,IAAqB,GAAuBhD,EAAKmH,EAAY,CAAC,GAAG,aAAalE,CAAW,GAAG,SAAsBjD,EAAKuI,EAAqB,SAAS,CAAC,MAAM,CAAC,UAAUvF,CAAkB,EAAE,SAAsBhD,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAKqH,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQqC,GAA2BtG,GAAmB,GAAG,GAAG,EAAE,IAAI,GAAG,MAAM,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,MAAM,OAAO,GAAGjD,EAAkBgF,CAAkB,CAAC,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,OAAO,GAAGhF,EAAkBgF,CAAkB,CAAC,CAAC,CAAC,EAAE,SAAsB/C,EAAKwI,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQlB,GAA2BtG,GAAmB,GAAG,GAAG,EAAE,IAAI,GAAG,MAAM,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,MAAM,OAAO,GAAGjD,EAAkBgF,CAAkB,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEE,CAAW,EAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeiE,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,SAAS,CAAclH,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,gBAAgB,SAAsBA,EAAKgI,EAAmB,CAAC,SAAsBhI,EAAKvB,EAAU,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,YAAY,KAAKwJ,EAAO,KAAK,YAAY,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,EAAE,MAAM,CAAC,UAAU,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,KAAK,eAAe,MAAM5F,CAAS,CAAC,EAAE,aAAa,WAAW,KAAK,cAAc,CAAC,EAAE,SAAS,CAACgH,EAAYC,EAAgBC,IAAyBvJ,EAAKqI,EAAU,CAAC,SAASgB,GAAa,IAAI,CAAC,CAAC,GAAGjG,EAAY,UAAUF,EAAmB,UAAUC,CAAkB,EAAEqG,KAAUtG,IAAqB,GAAGC,IAAqB,GAAuBnD,EAAKmH,EAAY,CAAC,GAAG,aAAa/D,CAAW,GAAG,SAAsBpD,EAAKuI,EAAqB,SAAS,CAAC,MAAM,CAAC,UAAUrF,CAAkB,EAAE,SAAsBlD,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAK+H,EAAS,CAAC,sBAAsB,GAAK,SAAsB/H,EAAW0H,EAAS,CAAC,SAAsB1H,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,sEAAsE,EAAE,SAAsBA,EAAKyJ,EAAK,CAAC,KAAK,CAAC,cAAc,CAAC,UAAUvG,CAAkB,EAAE,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAM,SAAsBlD,EAAKoH,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,aAAa,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,cAAc,MAAM,CAAC,OAAO,EAAE,KAAKjE,EAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEC,CAAW,EAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE4C,IAAuBhG,EAAK+H,EAAS,CAAC,sBAAsB,GAAK,SAAsB/H,EAAW0H,EAAS,CAAC,SAAsB1H,EAAK,IAAI,CAAC,MAAM,CAAC,sBAAsB,sEAAsE,EAAE,SAAS,IAAI,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAEiG,IAAuBjG,EAAK+H,EAAS,CAAC,sBAAsB,GAAK,SAAsB/H,EAAW0H,EAAS,CAAC,SAAsB1H,EAAK,IAAI,CAAC,MAAM,CAAC,sBAAsB,sEAAsE,EAAE,SAAS,IAAI,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAEkG,IAAuBlG,EAAK+H,EAAS,CAAC,sBAAsB,GAAK,SAAsB/H,EAAW0H,EAAS,CAAC,SAAsB1H,EAAK,IAAI,CAAC,MAAM,CAAC,sBAAsB,sEAAsE,EAAE,SAAS,KAAK,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAE6F,IAAsB7F,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,SAAsBA,EAAKgI,EAAmB,CAAC,SAAsBhI,EAAKvB,EAAU,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,YAAY,KAAKwJ,EAAO,KAAK,YAAY,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,EAAE,MAAM,CAAC,UAAU,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,KAAK,eAAe,MAAM3F,EAAS,CAAC,EAAE,aAAa,WAAW,KAAK,cAAc,CAAC,EAAE,SAAS,CAACoH,EAAYC,EAAgBC,IAAyB5J,EAAKqI,EAAU,CAAC,SAASqB,GAAa,IAAI,CAAC,CAAC,GAAGlG,EAAY,UAAUF,EAAmB,UAAUC,CAAkB,EAAEsG,KAAUvG,IAAqB,GAAGC,IAAqB,GAAuBvD,EAAKmH,EAAY,CAAC,GAAG,aAAa3D,CAAW,GAAG,SAAsBxD,EAAKuI,EAAqB,SAAS,CAAC,MAAM,CAAC,UAAUjF,CAAkB,EAAE,SAAsBtD,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAK+H,EAAS,CAAC,sBAAsB,GAAK,SAAsB/H,EAAW0H,EAAS,CAAC,SAAsB1H,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,sEAAsE,EAAE,SAAsBA,EAAKyJ,EAAK,CAAC,KAAK,CAAC,cAAc,CAAC,UAAUnG,CAAkB,EAAE,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAM,SAAsBtD,EAAKoH,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,aAAa,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,cAAc,MAAM,CAAC,OAAO,EAAE,KAAK7D,EAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEC,CAAW,EAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEyC,IAAuBjG,EAAK+H,EAAS,CAAC,sBAAsB,GAAK,SAAsB/H,EAAW0H,EAAS,CAAC,SAAsB1H,EAAK,IAAI,CAAC,MAAM,CAAC,sBAAsB,sEAAsE,EAAE,SAAS,IAAI,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAEgG,IAAuBhG,EAAK+H,EAAS,CAAC,sBAAsB,GAAK,SAAsB/H,EAAW0H,EAAS,CAAC,SAAsB1H,EAAK,IAAI,CAAC,MAAM,CAAC,sBAAsB,sEAAsE,EAAE,SAAS,KAAK,CAAC,CAAC,CAAC,EAAE,UAAU,eAAe,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAE8F,IAAuB9F,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,SAAsBA,EAAKgI,EAAmB,CAAC,SAAsBhI,EAAKvB,EAAU,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,YAAY,KAAKwJ,EAAO,KAAK,YAAY,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,eAAe,MAAMvF,EAAS,EAAE,KAAK,iBAAiB,CAAC,EAAE,SAAS,CAACoH,EAAYC,EAAgBC,IAAyBhK,EAAKqI,EAAU,CAAC,SAASyB,GAAa,IAAI,CAAC,CAAC,GAAGnG,EAAY,UAAUF,EAAmB,UAAUC,CAAkB,EAAEuG,KAAUxG,IAAqB,GAAGC,IAAqB,GAAuB1D,EAAKmH,EAAY,CAAC,GAAG,aAAaxD,CAAW,GAAG,SAAsB3D,EAAKuI,EAAqB,SAAS,CAAC,MAAM,CAAC,UAAU9E,CAAkB,EAAE,SAAsBzD,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAK+H,EAAS,CAAC,sBAAsB,GAAK,SAAsB/H,EAAW0H,EAAS,CAAC,SAAsB1H,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,sEAAsE,EAAE,SAAsBA,EAAKyJ,EAAK,CAAC,KAAK,CAAC,cAAc,CAAC,UAAUhG,CAAkB,EAAE,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAM,SAAsBzD,EAAKoH,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,aAAa,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,cAAc,MAAM,CAAC,OAAO,EAAE,KAAK1D,EAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEC,CAAW,EAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEsC,IAAuBjG,EAAK+H,EAAS,CAAC,sBAAsB,GAAK,SAAsB/H,EAAW0H,EAAS,CAAC,SAAsB1H,EAAK,IAAI,CAAC,MAAM,CAAC,sBAAsB,sEAAsE,EAAE,SAAS,KAAK,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAE+F,IAAuB/F,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,gBAAgB,SAAsBA,EAAKgI,EAAmB,CAAC,SAAsBhI,EAAKvB,EAAU,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,YAAY,KAAKwJ,EAAO,KAAK,YAAY,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,eAAe,MAAMnF,EAAS,EAAE,KAAK,iBAAiB,CAAC,EAAE,SAAS,CAACoH,EAAYC,EAAgBC,IAAyBpK,EAAKqI,EAAU,CAAC,SAAS6B,GAAa,IAAI,CAAC,CAAC,GAAGpG,EAAY,UAAUF,EAAmB,UAAUC,CAAkB,EAAEwG,KAAUzG,IAAqB,GAAGC,IAAqB,GAAuB7D,EAAKmH,EAAY,CAAC,GAAG,aAAarD,CAAW,GAAG,SAAsB9D,EAAKuI,EAAqB,SAAS,CAAC,MAAM,CAAC,UAAU3E,CAAkB,EAAE,SAAsB5D,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAK+H,EAAS,CAAC,sBAAsB,GAAK,SAAsB/H,EAAW0H,EAAS,CAAC,SAAsB1H,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,sEAAsE,EAAE,SAAsBA,EAAKyJ,EAAK,CAAC,KAAK,CAAC,cAAc,CAAC,UAAU7F,CAAkB,EAAE,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAM,SAAsB5D,EAAKoH,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,aAAa,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,cAAc,MAAM,CAAC,OAAO,EAAE,KAAKvD,EAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEC,CAAW,EAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe9D,EAAK+H,EAAS,CAAC,sBAAsB,GAAK,SAAsB/H,EAAW0H,EAAS,CAAC,SAAsB1H,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,MAAM,CAAC,OAAO,EAAE,KAAKqG,GAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAerG,EAAKsK,GAAyB,CAAC,QAAQ,CAAC,sEAAuFhK,EAAM,UAAa,wEAAyFA,EAAM,SAAY,EAAE,SAAsBN,EAAK+H,EAAS,CAAC,sBAAsB,GAAK,SAAS/D,GAAU,UAAU,iBAAiB,mBAAmB,UAAU,MAAM,CAAC,OAAO,EAAE,GAAGsC,GAAW,IAAIC,GAAK,wBAAwB,CAAC,EAAE,8BAA8B,WAAW,8BAA8B,KAAK,+BAA+B,GAAG,8BAA8B,GAAG,8BAA8B,GAAG,8BAA8B,GAAG,+BAA+B,GAAG,+BAA+B,GAAG,8BAA8B,IAAI,8BAA8B,EAAE,8BAA8B,MAAM,6BAA6B,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAEtC,IAAwBjE,EAAKqH,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGjE,GAAmB,GAAG,GAAG,EAAE,IAAI,GAAG,KAAK,EAAE,UAAU,CAAC,MAAM,OAAOA,GAAmB,OAAO,OAAO,kBAAkB,EAAE,MAAS,CAAC,EAAE,SAAsBhB,EAAK2H,EAA0B,CAAC,OAAO,KAAK,MAAM,OAAO3G,GAAmB,OAAO,OAAO,WAAW,GAAGA,GAAmB,GAAG,GAAG,EAAE,IAAI,GAAG,MAAM,SAAsBhB,EAAK4H,EAAU,CAAC,UAAU,yBAAyB,OAAO,YAAY,QAAQ,YAAY,SAAsB5H,EAAKuK,GAAK,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,SAAS,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE/D,IAAuBxG,EAAK2H,EAA0B,CAAC,SAAsB3H,EAAK4H,EAAU,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB5H,EAAKwK,GAAM,CAAC,OAAO,OAAO,KAAKtG,GAAU,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,SAAS,OAAO,MAAM,MAAM,EAAE,KAAKxE,GAAiByE,GAAU3F,CAAY,EAAE,IAAI0F,GAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEuC,IAAuBzG,EAAKqH,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGjE,GAAmB,GAAG,GAAG,EAAE,IAAI,GAAG,MAAM,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,WAAW,EAAE,MAAS,CAAC,EAAE,SAAsBhB,EAAK2H,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,GAAG3G,GAAmB,GAAG,GAAG,EAAE,IAAI,GAAG,OAAO,SAAsBhB,EAAK4H,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsB5H,EAAKyK,GAAM,CAAC,UAAUrG,GAAU,UAAU,uEAAuE,OAAO,OAAO,GAAG,YAAY,UAAU,GAAK,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEsC,IAAuB1G,EAAKsK,GAAyB,CAAC,QAAQ,CAAC,sEAAuFhK,EAAM,UAAa,wEAAyFA,EAAM,SAAY,EAAE,SAAsBN,EAAK+H,EAAS,CAAC,sBAAsB,GAAK,SAAS1D,GAAU,UAAU,gBAAgB,mBAAmB,YAAY,MAAM,CAAC,OAAO,EAAE,GAAGsC,GAAW,IAAIC,GAAK,wBAAwB,CAAC,EAAE,8BAA8B,WAAW,8BAA8B,KAAK,+BAA+B,GAAG,8BAA8B,GAAG,8BAA8B,GAAG,8BAA8B,GAAG,+BAA+B,GAAG,+BAA+B,GAAG,8BAA8B,IAAI,8BAA8B,EAAE,8BAA8B,MAAM,6BAA6B,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeM,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAclH,EAAKqH,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,SAASyF,GAAkB,KAAKlM,CAAY,GAAgBwB,EAAW0H,EAAS,CAAC,SAAsB1H,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,2BAAsB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAS0K,GAAkB,KAAKlM,CAAY,GAAgBwB,EAAW0H,EAAS,CAAC,SAAsB1H,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,2BAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK+H,EAAS,CAAC,sBAAsB,GAAK,SAAS2C,GAAkB,KAAKlM,CAAY,GAAgBwB,EAAW0H,EAAS,CAAC,SAAsB1H,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,2BAAsB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,uBAAuB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKgI,EAAmB,CAAC,SAAsBhI,EAAKvB,EAAU,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,YAAY,KAAK4C,GAAK,KAAK,YAAY,EAAE,MAAM,CAAC,KAAK,eAAe,MAAM,CAAC,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,EAAE,MAAM,CAAC,SAAS,MAAM,KAAK,iBAAiB,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,eAAe,MAAMU,EAAS,EAAE,KAAK,iBAAiB,CAAC,CAAC,EAAE,SAAS,CAAC4I,EAAYC,EAAgBC,IAAyB7K,EAAKqI,EAAU,CAAC,SAASsC,GAAa,IAAI,CAAC,CAAC,UAAUlG,EAAmB,GAAGE,EAAY,UAAUD,EAAmB,UAAUH,EAAmB,UAAUC,GAAmB,UAAUF,EAAkB,EAAEwG,MAAUxG,KAAqB,GAAGC,IAAqB,GAAGE,IAAqB,GAAuBzE,EAAKmH,EAAY,CAAC,GAAG,aAAaxC,CAAW,GAAG,SAAsB3E,EAAKuI,EAAqB,SAAS,CAAC,MAAM,CAAC,UAAU9D,CAAkB,EAAE,SAAsBzE,EAAK+K,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,KAAK,aAAa,cAAc,CAAC,UAAUtG,CAAkB,EAAE,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,cAAc,CAAC,UAAUA,CAAkB,EAAE,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,cAAc,CAAC,UAAUA,CAAkB,EAAE,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASuG,IAA4BhL,EAAKqH,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,YAAYjE,GAAmB,OAAO,OAAO,qBAAqB,GAAGA,GAAmB,GAAG,GAAG,EAAE,IAAI,GAAG,OAAO,GAAG,OAAO,EAAE,CAAC,EAAE,UAAU,CAAC,MAAM,OAAOA,GAAmB,OAAO,OAAO,mBAAmB,EAAE,MAAS,CAAC,EAAE,SAAsBhB,EAAK2H,EAA0B,CAAC,OAAO,IAAI,MAAM,YAAY3G,GAAmB,OAAO,OAAO,qBAAqB,GAAGA,GAAmB,GAAG,GAAG,EAAE,IAAI,GAAG,OAAO,GAAG,OAAO,EAAE,EAAE,SAAsBhB,EAAKiL,GAAgB,CAAC,kBAAkB,CAAC,WAAWrL,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,0BAA0B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsBK,EAAKqH,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU+F,GAAc,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,GAAc,CAAC,EAAE,QAAQ,WAAW,CAAC,EAAE,SAAsBhL,EAAKkL,GAAY,CAAC,UAAUnN,EAAkByG,EAAkB,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,WAAW,MAAM,CAAC,MAAM,MAAM,EAAE,UAAUwG,GAAc,CAAC,EAAE,UAAUnL,GAAiB6E,EAAmBlG,CAAY,EAAE,QAAQ,YAAY,UAAU+F,EAAmB,UAAUD,GAAmB,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEK,CAAW,EAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe3E,EAAKqH,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGjE,GAAmB,GAAG,GAAG,EAAE,OAAO,EAAE,UAAU,CAAC,EAAE,MAAS,CAAC,EAAE,SAAsBhB,EAAK2H,EAA0B,CAAC,OAAO,KAAK,MAAM3G,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,QAAQ,SAAsBhB,EAAK4H,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsB5H,EAAKqH,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBjF,EAAKmL,GAAU,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,EAAenL,EAAK,MAAM,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQoL,GAAI,CAAC,kFAAkF,kFAAkF,sVAAsV,8UAA8U,gSAAgS,kNAAkN,6dAA6d,4TAA4T,uVAAuV,+RAA+R,0PAA0P,wGAAwG,mKAAmK,+QAA+Q,uLAAuL,0RAA0R,oRAAoR,mRAAmR,ycAAyc,8dAA8d,oXAAoX,4RAA4R,kRAAkR,4OAA4O,mVAAmV,uPAAuP,yHAAyH,2HAA2H,0GAA0G,mSAAmS,qKAAqK,0QAA0Q,gJAAgJ,GAAeA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAiBA,GAAI,GAAiBA,GAAI,GAAiBA,GAAI,wtBAAwtB,2oCAA2oC,EAa538CC,GAAgBC,GAAQ/K,GAAU6K,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,cAAcA,GAAgB,aAAa,CAAC,OAAO,MAAM,MAAM,IAAI,EAAEG,GAASH,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGI,GAAkB,GAAGC,GAAgB,GAAGC,GAAU,GAAGC,GAAW,GAAGC,GAAW,GAAGC,GAAiB,GAAGC,GAAe,GAAGC,EAAoCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAsCC,EAAK,EAAE,GAAGD,EAAsCC,EAAK,EAAE,GAAGD,EAAsCC,EAAK,EAAE,GAAoBA,GAAQ,UAAaC,GAA6CD,GAAQ,SAAY,EAAE,CAAC,EAAE,GAAoBA,GAAQ,UAAaC,GAA6CD,GAAQ,SAAY,EAAE,CAAC,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,EAC7uF,IAAME,GAAqB,CAAC,QAAU,CAAC,QAAU,CAAC,KAAO,iBAAiB,KAAO,kBAAkB,MAAQ,CAAC,EAAE,YAAc,CAAC,sBAAwB,QAAQ,sBAAwB,IAAI,oCAAsC,4JAA0L,4BAA8B,OAAO,qBAAuB,OAAO,kBAAoB,OAAO,yBAA2B,QAAQ,qBAAuB,+NAAuQ,6BAA+B,OAAO,qBAAuB,OAAO,yBAA2B,OAAO,uBAAyB,EAAE,CAAC,EAAE,MAAQ,CAAC,KAAO,SAAS,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC",
  "names": ["Embed", "type", "url", "html", "style", "p", "EmbedUrl", "EmbedHtml", "Instructions", "addPropertyControls", "ControlType", "props", "getMinHeight", "emptyStateStyle", "centerTextStyle", "hasAutoHeight", "onCanvas", "useIsOnCanvas", "state", "setState", "ye", "ue", "isLastEffect", "load", "response", "isBlocked", "message", "error", "ErrorMessage", "LoadingIndicator", "iframeStyle", "getSandbox", "result", "hasSplineViewer", "hasComment", "EmbedHtmlWithScripts", "EmbedHtmlInsideIframe", "EmbedHtmlWithoutScripts", "ref", "pe", "iframeHeight", "setIframeHeight", "_ref_current", "iframeWindow", "handleMessage", "event", "data", "height", "window", "srcDoc", "currentStyle", "div", "executeScripts", "htmlStyle", "node", "script", "name", "value", "child", "containerStyles", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "bubbleContent", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "Dff3Vhuja", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "ComponentPresetsProvider", "RichText2", "css", "FramerLtOAUqctZ", "withCSS", "LtOAUqctZ_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "ChatBubbleFonts", "getFonts", "LtOAUqctZ_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", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "ComponentViewportProvider", "LtOAUqctZ_default", "Link", "css", "FramerBlu0UQk0d", "withCSS", "Blu0UQk0d_default", "addFonts", "ChatBubbleFonts", "valuesByLocaleId", "LazyValue", "getLocalizedValue", "key", "locale", "values", "value", "preload", "promises", "promise", "usePreloadLocalizedValues", "preloadPromise", "ImageWithFX", "withFX", "Image2", "RichTextWithOptimizedAppearEffect", "withOptimizedAppearEffect", "RichText2", "ArticleBadgeFonts", "getFonts", "YNmpEaOvj_default", "MotionDivWithOptimizedAppearEffect", "motion", "NavigationFonts", "MlINLuFIb_default", "ChatFonts", "Blu0UQk0d_default", "EmbedFonts", "Embed", "QuoteFonts", "kYAOgRDQR_default", "ArticleCardFonts", "ixkYFWvEm_default", "ContainerWithFX", "Container", "BigFooterFonts", "zIuqJRMh8_default", "breakpoints", "serializationHash", "variantClassNames", "toResponsiveImage", "value", "transition1", "animation", "animation1", "transition2", "animation2", "animation3", "convertFromEnum", "activeLocale", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "isSet", "equals", "a", "b", "toDateString", "options", "date", "display", "dateOptions", "fallbackLocale", "locale", "convertFromEnum1", "animation4", "transition3", "convertFromEnum2", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "g6N57Yr4H_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "JVuiQdxNI", "Kx0gEexBD", "IewDImXsO", "IQVfA80JE", "ZbhObglsrzVicSFfKV", "tFV5GtCc6zVicSFfKV", "idzVicSFfKV", "TsQeHcbqL", "ZEa_V9M_b", "ZbhObglsrHUynkH46j", "tFV5GtCc6HUynkH46j", "idHUynkH46j", "oALAirZ8I", "ZbhObglsrWGcauN7Nc", "tFV5GtCc6WGcauN7Nc", "idWGcauN7Nc", "zqGE08kvY", "ZbhObglsrUmCRpuHwf", "tFV5GtCc6UmCRpuHwf", "idUmCRpuHwf", "tFV5GtCc6LYePy0PLM", "vS7DuQnjlLYePy0PLM", "idLYePy0PLM", "t7Qdw3Hb8", "tFV5GtCc6tctoFonPj", "vS7DuQnjltctoFonPj", "idtctoFonPj", "tFV5GtCc6eZHmt8GX0", "vS7DuQnjleZHmt8GX0", "ideZHmt8GX0", "tFV5GtCc6TK9xNIlOo", "vS7DuQnjlTK9xNIlOo", "idTK9xNIlOo", "vNu0uoF69", "SfVcURf9f", "dSClFGWVR", "I90IVYE0Y", "zwrmUfgKk", "MHhESyIf1", "aSYO4AF4n", "Kx0gEexBDatNw1ptSR", "IQVfA80JEatNw1ptSR", "JVuiQdxNIatNw1ptSR", "G6drGBuP1atNw1ptSR", "IewDImXsOatNw1ptSR", "idatNw1ptSR", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "visible", "visible1", "visible2", "visible3", "visible4", "visible5", "activeLocaleCode", "useLocaleCode", "textContent", "elementId2", "ref3", "visible6", "visible7", "visible8", "elementId3", "ref4", "usePreloadLocalizedValues", "router", "useRouter", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "PropertyOverrides2", "getLoadingLazyAtYPosition", "ImageWithFX", "MotionDivWithOptimizedAppearEffect", "RichTextWithOptimizedAppearEffect", "x", "ComponentViewportProvider", "Container", "YNmpEaOvj_default", "MlINLuFIb_default", "RichText2", "ChildrenCanSuspend", "UBVPNp5pC_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "Image2", "collection1", "paginationInfo1", "loadMore1", "index1", "collection2", "paginationInfo2", "loadMore2", "index2", "collection3", "paginationInfo3", "loadMore3", "index3", "collection4", "paginationInfo4", "loadMore4", "index4", "Link", "collection5", "paginationInfo5", "loadMore5", "index5", "collection6", "paginationInfo6", "loadMore6", "index6", "collection7", "paginationInfo7", "loadMore7", "index7", "ComponentPresetsProvider", "Blu0UQk0d_default", "Embed", "kYAOgRDQR_default", "getLocalizedValue", "collection8", "paginationInfo8", "loadMore8", "index8", "ResolveLinks", "resolvedLinks", "ContainerWithFX", "ixkYFWvEm_default", "zIuqJRMh8_default", "css", "FramerlgTzqx72w", "withCSS", "lgTzqx72w_default", "addFonts", "ArticleBadgeFonts", "NavigationFonts", "ChatFonts", "EmbedFonts", "QuoteFonts", "ArticleCardFonts", "BigFooterFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "__FramerMetadata__"]
}
