{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/I5sfRw5SYYtt9LKDdKV3/scQKFhAwxbyaO5N3Xmpl/KeepParentScroll.js", "ssg:https://framerusercontent.com/modules/K1661o640BdoenL4IQ1j/nAFm0qOnFg9fyTJNC9gW/S4qFkXAWd.js", "ssg:https://framerusercontent.com/modules/gknzhnLhPQx9anahXmXm/oTJ2LL7FAPlRGDwYcwOn/pmMF2sp0b.js", "ssg:https://framerusercontent.com/modules/OONr142lt2DtTYozFUOg/ufCzBdo6tfkhOx3xLarM/dFPHYd7e0.js", "ssg:https://framerusercontent.com/modules/bEtWt82KteGLTy4NoB4j/zp2OJwe6UvxA5gwQgRaq/MCRovfEZ4.js", "ssg:https://framerusercontent.com/modules/CQ29DunljkzuH33WJphO/AN7TnTReERY5QPUeNKFJ/rxua1zz9C.js", "ssg:https://framerusercontent.com/modules/FkkZeWBaHn4Nd8pqMqtc/CCqgCyoSoA9fR7ZswN6g/sxB0QWXsq.js", "ssg:https://framerusercontent.com/modules/NR7qxZKfYw3jOUwvk5Yk/UITDRXA59tXDDi6ctx1F/WddZAv9QK.js", "ssg:https://framerusercontent.com/modules/3AJXSvO52BwKyY0EpjPJ/5W0X6SvUHozKdoaETcrV/giYLUM_mj.js"],
  "sourcesContent": ["// The task of this component is to keep scroll position on navigation panel\n// so it doesn't reset on page nagivation\nimport{jsx as _jsx}from\"react/jsx-runtime\";import React from\"react\";const KEY=\"parent-scroll\";export default function KeepParentScroll(props){const containerRef=React.useRef(null);React.useEffect(()=>{let scrollableParent=findScrollableParent(containerRef.current);// Restore scroll position on mount\nif(scrollableParent){try{const scrollData=sessionStorage.getItem(KEY);if(scrollData){const{scrollTop,scrollLeft}=JSON.parse(scrollData);scrollableParent.scrollTop=scrollTop;scrollableParent.scrollLeft=scrollLeft;}}catch(e){console.error(e);}}else{return;}const onScroll=()=>{const scrollData={scrollTop:scrollableParent.scrollTop,scrollLeft:scrollableParent.scrollLeft};sessionStorage.setItem(KEY,JSON.stringify(scrollData));};scrollableParent.addEventListener(\"scroll\",onScroll);// Save scroll position on unmount\nreturn()=>{scrollableParent.removeEventListener(\"scroll\",onScroll);};},[]);return /*#__PURE__*/_jsx(\"div\",{ref:containerRef});}// Function to find the first scrollable parent of an element\nfunction findScrollableParent(element){if(!element)return null;let parent=element.parentElement;while(parent){const style=window.getComputedStyle(parent);const overflowY=style.overflowY;const isScrollable=parent.scrollHeight>parent.clientHeight&&(overflowY===\"auto\"||overflowY===\"scroll\");if(isScrollable){return parent;}parent=parent.parentElement;}return null;}// Generate a unique key for the element to save its scroll position\nfunction getElementKey(element){if(element.id){return`scroll-${element.id}`;}else if(element.className){return`scroll-${element.className}`;}else{return`scroll-${generateElementPath(element)}`;}}// Function to generate a unique path for an element without id or class\nfunction generateElementPath(element){let path=[];let node=element;while(node&&node!==document.body){let index=Array.prototype.indexOf.call(node.parentNode.children,node);path.unshift(index);node=node.parentNode;}return path.join(\"-\");}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"KeepParentScroll\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./KeepParentScroll.map", "import{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-1NaDD .framer-styles-preset-13b12oi:not(.rich-text-wrapper), .framer-1NaDD .framer-styles-preset-13b12oi.rich-text-wrapper a { --framer-link-current-text-color: var(--token-6a1d1d04-5fca-47b3-99fc-33ae057dc3a6, #4f68e8); --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: var(--token-6a1d1d04-5fca-47b3-99fc-33ae057dc3a6, #4f68e8); --framer-link-hover-text-decoration: underline; --framer-link-text-color: var(--token-d18decf5-3acf-48eb-9385-75b6bd79f467, #212121); --framer-link-text-decoration: none; }\"];export const className=\"framer-1NaDD\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (acd6bc0)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ChildrenCanSuspend,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,PathVariablesContext,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useQueryData,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import DocSearch from\"https://framerusercontent.com/modules/jRaNAvWVdxuyk8mZL2mH/lgC6pnd97ElMupS6yClU/DocSearch.js\";import KeepParentScroll from\"https://framerusercontent.com/modules/I5sfRw5SYYtt9LKDdKV3/scQKFhAwxbyaO5N3Xmpl/KeepParentScroll.js\";import Docs from\"https://framerusercontent.com/modules/vZMTuNrHaCCPmwO5JADT/JZFXDF6RSL1tlsUtdwMC/cOzahs8Xb.js\";import*as sharedStyle4 from\"https://framerusercontent.com/modules/jWY9qYsPRoDDTZUv0NZi/YkoS8dgBuqfgIZjgjj2B/cCvJHJkAd.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/tUR8ytIZs3FZw06gH2fG/bAurrOZlP0QRj1qeUSoK/m8Zl13jXE.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/q5oKaVJBkA3iYqBc8M2r/PX8SjyiBBlG8ku8QLBsx/pIdldwauf.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/fgaICSs7jgpAQgyIng7w/oFZqLhX8iZzJ3Op51lBB/RSNDaxn8s.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/K1661o640BdoenL4IQ1j/nAFm0qOnFg9fyTJNC9gW/S4qFkXAWd.js\";const PhosphorFonts=getFonts(Phosphor);const DocSearchFonts=getFonts(DocSearch);const KeepParentScrollFonts=getFonts(KeepParentScroll);const cycleOrder=[\"GXddFzNE4\",\"DbyenBGEZ\",\"CnohsNoCL\"];const serializationHash=\"framer-EsFAW\";const variantClassNames={CnohsNoCL:\"framer-v-1ya46mn\",DbyenBGEZ:\"framer-v-181cfsn\",GXddFzNE4:\"framer-v-1hi5ykh\"};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 transition2={duration:0,type:\"tween\"};const query=prequery=>prequery({from:{alias:\"i1B71zEMN\",data:Docs,type:\"Collection\"},select:[{collection:\"i1B71zEMN\",name:\"qLtJDKD7H\",type:\"Identifier\"},{collection:\"i1B71zEMN\",name:\"VrtX779jW\",type:\"Identifier\"},{collection:\"i1B71zEMN\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"i1B71zEMN\",name:\"QtOGQCPo4\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"SKVm3nQvB\"},type:\"BinaryOperation\"}});const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const query1=prequery=>prequery({from:{alias:\"STPK2Hfua\",data:Docs,type:\"Collection\"},select:[{collection:\"STPK2Hfua\",name:\"qLtJDKD7H\",type:\"Identifier\"},{collection:\"STPK2Hfua\",name:\"VrtX779jW\",type:\"Identifier\"},{collection:\"STPK2Hfua\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"STPK2Hfua\",name:\"QtOGQCPo4\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"k9SgFd9HR\"},type:\"BinaryOperation\"}});const query2=prequery=>prequery({from:{alias:\"E1_3Sz2T9\",data:Docs,type:\"Collection\"},select:[{collection:\"E1_3Sz2T9\",name:\"qLtJDKD7H\",type:\"Identifier\"},{collection:\"E1_3Sz2T9\",name:\"VrtX779jW\",type:\"Identifier\"},{collection:\"E1_3Sz2T9\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"E1_3Sz2T9\",name:\"QtOGQCPo4\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"a2SuJqrJd\"},type:\"BinaryOperation\"}});const query3=prequery=>prequery({from:{alias:\"HTzQh1cbn\",data:Docs,type:\"Collection\"},select:[{collection:\"HTzQh1cbn\",name:\"qLtJDKD7H\",type:\"Identifier\"},{collection:\"HTzQh1cbn\",name:\"VrtX779jW\",type:\"Identifier\"},{collection:\"HTzQh1cbn\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"HTzQh1cbn\",name:\"QtOGQCPo4\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"T02SsETPN\"},type:\"BinaryOperation\"}});const query4=prequery=>prequery({from:{alias:\"Qz5uq5Wag\",data:Docs,type:\"Collection\"},select:[{collection:\"Qz5uq5Wag\",name:\"qLtJDKD7H\",type:\"Identifier\"},{collection:\"Qz5uq5Wag\",name:\"VrtX779jW\",type:\"Identifier\"},{collection:\"Qz5uq5Wag\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"Qz5uq5Wag\",name:\"QtOGQCPo4\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"d3HKpGBmw\"},type:\"BinaryOperation\"}});const query5=prequery=>prequery({from:{alias:\"jroSJMQPf\",data:Docs,type:\"Collection\"},select:[{collection:\"jroSJMQPf\",name:\"qLtJDKD7H\",type:\"Identifier\"},{collection:\"jroSJMQPf\",name:\"VrtX779jW\",type:\"Identifier\"},{collection:\"jroSJMQPf\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"jroSJMQPf\",name:\"QtOGQCPo4\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"f80sH81Pf\"},type:\"BinaryOperation\"}});const query6=prequery=>prequery({from:{alias:\"xunJ_G0od\",data:Docs,type:\"Collection\"},select:[{collection:\"xunJ_G0od\",name:\"qLtJDKD7H\",type:\"Identifier\"},{collection:\"xunJ_G0od\",name:\"VrtX779jW\",type:\"Identifier\"},{collection:\"xunJ_G0od\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"xunJ_G0od\",name:\"QtOGQCPo4\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"Oc__h3AMk\"},type:\"BinaryOperation\"}});const query7=prequery=>prequery({from:{alias:\"mHSNUyQCj\",data:Docs,type:\"Collection\"},select:[{collection:\"mHSNUyQCj\",name:\"qLtJDKD7H\",type:\"Identifier\"},{collection:\"mHSNUyQCj\",name:\"VrtX779jW\",type:\"Identifier\"},{collection:\"mHSNUyQCj\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"mHSNUyQCj\",name:\"QtOGQCPo4\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"guTMHUFsW\"},type:\"BinaryOperation\"}});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(React.Fragment);const humanReadableVariantMap={\"mobile/collapsed\":\"DbyenBGEZ\",\"mobile/expanded\":\"CnohsNoCL\",Desktop:\"GXddFzNE4\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"GXddFzNE4\"};};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,qLtJDKD7Hi1B71zEMN,VrtX779jWi1B71zEMN,idi1B71zEMN,qLtJDKD7HSTPK2Hfua,VrtX779jWSTPK2Hfua,idSTPK2Hfua,qLtJDKD7HE1_3Sz2T9,VrtX779jWE1_3Sz2T9,idE1_3Sz2T9,qLtJDKD7HHTzQh1cbn,VrtX779jWHTzQh1cbn,idHTzQh1cbn,qLtJDKD7HQz5uq5Wag,VrtX779jWQz5uq5Wag,idQz5uq5Wag,qLtJDKD7HjroSJMQPf,VrtX779jWjroSJMQPf,idjroSJMQPf,qLtJDKD7HxunJ_G0od,VrtX779jWxunJ_G0od,idxunJ_G0od,qLtJDKD7HmHSNUyQCj,VrtX779jWmHSNUyQCj,idmHSNUyQCj,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"GXddFzNE4\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onClick199xy30=activeVariantCallback(async(...args)=>{setVariant(\"CnohsNoCL\");});const onClick199tqtu=activeVariantCallback(async(...args)=>{setVariant(\"DbyenBGEZ\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"DbyenBGEZ\",\"CnohsNoCL\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"DbyenBGEZ\",\"CnohsNoCL\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if(baseVariant===\"DbyenBGEZ\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({DbyenBGEZ:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.nav,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1hi5ykh\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"GXddFzNE4\",ref:ref??ref1,style:{...style},...addPropertyOverrides({CnohsNoCL:{\"data-framer-name\":\"mobile/expanded\"},DbyenBGEZ:{\"data-framer-name\":\"mobile/collapsed\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1apa3g2\",\"data-framer-name\":\"nav-container\",layoutDependency:layoutDependency,layoutId:\"pJDQ8xmGl\",children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gq1bpt\",\"data-framer-name\":\"menu\",layoutDependency:layoutDependency,layoutId:\"Pmj7aR0LJ\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-4eha25-container\",layoutDependency:layoutDependency,layoutId:\"WkxYeWeOB-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-d18decf5-3acf-48eb-9385-75b6bd79f467, rgb(33, 33, 33))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"List\",id:\"WkxYeWeOB\",layoutId:\"WkxYeWeOB\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"light\",width:\"100%\",...addPropertyOverrides({CnohsNoCL:{iconSelection:\"X\",onClick:onClick199tqtu,weight:\"regular\"},DbyenBGEZ:{onClick:onClick199xy30,weight:\"regular\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hb56v8\",\"data-styles-preset\":\"m8Zl13jXE\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d18decf5-3acf-48eb-9385-75b6bd79f467, rgb(33, 33, 33)))\"},children:\"Docs menu\"})}),className:\"framer-18xblh8\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"eY0HwxdPR\",style:{\"--extracted-r6o4lv\":\"var(--token-d18decf5-3acf-48eb-9385-75b6bd79f467, rgb(33, 33, 33))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-t1xcwn\",\"data-framer-name\":\"search-container\",layoutDependency:layoutDependency,layoutId:\"iwPgZHxVt\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lprau9-container\",layoutDependency:layoutDependency,layoutId:\"iv_HnkmYt-container\",children:/*#__PURE__*/_jsx(DocSearch,{height:\"100%\",id:\"iv_HnkmYt\",layoutId:\"iv_HnkmYt\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pm8b7f-container\",layoutDependency:layoutDependency,layoutId:\"QeDebvTz3-container\",children:/*#__PURE__*/_jsx(KeepParentScroll,{height:\"100%\",id:\"QeDebvTz3\",layoutId:\"QeDebvTz3\",width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jld8l4\",\"data-framer-name\":\"search-container\",layoutDependency:layoutDependency,layoutId:\"wj8GN09ZR\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-deu0ce-container\",layoutDependency:layoutDependency,layoutId:\"Ai0ZRfoLy-container\",children:/*#__PURE__*/_jsx(DocSearch,{height:\"100%\",id:\"Ai0ZRfoLy\",layoutId:\"Ai0ZRfoLy\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1iroxdq\",\"data-framer-name\":\"section\",layoutDependency:layoutDependency,layoutId:\"sm2Csmh_S\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-q35idz\",\"data-styles-preset\":\"RSNDaxn8s\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-56d26ca8-ad3e-4a1a-98a6-e519bc1dc507, rgb(74, 81, 178)))\"},children:\"Getting Started\"})}),className:\"framer-1ddv08e\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"D3TmNVLY8\",style:{\"--extracted-r6o4lv\":\"var(--token-56d26ca8-ad3e-4a1a-98a6-e519bc1dc507, rgb(74, 81, 178))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-vmq0fv\",\"data-framer-name\":\"docs\",layoutDependency:layoutDependency,layoutId:\"i1B71zEMN\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"i1B71zEMN\",data:Docs,type:\"Collection\"},select:[{collection:\"i1B71zEMN\",name:\"qLtJDKD7H\",type:\"Identifier\"},{collection:\"i1B71zEMN\",name:\"VrtX779jW\",type:\"Identifier\"},{collection:\"i1B71zEMN\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"i1B71zEMN\",name:\"QtOGQCPo4\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"SKVm3nQvB\"},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection.map(({\"qLtJDKD7H\":qLtJDKD7Hi1B71zEMN,\"VrtX779jW\":VrtX779jWi1B71zEMN,\"id\":idi1B71zEMN},i)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`i1B71zEMN-${idi1B71zEMN}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{qLtJDKD7H:qLtJDKD7Hi1B71zEMN},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1a22bmf\",\"data-framer-name\":\"Post\",layoutDependency:layoutDependency,layoutId:\"WoOLcCtmG\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1d1skge\",\"data-styles-preset\":\"pIdldwauf\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d18decf5-3acf-48eb-9385-75b6bd79f467, rgb(33, 33, 33)))\"},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{qLtJDKD7H:qLtJDKD7Hi1B71zEMN},webPageId:\"giYLUM_mj\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-13b12oi\",\"data-styles-preset\":\"S4qFkXAWd\",children:\"Title\"})})})}),className:\"framer-mtx0t0\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"aLyPlYvnJ\",style:{\"--extracted-r6o4lv\":\"var(--token-d18decf5-3acf-48eb-9385-75b6bd79f467, rgb(33, 33, 33))\"},text:VrtX779jWi1B71zEMN,verticalAlignment:\"top\",withExternalLayout:true})})})},idi1B71zEMN);})})})})})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-voqbap\",\"data-framer-name\":\"section\",layoutDependency:layoutDependency,layoutId:\"lwZnyHU43\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-q35idz\",\"data-styles-preset\":\"RSNDaxn8s\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-56d26ca8-ad3e-4a1a-98a6-e519bc1dc507, rgb(74, 81, 178)))\"},children:\"Store API\"})}),className:\"framer-6gk5ah\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"l6ECOg3QS\",style:{\"--extracted-r6o4lv\":\"var(--token-56d26ca8-ad3e-4a1a-98a6-e519bc1dc507, rgb(74, 81, 178))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-k23f3h\",\"data-framer-name\":\"docs\",layoutDependency:layoutDependency,layoutId:\"STPK2Hfua\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"STPK2Hfua\",data:Docs,type:\"Collection\"},select:[{collection:\"STPK2Hfua\",name:\"qLtJDKD7H\",type:\"Identifier\"},{collection:\"STPK2Hfua\",name:\"VrtX779jW\",type:\"Identifier\"},{collection:\"STPK2Hfua\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"STPK2Hfua\",name:\"QtOGQCPo4\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"k9SgFd9HR\"},type:\"BinaryOperation\"}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1.map(({\"qLtJDKD7H\":qLtJDKD7HSTPK2Hfua,\"VrtX779jW\":VrtX779jWSTPK2Hfua,\"id\":idSTPK2Hfua},i)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`STPK2Hfua-${idSTPK2Hfua}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{qLtJDKD7H:qLtJDKD7HSTPK2Hfua},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1uw1xjs\",\"data-framer-name\":\"Post\",layoutDependency:layoutDependency,layoutId:\"UCtxOVcVA\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1d1skge\",\"data-styles-preset\":\"pIdldwauf\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d18decf5-3acf-48eb-9385-75b6bd79f467, rgb(33, 33, 33)))\"},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{qLtJDKD7H:qLtJDKD7HSTPK2Hfua},webPageId:\"giYLUM_mj\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-8g1j1g\",\"data-styles-preset\":\"cCvJHJkAd\",children:\"Title\"})})})}),className:\"framer-1qlawof\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"xKP6ezVq2\",style:{\"--extracted-r6o4lv\":\"var(--token-d18decf5-3acf-48eb-9385-75b6bd79f467, rgb(33, 33, 33))\"},text:VrtX779jWSTPK2Hfua,verticalAlignment:\"top\",withExternalLayout:true})})})},idSTPK2Hfua);})})})})})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1u6ygwp\",\"data-framer-name\":\"section\",layoutDependency:layoutDependency,layoutId:\"JNsg1Rssr\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-q35idz\",\"data-styles-preset\":\"RSNDaxn8s\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-56d26ca8-ad3e-4a1a-98a6-e519bc1dc507, rgb(74, 81, 178)))\"},children:\"Interface\"})}),className:\"framer-gvws4h\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"JXCUntqUK\",style:{\"--extracted-r6o4lv\":\"var(--token-56d26ca8-ad3e-4a1a-98a6-e519bc1dc507, rgb(74, 81, 178))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ceurox\",\"data-framer-name\":\"docs\",layoutDependency:layoutDependency,layoutId:\"E1_3Sz2T9\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"E1_3Sz2T9\",data:Docs,type:\"Collection\"},select:[{collection:\"E1_3Sz2T9\",name:\"qLtJDKD7H\",type:\"Identifier\"},{collection:\"E1_3Sz2T9\",name:\"VrtX779jW\",type:\"Identifier\"},{collection:\"E1_3Sz2T9\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"E1_3Sz2T9\",name:\"QtOGQCPo4\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"a2SuJqrJd\"},type:\"BinaryOperation\"}},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2.map(({\"qLtJDKD7H\":qLtJDKD7HE1_3Sz2T9,\"VrtX779jW\":VrtX779jWE1_3Sz2T9,\"id\":idE1_3Sz2T9},i)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`E1_3Sz2T9-${idE1_3Sz2T9}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{qLtJDKD7H:qLtJDKD7HE1_3Sz2T9},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tva5lr\",\"data-framer-name\":\"Post\",layoutDependency:layoutDependency,layoutId:\"BGqfdINsD\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1d1skge\",\"data-styles-preset\":\"pIdldwauf\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d18decf5-3acf-48eb-9385-75b6bd79f467, rgb(33, 33, 33)))\"},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{qLtJDKD7H:qLtJDKD7HE1_3Sz2T9},webPageId:\"giYLUM_mj\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-8g1j1g\",\"data-styles-preset\":\"cCvJHJkAd\",children:\"Title\"})})})}),className:\"framer-1868tyt\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"vI3UmOejm\",style:{\"--extracted-r6o4lv\":\"var(--token-d18decf5-3acf-48eb-9385-75b6bd79f467, rgb(33, 33, 33))\"},text:VrtX779jWE1_3Sz2T9,verticalAlignment:\"top\",withExternalLayout:true})})})},idE1_3Sz2T9);})})})})})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5734fm\",\"data-framer-name\":\"section\",layoutDependency:layoutDependency,layoutId:\"V8MV9bQuB\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-q35idz\",\"data-styles-preset\":\"RSNDaxn8s\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-56d26ca8-ad3e-4a1a-98a6-e519bc1dc507, rgb(74, 81, 178)))\"},children:\"SIde Panel\"})}),className:\"framer-nyehn\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"FASRIiCCL\",style:{\"--extracted-r6o4lv\":\"var(--token-56d26ca8-ad3e-4a1a-98a6-e519bc1dc507, rgb(74, 81, 178))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-10dcbn5\",\"data-framer-name\":\"docs\",layoutDependency:layoutDependency,layoutId:\"HTzQh1cbn\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"HTzQh1cbn\",data:Docs,type:\"Collection\"},select:[{collection:\"HTzQh1cbn\",name:\"qLtJDKD7H\",type:\"Identifier\"},{collection:\"HTzQh1cbn\",name:\"VrtX779jW\",type:\"Identifier\"},{collection:\"HTzQh1cbn\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"HTzQh1cbn\",name:\"QtOGQCPo4\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"T02SsETPN\"},type:\"BinaryOperation\"}},children:(collection3,paginationInfo3,loadMore3)=>/*#__PURE__*/_jsx(_Fragment,{children:collection3.map(({\"qLtJDKD7H\":qLtJDKD7HHTzQh1cbn,\"VrtX779jW\":VrtX779jWHTzQh1cbn,\"id\":idHTzQh1cbn},i)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`HTzQh1cbn-${idHTzQh1cbn}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{qLtJDKD7H:qLtJDKD7HHTzQh1cbn},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1axckix\",\"data-framer-name\":\"Post\",layoutDependency:layoutDependency,layoutId:\"bFBsrsAUz\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1d1skge\",\"data-styles-preset\":\"pIdldwauf\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d18decf5-3acf-48eb-9385-75b6bd79f467, rgb(33, 33, 33)))\"},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{qLtJDKD7H:qLtJDKD7HHTzQh1cbn},webPageId:\"giYLUM_mj\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-8g1j1g\",\"data-styles-preset\":\"cCvJHJkAd\",children:\"Title\"})})})}),className:\"framer-k5qucv\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"eQXG7NepB\",style:{\"--extracted-r6o4lv\":\"var(--token-d18decf5-3acf-48eb-9385-75b6bd79f467, rgb(33, 33, 33))\"},text:VrtX779jWHTzQh1cbn,verticalAlignment:\"top\",withExternalLayout:true})})})},idHTzQh1cbn);})})})})})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6wharl\",\"data-framer-name\":\"section\",layoutDependency:layoutDependency,layoutId:\"kfLtkuIdu\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-q35idz\",\"data-styles-preset\":\"RSNDaxn8s\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-56d26ca8-ad3e-4a1a-98a6-e519bc1dc507, rgb(74, 81, 178)))\"},children:\"Demos\"})}),className:\"framer-jmyzgq\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"m24P13uzD\",style:{\"--extracted-r6o4lv\":\"var(--token-56d26ca8-ad3e-4a1a-98a6-e519bc1dc507, rgb(74, 81, 178))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pevoit\",\"data-framer-name\":\"docs\",layoutDependency:layoutDependency,layoutId:\"Qz5uq5Wag\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"Qz5uq5Wag\",data:Docs,type:\"Collection\"},select:[{collection:\"Qz5uq5Wag\",name:\"qLtJDKD7H\",type:\"Identifier\"},{collection:\"Qz5uq5Wag\",name:\"VrtX779jW\",type:\"Identifier\"},{collection:\"Qz5uq5Wag\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"Qz5uq5Wag\",name:\"QtOGQCPo4\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"d3HKpGBmw\"},type:\"BinaryOperation\"}},children:(collection4,paginationInfo4,loadMore4)=>/*#__PURE__*/_jsx(_Fragment,{children:collection4.map(({\"qLtJDKD7H\":qLtJDKD7HQz5uq5Wag,\"VrtX779jW\":VrtX779jWQz5uq5Wag,\"id\":idQz5uq5Wag},i)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`Qz5uq5Wag-${idQz5uq5Wag}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{qLtJDKD7H:qLtJDKD7HQz5uq5Wag},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-or4pva\",\"data-framer-name\":\"Post\",layoutDependency:layoutDependency,layoutId:\"QsSbMmp3z\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1d1skge\",\"data-styles-preset\":\"pIdldwauf\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d18decf5-3acf-48eb-9385-75b6bd79f467, rgb(33, 33, 33)))\"},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{qLtJDKD7H:qLtJDKD7HQz5uq5Wag},webPageId:\"giYLUM_mj\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-8g1j1g\",\"data-styles-preset\":\"cCvJHJkAd\",children:\"Title\"})})})}),className:\"framer-tzojkn\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"pIf4y5L3y\",style:{\"--extracted-r6o4lv\":\"var(--token-d18decf5-3acf-48eb-9385-75b6bd79f467, rgb(33, 33, 33))\"},text:VrtX779jWQz5uq5Wag,verticalAlignment:\"top\",withExternalLayout:true})})})},idQz5uq5Wag);})})})})})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16upnx1\",\"data-framer-name\":\"section\",layoutDependency:layoutDependency,layoutId:\"rosoJeyIq\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-q35idz\",\"data-styles-preset\":\"RSNDaxn8s\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-56d26ca8-ad3e-4a1a-98a6-e519bc1dc507, rgb(74, 81, 178)))\"},children:\"Beta\"})}),className:\"framer-c9vypv\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"UsBIYH9LI\",style:{\"--extracted-r6o4lv\":\"var(--token-56d26ca8-ad3e-4a1a-98a6-e519bc1dc507, rgb(74, 81, 178))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gvk7me\",\"data-framer-name\":\"docs\",layoutDependency:layoutDependency,layoutId:\"jroSJMQPf\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"jroSJMQPf\",data:Docs,type:\"Collection\"},select:[{collection:\"jroSJMQPf\",name:\"qLtJDKD7H\",type:\"Identifier\"},{collection:\"jroSJMQPf\",name:\"VrtX779jW\",type:\"Identifier\"},{collection:\"jroSJMQPf\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"jroSJMQPf\",name:\"QtOGQCPo4\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"f80sH81Pf\"},type:\"BinaryOperation\"}},children:(collection5,paginationInfo5,loadMore5)=>/*#__PURE__*/_jsx(_Fragment,{children:collection5.map(({\"qLtJDKD7H\":qLtJDKD7HjroSJMQPf,\"VrtX779jW\":VrtX779jWjroSJMQPf,\"id\":idjroSJMQPf},i)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`jroSJMQPf-${idjroSJMQPf}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{qLtJDKD7H:qLtJDKD7HjroSJMQPf},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-keus2\",\"data-framer-name\":\"Post\",layoutDependency:layoutDependency,layoutId:\"bVPYaRm_C\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1d1skge\",\"data-styles-preset\":\"pIdldwauf\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d18decf5-3acf-48eb-9385-75b6bd79f467, rgb(33, 33, 33)))\"},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{qLtJDKD7H:qLtJDKD7HjroSJMQPf},webPageId:\"giYLUM_mj\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-8g1j1g\",\"data-styles-preset\":\"cCvJHJkAd\",children:\"Title\"})})})}),className:\"framer-1lck8x\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"WL3SKW_Ko\",style:{\"--extracted-r6o4lv\":\"var(--token-d18decf5-3acf-48eb-9385-75b6bd79f467, rgb(33, 33, 33))\"},text:VrtX779jWjroSJMQPf,verticalAlignment:\"top\",withExternalLayout:true})})})},idjroSJMQPf);})})})})})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yuo2ri\",\"data-framer-name\":\"section\",layoutDependency:layoutDependency,layoutId:\"PCOLDzQ53\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-q35idz\",\"data-styles-preset\":\"RSNDaxn8s\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-56d26ca8-ad3e-4a1a-98a6-e519bc1dc507, rgb(74, 81, 178)))\"},children:\"Misc\"})}),className:\"framer-cm1v54\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"l62L4Ngik\",style:{\"--extracted-r6o4lv\":\"var(--token-56d26ca8-ad3e-4a1a-98a6-e519bc1dc507, rgb(74, 81, 178))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-183mu47\",\"data-framer-name\":\"docs\",layoutDependency:layoutDependency,layoutId:\"xunJ_G0od\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"xunJ_G0od\",data:Docs,type:\"Collection\"},select:[{collection:\"xunJ_G0od\",name:\"qLtJDKD7H\",type:\"Identifier\"},{collection:\"xunJ_G0od\",name:\"VrtX779jW\",type:\"Identifier\"},{collection:\"xunJ_G0od\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"xunJ_G0od\",name:\"QtOGQCPo4\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"Oc__h3AMk\"},type:\"BinaryOperation\"}},children:(collection6,paginationInfo6,loadMore6)=>/*#__PURE__*/_jsx(_Fragment,{children:collection6.map(({\"qLtJDKD7H\":qLtJDKD7HxunJ_G0od,\"VrtX779jW\":VrtX779jWxunJ_G0od,\"id\":idxunJ_G0od},i)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`xunJ_G0od-${idxunJ_G0od}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{qLtJDKD7H:qLtJDKD7HxunJ_G0od},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-dyamr\",\"data-framer-name\":\"Post\",layoutDependency:layoutDependency,layoutId:\"T0eR7Z6JU\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1d1skge\",\"data-styles-preset\":\"pIdldwauf\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d18decf5-3acf-48eb-9385-75b6bd79f467, rgb(33, 33, 33)))\"},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{qLtJDKD7H:qLtJDKD7HxunJ_G0od},webPageId:\"giYLUM_mj\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-8g1j1g\",\"data-styles-preset\":\"cCvJHJkAd\",children:\"Title\"})})})}),className:\"framer-gfyg2j\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"hhGEEHs0B\",style:{\"--extracted-r6o4lv\":\"var(--token-d18decf5-3acf-48eb-9385-75b6bd79f467, rgb(33, 33, 33))\"},text:VrtX779jWxunJ_G0od,verticalAlignment:\"top\",withExternalLayout:true})})})},idxunJ_G0od);})})})})})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lkd0la\",\"data-framer-name\":\"section\",layoutDependency:layoutDependency,layoutId:\"SdlYm62zh\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-q35idz\",\"data-styles-preset\":\"RSNDaxn8s\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-56d26ca8-ad3e-4a1a-98a6-e519bc1dc507, rgb(74, 81, 178)))\"},children:\"Server API\"})}),className:\"framer-ww46df\",\"data-framer-name\":\"Server API\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"P9hr1NB0B\",style:{\"--extracted-r6o4lv\":\"var(--token-56d26ca8-ad3e-4a1a-98a6-e519bc1dc507, rgb(74, 81, 178))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-rqbpxb\",\"data-framer-name\":\"docs\",layoutDependency:layoutDependency,layoutId:\"mHSNUyQCj\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"mHSNUyQCj\",data:Docs,type:\"Collection\"},select:[{collection:\"mHSNUyQCj\",name:\"qLtJDKD7H\",type:\"Identifier\"},{collection:\"mHSNUyQCj\",name:\"VrtX779jW\",type:\"Identifier\"},{collection:\"mHSNUyQCj\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"mHSNUyQCj\",name:\"QtOGQCPo4\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"guTMHUFsW\"},type:\"BinaryOperation\"}},children:(collection7,paginationInfo7,loadMore7)=>/*#__PURE__*/_jsx(_Fragment,{children:collection7.map(({\"qLtJDKD7H\":qLtJDKD7HmHSNUyQCj,\"VrtX779jW\":VrtX779jWmHSNUyQCj,\"id\":idmHSNUyQCj},i)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`mHSNUyQCj-${idmHSNUyQCj}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{qLtJDKD7H:qLtJDKD7HmHSNUyQCj},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-14hflcg\",\"data-framer-name\":\"Post\",layoutDependency:layoutDependency,layoutId:\"Poz3_kRyu\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1d1skge\",\"data-styles-preset\":\"pIdldwauf\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d18decf5-3acf-48eb-9385-75b6bd79f467, rgb(33, 33, 33)))\"},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{qLtJDKD7H:qLtJDKD7HmHSNUyQCj},webPageId:\"giYLUM_mj\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-8g1j1g\",\"data-styles-preset\":\"cCvJHJkAd\",children:\"Title\"})})})}),className:\"framer-wbr9i0\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ajc4shnZ3\",style:{\"--extracted-r6o4lv\":\"var(--token-d18decf5-3acf-48eb-9385-75b6bd79f467, rgb(33, 33, 33))\"},text:VrtX779jWmHSNUyQCj,verticalAlignment:\"top\",withExternalLayout:true})})})},idmHSNUyQCj);})})})})})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-EsFAW.framer-47wzsj, .framer-EsFAW .framer-47wzsj { display: block; }\",\".framer-EsFAW.framer-1hi5ykh { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 250px; }\",\".framer-EsFAW .framer-1apa3g2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 21px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-EsFAW .framer-1gq1bpt { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-EsFAW .framer-4eha25-container { flex: none; height: 28px; position: relative; width: 28px; }\",\".framer-EsFAW .framer-18xblh8 { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-EsFAW .framer-t1xcwn { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 48px; justify-content: center; overflow: visible; padding: 12px 12px 12px 0px; position: relative; width: 48px; }\",\".framer-EsFAW .framer-1lprau9-container { flex: none; height: 100%; position: relative; width: 100%; }\",\".framer-EsFAW .framer-1pm8b7f-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-EsFAW .framer-1jld8l4 { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-EsFAW .framer-deu0ce-container { flex: none; height: 31px; position: relative; width: 100%; }\",\".framer-EsFAW .framer-1iroxdq, .framer-EsFAW .framer-voqbap, .framer-EsFAW .framer-1u6ygwp, .framer-EsFAW .framer-5734fm, .framer-EsFAW .framer-6wharl, .framer-EsFAW .framer-16upnx1, .framer-EsFAW .framer-1yuo2ri, .framer-EsFAW .framer-1lkd0la { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-EsFAW .framer-1ddv08e, .framer-EsFAW .framer-mtx0t0, .framer-EsFAW .framer-6gk5ah, .framer-EsFAW .framer-1qlawof, .framer-EsFAW .framer-gvws4h, .framer-EsFAW .framer-1868tyt, .framer-EsFAW .framer-nyehn, .framer-EsFAW .framer-k5qucv, .framer-EsFAW .framer-jmyzgq, .framer-EsFAW .framer-tzojkn, .framer-EsFAW .framer-c9vypv, .framer-EsFAW .framer-1lck8x, .framer-EsFAW .framer-cm1v54, .framer-EsFAW .framer-gfyg2j, .framer-EsFAW .framer-ww46df, .framer-EsFAW .framer-wbr9i0 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-EsFAW .framer-vmq0fv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-EsFAW .framer-1a22bmf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; min-width: 200px; padding: 0px; position: relative; width: 100%; }\",\".framer-EsFAW .framer-k23f3h, .framer-EsFAW .framer-1ceurox, .framer-EsFAW .framer-10dcbn5, .framer-EsFAW .framer-1pevoit, .framer-EsFAW .framer-1gvk7me, .framer-EsFAW .framer-183mu47, .framer-EsFAW .framer-rqbpxb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-EsFAW .framer-1uw1xjs, .framer-EsFAW .framer-1tva5lr, .framer-EsFAW .framer-1axckix, .framer-EsFAW .framer-or4pva, .framer-EsFAW .framer-keus2, .framer-EsFAW .framer-dyamr, .framer-EsFAW .framer-14hflcg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; min-width: 200px; padding: 0px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-EsFAW.framer-1hi5ykh, .framer-EsFAW .framer-1apa3g2, .framer-EsFAW .framer-1gq1bpt, .framer-EsFAW .framer-t1xcwn, .framer-EsFAW .framer-1jld8l4, .framer-EsFAW .framer-1iroxdq, .framer-EsFAW .framer-vmq0fv, .framer-EsFAW .framer-1a22bmf, .framer-EsFAW .framer-voqbap, .framer-EsFAW .framer-k23f3h, .framer-EsFAW .framer-1uw1xjs, .framer-EsFAW .framer-1u6ygwp, .framer-EsFAW .framer-1ceurox, .framer-EsFAW .framer-1tva5lr, .framer-EsFAW .framer-5734fm, .framer-EsFAW .framer-10dcbn5, .framer-EsFAW .framer-1axckix, .framer-EsFAW .framer-6wharl, .framer-EsFAW .framer-1pevoit, .framer-EsFAW .framer-or4pva, .framer-EsFAW .framer-16upnx1, .framer-EsFAW .framer-1gvk7me, .framer-EsFAW .framer-keus2, .framer-EsFAW .framer-1yuo2ri, .framer-EsFAW .framer-183mu47, .framer-EsFAW .framer-dyamr, .framer-EsFAW .framer-1lkd0la, .framer-EsFAW .framer-rqbpxb, .framer-EsFAW .framer-14hflcg { gap: 0px; } .framer-EsFAW.framer-1hi5ykh > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-EsFAW.framer-1hi5ykh > :first-child, .framer-EsFAW .framer-1apa3g2 > :first-child, .framer-EsFAW .framer-1iroxdq > :first-child, .framer-EsFAW .framer-vmq0fv > :first-child, .framer-EsFAW .framer-1a22bmf > :first-child, .framer-EsFAW .framer-voqbap > :first-child, .framer-EsFAW .framer-k23f3h > :first-child, .framer-EsFAW .framer-1uw1xjs > :first-child, .framer-EsFAW .framer-1u6ygwp > :first-child, .framer-EsFAW .framer-1ceurox > :first-child, .framer-EsFAW .framer-1tva5lr > :first-child, .framer-EsFAW .framer-5734fm > :first-child, .framer-EsFAW .framer-10dcbn5 > :first-child, .framer-EsFAW .framer-1axckix > :first-child, .framer-EsFAW .framer-6wharl > :first-child, .framer-EsFAW .framer-1pevoit > :first-child, .framer-EsFAW .framer-or4pva > :first-child, .framer-EsFAW .framer-16upnx1 > :first-child, .framer-EsFAW .framer-1gvk7me > :first-child, .framer-EsFAW .framer-keus2 > :first-child, .framer-EsFAW .framer-1yuo2ri > :first-child, .framer-EsFAW .framer-183mu47 > :first-child, .framer-EsFAW .framer-dyamr > :first-child, .framer-EsFAW .framer-1lkd0la > :first-child, .framer-EsFAW .framer-rqbpxb > :first-child, .framer-EsFAW .framer-14hflcg > :first-child { margin-top: 0px; } .framer-EsFAW.framer-1hi5ykh > :last-child, .framer-EsFAW .framer-1apa3g2 > :last-child, .framer-EsFAW .framer-1iroxdq > :last-child, .framer-EsFAW .framer-vmq0fv > :last-child, .framer-EsFAW .framer-1a22bmf > :last-child, .framer-EsFAW .framer-voqbap > :last-child, .framer-EsFAW .framer-k23f3h > :last-child, .framer-EsFAW .framer-1uw1xjs > :last-child, .framer-EsFAW .framer-1u6ygwp > :last-child, .framer-EsFAW .framer-1ceurox > :last-child, .framer-EsFAW .framer-1tva5lr > :last-child, .framer-EsFAW .framer-5734fm > :last-child, .framer-EsFAW .framer-10dcbn5 > :last-child, .framer-EsFAW .framer-1axckix > :last-child, .framer-EsFAW .framer-6wharl > :last-child, .framer-EsFAW .framer-1pevoit > :last-child, .framer-EsFAW .framer-or4pva > :last-child, .framer-EsFAW .framer-16upnx1 > :last-child, .framer-EsFAW .framer-1gvk7me > :last-child, .framer-EsFAW .framer-keus2 > :last-child, .framer-EsFAW .framer-1yuo2ri > :last-child, .framer-EsFAW .framer-183mu47 > :last-child, .framer-EsFAW .framer-dyamr > :last-child, .framer-EsFAW .framer-1lkd0la > :last-child, .framer-EsFAW .framer-rqbpxb > :last-child, .framer-EsFAW .framer-14hflcg > :last-child { margin-bottom: 0px; } .framer-EsFAW .framer-1apa3g2 > * { margin: 0px; margin-bottom: calc(21px / 2); margin-top: calc(21px / 2); } .framer-EsFAW .framer-1gq1bpt > *, .framer-EsFAW .framer-t1xcwn > *, .framer-EsFAW .framer-1jld8l4 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-EsFAW .framer-1gq1bpt > :first-child, .framer-EsFAW .framer-t1xcwn > :first-child, .framer-EsFAW .framer-1jld8l4 > :first-child { margin-left: 0px; } .framer-EsFAW .framer-1gq1bpt > :last-child, .framer-EsFAW .framer-t1xcwn > :last-child, .framer-EsFAW .framer-1jld8l4 > :last-child { margin-right: 0px; } .framer-EsFAW .framer-1iroxdq > *, .framer-EsFAW .framer-voqbap > *, .framer-EsFAW .framer-k23f3h > *, .framer-EsFAW .framer-1u6ygwp > *, .framer-EsFAW .framer-1ceurox > *, .framer-EsFAW .framer-5734fm > *, .framer-EsFAW .framer-10dcbn5 > *, .framer-EsFAW .framer-6wharl > *, .framer-EsFAW .framer-1pevoit > *, .framer-EsFAW .framer-16upnx1 > *, .framer-EsFAW .framer-1gvk7me > *, .framer-EsFAW .framer-1yuo2ri > *, .framer-EsFAW .framer-183mu47 > *, .framer-EsFAW .framer-1lkd0la > *, .framer-EsFAW .framer-rqbpxb > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-EsFAW .framer-vmq0fv > *, .framer-EsFAW .framer-1uw1xjs > *, .framer-EsFAW .framer-1tva5lr > *, .framer-EsFAW .framer-1axckix > *, .framer-EsFAW .framer-or4pva > *, .framer-EsFAW .framer-keus2 > *, .framer-EsFAW .framer-dyamr > *, .framer-EsFAW .framer-14hflcg > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-EsFAW .framer-1a22bmf > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-EsFAW.framer-v-181cfsn .framer-1gq1bpt, .framer-EsFAW.framer-v-1ya46mn .framer-1gq1bpt { padding: 0px 16px 0px 0px; }\",\".framer-EsFAW.framer-v-181cfsn .framer-4eha25-container { order: 0; }\",\".framer-EsFAW.framer-v-181cfsn .framer-18xblh8 { order: 1; }\",\".framer-EsFAW.framer-v-181cfsn .framer-t1xcwn { order: 2; padding: 12px; }\",\".framer-EsFAW.framer-v-1ya46mn .framer-t1xcwn { padding: 12px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 2307\n * @framerIntrinsicWidth 250\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"DbyenBGEZ\":{\"layout\":[\"fixed\",\"auto\"]},\"CnohsNoCL\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerpmMF2sp0b=withCSS(Component,css,\"framer-EsFAW\");export default FramerpmMF2sp0b;FramerpmMF2sp0b.displayName=\"docs/navigation\";FramerpmMF2sp0b.defaultProps={height:2307,width:250};addPropertyControls(FramerpmMF2sp0b,{variant:{options:[\"GXddFzNE4\",\"DbyenBGEZ\",\"CnohsNoCL\"],optionTitles:[\"Desktop\",\"mobile/collapsed\",\"mobile/expanded\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerpmMF2sp0b,[{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\"}]},...PhosphorFonts,...DocSearchFonts,...KeepParentScrollFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerpmMF2sp0b\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"2307\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"250\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"DbyenBGEZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CnohsNoCL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Figtree-600\",\"GF;Figtree-900\",\"GF;Figtree-900italic\",\"GF;Figtree-600italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Figtree\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/figtree/v5/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_ehR15bwkEU4HTy.woff2\",weight:\"600\"},{family:\"Figtree\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/figtree/v5/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_fWR15bwkEU4HTy.woff2\",weight:\"900\"},{family:\"Figtree\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/figtree/v5/_Xm9-HUzqDCFdgfMm4GnA4aZFrUvtOK3Ax8ayEA25WTybO8.woff2\",weight:\"900\"},{family:\"Figtree\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/figtree/v5/_Xm9-HUzqDCFdgfMm4GnA4aZFrUvtOK3A2gayEA25WTybO8.woff2\",weight:\"600\"}]}];export const css=['.framer-85a1E .framer-styles-preset-1i3vlwh:not(.rich-text-wrapper), .framer-85a1E .framer-styles-preset-1i3vlwh.rich-text-wrapper h3 { --framer-font-family: \"Figtree\", \"Figtree Placeholder\", sans-serif; --framer-font-family-bold: \"Figtree\", sans-serif; --framer-font-family-bold-italic: \"Figtree\", sans-serif; --framer-font-family-italic: \"Figtree\", \"Figtree Placeholder\", sans-serif; --framer-font-size: 36px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 600; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 600; --framer-letter-spacing: 0em; --framer-line-height: 124%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-d18decf5-3acf-48eb-9385-75b6bd79f467, #212121); --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-85a1E\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Figtree-regular\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Figtree\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/figtree/v5/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_d_QF5bwkEU4HTy.woff2\",weight:\"400\"},{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://app.framerstatic.com/Inter-Bold.cyrillic-ext-XOTVL7ZR.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Bold.cyrillic-6LOMBC2V.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Bold.greek-ext-WXWSJXLB.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Bold.greek-YRST7ODZ.woff2\",weight:\"700\"},{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://app.framerstatic.com/Inter-Bold.latin-ext-BASA5UL3.woff2\",weight:\"700\"},{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://app.framerstatic.com/Inter-Bold.latin-UCM45LQF.woff2\",weight:\"700\"},{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://app.framerstatic.com/Inter-Bold.vietnamese-OEVJMXEP.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-BoldItalic.cyrillic-ext-PEYDHC3S.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-BoldItalic.cyrillic-7EIL6JWG.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-BoldItalic.greek-ext-3DJOYQMH.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-BoldItalic.greek-TJBTLTT7.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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://app.framerstatic.com/Inter-BoldItalic.latin-ext-FVPCPRBJ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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://app.framerstatic.com/Inter-BoldItalic.latin-5ZFQS4XK.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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://app.framerstatic.com/Inter-BoldItalic.vietnamese-W2625PGF.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Italic.cyrillic-ext-YDGMJOJO.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Italic.cyrillic-BFOVMAQB.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Italic.greek-ext-4KOU3AHC.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Italic.greek-OJTBJNE6.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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://app.framerstatic.com/Inter-Italic.latin-ext-H4B22QN6.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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://app.framerstatic.com/Inter-Italic.latin-2DWX32EN.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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://app.framerstatic.com/Inter-Italic.vietnamese-TYMT6CKW.woff2\",weight:\"400\"}]}];export const css=['.framer-vwdUT .framer-styles-preset-e2mjnl:not(.rich-text-wrapper), .framer-vwdUT .framer-styles-preset-e2mjnl.rich-text-wrapper p { --framer-font-family: \"Figtree\", \"Figtree Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 20px; --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.4em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-8e1b8261-1f22-42a2-a427-0f15fbf7cf08, #424242); --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-vwdUT\";\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([\"GF;Figtree-600\",\"GF;Figtree-900\",\"GF;Figtree-900italic\",\"GF;Figtree-600italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Figtree\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/figtree/v5/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_ehR15bwkEU4HTy.woff2\",weight:\"600\"},{family:\"Figtree\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/figtree/v5/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_fWR15bwkEU4HTy.woff2\",weight:\"900\"},{family:\"Figtree\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/figtree/v5/_Xm9-HUzqDCFdgfMm4GnA4aZFrUvtOK3Ax8ayEA25WTybO8.woff2\",weight:\"900\"},{family:\"Figtree\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/figtree/v5/_Xm9-HUzqDCFdgfMm4GnA4aZFrUvtOK3A2gayEA25WTybO8.woff2\",weight:\"600\"}]}];export const css=['.framer-fZUuh .framer-styles-preset-wlpqz9:not(.rich-text-wrapper), .framer-fZUuh .framer-styles-preset-wlpqz9.rich-text-wrapper h2 { --framer-font-family: \"Figtree\", \"Figtree Placeholder\", sans-serif; --framer-font-family-bold: \"Figtree\", sans-serif; --framer-font-family-bold-italic: \"Figtree\", sans-serif; --framer-font-family-italic: \"Figtree\", \"Figtree Placeholder\", sans-serif; --framer-font-size: 42px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 600; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 600; --framer-letter-spacing: 0em; --framer-line-height: 120%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-d18decf5-3acf-48eb-9385-75b6bd79f467, #212121); --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-fZUuh\";\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([\"GF;Figtree-600\",\"GF;Figtree-900\",\"GF;Figtree-900italic\",\"GF;Figtree-600italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Figtree\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/figtree/v5/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_ehR15bwkEU4HTy.woff2\",weight:\"600\"},{family:\"Figtree\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/figtree/v5/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_fWR15bwkEU4HTy.woff2\",weight:\"900\"},{family:\"Figtree\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/figtree/v5/_Xm9-HUzqDCFdgfMm4GnA4aZFrUvtOK3Ax8ayEA25WTybO8.woff2\",weight:\"900\"},{family:\"Figtree\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/figtree/v5/_Xm9-HUzqDCFdgfMm4GnA4aZFrUvtOK3A2gayEA25WTybO8.woff2\",weight:\"600\"}]}];export const css=['.framer-0UUhc .framer-styles-preset-uoml19:not(.rich-text-wrapper), .framer-0UUhc .framer-styles-preset-uoml19.rich-text-wrapper h1 { --framer-font-family: \"Figtree\", \"Figtree Placeholder\", sans-serif; --framer-font-family-bold: \"Figtree\", sans-serif; --framer-font-family-bold-italic: \"Figtree\", sans-serif; --framer-font-family-italic: \"Figtree\", \"Figtree Placeholder\", sans-serif; --framer-font-size: 50px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 600; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 600; --framer-letter-spacing: 0px; --framer-line-height: 124%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-d18decf5-3acf-48eb-9385-75b6bd79f467, #212121); --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-0UUhc\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-Bold\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[{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://app.framerstatic.com/Inter-Bold.cyrillic-ext-XOTVL7ZR.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Bold.cyrillic-6LOMBC2V.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Bold.greek-ext-WXWSJXLB.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Bold.greek-YRST7ODZ.woff2\",weight:\"700\"},{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://app.framerstatic.com/Inter-Bold.latin-ext-BASA5UL3.woff2\",weight:\"700\"},{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://app.framerstatic.com/Inter-Bold.latin-UCM45LQF.woff2\",weight:\"700\"},{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://app.framerstatic.com/Inter-Bold.vietnamese-OEVJMXEP.woff2\",weight:\"700\"},{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://app.framerstatic.com/Inter-Black.cyrillic-ext-TU4ITVTR.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Black.cyrillic-JX7CGTYD.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Black.greek-ext-LS3GCBFI.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Black.greek-ZWCJHBP5.woff2\",weight:\"900\"},{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://app.framerstatic.com/Inter-Black.latin-ext-BZLEUMX6.woff2\",weight:\"900\"},{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://app.framerstatic.com/Inter-Black.latin-TETRYDF7.woff2\",weight:\"900\"},{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://app.framerstatic.com/Inter-Black.vietnamese-RXQCC3EJ.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-BlackItalic.cyrillic-ext-TRM4ITYR.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-BlackItalic.cyrillic-FPHIQVZS.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-BlackItalic.greek-ext-JTGUUSP5.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-BlackItalic.greek-LUNA3RFO.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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://app.framerstatic.com/Inter-BlackItalic.latin-ext-KU7ICFYH.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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://app.framerstatic.com/Inter-BlackItalic.latin-FRVXWQSB.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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://app.framerstatic.com/Inter-BlackItalic.vietnamese-2Q7MQKJX.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-BoldItalic.cyrillic-ext-PEYDHC3S.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-BoldItalic.cyrillic-7EIL6JWG.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-BoldItalic.greek-ext-3DJOYQMH.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-BoldItalic.greek-TJBTLTT7.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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://app.framerstatic.com/Inter-BoldItalic.latin-ext-FVPCPRBJ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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://app.framerstatic.com/Inter-BoldItalic.latin-5ZFQS4XK.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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://app.framerstatic.com/Inter-BoldItalic.vietnamese-W2625PGF.woff2\",weight:\"700\"}]}];export const css=['.framer-bre1G .framer-styles-preset-1wf3gzr:not(.rich-text-wrapper), .framer-bre1G .framer-styles-preset-1wf3gzr.rich-text-wrapper h4 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #333333; --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-bre1G\";\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 (b0164a3)\nvar _componentPresets_fonts,_componentPresets_fonts1,_componentPresets_fonts2,_componentPresets_fonts3;import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentPresetsProvider,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getWhereExpressionFromPathVariables,Link,NotFoundError,PropertyOverrides,RichText,SVG,useActiveVariantCallback,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useOverlayState,useQueryData,useRouteElementId,withCSS}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import*as ReactDOM from\"react-dom\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/9zLIz4fn80IR9zpOx18Q/Embed.js\";import Footer from\"#framer/local/canvasComponent/byXRDYPEq/byXRDYPEq.js\";import Header from\"#framer/local/canvasComponent/dOZ_Kdczw/dOZ_Kdczw.js\";import DocsNavigation from\"#framer/local/canvasComponent/pmMF2sp0b/pmMF2sp0b.js\";import IconMenu from\"#framer/local/canvasComponent/z87mFmNAe/z87mFmNAe.js\";import NavMobileMenu from\"#framer/local/canvasComponent/zW_byJtVH/zW_byJtVH.js\";import Docs from\"#framer/local/collection/cOzahs8Xb/cOzahs8Xb.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle1 from\"#framer/local/css/auvKA86Yh/auvKA86Yh.js\";import*as sharedStyle6 from\"#framer/local/css/CMVhieh_6/CMVhieh_6.js\";import*as sharedStyle3 from\"#framer/local/css/dFPHYd7e0/dFPHYd7e0.js\";import*as sharedStyle11 from\"#framer/local/css/DgwhNa64x/DgwhNa64x.js\";import*as sharedStyle9 from\"#framer/local/css/EwHFR_cYX/EwHFR_cYX.js\";import*as sharedStyle5 from\"#framer/local/css/hi9RT7k49/hi9RT7k49.js\";import*as sharedStyle12 from\"#framer/local/css/juCU8NJtR/juCU8NJtR.js\";import*as sharedStyle7 from\"#framer/local/css/MCRovfEZ4/MCRovfEZ4.js\";import*as sharedStyle13 from\"#framer/local/css/PbSIfQaNV/PbSIfQaNV.js\";import*as sharedStyle2 from\"#framer/local/css/rxua1zz9C/rxua1zz9C.js\";import*as sharedStyle from\"#framer/local/css/sxB0QWXsq/sxB0QWXsq.js\";import*as sharedStyle10 from\"#framer/local/css/Tw_EWzqbB/Tw_EWzqbB.js\";import*as sharedStyle4 from\"#framer/local/css/WddZAv9QK/WddZAv9QK.js\";import*as sharedStyle8 from\"#framer/local/css/xS9826a9G/xS9826a9G.js\";import metadataProvider from\"#framer/local/webPageMetadata/giYLUM_mj/giYLUM_mj.js\";const HeaderFonts=getFonts(Header);const IconMenuFonts=getFonts(IconMenu);const NavMobileMenuFonts=getFonts(NavMobileMenu);const DocsNavigationFonts=getFonts(DocsNavigation);const EmbedFonts=getFonts(Embed);const FooterFonts=getFonts(Footer);const breakpoints={byzlKw8Ww:\"(max-width: 809px)\",ckJu7f7wd:\"(min-width: 1400px)\",KO5IxNsY1:\"(min-width: 810px) and (max-width: 1199px)\",zvOF2qHgV:\"(min-width: 1200px) and (max-width: 1399px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-oQ4GP\";const variantClassNames={byzlKw8Ww:\"framer-v-14qst6x\",ckJu7f7wd:\"framer-v-1kp1nec\",KO5IxNsY1:\"framer-v-1bms3ph\",zvOF2qHgV:\"framer-v-117szpz\"};const getContainer=()=>{var _document_querySelector,_ref;return(_ref=(_document_querySelector=document.querySelector(\"#template-overlay\"))!==null&&_document_querySelector!==void 0?_document_querySelector:document.querySelector(\"#overlay\"))!==null&&_ref!==void 0?_ref:document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const metadata=metadataProvider();const humanReadableVariantMap={\"Desktop 2\":\"zvOF2qHgV\",Desktop:\"ckJu7f7wd\",S:\"byzlKw8Ww\",Tablet:\"KO5IxNsY1\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"ckJu7f7wd\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"giYLUM_mj\",data:Docs,type:\"Collection\"},select:[{collection:\"giYLUM_mj\",name:\"VrtX779jW\",type:\"Identifier\"},{collection:\"giYLUM_mj\",name:\"wMbPdCxbM\",type:\"Identifier\"},{collection:\"giYLUM_mj\",name:\"HKCGWm7LH\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"giYLUM_mj\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};var _getFromCurrentRouteData,_getFromCurrentRouteData1,_getFromCurrentRouteData2;const{style,className,layoutId,variant,VrtX779jW=(_getFromCurrentRouteData=getFromCurrentRouteData(\"VrtX779jW\"))!==null&&_getFromCurrentRouteData!==void 0?_getFromCurrentRouteData:\"\",wMbPdCxbM=(_getFromCurrentRouteData1=getFromCurrentRouteData(\"wMbPdCxbM\"))!==null&&_getFromCurrentRouteData1!==void 0?_getFromCurrentRouteData1:\"\",HKCGWm7LH=(_getFromCurrentRouteData2=getFromCurrentRouteData(\"HKCGWm7LH\"))!==null&&_getFromCurrentRouteData2!==void 0?_getFromCurrentRouteData2:\"\",...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(currentRouteData,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(currentRouteData,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-oQ4GP`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-oQ4GP`);};},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const fx4R2l1lw3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const wi1BfkOLm1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});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);const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"byzlKw8Ww\")return false;return true;};const elementId=useRouteElementId(\"WSx7NISqJ\");const ref2=React.useRef(null);const visible=isSet(HKCGWm7LH);const defaultLayoutId=React.useId();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"ckJu7f7wd\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1kp1nec\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1obwugk\",\"data-framer-name\":\"header-container\",name:\"header-container\",children:/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{byzlKw8Ww:{width:\"min(max(100vw - 32px, 1px), 1367px)\"},KO5IxNsY1:{width:\"min(max(100vw - 32px, 1px), 1367px)\"},zvOF2qHgV:{width:\"min(max(100vw - 64px, 1px), 1367px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:104,width:\"min(max(100vw, 1px), 1367px)\",y:0,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-1fx9lgo-container\",id:\"1fx9lgo\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{byzlKw8Ww:{variant:overlay.visible?\"DtfPcaPs_\":\"mlrpXSw4a\"},KO5IxNsY1:{variant:overlay.visible?\"DtfPcaPs_\":\"mlrpXSw4a\"}},children:/*#__PURE__*/_jsx(Header,{fx4R2l1lw:fx4R2l1lw3bnx0g({overlay}),height:\"100%\",id:\"U7DPDTKf2\",layoutId:\"U7DPDTKf2\",style:{maxWidth:\"100%\",width:\"100%\"},UJEiuJo53:\"rgba(255, 255, 255, 0)\",variant:overlay.visible?\"DtfPcaPs_\":\"EHOy97DnP\",width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-9hh1v7\"),\"data-framer-portal-id\":\"1fx9lgo\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"QbliieD8F\"),/*#__PURE__*/_jsx(\"div\",{className:cx(scopingClassNames,\"framer-ojim92\"),\"data-framer-name\":\"menu-container\",\"data-framer-portal-id\":\"1fx9lgo\",name:\"menu-container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ued1s4\",\"data-framer-name\":\"menu\",name:\"menu\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-72v0yn\",\"data-framer-name\":\"header\",name:\"header\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"MFqlpoc8R\"},nodeId:\"t35XbNqtp\",openInNewTab:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-1rew5im framer-z06t1q\",\"data-framer-name\":\"logo-container\",name:\"logo-container\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1dzowtm\",\"data-framer-name\":\"logo\",layout:\"position\",name:\"logo\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 178 52\"><path d=\"M 7.916 15.383 C 12.912 9.512 20.504 2.492 23.856 0.628 C 24.463 0.282 25.112 0 25.285 0 C 25.653 0 27.837 1.972 33.137 7.107 L 37.181 11.028 L 40.966 7.258 C 43.857 4.376 44.863 3.364 45.714 3.481 C 46.181 3.546 46.601 3.95 47.26 4.571 C 47.91 5.178 48.493 5.871 48.58 6.11 C 48.774 6.738 47.887 7.887 44.319 11.548 L 41.139 14.82 L 46.525 20.323 C 49.834 23.703 51.91 25.978 51.91 26.238 C 51.91 26.932 50.937 28.665 49.553 30.398 C 48.083 32.262 38.176 42.553 35.97 44.547 C 34.153 46.172 31.709 47.948 30.779 48.317 C 30.389 48.468 29.849 48.533 29.589 48.447 C 29.309 48.382 27.643 46.952 25.869 45.283 L 22.625 42.25 L 21.955 44.482 C 21.045 47.428 19.965 50.267 19.51 50.808 C 18.926 51.502 18.126 52 17.564 52 C 16.828 52 15.877 50.938 15.704 49.92 C 15.552 49.01 16.244 45.478 17.564 40.452 L 18.234 37.873 L 16.201 35.837 L 14.146 33.8 L 10.816 34.645 C 5.365 36.032 2.964 36.487 2.056 36.313 C 1.103 36.118 0 35.122 0 34.428 C 0 33.692 0.757 32.63 1.665 32.132 C 2.617 31.59 8.781 29.467 9.365 29.467 C 9.582 29.467 9.733 29.38 9.69 29.272 C 9.668 29.142 8.5 27.798 7.116 26.282 C 3.439 22.23 3.396 22.165 3.547 21.58 C 3.763 20.735 5.645 18.048 7.917 15.383 Z M 47.626 25.913 C 47.065 24.787 36.293 13.542 30.518 8.082 C 27.836 5.547 26.149 4.117 25.868 4.117 C 25.263 4.117 23.813 4.962 22.191 6.262 C 20.223 7.843 10.858 17.42 9.473 19.283 C 8.176 21.038 7.57 22.1 7.57 22.642 C 7.57 23.292 28.16 43.702 29.415 44.287 C 30.865 44.958 39.905 36.92 45.421 30.052 C 47.324 27.647 47.93 26.542 47.627 25.913 Z\" fill=\"var(--token-f97a8761-8139-4bd4-a094-ab72c3ce021b, rgb(63, 57, 123)) /* {&quot;name&quot;:&quot;Primary/900&quot;} */\"></path><path d=\"M 169.246 36.234 C 166.892 36.234 164.996 35.495 163.559 34.016 C 162.121 32.526 161.403 30.641 161.403 28.36 C 161.403 26.839 161.783 25.485 162.543 24.297 C 163.292 23.119 164.359 22.177 165.621 21.578 C 166.923 20.943 168.371 20.625 169.965 20.625 C 172.257 20.625 174.147 21.339 175.637 22.765 C 177.127 24.193 177.871 26.037 177.871 28.297 C 177.871 29.86 177.486 31.25 176.715 32.469 C 175.963 33.67 174.891 34.638 173.621 35.266 C 172.319 35.912 170.861 36.235 169.246 36.235 Z M 169.887 34.5 C 171.439 34.5 172.647 33.974 173.512 32.922 C 174.387 31.87 174.824 30.469 174.824 28.719 C 174.824 26.969 174.324 25.459 173.324 24.188 C 172.324 22.917 171.038 22.282 169.465 22.282 C 167.903 22.282 166.699 22.818 165.856 23.891 C 165.012 24.964 164.59 26.37 164.59 28.11 C 164.59 29.85 165.085 31.35 166.074 32.61 C 167.064 33.87 168.335 34.5 169.887 34.5 Z M 145.922 35.844 L 144.578 35.86 C 143.214 35.86 142.37 35.651 142.048 35.235 C 141.9 35.043 141.822 34.806 141.828 34.563 C 141.828 34.292 141.933 34.104 142.141 34 C 142.349 33.896 142.578 33.839 142.828 33.828 C 143.088 33.818 143.323 33.74 143.532 33.594 C 143.74 33.438 143.844 33.193 143.844 32.86 L 143.844 23.938 C 143.844 23.334 143.469 22.969 142.719 22.844 C 142.199 22.761 141.881 22.672 141.766 22.578 C 141.662 22.474 141.61 22.298 141.61 22.048 C 141.61 21.787 141.792 21.552 142.156 21.344 C 142.771 20.969 143.542 20.781 144.469 20.781 C 145.407 20.781 146.006 20.917 146.266 21.188 C 146.536 21.448 146.672 22.037 146.672 22.953 C 148.099 21.339 150.062 20.532 152.562 20.532 C 154.594 20.532 156.032 21.089 156.875 22.203 C 157.729 23.307 158.156 24.985 158.156 27.235 L 158.156 32.86 C 158.156 33.464 158.49 33.787 159.156 33.828 C 159.834 33.86 160.172 34.125 160.172 34.625 C 160.172 35.188 159.849 35.542 159.203 35.688 C 158.724 35.792 158.063 35.844 157.219 35.844 L 155.875 35.86 C 154.511 35.86 153.667 35.651 153.344 35.235 C 153.196 35.043 153.119 34.805 153.125 34.563 C 153.125 34.292 153.229 34.104 153.438 34 C 153.646 33.896 153.875 33.839 154.125 33.828 C 154.385 33.818 154.62 33.74 154.828 33.594 C 155.037 33.438 155.141 33.193 155.141 32.86 L 155.141 28.313 C 155.141 26.375 154.917 24.959 154.469 24.063 C 153.969 23.053 152.964 22.547 151.453 22.547 C 149.631 22.547 148.391 23.032 147.735 24 C 147.12 24.917 146.813 26.38 146.813 28.39 L 146.813 32.86 C 146.813 33.464 147.146 33.787 147.813 33.828 C 148.49 33.86 148.828 34.125 148.828 34.625 C 148.828 35.198 148.511 35.552 147.875 35.688 C 147.417 35.792 146.765 35.844 145.922 35.844 Z M 131.317 22.907 L 130.363 22.922 C 129.978 22.922 129.697 22.886 129.52 22.812 C 129.343 22.74 129.254 22.589 129.254 22.36 C 129.254 22.12 129.354 21.906 129.551 21.719 C 129.754 21.524 129.993 21.371 130.254 21.266 C 130.973 20.974 131.4 20.729 131.535 20.531 C 131.681 20.323 131.895 19.875 132.176 19.188 C 132.874 17.469 133.457 16.61 133.926 16.61 C 134.166 16.61 134.301 16.87 134.332 17.39 C 134.374 17.901 134.395 18.292 134.395 18.563 C 134.405 18.833 134.405 19.24 134.395 19.781 C 134.385 20.313 134.379 20.683 134.379 20.891 L 138.098 20.906 C 138.462 20.906 138.77 21 139.02 21.188 C 139.27 21.365 139.395 21.604 139.395 21.907 C 139.404 22.191 139.261 22.459 139.02 22.61 C 138.78 22.776 138.478 22.86 138.113 22.86 L 134.379 22.86 L 134.364 30.844 C 134.364 33.104 134.932 34.234 136.068 34.234 C 136.38 34.234 136.844 34.141 137.458 33.954 C 138.073 33.756 138.474 33.657 138.661 33.657 C 139.088 33.657 139.302 33.901 139.302 34.391 C 139.302 34.776 138.797 35.161 137.786 35.547 C 136.786 35.933 135.756 36.125 134.693 36.125 C 133.641 36.125 132.813 35.714 132.208 34.891 C 131.614 34.068 131.318 32.985 131.318 31.641 L 131.318 22.906 Z M 119.207 36.234 C 116.853 36.234 114.957 35.495 113.52 34.016 C 112.082 32.526 111.363 30.641 111.363 28.36 C 111.363 26.839 111.743 25.485 112.504 24.297 C 113.253 23.119 114.32 22.176 115.582 21.578 C 116.884 20.943 118.332 20.625 119.926 20.625 C 122.218 20.625 124.108 21.339 125.598 22.765 C 127.088 24.193 127.832 26.037 127.832 28.297 C 127.832 29.86 127.447 31.25 126.676 32.469 C 125.924 33.67 124.852 34.638 123.582 35.266 C 122.28 35.912 120.822 36.235 119.207 36.235 Z M 119.847 34.5 C 121.4 34.5 122.608 33.974 123.473 32.922 C 124.348 31.87 124.785 30.469 124.785 28.719 C 124.785 26.969 124.285 25.459 123.285 24.188 C 122.285 22.917 120.999 22.282 119.426 22.282 C 117.863 22.282 116.66 22.818 115.816 23.891 C 114.973 24.964 114.551 26.37 114.551 28.11 C 114.551 29.85 115.046 31.35 116.035 32.61 C 117.025 33.87 118.295 34.5 119.848 34.5 Z M 107.024 35.844 L 105.68 35.86 C 104.315 35.86 103.472 35.651 103.149 35.235 C 103.001 35.043 102.923 34.806 102.929 34.563 C 102.929 34.292 103.034 34.104 103.242 34 C 103.451 33.896 103.68 33.839 103.93 33.828 C 104.18 33.818 104.41 33.74 104.617 33.594 C 104.826 33.438 104.93 33.193 104.93 32.86 L 104.93 16.36 C 104.93 15.412 104.555 14.901 103.805 14.828 C 103.629 14.804 103.451 14.789 103.274 14.782 C 103.207 14.769 103.139 14.758 103.071 14.75 C 103.012 14.734 102.954 14.714 102.899 14.688 C 102.865 14.665 102.833 14.639 102.805 14.61 C 102.732 14.547 102.695 14.396 102.695 14.156 C 102.695 13.916 102.857 13.666 103.18 13.406 C 103.763 12.927 104.55 12.688 105.54 12.688 C 106.591 12.688 107.206 12.75 107.383 12.875 C 107.737 13.125 107.914 13.453 107.914 13.86 L 107.914 32.86 C 107.914 33.464 108.248 33.787 108.914 33.828 C 109.591 33.86 109.93 34.125 109.93 34.625 C 109.93 35.198 109.617 35.552 108.992 35.688 C 108.513 35.792 107.857 35.844 107.024 35.844 Z M 92.621 36.234 C 90.267 36.234 88.371 35.495 86.934 34.016 C 85.496 32.526 84.778 30.641 84.778 28.36 C 84.778 26.839 85.158 25.485 85.918 24.297 C 86.667 23.119 87.734 22.176 88.996 21.578 C 90.298 20.943 91.746 20.625 93.34 20.625 C 95.632 20.625 97.522 21.339 99.012 22.765 C 100.502 24.193 101.246 26.037 101.246 28.297 C 101.246 29.86 100.861 31.25 100.09 32.469 C 99.338 33.67 98.266 34.638 96.996 35.266 C 95.694 35.912 94.236 36.235 92.621 36.235 Z M 93.262 34.5 C 94.814 34.5 96.022 33.974 96.887 32.922 C 97.762 31.87 98.2 30.469 98.2 28.719 C 98.2 26.969 97.7 25.459 96.7 24.188 C 95.7 22.917 94.413 22.282 92.84 22.282 C 91.278 22.282 90.075 22.818 89.23 23.891 C 88.387 24.964 87.965 26.37 87.965 28.11 C 87.965 29.85 88.46 31.35 89.45 32.61 C 90.44 33.87 91.71 34.5 93.262 34.5 Z M 65.641 16.032 C 65.211 15.927 64.778 15.832 64.344 15.749 C 63.906 15.655 63.688 15.504 63.688 15.296 C 63.683 15.09 63.756 14.89 63.891 14.734 C 64.037 14.567 64.251 14.437 64.531 14.343 C 64.813 14.239 65.094 14.155 65.375 14.093 C 65.736 14.022 66.101 13.981 66.469 13.968 C 67.084 13.926 67.829 13.905 68.703 13.905 L 71.423 13.905 C 74.818 13.905 77.313 14.093 78.906 14.468 C 80.573 14.843 81.786 15.395 82.547 16.124 C 83.485 17.02 83.953 18.176 83.953 19.593 C 83.953 21.687 83.323 23.249 82.063 24.281 C 81.188 24.989 80.318 25.463 79.453 25.702 C 78.736 25.897 78.011 26.064 77.281 26.202 C 76.698 26.296 76.016 26.374 75.235 26.437 C 73.763 26.528 72.288 26.57 70.813 26.562 L 69.828 26.562 L 69.828 33.156 C 69.828 33.353 70.042 33.52 70.469 33.656 C 70.907 33.781 71.339 33.906 71.766 34.031 C 72.203 34.145 72.422 34.281 72.422 34.437 C 72.422 34.78 72.339 35.057 72.172 35.265 C 72.005 35.463 71.698 35.603 71.25 35.687 C 70.698 35.78 69.646 35.827 68.094 35.827 C 66.552 35.827 65.614 35.807 65.281 35.765 C 64.229 35.63 63.699 35.24 63.689 34.594 C 63.689 34.114 64.121 33.86 64.986 33.828 C 65.861 33.798 66.298 33.573 66.298 33.156 L 66.298 16.564 C 66.298 16.314 66.079 16.137 65.642 16.032 Z M 80.422 20.547 C 80.422 17.36 77.974 15.766 73.078 15.766 L 72.407 15.766 C 71.437 15.766 70.823 15.86 70.563 16.047 C 70.281 16.245 70.12 16.401 70.078 16.516 C 70.031 16.646 69.984 16.776 69.938 16.906 C 69.865 17.136 69.828 17.495 69.828 17.985 L 69.828 24.703 C 70.203 24.735 70.823 24.75 71.688 24.75 C 72.563 24.75 73.349 24.73 74.048 24.688 C 74.744 24.637 75.437 24.554 76.125 24.438 C 76.813 24.323 77.406 24.162 77.906 23.953 C 78.385 23.757 78.837 23.5 79.25 23.188 C 80.031 22.584 80.422 21.703 80.422 20.548 Z\" fill=\"rgb(63,57,123)\"></path></svg>',svgContentId:11634936015,withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10nyh04\",\"data-framer-name\":\"ctas\",name:\"ctas\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-wfei9c\",\"data-framer-name\":\"icon-container\",name:\"icon-container\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ah9efh-container\",children:/*#__PURE__*/_jsx(IconMenu,{height:\"100%\",id:\"Cv6lwPYGI\",layoutId:\"Cv6lwPYGI\",style:{height:\"100%\",width:\"100%\"},variant:\"NejLlLu76\",wi1BfkOLm:wi1BfkOLm1wnntms({overlay}),width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1e8ifgy\",\"data-framer-name\":\"nav-container\",name:\"nav-container\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"calc(100vw - 32px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-ichc15-container\",children:/*#__PURE__*/_jsx(NavMobileMenu,{height:\"100%\",id:\"MmCE29da6\",layoutId:\"MmCE29da6\",style:{width:\"100%\"},width:\"100%\"})})})})]})})]}),getContainer())})})]})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gz68kh\",\"data-framer-name\":\"post-container\",name:\"post-container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18f4sos\",\"data-framer-name\":\"sidebar-parent-container\",name:\"sidebar-parent-container\",children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-112xdb7 hidden-14qst6x\",\"data-framer-name\":\"ovrlay\",name:\"ovrlay\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1f3k3tj\",\"data-framer-name\":\"sidebar-container\",id:elementId,name:\"sidebar-container\",ref:ref2,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{byzlKw8Ww:{width:\"max(min(100vw, 1367px) - 32px, 1px)\"},KO5IxNsY1:{width:\"max(min(max((min(100vw, 1367px) - 44px) / 2, 1px), 230px), 1px)\"},zvOF2qHgV:{width:\"max(min(max((min(100vw, 1367px) - 64px) / 2, 1px), 230px), 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:2307,width:\"max(min(max(min(100vw, 1367px) / 2, 1px), 230px), 1px)\",y:104,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1t5dtha-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{byzlKw8Ww:{variant:\"DbyenBGEZ\"}},children:/*#__PURE__*/_jsx(DocsNavigation,{height:\"100%\",id:\"vIphOp9II\",layoutId:\"vIphOp9II\",style:{width:\"100%\"},variant:\"GXddFzNE4\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsxs(\"main\",{className:\"framer-16f3xm7\",\"data-framer-name\":\"content-container\",name:\"content-container\",children:[/*#__PURE__*/_jsx(\"article\",{className:\"framer-xov0io\",\"data-framer-name\":\"title-container\",name:\"title-container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1m4tmqx\",\"data-framer-name\":\"title\",name:\"title\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-uoml19\",\"data-styles-preset\":\"sxB0QWXsq\",children:\"Overlays and Watermarks\"})}),className:\"framer-1sphqpi\",fonts:[\"Inter\"],text:VrtX779jW,verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ixqubh\",\"data-framer-name\":\"content-container\",name:\"content-container\",children:/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\":componentPresets.props[\"C7FY6vrVJ\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"Y_Ds3xSoe\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:wMbPdCxbM,className:\"framer-1tn61xt\",\"data-framer-name\":\"content\",fonts:[\"Inter\"],name:\"content\",stylesPresetsClassNames:{a:\"framer-styles-preset-1kclasy\",blockquote:\"framer-styles-preset-5vamx7\",code:\"framer-styles-preset-1sm2jre\",h1:\"framer-styles-preset-1s6eeo9\",h2:\"framer-styles-preset-wlpqz9\",h3:\"framer-styles-preset-1i3vlwh\",h4:\"framer-styles-preset-1wf3gzr\",h5:\"framer-styles-preset-wxr0fc\",h6:\"framer-styles-preset-f6kfcp\",img:\"framer-styles-preset-176cz1q\",p:\"framer-styles-preset-e2mjnl\"},verticalAlignment:\"top\",withExternalLayout:true})})}),visible&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-fobbky\",\"data-framer-name\":\"demo-container\",name:\"demo-container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yc8ezc\",\"data-framer-name\":\"demo\",name:\"demo\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-jymap6-container\",\"data-framer-name\":\"demo\",name:\"demo\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:HKCGWm7LH,id:\"Tv60u7vmO\",layoutId:\"Tv60u7vmO\",name:\"demo\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"https://codesandbox.io/p/sandbox/github/polotno-project/polotno-site/tree/source/examples/polotno-theme?file=%2Fsrc%2Findex.js&layout=%257B%2522sidebarPanel%2522%253A%2522EXPLORER%2522%252C%2522rootPanelGroup%2522%253A%257B%2522direction%2522%253A%2522horizontal%2522%252C%2522contentType%2522%253A%2522UNKNOWN%2522%252C%2522type%2522%253A%2522PANEL_GROUP%2522%252C%2522id%2522%253A%2522ROOT_LAYOUT%2522%252C%2522panels%2522%253A%255B%257B%2522type%2522%253A%2522PANEL_GROUP%2522%252C%2522contentType%2522%253A%2522UNKNOWN%2522%252C%2522direction%2522%253A%2522vertical%2522%252C%2522id%2522%253A%2522cluayh76b00063b6j3crqd7cx%2522%252C%2522sizes%2522%253A%255B100%252C0%255D%252C%2522panels%2522%253A%255B%257B%2522type%2522%253A%2522PANEL_GROUP%2522%252C%2522contentType%2522%253A%2522EDITOR%2522%252C%2522direction%2522%253A%2522horizontal%2522%252C%2522id%2522%253A%2522EDITOR%2522%252C%2522panels%2522%253A%255B%257B%2522type%2522%253A%2522PANEL%2522%252C%2522contentType%2522%253A%2522EDITOR%2522%252C%2522id%2522%253A%2522cluayh76b00023b6jx34z7t02%2522%257D%255D%257D%252C%257B%2522type%2522%253A%2522PANEL_GROUP%2522%252C%2522contentType%2522%253A%2522SHELLS%2522%252C%2522direction%2522%253A%2522horizontal%2522%252C%2522id%2522%253A%2522SHELLS%2522%252C%2522panels%2522%253A%255B%257B%2522type%2522%253A%2522PANEL%2522%252C%2522contentType%2522%253A%2522SHELLS%2522%252C%2522id%2522%253A%2522cluayh76b00033b6jbax6c10q%2522%257D%255D%252C%2522sizes%2522%253A%255B100%255D%257D%255D%257D%252C%257B%2522type%2522%253A%2522PANEL_GROUP%2522%252C%2522contentType%2522%253A%2522DEVTOOLS%2522%252C%2522direction%2522%253A%2522vertical%2522%252C%2522id%2522%253A%2522DEVTOOLS%2522%252C%2522panels%2522%253A%255B%257B%2522type%2522%253A%2522PANEL%2522%252C%2522contentType%2522%253A%2522DEVTOOLS%2522%252C%2522id%2522%253A%2522cluayh76b00053b6jivia9ac7%2522%257D%255D%252C%2522sizes%2522%253A%255B100%255D%257D%255D%252C%2522sizes%2522%253A%255B50%252C50%255D%257D%252C%2522tabbedPanels%2522%253A%257B%2522cluayh76b00023b6jx34z7t02%2522%253A%257B%2522tabs%2522%253A%255B%257B%2522id%2522%253A%2522cluayh76b00013b6jkq6wge1l%2522%252C%2522mode%2522%253A%2522permanent%2522%252C%2522type%2522%253A%2522FILE%2522%252C%2522filepath%2522%253A%2522%252Fsrc%252Findex.js%2522%252C%2522state%2522%253A%2522IDLE%2522%257D%255D%252C%2522id%2522%253A%2522cluayh76b00023b6jx34z7t02%2522%252C%2522activeTabId%2522%253A%2522cluayh76b00013b6jkq6wge1l%2522%257D%252C%2522cluayh76b00053b6jivia9ac7%2522%253A%257B%2522tabs%2522%253A%255B%257B%2522id%2522%253A%2522cluayh76b00043b6j36c7uy6s%2522%252C%2522mode%2522%253A%2522permanent%2522%252C%2522type%2522%253A%2522UNASSIGNED_PORT%2522%252C%2522port%2522%253A0%252C%2522path%2522%253A%2522%252F%2522%257D%255D%252C%2522id%2522%253A%2522cluayh76b00053b6jivia9ac7%2522%252C%2522activeTabId%2522%253A%2522cluayh76b00043b6j36c7uy6s%2522%257D%252C%2522cluayh76b00033b6jbax6c10q%2522%253A%257B%2522tabs%2522%253A%255B%255D%252C%2522id%2522%253A%2522cluayh76b00033b6jbax6c10q%2522%257D%257D%252C%2522showDevtools%2522%253Atrue%252C%2522showShells%2522%253Afalse%252C%2522showSidebar%2522%253Atrue%252C%2522sidebarPanelSize%2522%253A15%257D\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10ss5oj\",\"data-framer-name\":\"loader\",name:\"loader\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1jvjtm5\",\"data-framer-name\":\"loader\",fill:\"black\",intrinsicHeight:200,intrinsicWidth:200,name:\"loader\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 200 200\"><circle fill=\"#4F68E8\" stroke=\"#4F68E8\" stroke-width=\"15\" r=\"15\" cx=\"40\" cy=\"100\"><animate attributeName=\"opacity\" calcMode=\"spline\" dur=\"2\" values=\"1;0;1;\" keySplines=\".5 0 .5 1;.5 0 .5 1\" repeatCount=\"indefinite\" begin=\"-.4\"/></circle><circle fill=\"#4F68E8\" stroke=\"#4F68E8\" stroke-width=\"15\" r=\"15\" cx=\"100\" cy=\"100\"><animate attributeName=\"opacity\" calcMode=\"spline\" dur=\"2\" values=\"1;0;1;\" keySplines=\".5 0 .5 1;.5 0 .5 1\" repeatCount=\"indefinite\" begin=\"-.2\"/></circle><circle fill=\"#4F68E8\" stroke=\"#4F68E8\" stroke-width=\"15\" r=\"15\" cx=\"160\" cy=\"100\"><animate attributeName=\"opacity\" calcMode=\"spline\" dur=\"2\" values=\"1;0;1;\" keySplines=\".5 0 .5 1;.5 0 .5 1\" repeatCount=\"indefinite\" begin=\"0\"/></circle></svg>',withExternalLayout:true})})]})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mrkcq9\",\"data-framer-name\":\"smiley-container\",name:\"smiley-container\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-gsy31k\",\"data-framer-name\":\"smiley_3\",fill:\"black\",intrinsicHeight:249,intrinsicWidth:1440,name:\"smiley_3\",svg:'<svg width=\"1440\" height=\"249\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path d=\"M1440 0s-439.27 126.534-722 126.349C437.227 126.165 0 0 0 0v249h1440V0Z\" fill=\"#4A51B2\"/><path d=\"M1440 0s-439.27 126.534-722 126.349C437.227 126.165 0 65.5 0 65.5V249h1440V0Z\" fill=\"#3F397B\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"matrix(-1 0 0 1 1440 0)\" d=\"M0 0h1440v249H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-90n4cl\",\"data-framer-name\":\"final-cta\",name:\"final-cta\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rdf93b\",\"data-framer-name\":\"container\",name:\"container\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1bh7tuf\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 422 287\"><g transform=\"translate(0.374 0.215)\" id=\"ss11700350988_1\"><path d=\"M 159.289 56.66 L 153.855 57.33 L 152.506 57.502 L 151.156 57.72 L 148.44 58.163 C 146.629 58.471 144.817 58.743 143.061 59.069 L 137.727 60.191 C 130.635 61.681 123.671 63.724 116.898 66.302 C 112.023 68.203 107.358 70.606 102.98 73.473 L 101.603 74.469 C 101.15 74.804 100.698 75.166 100.299 75.51 L 100.009 75.764 C 99.928 75.809 99.946 75.89 99.955 75.972 L 99.955 76.089 L 100.009 76.461 L 100.136 77.294 C 100.516 79.548 101.042 81.82 101.522 84.129 C 102.545 88.71 103.641 93.291 104.755 97.863 L 111.546 125.296 C 113.584 133.444 115.64 141.592 117.659 149.614 C 118.945 154.793 120.249 159.98 121.408 165.204 C 121.997 167.821 122.54 170.437 123.011 173.09 C 123.524 175.751 123.866 178.443 124.034 181.148 C 124.081 181.812 124.014 182.48 123.835 183.121 C 123.69 183.556 123.545 183.71 123.41 183.647 C 123.12 183.502 122.93 182.633 122.459 181.311 C 120.964 176.855 119.712 172.322 118.71 167.73 C 116.409 157.147 113.792 146.59 111.211 136.043 C 108.63 125.495 106.004 114.848 103.487 104.165 C 101.956 97.773 100.399 91.254 98.832 84.69 C 98.452 83.043 98.09 81.386 97.745 79.72 C 97.582 78.869 97.401 78.045 97.275 77.158 L 97.175 76.506 C 97.175 76.225 97.13 75.827 97.102 75.492 L 97.102 74.704 L 97.284 74.514 C 97.537 74.261 97.764 74.016 98.044 73.772 L 98.37 73.464 L 98.624 73.238 L 99.14 72.821 C 99.472 72.531 99.82 72.259 100.181 72.006 C 100.888 71.49 101.585 70.956 102.319 70.503 C 103.758 69.535 105.262 68.693 106.756 67.869 C 113.417 64.447 120.412 61.717 127.63 59.72 C 131.252 58.815 134.82 57.801 138.496 57.104 C 140.308 56.733 142.119 56.289 143.93 55.99 L 149.427 55.085 C 151.673 54.669 153.955 54.397 156.201 54.116 C 158.446 53.836 160.728 53.528 162.992 53.292 L 169.811 52.695 L 173.207 52.396 C 174.348 52.287 175.489 52.26 176.621 52.188 L 186.945 51.645 C 190.322 51.412 193.663 50.804 196.906 49.834 C 203.41 47.857 209.74 45.349 215.833 42.338 C 225.396 37.756 234.56 32.759 244.395 28.757 C 246.559 27.852 248.687 27.055 250.933 26.322 C 253.867 25.307 256.881 24.544 259.944 24.04 C 261.331 23.783 262.755 23.798 264.137 24.085 C 264.577 24.162 265.01 24.274 265.432 24.42 C 265.875 24.665 265.241 25.027 263.747 25.48 L 256.919 27.399 C 248.044 29.97 239.351 33.963 230.603 38.263 C 221.855 42.564 213.044 47.181 203.553 50.748 C 199.997 52.11 196.331 53.168 192.596 53.908 C 190.691 54.273 188.764 54.506 186.827 54.605 L 181.294 54.904 C 177.627 55.112 173.941 55.239 170.282 55.619 C 166.624 55.999 162.947 56.199 159.316 56.733 Z\" fill=\"var(--token-cc86d53e-a22e-4c8b-b2ae-03b995dee3d7, rgb(255, 255, 255))\"></path><path d=\"M 151.31 52.224 C 149.499 52.478 147.761 52.84 145.986 53.129 C 144.211 53.419 142.427 53.727 140.67 54.107 L 135.399 55.311 C 134.494 55.511 133.588 55.692 132.764 55.918 L 130.165 56.651 C 123.204 58.483 116.43 60.965 109.935 64.066 C 108.73 64.582 107.616 65.261 106.457 65.877 C 105.298 66.493 104.193 67.172 103.079 67.842 C 100.873 69.181 98.778 70.695 96.813 72.368 C 96.594 72.544 96.385 72.731 96.188 72.93 L 95.853 73.238 C 95.771 73.283 95.853 73.373 95.853 73.491 L 95.952 74.233 C 96.143 75.311 96.405 76.479 96.623 77.592 C 97.139 79.856 97.646 82.119 98.207 84.383 C 99.294 88.909 100.435 93.436 101.585 97.963 C 103.873 107.017 106.213 116.046 108.603 125.051 C 110.704 133.055 112.896 141.085 115.06 149.016 C 117.831 159.193 120.738 169.396 123.147 179.672 C 124.632 186.082 120.566 178.513 117.424 166.771 C 111.863 145.947 106.276 125.124 101.024 104.056 C 99.439 97.719 97.818 91.309 96.197 84.835 C 95.391 81.594 94.603 78.344 93.933 75.021 C 93.851 74.587 93.806 74.116 93.734 73.663 L 93.616 72.676 L 93.616 72.54 L 93.697 72.45 L 93.879 72.26 L 94.232 71.88 L 94.802 71.327 C 94.956 71.173 95.119 71.038 95.282 70.893 L 96.26 70.051 L 98.28 68.475 L 100.381 67.045 C 106.64 63.105 113.342 59.917 120.349 57.548 C 127.305 55.158 134.415 53.244 141.63 51.817 C 146.085 51.029 150.514 50.142 155.005 49.635 C 157.242 49.363 159.479 49.001 161.725 48.784 L 168.462 48.186 C 171.858 47.815 175.272 47.697 178.695 47.525 L 183.812 47.281 C 184.717 47.281 185.505 47.19 186.329 47.136 C 187.153 47.082 187.977 46.955 188.792 46.774 C 192.087 46.091 195.308 45.09 198.41 43.786 C 201.534 42.519 204.595 41.07 207.637 39.621 C 217.083 35.031 226.22 30.16 235.991 26.403 C 238.137 25.561 240.266 24.801 242.475 24.076 C 245.378 23.116 248.343 22.356 251.35 21.804 C 252.699 21.526 254.082 21.452 255.452 21.587 C 255.874 21.626 256.295 21.686 256.711 21.768 C 257.616 22.121 254.193 22.872 248.226 24.538 C 239.188 27.254 230.402 30.743 221.964 34.968 L 208.815 41.333 C 204.373 43.561 199.804 45.526 195.131 47.217 C 193.353 47.834 191.539 48.339 189.698 48.729 C 189.227 48.82 188.792 48.92 188.285 48.992 L 186.854 49.191 C 185.885 49.273 184.889 49.327 184.002 49.372 L 173.081 49.915 C 169.458 50.187 165.836 50.558 162.214 50.821 C 158.591 51.083 154.969 51.726 151.347 52.224 Z\" fill=\"var(--token-cc86d53e-a22e-4c8b-b2ae-03b995dee3d7, rgb(255, 255, 255))\"></path><path d=\"M 98.56 100.661 L 104.465 120.923 L 106.693 128.293 L 114.173 154.376 C 115.277 158.233 116.428 162.099 117.56 165.92 C 119.017 170.827 120.566 175.743 121.626 180.758 C 122.269 183.891 119.262 180.478 117.686 174.828 C 114.87 164.797 111.981 154.765 109.255 144.598 C 107.616 138.514 105.633 132.267 103.822 126.084 C 101.83 119.293 99.831 112.497 97.827 105.695 L 94.205 93.128 L 91.488 83.586 C 90.582 80.39 89.677 77.248 88.952 73.998 C 88.785 73.277 88.667 72.545 88.599 71.807 C 88.791 71.438 89.029 71.094 89.305 70.784 L 89.93 70.042 C 90.781 69.083 91.689 68.177 92.647 67.326 C 94.538 65.588 96.591 64.036 98.778 62.69 C 99.728 62.081 100.707 61.519 101.712 61.006 C 105.515 59.123 106.901 58.942 107.924 59.195 C 108.156 59.233 108.384 59.293 108.603 59.376 C 108.857 59.521 108.603 59.829 107.978 60.227 C 107.354 60.626 106.276 61.133 104.945 61.785 C 100.894 63.697 97.147 66.195 93.824 69.2 C 93.009 69.969 92.203 70.766 91.47 71.608 L 90.945 72.242 L 90.818 72.405 L 91.026 73.446 C 91.533 75.682 92.167 77.973 92.837 80.263 C 94.739 87.062 96.731 93.844 98.742 100.697 Z\" fill=\"var(--token-cc86d53e-a22e-4c8b-b2ae-03b995dee3d7, rgb(255, 255, 255))\"></path><path d=\"M 131.84 187.06 C 133.741 184.956 135.325 182.586 136.54 180.025 C 136.814 179.393 137.052 178.746 137.256 178.088 C 137.482 177.436 137.555 176.748 137.718 176.078 C 137.828 175.397 137.898 174.711 137.926 174.023 C 137.996 173.365 137.975 172.701 137.863 172.049 C 137.77 171.177 137.458 170.342 136.957 169.622 C 136.576 169.071 135.921 168.774 135.255 168.853 C 134.905 168.894 134.563 168.985 134.24 169.125 C 134.175 169.136 134.115 169.168 134.068 169.215 L 133.95 169.278 L 133.588 169.659 C 133.041 170.369 132.539 171.113 132.085 171.886 C 131.098 173.497 130.093 175.154 129.042 176.775 C 126.945 180.021 124.631 183.122 122.115 186.055 L 120.439 188.001 L 118.71 189.903 C 118.139 190.545 117.532 191.143 116.898 191.768 L 115.993 192.673 C 115.721 192.981 115.449 193.243 115.205 193.578 C 112.651 196.765 111.22 201.102 107.96 204.379 C 106.91 205.366 106.647 204.732 106.964 203.474 C 107.455 201.64 108.189 199.88 109.147 198.241 C 110.23 196.237 111.439 194.305 112.769 192.456 C 113.148 191.969 113.553 191.504 113.982 191.061 L 115.142 189.884 C 115.911 189.115 116.672 188.345 117.406 187.54 C 120.396 184.361 123.173 180.989 125.719 177.445 C 127.258 175.317 128.626 173.027 130.029 170.646 C 130.373 170.057 130.745 169.46 131.152 168.835 C 131.377 168.52 131.619 168.218 131.877 167.929 C 132.022 167.776 132.157 167.622 132.329 167.468 C 132.545 167.305 132.769 167.154 133 167.015 C 133.772 166.635 134.62 166.431 135.481 166.417 C 136.429 166.435 137.34 166.788 138.053 167.413 C 138.744 168.037 139.273 168.82 139.592 169.695 C 139.89 170.485 140.084 171.309 140.172 172.148 C 140.216 172.56 140.237 172.974 140.235 173.389 C 140.235 173.787 140.181 174.176 140.154 174.575 L 140.072 175.761 C 140.072 176.15 139.927 176.53 139.864 176.92 C 139.22 179.996 137.916 182.897 136.042 185.421 C 133.878 188.536 131.152 191.107 129.088 194.022 C 128.297 195.092 127.643 196.257 127.141 197.49 C 127.028 197.784 126.937 198.087 126.869 198.395 C 126.764 198.689 126.688 198.992 126.642 199.3 C 126.563 199.955 126.518 200.614 126.507 201.274 C 126.507 204.072 126.407 206.887 126.144 209.685 C 125.683 213.994 125.003 218.358 122.821 222.36 C 122.353 223.236 121.814 224.072 121.209 224.859 C 120.69 225.458 120.134 226.023 119.543 226.552 C 119.116 226.877 118.671 227.18 118.212 227.457 C 117.665 227.777 117.028 227.904 116.4 227.819 C 116.184 227.804 115.97 227.759 115.766 227.683 C 115.504 227.548 115.64 227.204 116.065 226.733 C 116.336 226.459 116.62 226.199 116.917 225.954 C 117.233 225.61 117.614 225.239 118.049 224.85 C 119.276 223.563 120.296 222.094 121.073 220.495 C 121.851 218.816 122.457 217.062 122.884 215.262 C 123.303 213.39 123.606 211.494 123.79 209.585 C 123.971 207.657 124.071 205.692 124.107 203.709 L 124.107 201.491 C 124.106 200.662 124.155 199.834 124.252 199.011 C 124.545 197.325 125.16 195.711 126.063 194.257 C 127.738 191.406 129.884 189.215 131.75 186.942 Z M 95.337 229.331 C 96.946 223.489 98.245 217.565 99.231 211.586 C 99.584 209.413 99.756 207.222 99.955 205.04 C 100.652 197.182 101.658 189.368 103.034 181.6 C 103.659 178.16 104.293 174.693 105.117 171.297 C 105.615 169.089 106.253 166.915 107.028 164.788 C 107.763 162.529 109.03 160.48 110.722 158.812 C 112.108 157.853 112.081 158.659 111.628 159.718 C 111.175 160.777 110.722 162.76 109.817 165.005 C 108.271 169.153 107.077 173.423 106.249 177.771 C 105.343 182.171 104.573 186.625 103.849 191.116 C 103.423 193.832 103.097 196.548 102.835 199.346 C 102.717 200.74 102.599 202.134 102.473 203.528 C 102.346 204.923 102.264 206.335 102.119 207.747 C 101.378 213.901 100.225 219.999 98.669 225.999 C 97.764 229.684 96.758 233.342 95.753 237 C 94.983 239.716 94.268 242.54 93.362 245.302 C 92.457 248.063 91.452 250.734 90.347 253.396 C 88.626 257.497 86.797 261.472 84.696 265.356 C 84.225 266.207 83.79 267.049 83.292 267.891 C 81.481 271.014 80.63 271.874 79.67 272.164 C 79.463 272.248 79.247 272.308 79.027 272.345 C 78.411 272.345 78.9 270.924 80.168 268.633 C 84.155 261.69 87.545 254.421 90.302 246.904 C 91.316 244.052 92.113 241.182 92.919 238.186 C 93.725 235.189 94.549 232.246 95.309 229.277 Z M 107.471 268.144 C 107.915 265.709 108.304 263.246 108.64 260.774 C 108.757 259.869 108.793 258.964 108.911 258.058 C 109.337 254.871 109.762 251.721 110.134 248.461 C 110.297 247.04 110.378 245.601 110.46 244.17 C 110.577 242.359 110.46 240.485 111.257 238.575 C 111.537 237.95 112.162 238.349 112.778 238.973 C 113.476 239.609 113.857 240.52 113.819 241.463 C 113.439 245.039 113.095 248.787 112.389 252.499 C 111.981 254.718 111.918 257.071 111.637 259.362 C 111.338 261.879 110.985 264.405 110.577 266.913 C 110.324 268.458 110.052 270.003 109.762 271.548 C 109.328 273.884 108.784 276.211 108.214 278.52 C 107.838 280.34 107.363 282.138 106.792 283.906 C 106.638 284.296 106.511 284.694 106.339 285.083 C 105.642 286.523 105.099 286.849 104.302 286.65 C 104.117 286.616 103.935 286.568 103.758 286.505 C 103.206 286.233 103.17 285.5 103.514 284.585 C 104.532 281.594 105.366 278.543 106.013 275.45 C 106.539 273.051 107.019 270.607 107.399 268.144 Z\" fill=\"var(--token-cc86d53e-a22e-4c8b-b2ae-03b995dee3d7, rgb(255, 255, 255))\"></path><path d=\"M 101.123 253.015 C 99.883 252.586 98.673 252.075 97.501 251.485 C 97.053 251.305 96.615 251.103 96.188 250.879 C 94.707 250.015 93.341 248.969 92.122 247.764 C 91.841 247.52 91.587 247.221 91.298 246.968 C 91.008 246.714 90.745 246.433 90.483 246.144 L 89.967 245.61 C 89.803 245.41 89.65 245.202 89.496 244.994 C 89.19 244.575 88.994 244.086 88.925 243.572 C 88.925 243.238 89.604 243.029 90.374 242.957 C 91.144 242.884 91.895 242.875 92.122 243.201 C 93.039 244.489 94.06 245.701 95.174 246.823 C 95.978 247.533 96.896 248.103 97.89 248.507 C 98.952 249.061 100.047 249.551 101.169 249.973 C 101.869 250.236 102.582 250.463 103.306 250.652 C 104.397 250.971 105.516 251.186 106.647 251.295 C 107.519 251.321 108.392 251.27 109.255 251.141 C 109.446 251.141 109.636 251.06 109.826 251.051 C 110.532 251.051 110.731 251.214 110.913 251.956 C 110.962 252.131 110.998 252.31 111.021 252.49 C 111.127 253.048 110.789 253.594 110.242 253.749 C 108.542 254.196 106.765 254.264 105.035 253.948 C 103.723 253.742 102.427 253.439 101.159 253.043 Z\" fill=\"var(--token-cc86d53e-a22e-4c8b-b2ae-03b995dee3d7, rgb(255, 255, 255))\"></path><path d=\"M 98.524 265.962 C 99.285 263.518 100.064 261.082 100.779 258.665 L 101.196 257.225 C 101.218 257.121 101.218 257.013 101.196 256.908 C 101.196 256.8 101.132 256.673 101.024 256.646 C 100.915 256.619 100.689 256.827 100.598 257.017 L 100.471 257.343 L 100.272 257.932 L 99.991 258.837 C 99.249 261.245 98.551 263.708 97.836 266.161 C 97.311 267.972 96.795 269.783 96.224 271.593 C 95.67 273.446 94.995 275.261 94.205 277.026 C 93.817 277.908 93.312 278.733 92.701 279.479 C 92.481 279.722 92.235 279.941 91.968 280.131 C 91.554 280.413 91.065 280.568 90.564 280.575 C 90.273 280.573 89.984 280.518 89.713 280.412 L 89.215 280.14 C 88.878 279.923 88.588 279.639 88.364 279.307 C 87.99 278.729 87.789 278.057 87.784 277.37 C 87.786 276.853 87.837 276.337 87.938 275.831 C 88.13 274.989 88.366 274.158 88.644 273.341 L 88.961 272.173 L 89.324 270.96 C 89.571 270.157 89.834 269.36 90.111 268.57 C 90.673 266.994 91.271 265.464 91.832 263.934 C 92.393 262.404 92.937 260.892 93.371 259.362 C 93.806 257.832 94.105 256.275 94.422 254.654 C 94.576 253.857 94.721 253.07 94.811 252.3 C 94.866 251.928 94.899 251.553 94.911 251.178 C 94.934 250.899 94.916 250.618 94.857 250.345 C 94.857 250.345 94.784 250.345 94.965 250.281 C 95.031 250.254 95.092 250.217 95.146 250.173 L 95.264 250.109 L 95.355 250.019 L 95.4 250.019 C 95.402 250.004 95.402 249.988 95.4 249.973 C 95.395 250.028 95.395 250.082 95.4 250.136 C 95.416 250.243 95.437 250.349 95.463 250.453 C 95.48 250.506 95.501 250.558 95.527 250.607 C 95.27 250.78 95.036 250.983 94.829 251.214 C 94.403 251.757 94.072 252.37 93.851 253.024 C 92.801 255.641 91.968 258.457 91.08 261.236 C 90.193 264.016 89.278 266.795 88.282 269.584 L 87.775 270.86 C 87.585 271.304 87.458 271.639 87.105 272.345 C 86.963 272.656 86.803 272.958 86.625 273.25 L 86.371 273.694 L 86.091 274.074 C 86 274.201 85.91 274.337 85.81 274.454 L 85.511 274.753 C 85.316 274.943 85.107 275.119 84.886 275.278 C 84.177 275.781 83.245 275.84 82.477 275.432 C 81.825 274.902 81.414 274.132 81.336 273.296 C 81.208 272.238 81.235 271.167 81.418 270.118 L 81.517 269.502 L 81.617 268.959 C 81.69 268.597 81.762 268.235 81.843 267.881 C 82.177 266.467 82.595 265.073 83.093 263.708 C 83.573 262.318 84.179 260.976 84.904 259.697 C 85.145 259.243 85.489 258.852 85.91 258.556 C 86.054 258.46 86.218 258.398 86.389 258.375 C 86.525 258.375 86.58 258.375 86.598 258.484 C 86.616 258.592 86.498 258.891 86.471 259.199 C 86.444 259.507 86.371 259.914 86.299 260.412 C 86.063 262.377 85.393 265.899 84.678 269.828 L 84.605 270.235 L 84.605 270.426 L 84.768 270.054 C 84.922 269.719 85.067 269.357 85.212 269.013 C 85.783 267.592 86.308 266.107 86.824 264.613 L 89.84 255.496 C 90.348 253.892 90.953 252.32 91.651 250.788 C 91.761 250.555 91.885 250.328 92.022 250.109 C 92.187 249.838 92.382 249.586 92.602 249.358 C 92.967 248.952 93.38 248.594 93.833 248.289 C 94.271 247.98 94.791 247.806 95.328 247.791 L 95.654 247.791 C 95.782 247.813 95.909 247.843 96.034 247.882 C 96.278 247.956 96.505 248.075 96.704 248.235 C 97.004 248.476 97.241 248.787 97.392 249.14 C 97.553 249.499 97.654 249.881 97.691 250.272 L 97.691 251.078 C 97.583 252.79 97.325 254.49 96.921 256.157 C 96.758 256.927 96.586 257.76 96.378 258.574 C 96.17 259.389 95.943 260.195 95.69 260.992 C 94.965 263.237 94.105 265.419 93.299 267.583 C 92.901 268.66 92.511 269.747 92.158 270.833 C 91.989 271.376 91.826 271.919 91.669 272.463 L 91.207 274.174 C 91.035 274.78 90.863 275.305 90.727 275.822 C 90.602 276.283 90.529 276.756 90.51 277.234 C 90.508 277.384 90.526 277.533 90.564 277.678 C 90.564 277.75 90.564 277.795 90.637 277.795 C 90.709 277.795 90.637 277.795 90.7 277.84 C 90.619 278.031 90.872 277.415 90.519 278.266 C 90.514 278.287 90.514 278.309 90.519 278.329 C 90.519 278.384 90.519 278.329 90.519 278.329 C 90.5 278.138 90.435 277.955 90.329 277.795 C 90.329 277.795 90.329 277.795 90.41 277.723 C 90.713 277.4 90.967 277.034 91.162 276.636 C 91.422 276.16 91.658 275.67 91.868 275.17 C 92.303 274.138 92.692 273.06 93.064 271.974 C 94.694 267.175 95.952 262.187 97.51 257.234 L 97.881 256.103 C 98.035 255.632 98.216 255.134 98.388 254.663 C 98.672 253.826 99.084 253.037 99.611 252.327 C 100.001 251.794 100.544 251.393 101.169 251.178 C 101.524 251.06 101.902 251.023 102.273 251.069 C 102.654 251.117 103.009 251.285 103.288 251.549 C 103.796 252.056 104.146 252.701 104.293 253.405 C 104.374 253.771 104.42 254.144 104.429 254.518 C 104.451 254.942 104.43 255.367 104.365 255.786 C 104.302 256.248 104.184 256.691 104.075 257.216 L 103.722 258.574 L 103.179 260.448 L 100.399 269.502 C 99.955 271.014 99.493 272.526 99.131 274.029 C 98.941 274.78 98.76 275.541 98.597 276.301 L 98.452 277.008 L 98.352 277.623 C 98.304 277.923 98.276 278.225 98.271 278.529 C 98.244 278.84 98.303 279.154 98.443 279.434 C 98.549 279.554 98.699 279.626 98.859 279.635 C 99.019 279.643 99.176 279.587 99.294 279.479 C 99.542 279.287 99.746 279.043 99.892 278.764 C 100.194 278.187 100.433 277.58 100.607 276.953 C 100.933 275.84 101.187 274.654 101.513 273.504 C 102.463 268.886 103.179 264.097 104.229 259.425 C 104.429 258.52 104.646 257.615 104.9 256.709 C 105.026 256.257 105.162 255.804 105.325 255.333 C 105.494 254.814 105.729 254.318 106.022 253.857 C 106.147 253.688 106.293 253.536 106.457 253.405 C 106.605 253.301 106.771 253.224 106.946 253.178 C 107.067 253.145 107.192 253.129 107.317 253.133 C 107.805 253.133 108.271 253.329 108.612 253.676 C 109.031 254.172 109.295 254.78 109.373 255.424 C 109.523 256.4 109.571 257.389 109.518 258.375 C 109.278 262.063 108.836 265.735 108.196 269.375 C 107.942 270.96 107.698 272.517 107.444 274.119 C 106.466 280.05 106.149 281.797 105.633 282.92 C 105.575 283.044 105.556 283.183 105.579 283.318 C 105.579 283.445 105.778 283.544 105.896 283.59 C 106.013 283.635 106.194 283.825 105.787 284.042 C 105.625 284.094 105.451 284.094 105.289 284.042 C 105.079 283.981 104.891 283.861 104.746 283.698 C 104.516 283.417 104.349 283.09 104.257 282.738 C 103.911 280.987 103.877 279.188 104.157 277.424 C 104.528 274.128 105.063 270.851 105.552 267.556 C 106.103 264.332 106.472 261.079 106.656 257.814 C 106.689 257.129 106.643 256.442 106.52 255.768 C 106.52 255.65 106.439 255.596 106.52 255.56 C 106.878 255.436 107.192 255.213 107.426 254.917 C 107.418 254.94 107.418 254.966 107.426 254.989 L 107.426 255.161 C 107.422 255.197 107.422 255.234 107.426 255.27 C 107.173 253.568 107.354 254.808 107.299 254.437 C 107.295 254.458 107.295 254.479 107.299 254.5 C 107.306 254.544 107.325 254.585 107.354 254.618 C 107.354 254.663 107.399 254.618 107.453 254.754 C 107.549 254.902 107.668 255.033 107.806 255.143 C 107.924 255.197 108.16 255.442 108.368 255.587 C 108.413 255.587 108.368 255.587 108.368 255.587 C 108.238 255.847 108.126 256.117 108.033 256.392 C 107.915 256.736 107.797 257.117 107.689 257.497 C 107.471 258.267 107.272 259.081 107.091 259.896 C 106.357 263.183 105.778 266.569 105.171 269.982 C 104.936 271.249 104.718 272.508 104.447 273.83 L 104.329 274.346 L 104.211 274.844 L 103.985 275.749 C 103.831 276.383 103.677 277.035 103.487 277.696 L 103.387 278.049 L 103.242 278.501 L 102.943 279.407 C 102.739 279.974 102.507 280.53 102.246 281.073 C 101.841 281.945 101.269 282.729 100.562 283.381 C 100.283 283.608 99.979 283.802 99.656 283.961 C 99.325 284.094 98.978 284.185 98.624 284.232 C 98.426 284.269 98.224 284.269 98.026 284.232 C 97.814 284.226 97.603 284.19 97.401 284.124 C 97.039 284.003 96.703 283.812 96.414 283.562 C 95.902 283.077 95.554 282.444 95.418 281.752 C 95.229 280.721 95.207 279.666 95.355 278.628 C 95.427 278.022 95.518 277.406 95.635 276.817 L 95.807 275.912 L 95.916 275.423 C 96.052 274.771 96.206 274.128 96.369 273.486 C 97.012 270.924 97.754 268.434 98.497 265.953 Z M 287.528 106.682 C 286.562 100.042 285.511 93.403 284.376 86.764 C 283.951 84.346 283.471 81.947 283.018 79.521 C 281.497 71.028 279.876 62.536 277.919 54.171 C 277.476 52.315 277.014 50.459 276.516 48.603 C 276.018 46.747 275.456 44.927 274.922 43.107 C 273.446 38.472 271.825 33.863 270.159 29.355 C 269.679 27.933 270.43 27.788 271.589 28.694 C 272.337 29.305 272.995 30.019 273.546 30.812 C 274.293 31.887 274.887 33.06 275.311 34.298 L 275.963 36.109 L 276.534 37.919 L 277.657 41.541 C 278.318 43.976 279.024 46.403 279.613 48.847 C 280.82 53.742 281.871 58.676 282.764 63.65 C 283.869 69.598 285.218 75.727 286.387 81.802 C 287.594 88.49 288.708 95.19 289.728 101.901 L 291.539 114.296 C 292.001 117.428 292.445 120.57 292.825 123.702 L 293.45 128.401 C 293.668 129.94 293.93 131.47 294.265 132.982 C 295.298 137.69 296.982 142.127 298.521 146.735 C 298.856 147.749 299.201 148.745 299.499 149.786 C 300.559 153.697 300.487 155.091 299.844 156.033 C 299.715 156.257 299.564 156.466 299.391 156.658 C 298.82 157.083 298.223 155.571 297.453 152.864 C 296.285 148.835 294.691 144.716 293.332 140.397 C 292.653 138.224 292.028 135.997 291.521 133.725 C 291.25 132.584 291.041 131.434 290.842 130.275 L 290.579 128.528 L 290.344 126.844 C 289.438 120.144 288.533 113.418 287.464 106.727 Z\" fill=\"var(--token-cc86d53e-a22e-4c8b-b2ae-03b995dee3d7, rgb(255, 255, 255))\"></path><path d=\"M 295.388 167.368 C 294.189 166.462 292.916 165.657 291.585 164.96 C 290.157 164.111 288.803 163.145 287.537 162.072 C 285.001 159.932 282.835 157.391 281.125 154.548 C 280.495 153.497 279.947 152.398 279.486 151.262 C 278.968 150.045 278.697 148.737 278.689 147.414 C 278.697 147.069 278.742 146.726 278.825 146.391 C 278.873 146.201 278.939 146.016 279.024 145.839 L 279.16 145.558 L 279.296 145.35 C 279.678 144.734 280.211 144.226 280.845 143.874 C 281.497 143.565 282.215 143.422 282.936 143.457 C 283.555 143.512 284.163 143.646 284.748 143.856 C 286.728 144.707 288.562 145.865 290.181 147.287 C 291.784 148.618 293.287 150.003 294.763 151.434 L 296.955 153.552 C 297.631 154.237 298.361 154.866 299.137 155.435 C 300.577 156.341 302.234 157.156 303.819 158.007 C 305.404 158.858 307.016 159.709 308.582 160.614 C 310.63 161.753 312.602 163.024 314.487 164.417 L 315.872 165.557 C 316.316 165.956 316.778 166.39 317.176 166.807 C 317.575 167.223 317.964 167.712 318.345 168.219 L 318.843 169.025 C 319.021 169.287 319.167 169.57 319.277 169.867 C 319.875 171.424 319.123 171.261 318.118 170.483 C 317.113 169.704 315.401 168.581 313.473 167.015 C 309.805 164.272 305.909 161.849 301.827 159.772 C 300.794 159.202 299.771 158.659 298.703 158.034 C 298.449 157.889 298.159 157.699 297.888 157.536 C 297.594 157.346 297.312 157.137 297.045 156.911 C 296.538 156.486 296.14 156.069 295.66 155.653 C 293.939 153.987 292.318 152.312 290.616 150.718 C 289.607 149.752 288.542 148.845 287.428 148.002 C 286.373 147.183 285.205 146.521 283.96 146.038 C 283.454 145.837 282.907 145.762 282.366 145.82 C 281.942 145.892 281.569 146.143 281.343 146.509 C 280.826 147.061 281.035 148.491 281.424 149.714 C 282.452 152.578 284.044 155.207 286.106 157.445 C 288.158 159.748 290.571 161.702 293.251 163.231 C 293.668 163.448 294.075 163.674 294.537 163.955 C 294.99 164.205 295.428 164.48 295.85 164.779 C 296.688 165.377 297.478 166.04 298.214 166.762 C 299.631 168.204 300.885 169.798 301.954 171.515 C 303.584 174.059 304.933 176.73 306.409 179.265 C 307.762 181.825 309.506 184.159 311.58 186.182 C 314.843 189.157 318.756 191.327 323.008 192.519 C 323.914 192.8 324.819 192.917 325.788 193.108 C 329.302 193.578 330.416 193.397 331.222 194.013 C 331.426 194.129 331.62 194.262 331.801 194.411 C 332.01 194.647 331.756 194.891 331.068 195.136 C 330.635 195.279 330.194 195.394 329.746 195.48 C 329.202 195.534 328.559 195.579 327.835 195.597 C 325.666 195.556 323.512 195.221 321.433 194.601 C 319.33 193.931 317.312 193.02 315.42 191.885 C 313.495 190.755 311.693 189.429 310.04 187.929 C 309.184 187.158 308.391 186.319 307.668 185.421 C 306.961 184.516 306.318 183.61 305.712 182.705 C 303.901 179.925 302.47 177.065 300.885 174.385 C 300.109 173.066 299.263 171.791 298.349 170.564 C 297.445 169.399 296.423 168.331 295.298 167.377 Z M 328.885 166.372 C 330.68 168.976 332.621 171.476 334.699 173.86 C 336.827 176.195 339.091 178.495 341.355 180.767 C 343.003 182.424 344.724 184.027 346.381 185.675 C 352.249 191.493 358.157 197.284 364.103 203.048 C 366.748 205.602 369.455 208.109 372.136 210.572 C 375.577 213.75 379.127 216.819 382.351 220.25 C 383.365 221.328 382.767 221.627 381.445 221.21 C 379.455 220.461 377.64 219.312 376.111 217.833 C 369.12 211.314 362.22 204.705 355.455 197.825 C 351.407 193.714 346.988 189.676 342.777 185.503 C 340.471 183.221 338.177 180.918 335.895 178.595 C 334.772 177.409 333.631 176.268 332.544 174.973 C 331.457 173.678 330.443 172.447 329.438 171.153 C 327.002 167.948 324.747 164.634 322.528 161.311 C 319.169 156.268 315.963 151.117 312.504 146.237 C 309.894 142.483 306.977 138.952 303.783 135.68 C 303.076 134.974 302.361 134.331 301.618 133.671 C 300.251 132.448 299.282 131.769 298.657 131.199 C 298.163 130.827 297.761 130.347 297.48 129.796 C 297.361 129.593 297.267 129.377 297.199 129.153 C 297.136 128.845 297.489 128.773 298.223 128.935 C 299.297 129.248 300.311 129.741 301.22 130.393 C 304.71 132.983 307.814 136.056 310.439 139.519 C 313.156 142.932 315.637 146.545 318.073 150.175 C 321.695 155.607 325.155 161.04 328.94 166.3 Z M 353.191 227.294 C 352.005 225.284 350.746 223.338 349.406 221.418 C 348.917 220.721 348.355 220.078 347.857 219.381 C 346.101 216.946 344.235 214.519 342.424 212.138 C 341.579 211.093 340.697 210.079 339.78 209.096 C 338.545 207.895 337.424 206.582 336.429 205.176 C 335.849 204.271 338.503 203.764 339.816 205.239 C 342.174 207.864 344.37 210.631 346.39 213.524 C 347.595 215.28 349.107 216.937 350.357 218.702 C 351.779 220.631 353.128 222.622 354.405 224.659 L 356.696 228.426 C 357.855 230.309 358.987 232.21 360.318 233.939 C 361.336 235.246 362.469 236.458 363.705 237.561 L 364.52 238.267 C 365.507 239.172 365.743 239.526 365.552 240.223 C 365.552 240.377 365.48 240.549 365.426 240.693 C 365.217 241.164 364.52 241.119 363.614 240.521 C 360.974 238.57 358.72 236.145 356.968 233.369 C 355.609 231.359 354.396 229.286 353.146 227.294 Z\" fill=\"var(--token-cc86d53e-a22e-4c8b-b2ae-03b995dee3d7, rgb(255, 255, 255))\"></path><path d=\"M 360.219 209.649 C 359.096 210.704 357.884 211.662 356.596 212.51 C 356.134 212.826 355.691 213.161 355.193 213.415 C 353.431 214.375 351.521 215.033 349.542 215.361 C 348.645 215.518 347.736 215.597 346.825 215.597 C 345.603 215.694 344.389 215.332 343.42 214.583 C 343.112 214.338 343.52 213.849 344.054 213.442 C 344.31 213.244 344.586 213.074 344.878 212.935 C 345.099 212.805 345.36 212.76 345.612 212.808 C 347.406 213.201 349.269 213.161 351.045 212.691 C 352.253 212.349 353.395 211.808 354.423 211.088 C 355.631 210.363 356.771 209.53 357.828 208.598 C 358.475 208.04 359.08 207.434 359.639 206.788 C 360.514 205.83 361.216 204.727 361.713 203.528 C 362.046 202.729 362.046 201.829 361.713 201.03 C 361.682 200.966 361.646 200.905 361.604 200.848 C 361.559 200.794 361.504 200.749 361.468 200.695 C 361.169 200.323 361.088 200.151 361.287 199.49 C 361.332 199.346 361.369 199.192 361.414 199.047 C 361.479 198.809 361.678 198.632 361.921 198.594 C 362.273 198.539 362.631 198.641 362.899 198.875 C 363.473 199.304 363.902 199.898 364.131 200.577 C 364.233 200.908 364.306 201.247 364.348 201.591 C 364.371 201.916 364.371 202.243 364.348 202.569 C 364.205 203.744 363.823 204.878 363.225 205.9 C 362.411 207.288 361.416 208.561 360.264 209.685 Z\" fill=\"var(--token-cc86d53e-a22e-4c8b-b2ae-03b995dee3d7, rgb(255, 255, 255))\"></path><path d=\"M 370.18 228.154 C 369.005 226.716 367.968 225.17 367.083 223.537 C 366.177 222.007 365.38 220.477 364.538 218.965 C 363.696 217.453 362.872 215.968 361.966 214.592 C 361.55 213.936 361.081 213.315 360.563 212.736 C 360.457 212.612 360.342 212.497 360.219 212.392 C 360.131 212.305 360.034 212.23 359.929 212.165 C 359.874 212.111 359.865 212.165 359.856 212.12 C 359.867 212.046 359.886 211.973 359.911 211.903 C 359.92 211.849 359.92 211.794 359.911 211.74 C 359.915 211.698 359.915 211.655 359.911 211.613 L 360.354 211.713 C 360.354 211.713 360.291 211.668 360.354 211.713 C 360.385 211.734 360.418 211.749 360.454 211.758 L 360.526 211.758 L 360.526 211.83 C 360.516 211.884 360.516 211.94 360.526 211.993 C 360.55 212.359 360.627 212.718 360.753 213.062 C 361.219 214.313 361.827 215.507 362.564 216.62 C 363.316 217.806 364.14 218.965 364.973 220.115 C 366.458 222.17 368.025 224.107 369.655 226.171 C 370.55 227.269 371.285 228.489 371.837 229.793 C 372.001 230.216 372.098 230.662 372.127 231.115 C 372.148 231.418 372.124 231.724 372.054 232.02 C 371.956 232.353 371.79 232.661 371.565 232.925 C 371.351 233.184 371.082 233.391 370.778 233.532 L 370.37 233.704 C 370.254 233.739 370.136 233.766 370.017 233.786 C 369.503 233.917 368.964 233.917 368.45 233.786 C 367.675 233.498 366.971 233.047 366.386 232.464 C 365.872 231.996 365.386 231.5 364.928 230.979 C 364.022 229.965 363.252 228.915 362.492 227.855 C 360.979 225.728 359.594 223.555 358.217 221.382 L 356.406 218.512 L 355.944 217.815 L 355.709 217.48 L 355.5 217.199 C 355.333 216.969 355.135 216.762 354.912 216.584 C 354.707 216.387 354.391 216.364 354.16 216.529 C 353.973 216.731 353.859 216.989 353.834 217.263 C 353.821 217.395 353.821 217.529 353.834 217.661 L 353.834 218.331 C 353.869 218.834 353.945 219.334 354.061 219.825 C 354.803 222.508 355.961 225.059 357.493 227.385 C 358.988 229.753 360.727 231.959 362.682 233.967 C 363.904 235.171 363.307 235.642 361.64 235.153 C 359.06 234.147 356.871 232.342 355.392 230.001 C 353.601 227.384 352.229 224.503 351.326 221.464 C 351.078 220.634 350.914 219.782 350.837 218.919 C 350.837 218.693 350.837 218.485 350.791 218.24 L 350.791 217.48 L 350.918 216.403 C 350.982 216.059 351.099 215.733 351.181 215.389 C 351.262 215.045 351.462 214.791 351.607 214.483 C 351.775 214.229 351.973 213.995 352.195 213.786 C 352.635 213.36 353.206 213.095 353.816 213.035 C 354.117 212.993 354.421 212.993 354.722 213.035 C 355.029 213.11 355.331 213.204 355.627 213.315 C 355.899 213.478 356.171 213.686 356.442 213.868 C 356.717 214.083 356.969 214.326 357.194 214.592 C 357.597 214.989 357.955 215.429 358.263 215.905 L 358.905 216.873 L 360.101 218.775 L 362.446 222.541 C 363.943 225.009 365.62 227.363 367.463 229.585 C 367.935 230.143 368.487 230.628 369.102 231.024 C 369.174 231.065 369.25 231.098 369.329 231.124 C 369.388 231.138 369.45 231.138 369.51 231.124 L 369.646 231.124 L 369.691 231.187 C 369.8 231.413 369.99 231.477 369.791 231.386 L 369.537 231.386 L 369.537 231.323 C 369.527 231.204 369.505 231.085 369.474 230.97 C 369.352 230.628 369.2 230.298 369.021 229.983 C 368.601 229.251 368.123 228.555 367.59 227.901 C 365.189 225.075 362.935 222.129 360.834 219.073 C 360.01 217.837 359.277 216.542 358.643 215.198 C 358.295 214.46 358.04 213.682 357.882 212.881 C 357.794 212.387 357.794 211.881 357.882 211.387 C 357.98 210.74 358.3 210.148 358.788 209.712 L 358.96 209.567 L 359.068 209.567 C 359.395 209.431 359.747 209.366 360.101 209.377 C 360.268 209.384 360.435 209.405 360.599 209.44 C 360.735 209.476 360.868 209.521 360.997 209.576 C 361.23 209.663 361.449 209.782 361.649 209.929 C 361.832 210.04 362.002 210.17 362.157 210.319 C 362.704 210.812 363.199 211.361 363.633 211.957 C 364.423 213.049 365.155 214.182 365.824 215.352 C 367.155 217.625 368.36 219.933 369.646 222.161 C 370.3 223.319 371.013 224.443 371.783 225.529 C 372.133 226.019 372.533 226.471 372.978 226.878 L 373.259 227.077 C 373.322 227.077 373.413 227.158 373.431 227.149 C 373.449 227.14 373.431 227.149 373.431 227.204 C 373.431 227.158 373.431 227.204 373.431 227.204 L 373.54 227.421 C 373.458 227.303 373.295 227.33 373.331 227.294 C 373.341 227.246 373.341 227.197 373.331 227.149 C 373.327 226.959 373.297 226.77 373.241 226.588 C 373.116 226.111 372.946 225.647 372.734 225.203 C 372.287 224.238 371.789 223.298 371.239 222.387 C 369.347 219.227 367.182 216.167 365.136 212.989 C 364.629 212.184 364.131 211.378 363.66 210.509 C 363.397 210.045 363.188 209.553 363.035 209.042 C 362.987 208.858 362.957 208.67 362.944 208.481 C 362.952 208.317 362.982 208.156 363.035 208.001 C 363.066 207.91 363.105 207.822 363.153 207.738 C 363.334 207.336 363.656 207.014 364.058 206.833 C 364.481 206.669 364.949 206.669 365.371 206.833 C 365.662 206.954 365.936 207.112 366.186 207.304 C 366.598 207.629 366.977 207.992 367.318 208.39 C 367.949 209.122 368.532 209.893 369.066 210.699 C 369.474 211.296 369.863 211.903 370.234 212.51 L 370.796 213.415 C 370.986 213.705 371.194 214.058 371.366 214.32 C 372.064 215.588 372.67 216.837 373.313 218.059 C 373.922 219.26 374.606 220.421 375.36 221.536 C 375.661 222.007 376.037 222.426 376.474 222.776 C 376.52 222.812 376.572 222.84 376.628 222.858 C 376.628 222.813 376.573 223.093 376.573 223.102 L 376.573 223.175 C 376.557 223.117 376.532 223.063 376.501 223.012 C 376.478 222.967 376.447 222.927 376.41 222.894 C 376.41 222.894 376.465 222.803 376.519 222.74 L 376.745 222.45 L 376.836 222.65 L 376.773 222.65 C 376.714 222.627 376.653 222.609 376.591 222.595 C 376.601 222.532 376.601 222.468 376.591 222.405 C 376.54 222.189 376.464 221.979 376.365 221.78 C 376.12 221.281 375.845 220.797 375.541 220.332 C 374.318 218.521 373.349 217.245 372.824 216.276 C 372.36 215.594 372.122 214.783 372.145 213.958 C 372.134 213.668 372.193 213.379 372.317 213.116 C 372.58 212.899 372.824 212.998 373.431 213.533 C 374.386 214.411 375.276 215.359 376.093 216.366 C 376.881 217.306 377.613 218.292 378.285 219.318 C 378.674 219.915 378.999 220.553 379.254 221.219 C 379.416 221.67 379.505 222.144 379.516 222.622 C 379.53 222.782 379.53 222.943 379.516 223.102 C 379.516 223.274 379.444 223.455 379.39 223.627 C 379.242 224.015 379.013 224.366 378.72 224.659 L 378.991 224.334 C 378.868 224.522 378.735 224.703 378.593 224.877 C 378.4 225.092 378.178 225.278 377.932 225.429 C 377.627 225.622 377.284 225.749 376.927 225.8 C 376.578 225.847 376.224 225.822 375.885 225.728 C 375.611 225.663 375.348 225.556 375.106 225.411 C 374.921 225.306 374.745 225.185 374.581 225.049 C 374.301 224.83 374.044 224.584 373.811 224.315 C 373.076 223.447 372.429 222.507 371.882 221.509 C 370.823 219.698 369.944 217.752 369.03 216.022 C 368.912 215.805 368.803 215.597 368.686 215.407 L 368.314 214.8 L 367.499 213.496 C 366.965 212.654 366.413 211.83 365.842 211.088 C 365.561 210.729 365.259 210.388 364.937 210.065 C 364.813 209.931 364.68 209.807 364.538 209.694 C 364.475 209.63 364.43 209.612 364.384 209.567 L 364.339 209.567 L 364.384 209.467 C 364.586 209.133 364.681 208.744 364.656 208.354 C 364.71 208.455 364.784 208.545 364.873 208.616 C 364.963 208.708 365.067 208.785 365.181 208.843 C 365.327 208.953 365.485 209.048 365.652 209.123 L 364.131 208.444 C 364.199 208.486 364.277 208.511 364.357 208.517 C 364.428 208.535 364.503 208.535 364.574 208.517 L 364.991 208.517 C 365.134 208.505 365.276 208.483 365.417 208.453 L 365.616 208.39 L 365.752 208.345 L 365.752 208.399 C 365.752 208.399 365.752 208.508 365.824 208.589 C 365.897 208.671 365.897 208.752 365.951 208.852 C 366.742 210.316 367.615 211.734 368.568 213.098 L 371.502 217.498 C 372.48 219.001 373.449 220.504 374.355 222.124 C 374.826 222.966 375.249 223.834 375.622 224.723 C 375.838 225.248 375.998 225.794 376.102 226.353 C 376.179 226.724 376.207 227.105 376.184 227.484 C 376.155 227.754 376.103 228.02 376.03 228.281 C 375.907 228.604 375.739 228.909 375.532 229.186 L 375.478 229.259 L 375.405 229.322 C 375.157 229.535 374.89 229.726 374.608 229.892 C 374.258 230.04 373.889 230.137 373.512 230.182 C 373.174 230.18 372.837 230.14 372.507 230.064 C 372.263 229.974 372.018 229.874 371.783 229.766 C 371.167 229.397 370.613 228.933 370.144 228.39 Z M 296.746 143.231 L 295.035 137.057 C 294.827 136.305 294.564 135.572 294.374 134.811 C 293.668 132.159 293.006 129.479 292.4 126.79 C 292.155 125.586 291.829 124.4 291.594 123.168 C 291.449 122.399 291.232 121.638 291.159 120.832 C 291.114 120.425 291.078 120.027 291.05 119.628 C 291.023 119.23 291.114 118.786 291.168 118.37 C 291.222 117.953 291.675 118.017 292.074 118.451 C 292.567 118.982 292.884 119.653 292.979 120.371 C 293.342 123.34 294.084 126.428 294.682 129.542 C 295.053 131.416 295.687 133.299 296.212 135.182 L 297.96 141.384 L 299.047 145.205 C 299.581 147.142 300.124 149.089 300.659 151.008 C 301.084 152.502 301.564 153.951 301.945 155.463 C 302.017 155.798 302.108 156.124 302.18 156.468 C 302.295 156.923 302.323 157.396 302.261 157.862 C 302.224 158.122 302.075 158.354 301.854 158.496 C 301.768 158.573 301.67 158.637 301.564 158.686 C 301.229 158.794 300.894 158.305 300.722 157.463 C 300.088 154.928 299.255 152.176 298.485 149.415 L 296.674 143.231 Z M 72.444 163.566 L 77.488 161.664 C 78.103 161.438 78.692 161.148 79.299 160.922 L 85.81 158.586 C 86.77 158.233 87.712 157.826 88.635 157.4 C 89.791 156.794 91.004 156.306 92.258 155.942 C 92.638 155.852 92.846 156.377 92.747 157.011 C 92.655 157.732 92.21 158.36 91.56 158.686 C 89.109 159.749 86.592 160.657 84.026 161.402 C 82.477 161.845 80.974 162.579 79.444 163.212 L 74.391 165.15 L 71.284 166.372 C 69.727 167.006 68.16 167.622 66.648 168.328 C 65.48 168.889 64.393 169.559 63.306 170.202 C 63.062 170.338 62.844 170.501 62.609 170.636 C 61.703 171.153 61.504 171.143 60.943 170.818 C 60.816 170.736 60.68 170.673 60.562 170.591 C 60.367 170.465 60.291 170.217 60.381 170.003 C 60.435 169.852 60.515 169.711 60.617 169.586 C 60.74 169.427 60.883 169.284 61.042 169.161 C 63.012 167.748 65.139 166.569 67.381 165.648 C 69.039 164.915 70.732 164.245 72.407 163.557 Z M 75.695 185.43 C 77.572 187.199 79.456 188.958 81.345 190.708 C 82.043 191.342 82.776 191.931 83.464 192.573 C 85.9 194.819 88.318 197.1 90.782 199.309 C 91.877 200.296 93.018 201.238 94.15 202.161 C 95.663 203.265 97.094 204.475 98.434 205.783 C 99.231 206.643 96.749 207.304 95.074 205.918 C 92.122 203.465 89.26 200.912 86.525 198.159 C 84.886 196.521 83.012 195.018 81.255 193.434 L 75.504 188.146 L 71.991 184.869 L 66.639 179.953 C 65.262 178.676 63.831 177.508 62.464 176.223 C 62.156 175.942 61.857 175.67 61.558 175.372 C 60.49 174.231 60.263 173.651 60.58 173.036 C 60.638 172.897 60.718 172.769 60.816 172.655 C 61.178 172.375 61.721 172.592 62.464 173.307 C 64.837 175.435 67.436 177.762 69.971 180.125 L 75.695 185.385 Z\" fill=\"var(--token-cc86d53e-a22e-4c8b-b2ae-03b995dee3d7, rgb(255, 255, 255))\"></path><path d=\"M 73.449 187.196 C 75.314 188.907 77.189 190.618 79.081 192.302 L 81.191 194.113 C 83.627 196.294 86.045 198.485 88.499 200.631 C 89.595 201.537 90.727 202.496 91.85 203.347 C 93.344 204.437 94.769 205.62 96.115 206.887 C 96.93 207.72 94.612 208.245 92.955 206.887 C 90.021 204.515 87.168 202.044 84.415 199.4 C 82.776 197.815 80.911 196.358 79.163 194.819 L 73.431 189.703 L 69.926 186.526 L 64.646 181.763 C 63.27 180.532 61.866 179.382 60.517 178.142 C 60.218 177.87 59.919 177.599 59.611 177.309 C 58.552 176.195 58.326 175.634 58.588 175.055 C 58.638 174.931 58.705 174.815 58.787 174.711 C 59.104 174.439 59.575 174.711 60.345 175.399 L 67.771 182.08 L 73.458 187.205 Z\" fill=\"var(--token-cc86d53e-a22e-4c8b-b2ae-03b995dee3d7, rgb(255, 255, 255))\"></path><path d=\"M 72.552 187.838 C 74.418 189.504 76.292 191.17 78.185 192.809 L 80.295 194.556 C 82.722 196.675 85.14 198.802 87.594 200.894 C 88.69 201.799 89.822 202.704 90.945 203.565 C 92.44 204.614 93.864 205.76 95.21 206.996 C 96.016 207.802 93.725 208.372 92.067 207.077 C 89.133 204.778 86.281 202.378 83.537 199.834 C 81.898 198.295 80.032 196.883 78.285 195.389 L 72.552 190.419 L 69.057 187.322 L 63.777 182.614 C 62.41 181.41 61.06 180.297 59.666 179.065 C 59.367 178.803 59.068 178.531 58.76 178.251 C 57.71 177.155 57.474 176.594 57.746 176.023 C 57.792 175.898 57.859 175.782 57.945 175.679 C 58.262 175.417 58.724 175.679 59.485 176.349 L 66.883 182.85 L 72.561 187.838 Z M 135.318 83.577 C 132.942 84.067 130.604 84.721 128.318 85.532 C 126.029 86.375 123.794 87.357 121.626 88.475 C 120.041 89.29 118.519 90.231 117.025 91.191 L 116.346 91.625 L 116.21 91.716 L 116.21 92.096 L 116.382 92.676 L 116.717 93.826 L 118.085 98.425 L 120.801 107.632 C 121.616 110.348 122.504 113.064 123.391 115.781 C 124.523 119.212 125.773 122.634 126.642 126.156 C 127.186 128.347 124.324 126.256 123.02 122.281 C 120.756 115.246 118.61 108.166 116.681 100.969 C 116.092 98.823 115.431 96.65 114.743 94.459 L 114.227 92.83 L 113.829 91.562 L 113.729 91.218 L 113.675 91.046 C 113.675 91.046 113.602 90.919 113.675 90.901 L 114.245 90.467 L 114.825 90.05 L 115.314 89.715 L 116.038 89.235 C 116.536 88.918 117.025 88.611 117.523 88.33 C 121.908 85.717 126.619 83.693 131.533 82.309 C 134.591 81.45 137.728 80.904 140.896 80.68 C 145.578 80.299 150.287 80.218 154.924 79.983 C 158.464 79.827 161.992 79.47 165.492 78.914 C 166.234 78.76 166.977 78.624 167.71 78.434 C 168.444 78.244 168.951 78.127 169.395 77.982 C 169.621 77.909 169.83 77.855 170.02 77.81 C 170.21 77.764 170.355 77.692 170.509 77.656 C 170.76 77.584 171.018 77.536 171.278 77.511 C 171.483 77.479 171.69 77.479 171.894 77.511 C 172.088 77.521 172.282 77.542 172.474 77.574 C 172.736 77.665 172.7 77.945 172.302 78.48 C 172.202 78.597 172.084 78.733 171.94 78.878 L 171.432 79.231 C 171.242 79.358 171.034 79.485 170.799 79.62 C 170.563 79.756 170.319 79.838 170.047 79.946 C 168.469 80.551 166.829 80.979 165.157 81.223 C 163.5 81.513 161.833 81.676 160.158 81.829 C 156.807 82.11 153.439 82.228 150.079 82.382 C 147.579 82.49 145.089 82.608 142.599 82.771 C 140.166 82.906 137.745 83.209 135.354 83.676 Z M 158.7 116.623 C 162.946 116.078 167.151 115.252 171.288 114.151 C 172.713 113.705 174.091 113.116 175.399 112.394 C 175.661 112.232 175.942 112.078 176.196 111.906 L 176.92 111.344 L 177.518 110.711 C 177.59 110.62 177.699 110.43 177.726 110.403 L 177.817 110.294 L 177.817 110.14 L 177.726 109.697 L 177.509 108.673 L 177.065 106.636 L 175.254 98.488 C 174.711 96.08 174.095 93.672 173.443 91.3 C 172.628 88.267 171.731 85.197 171.079 82.192 C 171.034 82.05 171.034 81.898 171.079 81.757 C 171.099 81.705 171.126 81.656 171.161 81.612 L 171.242 81.549 C 171.342 81.485 171.369 81.458 171.342 81.485 C 171.315 81.513 171.297 81.485 171.342 81.485 L 171.632 81.485 C 171.838 81.555 172.027 81.669 172.184 81.82 C 173.259 82.842 174.014 84.154 174.357 85.596 C 175.997 91.843 177.409 98.117 178.623 104.509 C 178.804 105.459 179.012 106.419 179.22 107.388 L 179.546 108.836 L 179.709 109.561 L 179.836 110.104 C 179.898 110.298 179.934 110.498 179.945 110.701 L 179.311 111.725 C 179.158 111.972 178.975 112.2 178.768 112.404 C 178.394 112.831 177.975 113.216 177.518 113.553 C 177.083 113.888 176.612 114.151 176.16 114.459 C 175.707 114.767 175.254 114.957 174.738 115.156 C 172.659 116.006 170.507 116.664 168.308 117.12 C 166.144 117.609 163.98 118.026 161.815 118.334 L 153.846 119.583 C 149.842 120.155 145.874 120.962 141.965 122 C 139.026 122.811 136.216 124.03 133.615 125.622 C 133.054 125.966 132.565 126.373 132.031 126.744 C 130.156 128.238 129.73 128.809 128.906 128.872 C 128.727 128.902 128.545 128.92 128.363 128.926 C 128.1 128.926 128.055 128.619 128.227 128.13 C 128.343 127.816 128.485 127.513 128.653 127.224 C 128.915 126.863 129.197 126.515 129.495 126.183 C 131.653 124.087 134.226 122.465 137.048 121.421 C 139.84 120.351 142.714 119.506 145.642 118.895 C 149.97 117.944 154.335 117.32 158.646 116.623 Z M 240.981 152.538 C 239.403 152.977 237.856 153.525 236.353 154.177 C 235.602 154.503 234.85 154.856 234.089 155.218 C 233.463 155.587 232.776 155.842 232.061 155.97 C 231.915 155.973 231.769 155.958 231.626 155.924 C 231.474 155.897 231.34 155.809 231.255 155.68 L 230.703 154.965 L 229.19 150.438 L 227.913 146.49 C 227.243 144.345 226.519 142.208 225.921 140.035 C 225.423 138.225 224.934 136.414 224.527 134.549 C 224.309 133.643 224.128 132.738 223.938 131.778 L 223.684 130.375 L 223.612 130.013 L 223.539 129.506 L 223.386 128.492 C 223.408 128.151 223.469 127.814 223.567 127.487 C 223.842 127.251 224.177 127.097 224.536 127.043 C 224.934 126.971 225.387 126.935 225.776 126.889 L 226.555 126.826 C 227.596 126.735 228.62 126.645 229.643 126.536 C 231.671 126.354 233.682 126.012 235.656 125.513 C 236.45 125.296 237.219 124.992 237.947 124.608 L 240.22 123.295 C 241.751 122.39 243.308 121.566 244.884 120.796 C 246.928 119.769 249.047 118.897 251.223 118.189 C 253.42 117.459 255.718 117.077 258.033 117.057 C 259.491 117.057 259.246 117.646 258.114 118.234 C 256.367 119.067 254.549 119.743 252.681 120.253 C 248.437 121.589 244.362 123.412 240.537 125.685 L 239.016 126.536 C 238.435 126.838 237.829 127.089 237.205 127.288 C 236.049 127.652 234.869 127.933 233.673 128.13 C 231.337 128.519 229.009 128.7 226.709 128.854 L 225.975 128.899 L 225.767 128.899 C 225.692 128.886 225.616 128.886 225.541 128.899 C 225.532 128.968 225.532 129.038 225.541 129.107 L 225.595 129.524 L 225.595 129.832 L 225.668 130.239 C 225.776 130.791 225.867 131.344 225.994 131.896 C 226.229 133.01 226.501 134.114 226.772 135.219 C 227.343 137.437 227.986 139.646 228.647 141.837 C 229.227 143.811 229.851 145.766 230.458 147.731 L 232.269 153.163 L 232.36 153.471 C 232.45 153.525 232.559 153.471 232.659 153.407 L 232.948 153.281 L 233.546 152.991 C 234.452 152.538 235.439 152.086 236.408 151.714 C 238.215 150.984 240.077 150.396 241.977 149.958 C 242.883 149.741 243.888 149.569 244.848 149.433 C 245.808 149.297 246.795 149.234 247.718 149.125 C 250.549 148.869 253.347 148.326 256.068 147.504 C 258.721 146.653 261.402 145.467 263.24 143.521 C 263.399 143.355 263.545 143.176 263.675 142.987 C 263.765 142.869 263.874 142.733 263.792 142.57 L 263.466 141.095 C 263.222 140.017 262.977 138.94 262.742 137.871 C 262.244 135.726 261.755 133.589 261.266 131.443 C 261.049 130.538 260.831 129.578 260.614 128.628 C 259.853 125.079 259.763 123.92 260.179 123.051 C 260.254 122.847 260.351 122.653 260.469 122.471 C 260.84 122.046 261.492 123.377 262.153 125.993 C 263.131 129.805 264.046 133.734 264.924 137.763 C 265.142 138.768 265.368 139.764 265.586 140.778 L 265.966 142.588 L 266.011 142.96 C 266.011 143.077 266.075 143.213 266.011 143.313 C 265.903 143.541 265.779 143.762 265.64 143.974 C 265.52 144.169 265.387 144.357 265.241 144.535 C 265.142 144.653 265.042 144.788 264.933 144.897 C 263.333 146.547 261.396 147.834 259.256 148.672 C 256.264 149.89 253.125 150.709 249.919 151.108 C 248.352 151.316 246.704 151.452 245.282 151.624 C 243.814 151.823 242.361 152.125 240.936 152.529 Z M 238.59 211.414 C 234.524 212.845 230.44 214.284 226.356 215.642 C 222.272 217 218.034 218.177 213.823 219.209 C 210.753 219.961 207.683 220.721 204.577 221.31 C 193.624 223.515 182.454 224.448 171.288 224.089 C 166.316 223.944 161.368 223.338 156.508 222.278 C 153.368 221.607 150.306 220.612 147.371 219.309 C 144.404 217.991 141.678 216.189 139.302 213.976 C 137.835 212.564 138.605 212.247 140.308 212.754 C 142.849 213.666 145.332 214.733 147.742 215.95 C 153.341 218.525 159.337 220.129 165.474 220.694 C 168.591 221.062 171.726 221.27 174.865 221.319 C 178.016 221.373 181.204 221.319 184.373 221.174 C 192.165 220.657 199.902 219.516 207.511 217.761 C 211.713 216.855 215.896 215.823 220.026 214.628 C 224.155 213.433 228.221 212.003 232.315 210.581 L 247.374 205.194 C 254.972 202.478 262.633 199.762 270.222 197.136 C 276.126 195.118 281.886 193.026 287.89 191.36 C 289.212 190.998 290.507 190.645 291.884 190.355 C 293.709 189.9 295.592 189.717 297.471 189.812 C 298.451 189.826 299.375 190.269 299.998 191.025 C 300.201 191.281 300.299 191.605 300.269 191.931 C 300.215 192.103 300.052 192.13 299.889 192.148 C 299.726 192.166 299.509 192.148 299.183 192.148 C 297.933 192.184 296.688 192.32 295.461 192.555 C 292.789 193.066 290.147 193.719 287.546 194.511 C 284.874 195.299 282.185 196.159 279.477 197.046 C 274.044 198.857 268.61 200.731 263.104 202.677 L 238.654 211.486 Z M 135.916 138.858 C 136.284 139.467 136.379 140.203 136.178 140.886 C 136.129 141.072 136.108 141.264 136.115 141.457 C 136.12 141.508 136.156 141.551 136.205 141.565 C 136.492 141.55 136.764 141.434 136.975 141.239 C 137.654 140.696 138.297 139.827 139.13 139.012 C 139.521 138.616 139.966 138.277 140.453 138.007 C 140.754 137.844 141.082 137.737 141.422 137.69 C 141.722 137.645 142.027 137.645 142.327 137.69 C 142.898 137.763 143.369 137.908 143.794 137.998 L 144.419 138.116 C 144.597 138.135 144.776 138.135 144.953 138.116 C 145.6 138.033 146.219 137.804 146.764 137.446 C 147.426 137.066 148.105 136.631 148.856 136.215 C 149.26 135.997 149.681 135.812 150.115 135.662 C 150.358 135.582 150.606 135.518 150.858 135.472 C 150.996 135.462 151.136 135.462 151.274 135.472 L 151.627 135.472 C 152.387 135.483 153.146 135.444 153.9 135.355 C 155.621 135.199 157.276 134.621 158.718 133.671 C 158.845 133.598 158.954 133.48 159.098 133.462 C 159.488 133.408 159.868 133.879 159.841 134.368 C 159.841 134.485 159.841 134.666 159.787 134.703 C 159.189 135.065 158.999 135.997 158.247 136.278 C 156.885 136.852 155.464 137.274 154.009 137.536 C 153.43 137.613 152.845 137.641 152.261 137.618 L 151.709 137.573 L 151.283 137.573 C 151.029 137.556 150.773 137.59 150.532 137.672 C 150.153 137.808 149.787 137.974 149.436 138.17 C 148.911 138.442 148.25 138.858 147.407 139.302 C 146.934 139.561 146.433 139.764 145.913 139.908 C 145.593 140.005 145.26 140.048 144.926 140.035 C 144.622 140.03 144.319 139.997 144.021 139.936 C 142.898 139.727 141.82 139.311 141.304 139.601 C 140.499 140.097 139.77 140.707 139.139 141.411 C 138.769 141.779 138.366 142.113 137.935 142.407 C 137.47 142.746 136.916 142.941 136.341 142.969 C 135.702 143.021 135.102 142.656 134.856 142.063 C 134.777 141.808 134.759 141.539 134.802 141.276 C 134.824 141.114 134.857 140.953 134.901 140.796 C 134.988 140.505 135.094 140.221 135.218 139.945 C 135.463 139.601 135.653 139.329 135.916 138.858 Z M 138.469 149.089 C 138.572 149.279 138.707 149.451 138.868 149.596 C 138.94 149.596 138.986 149.686 139.049 149.686 L 139.13 149.686 C 139.194 149.686 139.176 149.641 139.239 149.578 L 139.293 149.523 C 139.353 149.514 139.415 149.514 139.475 149.523 C 140.073 149.512 140.666 149.405 141.231 149.207 L 141.657 149.053 L 141.711 149.053 C 141.784 149.243 141.566 148.645 141.865 149.469 C 141.828 149.348 141.783 149.231 141.729 149.116 C 141.729 149.025 141.729 149.116 141.729 149.116 L 141.847 149.016 C 142.055 148.835 142.3 148.591 142.544 148.346 C 142.992 147.889 143.474 147.465 143.984 147.079 L 144.238 146.916 C 144.355 146.84 144.479 146.776 144.609 146.726 C 144.855 146.571 145.135 146.478 145.424 146.454 C 145.788 146.485 146.149 146.549 146.502 146.644 C 147.57 146.88 148.576 147.278 149.164 147.043 C 150.084 146.822 150.972 146.488 151.809 146.047 C 152.334 145.784 152.868 145.504 153.42 145.196 C 153.947 144.866 154.509 144.596 155.096 144.39 C 155.146 144.368 155.197 144.35 155.25 144.336 C 155.317 144.344 155.381 144.366 155.44 144.399 C 155.769 144.514 155.962 144.854 155.893 145.196 C 155.893 145.277 155.893 145.404 155.847 145.431 C 155.44 145.648 155.413 146.445 155.005 146.653 C 154.226 147.016 153.547 147.559 152.723 148.093 C 152.389 148.287 152.033 148.442 151.664 148.555 C 151.169 148.683 150.667 148.78 150.16 148.844 C 149.988 148.844 149.662 148.926 149.255 148.971 L 148.811 148.971 C 148.644 148.963 148.478 148.945 148.313 148.917 C 148.007 148.867 147.704 148.798 147.407 148.709 C 146.828 148.546 146.194 148.337 145.596 148.229 C 145.491 148.22 145.385 148.22 145.279 148.229 C 145.247 148.215 145.211 148.215 145.18 148.229 C 144.926 148.396 144.687 148.584 144.464 148.79 C 143.948 149.243 143.477 149.695 142.87 150.184 C 142.798 150.248 142.698 150.311 142.608 150.374 C 142.489 150.439 142.365 150.494 142.237 150.537 C 142.064 150.592 141.901 150.646 141.738 150.682 C 141.441 150.759 141.138 150.816 140.833 150.854 C 140.343 150.918 139.847 150.918 139.357 150.854 C 139.067 150.82 138.788 150.721 138.542 150.565 C 138.301 150.382 138.149 150.105 138.125 149.804 C 138.121 149.648 138.152 149.494 138.216 149.351 C 138.292 149.256 138.377 149.168 138.469 149.089 Z M 154.172 190.953 C 154.011 190.577 154.14 190.14 154.48 189.912 C 154.863 189.62 155.383 189.584 155.802 189.821 C 156.317 190.114 156.786 190.48 157.197 190.908 L 157.323 191.034 L 157.378 191.034 L 157.477 190.971 C 158.267 190.451 158.976 189.816 159.578 189.088 C 159.863 188.728 160.191 188.405 160.556 188.128 L 160.901 187.847 C 161.045 187.739 161.236 187.585 161.408 187.476 C 161.733 187.259 162.106 187.122 162.494 187.078 C 162.857 187.037 163.222 187.141 163.509 187.368 C 163.794 187.598 163.994 187.916 164.079 188.273 C 164.135 188.487 164.174 188.705 164.197 188.925 L 164.197 189.006 L 164.115 188.943 L 163.771 188.717 L 163.427 188.49 L 163.255 188.382 C 163.255 188.119 163.092 190.355 163.155 189.405 C 163.169 189.36 163.169 189.313 163.155 189.269 C 163.119 189.206 163.088 189.139 163.065 189.07 C 163.038 188.981 163.002 188.896 162.956 188.816 C 162.921 188.731 162.879 188.649 162.829 188.572 C 162.739 188.409 162.775 188.463 162.775 188.454 L 162.866 188.454 L 163.418 188.11 C 164.801 187.213 166.308 186.523 167.892 186.064 C 168.324 185.949 168.767 185.876 169.214 185.847 C 169.449 185.833 169.685 185.833 169.92 185.847 L 170.473 185.847 C 171.147 185.877 171.822 185.822 172.483 185.684 C 173.224 185.501 173.918 185.165 174.52 184.697 L 176.495 183.13 C 176.603 183.04 176.712 182.904 176.857 182.877 C 177.264 182.786 177.69 183.221 177.762 183.782 C 177.762 183.909 177.826 184.09 177.762 184.126 C 177.246 184.561 177.346 185.539 176.748 185.937 C 176.15 186.335 175.634 186.752 174.991 187.15 C 174.334 187.568 173.612 187.874 172.854 188.056 C 172.261 188.194 171.651 188.243 171.043 188.201 C 170.675 188.182 170.309 188.139 169.947 188.074 C 169.68 188.016 169.406 187.989 169.132 187.992 C 168.092 188.096 167.083 188.403 166.162 188.898 C 165.8 189.07 165.428 189.278 165.039 189.504 L 163.762 190.274 L 163.59 190.364 L 163.518 190.364 C 163.413 190.404 163.303 190.425 163.192 190.428 C 163.192 190.609 162.685 189.966 162.449 189.731 L 162.449 189.622 C 162.449 189.577 162.449 189.513 162.377 189.504 C 162.33 189.488 162.279 189.488 162.232 189.504 L 162.042 189.658 C 161.353 190.31 160.475 190.944 159.687 191.578 C 159.28 191.884 158.847 192.154 158.392 192.383 C 158.275 192.448 158.154 192.505 158.03 192.555 L 157.496 192.727 L 157.115 192.727 C 157.115 192.727 157.061 192.773 157.061 192.682 L 156.997 192.682 C 156.831 192.665 156.673 192.599 156.545 192.492 C 156.413 192.389 156.292 192.274 156.182 192.148 L 155.965 191.922 L 155.648 191.578 C 155.492 191.41 155.319 191.258 155.132 191.125 C 155.045 191.055 154.947 190.999 154.842 190.962 C 154.824 190.925 154.799 190.891 154.77 190.862 C 154.706 190.726 154.525 190.654 154.172 190.953 Z M 231.518 57.792 C 231.979 58.697 232.007 59.286 232.097 59.295 C 232.188 59.304 232.17 59.395 232.559 59.404 C 232.739 59.4 232.918 59.379 233.093 59.34 L 233.256 59.277 L 233.447 59.168 C 234.12 58.657 234.75 58.091 235.33 57.475 C 235.925 56.874 236.57 56.326 237.259 55.836 C 237.665 55.561 238.107 55.342 238.572 55.185 C 238.791 55.113 239.015 55.055 239.242 55.013 L 239.84 54.886 C 241.207 54.578 242.557 54.297 243.897 54.053 C 245.237 53.808 246.541 53.537 247.809 53.148 C 248.549 52.949 249.275 52.701 249.982 52.405 C 250.639 52.111 251.267 51.757 251.857 51.346 C 251.957 51.273 252.029 51.165 252.156 51.156 C 252.482 51.156 252.889 51.563 252.926 52.061 L 252.926 52.378 C 252.437 52.722 252.346 53.618 251.721 53.89 C 250.58 54.379 249.475 54.958 248.307 55.348 C 247.842 55.495 247.367 55.607 246.885 55.683 C 246.279 55.773 245.654 55.8 245.074 55.873 L 241.995 56.334 C 241.244 56.461 240.41 56.579 239.559 56.778 C 239.384 56.811 239.212 56.856 239.043 56.914 C 238.874 56.986 238.71 57.071 238.554 57.167 C 238.2 57.388 237.864 57.636 237.549 57.91 C 236.879 58.48 236.236 59.132 235.547 59.72 C 235.201 60.021 234.828 60.291 234.434 60.526 C 234.221 60.649 233.997 60.749 233.763 60.825 L 233.365 60.916 L 233.057 60.916 C 232.645 60.95 232.231 60.907 231.835 60.789 C 231.411 60.664 231.053 60.378 230.838 59.992 C 230.698 59.712 230.644 59.397 230.684 59.087 C 230.701 58.961 230.728 58.837 230.766 58.716 C 230.942 58.354 231.199 58.038 231.518 57.792 Z M 233.265 68.14 C 233.43 68.511 233.618 68.87 233.827 69.218 C 233.889 69.362 233.94 69.51 233.981 69.661 C 233.999 69.771 234.023 69.88 234.053 69.987 C 234.059 70.045 234.077 70.101 234.108 70.15 C 234.252 70.15 234.243 70.15 234.388 70.042 C 234.682 69.826 234.952 69.581 235.194 69.308 C 235.809 68.594 236.475 67.926 237.187 67.307 C 237.417 67.133 237.663 66.979 237.92 66.846 C 238.208 66.709 238.513 66.609 238.826 66.547 C 239.394 66.442 239.977 66.442 240.546 66.547 C 241.588 66.764 242.357 67.117 243.055 67.163 C 244.042 67.289 245.273 66.502 246.505 65.651 C 247.195 65.154 247.939 64.738 248.724 64.41 C 249.502 64.105 250.305 63.865 251.123 63.695 C 252.029 63.487 252.935 63.378 253.84 63.206 C 254.746 63.034 255.47 62.844 256.24 62.654 C 256.376 62.654 256.493 62.563 256.638 62.609 C 257.087 62.786 257.318 63.283 257.164 63.74 C 257.164 63.858 257.118 64.048 257.055 64.066 C 256.421 64.302 256.059 65.261 255.325 65.397 C 254.041 65.61 252.773 65.912 251.531 66.302 L 250.145 66.647 C 249.563 66.76 248.993 66.93 248.443 67.154 C 248.135 67.253 247.229 67.941 245.726 68.665 C 245.321 68.86 244.9 69.02 244.467 69.145 C 243.939 69.284 243.389 69.324 242.846 69.263 C 241.929 69.092 241.022 68.869 240.13 68.593 C 239.797 68.52 239.454 68.505 239.115 68.548 C 238.979 68.572 238.845 68.612 238.717 68.665 C 238.569 68.738 238.426 68.823 238.291 68.919 C 237.697 69.395 237.131 69.906 236.598 70.449 C 236.333 70.711 236.051 70.955 235.756 71.182 C 235.612 71.295 235.461 71.398 235.303 71.49 L 235.058 71.626 C 234.986 71.626 234.841 71.698 234.741 71.735 C 234.153 71.961 233.491 71.879 232.976 71.517 C 232.812 71.37 232.685 71.187 232.604 70.983 C 232.568 70.783 232.553 70.58 232.559 70.377 C 232.544 70.226 232.544 70.074 232.559 69.924 L 232.559 69.444 C 232.698 68.964 232.939 68.519 233.265 68.14 Z M 237.114 166.925 C 237.431 166.673 237.79 166.48 238.174 166.354 C 238.433 166.253 238.71 166.204 238.989 166.209 C 240.736 166.092 242.348 164.969 244.223 164.036 C 245.937 163.094 247.915 162.75 249.847 163.059 L 250.154 163.104 L 250.336 163.104 C 250.456 163.122 250.578 163.122 250.698 163.104 C 250.954 163.072 251.202 162.995 251.431 162.878 C 252.015 162.56 252.556 162.171 253.043 161.719 C 253.655 161.171 254.306 160.669 254.99 160.216 C 255.396 159.989 255.828 159.812 256.276 159.691 C 256.644 159.576 257.016 159.467 257.39 159.365 C 258.296 159.166 259.147 159.03 259.962 158.812 C 260.724 158.639 261.469 158.399 262.19 158.097 C 262.297 158.022 262.421 157.975 262.552 157.961 C 262.914 157.961 263.258 158.496 263.204 159.021 C 263.204 159.138 263.204 159.319 263.131 159.347 C 262.543 159.627 262.298 160.587 261.583 160.795 C 260.279 161.175 259.011 161.583 257.816 161.909 C 257.571 161.963 257.336 162.008 257.091 162.045 L 256.43 162.144 C 255.913 162.233 255.423 162.44 254.999 162.751 C 254.818 162.865 254.492 163.11 254.021 163.484 C 253.391 164.004 252.686 164.426 251.929 164.734 C 251.392 164.933 250.816 165.007 250.245 164.951 L 249.475 164.824 C 249.276 164.824 249.077 164.734 248.869 164.724 C 247.977 164.664 247.084 164.8 246.251 165.123 C 244.495 165.757 242.783 166.861 241.207 167.323 C 240.267 167.631 239.264 167.696 238.291 167.513 C 237.872 167.376 237.475 167.178 237.114 166.925 Z M 240.383 176.585 C 240.862 176.467 241.328 176.307 241.778 176.105 C 242.267 175.924 242.683 175.272 243.191 174.747 C 243.444 174.457 243.689 174.158 243.978 173.841 C 244.139 173.67 244.308 173.507 244.486 173.353 C 244.594 173.253 244.712 173.165 244.839 173.09 C 244.948 173.019 245.063 172.959 245.183 172.909 C 245.555 172.709 245.955 172.565 246.369 172.483 C 246.881 172.384 247.409 172.425 247.9 172.601 C 248.294 172.765 248.663 172.984 248.995 173.253 C 249.21 173.418 249.444 173.555 249.693 173.66 C 250.603 173.883 251.563 173.784 252.409 173.38 C 253.451 172.963 254.462 172.473 255.434 171.913 L 257.245 170.908 C 257.846 170.529 258.49 170.225 259.165 170.003 C 259.281 169.946 259.407 169.916 259.536 169.912 C 259.898 169.967 260.08 170.401 259.989 170.818 C 259.989 170.908 259.989 171.062 259.917 171.08 C 259.437 171.261 259.373 172.103 258.92 172.339 C 258.044 172.811 257.197 173.337 256.385 173.914 C 256.033 174.128 255.663 174.313 255.28 174.466 C 254.782 174.665 254.257 174.81 253.731 174.973 C 253.559 175.037 253.215 175.154 252.735 175.299 C 252.12 175.482 251.484 175.589 250.843 175.616 C 249.949 175.655 249.063 175.428 248.298 174.964 C 247.909 174.72 247.592 174.466 247.392 174.358 C 247.198 174.246 246.969 174.21 246.749 174.258 C 246.435 174.313 246.13 174.414 245.844 174.557 C 245.727 174.595 245.619 174.657 245.527 174.738 C 245.418 174.819 245.291 174.946 245.174 175.055 C 244.685 175.544 244.205 176.069 243.707 176.494 C 243.241 176.85 242.708 177.109 242.14 177.255 C 241.843 177.331 241.531 177.331 241.234 177.255 C 240.885 177.13 240.586 176.895 240.383 176.585 Z M 195.62 59.585 C 196.718 62.31 197.626 65.108 198.337 67.959 C 200.954 77.837 203.155 87.877 204.957 97.927 C 206.506 106.591 207.619 115.337 208.697 124.074 C 209.603 131.597 210.264 139.112 211.649 146.5 C 212.337 150.199 213.155 153.866 214.103 157.5 C 215.109 161.121 216.177 164.743 217.49 168.237 C 219.019 172.4 220.778 176.475 222.761 180.442 C 224.681 184.216 226.797 187.888 229.1 191.442 C 229.507 192.039 229.942 192.646 230.268 193.252 C 231.173 194.846 231.029 195.443 230.023 194.502 C 229.757 194.297 229.516 194.06 229.308 193.796 C 228.837 193.117 228.402 192.483 227.895 191.876 L 226.51 190.066 C 226.048 189.459 225.604 188.843 225.115 188.191 C 224.626 187.54 224.21 186.824 223.802 186.055 C 222.199 183.221 220.723 180.315 219.274 177.381 C 217.825 174.448 216.557 171.433 215.48 168.328 C 215.036 167.097 214.574 165.874 214.203 164.625 C 213.832 163.375 213.397 162.135 213.071 160.877 L 212.419 158.459 L 211.848 156.033 C 211.45 154.412 211.133 152.783 210.789 151.153 C 210.336 148.926 209.068 142.552 208.154 134.132 C 207.239 125.712 206.007 115.418 204.45 105.351 C 203.653 100.326 202.847 95.392 201.996 90.72 C 201.144 86.048 200.266 81.802 199.505 78.108 C 198.011 70.712 196.789 65.714 196.734 65.225 C 196.481 63.677 196.137 62.093 195.62 59.585 Z\" fill=\"var(--token-cc86d53e-a22e-4c8b-b2ae-03b995dee3d7, rgb(255, 255, 255))\"></path><path d=\"M 230.331 216.167 C 226.627 217.507 222.887 218.883 219.075 219.97 C 215.262 221.056 211.441 222.115 207.583 223.012 C 204.767 223.673 201.95 224.315 199.107 224.822 C 194.09 225.728 189.037 226.434 183.957 226.85 C 178.874 227.294 173.766 227.385 168.67 227.122 C 164.134 226.924 159.624 226.318 155.195 225.311 C 152.357 224.634 149.589 223.691 146.927 222.496 C 144.24 221.298 141.756 219.689 139.565 217.724 C 138.198 216.493 138.75 216.312 140.208 216.901 C 140.635 217.07 141.053 217.263 141.458 217.48 C 141.947 217.688 142.481 217.924 143.043 218.213 C 143.604 218.503 144.22 218.802 144.854 219.119 C 145.488 219.436 146.167 219.816 146.891 220.142 C 148.141 220.794 149.463 221.301 150.776 221.835 C 152.089 222.369 153.493 222.74 154.851 223.111 C 157.619 223.859 160.436 224.407 163.282 224.75 C 166.152 225.107 169.039 225.319 171.93 225.384 C 174.828 225.474 177.744 225.438 180.669 225.293 C 187.826 224.87 194.938 223.889 201.941 222.36 C 209.702 220.81 217.351 218.741 224.834 216.167 C 229.435 214.565 234.008 212.844 238.581 211.124 L 259.328 203.293 C 264.671 201.274 269.878 199.21 275.194 197.272 L 278.689 195.996 C 283.099 194.493 284.566 194.185 285.671 194.393 C 285.92 194.42 286.165 194.468 286.405 194.538 C 286.939 194.792 285.228 195.643 282.04 196.801 C 272.595 200.26 262.67 204.044 252.69 207.838 C 245.282 210.663 237.839 213.505 230.358 216.267 Z M 78.085 173.878 C 77.7 173.938 77.307 173.837 76.999 173.597 C 76.825 173.381 76.768 173.094 76.845 172.827 C 76.969 172.399 77.218 172.018 77.56 171.732 C 77.834 171.495 78.138 171.297 78.466 171.143 C 79.046 170.89 79.654 170.704 80.277 170.591 C 81.3 170.392 82.314 170.383 83.211 170.193 C 83.969 170.013 84.7 169.733 85.384 169.36 L 87.648 168.192 C 88.11 167.957 88.554 167.748 89.097 167.522 L 89.822 167.214 L 90.202 167.069 L 90.609 166.997 C 90.7 166.997 90.791 166.943 90.89 166.997 C 91.153 167.106 91.252 167.549 91.162 167.902 C 91.162 167.984 91.162 168.12 91.098 168.138 C 90.727 168.219 90.646 168.989 90.302 169.043 C 89.656 169.28 89.046 169.606 88.49 170.012 C 88.246 170.159 87.988 170.283 87.721 170.383 C 87.367 170.519 86.996 170.609 86.634 170.745 C 86.272 170.881 85.728 171.162 84.768 171.506 C 83.668 171.84 82.536 172.062 81.391 172.167 C 80.452 172.252 79.533 172.493 78.674 172.882 C 78.574 172.972 78.438 173.027 78.411 173.099 L 78.33 173.181 L 78.33 173.416 C 78.219 173.553 78.136 173.709 78.085 173.878 Z M 84.053 179.328 C 83.401 178.595 83.419 178.278 83.537 178.142 C 83.925 177.696 84.404 177.339 84.941 177.092 C 85.375 176.919 85.823 176.783 86.281 176.684 C 87.041 176.467 87.784 176.277 88.527 176.123 C 88.744 176.069 88.97 176.042 89.179 175.987 C 89.382 175.926 89.581 175.853 89.776 175.77 C 89.776 175.77 89.84 175.707 89.885 175.77 C 90.038 176.047 90.116 176.359 90.111 176.675 L 90.111 176.893 C 89.957 176.947 89.939 177.581 89.767 177.59 C 89.45 177.667 89.145 177.789 88.862 177.952 C 88.744 178.002 88.618 178.027 88.49 178.024 C 88.327 178.024 88.155 177.979 88.001 178.024 C 87.283 178.13 86.578 178.315 85.9 178.577 C 85.519 178.711 85.151 178.884 84.805 179.093 C 84.542 179.265 84.406 179.382 84.388 179.391 C 84.37 179.4 84.216 179.337 84.053 179.328 Z M 34.943 189.26 L 26.205 189.459 C 25.145 189.459 24.086 189.577 23.026 189.595 L 11.797 189.722 C 10.131 189.722 8.464 189.839 6.816 189.939 C 4.71 190.15 2.592 190.216 0.477 190.138 C -0.845 190.047 0.749 187.884 3.194 187.775 C 7.504 187.576 11.824 187.503 16.189 187.621 C 18.797 187.694 21.505 187.485 24.167 187.413 L 32.951 187.177 L 38.385 187.005 C 41.101 186.897 43.818 186.797 46.535 186.598 C 48.627 186.435 50.673 186.136 52.729 185.856 L 54.069 185.647 C 55.772 185.448 56.206 185.466 56.714 185.982 C 56.829 186.09 56.938 186.205 57.04 186.326 C 57.329 186.725 56.686 187.232 55.382 187.558 C 51.556 188.303 47.678 188.757 43.782 188.916 C 40.848 189.097 37.905 189.196 34.971 189.314 Z M 397.175 187.114 L 387.712 187.241 C 386.562 187.241 385.412 187.34 384.262 187.359 L 372.091 187.467 C 370.28 187.467 368.468 187.576 366.703 187.684 C 364.412 187.897 362.11 187.97 359.811 187.902 C 358.38 187.811 360.11 185.647 362.754 185.53 C 367.445 185.321 372.136 185.24 376.863 185.367 C 379.698 185.439 382.641 185.24 385.53 185.177 L 395.074 185.005 L 400.942 184.896 C 403.904 184.824 406.883 184.778 409.826 184.642 C 412.108 184.534 414.354 184.298 416.609 184.117 C 417.098 184.117 417.587 184.018 418.094 183.991 C 419.951 183.891 420.539 183.991 420.947 184.579 C 421.049 184.697 421.14 184.824 421.218 184.959 C 421.4 185.403 420.648 185.801 419.29 185.982 C 415.251 186.526 410.994 186.734 406.729 186.888 L 397.175 187.196 Z M 75.794 53.003 C 71.266 53.202 68.16 59.838 69.02 63.867 C 69.283 65.062 71.909 64.383 71.647 63.161 C 71.419 61.521 71.707 59.85 72.471 58.381 C 72.987 57.213 74.055 54.994 75.55 54.931 C 77.044 54.868 77.578 52.957 75.794 53.03 Z M 69.917 49.427 C 66.15 51.862 63.134 55.701 62.546 60.237 C 62.419 61.142 65.054 60.698 65.163 59.874 C 65.761 55.852 68.073 52.285 71.502 50.096 C 72.987 49.191 70.687 48.92 69.908 49.427 Z M 290.199 7.563 C 293.251 7.282 295.633 10.822 295.895 13.52 C 295.986 14.588 298.612 13.982 298.512 12.814 C 298.168 8.884 294.473 5.444 290.48 5.815 C 289.076 5.942 288.397 7.726 290.199 7.563 Z M 297.833 1.85 C 302.071 1.153 302.877 9.627 303.52 12.379 C 303.774 13.484 306.4 12.805 306.137 11.673 C 305.168 7.463 304.263 -0.93 298.105 0.084 C 296.737 0.311 296.04 2.148 297.833 1.895 Z M 239.976 235.469 C 237.982 235.112 235.927 235.387 234.099 236.257 C 232.251 237.226 230.69 238.662 229.571 240.422 C 228.719 241.759 228.018 243.186 227.479 244.677 C 227.243 245.347 227.017 246.017 226.809 246.696 C 226.6 247.375 226.428 248.063 226.311 248.769 C 226.193 249.475 226.03 250.173 225.966 250.888 L 225.849 251.902 L 225.849 252.517 C 225.849 252.581 225.849 252.699 225.903 252.689 C 226.04 252.685 226.177 252.667 226.311 252.635 L 226.519 252.635 L 226.863 252.563 L 227.959 252.3 C 229.417 251.956 230.902 251.648 232.405 251.395 C 235.076 250.953 237.787 250.795 240.492 250.924 C 242.248 251.024 243.986 251.327 245.672 251.829 C 247.376 252.336 248.972 253.153 250.381 254.238 C 251.286 254.944 250.716 255.333 249.665 255.333 C 248.206 255.3 246.762 255.028 245.391 254.527 C 242.334 253.542 239.11 253.176 235.91 253.45 C 234.257 253.558 232.612 253.764 230.983 254.066 C 230.159 254.211 229.335 254.373 228.502 254.555 L 227.252 254.826 C 226.542 255.027 225.814 255.157 225.079 255.215 C 224.743 255.218 224.413 255.133 224.119 254.971 C 224.056 254.926 223.956 254.871 223.929 254.79 L 223.929 254.5 L 223.875 253.912 L 223.766 252.762 L 223.702 252.192 C 223.679 252.008 223.679 251.823 223.702 251.639 C 223.766 251.096 223.82 250.553 223.884 250.01 C 223.947 249.466 224.056 248.923 224.146 248.38 C 224.53 246.196 225.181 244.068 226.084 242.042 C 227.091 239.773 228.559 237.738 230.395 236.067 C 232.285 234.362 234.671 233.305 237.205 233.052 C 237.589 233.006 237.976 232.981 238.364 232.98 L 239.514 233.052 L 240.084 233.052 L 240.646 233.152 L 241.769 233.369 C 243.245 233.755 244.653 234.366 245.943 235.18 C 247.862 236.462 249.438 238.193 250.535 240.223 C 251.608 242.199 252.343 244.341 252.708 246.56 C 252.781 247.103 252.88 247.638 252.935 248.172 C 252.989 248.706 253.025 248.996 253.034 249.276 L 253.034 249.693 C 253.034 249.747 253.034 249.865 253.089 249.856 C 253.162 249.835 253.232 249.805 253.297 249.765 C 253.568 249.629 253.822 249.512 254.076 249.412 C 255.245 249.024 256.466 248.814 257.698 248.787 C 258.489 248.759 259.28 248.807 260.061 248.932 C 261.093 249.088 262.086 249.439 262.986 249.964 C 263.427 250.211 263.752 250.621 263.892 251.105 C 263.963 251.289 264.011 251.48 264.037 251.675 C 264.037 252.255 262.887 252.001 261.121 251.558 C 259.588 251.169 257.994 251.089 256.43 251.322 C 256.045 251.385 255.664 251.47 255.289 251.576 L 254.71 251.748 C 254.288 251.882 253.874 252.04 253.469 252.219 C 252.895 252.617 252.151 252.676 251.522 252.373 C 251.478 252.316 251.438 252.255 251.404 252.192 C 251.259 252.4 251.359 252.255 251.332 252.3 L 251.332 252.21 L 251.286 252.11 L 251.087 251.712 L 250.689 250.915 C 250.689 250.29 250.689 249.62 250.625 249.005 C 250.625 248.615 250.625 248.389 250.544 248.099 C 250.453 247.511 250.39 246.922 250.254 246.343 C 250.017 245.187 249.672 244.056 249.222 242.966 C 248.425 241.043 247.184 239.336 245.599 237.986 C 244.006 236.691 242.09 235.852 240.057 235.56 Z M 266.238 248.633 C 266.317 248.133 266.423 247.638 266.554 247.149 C 266.681 246.66 266.763 246.162 266.935 245.673 C 267.241 244.693 267.62 243.737 268.067 242.812 C 268.939 240.892 270.237 239.196 271.861 237.851 C 272.138 237.588 272.442 237.354 272.767 237.153 L 273.754 236.511 L 274.922 236.085 L 275.474 235.859 C 275.661 235.8 275.852 235.754 276.045 235.723 C 278.711 235.147 281.493 235.466 283.96 236.628 C 285.145 237.147 286.282 237.772 287.356 238.493 C 288.448 239.264 289.401 240.217 290.172 241.309 C 291.472 243.204 292.415 245.322 292.952 247.556 C 293.705 250.326 293.944 253.21 293.658 256.067 C 293.55 256.972 292.925 256.791 292.345 256.067 C 291.561 254.992 291.107 253.711 291.041 252.382 C 290.634 247.049 289.176 241.653 284.331 239.227 C 283.985 239.029 283.628 238.851 283.262 238.693 C 282.911 238.506 282.544 238.348 282.167 238.222 C 281.417 237.961 280.639 237.791 279.848 237.715 C 279.073 237.615 278.288 237.615 277.512 237.715 L 276.38 237.977 C 276.009 238.068 275.665 238.267 275.302 238.394 C 273.737 239.146 272.39 240.287 271.39 241.707 C 270.376 243.213 269.606 244.869 269.108 246.615 C 268.847 247.582 268.644 248.565 268.501 249.557 C 268.447 250.055 268.338 250.544 268.311 251.051 L 268.239 252.237 C 268.239 252.382 268.185 252.545 268.239 252.68 C 268.293 252.816 268.664 252.816 268.891 252.816 L 269.307 252.816 L 269.969 252.753 C 270.874 252.662 271.78 252.581 272.685 252.527 C 277.316 252.297 281.953 252.807 286.423 254.038 C 287.012 254.22 287.6 254.355 288.18 254.582 C 290.353 255.378 290.896 255.885 291.105 256.664 C 291.158 256.838 291.192 257.017 291.204 257.198 C 291.204 257.75 290.19 257.696 288.66 257.198 C 284.054 255.612 279.213 254.816 274.342 254.844 C 273.102 254.844 271.87 254.962 270.593 255.098 L 269.615 255.197 L 268.827 255.197 C 268.526 255.223 268.223 255.223 267.922 255.197 C 267.358 255.177 266.82 254.959 266.401 254.582 C 266.215 254.398 266.068 254.179 265.966 253.939 C 265.891 253.669 265.836 253.393 265.803 253.115 L 265.93 250.517 L 266.192 248.552 Z\" fill=\"var(--token-cc86d53e-a22e-4c8b-b2ae-03b995dee3d7, rgb(255, 255, 255))\"></path><path d=\"M 226.347 256.067 C 226.229 256.127 226.108 256.182 225.985 256.229 L 225.704 256.356 L 225.142 256.601 L 224.019 257.09 L 221.774 258.04 L 217.246 259.932 C 216.15 260.394 215.081 260.91 213.977 261.354 C 210.073 262.893 206.152 264.369 202.132 265.672 C 201.226 265.953 200.32 266.243 199.415 266.514 C 198.953 266.65 198.509 266.768 198.02 266.886 C 197.518 267.014 197.006 267.105 196.49 267.157 C 195.798 267.29 195.086 267.057 194.606 266.542 C 194.488 266.397 194.389 266.243 194.28 266.089 C 194.188 265.939 194.103 265.785 194.027 265.627 C 193.899 265.363 193.796 265.087 193.719 264.803 C 193.564 264.259 193.487 263.695 193.492 263.128 C 193.51 262.068 193.747 261.023 194.19 260.059 C 194.525 259.335 195.095 259.697 195.439 260.458 C 195.853 261.362 196.095 262.335 196.155 263.328 C 196.158 263.634 196.203 263.939 196.291 264.233 C 196.329 264.359 196.374 264.483 196.426 264.604 C 196.838 264.563 197.247 264.493 197.649 264.396 C 198.555 264.206 199.46 263.943 200.366 263.672 C 202.177 263.128 204.088 262.522 205.98 261.924 C 208.697 261.019 211.477 259.778 214.221 258.638 C 217.228 257.388 220.243 256.121 223.232 254.808 L 226.012 253.577 C 226.983 253.181 227.981 252.857 229 252.608 C 232.06 251.89 235.221 251.7 238.346 252.047 C 240.737 252.246 243.102 252.695 245.4 253.387 C 245.898 253.55 246.405 253.694 246.903 253.876 C 248.715 254.627 249.213 255.089 249.303 255.831 C 249.316 256 249.316 256.169 249.303 256.338 C 249.24 256.854 248.398 256.89 247.066 256.438 C 243.21 255.036 239.143 254.305 235.04 254.274 C 233.519 254.282 232.003 254.44 230.512 254.745 C 229.048 255.025 227.624 255.487 226.274 256.121 Z M 288.968 261.155 L 287.827 261.644 L 287.175 261.924 L 285.88 262.504 C 284.974 262.902 284.159 263.309 283.299 263.726 C 281.578 264.565 279.873 265.431 278.182 266.324 C 276.941 266.976 275.737 267.7 274.496 268.352 C 270.132 270.67 265.776 273.024 261.366 275.315 C 259.391 276.319 257.462 277.388 255.38 278.293 C 255.036 278.438 254.709 278.574 254.311 278.701 C 253.807 278.883 253.27 278.957 252.735 278.918 C 252.221 278.805 251.782 278.475 251.531 278.012 C 251.386 277.781 251.259 277.539 251.151 277.288 C 251.062 277.083 250.989 276.871 250.933 276.654 C 250.558 275.093 250.718 273.452 251.386 271.992 C 251.766 271.132 252.292 271.521 252.636 272.381 C 253.006 273.442 253.27 274.537 253.424 275.649 C 253.441 275.766 253.468 275.881 253.505 275.994 C 253.5 276.045 253.5 276.096 253.505 276.147 L 253.505 276.247 L 253.559 276.247 L 253.994 276.102 C 255.189 275.659 256.475 275.052 257.734 274.436 L 265.395 270.625 C 268.492 269.104 271.562 267.23 274.668 265.555 C 278.092 263.744 281.551 261.933 285.101 260.258 L 286.867 259.471 L 287.772 259.127 L 288.596 258.828 L 288.805 258.764 C 288.84 258.752 288.874 258.734 288.904 258.71 C 288.917 258.681 288.917 258.648 288.904 258.62 C 288.796 258.538 288.677 258.471 288.551 258.42 C 288.118 258.25 287.677 258.101 287.229 257.977 L 286.876 257.877 L 286.26 257.723 L 284.947 257.425 C 283.199 257.053 281.433 256.746 279.676 256.519 C 276.97 256.211 274.241 256.165 271.526 256.383 C 270.937 256.429 270.376 256.519 269.796 256.592 C 267.65 256.881 267.034 256.972 266.382 256.492 C 266.225 256.4 266.076 256.294 265.939 256.175 C 265.54 255.813 266.328 254.998 268.058 254.545 C 270.627 253.95 273.267 253.718 275.9 253.857 C 278.556 253.974 281.201 254.277 283.815 254.763 C 284.72 254.917 285.554 255.098 286.414 255.297 L 288.008 255.677 C 288.841 255.894 289.656 256.13 290.398 256.392 C 291.038 256.576 291.635 256.884 292.155 257.298 C 292.448 257.559 292.649 257.909 292.726 258.294 C 292.741 258.411 292.741 258.53 292.726 258.647 C 292.732 258.71 292.732 258.774 292.726 258.837 C 292.714 258.973 292.674 259.106 292.608 259.226 L 292.499 259.453 L 292.237 259.733 C 292.153 259.837 292.056 259.928 291.947 260.005 L 291.431 260.267 C 290.525 260.575 289.755 260.892 288.968 261.227 Z\" fill=\"var(--token-cc86d53e-a22e-4c8b-b2ae-03b995dee3d7, rgb(255, 255, 255))\"></path><path d=\"M 119.407 94.115 C 119.407 94.115 128.463 118.777 128.463 123.087 C 128.463 127.396 131.116 116.84 156.038 115.129 C 156.038 115.129 166.66 114.459 168.516 111.688 C 170.373 108.918 163.735 85.587 163.735 85.587 C 156.943 87.216 131.243 83.079 119.407 94.115 Z M 228.33 130.773 C 228.33 130.773 232.976 151.479 234.28 151.108 C 235.584 150.737 238.482 148.863 247.863 148.084 C 257.245 147.305 259.256 143.195 259.256 143.195 L 254.999 124.001 C 254.239 121.738 240.936 128.057 239.188 128.745 C 235.728 130.098 232.045 130.787 228.33 130.773 Z M 226.021 251.784 C 226.021 251.784 228.221 237.588 235.403 236.674 C 242.584 235.759 247.175 239.707 248.561 252.608 C 248.561 252.608 242.964 249.792 237.286 250.055 C 233.487 250.297 229.717 250.875 226.021 251.784 Z M 268.302 252.943 C 268.302 252.943 269.47 239.046 278.861 239.046 C 284.847 239.046 288.723 243.573 289.891 254.618 C 289.891 254.618 284.403 251.594 278.725 251.639 C 275.216 251.719 271.723 252.156 268.302 252.943 Z\" fill=\"var(--token-cc86d53e-a22e-4c8b-b2ae-03b995dee3d7, rgb(255, 255, 255))\" opacity=\"0.2\"></path><path d=\"M 141.666 102.254 C 142.85 100.417 143.897 98.496 144.799 96.505 C 144.89 96.261 144.962 96.026 145.026 95.799 C 145.058 95.69 145.083 95.578 145.098 95.464 L 145.098 95.274 C 145.098 95.193 145.098 95.012 144.98 95.002 C 144.928 94.985 144.87 94.985 144.817 95.002 C 144.707 95.063 144.607 95.139 144.519 95.229 C 144.138 95.58 143.784 95.958 143.459 96.361 C 142.454 97.574 141.566 98.95 140.588 100.272 C 139.73 101.473 138.805 102.624 137.817 103.721 C 137.299 104.302 136.719 104.824 136.088 105.278 C 135.737 105.524 135.356 105.725 134.956 105.876 C 134.429 106.065 133.856 106.087 133.317 105.939 C 133.187 105.898 133.063 105.844 132.945 105.776 C 132.816 105.731 132.7 105.653 132.61 105.55 C 132.424 105.352 132.302 105.103 132.257 104.835 C 132.217 104.559 132.217 104.278 132.257 104.002 L 132.366 103.594 C 132.393 103.493 132.427 103.393 132.465 103.296 C 132.742 102.591 133.076 101.91 133.461 101.259 C 134.177 99.973 134.938 98.751 135.644 97.51 C 136.288 96.445 136.828 95.32 137.256 94.151 C 137.455 93.665 137.527 93.135 137.464 92.612 C 137.412 92.466 137.305 92.346 137.165 92.277 C 136.993 92.214 136.804 92.214 136.631 92.277 C 135.941 92.492 135.307 92.857 134.775 93.346 C 134.174 93.848 133.614 94.395 133.099 94.984 C 132.038 96.129 131.139 97.415 130.428 98.805 C 130.238 99.231 130.12 99.393 129.975 99.357 C 129.83 99.321 129.712 99.04 129.694 98.551 C 129.777 96.986 130.372 95.491 131.388 94.296 C 131.94 93.607 132.545 92.962 133.199 92.368 C 133.907 91.713 134.722 91.184 135.608 90.802 C 136.214 90.531 136.894 90.473 137.537 90.639 C 137.934 90.751 138.29 90.977 138.56 91.29 L 138.741 91.508 L 138.895 91.761 C 139.011 91.944 139.082 92.152 139.103 92.368 C 139.189 92.933 139.156 93.51 139.004 94.061 C 138.887 94.518 138.736 94.966 138.551 95.401 C 137.84 96.964 137.023 98.476 136.106 99.928 C 135.671 100.643 135.2 101.349 134.838 102.064 C 134.63 102.417 134.44 102.77 134.258 103.115 C 134.177 103.296 134.086 103.468 134.014 103.64 C 133.941 103.812 133.941 103.812 133.914 103.893 L 133.842 104.065 C 133.842 104.192 133.742 104.373 133.896 104.436 C 133.965 104.451 134.036 104.451 134.104 104.436 C 134.146 104.442 134.189 104.442 134.231 104.436 C 134.316 104.42 134.398 104.393 134.476 104.355 C 135.289 103.931 136.007 103.345 136.586 102.635 C 137.896 101.081 139.126 99.461 140.271 97.782 C 140.942 96.877 141.612 95.971 142.381 95.066 C 142.776 94.584 143.219 94.144 143.704 93.753 C 144.05 93.481 144.447 93.281 144.872 93.165 C 145.273 93.091 145.688 93.154 146.049 93.346 C 146.59 93.987 146.804 94.843 146.629 95.663 C 146.527 96.285 146.354 96.893 146.112 97.474 C 145.662 98.544 145.145 99.584 144.564 100.589 C 143.876 101.811 143.16 103.006 142.499 104.21 C 142.166 104.798 141.864 105.402 141.594 106.021 C 141.476 106.316 141.376 106.619 141.295 106.926 C 141.254 107.102 141.254 107.285 141.295 107.46 C 141.575 107.958 142.273 107.822 143.106 107.216 C 143.888 106.585 144.59 105.861 145.198 105.061 C 146.502 103.45 147.661 101.693 148.938 100.009 C 149.445 99.357 149.952 98.705 150.532 98.081 C 151.12 97.402 151.841 96.85 152.651 96.46 C 153.153 96.244 153.708 96.184 154.245 96.288 L 154.625 96.415 L 154.897 96.487 C 155.241 96.596 155.541 96.816 155.748 97.112 C 156.044 97.63 156.144 98.238 156.029 98.823 C 155.973 99.259 155.879 99.689 155.748 100.109 L 155.15 102.146 C 154.779 103.377 154.634 104.129 154.516 104.636 C 154.445 105.026 154.311 105.402 154.118 105.749 C 154.027 105.903 153.991 106.093 153.909 106.22 C 153.828 106.347 153.484 106.356 153.176 105.822 C 152.815 105.028 152.716 104.14 152.895 103.287 C 153.14 101.729 153.71 100.308 154 99.013 C 154.065 98.756 154.099 98.491 154.1 98.226 C 154.108 98.196 154.108 98.165 154.1 98.135 L 154.299 98.063 C 154.525 97.963 154.435 97.954 154.362 98.108 C 154.29 98.262 154.254 98.398 154.199 98.334 L 154.127 98.334 L 153.864 98.244 C 153.837 98.25 153.809 98.25 153.783 98.244 L 153.701 98.244 C 153.538 98.256 153.38 98.305 153.239 98.389 C 152.725 98.688 152.263 99.071 151.872 99.52 C 151.386 100.034 150.93 100.576 150.504 101.141 C 149.599 102.3 148.766 103.549 147.851 104.762 C 147.161 105.71 146.417 106.616 145.623 107.478 C 145.184 107.96 144.696 108.394 144.165 108.773 C 144.021 108.882 143.87 108.982 143.713 109.072 C 143.549 109.172 143.376 109.257 143.196 109.325 C 143.006 109.418 142.805 109.488 142.599 109.534 C 142.456 109.57 142.311 109.597 142.164 109.615 L 141.394 109.615 C 141.268 109.615 141.141 109.534 141.014 109.497 L 140.643 109.38 L 140.299 109.19 C 140.19 109.126 140.072 109.063 139.973 108.99 L 139.791 108.655 C 139.663 108.431 139.574 108.186 139.529 107.931 C 139.492 107.664 139.492 107.393 139.529 107.125 C 139.551 106.871 139.597 106.62 139.665 106.374 C 139.757 106.066 139.866 105.764 139.991 105.468 C 140.47 104.383 141.021 103.331 141.639 102.318 Z M 242.91 141.185 L 241.76 138.016 C 241.56 137.509 241.361 137.002 241.144 136.522 C 241.049 136.282 240.937 136.049 240.809 135.825 C 240.764 135.735 240.655 135.653 240.564 135.726 C 240.5 135.798 240.448 135.881 240.41 135.97 L 240.356 136.097 C 240.356 136.224 240.284 136.341 240.238 136.513 C 240.193 136.685 240.184 136.794 240.157 136.903 C 240.13 137.011 240.157 137.192 240.157 137.328 C 240.157 137.962 240.275 138.677 240.347 139.401 C 240.462 140.187 240.48 140.984 240.401 141.774 C 240.352 142.02 240.276 142.259 240.175 142.489 L 239.967 142.851 C 239.876 142.95 239.767 143.041 239.668 143.141 C 239.567 143.238 239.442 143.306 239.306 143.34 C 239.179 143.34 239.061 143.476 238.916 143.457 L 238.156 143.457 L 237.594 143.34 C 237.396 143.266 237.203 143.182 237.014 143.086 C 236.669 142.872 236.362 142.599 236.109 142.281 C 235.714 141.705 235.409 141.073 235.203 140.406 C 234.745 138.836 234.367 137.244 234.071 135.635 C 233.945 135.219 234.18 135.101 234.633 135.4 C 235.24 135.914 235.679 136.598 235.892 137.364 C 236.136 138.161 236.362 138.949 236.643 139.664 C 236.82 140.322 237.128 140.938 237.549 141.475 C 237.63 141.592 237.721 141.62 237.802 141.692 C 237.884 141.764 237.911 141.774 238.074 141.792 L 238.409 141.864 L 238.581 141.864 C 238.59 141.838 238.59 141.809 238.581 141.783 C 238.587 141.731 238.587 141.68 238.581 141.629 C 238.619 141.283 238.619 140.934 238.581 140.587 C 238.536 139.682 238.291 138.65 238.219 137.5 C 238.188 137.178 238.188 136.854 238.219 136.531 C 238.265 136.226 238.328 135.924 238.409 135.626 C 238.553 134.85 238.936 134.137 239.505 133.589 C 239.811 133.34 240.216 133.246 240.601 133.336 C 240.98 133.44 241.32 133.654 241.579 133.951 C 241.876 134.284 242.131 134.652 242.339 135.047 C 242.457 135.255 242.511 135.382 242.575 135.517 L 242.765 135.925 C 243.245 136.993 243.67 138.071 244.033 139.13 C 244.277 139.782 244.522 140.425 244.775 141.058 C 244.902 141.375 245.038 141.683 245.183 141.964 C 245.25 142.133 245.342 142.292 245.454 142.434 C 245.496 142.492 245.557 142.531 245.627 142.543 C 245.699 142.543 245.744 142.489 245.799 142.462 C 245.853 142.434 246.079 142.389 246.17 142.29 L 246.378 142.136 C 246.449 142.061 246.516 141.982 246.577 141.9 C 246.717 141.73 246.833 141.541 246.922 141.339 C 247.302 140.425 247.534 139.456 247.61 138.469 C 247.8 136.876 247.718 135.264 247.954 133.598 C 247.999 133.229 248.066 132.864 248.153 132.503 C 248.252 132.001 248.449 131.525 248.733 131.099 C 248.914 130.872 249.178 130.726 249.466 130.692 C 249.587 130.679 249.708 130.679 249.828 130.692 C 250.182 130.755 250.218 131.344 250.1 132.213 C 249.919 133.526 249.928 134.929 249.792 136.414 C 249.724 138.007 249.499 139.59 249.122 141.14 C 248.921 141.845 248.599 142.509 248.171 143.104 C 248.035 143.267 247.918 143.43 247.764 143.584 L 247.501 143.792 L 247.157 144.046 C 246.915 144.19 246.661 144.311 246.396 144.408 C 246.158 144.523 245.913 144.623 245.663 144.707 C 245.44 144.728 245.215 144.704 245.002 144.634 C 244.769 144.552 244.554 144.426 244.368 144.263 C 243.988 143.881 243.681 143.433 243.462 142.941 C 243.163 142.344 242.955 141.819 242.738 141.276 Z M 233.673 245.881 C 233.483 245.447 233.528 245.293 233.619 245.193 L 234.578 244.17 C 234.859 243.889 235.176 243.627 235.484 243.346 L 236.263 242.622 C 236.522 242.373 236.8 242.146 237.096 241.943 C 237.268 241.816 237.458 241.717 237.639 241.599 C 237.82 241.481 237.983 241.382 238.165 241.282 C 238.165 241.282 238.228 241.237 238.264 241.237 C 238.3 241.237 238.454 241.372 238.463 241.517 C 238.472 241.662 238.463 241.599 238.463 241.608 C 238.463 241.617 238.346 241.943 238.219 242.033 C 237.99 242.213 237.783 242.42 237.603 242.649 C 237.526 242.734 237.438 242.807 237.34 242.866 C 237.214 242.948 237.078 243.011 236.951 243.102 C 236.408 243.549 235.888 244.023 235.393 244.523 C 234.723 245.184 234.026 245.791 233.981 245.809 C 233.881 245.845 233.778 245.869 233.673 245.881 Z M 237.069 245.872 C 236.924 245.483 236.969 245.356 237.069 245.284 C 237.331 245.039 237.603 244.804 237.884 244.587 C 238.165 244.369 238.391 244.252 238.645 244.07 L 239.912 243.165 L 240.302 242.903 L 240.655 242.631 C 240.655 242.631 240.655 242.586 240.718 242.631 C 240.782 242.676 240.918 242.767 240.963 242.912 C 241.008 243.056 240.963 242.993 240.963 243.002 C 240.963 243.011 240.963 243.328 240.836 243.4 C 240.662 243.546 240.499 243.703 240.347 243.871 C 240.283 243.933 240.209 243.985 240.13 244.025 L 239.804 244.179 C 239.532 244.333 237.368 245.881 237.304 245.908 C 237.225 245.904 237.146 245.892 237.069 245.872 Z M 274.442 246.044 C 274.333 245.664 274.442 245.501 274.542 245.392 C 274.949 245.021 275.357 244.659 275.782 244.306 C 276.208 243.953 276.543 243.745 276.923 243.464 C 277.577 242.958 278.26 242.492 278.97 242.07 L 279.613 241.726 L 280.265 241.454 L 280.383 241.454 C 280.525 241.522 280.601 241.681 280.564 241.834 C 280.401 241.925 280.392 242.205 280.238 242.314 C 280.084 242.423 279.685 242.721 279.423 242.939 C 279.314 243.02 279.196 243.084 279.079 243.156 C 278.961 243.228 278.744 243.283 278.59 243.364 C 277.883 243.776 277.2 244.226 276.543 244.713 C 275.637 245.347 274.804 245.963 274.732 245.99 C 274.637 246.015 274.54 246.034 274.442 246.044 Z M 276.271 247.076 C 276.332 246.883 276.444 246.711 276.597 246.578 C 277.086 246.098 277.584 245.673 278.101 245.202 C 278.617 244.731 279.006 244.478 279.495 244.134 C 280.304 243.524 281.168 242.99 282.076 242.54 C 282.348 242.405 282.629 242.287 282.9 242.169 C 283.166 242.05 283.441 241.956 283.724 241.889 L 283.869 241.889 C 283.924 241.886 283.976 241.914 284.003 241.962 C 284.03 242.01 284.027 242.069 283.996 242.115 C 284.002 242.139 284.002 242.164 283.996 242.187 C 283.788 242.251 283.679 242.477 283.471 242.559 C 283.075 242.701 282.693 242.88 282.33 243.093 L 281.886 243.319 C 281.687 243.41 281.487 243.482 281.288 243.582 C 280.399 244.059 279.545 244.601 278.735 245.202 C 277.648 245.99 276.679 246.841 276.625 246.877 C 276.511 246.95 276.393 247.017 276.271 247.076 Z\" fill=\"var(--token-cc86d53e-a22e-4c8b-b2ae-03b995dee3d7, rgb(255, 255, 255))\"></path></g></svg>',svgContentId:11700350988,withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12b8rkl\",\"data-framer-name\":\"newsletter\",name:\"newsletter\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{byzlKw8Ww:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-jku8vv\",\"data-styles-preset\":\"juCU8NJtR\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-cc86d53e-a22e-4c8b-b2ae-03b995dee3d7, rgb(255, 255, 255))\"},children:\"News, updates and promos \u2013 be the first to get 'em\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-jku8vv\",\"data-styles-preset\":\"juCU8NJtR\",style:{\"--framer-text-color\":\"var(--token-cc86d53e-a22e-4c8b-b2ae-03b995dee3d7, rgb(255, 255, 255))\"},children:\"News, updates and promos \u2013 be the first to get 'em\"})}),className:\"framer-13vspjd\",\"data-framer-name\":\"News, updates and promos\",fonts:[\"Inter\"],name:\"News, updates and promos\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{byzlKw8Ww:{href:\"https://polotno.outseta.com/forms/pWrEaa9n\"},KO5IxNsY1:{href:\"https://polotno.outseta.com/forms/pWrEaa9n\"},zvOF2qHgV:{href:\"https://polotno.outseta.com/forms/pWrEaa9n\"}},children:/*#__PURE__*/_jsx(Link,{href:\"https://polotno.outseta.com/email/lists/BWzAxl9E/subscribe?registrationFieldConfiguration=%5B%7B%22defaultValue%22%3A%22%22%2C%22definition%22%3A%7B%22SystemName%22%3A%22Email%22%7D%2C%22hidden%22%3Afalse%2C%22required%22%3Atrue%7D%5D\",nodeId:\"AKcBCylt9\",openInNewTab:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-1c440ty framer-z06t1q\",\"data-framer-name\":\"button/main\",name:\"button/main\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-gi6l4j\",\"data-styles-preset\":\"PbSIfQaNV\",style:{\"--framer-text-color\":\"var(--token-cc86d53e-a22e-4c8b-b2ae-03b995dee3d7, rgb(255, 255, 255))\"},children:\"Subscribe now\"})}),className:\"framer-iojfll\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-hk6gue\",\"data-framer-name\":\"footer-container\",name:\"footer-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{byzlKw8Ww:{width:\"calc(100vw - 32px)\",y:4193.2},KO5IxNsY1:{width:\"calc(100vw - 32px)\",y:1657},zvOF2qHgV:{width:\"calc(100vw - 32px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:385,width:\"100vw\",y:1805,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1em22y6-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{byzlKw8Ww:{variant:\"bGO3nrLfx\"},KO5IxNsY1:{variant:\"ztivsyazk\"}},children:/*#__PURE__*/_jsx(Footer,{B86IlCfbR:\"var(--token-f97a8761-8139-4bd4-a094-ab72c3ce021b, rgb(63, 57, 123))\",FpyralBHX:\"var(--token-2be784b2-0b41-4d1b-92d2-8a21b6e50f6b, rgb(189, 198, 240))\",height:\"100%\",id:\"KD0o8iwo4\",layoutId:\"KD0o8iwo4\",Nrk4dNu8s:\"var(--token-cc86d53e-a22e-4c8b-b2ae-03b995dee3d7, rgb(255, 255, 255))\",style:{width:\"100%\"},variant:\"eQQ1jZR4B\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-oQ4GP { background: var(--token-f32baa44-90b8-42a5-8bca-ffba9d95b23a, rgb(255, 255, 255)); }`,\".framer-oQ4GP.framer-z06t1q, .framer-oQ4GP .framer-z06t1q { display: block; }\",\".framer-oQ4GP.framer-1kp1nec { align-content: center; align-items: center; background-color: var(--token-f32baa44-90b8-42a5-8bca-ffba9d95b23a, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1400px; }\",\".framer-oQ4GP .framer-1obwugk { align-content: center; align-items: center; background: linear-gradient(180deg, #ffffff 48%, rgba(255, 255, 255, 0) 100%); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: sticky; top: 0px; width: 100%; will-change: transform; z-index: 5; }\",\".framer-oQ4GP .framer-1fx9lgo-container { flex: 1 0 0px; height: auto; max-width: 1367px; position: relative; width: 1px; z-index: 3; }\",\".framer-oQ4GP.framer-9hh1v7 { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 10; }\",\".framer-oQ4GP.framer-ojim92 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100vh; justify-content: flex-start; left: 0px; overflow: auto; padding: 0px 16px 16px 16px; position: fixed; top: 0px; width: 100%; z-index: 10; }\",\".framer-oQ4GP .framer-1ued1s4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 840px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-oQ4GP .framer-72v0yn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 24px 0px 0px 0px; position: relative; width: 100%; z-index: 7; }\",\".framer-oQ4GP .framer-1rew5im { 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; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-oQ4GP .framer-1dzowtm { flex: none; height: 52px; position: relative; width: 178px; }\",\".framer-oQ4GP .framer-10nyh04 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-oQ4GP .framer-wfei9c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 33px; }\",\".framer-oQ4GP .framer-ah9efh-container { flex: none; height: 32px; position: relative; width: 100%; }\",\".framer-oQ4GP .framer-1e8ifgy { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 32px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-oQ4GP .framer-ichc15-container, .framer-oQ4GP .framer-1em22y6-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-oQ4GP .framer-gz68kh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1367px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-oQ4GP .framer-18f4sos { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 36.96656700190269vh; justify-content: flex-start; max-width: 230px; min-height: 85vh; overflow: hidden; padding: 0px 0px 32px 0px; position: sticky; top: 132px; width: 1px; will-change: transform; z-index: 1; }\",\".framer-oQ4GP .framer-112xdb7 { background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%); bottom: 0px; flex: none; height: 48px; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; width: 100%; z-index: 1; }\",\".framer-oQ4GP .framer-1f3k3tj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: 85vh; justify-content: flex-start; max-width: 230px; min-height: 85vh; overflow: auto; padding: 0px 0px 124px 0px; position: relative; width: 100%; }\",\".framer-oQ4GP .framer-1t5dtha-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-oQ4GP .framer-16f3xm7 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 100px 0px; position: relative; width: 1px; }\",\".framer-oQ4GP .framer-xov0io { 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; padding: 48px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-oQ4GP .framer-1m4tmqx { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 32px 0px; position: relative; width: 100%; }\",\".framer-oQ4GP .framer-1sphqpi { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 800px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-oQ4GP .framer-ixqubh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 56px 0px; position: relative; width: 100%; }\",\".framer-oQ4GP .framer-1tn61xt { --framer-paragraph-spacing: 20px; flex: none; height: auto; max-width: 800px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-oQ4GP .framer-fobbky { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 48px 0px; position: relative; width: 90%; }\",\".framer-oQ4GP .framer-yc8ezc { align-content: center; align-items: center; background-color: var(--token-4d06e2c0-a2b7-4c41-ac93-cdc8c59b8405, #e9ebfc); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-oQ4GP .framer-jymap6-container { flex: 1 0 0px; height: 700px; position: relative; width: 1px; z-index: 2; }\",\".framer-oQ4GP .framer-10ss5oj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 200px; justify-content: center; left: calc(49.951124144672555% - 201px / 2); overflow: hidden; padding: 0px; position: absolute; top: 250px; width: 201px; z-index: 1; }\",\".framer-oQ4GP .framer-1jvjtm5 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 97px); position: relative; width: 97px; }\",\".framer-oQ4GP .framer-1mrkcq9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-oQ4GP .framer-gsy31k { flex: 1 0 0px; height: 152px; position: relative; width: 1px; }\",\".framer-oQ4GP .framer-90n4cl { align-content: center; align-items: center; background-color: var(--token-f97a8761-8139-4bd4-a094-ab72c3ce021b, #3f397b); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 60px 0px 60px 0px; position: relative; width: 100%; }\",\".framer-oQ4GP .framer-rdf93b { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 1000px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-oQ4GP .framer-1bh7tuf { flex: none; height: 287px; position: relative; width: 422px; }\",\".framer-oQ4GP .framer-12b8rkl { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-oQ4GP .framer-13vspjd { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-oQ4GP .framer-1c440ty { align-content: center; align-items: center; background-color: var(--token-b7d11def-76dd-4deb-9bd7-3ca44fe945e1, #e704cf); border-bottom-left-radius: 999px; border-bottom-right-radius: 999px; border-top-left-radius: 999px; border-top-right-radius: 999px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 20px 32px 20px 32px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-oQ4GP .framer-iojfll { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-oQ4GP .framer-hk6gue { align-content: flex-end; align-items: flex-end; background-color: var(--token-f97a8761-8139-4bd4-a094-ab72c3ce021b, #3f397b); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-oQ4GP.framer-1kp1nec, .framer-oQ4GP .framer-1obwugk, .framer-oQ4GP.framer-ojim92, .framer-oQ4GP .framer-1ued1s4, .framer-oQ4GP .framer-1rew5im, .framer-oQ4GP .framer-10nyh04, .framer-oQ4GP .framer-wfei9c, .framer-oQ4GP .framer-1e8ifgy, .framer-oQ4GP .framer-gz68kh, .framer-oQ4GP .framer-18f4sos, .framer-oQ4GP .framer-1f3k3tj, .framer-oQ4GP .framer-16f3xm7, .framer-oQ4GP .framer-xov0io, .framer-oQ4GP .framer-1m4tmqx, .framer-oQ4GP .framer-ixqubh, .framer-oQ4GP .framer-fobbky, .framer-oQ4GP .framer-yc8ezc, .framer-oQ4GP .framer-10ss5oj, .framer-oQ4GP .framer-1mrkcq9, .framer-oQ4GP .framer-90n4cl, .framer-oQ4GP .framer-rdf93b, .framer-oQ4GP .framer-12b8rkl, .framer-oQ4GP .framer-1c440ty, .framer-oQ4GP .framer-hk6gue { gap: 0px; } .framer-oQ4GP.framer-1kp1nec > *, .framer-oQ4GP .framer-1e8ifgy > *, .framer-oQ4GP .framer-16f3xm7 > *, .framer-oQ4GP .framer-xov0io > *, .framer-oQ4GP .framer-hk6gue > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-oQ4GP.framer-1kp1nec > :first-child, .framer-oQ4GP.framer-ojim92 > :first-child, .framer-oQ4GP .framer-1ued1s4 > :first-child, .framer-oQ4GP .framer-wfei9c > :first-child, .framer-oQ4GP .framer-1e8ifgy > :first-child, .framer-oQ4GP .framer-18f4sos > :first-child, .framer-oQ4GP .framer-16f3xm7 > :first-child, .framer-oQ4GP .framer-xov0io > :first-child, .framer-oQ4GP .framer-1m4tmqx > :first-child, .framer-oQ4GP .framer-ixqubh > :first-child, .framer-oQ4GP .framer-fobbky > :first-child, .framer-oQ4GP .framer-12b8rkl > :first-child, .framer-oQ4GP .framer-1c440ty > :first-child, .framer-oQ4GP .framer-hk6gue > :first-child { margin-top: 0px; } .framer-oQ4GP.framer-1kp1nec > :last-child, .framer-oQ4GP.framer-ojim92 > :last-child, .framer-oQ4GP .framer-1ued1s4 > :last-child, .framer-oQ4GP .framer-wfei9c > :last-child, .framer-oQ4GP .framer-1e8ifgy > :last-child, .framer-oQ4GP .framer-18f4sos > :last-child, .framer-oQ4GP .framer-16f3xm7 > :last-child, .framer-oQ4GP .framer-xov0io > :last-child, .framer-oQ4GP .framer-1m4tmqx > :last-child, .framer-oQ4GP .framer-ixqubh > :last-child, .framer-oQ4GP .framer-fobbky > :last-child, .framer-oQ4GP .framer-12b8rkl > :last-child, .framer-oQ4GP .framer-1c440ty > :last-child, .framer-oQ4GP .framer-hk6gue > :last-child { margin-bottom: 0px; } .framer-oQ4GP .framer-1obwugk > *, .framer-oQ4GP .framer-1rew5im > *, .framer-oQ4GP .framer-yc8ezc > *, .framer-oQ4GP .framer-10ss5oj > *, .framer-oQ4GP .framer-1mrkcq9 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-oQ4GP .framer-1obwugk > :first-child, .framer-oQ4GP .framer-1rew5im > :first-child, .framer-oQ4GP .framer-10nyh04 > :first-child, .framer-oQ4GP .framer-gz68kh > :first-child, .framer-oQ4GP .framer-1f3k3tj > :first-child, .framer-oQ4GP .framer-yc8ezc > :first-child, .framer-oQ4GP .framer-10ss5oj > :first-child, .framer-oQ4GP .framer-1mrkcq9 > :first-child, .framer-oQ4GP .framer-90n4cl > :first-child, .framer-oQ4GP .framer-rdf93b > :first-child { margin-left: 0px; } .framer-oQ4GP .framer-1obwugk > :last-child, .framer-oQ4GP .framer-1rew5im > :last-child, .framer-oQ4GP .framer-10nyh04 > :last-child, .framer-oQ4GP .framer-gz68kh > :last-child, .framer-oQ4GP .framer-1f3k3tj > :last-child, .framer-oQ4GP .framer-yc8ezc > :last-child, .framer-oQ4GP .framer-10ss5oj > :last-child, .framer-oQ4GP .framer-1mrkcq9 > :last-child, .framer-oQ4GP .framer-90n4cl > :last-child, .framer-oQ4GP .framer-rdf93b > :last-child { margin-right: 0px; } .framer-oQ4GP.framer-ojim92 > *, .framer-oQ4GP .framer-1ued1s4 > *, .framer-oQ4GP .framer-wfei9c > *, .framer-oQ4GP .framer-18f4sos > *, .framer-oQ4GP .framer-ixqubh > *, .framer-oQ4GP .framer-1c440ty > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-oQ4GP .framer-10nyh04 > *, .framer-oQ4GP .framer-rdf93b > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-oQ4GP .framer-gz68kh > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-oQ4GP .framer-1f3k3tj > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-oQ4GP .framer-1m4tmqx > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-oQ4GP .framer-fobbky > *, .framer-oQ4GP .framer-12b8rkl > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-oQ4GP .framer-90n4cl > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } }\",...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,`@media (min-width: 810px) and (max-width: 1199px) { .${metadata.bodyClassName}-framer-oQ4GP { background: var(--token-f32baa44-90b8-42a5-8bca-ffba9d95b23a, rgb(255, 255, 255)); } .framer-oQ4GP.framer-1kp1nec { width: 810px; } .framer-oQ4GP .framer-1obwugk { align-content: flex-start; align-items: flex-start; justify-content: flex-start; padding: 0px 16px 0px 16px; } .framer-oQ4GP .framer-gz68kh { gap: 12px; padding: 0px 16px 0px 16px; } .framer-oQ4GP .framer-112xdb7 { z-index: 5; } .framer-oQ4GP .framer-1t5dtha-container { z-index: 3; } .framer-oQ4GP .framer-16f3xm7, .framer-oQ4GP .framer-xov0io { padding: 0px; } .framer-oQ4GP .framer-fobbky { width: 100%; } .framer-oQ4GP .framer-1c440ty { cursor: pointer; } .framer-oQ4GP .framer-hk6gue { background-color: #3f397b; padding: 0px 16px 0px 16px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-oQ4GP .framer-gz68kh { gap: 0px; } .framer-oQ4GP .framer-gz68kh > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-oQ4GP .framer-gz68kh > :first-child { margin-left: 0px; } .framer-oQ4GP .framer-gz68kh > :last-child { margin-right: 0px; } }}`,`@media (min-width: 1200px) and (max-width: 1399px) { .${metadata.bodyClassName}-framer-oQ4GP { background: var(--token-f32baa44-90b8-42a5-8bca-ffba9d95b23a, rgb(255, 255, 255)); } .framer-oQ4GP.framer-1kp1nec { width: 1200px; } .framer-oQ4GP .framer-1obwugk, .framer-oQ4GP .framer-gz68kh { padding: 0px 32px 0px 32px; } .framer-oQ4GP .framer-fobbky { width: 100%; } .framer-oQ4GP .framer-1c440ty { cursor: pointer; } .framer-oQ4GP .framer-hk6gue { background-color: #3f397b; padding: 0px 16px 0px 16px; }}`,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-oQ4GP { background: var(--token-f32baa44-90b8-42a5-8bca-ffba9d95b23a, rgb(255, 255, 255)); } .framer-oQ4GP.framer-1kp1nec { width: 414px; } .framer-oQ4GP .framer-1obwugk { align-content: flex-start; align-items: flex-start; justify-content: flex-start; padding: 0px 16px 0px 16px; } .framer-oQ4GP .framer-gz68kh { flex-direction: column; gap: 24px; justify-content: flex-start; padding: 0px 16px 0px 16px; } .framer-oQ4GP .framer-18f4sos { flex: none; height: min-content; max-width: unset; min-height: unset; padding: 0px; position: relative; top: unset; width: 100%; } .framer-oQ4GP .framer-1f3k3tj { height: min-content; max-width: unset; min-height: unset; padding: 0px; } .framer-oQ4GP .framer-1t5dtha-container { z-index: 3; } .framer-oQ4GP .framer-16f3xm7 { flex: none; width: 100%; } .framer-oQ4GP .framer-xov0io { padding: 0px; } .framer-oQ4GP .framer-fobbky { gap: 0px; width: 100%; } .framer-oQ4GP .framer-gsy31k { height: 116px; } .framer-oQ4GP .framer-90n4cl { padding: 24px 0px 60px 0px; } .framer-oQ4GP .framer-rdf93b { flex-direction: column; padding: 0px 16px 0px 16px; } .framer-oQ4GP .framer-12b8rkl { align-content: center; align-items: center; flex: none; width: 100%; } .framer-oQ4GP .framer-1c440ty { cursor: pointer; } .framer-oQ4GP .framer-hk6gue { background-color: #3f397b; padding: 0px 16px 0px 16px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-oQ4GP .framer-gz68kh, .framer-oQ4GP .framer-fobbky, .framer-oQ4GP .framer-rdf93b { gap: 0px; } .framer-oQ4GP .framer-gz68kh > *, .framer-oQ4GP .framer-rdf93b > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-oQ4GP .framer-gz68kh > :first-child, .framer-oQ4GP .framer-fobbky > :first-child, .framer-oQ4GP .framer-rdf93b > :first-child { margin-top: 0px; } .framer-oQ4GP .framer-gz68kh > :last-child, .framer-oQ4GP .framer-fobbky > :last-child, .framer-oQ4GP .framer-rdf93b > :last-child { margin-bottom: 0px; } .framer-oQ4GP .framer-fobbky > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }}`];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 3635\n * @framerIntrinsicWidth 1400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"KO5IxNsY1\":{\"layout\":[\"fixed\",\"auto\"]},\"zvOF2qHgV\":{\"layout\":[\"fixed\",\"auto\"]},\"byzlKw8Ww\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramergiYLUM_mj=withCSS(Component,css,\"framer-oQ4GP\");export default FramergiYLUM_mj;FramergiYLUM_mj.displayName=\"Docs\";FramergiYLUM_mj.defaultProps={height:3635,width:1400};addFonts(FramergiYLUM_mj,[{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\"}]},...HeaderFonts,...IconMenuFonts,...NavMobileMenuFonts,...DocsNavigationFonts,...EmbedFonts,...FooterFonts,...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=componentPresets.fonts)===null||_componentPresets_fonts===void 0?void 0:_componentPresets_fonts[\"Y_Ds3xSoe\"])?getFontsFromComponentPreset((_componentPresets_fonts1=componentPresets.fonts)===null||_componentPresets_fonts1===void 0?void 0:_componentPresets_fonts1[\"Y_Ds3xSoe\"]):[],...((_componentPresets_fonts2=componentPresets.fonts)===null||_componentPresets_fonts2===void 0?void 0:_componentPresets_fonts2[\"C7FY6vrVJ\"])?getFontsFromComponentPreset((_componentPresets_fonts3=componentPresets.fonts)===null||_componentPresets_fonts3===void 0?void 0:_componentPresets_fonts3[\"C7FY6vrVJ\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramergiYLUM_mj\",\"slots\":[],\"annotations\":{\"framerResponsiveScreen\":\"\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KO5IxNsY1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"zvOF2qHgV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"byzlKw8Ww\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1400\",\"framerIntrinsicHeight\":\"3635\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["KEY", "KeepParentScroll", "props", "containerRef", "e", "scrollableParent", "findScrollableParent", "scrollData", "scrollTop", "scrollLeft", "onScroll", "p", "element", "parent", "overflowY", "window", "fontStore", "fonts", "css", "className", "PhosphorFonts", "getFonts", "Icon", "DocSearchFonts", "DocSearch", "KeepParentScrollFonts", "KeepParentScroll", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "qLtJDKD7Hi1B71zEMN", "VrtX779jWi1B71zEMN", "idi1B71zEMN", "qLtJDKD7HSTPK2Hfua", "VrtX779jWSTPK2Hfua", "idSTPK2Hfua", "qLtJDKD7HE1_3Sz2T9", "VrtX779jWE1_3Sz2T9", "idE1_3Sz2T9", "qLtJDKD7HHTzQh1cbn", "VrtX779jWHTzQh1cbn", "idHTzQh1cbn", "qLtJDKD7HQz5uq5Wag", "VrtX779jWQz5uq5Wag", "idQz5uq5Wag", "qLtJDKD7HjroSJMQPf", "VrtX779jWjroSJMQPf", "idjroSJMQPf", "qLtJDKD7HxunJ_G0od", "VrtX779jWxunJ_G0od", "idxunJ_G0od", "qLtJDKD7HmHSNUyQCj", "VrtX779jWmHSNUyQCj", "idmHSNUyQCj", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onClick199xy30", "args", "onClick199tqtu", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "transition1", "addPropertyOverrides", "transition2", "cx", "serializationHash", "u", "ComponentViewportProvider", "Icon", "RichText2", "DocSearch", "KeepParentScroll", "ChildrenCanSuspend", "QueryData", "cOzahs8Xb_default", "collection", "paginationInfo", "loadMore", "l", "i", "PathVariablesContext", "Link", "collection1", "paginationInfo1", "loadMore1", "collection2", "paginationInfo2", "loadMore2", "collection3", "paginationInfo3", "loadMore3", "collection4", "paginationInfo4", "loadMore4", "collection5", "paginationInfo5", "loadMore5", "collection6", "paginationInfo6", "loadMore6", "collection7", "paginationInfo7", "loadMore7", "css", "FramerpmMF2sp0b", "withCSS", "pmMF2sp0b_default", "addPropertyControls", "ControlType", "addFonts", "PhosphorFonts", "DocSearchFonts", "KeepParentScrollFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "_componentPresets_fonts", "_componentPresets_fonts1", "_componentPresets_fonts2", "_componentPresets_fonts3", "HeaderFonts", "getFonts", "dOZ_Kdczw_default", "IconMenuFonts", "z87mFmNAe_default", "NavMobileMenuFonts", "zW_byJtVH_default", "DocsNavigationFonts", "pmMF2sp0b_default", "EmbedFonts", "Embed", "FooterFonts", "byXRDYPEq_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "getContainer", "_document_querySelector", "_ref", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "isSet", "value", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "useQueryData", "cOzahs8Xb_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "_getFromCurrentRouteData", "_getFromCurrentRouteData1", "_getFromCurrentRouteData2", "style", "className", "layoutId", "variant", "VrtX779jW", "wMbPdCxbM", "HKCGWm7LH", "restProps", "ue", "metadata1", "robotsTag", "ie", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "fx4R2l1lw3bnx0g", "overlay", "loadMore", "args", "wi1BfkOLm1wnntms", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "elementId", "useRouteElementId", "ref2", "defaultLayoutId", "ae", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "l", "PropertyOverrides2", "ComponentViewportProvider", "Container", "AnimatePresence", "Ga", "x", "Link", "SVG", "RichText2", "ComponentPresetsProvider", "css", "FramergiYLUM_mj", "withCSS", "giYLUM_mj_default", "addFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "__FramerMetadata__"]
}
