{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/LHz3bw67SqHRmnCKTlE6/Ticker.js", "ssg:https://framerusercontent.com/modules/Qz5S2xQOmFQNiSGrJmiW/iFRYOzuEUMSjw0LJMxNm/GFS7XixfE.js", "ssg:https://framerusercontent.com/modules/7io9oPIi5kvCg8wRgkmi/HZNY2mNrO89EEMx1uWEL/M5fmjn3Hx.js", "ssg:https://framerusercontent.com/modules/yDXcr200OKPRLwiFRTLJ/ZmussJKWLxbx0J3mSJzb/ProductSwitchHelper.js", "ssg:https://rive.app/api/s/BsBO_icehU6cM96SS3xZHw/framer/?runtime=rive-renderer", "ssg:https://framerusercontent.com/modules/rOLa592EGLRC94uMWjvT/enTN7u2UszP1orOhvO9n/AnimSwitch.js", "ssg:https://framerusercontent.com/modules/qHuy3VdkFBsjgwXLUIEv/GGTv5zKapvwPp0DkczeM/LiqQ_fpln.js", "ssg:https://framerusercontent.com/modules/Vhcd9pytYJrONjTa1tjw/7YTgsMEmSLyPCP6kL1gr/p6jB45PEX.js", "ssg:https://framerusercontent.com/modules/u7pZ4UpkG8GXf9vxvVcD/UhgINesojYXld5SjOSnX/US8YMbf4A.js", "ssg:https://framerusercontent.com/modules/DsxlN3p8sEczGR3HnwV4/CXh9RBtpVY7JkU61xFfk/O8g3_TEK7.js", "ssg:https://framerusercontent.com/modules/dzJiJjv1XOFhXsjyJR2q/TzZyFBleNRRc7AOZRRCM/Uj51H0VpQ.js", "ssg:https://framerusercontent.com/modules/xmodXDirFgzkKwzBdHQ4/l5nElBHnsscYjBQEg3uv/Vs5fsVuCV.js", "ssg:https://framerusercontent.com/modules/ENnNnMbPRNT0bgJlQUtb/tgzIeYQxPfmo37c4mlnU/pipfm3NxG.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,useCallback,cloneElement,startTransition}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots=[],gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const currentTarget=RenderTarget.current();const isCanvas=currentTarget===RenderTarget.canvas||currentTarget===RenderTarget.export;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[{current:null},{current:null}];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=null;let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;startTransition(()=>setSize({parent:parentLength,children:childrenLength}));}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...child.props?.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},child.props?.children)})});});}const isInView=isCanvas?true:useInView(parentRef);if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",willChange:!isInView?undefined:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...child.props?.style,width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},child.props?.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);}));}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);const playOrPause=useCallback(()=>{if(!animationRef.current)return;const hidden=document.hidden;if(isInView&&!hidden&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if((!isInView||hidden)&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);useEffect(()=>{playOrPause();},[isInView]);useEffect(()=>{document.addEventListener(\"visibilitychange\",playOrPause);return()=>{document.removeEventListener(\"visibilitychange\",playOrPause);};},[playOrPause]);}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas||!isInView?\"auto\":\"transform\",transform:transformer(0)},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (4d21961)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"FtmtxGlqd\",\"BzvtsW7kI\"];const serializationHash=\"framer-w3jIP\";const variantClassNames={BzvtsW7kI:\"framer-v-qg4lxg\",FtmtxGlqd:\"framer-v-194kjos\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const numberToPixelString=value=>{if(typeof value!==\"number\")return value;if(!Number.isFinite(value))return undefined;return Math.max(0,value)+\"px\";};const transition1={bounce:0,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"USD0++\":\"BzvtsW7kI\",USD0:\"FtmtxGlqd\"};const getProps=({height,id,padding,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"FtmtxGlqd\",xEJKa8ZRX:padding??props.xEJKa8ZRX??\"40px 40px 48px 40px\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,xEJKa8ZRX,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"FtmtxGlqd\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/zc8C1rZUIRoJOu6dGxKV56KCWEY.png\",srcSet:\"https://framerusercontent.com/images/zc8C1rZUIRoJOu6dGxKV56KCWEY.png?scale-down-to=512 512w,https://framerusercontent.com/images/zc8C1rZUIRoJOu6dGxKV56KCWEY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zc8C1rZUIRoJOu6dGxKV56KCWEY.png 1664w\"},className:cx(scopingClassNames,\"framer-194kjos\",className,classNames),\"data-border\":true,\"data-framer-name\":\"USD0\",layoutDependency:layoutDependency,layoutId:\"FtmtxGlqd\",ref:refBinding,style:{\"--1jl89d3\":numberToPixelString(xEJKa8ZRX),\"--border-bottom-width\":\"1.5px\",\"--border-color\":\"rgb(28, 28, 32)\",\"--border-left-width\":\"1.5px\",\"--border-right-width\":\"1.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1.5px\",borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30,boxShadow:\"0px 6px 12px 0px rgba(0, 0, 0, 0.15000000596046448), 0px 10px 25px 0px rgba(0, 0, 0, 0.10000000149011612), 0px 4px 8px 0px rgba(0, 0, 0, 0.10000000149011612)\",...style},...addPropertyOverrides({BzvtsW7kI:{\"data-framer-name\":\"USD0++\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-y9yyc0\",layoutDependency:layoutDependency,layoutId:\"X4Ljyzwrb\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6cuc8r\",\"data-framer-name\":\"Illustration\",layoutDependency:layoutDependency,layoutId:\"xd6JvEd1V\",style:{mask:\"linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 33%) add\",WebkitMask:\"linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 33%) add\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1skng08\",\"data-framer-name\":\"USUAL_SECURE\",layoutDependency:layoutDependency,layoutId:\"LtOLwLtdU\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-adjfd8\",\"data-framer-name\":\".Illustration\",layoutDependency:layoutDependency,layoutId:\"aVqdNiRJL\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",sizes:\"128px\",src:\"https://framerusercontent.com/images/H7Z3R2qUBC7j82i0QWekypzqMQ.png\",srcSet:\"https://framerusercontent.com/images/H7Z3R2qUBC7j82i0QWekypzqMQ.png 368w\"},className:\"framer-nyubfa\",\"data-framer-name\":\"Group\",layoutDependency:layoutDependency,layoutId:\"QsXCktOxe\",...addPropertyOverrides({BzvtsW7kI:{background:{alt:\"\",fit:\"fit\",pixelHeight:128,pixelWidth:129,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/xJT9dnWAaq6Ad0mC7OurvGF4crs.svg\"}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2gcuea\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"sEDdAWBbK\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Safe and Insured\"})}),className:\"framer-1hks5dr\",\"data-framer-name\":\"Title\",fonts:[\"CUSTOM;Uxum Grotesque Bold\"],layoutDependency:layoutDependency,layoutId:\"oMY_XLNKd\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({BzvtsW7kI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"1:1 Early Unstaking\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Uxum Grotesque Regular\", \"Uxum Grotesque Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.03em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(153, 151, 164))\"},children:\"Although backed by solid, liquid assets, USD0 is also protected by an insurance fund, funded by protocol revenue, to shield holders in a systemic crisis.\"})}),className:\"framer-1iwcxpj\",\"data-framer-name\":\"Subtext\",fonts:[\"CUSTOM;Uxum Grotesque Regular\"],layoutDependency:layoutDependency,layoutId:\"KXYPEUSHj\",style:{\"--extracted-r6o4lv\":\"rgb(153, 151, 164)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({BzvtsW7kI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Uxum Grotesque Regular\", \"Uxum Grotesque Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.03em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(153, 151, 164))\"},children:\"USD0++ maintains stable Protocol revenue and long-term value for $USUAL. Exit 1:1 by sacrificing some of your earned $USUAL.\"})})}},baseVariant,gestureVariant)})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-w3jIP.framer-2gxh8u, .framer-w3jIP .framer-2gxh8u { display: block; }\",\".framer-w3jIP.framer-194kjos { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: var(--1jl89d3); position: relative; width: 416px; will-change: var(--framer-will-change-override, transform); }\",\".framer-w3jIP .framer-y9yyc0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-w3jIP .framer-6cuc8r { flex: none; height: 115px; overflow: visible; position: relative; width: 128px; }\",\".framer-w3jIP .framer-1skng08 { bottom: -17px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-w3jIP .framer-adjfd8 { bottom: -17px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-w3jIP .framer-nyubfa { flex: none; height: 128px; left: -2px; position: absolute; top: calc(49.24242424242426% - 128px / 2); width: 100%; }\",\".framer-w3jIP .framer-2gcuea { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-w3jIP .framer-1hks5dr, .framer-w3jIP .framer-1iwcxpj { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-w3jIP.framer-194kjos, .framer-w3jIP .framer-y9yyc0, .framer-w3jIP .framer-2gcuea { gap: 0px; } .framer-w3jIP.framer-194kjos > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-w3jIP.framer-194kjos > :first-child, .framer-w3jIP .framer-y9yyc0 > :first-child, .framer-w3jIP .framer-2gcuea > :first-child { margin-top: 0px; } .framer-w3jIP.framer-194kjos > :last-child, .framer-w3jIP .framer-y9yyc0 > :last-child, .framer-w3jIP .framer-2gcuea > :last-child { margin-bottom: 0px; } .framer-w3jIP .framer-y9yyc0 > * { margin: 0px; margin-bottom: calc(-16px / 2); margin-top: calc(-16px / 2); } .framer-w3jIP .framer-2gcuea > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }\",'.framer-w3jIP[data-border=\"true\"]::after, .framer-w3jIP [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 335\n * @framerIntrinsicWidth 416\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"BzvtsW7kI\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"xEJKa8ZRX\":\"padding\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerGFS7XixfE=withCSS(Component,css,\"framer-w3jIP\");export default FramerGFS7XixfE;FramerGFS7XixfE.displayName=\"Product Card 03\";FramerGFS7XixfE.defaultProps={height:335,width:416};addPropertyControls(FramerGFS7XixfE,{variant:{options:[\"FtmtxGlqd\",\"BzvtsW7kI\"],optionTitles:[\"USD0\",\"USD0++\"],title:\"Variant\",type:ControlType.Enum},xEJKa8ZRX:{defaultValue:\"40px 40px 48px 40px\",title:\"Padding\",type:ControlType.Padding}});addFonts(FramerGFS7XixfE,[{explicitInter:true,fonts:[{family:\"Uxum Grotesque Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/p3seIywnIAnIXHuYThOPrNgZfo.woff2\"},{family:\"Uxum Grotesque Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/pexfO5izGLBcHiyniDYIZUv6ls0.woff2\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerGFS7XixfE\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"BzvtsW7kI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"xEJKa8ZRX\\\":\\\"padding\\\"}\",\"framerIntrinsicHeight\":\"335\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"416\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./GFS7XixfE.map", "// Generated by Framer (9d598a4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"NCatUFlTE\",\"OLQOn7Nsu\"];const serializationHash=\"framer-AAfBn\";const variantClassNames={NCatUFlTE:\"framer-v-l8iofr\",OLQOn7Nsu:\"framer-v-xf82je\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Closed:\"NCatUFlTE\",Open:\"OLQOn7Nsu\"};const getProps=({click,height,hover,id,width,...props})=>{return{...props,njoFAKd7A:click??props.njoFAKd7A,q97P4ofZl:hover??props.q97P4ofZl,variant:humanReadableVariantMap[props.variant]??props.variant??\"NCatUFlTE\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,q97P4ofZl,njoFAKd7A,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"NCatUFlTE\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapuzags7=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(njoFAKd7A){const res=await njoFAKd7A(...args);if(res===false)return false;}});const onMouseEnterwhkpsf=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});if(q97P4ofZl){const res=await q97P4ofZl(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-l8iofr\",className,classNames),\"data-framer-name\":\"Closed\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"NCatUFlTE\",onMouseEnter:onMouseEnterwhkpsf,onTap:onTapuzags7,ref:refBinding,style:{...style},...addPropertyOverrides({OLQOn7Nsu:{\"data-framer-name\":\"Open\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/cqdPTSL1dIYUvGW5ZwRy7sDlus.png\",srcSet:\"https://framerusercontent.com/images/cqdPTSL1dIYUvGW5ZwRy7sDlus.png?scale-down-to=512 512w,https://framerusercontent.com/images/cqdPTSL1dIYUvGW5ZwRy7sDlus.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/cqdPTSL1dIYUvGW5ZwRy7sDlus.png 1280w\"},className:\"framer-wavu9y\",\"data-border\":true,\"data-framer-name\":\"Segment\",layoutDependency:layoutDependency,layoutId:\"fPUlqfL9a\",style:{\"--border-bottom-width\":\"1.5px\",\"--border-color\":\"rgb(28, 28, 32)\",\"--border-left-width\":\"1.5px\",\"--border-right-width\":\"1.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1.5px\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,boxShadow:\"0px 6px 12px 0px rgba(0, 0, 0, 0.15000000596046448), 0px 10px 25px 0px rgba(0, 0, 0, 0.10000000149011612), 0px 4px 8px 0px rgba(0, 0, 0, 0.10000000149011612)\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-8dd613\",\"data-framer-name\":\"Frame 41118\",layoutDependency:layoutDependency,layoutId:\"xN1y8YAFK\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-a2r2vo\",\"data-framer-name\":\"Currency Container\",layoutDependency:layoutDependency,layoutId:\"jSktvi8V2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7VXh1bSBHcm90ZXNxdWUtNzAw\",\"--framer-font-family\":'\"Uxum Grotesque\", \"Uxum Grotesque Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Stablecoin\"})}),className:\"framer-xjn461\",\"data-framer-name\":\"USD0\",fonts:[\"GF;Uxum Grotesque-700\"],layoutDependency:layoutDependency,layoutId:\"n9cfCx86k\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7VXh1bSBHcm90ZXNxdWUtNzAw\",\"--framer-font-family\":'\"Uxum Grotesque\", \"Uxum Grotesque Placeholder\", sans-serif',\"--framer-font-size\":\"0.71px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"1px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(10, 10, 11))\"},children:\"+\"})}),className:\"framer-17gp4sa\",\"data-framer-name\":\"+1\",fonts:[\"GF;Uxum Grotesque-700\"],layoutDependency:layoutDependency,layoutId:\"Q33zvrYuy\",style:{\"--extracted-r6o4lv\":\"rgb(10, 10, 11)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7VXh1bSBHcm90ZXNxdWUtNzAw\",\"--framer-font-family\":'\"Uxum Grotesque\", \"Uxum Grotesque Placeholder\", sans-serif',\"--framer-font-size\":\"0.71px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"1px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(10, 10, 11))\"},children:\"+\"})}),className:\"framer-1k3dmdr\",\"data-framer-name\":\"+2\",fonts:[\"GF;Uxum Grotesque-700\"],layoutDependency:layoutDependency,layoutId:\"bqmpv6EbU\",style:{\"--extracted-r6o4lv\":\"rgb(10, 10, 11)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-chl4ix\",\"data-framer-name\":\"IconLeft\",layoutDependency:layoutDependency,layoutId:\"C0rN23dQn\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-bo84k3\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"dih2EvdFt\",style:{rotate:0},variants:{OLQOn7Nsu:{rotate:180}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1he2vkb\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:8,intrinsicWidth:14,layoutDependency:layoutDependency,layoutId:\"xxUFlbysw\",svg:'<svg width=\"14\" height=\"8\" viewBox=\"-1 -1 14 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M11.5 0L6 6L0.5 0\" stroke=\"#BCBCBC\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-AAfBn.framer-1g154r6, .framer-AAfBn .framer-1g154r6 { display: block; }\",\".framer-AAfBn.framer-l8iofr { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 390px; }\",\".framer-AAfBn .framer-wavu9y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 72px; justify-content: space-between; overflow: visible; padding: 16px 24px 16px 24px; position: relative; width: 100%; }\",\".framer-AAfBn .framer-8dd613 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 188px; }\",\".framer-AAfBn .framer-a2r2vo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 3px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-AAfBn .framer-xjn461, .framer-AAfBn .framer-17gp4sa, .framer-AAfBn .framer-1k3dmdr { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-AAfBn .framer-chl4ix { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-AAfBn .framer-bo84k3 { flex: none; height: 24px; overflow: hidden; position: relative; width: 24px; }\",\".framer-AAfBn .framer-1he2vkb { flex: none; height: 6px; left: calc(50.00000000000002% - 11px / 2); position: absolute; top: calc(50.00000000000002% - 6px / 2); width: 11px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-AAfBn.framer-l8iofr, .framer-AAfBn .framer-8dd613, .framer-AAfBn .framer-a2r2vo, .framer-AAfBn .framer-chl4ix { gap: 0px; } .framer-AAfBn.framer-l8iofr > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-AAfBn.framer-l8iofr > :first-child { margin-top: 0px; } .framer-AAfBn.framer-l8iofr > :last-child { margin-bottom: 0px; } .framer-AAfBn .framer-8dd613 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-AAfBn .framer-8dd613 > :first-child, .framer-AAfBn .framer-a2r2vo > :first-child, .framer-AAfBn .framer-chl4ix > :first-child { margin-left: 0px; } .framer-AAfBn .framer-8dd613 > :last-child, .framer-AAfBn .framer-a2r2vo > :last-child, .framer-AAfBn .framer-chl4ix > :last-child { margin-right: 0px; } .framer-AAfBn .framer-a2r2vo > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-AAfBn .framer-chl4ix > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",'.framer-AAfBn[data-border=\"true\"]::after, .framer-AAfBn [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 72\n * @framerIntrinsicWidth 390\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"OLQOn7Nsu\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"q97P4ofZl\":\"hover\",\"njoFAKd7A\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerM5fmjn3Hx=withCSS(Component,css,\"framer-AAfBn\");export default FramerM5fmjn3Hx;FramerM5fmjn3Hx.displayName=\"V1.1 / Dropdown Menu\";FramerM5fmjn3Hx.defaultProps={height:72,width:390};addPropertyControls(FramerM5fmjn3Hx,{variant:{options:[\"NCatUFlTE\",\"OLQOn7Nsu\"],optionTitles:[\"Closed\",\"Open\"],title:\"Variant\",type:ControlType.Enum},q97P4ofZl:{title:\"Hover\",type:ControlType.EventHandler},njoFAKd7A:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerM5fmjn3Hx,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerM5fmjn3Hx\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"OLQOn7Nsu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"q97P4ofZl\\\":\\\"hover\\\",\\\"njoFAKd7A\\\":\\\"click\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"390\",\"framerIntrinsicHeight\":\"72\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./M5fmjn3Hx.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useState}from\"react\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";const JSON_RPC_URL=\"https://rpc.flashbots.net\";const USD0_ADDRESS=\"0x73A15FeD60Bf67631dC6cd7Bc5B6e8da8190aCF5\";const RWA_HELPER_ADDRESS=\"0xd2B343dB9f2Dc72223B203787f41Ea89B4bE2964\";const USUAL_API_PREFIX=\"https://app.usual.money/api/rewards/rates/\";const TOTAL_SUPPLY_SIGNATURE=\"0x18160ddd\";const GET_BACKING_SIGNATURE=\"0xdc8b2660\";const K=BigInt(10)**BigInt(3);const M=K*K;const B=M*K;const T=B*K;const PRECISION=2;function abbreviateNumber(value,prefix=\"$\"){if(value===undefined)return\"Loading...\";const multiplier=BigInt(10)**BigInt(PRECISION);let scaledValue=value*multiplier/BigInt(10)**BigInt(18);let suffix=\"\";if(scaledValue>T*multiplier){scaledValue/=T;suffix=\"T\";}else if(scaledValue>B*multiplier){scaledValue/=B;suffix=\"B\";}else if(scaledValue>M*multiplier){scaledValue/=M;suffix=\"M\";}else if(scaledValue>K*multiplier){scaledValue/=K;suffix=\"K\";}const whole=(scaledValue/multiplier).toString();const fractional=(scaledValue%multiplier).toString().padStart(2,\"0\");return`${prefix}${whole}.${fractional}${suffix}`;}function calculateRevenues(tvl){if(tvl===undefined)return\"Loading...\";const revenueRate=BigInt(40312)// 4,0312% exprim\u00E9 en microbips || Ancien calcul : 4,66%\n;const annualMultiplier=BigInt(4)// Multiplicateur annuel (4 trimestres)\n;const divisor=BigInt(1e6)// Diviseur pour les pourcentages en base 100\n;// Revenus = TVL * 4.66% * 4, ajust\u00E9 pour les unit\u00E9s de TVL en wei\nconst revenues=tvl*revenueRate*annualMultiplier/divisor;return abbreviateNumber(revenues)// Revenus format\u00E9s pour affichage\n;}function useEthCall(to,input){const[result,setResult]=useState();useEffect(()=>{async function fetchRPC(signal){const res=await fetch(JSON_RPC_URL,{method:\"POST\",body:JSON.stringify({id:1,jsonrpc:\"2.0\",method:\"eth_call\",params:[{to,input},\"latest\"]}),signal});const{result}=await res.json();if(signal.aborted)return;setResult(BigInt(result));}const controller=new AbortController;fetchRPC(controller.signal);return()=>controller.abort();},[]);return result;}function useAPY(symbol=\"USD0++\"){const[apy,setAPY]=useState();useEffect(()=>{async function fetchAPI(signal){let url=USUAL_API_PREFIX+symbol;if(window.location.hostname!==\"usual.money\"){// To test before prod (bypass CORS)\nurl=`https://corsproxy.io/?url=${encodeURIComponent(url)}`;}const res=await fetch(url,{signal});const{rewards}=await res.json();if(signal.aborted)return;const totalApy=rewards.reduce((a,b)=>a+b.apr*1e18,0);setAPY(BigInt(totalApy.toFixed())*BigInt(100));}const controller=new AbortController;fetchAPI(controller.signal);return()=>controller.abort();},[]);return apy;}const useStore=createStore({value:\"USD0\"});export function withStoreSwitch(Component){return props=>{const[store,setStore]=useStore();const toggleStore=()=>{setStore({value:store.value===\"USD0\"?\"USD0++\":\"USD0\"});};return /*#__PURE__*/_jsx(Component,{...props,variant:store.value,onClick:toggleStore});};}export function withDynamicTitle(Component){return props=>{const[store]=useStore();const text=store.value===\"USD0\"?\"USD0, The Ultimate\\xa0Fiat Stablecoin\":\"USD0++, The LST for Real Word Assets\";return /*#__PURE__*/_jsx(Component,{...props,text:text,variant:store.value});};}export function withDynamicDesc(Component){return props=>{const[store]=useStore();const text=store.value===\"USD0\"?\"The world's first RWA stablecoin that aggregates various US Treasury Bill tokens, providing a secure & permissionless bankruptcy-remote solution unlinked to traditional bank deposits.\":\"USD0++ is the liquid staking version of USD0, acting as a savings account for RWA with a 4-year lock-up. It remains transferable while offering $USUAL rewards to drive USD0 adoption.\";return /*#__PURE__*/_jsx(Component,{...props,text:text,variant:store.value});};}export function withDynamicVariant(Component){return props=>{const[store]=useStore();return /*#__PURE__*/_jsx(Component,{...props,variant:store.value});};}// STAT 1\nexport function withDynamicNum1Title(Component){return props=>{const[store]=useStore();const text=store.value===\"USD0\"?\"TVL\":\"4-Year Cash Flow\";return /*#__PURE__*/_jsx(Component,{...props,text:text,variant:store.value});};}export function withDynamicNum1(Component){return props=>{const[store]=useStore();const tvl=useEthCall(USD0_ADDRESS,TOTAL_SUPPLY_SIGNATURE);const text=store.value===\"USD0\"?abbreviateNumber(tvl):calculateRevenues(tvl);return /*#__PURE__*/_jsx(Component,{...props,text:text,variant:store.value});};}// STAT 2\nexport function withDynamicNum2Title(Component){return props=>{const[store]=useStore();const text=store.value===\"USD0\"?\"% Collateralization\":\"APY\";return /*#__PURE__*/_jsx(Component,{...props,text:text,variant:store.value});};}export function withDynamicNum2(Component){return props=>{const[store]=useStore();const backing=useEthCall(RWA_HELPER_ADDRESS,GET_BACKING_SIGNATURE);const tvl=useEthCall(USD0_ADDRESS,TOTAL_SUPPLY_SIGNATURE);const apy=useAPY();const collateralizationRatio=backing!==undefined&&tvl!==undefined?backing*BigInt(10)**BigInt(18+2)/tvl:undefined;const value=store.value===\"USD0\"?collateralizationRatio:apy;const text=abbreviateNumber(value,\"\")+(value!==undefined?\"%\":\"\");return /*#__PURE__*/_jsx(Component,{...props,text:text,variant:store.value});};}export function withCollateralizationRatio(Component){return props=>{const[store]=useStore();const backing=useEthCall(RWA_HELPER_ADDRESS,GET_BACKING_SIGNATURE);const tvl=useEthCall(USD0_ADDRESS,TOTAL_SUPPLY_SIGNATURE);const collateralizationRatio=backing!==undefined&&tvl!==undefined?backing*BigInt(10)**BigInt(18+2)/tvl:undefined;const text=abbreviateNumber(collateralizationRatio,\"\")+(collateralizationRatio!==undefined?\"%\":\"\");return /*#__PURE__*/_jsx(Component,{...props,text:text});};}// Switch Section\nexport function withDynamicSwitchTitle(Component){return props=>{const[store]=useStore();const text=store.value===\"USD0\"?\"Supercharge USD0\":\"Boosted Yield Activated!\";return /*#__PURE__*/_jsx(Component,{...props,text:text,variant:store.value});};}export function withDynamicSwitchDescription(Component){return props=>{const[store]=useStore();const text=store.value===\"USD0\"?\"Toggle to discover USD0++, a liquid staking version of USD0, acting like a savings account for Real-World Assets with a 4-year lock-up.\":\"Toggle to learn more on USD0, an RWA stablecoin aggregating US Treasury Bill tokens, unlinked to traditional bank deposits.\";return /*#__PURE__*/_jsx(Component,{...props,text:text,variant:store.value});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withDynamicSwitchTitle\":{\"type\":\"reactHoc\",\"name\":\"withDynamicSwitchTitle\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withDynamicNum1Title\":{\"type\":\"reactHoc\",\"name\":\"withDynamicNum1Title\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withDynamicDesc\":{\"type\":\"reactHoc\",\"name\":\"withDynamicDesc\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withStoreSwitch\":{\"type\":\"reactHoc\",\"name\":\"withStoreSwitch\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withDynamicNum1\":{\"type\":\"reactHoc\",\"name\":\"withDynamicNum1\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withDynamicNum2\":{\"type\":\"reactHoc\",\"name\":\"withDynamicNum2\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withDynamicSwitchDescription\":{\"type\":\"reactHoc\",\"name\":\"withDynamicSwitchDescription\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withDynamicNum2Title\":{\"type\":\"reactHoc\",\"name\":\"withDynamicNum2Title\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withCollateralizationRatio\":{\"type\":\"reactHoc\",\"name\":\"withCollateralizationRatio\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withDynamicTitle\":{\"type\":\"reactHoc\",\"name\":\"withDynamicTitle\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withDynamicVariant\":{\"type\":\"reactHoc\",\"name\":\"withDynamicVariant\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ProductSwitchHelper.map", "import React, { useEffect } from \"react\";\nimport { addPropertyControls, ControlType, RenderTarget } from \"framer\";\nimport Rive, { useRive, useStateMachineInput } from \"@rive-app/react-webgl2\";\nexport const componentName = \"Artboard - State Machine 1\";\nexport default function Controls(props) {\n  const layout = new Rive.Layout({\n    fit: props.fit ?? \"contain\",\n    alignment: props.alignment ?? \"center\",\n  });\n  const params = {\n    src: \"https://public.rive.app/hosted/429134/241770/BsBO_icehU6cM96SS3xZHw.riv\",\n    artboard: \"Artboard\",\n    stateMachines: \"State Machine 1\",\n    autoplay: true && props.play,\n    automaticallyHandleEvents: true,\n    layout,\n  };\n  const { RiveComponent, rive } = useRive(params);\n  const boolean1 = useStateMachineInput(\n    rive,\n    \"State Machine 1\",\n    \"USD0++\",\n    props.boolean1\n  );\n  useEffect(() => {\n    if (boolean1) {\n      boolean1.value = props.boolean1;\n    }\n  }, [props.boolean1]);\n  const boolean2 = useStateMachineInput(\n    rive,\n    \"State Machine 1\",\n    \"USD0\",\n    props.boolean2\n  );\n  useEffect(() => {\n    if (boolean2) {\n      boolean2.value = props.boolean2;\n    }\n  }, [props.boolean2]);\n  useEffect(() => {\n    if (rive) {\n      if (RenderTarget.current() === RenderTarget.canvas) {\n        if (props.playOnCanvas && props.play) {\n          rive.play();\n        } else {\n          rive.pause();\n        }\n      } else {\n        if (props.play) {\n          rive.play();\n        } else {\n          rive.pause();\n        }\n      }\n    }\n  }, [props.play]);\n  useEffect(() => {\n    if (rive && RenderTarget.current() === RenderTarget.canvas) {\n      if (props.playOnCanvas && props.play) {\n        rive.play();\n      } else {\n        rive.pause();\n      }\n    }\n  }, [rive, props.playOnCanvas, props.play]);\n  useEffect(() => {\n    if (rive) {\n      const layout = new Rive.Layout({\n        fit: props.fit ?? \"contain\",\n        alignment: props.alignment ?? \"center\",\n      });\n      rive.layout = layout;\n    }\n  }, [props.fit, props.alignment]);\n  return React.createElement(RiveComponent, {});\n}\nControls.defaultProps = {\n  play: true,\n  playOnCanvas: true,\n  boolean1: false,\n  boolean2: false,\n};\nexport const propertyControls = {\n  play: {\n    title: \"Playback\",\n    type: ControlType.Boolean,\n    defaultValue: true,\n    enabledTitle: \"Play\",\n    disabledTitle: \"Pause\",\n  },\n  playOnCanvas: {\n    type: ControlType.Boolean,\n    title: \"Play on Canvas\",\n    defaultValue: true,\n    enabledTitle: \"Play\",\n    disabledTitle: \"Pause\",\n  },\n  boolean1: { title: \"USD0++\", type: ControlType.Boolean, defaultValue: false },\n  boolean2: { title: \"USD0\", type: ControlType.Boolean, defaultValue: false },\n  fit: {\n    type: ControlType.Enum,\n    defaultValue: \"contain\",\n    displaySegmentedControl: false,\n    segmentedControlDirection: \"vertical\",\n    options: [\n      \"contain\",\n      \"cover\",\n      \"fill\",\n      \"fitWidth\",\n      \"fitHeight\",\n      \"none\",\n      \"scaleDown\",\n    ],\n    optionTitles: [\n      \"Contain\",\n      \"Cover\",\n      \"Fill\",\n      \"Fit Width\",\n      \"Fit Height\",\n      \"None\",\n      \"Scale Down\",\n    ],\n  },\n  alignment: {\n    type: ControlType.Enum,\n    defaultValue: \"center\",\n    displaySegmentedControl: false,\n    segmentedControlDirection: \"vertical\",\n    options: [\n      \"center\",\n      \"topLeft\",\n      \"topCenter\",\n      \"topRight\",\n      \"centerLeft\",\n      \"centerRight\",\n      \"bottomLeft\",\n      \"bottomCenter\",\n      \"bottomRight\",\n    ],\n    optionTitles: [\n      \"Center\",\n      \"Top Left\",\n      \"Top Center\",\n      \"Top Right\",\n      \"Center Left\",\n      \"Center Right\",\n      \"Bottom Left\",\n      \"Bottom Center\",\n      \"Bottom Right\",\n    ],\n  },\n};\naddPropertyControls(Controls, propertyControls);\n", "import{addPropertyControls}from\"framer\";import RiveComponent,{componentName,propertyControls}from\"https://rive.app/api/s/BsBO_icehU6cM96SS3xZHw/framer/?runtime=rive-renderer\";/**\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export default RiveComponent;RiveComponent.displayName=componentName;addPropertyControls(RiveComponent,propertyControls);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"RiveComponent\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./AnimSwitch.map", "// Generated by Framer (f030ee3)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import ArtboardStateMachine1 from\"https://framerusercontent.com/modules/rOLa592EGLRC94uMWjvT/enTN7u2UszP1orOhvO9n/AnimSwitch.js\";const ArtboardStateMachine1Fonts=getFonts(ArtboardStateMachine1);const cycleOrder=[\"mEGNW1yqW\",\"Z5VKOahWG\"];const serializationHash=\"framer-Okdqz\";const variantClassNames={mEGNW1yqW:\"framer-v-1uwbhkl\",Z5VKOahWG:\"framer-v-12e6ugq\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"USD0++\":\"Z5VKOahWG\",USD0:\"mEGNW1yqW\"};const getProps=({click,height,id,width,...props})=>{return{...props,CIOMVIyzl:click??props.CIOMVIyzl,variant:humanReadableVariantMap[props.variant]??props.variant??\"mEGNW1yqW\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,CIOMVIyzl,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"mEGNW1yqW\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapqrn5i4=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(CIOMVIyzl){const res=await CIOMVIyzl(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1uwbhkl\",className,classNames),\"data-framer-name\":\"USD0\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"mEGNW1yqW\",onTap:onTapqrn5i4,ref:refBinding,style:{...style},...addPropertyOverrides({Z5VKOahWG:{\"data-framer-name\":\"USD0++\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1hf7ech-container\",\"data-framer-name\":\"Rive\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"eBrXka1pq-container\",name:\"Rive\",nodeId:\"eBrXka1pq\",rendersWithMotion:true,scopeId:\"LiqQ_fpln\",children:/*#__PURE__*/_jsx(ArtboardStateMachine1,{alignment:\"center\",boolean1:false,boolean2:true,fit:\"contain\",height:\"100%\",id:\"eBrXka1pq\",layoutId:\"eBrXka1pq\",name:\"Rive\",play:true,playOnCanvas:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({Z5VKOahWG:{boolean1:true,boolean2:false}},baseVariant,gestureVariant)})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Okdqz.framer-8do71l, .framer-Okdqz .framer-8do71l { display: block; }\",\".framer-Okdqz.framer-1uwbhkl { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 86px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 150px; }\",\".framer-Okdqz .framer-1hf7ech-container { flex: none; height: 100%; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Okdqz.framer-1uwbhkl { gap: 0px; } .framer-Okdqz.framer-1uwbhkl > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Okdqz.framer-1uwbhkl > :first-child { margin-left: 0px; } .framer-Okdqz.framer-1uwbhkl > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 86\n * @framerIntrinsicWidth 150\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"Z5VKOahWG\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"CIOMVIyzl\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerLiqQ_fpln=withCSS(Component,css,\"framer-Okdqz\");export default FramerLiqQ_fpln;FramerLiqQ_fpln.displayName=\"Switch Mobile\";FramerLiqQ_fpln.defaultProps={height:86,width:150};addPropertyControls(FramerLiqQ_fpln,{variant:{options:[\"mEGNW1yqW\",\"Z5VKOahWG\"],optionTitles:[\"USD0\",\"USD0++\"],title:\"Variant\",type:ControlType.Enum},CIOMVIyzl:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerLiqQ_fpln,[{explicitInter:true,fonts:[]},...ArtboardStateMachine1Fonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerLiqQ_fpln\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Z5VKOahWG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"CIOMVIyzl\\\":\\\"click\\\"}\",\"framerIntrinsicHeight\":\"86\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"150\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (4d21961)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"POHNtmu3o\",\"f5cJQR8g4\"];const serializationHash=\"framer-YZDY4\";const variantClassNames={f5cJQR8g4:\"framer-v-6tsgtf\",POHNtmu3o:\"framer-v-1srqec5\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const numberToPixelString=value=>{if(typeof value!==\"number\")return value;if(!Number.isFinite(value))return undefined;return Math.max(0,value)+\"px\";};const transition1={bounce:0,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"USD0++\":\"f5cJQR8g4\",USD0:\"POHNtmu3o\"};const getProps=({height,id,padding,width,...props})=>{return{...props,hyBJlv8P2:padding??props.hyBJlv8P2??\"40px 40px 48px 40px\",variant:humanReadableVariantMap[props.variant]??props.variant??\"POHNtmu3o\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,hyBJlv8P2,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"POHNtmu3o\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/zc8C1rZUIRoJOu6dGxKV56KCWEY.png\",srcSet:\"https://framerusercontent.com/images/zc8C1rZUIRoJOu6dGxKV56KCWEY.png?scale-down-to=512 512w,https://framerusercontent.com/images/zc8C1rZUIRoJOu6dGxKV56KCWEY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zc8C1rZUIRoJOu6dGxKV56KCWEY.png 1664w\"},className:cx(scopingClassNames,\"framer-1srqec5\",className,classNames),\"data-border\":true,\"data-framer-name\":\"USD0\",layoutDependency:layoutDependency,layoutId:\"POHNtmu3o\",ref:refBinding,style:{\"--1odhfc\":numberToPixelString(hyBJlv8P2),\"--border-bottom-width\":\"1.5px\",\"--border-color\":\"rgb(28, 28, 32)\",\"--border-left-width\":\"1.5px\",\"--border-right-width\":\"1.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1.5px\",borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30,boxShadow:\"0px 6px 12px 0px rgba(0, 0, 0, 0.15000000596046448), 0px 10px 25px 0px rgba(0, 0, 0, 0.10000000149011612), 0px 4px 8px 0px rgba(0, 0, 0, 0.10000000149011612)\",...style},...addPropertyOverrides({f5cJQR8g4:{\"data-framer-name\":\"USD0++\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1l9wzvv\",layoutDependency:layoutDependency,layoutId:\"okugK9y4i\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ebfd99\",\"data-framer-name\":\"Illustration\",layoutDependency:layoutDependency,layoutId:\"MYVmSSrKx\",style:{mask:\"linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 33%) add\",WebkitMask:\"linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 33%) add\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hpi2gi\",\"data-framer-name\":\"USUAL_SECURE\",layoutDependency:layoutDependency,layoutId:\"aDzqti6kM\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ohx40f\",\"data-framer-name\":\".Illustration\",layoutDependency:layoutDependency,layoutId:\"W1soGq2Jb\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/qANmxz3T1ZfJzAbR0uZtFqRTQ.png\"},className:\"framer-8rlvsk\",\"data-framer-name\":\"Group\",layoutDependency:layoutDependency,layoutId:\"OfQ2RFivR\",...addPropertyOverrides({f5cJQR8g4:{background:{alt:\"\",fit:\"fit\",pixelHeight:120,pixelWidth:129,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Tuv44zCBnkxNzN3WWLAZl26Fo.svg\"}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-g5guyf\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"K0lUHapdu\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Fully Collateralized\u200B\"})}),className:\"framer-1j66xcr\",\"data-framer-name\":\"Title\",fonts:[\"CUSTOM;Uxum Grotesque Bold\"],layoutDependency:layoutDependency,layoutId:\"gmtSdiyfM\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({f5cJQR8g4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Secondary Market Liquidity\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Uxum Grotesque Regular\", \"Uxum Grotesque Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.03em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(153, 151, 164))\"},children:\"USD0 is fully collateralized by diversified short-term T-Bills, eliminating the fractional reserve risks of traditional fiat-backed stablecoins.\"})}),className:\"framer-1au1072\",\"data-framer-name\":\"Subtext\",fonts:[\"CUSTOM;Uxum Grotesque Regular\"],layoutDependency:layoutDependency,layoutId:\"EzAp2InHi\",style:{\"--extracted-r6o4lv\":\"rgb(153, 151, 164)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({f5cJQR8g4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Uxum Grotesque Regular\", \"Uxum Grotesque Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.03em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(153, 151, 164))\"},children:\"USD0++ is fully liquid and transferable, allowing holders to exit their positions at any time by swapping USD0++ for other assets, even before the staking period ends.\"})})}},baseVariant,gestureVariant)})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-YZDY4.framer-7ogqkj, .framer-YZDY4 .framer-7ogqkj { display: block; }\",\".framer-YZDY4.framer-1srqec5 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: var(--1odhfc); position: relative; width: 416px; will-change: var(--framer-will-change-override, transform); }\",\".framer-YZDY4 .framer-1l9wzvv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-YZDY4 .framer-1ebfd99 { flex: none; height: 115px; overflow: visible; position: relative; width: 128px; }\",\".framer-YZDY4 .framer-1hpi2gi { bottom: -17px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-YZDY4 .framer-1ohx40f { bottom: -17px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-YZDY4 .framer-8rlvsk { flex: none; height: 128px; left: -9px; position: absolute; top: 0px; width: 100%; }\",\".framer-YZDY4 .framer-g5guyf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-YZDY4 .framer-1j66xcr, .framer-YZDY4 .framer-1au1072 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-YZDY4.framer-1srqec5, .framer-YZDY4 .framer-1l9wzvv, .framer-YZDY4 .framer-g5guyf { gap: 0px; } .framer-YZDY4.framer-1srqec5 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-YZDY4.framer-1srqec5 > :first-child, .framer-YZDY4 .framer-1l9wzvv > :first-child, .framer-YZDY4 .framer-g5guyf > :first-child { margin-top: 0px; } .framer-YZDY4.framer-1srqec5 > :last-child, .framer-YZDY4 .framer-1l9wzvv > :last-child, .framer-YZDY4 .framer-g5guyf > :last-child { margin-bottom: 0px; } .framer-YZDY4 .framer-1l9wzvv > * { margin: 0px; margin-bottom: calc(-16px / 2); margin-top: calc(-16px / 2); } .framer-YZDY4 .framer-g5guyf > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }\",\".framer-YZDY4.framer-v-6tsgtf .framer-8rlvsk { left: calc(50.00000000000002% - 100% / 2); }\",'.framer-YZDY4[data-border=\"true\"]::after, .framer-YZDY4 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 335\n * @framerIntrinsicWidth 416\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"f5cJQR8g4\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"hyBJlv8P2\":\"padding\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerp6jB45PEX=withCSS(Component,css,\"framer-YZDY4\");export default Framerp6jB45PEX;Framerp6jB45PEX.displayName=\"Product Card 02\";Framerp6jB45PEX.defaultProps={height:335,width:416};addPropertyControls(Framerp6jB45PEX,{variant:{options:[\"POHNtmu3o\",\"f5cJQR8g4\"],optionTitles:[\"USD0\",\"USD0++\"],title:\"Variant\",type:ControlType.Enum},hyBJlv8P2:{defaultValue:\"40px 40px 48px 40px\",title:\"Padding\",type:ControlType.Padding}});addFonts(Framerp6jB45PEX,[{explicitInter:true,fonts:[{family:\"Uxum Grotesque Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/p3seIywnIAnIXHuYThOPrNgZfo.woff2\"},{family:\"Uxum Grotesque Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/pexfO5izGLBcHiyniDYIZUv6ls0.woff2\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerp6jB45PEX\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"hyBJlv8P2\\\":\\\"padding\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"416\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"f5cJQR8g4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"335\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./p6jB45PEX.map", "// Generated by Framer (4d21961)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"rUBWsqPoF\",\"wRn__GCsK\"];const serializationHash=\"framer-xXhly\";const variantClassNames={rUBWsqPoF:\"framer-v-i52xto\",wRn__GCsK:\"framer-v-15cdufn\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const numberToPixelString=value=>{if(typeof value!==\"number\")return value;if(!Number.isFinite(value))return undefined;return Math.max(0,value)+\"px\";};const transition1={bounce:0,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"USD0++\":\"wRn__GCsK\",USD0:\"rUBWsqPoF\"};const getProps=({height,id,padding,width,...props})=>{return{...props,OtvbAw3DJ:padding??props.OtvbAw3DJ??\"40px 40px 48px 40px\",variant:humanReadableVariantMap[props.variant]??props.variant??\"rUBWsqPoF\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,OtvbAw3DJ,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"rUBWsqPoF\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/zc8C1rZUIRoJOu6dGxKV56KCWEY.png\",srcSet:\"https://framerusercontent.com/images/zc8C1rZUIRoJOu6dGxKV56KCWEY.png?scale-down-to=512 512w,https://framerusercontent.com/images/zc8C1rZUIRoJOu6dGxKV56KCWEY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zc8C1rZUIRoJOu6dGxKV56KCWEY.png 1664w\"},className:cx(scopingClassNames,\"framer-i52xto\",className,classNames),\"data-border\":true,\"data-framer-name\":\"USD0\",layoutDependency:layoutDependency,layoutId:\"rUBWsqPoF\",ref:refBinding,style:{\"--9zirmi\":numberToPixelString(OtvbAw3DJ),\"--border-bottom-width\":\"1.5px\",\"--border-color\":\"rgb(28, 28, 32)\",\"--border-left-width\":\"1.5px\",\"--border-right-width\":\"1.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1.5px\",borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30,boxShadow:\"0px 6px 12px 0px rgba(0, 0, 0, 0.15000000596046448), 0px 10px 25px 0px rgba(0, 0, 0, 0.10000000149011612), 0px 4px 8px 0px rgba(0, 0, 0, 0.10000000149011612)\",...style},...addPropertyOverrides({wRn__GCsK:{\"data-framer-name\":\"USD0++\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7exczz\",layoutDependency:layoutDependency,layoutId:\"nnlK9icaJ\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ydycq1\",\"data-framer-name\":\"Illustration\",layoutDependency:layoutDependency,layoutId:\"sXxFnepb7\",style:{mask:\"linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 33%) add\",WebkitMask:\"linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 33%) add\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-6nm26p\",\"data-framer-name\":\"USUAL_SECURE\",layoutDependency:layoutDependency,layoutId:\"TA0HvBeg0\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dazk2e\",\"data-framer-name\":\".Illustration\",layoutDependency:layoutDependency,layoutId:\"Cp4UIOINX\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",sizes:\"128px\",src:\"https://framerusercontent.com/images/ZApha4c7PGW1X8VzH63nI2F55ao.png\",srcSet:\"https://framerusercontent.com/images/ZApha4c7PGW1X8VzH63nI2F55ao.png 268w\"},className:\"framer-1p9sex2\",\"data-framer-name\":\"Group\",layoutDependency:layoutDependency,layoutId:\"xZmcUFVkA\",...addPropertyOverrides({wRn__GCsK:{background:{alt:\"\",fit:\"fit\",pixelHeight:127,pixelWidth:128,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/UOnLGoGPKrJp1raR9BXwqTuLQ7Y.svg\"}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17tpcy6\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"aQCjm13eZ\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Efficient & Composable\"})}),className:\"framer-ua3xk4\",\"data-framer-name\":\"Title\",fonts:[\"CUSTOM;Uxum Grotesque Bold\"],layoutDependency:layoutDependency,layoutId:\"Df4PryTw4\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({wRn__GCsK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Yield & Growth Combined\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Uxum Grotesque Regular\", \"Uxum Grotesque Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.03em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(153, 151, 164))\"},children:\"Backed 1:1, USD0 is transferable, permissionless, and seamlessly integrates into DeFi and CeFi for maximum efficiency.\"})}),className:\"framer-1x0tey5\",\"data-framer-name\":\"Subtext\",fonts:[\"CUSTOM;Uxum Grotesque Regular\"],layoutDependency:layoutDependency,layoutId:\"S0b9QqQrk\",style:{\"--extracted-r6o4lv\":\"rgb(153, 151, 164)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({wRn__GCsK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Uxum Grotesque Regular\", \"Uxum Grotesque Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.03em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(153, 151, 164))\"},children:\"Usual goes beyond traditional stablecoins by aligning TVL providers with both yield and growth. Unlike Tether, Usual lets you benefit from the protocol\u2019s expansion for a rewarding experience.\"})})}},baseVariant,gestureVariant)})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-xXhly.framer-wow5yd, .framer-xXhly .framer-wow5yd { display: block; }\",\".framer-xXhly.framer-i52xto { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: var(--9zirmi); position: relative; width: 416px; will-change: var(--framer-will-change-override, transform); }\",\".framer-xXhly .framer-7exczz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-xXhly .framer-ydycq1 { flex: none; height: 115px; overflow: visible; position: relative; width: 128px; }\",\".framer-xXhly .framer-6nm26p { bottom: -17px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-xXhly .framer-1dazk2e { bottom: -17px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-xXhly .framer-1p9sex2 { flex: none; height: 128px; position: absolute; right: -10px; top: 0px; width: 100%; }\",\".framer-xXhly .framer-17tpcy6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-xXhly .framer-ua3xk4, .framer-xXhly .framer-1x0tey5 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-xXhly.framer-i52xto, .framer-xXhly .framer-7exczz, .framer-xXhly .framer-17tpcy6 { gap: 0px; } .framer-xXhly.framer-i52xto > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-xXhly.framer-i52xto > :first-child, .framer-xXhly .framer-7exczz > :first-child, .framer-xXhly .framer-17tpcy6 > :first-child { margin-top: 0px; } .framer-xXhly.framer-i52xto > :last-child, .framer-xXhly .framer-7exczz > :last-child, .framer-xXhly .framer-17tpcy6 > :last-child { margin-bottom: 0px; } .framer-xXhly .framer-7exczz > * { margin: 0px; margin-bottom: calc(-16px / 2); margin-top: calc(-16px / 2); } .framer-xXhly .framer-17tpcy6 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }\",\".framer-xXhly.framer-v-15cdufn .framer-1p9sex2 { left: calc(50.00000000000002% - 100% / 2); right: unset; }\",'.framer-xXhly[data-border=\"true\"]::after, .framer-xXhly [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 311\n * @framerIntrinsicWidth 416\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"wRn__GCsK\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"OtvbAw3DJ\":\"padding\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerUS8YMbf4A=withCSS(Component,css,\"framer-xXhly\");export default FramerUS8YMbf4A;FramerUS8YMbf4A.displayName=\"Product Card 01\";FramerUS8YMbf4A.defaultProps={height:311,width:416};addPropertyControls(FramerUS8YMbf4A,{variant:{options:[\"rUBWsqPoF\",\"wRn__GCsK\"],optionTitles:[\"USD0\",\"USD0++\"],title:\"Variant\",type:ControlType.Enum},OtvbAw3DJ:{defaultValue:\"40px 40px 48px 40px\",title:\"Padding\",type:ControlType.Padding}});addFonts(FramerUS8YMbf4A,[{explicitInter:true,fonts:[{family:\"Uxum Grotesque Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/p3seIywnIAnIXHuYThOPrNgZfo.woff2\"},{family:\"Uxum Grotesque Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/pexfO5izGLBcHiyniDYIZUv6ls0.woff2\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerUS8YMbf4A\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wRn__GCsK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"OtvbAw3DJ\\\":\\\"padding\\\"}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"416\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"311\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./US8YMbf4A.map", "// Generated by Framer (e22b717)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Image,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCodeBoundaryForOverrides,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{withCollateralizationRatio}from\"https://framerusercontent.com/modules/yDXcr200OKPRLwiFRTLJ/ZmussJKWLxbx0J3mSJzb/ProductSwitchHelper.js\";import{withAPY,withRevenues,withTVLAbbreviated}from\"https://framerusercontent.com/modules/s1XgpGq23vEXzCRShvIo/lgOqivud6mQtgLMKSLzX/TVL.js\";import ProductCard03 from\"https://framerusercontent.com/modules/Qz5S2xQOmFQNiSGrJmiW/iFRYOzuEUMSjw0LJMxNm/GFS7XixfE.js\";import SwitchMobile from\"https://framerusercontent.com/modules/qHuy3VdkFBsjgwXLUIEv/GGTv5zKapvwPp0DkczeM/LiqQ_fpln.js\";import ProductCard02 from\"https://framerusercontent.com/modules/Vhcd9pytYJrONjTa1tjw/7YTgsMEmSLyPCP6kL1gr/p6jB45PEX.js\";import ProductCard01 from\"https://framerusercontent.com/modules/u7pZ4UpkG8GXf9vxvVcD/UhgINesojYXld5SjOSnX/US8YMbf4A.js\";const RichTextWithTVLAbbreviated7itakd=withCodeBoundaryForOverrides(RichText,{nodeId:\"f19SDdQiZ\",override:withTVLAbbreviated,scopeId:\"O8g3_TEK7\"});const RichTextWithCollateralizationRatiokvckg4=withCodeBoundaryForOverrides(RichText,{nodeId:\"kqSWrwGPF\",override:withCollateralizationRatio,scopeId:\"O8g3_TEK7\"});const RichTextWithRevenuesxjtb5c=withCodeBoundaryForOverrides(RichText,{nodeId:\"X9sCPMoln\",override:withRevenues,scopeId:\"O8g3_TEK7\"});const RichTextWithAPY1my9una=withCodeBoundaryForOverrides(RichText,{nodeId:\"K2QxHPeJS\",override:withAPY,scopeId:\"O8g3_TEK7\"});const SwitchMobileFonts=getFonts(SwitchMobile);const ProductCard01Fonts=getFonts(ProductCard01);const ProductCard02Fonts=getFonts(ProductCard02);const ProductCard03Fonts=getFonts(ProductCard03);const cycleOrder=[\"D9hpxa5TE\",\"hD8mcnCKd\",\"FD0jk0xUy\",\"E14tVhGdk\"];const serializationHash=\"framer-ypdSE\";const variantClassNames={D9hpxa5TE:\"framer-v-1oci6sz\",E14tVhGdk:\"framer-v-14jkpwt\",FD0jk0xUy:\"framer-v-1ibjtg6\",hD8mcnCKd:\"framer-v-oy64d3\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={duration:0,type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Mobile USD0\":\"hD8mcnCKd\",\"Mobile USD0++\":\"FD0jk0xUy\",\"Tablet USD0\":\"D9hpxa5TE\",\"Tablet USD0++\":\"E14tVhGdk\"};const getProps=({height,id,metricSize,subtextSize,switchSubtextSize,switchTitleSize,titleSize,width,...props})=>{return{...props,A2ZWZgN9F:subtextSize??props.A2ZWZgN9F??16,lBfMNU7_t:switchTitleSize??props.lBfMNU7_t??26,UULSwUwFP:metricSize??props.UULSwUwFP??20,variant:humanReadableVariantMap[props.variant]??props.variant??\"D9hpxa5TE\",WKUTks7nq:switchSubtextSize??props.WKUTks7nq??16,zdc1xENiU:titleSize??props.zdc1xENiU??26};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,zdc1xENiU,A2ZWZgN9F,lBfMNU7_t,WKUTks7nq,UULSwUwFP,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"D9hpxa5TE\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const CIOMVIyzl7htncx=activeVariantCallback(async(...args)=>{setVariant(\"E14tVhGdk\");});const CIOMVIyzl1kk6die=activeVariantCallback(async(...args)=>{setVariant(\"FD0jk0xUy\");});const CIOMVIyzlfw86pe=activeVariantCallback(async(...args)=>{setVariant(\"hD8mcnCKd\");});const CIOMVIyzl1hjlsxl=activeVariantCallback(async(...args)=>{setVariant(\"D9hpxa5TE\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\"},className:cx(scopingClassNames,\"framer-1oci6sz\",className,classNames),\"data-framer-name\":\"Tablet USD0\",layoutDependency:layoutDependency,layoutId:\"D9hpxa5TE\",ref:refBinding,style:{borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30,...style},...addPropertyOverrides({E14tVhGdk:{\"data-framer-name\":\"Tablet USD0++\"},FD0jk0xUy:{\"data-framer-name\":\"Mobile USD0++\"},hD8mcnCKd:{\"data-framer-name\":\"Mobile USD0\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 48px)`,src:\"https://framerusercontent.com/images/HESeo7hEm0ovBECHrQ9iczGBCU.png\",srcSet:\"https://framerusercontent.com/images/HESeo7hEm0ovBECHrQ9iczGBCU.png?scale-down-to=512 512w,https://framerusercontent.com/images/HESeo7hEm0ovBECHrQ9iczGBCU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HESeo7hEm0ovBECHrQ9iczGBCU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/HESeo7hEm0ovBECHrQ9iczGBCU.png 3840w\"},className:\"framer-3101aa\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"b8Si6MT2q\",style:{\"--border-bottom-width\":\"1.5px\",\"--border-color\":\"rgb(28, 28, 32)\",\"--border-left-width\":\"1.5px\",\"--border-right-width\":\"1.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1.5px\",borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30,boxShadow:\"0px 6px 12px 0px rgba(0, 0, 0, 0.15000000596046448), 0px 10px 25px 0px rgba(0, 0, 0, 0.10000000149011612), 0px 4px 8px 0px rgba(0, 0, 0, 0.10000000149011612)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12zxgt3\",\"data-framer-name\":\"Left\",layoutDependency:layoutDependency,layoutId:\"VwtN81JCT\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1r14s4c\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"ErF3gjiWG\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-zdc1xENiU-O8g3_TEK7) * 1px)\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"USD0, The Ultimate\\xa0Fiat Stablecoin\"})}),className:\"framer-uukok9\",\"data-framer-name\":\"Title\",fonts:[\"CUSTOM;Uxum Grotesque Bold\"],layoutDependency:layoutDependency,layoutId:\"P8dYUGh4H\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-zdc1xENiU-O8g3_TEK7\":zdc1xENiU},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({E14tVhGdk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-zdc1xENiU-O8g3_TEK7) * 1px)\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"USD0++, The LST for Real World Assets\"})})},FD0jk0xUy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-zdc1xENiU-O8g3_TEK7) * 1px)\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"USD0++, The LST for Real World Assets\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Uxum Grotesque Regular\", \"Uxum Grotesque Regular Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-A2ZWZgN9F-O8g3_TEK7) * 1px)\",\"--framer-letter-spacing\":\"0.03em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(153, 151, 164))\"},children:\"The world's first RWA stablecoin that aggregates various US Treasury Bill tokens, providing a secure & permissionless, bankruptcy-remote solution unlinked to traditional bank deposits. \"})}),className:\"framer-1lmkaa3\",\"data-framer-name\":\"Subtext\",fonts:[\"CUSTOM;Uxum Grotesque Regular\"],layoutDependency:layoutDependency,layoutId:\"fqhRJQFKM\",style:{\"--extracted-r6o4lv\":\"rgb(153, 151, 164)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-A2ZWZgN9F-O8g3_TEK7\":A2ZWZgN9F},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({E14tVhGdk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Uxum Grotesque Regular\", \"Uxum Grotesque Regular Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-A2ZWZgN9F-O8g3_TEK7) * 1px)\",\"--framer-letter-spacing\":\"0.03em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(153, 151, 164))\"},children:\"USD0++ is the liquid staking version of USD0, acting as a savings account for RWA with a 4-year lock-up. It remains transferable while offering $USUAL rewards to drive USD0 adoption.\"})})},FD0jk0xUy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Uxum Grotesque Regular\", \"Uxum Grotesque Regular Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-A2ZWZgN9F-O8g3_TEK7) * 1px)\",\"--framer-letter-spacing\":\"0.03em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(153, 151, 164))\"},children:\"USD0++ is the liquid staking version of USD0, acting as a savings account for RWA with a 4-year lock-up. It remains transferable while offering $USUAL rewards to drive USD0 adoption.\"})})},hD8mcnCKd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Uxum Grotesque Regular\", \"Uxum Grotesque Regular Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-A2ZWZgN9F-O8g3_TEK7) * 1px)\",\"--framer-letter-spacing\":\"0.03em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(153, 151, 164))\"},children:\"The world's first RWA stablecoin that aggregates various US Treasury Bill tokens, providing a secure & permissionless, bankruptcy-remote solution unlinked to traditional bank deposits. \"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1r3yfq2\",\"data-framer-name\":\"Data\",layoutDependency:layoutDependency,layoutId:\"i9vc1N3r2\",style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8t7iqo\",\"data-framer-name\":\"TVL\",layoutDependency:layoutDependency,layoutId:\"x_Rj_4F6r\",style:{opacity:1},variants:{E14tVhGdk:{opacity:0},FD0jk0xUy:{opacity:0}},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Uxum Grotesque Regular\", \"Uxum Grotesque Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(153, 151, 164))\"},children:\"TVL\"})}),className:\"framer-c8r913\",\"data-framer-name\":\"Title\",fonts:[\"CUSTOM;Uxum Grotesque Regular\"],layoutDependency:layoutDependency,layoutId:\"mUBe_4jxJ\",style:{\"--extracted-r6o4lv\":\"rgb(153, 151, 164)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithTVLAbbreviated7itakd,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-UULSwUwFP-O8g3_TEK7) * 1px)\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"$192.50M\"})}),className:\"framer-7itakd\",\"data-framer-name\":\"Metric\",fonts:[\"CUSTOM;Uxum Grotesque Bold\"],layoutDependency:layoutDependency,layoutId:\"f19SDdQiZ\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-UULSwUwFP-O8g3_TEK7\":UULSwUwFP},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-cu6vh4\",\"data-framer-name\":\"% Collat\",layoutDependency:layoutDependency,layoutId:\"NdlYIF4rU\",style:{opacity:1},variants:{E14tVhGdk:{opacity:0},FD0jk0xUy:{opacity:0}},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Uxum Grotesque Regular\", \"Uxum Grotesque Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(153, 151, 164))\"},children:\"% Collateralization\"})}),className:\"framer-1utrkmi\",\"data-framer-name\":\"Title\",fonts:[\"CUSTOM;Uxum Grotesque Regular\"],layoutDependency:layoutDependency,layoutId:\"LBjevPTLk\",style:{\"--extracted-r6o4lv\":\"rgb(153, 151, 164)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithCollateralizationRatiokvckg4,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-UULSwUwFP-O8g3_TEK7) * 1px)\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"12%\"})}),className:\"framer-kvckg4\",\"data-framer-name\":\"Metric\",fonts:[\"CUSTOM;Uxum Grotesque Bold\"],layoutDependency:layoutDependency,layoutId:\"kqSWrwGPF\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-UULSwUwFP-O8g3_TEK7\":UULSwUwFP},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-g7mi8a\",\"data-framer-name\":\"4 Year Revenue\",layoutDependency:layoutDependency,layoutId:\"hiXhJxB1k\",style:{opacity:0},variants:{E14tVhGdk:{opacity:1},FD0jk0xUy:{opacity:1}},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Uxum Grotesque Regular\", \"Uxum Grotesque Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(153, 151, 164))\"},children:\"4-Year Cash Flow\"})}),className:\"framer-12urd6j\",\"data-framer-name\":\"Title\",fonts:[\"CUSTOM;Uxum Grotesque Regular\"],layoutDependency:layoutDependency,layoutId:\"Jfjtw4hc_\",style:{\"--extracted-r6o4lv\":\"rgb(153, 151, 164)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithRevenuesxjtb5c,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-UULSwUwFP-O8g3_TEK7) * 1px)\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"12%\"})}),className:\"framer-xjtb5c\",\"data-framer-name\":\"Metric\",fonts:[\"CUSTOM;Uxum Grotesque Bold\"],layoutDependency:layoutDependency,layoutId:\"X9sCPMoln\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-UULSwUwFP-O8g3_TEK7\":UULSwUwFP},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vh0cc9\",\"data-framer-name\":\"APY\",layoutDependency:layoutDependency,layoutId:\"mD0RFWCW3\",style:{opacity:0},variants:{E14tVhGdk:{opacity:1},FD0jk0xUy:{opacity:1}},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Uxum Grotesque Regular\", \"Uxum Grotesque Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(153, 151, 164))\"},children:\"APY\"})}),className:\"framer-qgl118\",\"data-framer-name\":\"Title\",fonts:[\"CUSTOM;Uxum Grotesque Regular\"],layoutDependency:layoutDependency,layoutId:\"G51tTNLD7\",style:{\"--extracted-r6o4lv\":\"rgb(153, 151, 164)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithAPY1my9una,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-UULSwUwFP-O8g3_TEK7) * 1px)\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"12%\"})}),className:\"framer-1my9una\",\"data-framer-name\":\"Metric\",fonts:[\"CUSTOM;Uxum Grotesque Bold\"],layoutDependency:layoutDependency,layoutId:\"K2QxHPeJS\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-UULSwUwFP-O8g3_TEK7\":UULSwUwFP},verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1j7cafl\",\"data-framer-name\":\"Right\",layoutDependency:layoutDependency,layoutId:\"ahzqc5CTK\",children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 80px)`,src:\"https://framerusercontent.com/images/5IA7aMwylOhQ6bmJ2D5b1zNOqYE.png\",srcSet:\"https://framerusercontent.com/images/5IA7aMwylOhQ6bmJ2D5b1zNOqYE.png?scale-down-to=512 512w,https://framerusercontent.com/images/5IA7aMwylOhQ6bmJ2D5b1zNOqYE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5IA7aMwylOhQ6bmJ2D5b1zNOqYE.png 1696w\"},className:\"framer-i4dv3h\",\"data-border\":true,\"data-framer-name\":\".Switch\",layoutDependency:layoutDependency,layoutId:\"Yyk6iMHDk\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.12)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1j6td7s\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"mLbIKkUPU\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-lBfMNU7_t-O8g3_TEK7) * 1px)\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Supercharge USD0\"})}),className:\"framer-xgpnsk\",\"data-framer-name\":\"Title\",fonts:[\"CUSTOM;Uxum Grotesque Bold\"],layoutDependency:layoutDependency,layoutId:\"dRbvnbPPY\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-lBfMNU7_t-O8g3_TEK7\":lBfMNU7_t},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({E14tVhGdk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-lBfMNU7_t-O8g3_TEK7) * 1px)\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Boosted yield activated!\"})})},FD0jk0xUy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-lBfMNU7_t-O8g3_TEK7) * 1px)\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Boosted yield activated!\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Uxum Grotesque Regular\", \"Uxum Grotesque Regular Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-WKUTks7nq-O8g3_TEK7) * 1px)\",\"--framer-letter-spacing\":\"0.03em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.8))\"},children:\"Discover USD0++, a liquid staking version of USD0, acting like a savings account for Real-World Assets with a 4-year lock-up.\"})}),className:\"framer-1lrvoq8\",\"data-framer-name\":\"Subtext\",fonts:[\"CUSTOM;Uxum Grotesque Regular\"],layoutDependency:layoutDependency,layoutId:\"IHJVnnHtE\",style:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.8)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-WKUTks7nq-O8g3_TEK7\":WKUTks7nq},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({E14tVhGdk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Uxum Grotesque Regular\", \"Uxum Grotesque Regular Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-WKUTks7nq-O8g3_TEK7) * 1px)\",\"--framer-letter-spacing\":\"0.03em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.8))\"},children:\"Toggle to learn more on USD0, an RWA stablecoin aggregating US Treasury Bill tokens, unlinked to traditional bank deposits.\"})})},FD0jk0xUy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Uxum Grotesque Regular\", \"Uxum Grotesque Regular Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-WKUTks7nq-O8g3_TEK7) * 1px)\",\"--framer-letter-spacing\":\"0.03em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.8))\"},children:\"Toggle to learn more on USD0, an RWA stablecoin aggregating US Treasury Bill tokens, unlinked to traditional bank deposits.\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(motion.div,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:236,intrinsicWidth:320},className:\"framer-1nj9t8r\",\"data-framer-name\":\"Toggle Usual Workfile\",layoutDependency:layoutDependency,layoutId:\"NBOTgpCvv\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:61,width:\"120px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-18hwgyb-container\",layoutDependency:layoutDependency,layoutId:\"aRrN6uYJB-container\",nodeId:\"aRrN6uYJB\",rendersWithMotion:true,scopeId:\"O8g3_TEK7\",children:/*#__PURE__*/_jsx(SwitchMobile,{CIOMVIyzl:CIOMVIyzl7htncx,height:\"100%\",id:\"aRrN6uYJB\",layoutId:\"aRrN6uYJB\",style:{height:\"100%\",width:\"100%\"},variant:\"mEGNW1yqW\",width:\"100%\",...addPropertyOverrides({E14tVhGdk:{CIOMVIyzl:CIOMVIyzl1hjlsxl,variant:\"Z5VKOahWG\"},FD0jk0xUy:{CIOMVIyzl:CIOMVIyzlfw86pe,variant:\"Z5VKOahWG\"},hD8mcnCKd:{CIOMVIyzl:CIOMVIyzl1kk6die}},baseVariant,gestureVariant)})})})})]})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:311,width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ehugr9-container\",layoutDependency:layoutDependency,layoutId:\"GCSVo4fhb-container\",nodeId:\"GCSVo4fhb\",rendersWithMotion:true,scopeId:\"O8g3_TEK7\",children:/*#__PURE__*/_jsx(ProductCard01,{height:\"100%\",id:\"GCSVo4fhb\",layoutId:\"GCSVo4fhb\",OtvbAw3DJ:\"32px 24px 40px 24px\",style:{width:\"100%\"},variant:\"rUBWsqPoF\",width:\"100%\",...addPropertyOverrides({E14tVhGdk:{variant:\"wRn__GCsK\"},FD0jk0xUy:{variant:\"wRn__GCsK\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:335,width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-cijl5x-container\",layoutDependency:layoutDependency,layoutId:\"YQWgJJ8Qn-container\",nodeId:\"YQWgJJ8Qn\",rendersWithMotion:true,scopeId:\"O8g3_TEK7\",children:/*#__PURE__*/_jsx(ProductCard02,{height:\"100%\",hyBJlv8P2:\"32px 24px 40px 24px\",id:\"YQWgJJ8Qn\",layoutId:\"YQWgJJ8Qn\",style:{width:\"100%\"},variant:\"POHNtmu3o\",width:\"100%\",...addPropertyOverrides({E14tVhGdk:{variant:\"f5cJQR8g4\"},FD0jk0xUy:{variant:\"f5cJQR8g4\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:335,width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-14qbcix-container\",layoutDependency:layoutDependency,layoutId:\"XHpUjeiGL-container\",nodeId:\"XHpUjeiGL\",rendersWithMotion:true,scopeId:\"O8g3_TEK7\",children:/*#__PURE__*/_jsx(ProductCard03,{height:\"100%\",id:\"XHpUjeiGL\",layoutId:\"XHpUjeiGL\",style:{width:\"100%\"},variant:\"FtmtxGlqd\",width:\"100%\",xEJKa8ZRX:\"32px 24px 40px 24px\",...addPropertyOverrides({E14tVhGdk:{variant:\"BzvtsW7kI\"},FD0jk0xUy:{variant:\"BzvtsW7kI\"}},baseVariant,gestureVariant)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ypdSE.framer-14taesi, .framer-ypdSE .framer-14taesi { display: block; }\",\".framer-ypdSE.framer-1oci6sz { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 24px 0px 24px; position: relative; width: 660px; will-change: var(--framer-will-change-override, transform); }\",\".framer-ypdSE .framer-3101aa { 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: 100%; }\",\".framer-ypdSE .framer-12zxgt3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 40px 16px 16px 16px; position: relative; width: 100%; }\",\".framer-ypdSE .framer-1r14s4c, .framer-ypdSE .framer-1j6td7s { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 8px 0px 8px; position: relative; width: 100%; }\",\".framer-ypdSE .framer-uukok9, .framer-ypdSE .framer-1lmkaa3, .framer-ypdSE .framer-xgpnsk, .framer-ypdSE .framer-1lrvoq8 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-ypdSE .framer-1r3yfq2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 43px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 8px 0px 8px; position: relative; width: 100%; }\",\".framer-ypdSE .framer-8t7iqo, .framer-ypdSE .framer-cu6vh4, .framer-ypdSE .framer-g7mi8a, .framer-ypdSE .framer-1vh0cc9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-ypdSE .framer-c8r913, .framer-ypdSE .framer-7itakd, .framer-ypdSE .framer-1utrkmi, .framer-ypdSE .framer-kvckg4, .framer-ypdSE .framer-12urd6j, .framer-ypdSE .framer-xjtb5c, .framer-ypdSE .framer-qgl118, .framer-ypdSE .framer-1my9una { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-ypdSE .framer-1j7cafl { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 16px 16px 16px; position: relative; width: 100%; }\",\".framer-ypdSE .framer-i4dv3h { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 32px 16px 16px 16px; position: relative; width: 100%; }\",\".framer-ypdSE .framer-1nj9t8r { -webkit-user-select: none; 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; user-select: none; width: min-content; }\",\".framer-ypdSE .framer-18hwgyb-container { flex: none; height: 61px; position: relative; width: 120px; }\",\".framer-ypdSE .framer-1ehugr9-container, .framer-ypdSE .framer-cijl5x-container, .framer-ypdSE .framer-14qbcix-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ypdSE.framer-1oci6sz, .framer-ypdSE .framer-3101aa, .framer-ypdSE .framer-12zxgt3, .framer-ypdSE .framer-1r14s4c, .framer-ypdSE .framer-1r3yfq2, .framer-ypdSE .framer-8t7iqo, .framer-ypdSE .framer-cu6vh4, .framer-ypdSE .framer-g7mi8a, .framer-ypdSE .framer-1vh0cc9, .framer-ypdSE .framer-1j7cafl, .framer-ypdSE .framer-i4dv3h, .framer-ypdSE .framer-1j6td7s, .framer-ypdSE .framer-1nj9t8r { gap: 0px; } .framer-ypdSE.framer-1oci6sz > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-ypdSE.framer-1oci6sz > :first-child, .framer-ypdSE .framer-3101aa > :first-child, .framer-ypdSE .framer-12zxgt3 > :first-child, .framer-ypdSE .framer-1r14s4c > :first-child, .framer-ypdSE .framer-8t7iqo > :first-child, .framer-ypdSE .framer-cu6vh4 > :first-child, .framer-ypdSE .framer-g7mi8a > :first-child, .framer-ypdSE .framer-1vh0cc9 > :first-child, .framer-ypdSE .framer-1j7cafl > :first-child, .framer-ypdSE .framer-i4dv3h > :first-child, .framer-ypdSE .framer-1j6td7s > :first-child, .framer-ypdSE .framer-1nj9t8r > :first-child { margin-top: 0px; } .framer-ypdSE.framer-1oci6sz > :last-child, .framer-ypdSE .framer-3101aa > :last-child, .framer-ypdSE .framer-12zxgt3 > :last-child, .framer-ypdSE .framer-1r14s4c > :last-child, .framer-ypdSE .framer-8t7iqo > :last-child, .framer-ypdSE .framer-cu6vh4 > :last-child, .framer-ypdSE .framer-g7mi8a > :last-child, .framer-ypdSE .framer-1vh0cc9 > :last-child, .framer-ypdSE .framer-1j7cafl > :last-child, .framer-ypdSE .framer-i4dv3h > :last-child, .framer-ypdSE .framer-1j6td7s > :last-child, .framer-ypdSE .framer-1nj9t8r > :last-child { margin-bottom: 0px; } .framer-ypdSE .framer-3101aa > *, .framer-ypdSE .framer-1j7cafl > *, .framer-ypdSE .framer-1nj9t8r > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-ypdSE .framer-12zxgt3 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-ypdSE .framer-1r14s4c > *, .framer-ypdSE .framer-1j6td7s > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-ypdSE .framer-1r3yfq2 > * { margin: 0px; margin-left: calc(43px / 2); margin-right: calc(43px / 2); } .framer-ypdSE .framer-1r3yfq2 > :first-child { margin-left: 0px; } .framer-ypdSE .framer-1r3yfq2 > :last-child { margin-right: 0px; } .framer-ypdSE .framer-8t7iqo > *, .framer-ypdSE .framer-cu6vh4 > *, .framer-ypdSE .framer-g7mi8a > *, .framer-ypdSE .framer-1vh0cc9 > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-ypdSE .framer-i4dv3h > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } }\",\".framer-ypdSE.framer-v-oy64d3.framer-1oci6sz, .framer-ypdSE.framer-v-1ibjtg6.framer-1oci6sz { width: 390px; }\",\".framer-ypdSE.framer-v-1ibjtg6 .framer-8t7iqo { min-width: 130.5px; order: 2; }\",\".framer-ypdSE.framer-v-1ibjtg6 .framer-cu6vh4, .framer-ypdSE.framer-v-14jkpwt .framer-cu6vh4 { order: 3; }\",\".framer-ypdSE.framer-v-1ibjtg6 .framer-g7mi8a, .framer-ypdSE.framer-v-14jkpwt .framer-g7mi8a { order: 0; }\",\".framer-ypdSE.framer-v-1ibjtg6 .framer-1vh0cc9, .framer-ypdSE.framer-v-14jkpwt .framer-1vh0cc9 { order: 1; }\",\".framer-ypdSE.framer-v-14jkpwt .framer-8t7iqo { order: 2; }\",'.framer-ypdSE[data-border=\"true\"]::after, .framer-ypdSE [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1388\n * @framerIntrinsicWidth 660\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"hD8mcnCKd\":{\"layout\":[\"fixed\",\"auto\"]},\"FD0jk0xUy\":{\"layout\":[\"fixed\",\"auto\"]},\"E14tVhGdk\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"zdc1xENiU\":\"titleSize\",\"A2ZWZgN9F\":\"subtextSize\",\"lBfMNU7_t\":\"switchTitleSize\",\"WKUTks7nq\":\"switchSubtextSize\",\"UULSwUwFP\":\"metricSize\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerO8g3_TEK7=withCSS(Component,css,\"framer-ypdSE\");export default FramerO8g3_TEK7;FramerO8g3_TEK7.displayName=\"Asset Switch\";FramerO8g3_TEK7.defaultProps={height:1388,width:660};addPropertyControls(FramerO8g3_TEK7,{variant:{options:[\"D9hpxa5TE\",\"hD8mcnCKd\",\"FD0jk0xUy\",\"E14tVhGdk\"],optionTitles:[\"Tablet USD0\",\"Mobile USD0\",\"Mobile USD0++\",\"Tablet USD0++\"],title:\"Variant\",type:ControlType.Enum},zdc1xENiU:{defaultValue:26,title:\"Title Size\",type:ControlType.Number},A2ZWZgN9F:{defaultValue:16,title:\"Subtext Size\",type:ControlType.Number},lBfMNU7_t:{defaultValue:26,title:\"Switch Title Size\",type:ControlType.Number},WKUTks7nq:{defaultValue:16,title:\"Switch Subtext Size\",type:ControlType.Number},UULSwUwFP:{defaultValue:20,title:\"Metric Size\",type:ControlType.Number}});addFonts(FramerO8g3_TEK7,[{explicitInter:true,fonts:[{family:\"Uxum Grotesque Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/p3seIywnIAnIXHuYThOPrNgZfo.woff2\"},{family:\"Uxum Grotesque Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/pexfO5izGLBcHiyniDYIZUv6ls0.woff2\"}]},...SwitchMobileFonts,...ProductCard01Fonts,...ProductCard02Fonts,...ProductCard03Fonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerO8g3_TEK7\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hD8mcnCKd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FD0jk0xUy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"E14tVhGdk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"660\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"1388\",\"framerVariables\":\"{\\\"zdc1xENiU\\\":\\\"titleSize\\\",\\\"A2ZWZgN9F\\\":\\\"subtextSize\\\",\\\"lBfMNU7_t\\\":\\\"switchTitleSize\\\",\\\"WKUTks7nq\\\":\\\"switchSubtextSize\\\",\\\"UULSwUwFP\\\":\\\"metricSize\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (4d21961)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import ArtboardStateMachine1 from\"https://framerusercontent.com/modules/rOLa592EGLRC94uMWjvT/enTN7u2UszP1orOhvO9n/AnimSwitch.js\";const ArtboardStateMachine1Fonts=getFonts(ArtboardStateMachine1);const cycleOrder=[\"Yk9eDoMXh\",\"MiGQWzcl7\"];const serializationHash=\"framer-OgLhK\";const variantClassNames={MiGQWzcl7:\"framer-v-1uiyvug\",Yk9eDoMXh:\"framer-v-h6osrv\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"USD0++\":\"MiGQWzcl7\",USD0:\"Yk9eDoMXh\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"Yk9eDoMXh\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Yk9eDoMXh\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-h6osrv\",className,classNames),\"data-framer-name\":\"USD0\",layoutDependency:layoutDependency,layoutId:\"Yk9eDoMXh\",ref:refBinding,style:{...style},...addPropertyOverrides({MiGQWzcl7:{\"data-framer-name\":\"USD0++\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-12ee1vv-container\",\"data-framer-name\":\"Rive\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"OQJAQ1hV6-container\",name:\"Rive\",nodeId:\"OQJAQ1hV6\",rendersWithMotion:true,scopeId:\"Uj51H0VpQ\",children:/*#__PURE__*/_jsx(ArtboardStateMachine1,{alignment:\"center\",boolean1:false,boolean2:true,fit:\"contain\",height:\"100%\",id:\"OQJAQ1hV6\",layoutId:\"OQJAQ1hV6\",name:\"Rive\",play:true,playOnCanvas:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({MiGQWzcl7:{boolean1:true,boolean2:false}},baseVariant,gestureVariant)})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-OgLhK.framer-1du6ad, .framer-OgLhK .framer-1du6ad { display: block; }\",\".framer-OgLhK.framer-h6osrv { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 86px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 150px; }\",\".framer-OgLhK .framer-12ee1vv-container { flex: none; height: 100%; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-OgLhK.framer-h6osrv { gap: 0px; } .framer-OgLhK.framer-h6osrv > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-OgLhK.framer-h6osrv > :first-child { margin-left: 0px; } .framer-OgLhK.framer-h6osrv > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 86\n * @framerIntrinsicWidth 150\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"MiGQWzcl7\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerUj51H0VpQ=withCSS(Component,css,\"framer-OgLhK\");export default FramerUj51H0VpQ;FramerUj51H0VpQ.displayName=\"Switch\";FramerUj51H0VpQ.defaultProps={height:86,width:150};addPropertyControls(FramerUj51H0VpQ,{variant:{options:[\"Yk9eDoMXh\",\"MiGQWzcl7\"],optionTitles:[\"USD0\",\"USD0++\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerUj51H0VpQ,[{explicitInter:true,fonts:[]},...ArtboardStateMachine1Fonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerUj51H0VpQ\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"86\",\"framerIntrinsicWidth\":\"150\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"MiGQWzcl7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (2fef4c5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const serializationHash=\"framer-MGUIF\";const variantClassNames={EL2xHl6ns:\"framer-v-14p1qcu\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({comingSoon,height,id,image,label,width,...props})=>{return{...props,qzNeBa4EV:image??props.qzNeBa4EV,wjCl7GZKr:comingSoon??props.wjCl7GZKr,wp1_8uHtb:label??props.wp1_8uHtb??\"USYC\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,qzNeBa4EV,wp1_8uHtb,wjCl7GZKr,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"EL2xHl6ns\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-14p1qcu\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"EL2xHl6ns\",ref:refBinding,style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,...style},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(12+((componentViewport?.height||65)-24-32)/2)),sizes:\"32px\",...toResponsiveImage(qzNeBa4EV)},className:\"framer-fmnznh\",\"data-framer-name\":\"AssetWrapper\",layoutDependency:layoutDependency,layoutId:\"CY5F7T8Xk\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1etg3y3\",\"data-framer-name\":\"Currency Container\",layoutDependency:layoutDependency,layoutId:\"nOb9n9mqd\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Uxum Grotesque Regular\", \"Uxum Grotesque Regular Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"USYC\"})}),className:\"framer-1293cp5\",\"data-framer-name\":\"USD0\",fonts:[\"CUSTOM;Uxum Grotesque Regular\"],layoutDependency:layoutDependency,layoutId:\"fVxPo_hI6\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},text:wp1_8uHtb,verticalAlignment:\"top\",withExternalLayout:true})}),wjCl7GZKr&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1j811rc\",\"data-border\":true,\"data-framer-name\":\"Coming soon\",layoutDependency:layoutDependency,layoutId:\"Ry12w_Ji8\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.08)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",background:\"linear-gradient(245.0694978228257deg, rgba(44, 44, 44, 1) 0%, rgba(28, 28, 28, 1) 100%)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIE1lZGl1bQ==\",\"--framer-font-family\":'\"Uxum Grotesque Medium\", \"Uxum Grotesque Medium Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"130%\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(36.1179deg, rgb(163, 163, 163) 0%, rgb(255, 255, 255) 100%)\"},children:\"Coming soon\"})})}),className:\"framer-xk2mmf\",fonts:[\"CUSTOM;Uxum Grotesque Medium\"],layoutDependency:layoutDependency,layoutId:\"LWQUTDe2z\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-MGUIF.framer-k7xxy9, .framer-MGUIF .framer-k7xxy9 { display: block; }\",\".framer-MGUIF.framer-14p1qcu { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 65px; justify-content: flex-start; overflow: visible; padding: 12px 20px 12px 20px; position: relative; width: min-content; }\",\".framer-MGUIF .framer-fmnznh { flex: none; height: 32px; overflow: visible; position: relative; width: 32px; }\",\".framer-MGUIF .framer-1etg3y3 { 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: visible; padding: 3px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-MGUIF .framer-1293cp5, .framer-MGUIF .framer-xk2mmf { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-MGUIF .framer-1j811rc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; overflow: visible; padding: 4px 8px 3px 8px; position: relative; width: min-content; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-MGUIF.framer-14p1qcu, .framer-MGUIF .framer-1etg3y3, .framer-MGUIF .framer-1j811rc { gap: 0px; } .framer-MGUIF.framer-14p1qcu > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-MGUIF.framer-14p1qcu > :first-child, .framer-MGUIF .framer-1etg3y3 > :first-child, .framer-MGUIF .framer-1j811rc > :first-child { margin-left: 0px; } .framer-MGUIF.framer-14p1qcu > :last-child, .framer-MGUIF .framer-1etg3y3 > :last-child, .framer-MGUIF .framer-1j811rc > :last-child { margin-right: 0px; } .framer-MGUIF .framer-1etg3y3 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-MGUIF .framer-1j811rc > * { margin: 0px; margin-left: calc(2px / 2); margin-right: calc(2px / 2); } }\",'.framer-MGUIF[data-border=\"true\"]::after, .framer-MGUIF [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 65\n * @framerIntrinsicWidth 181\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"qzNeBa4EV\":\"image\",\"wp1_8uHtb\":\"label\",\"wjCl7GZKr\":\"comingSoon\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerVs5fsVuCV=withCSS(Component,css,\"framer-MGUIF\");export default FramerVs5fsVuCV;FramerVs5fsVuCV.displayName=\"Asset Item\";FramerVs5fsVuCV.defaultProps={height:65,width:181};addPropertyControls(FramerVs5fsVuCV,{qzNeBa4EV:{title:\"Image\",type:ControlType.ResponsiveImage},wp1_8uHtb:{defaultValue:\"USYC\",displayTextArea:false,title:\"Label\",type:ControlType.String},wjCl7GZKr:{defaultValue:false,title:\"Coming Soon\",type:ControlType.Boolean}});addFonts(FramerVs5fsVuCV,[{explicitInter:true,fonts:[{family:\"Uxum Grotesque Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/pexfO5izGLBcHiyniDYIZUv6ls0.woff2\"},{family:\"Uxum Grotesque Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/ci6qYgtb6YEPPF81fGDWEKf7bw.woff2\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerVs5fsVuCV\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"65\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"181\",\"framerVariables\":\"{\\\"qzNeBa4EV\\\":\\\"image\\\",\\\"wp1_8uHtb\\\":\\\"label\\\",\\\"wjCl7GZKr\\\":\\\"comingSoon\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Vs5fsVuCV.map", "// Generated by Framer (fa64c25)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,Floating,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,SVG,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useOverlayState,useQueryData,useRouteElementId,useRouter,withCodeBoundaryForOverrides,withCSS,withFX,withMappedReactProps,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/LHz3bw67SqHRmnCKTlE6/Ticker.js\";import CloserOverlapV11 from\"#framer/local/canvasComponent/bODLsdDpz/bODLsdDpz.js\";import V1WidgetBase from\"#framer/local/canvasComponent/czraw8c0S/czraw8c0S.js\";import V1CardsBlog2 from\"#framer/local/canvasComponent/Ee5hBujEw/Ee5hBujEw.js\";import ProductCard03,*as ProductCard03Info from\"#framer/local/canvasComponent/GFS7XixfE/GFS7XixfE.js\";import HeroIllustration from\"#framer/local/canvasComponent/gi_nqfxz5/gi_nqfxz5.js\";import V11CTA from\"#framer/local/canvasComponent/hEcnoZDn_/hEcnoZDn_.js\";import V1FAQ from\"#framer/local/canvasComponent/lQcSZBSxR/lQcSZBSxR.js\";import V11DropdownMenu from\"#framer/local/canvasComponent/M5fmjn3Hx/M5fmjn3Hx.js\";import AssetSwitch from\"#framer/local/canvasComponent/O8g3_TEK7/O8g3_TEK7.js\";import EcosystemCard from\"#framer/local/canvasComponent/OZTo0_s5I/OZTo0_s5I.js\";import ProductCard02,*as ProductCard02Info from\"#framer/local/canvasComponent/p6jB45PEX/p6jB45PEX.js\";import ChangelogCard from\"#framer/local/canvasComponent/pZgsidZ5J/pZgsidZ5J.js\";import FooterV11 from\"#framer/local/canvasComponent/RKixl7fdY/RKixl7fdY.js\";import Switch,*as SwitchInfo from\"#framer/local/canvasComponent/Uj51H0VpQ/Uj51H0VpQ.js\";import V1Counter from\"#framer/local/canvasComponent/unqgq04VT/unqgq04VT.js\";import ProductCard01,*as ProductCard01Info from\"#framer/local/canvasComponent/US8YMbf4A/US8YMbf4A.js\";import AssetItem from\"#framer/local/canvasComponent/Vs5fsVuCV/Vs5fsVuCV.js\";import NavBarV11 from\"#framer/local/canvasComponent/yr7NPWIHK/yr7NPWIHK.js\";import Link from\"#framer/local/canvasComponent/ZPxe4RUhi/ZPxe4RUhi.js\";import{withDynamicDesc,withDynamicNum1,withDynamicNum1Title,withDynamicNum2,withDynamicNum2Title,withDynamicSwitchDescription,withDynamicSwitchTitle,withDynamicTitle,withDynamicVariant,withStoreSwitch}from\"#framer/local/codeFile/JoNFCwQ/ProductSwitchHelper.js\";import{withRevenues,withUSUALxAPY}from\"#framer/local/codeFile/xZWvszM/TVL.js\";import CategoryTags from\"#framer/local/collection/A0jyWmIn6/A0jyWmIn6.js\";import Ecosystem from\"#framer/local/collection/DQWzLRVSt/DQWzLRVSt.js\";import Updates from\"#framer/local/collection/HQTnxFNOP/HQTnxFNOP.js\";import EcosystemTags from\"#framer/local/collection/Y_kSu3ZOV/Y_kSu3ZOV.js\";import*as sharedStyle from\"#framer/local/css/xgaci6mnc/xgaci6mnc.js\";import metadataProvider from\"#framer/local/webPageMetadata/pipfm3NxG/pipfm3NxG.js\";const NavBarV11Fonts=getFonts(NavBarV11);const ContainerWithFX=withFX(Container);const V11CTAFonts=getFonts(V11CTA);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const HeroIllustrationFonts=getFonts(HeroIllustration);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const V11DropdownMenuFonts=getFonts(V11DropdownMenu);const RichTextWithDynamicTitle11t7v7u=withCodeBoundaryForOverrides(RichText,{nodeId:\"msUA8NDoI\",override:withDynamicTitle,scopeId:\"pipfm3NxG\"});const RichTextWithDynamicDescltp5o3=withCodeBoundaryForOverrides(RichText,{nodeId:\"VONAh2G5P\",override:withDynamicDesc,scopeId:\"pipfm3NxG\"});const RichTextWithDynamicNum1Title1rlp751=withCodeBoundaryForOverrides(RichText,{nodeId:\"K7zLJ2TRK\",override:withDynamicNum1Title,scopeId:\"pipfm3NxG\"});const RichTextWithDynamicNum11k3asz0=withCodeBoundaryForOverrides(RichText,{nodeId:\"FOpJIsJPX\",override:withDynamicNum1,scopeId:\"pipfm3NxG\"});const RichTextWithDynamicNum2Title16rrc1c=withCodeBoundaryForOverrides(RichText,{nodeId:\"XzZODOClA\",override:withDynamicNum2Title,scopeId:\"pipfm3NxG\"});const RichTextWithDynamicNum214dbfj2=withCodeBoundaryForOverrides(RichText,{nodeId:\"X0Ht3BMDL\",override:withDynamicNum2,scopeId:\"pipfm3NxG\"});const RichTextWithDynamicSwitchTitle1t3v63x=withCodeBoundaryForOverrides(RichText,{nodeId:\"U7Axtaj8N\",override:withDynamicSwitchTitle,scopeId:\"pipfm3NxG\"});const RichTextWithDynamicSwitchDescriptionc2feb8=withCodeBoundaryForOverrides(RichText,{nodeId:\"v7HsiKGDY\",override:withDynamicSwitchDescription,scopeId:\"pipfm3NxG\"});const SwitchFonts=getFonts(Switch);const SwitchWithStoreSwitch1ijcq75WithMappedReactProps1n9h0s8=withMappedReactProps(withCodeBoundaryForOverrides(Switch,{nodeId:\"ziD0OJcRi\",override:withStoreSwitch,scopeId:\"pipfm3NxG\"}),SwitchInfo);const ProductCard01Fonts=getFonts(ProductCard01);const ProductCard01WithDynamicVariantnjmr1uWithMappedReactProps1gguo81=withMappedReactProps(withCodeBoundaryForOverrides(ProductCard01,{nodeId:\"ooe2LUvNV\",override:withDynamicVariant,scopeId:\"pipfm3NxG\"}),ProductCard01Info);const ProductCard02Fonts=getFonts(ProductCard02);const ProductCard02WithDynamicVariant1kcwz3wWithMappedReactProps1e330cl=withMappedReactProps(withCodeBoundaryForOverrides(ProductCard02,{nodeId:\"Cz1wDsK7n\",override:withDynamicVariant,scopeId:\"pipfm3NxG\"}),ProductCard02Info);const ProductCard03Fonts=getFonts(ProductCard03);const ProductCard03WithDynamicVariant43i6xpWithMappedReactProps1801cm6=withMappedReactProps(withCodeBoundaryForOverrides(ProductCard03,{nodeId:\"xdWpQq50L\",override:withDynamicVariant,scopeId:\"pipfm3NxG\"}),ProductCard03Info);const AssetSwitchFonts=getFonts(AssetSwitch);const AssetItemFonts=getFonts(AssetItem);const TickerFonts=getFonts(Ticker);const RichTextWithUSUALxAPY1mb9khu=withCodeBoundaryForOverrides(RichText,{nodeId:\"tSmJBdM0w\",override:withUSUALxAPY,scopeId:\"pipfm3NxG\"});const RichTextWithRevenuesnhsu5n=withCodeBoundaryForOverrides(RichText,{nodeId:\"xGE0JqiJR\",override:withRevenues,scopeId:\"pipfm3NxG\"});const MotionDivWithFX=withFX(motion.div);const LinkFonts=getFonts(Link);const V1CounterFonts=getFonts(V1Counter);const EcosystemCardFonts=getFonts(EcosystemCard);const ChangelogCardFonts=getFonts(ChangelogCard);const V1CardsBlog2Fonts=getFonts(V1CardsBlog2);const V1FAQFonts=getFonts(V1FAQ);const V1WidgetBaseFonts=getFonts(V1WidgetBase);const V1WidgetBaseWithVariantAppearEffect=withVariantAppearEffect(V1WidgetBase);const CloserOverlapV11Fonts=getFonts(CloserOverlapV11);const FooterV11Fonts=getFonts(FooterV11);const breakpoints={B3OXtD6W6:\"(min-width: 1460px)\",nt2kS3X5C:\"(min-width: 1080px) and (max-width: 1199px)\",qSA0MXLLq:\"(min-width: 1200px) and (max-width: 1459px)\",Tdcf2m17Y:\"(max-width: 809px)\",YwQdG6HP0:\"(min-width: 810px) and (max-width: 1079px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-W5uQG\";const variantClassNames={B3OXtD6W6:\"framer-v-cpyxmp\",nt2kS3X5C:\"framer-v-1maln7k\",qSA0MXLLq:\"framer-v-1s8wux7\",Tdcf2m17Y:\"framer-v-d6mxlb\",YwQdG6HP0:\"framer-v-cpn38j\"};const transition1={bounce:0,delay:0,duration:.5,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-80};const transition2={bounce:0,delay:0,duration:1.4,type:\"spring\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation2={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:24};const transition3={bounce:0,delay:0,duration:1,type:\"spring\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const transition4={bounce:0,delay:.5,duration:2,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation5={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transformTemplate2=(_,t)=>`translateX(-50%) ${t}`;const transition5={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const toDateString=(value,options={},activeLocale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const display=options.display?options.display:\"date\";const dateOptions={dateStyle:display!==\"time\"?options.dateStyle:undefined,timeStyle:display===\"date\"?undefined:\"short\",timeZone:\"UTC\"};const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;try{return date.toLocaleString(locale,dateOptions);}catch{return date.toLocaleString(fallbackLocale,dateOptions);}};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Desktop XL\":\"B3OXtD6W6\",\"Desktop XS\":\"nt2kS3X5C\",Desktop:\"qSA0MXLLq\",Phone:\"Tdcf2m17Y\",Tablet:\"YwQdG6HP0\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"B3OXtD6W6\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,I1cKsZ6l1g9yaryxsc,h6eAt4RpKg9yaryxsc,bhY__7WiPg9yaryxsc,EHGDe67TZg9yaryxsc,T1DCFDVFXg9yaryxsc,SycvZOZywg9yaryxsc,lXgE05m0Rg9yaryxsc,idg9yaryxsc,kt2p7gRuVyuR8MvHzZ,ZrOwRJV0oyuR8MvHzZ,rkA37NDe7yuR8MvHzZ,T6LFYpEchyuR8MvHzZ,idyuR8MvHzZ,kt2p7gRuVvqN0sscIF,ZrOwRJV0ovqN0sscIF,rkA37NDe7vqN0sscIF,T6LFYpEchvqN0sscIF,idvqN0sscIF,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const njoFAKd7Atxyyif=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.show();});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"tL_sKr14h\");const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if([\"YwQdG6HP0\",\"Tdcf2m17Y\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"Tdcf2m17Y\")return true;return false;};const ref2=React.useRef(null);const ref3=React.useRef(null);const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"Tdcf2m17Y\")return false;return true;};const isDisplayed3=()=>{if(!isBrowser())return true;if([\"YwQdG6HP0\",\"Tdcf2m17Y\"].includes(baseVariant))return true;return false;};const elementId1=useRouteElementId(\"B9qbYMUfi\");const ref4=React.useRef(null);const elementId2=useRouteElementId(\"s62BANXeO\");const ref5=React.useRef(null);const router=useRouter();const activeLocaleCode=useLocaleCode();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"B3OXtD6W6\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(0, 0, 0); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-cpyxmp\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__scrollDirection:{direction:\"down\",target:animation},__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-g1s4ky-container\",layoutScroll:true,nodeId:\"QLtZNEwDW\",rendersWithMotion:true,scopeId:\"pipfm3NxG\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nt2kS3X5C:{variant:\"ladXh8E8U\"},qSA0MXLLq:{variant:\"vsMEqo2Yf\"},Tdcf2m17Y:{variant:\"uLt_uDYzb\"},YwQdG6HP0:{variant:\"AEtQWm_nh\"}},children:/*#__PURE__*/_jsx(NavBarV11,{height:\"100%\",id:\"QLtZNEwDW\",layoutId:\"QLtZNEwDW\",style:{width:\"100%\"},variant:\"uYgQLMHF2\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",backgroundSize:1,fit:\"tile\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:300,pixelWidth:534,positionX:\"left\",positionY:\"top\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/e9bsFtEa5LfC1YzcZvvm5WDj6k.png\",srcSet:\"https://framerusercontent.com/images/e9bsFtEa5LfC1YzcZvvm5WDj6k.png?scale-down-to=512 512w,https://framerusercontent.com/images/e9bsFtEa5LfC1YzcZvvm5WDj6k.png 534w\"},className:\"framer-1x6w2lo\",\"data-framer-name\":\"grain\"}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation1,className:\"framer-ezdm65\",\"data-framer-appear-id\":\"ezdm65\",\"data-framer-name\":\"Hero\",initial:animation2,optimized:true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fp293c\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation3,className:\"framer-1cgepfz\",\"data-framer-appear-id\":\"1cgepfz\",\"data-framer-name\":\"Left\",initial:animation2,optimized:true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14fb152\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u7glxw\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Tdcf2m17Y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"46px\",\"--framer-letter-spacing\":\"-2.24px\",\"--framer-line-height\":\"48px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Redistributing\"})})},YwQdG6HP0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"54px\",\"--framer-letter-spacing\":\"-2.24px\",\"--framer-line-height\":\"62px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Redistributing\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"62px\",\"--framer-letter-spacing\":\"-2.24px\",\"--framer-line-height\":\"62px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Redistributing\"})}),className:\"framer-yjtgo3\",\"data-framer-name\":\"Redistributing\",fonts:[\"CUSTOM;Uxum Grotesque Bold\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Tdcf2m17Y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"46px\",\"--framer-letter-spacing\":\"-2.24px\",\"--framer-line-height\":\"48px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"the value monopolized\"})})},YwQdG6HP0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"54px\",\"--framer-letter-spacing\":\"-2.24px\",\"--framer-line-height\":\"62px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"the value monopolized\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"62px\",\"--framer-letter-spacing\":\"-2.24px\",\"--framer-line-height\":\"62px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"the value monopolized\"})}),className:\"framer-17vhbpy\",\"data-framer-name\":\"the value monopolized\",fonts:[\"CUSTOM;Uxum Grotesque Bold\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gqrwx8\",\"data-framer-name\":\"Competitor\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Tdcf2m17Y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"46px\",\"--framer-letter-spacing\":\"-2.24px\",\"--framer-line-height\":\"48px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"by crypto\"})})},YwQdG6HP0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"54px\",\"--framer-letter-spacing\":\"-2.24px\",\"--framer-line-height\":\"62px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"by crypto\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"62px\",\"--framer-letter-spacing\":\"-2.24px\",\"--framer-line-height\":\"62px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"by crypto\"})}),className:\"framer-bilkvl\",\"data-framer-name\":\"by crypto\",fonts:[\"CUSTOM;Uxum Grotesque Bold\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-zwbsf3\",\"data-framer-name\":\"Frame 40996\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ekmls1\",\"data-framer-name\":\"Rectangle 43242\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-85e2n8\",\"data-framer-name\":\"AssetWrapper\",style:{rotate:6},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-7vuw9s\",\"data-framer-name\":\"Assets/Logos/Cryptocurrencies\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1k71qgl\",\"data-framer-name\":\"Group 38700\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:44,intrinsicWidth:45,style:{rotate:-6},svg:'<svg width=\"45\" height=\"44\" viewBox=\"0 0 45 44\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M24.9959 2.09057C35.9821 3.24527 43.9503 13.0872 42.7958 24.0716C41.6411 35.0578 31.801 43.0261 20.8148 41.8715C9.83036 40.7169 1.8603 30.8757 3.0149 19.8904C4.16941 8.90603 14.0115 0.936062 24.9959 2.09057Z\" fill=\"#F5AC37\"/>\\n<path d=\"M23.4909 23.4626L31.0489 24.257C31.2101 24.2739 31.2861 24.2819 31.32 24.0719C31.4625 23.3095 31.5438 22.5362 31.563 21.7599C31.5787 21.6105 31.5109 21.5409 31.3489 21.5239L16.3071 19.9429C16.1209 19.9233 16.0643 19.9798 16.0459 20.1544L15.8134 22.367C15.7834 22.6525 15.7834 22.6525 16.0814 22.6839L23.4909 23.4626ZM31.0129 18.8741C31.0403 18.82 31.0468 18.7582 31.0312 18.7005C30.9338 18.4124 30.8119 18.1344 30.6641 17.87C30.447 17.4219 30.1798 17.002 29.8655 16.6169C29.7221 16.3891 29.5504 16.1801 29.3524 15.9973C28.3727 14.9686 27.1618 14.1861 25.8212 13.7158C25.1439 13.4872 24.4428 13.3384 23.7314 13.2699L17.0559 12.5683C16.8698 12.5487 16.8369 12.6204 16.8199 12.7824L16.3561 17.1951C16.3365 17.3813 16.3312 17.4314 16.5675 17.4563L30.913 18.9641C30.913 18.9641 31.04 18.9521 31.0729 18.8804L31.012 18.874L31.0129 18.8741ZM30.1819 26.7803C29.9731 26.7349 29.7601 26.7125 29.5464 26.7135L15.7604 25.2646C15.5742 25.245 15.5116 25.2384 15.4854 25.4872L15.032 29.8015C15.0111 30.0002 15.0058 30.0504 15.2547 30.0765L21.6196 30.7455C21.9214 30.8008 22.228 30.8113 22.5328 30.779C23.4635 30.8099 24.393 30.7049 25.2942 30.4657C25.6207 30.3896 25.94 30.2792 26.2453 30.1385L26.3321 30.1476C27.9058 29.5284 29.2459 28.4367 30.1676 27.0204C30.1676 27.0204 30.2741 26.8416 30.1817 26.7821L30.1819 26.7803ZM12.2726 32.0246L12.2804 31.9503L12.5848 29.0538L12.688 28.0719L12.9951 25.1504C13.0121 24.9884 13.0146 24.9642 12.8159 24.9433L10.1182 24.6598C9.96869 24.6441 9.90693 24.6376 9.92782 24.4389L10.1761 22.0768L13.06 22.3799C13.2211 22.3968 13.2838 22.4034 13.306 22.1922L13.5516 19.8551C13.5673 19.7056 13.5712 19.6689 13.3725 19.648L10.6747 19.3645C10.5252 19.3488 10.4635 19.3423 10.4844 19.1436L10.7143 16.956C10.7287 16.8191 10.7325 16.7824 10.9313 16.8033L13.604 17.0842C13.7901 17.1037 13.8403 17.109 13.8651 16.8727L14.5694 10.1721C14.5902 9.97344 14.5955 9.92331 14.8443 9.94947L24.1675 10.9294C24.8413 11.0273 25.5057 11.1723 26.1579 11.3648C27.5016 11.7621 28.7668 12.3901 29.8972 13.2157C30.6463 13.7696 31.3215 14.4143 31.9071 15.1365C32.3457 15.6993 32.7315 16.2991 33.0634 16.9295C33.3918 17.5676 33.6497 18.2399 33.8347 18.9336C33.8478 19.1105 34.0019 19.2453 34.1787 19.234L36.4038 19.4679C36.6894 19.4979 36.6894 19.4979 36.6731 19.7731L36.4588 21.8121C36.4379 22.0108 36.3584 22.0531 36.1587 22.0321L34.4429 21.8518C34.2692 21.8335 34.2191 21.8283 34.2081 22.0533C34.1966 22.8177 34.1167 23.5776 33.9691 24.3277C33.9469 24.539 33.9442 24.564 34.1814 24.589L36.1443 24.7953C36.2194 24.9163 36.1208 25.019 36.109 25.1318C36.1064 25.2773 36.091 25.4231 36.0633 25.5659L35.9052 27.0706C35.883 27.2818 35.8147 27.338 35.6276 27.3183L33.278 27.0714C33.1175 27.0228 32.9472 27.1108 32.8924 27.2697C32.1801 28.6654 31.148 29.8755 29.8817 30.7994C29.4192 31.1354 28.9376 31.4468 28.4393 31.7283C27.9115 31.9625 27.3959 32.2096 26.8609 32.3923C25.8776 32.7161 24.8602 32.9241 23.8289 33.0157C22.8513 33.0867 21.8702 33.0623 20.8951 32.9462L12.2674 32.0394L12.2687 32.0269L12.2726 32.0246Z\" fill=\"#FEFEFD\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-tnt696\",\"data-framer-name\":\"AssetWrapper\",style:{rotate:6},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1adnebn\",\"data-framer-name\":\"Assets/Logos/Cryptocurrencies\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1ivpo5\",\"data-framer-name\":\"Group 10\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:44,intrinsicWidth:45,style:{rotate:-6},svg:'<svg width=\"45\" height=\"44\" viewBox=\"0 0 45 44\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<circle cx=\"22.9444\" cy=\"21.981\" r=\"20\" transform=\"rotate(6 22.9444 21.981)\" fill=\"white\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M13.4684 8.19805L5.93623 20.055C5.90768 20.099 5.89466 20.1508 5.89907 20.2027C5.90348 20.2546 5.92509 20.304 5.96074 20.3436L21.132 37.5222C21.1751 37.571 21.236 37.6021 21.3021 37.6091C21.3682 37.616 21.4343 37.5982 21.4866 37.5594L39.8978 23.9115C39.9409 23.8802 39.9723 23.8364 39.9874 23.7865C40.0025 23.7366 40.0006 23.6833 39.9818 23.6343L35.0794 10.4704C35.0638 10.4263 35.0353 10.3873 34.9973 10.3581C34.9593 10.329 34.9134 10.3108 34.8652 10.3059L13.7141 8.08279C13.6657 8.07712 13.6167 8.08498 13.5731 8.10544C13.5295 8.12589 13.4931 8.15805 13.4684 8.19805ZM24.9817 23.3557C24.8602 23.3517 24.2336 23.3218 22.8443 23.1758C21.7393 23.0596 20.9581 22.9454 20.6841 22.904C16.4327 22.2752 13.32 21.228 13.4096 20.3754C13.4993 19.5228 16.7615 19.1466 21.0511 19.4126L20.7587 22.1947C21.0359 22.2433 21.8308 22.3726 22.9358 22.4887C24.2619 22.6281 24.9314 22.645 25.0521 22.647L25.3444 19.8658C29.5866 20.4956 32.6922 21.542 32.6028 22.3927C32.5134 23.2434 29.2591 23.6213 24.9778 23.3543L24.9817 23.3557ZM25.3787 19.5785L25.6403 17.0889L31.5873 17.714L31.9864 13.9176L15.7948 12.2158L15.3958 16.0122L21.3418 16.6371L21.0802 19.1257C16.2249 18.8304 12.494 19.3655 12.3785 20.4645C12.263 21.5635 15.8012 22.8617 20.6117 23.5833L19.7732 31.561L24.0708 32.0127L24.9096 24.0321C29.7538 24.3262 33.4786 23.7914 33.594 22.6934C33.7094 21.5954 30.1802 20.2982 25.3778 19.5774L25.3787 19.5785Z\" fill=\"#50AF95\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-15fl7fr\",\"data-framer-name\":\"AssetWrapper\",style:{rotate:6},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1i621cp\",\"data-framer-name\":\"Assets/Logos/Cryptocurrencies\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-15vw943\",\"data-framer-name\":\"Frame 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:44,intrinsicWidth:44,style:{rotate:-6},svg:'<svg width=\"44\" height=\"44\" viewBox=\"0 0 44 44\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M41.87 24.0911C40.7115 35.1138 30.9117 43.0495 19.889 41.891C8.8663 40.7324 0.930587 30.9327 2.08912 19.91C3.24765 8.88729 13.0474 0.95157 24.0701 2.1101C35.0928 3.26863 43.0285 13.0684 41.87 24.0911ZM10.8038 16.72C7.72946 22.849 10.2868 30.4078 16.5073 33.4076C16.7385 33.5996 16.9523 33.9571 16.9261 34.2058L16.8042 35.3662C16.7868 35.5319 16.778 35.6148 16.6864 35.6888C16.5688 36.0117 16.2198 36.1425 15.9057 35.942C11.4214 33.9624 8.23221 30.0241 7.22822 25.2263C5.56943 17.0917 10.7589 9.17399 18.8934 7.51519C18.9851 7.44116 19.1508 7.45858 19.2337 7.4673C19.5566 7.58489 19.6961 7.85093 19.6613 8.18251L19.5393 9.34272C19.4958 9.75723 19.304 9.98845 18.955 10.1193C15.4264 11.0053 12.4128 13.3698 10.8038 16.72ZM27.2293 8.72656C27.3469 8.40368 27.6959 8.27284 28.01 8.47338C32.4113 10.4442 35.6835 14.3913 36.6787 19.2721C38.3375 27.4066 33.1481 35.3243 25.0135 36.9831C24.9219 37.0572 24.7562 37.0398 24.6733 37.031C24.3504 36.9134 24.2108 36.6474 24.2457 36.3158L24.3676 35.1556C24.4112 34.7411 24.603 34.5099 24.952 34.379C28.4805 33.493 31.4942 31.1285 33.1032 27.7783C36.1775 21.6493 33.6202 14.0906 27.3997 11.0907C27.1685 10.8987 26.9547 10.5412 26.9895 10.2096L27.1115 9.04942C27.1289 8.88353 27.1376 8.80078 27.2293 8.72656ZM22.3502 20.8665C25.7875 21.6466 27.4234 22.8241 27.1185 25.7247C26.8833 27.9624 25.0429 29.5286 22.513 29.6818L22.304 31.6708C22.1775 32.0764 21.9027 32.2989 21.5711 32.2641L20.328 32.1334C19.9224 32.0069 19.6999 31.7322 19.7347 31.4008L19.9438 29.4117C17.2524 28.7098 16.0831 27.0786 15.9695 24.972L15.9782 24.889C16.0131 24.5575 16.2878 24.335 16.6192 24.3698L18.0282 24.5179C18.2769 24.544 18.5081 24.736 18.556 25.0761C18.6739 26.3454 19.324 27.3356 21.4789 27.5621C23.0535 27.7276 24.3097 26.9379 24.4491 25.6118C24.5884 24.2858 23.8948 23.7101 21.6177 23.0519C18.1805 22.2715 16.6362 21.02 16.9237 18.2851C17.1415 16.2131 18.8902 14.7211 21.4113 14.6509L21.6117 12.7448C21.7382 12.339 22.013 12.1165 22.3445 12.1513L23.5877 12.282C23.9933 12.4085 24.2158 12.6832 24.1809 13.0148L23.9719 15.0039C25.8606 15.3699 27.2043 16.9355 27.3442 18.7937L27.3355 18.8767C27.3007 19.208 27.0259 19.4305 26.6943 19.3957L25.3684 19.2563C25.1198 19.2302 24.8886 19.0384 24.8318 18.781C24.5481 17.4943 23.7715 16.91 22.2798 16.7532C20.6223 16.579 19.7151 17.2375 19.5931 18.3979C19.4711 19.5584 19.8987 20.2736 22.3502 20.8665Z\" fill=\"#2775CA\"/>\\n<path d=\"M16.5071 33.4076C10.2866 30.4078 7.72928 22.849 10.8036 16.72C12.4126 13.3698 15.4262 11.0053 18.9548 10.1193C19.3038 9.98844 19.4956 9.75723 19.5392 9.34271L19.6611 8.1825C19.696 7.85093 19.5564 7.58488 19.2335 7.46729C19.1506 7.45857 18.9849 7.44116 18.8933 7.51518C10.7587 9.17398 5.56925 17.0917 7.22804 25.2263C8.23203 30.0241 11.4212 33.9624 15.9055 35.942C16.2196 36.1425 16.5686 36.0117 16.6862 35.6888C16.7779 35.6148 16.7866 35.5319 16.804 35.3662L16.926 34.2058C16.9521 33.9571 16.7383 33.5996 16.5071 33.4076Z\" fill=\"white\"/>\\n<path d=\"M27.1183 25.7247C27.4232 22.8241 25.7873 21.6466 22.35 20.8665C19.8986 20.2736 19.471 19.5583 19.5929 18.3979C19.7149 17.2375 20.6221 16.579 22.2796 16.7532C23.7714 16.91 24.5479 17.4943 24.8316 18.781C24.8884 19.0384 25.1196 19.2302 25.3682 19.2563L26.6941 19.3957C27.0257 19.4305 27.3005 19.208 27.3353 18.8767L27.344 18.7937C27.2041 16.9355 25.8604 15.3699 23.9717 15.0038L24.1808 13.0148C24.2156 12.6832 23.9931 12.4085 23.5875 12.282L22.3444 12.1513C22.0128 12.1165 21.738 12.339 21.6115 12.7448L21.4112 14.6509C18.89 14.7211 17.1413 16.2131 16.9235 18.2851C16.6361 21.02 18.1803 22.2715 21.6176 23.0519C23.8946 23.7101 24.5883 24.2857 24.4489 25.6118C24.3095 26.9379 23.0533 27.7276 21.4788 27.5621C19.3238 27.3356 18.6738 26.3454 18.5558 25.0761C18.5079 24.736 18.2767 24.544 18.0281 24.5179L16.619 24.3698C16.2876 24.335 16.0129 24.5575 15.978 24.889L15.9693 24.972C16.0829 27.0786 17.2522 28.7098 19.9436 29.4117L19.7345 31.4008C19.6997 31.7321 19.9222 32.0069 20.3278 32.1334L21.571 32.2641C21.9025 32.2989 22.1773 32.0764 22.3038 31.6708L22.5129 29.6818C25.0427 29.5286 26.8831 27.9624 27.1183 25.7247Z\" fill=\"white\"/>\\n<path d=\"M28.0098 8.47338C27.6957 8.27284 27.3467 8.40368 27.2291 8.72655C27.1374 8.80078 27.1287 8.88352 27.1113 9.04941L26.9894 10.2096C26.9545 10.5412 27.1683 10.8987 27.3995 11.0907C33.62 14.0906 36.1773 21.6493 33.103 27.7783C31.494 31.1285 28.4804 33.493 24.9518 34.379C24.6028 34.5099 24.411 34.7411 24.3674 35.1556L24.2455 36.3158C24.2106 36.6474 24.3502 36.9134 24.6731 37.031C24.756 37.0398 24.9217 37.0572 25.0133 36.9831C33.1479 35.3243 38.3374 27.4066 36.6786 19.2721C35.6833 14.3913 32.4111 10.4442 28.0098 8.47338Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Tdcf2m17Y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"46px\",\"--framer-letter-spacing\":\"-2.24px\",\"--framer-line-height\":\"48px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"giants\"})})},YwQdG6HP0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"54px\",\"--framer-letter-spacing\":\"-2.24px\",\"--framer-line-height\":\"62px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"giants\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"62px\",\"--framer-letter-spacing\":\"-2.24px\",\"--framer-line-height\":\"62px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"giants\"})}),className:\"framer-i10owy\",\"data-framer-name\":\"giants\",fonts:[\"CUSTOM;Uxum Grotesque Bold\"],verticalAlignment:\"center\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Uxum Grotesque Regular\", \"Uxum Grotesque Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.03em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(153, 151, 164)\"},children:\"A secure, decentralized issuer that takes back the value captured by crypto giants\u2014and redistributes it to the community through $USUAL.\"})}),className:\"framer-1nkbj84\",\"data-framer-name\":\"A secure, decentralized issuer that takes back the value captured by crypto giants\u2014and redistributes it to the community through $USUAL.\",fonts:[\"CUSTOM;Uxum Grotesque Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-j2r8qr\",\"data-framer-name\":\"CTA\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nt2kS3X5C:{y:undefined},qSA0MXLLq:{y:undefined},Tdcf2m17Y:{y:undefined},YwQdG6HP0:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"198px\",y:(componentViewport?.y||0)+0+0+120+0+0+0+555+24+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-2lzi9l-container\",nodeId:\"M0gWFx0Vi\",scopeId:\"pipfm3NxG\",children:/*#__PURE__*/_jsx(V11CTA,{height:\"100%\",id:\"M0gWFx0Vi\",J9xGW5mlS:\"Access app\",layoutId:\"M0gWFx0Vi\",style:{width:\"100%\"},width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ertg45\",\"data-framer-name\":\"Helper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nt2kS3X5C:{width:undefined,y:undefined},qSA0MXLLq:{y:undefined},Tdcf2m17Y:{y:undefined},YwQdG6HP0:{width:undefined,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:580,width:\"480px\",y:(componentViewport?.y||0)+0+0+120+0+0+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Tdcf2m17Y:{transformTemplate:transformTemplate2},YwQdG6HP0:{transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation4,className:\"framer-1efgleb-container\",\"data-framer-appear-id\":\"1efgleb\",initial:animation5,nodeId:\"q5XoGGmly\",optimized:true,rendersWithMotion:true,scopeId:\"pipfm3NxG\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nt2kS3X5C:{style:{height:\"100%\"}},Tdcf2m17Y:{style:{width:\"100%\"}},YwQdG6HP0:{style:{height:\"100%\"}}},children:/*#__PURE__*/_jsx(HeroIllustration,{height:\"100%\",id:\"q5XoGGmly\",layoutId:\"q5XoGGmly\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ga60h4\",\"data-framer-name\":\"Logo Carrousel\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-17juozo\",\"data-framer-name\":\"Frame 41151\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:113,svg:'<svg width=\"113\" height=\"25\" viewBox=\"0 0 113 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M5.71484 12.4111L8.65066 9.47531L11.5865 12.4111L8.65066 15.347L5.71484 12.4111Z\" fill=\"#43434C\"/>\\n<path d=\"M18.7122 5.28316L23.7448 10.3157L26.6798 7.3787L18.7122 -0.588867L10.7446 7.3787L13.6796 10.3157L18.7122 5.28316Z\" fill=\"#43434C\"/>\\n<path d=\"M25.8423 12.4121L28.7781 9.47629L31.7139 12.4121L28.7781 15.3479L25.8423 12.4121Z\" fill=\"#43434C\"/>\\n<path d=\"M18.7122 19.5393L13.6796 14.5088L10.7446 17.4438L18.7122 25.4113L26.6798 17.4438L23.7448 14.5088L18.7122 19.5393Z\" fill=\"#43434C\"/>\\n<path d=\"M15.7793 12.4121L18.7151 9.47629L21.6509 12.4121L18.7151 15.3479L15.7793 12.4121Z\" fill=\"#43434C\"/>\\n<path d=\"M42.3761 12.4114H37.5869V2.34415H42.2606C44.3231 2.34415 45.5834 3.37542 45.5834 4.94707V4.97594C45.5834 6.1124 44.979 6.74353 44.2592 7.14779C45.4245 7.59329 46.1444 8.26981 46.1444 9.62283V9.6517C46.1444 11.4915 44.647 12.4114 42.3761 12.4114ZM43.3826 5.32038C43.3826 4.65831 42.8649 4.28912 41.9389 4.28912H39.7526V6.41971H41.7842C42.7618 6.41971 43.3806 6.10415 43.3806 5.35545L43.3826 5.32038ZM43.9436 9.34851C43.9436 8.672 43.4404 8.25537 42.3039 8.25537H39.7443V10.4705H42.3761C43.3538 10.4705 43.9436 10.124 43.9436 9.37738V9.34851ZM48.574 12.4114V2.34415H50.7892V12.4114H48.574ZM60.811 12.4114L55.9352 6.00721V12.4011H53.7469V2.34415H55.7888L60.5058 8.54206V2.34415H62.6921V12.4114H60.811ZM72.6479 12.4114L71.728 10.1426H67.4709L66.549 12.4114H64.2926L68.6074 2.27196H70.6596L74.9744 12.4114H72.6479ZM69.5995 4.93263L68.2609 8.19762H70.9422L69.5995 4.93263ZM83.6371 12.4114L78.7612 6.00721V12.4011H76.575V2.34415H78.6169L83.3339 8.54206V2.34415H85.5202V12.4114H83.6371ZM92.8277 12.5846C92.1459 12.5947 91.469 12.4675 90.8373 12.2105C90.2057 11.9535 89.6322 11.572 89.1511 11.0888C88.6699 10.6055 88.291 10.0304 88.0368 9.39762C87.7826 8.76486 87.6583 8.0874 87.6714 7.4056V7.37673C87.6714 4.516 89.8288 2.1709 92.9205 2.1709C94.8181 2.1709 95.9545 2.8041 96.8909 3.72398L95.4801 5.34926C94.7046 4.64387 93.9126 4.21281 92.9061 4.21281C91.2086 4.21281 89.9856 5.62358 89.9856 7.34785V7.37673C89.9856 9.10307 91.1798 10.5407 92.9061 10.5407C94.057 10.5407 94.7624 10.0807 95.5523 9.36295L96.961 10.7861C95.9195 11.8937 94.7706 12.5846 92.8277 12.5846ZM98.741 12.4114V2.34415H106.341V4.31387H100.94V6.35578H105.683V8.32756H100.94V10.4417H106.405V12.4114H98.741ZM79.578 15.3443H80.83V21.3256H84.5755V22.4642H79.578V15.3443ZM93.0897 22.4703H91.7655L91.0416 20.7502H87.6714L86.9392 22.4703H85.6563L88.7913 15.2927H89.9525L93.0897 22.4703ZM89.3524 16.7901L88.1313 19.6405H90.5837L89.3524 16.7901ZM99.962 17.1676C99.962 18.0421 99.4732 18.4897 98.9431 18.766C99.7785 19.0507 100.358 19.5292 100.358 20.5068C100.358 21.7897 99.3103 22.4703 97.7221 22.4703H94.4221V15.3443H97.619C99.0566 15.3443 99.962 16.0476 99.962 17.1676ZM98.7101 17.3738C98.7101 16.7943 98.2625 16.4581 97.4581 16.4581H95.6555V18.3515H97.3653C98.1697 18.3473 98.7101 18.0318 98.7101 17.3697V17.3738ZM99.1061 20.3789C99.1061 19.7602 98.6276 19.4116 97.6396 19.4116H95.6555V21.3648H97.7324C98.5884 21.3607 99.1061 21.0266 99.1061 20.3748V20.3789ZM104.708 18.337C106.214 18.7042 106.997 19.2445 106.997 20.4346C106.997 21.7794 105.95 22.5735 104.452 22.5735C103.354 22.5782 102.293 22.1713 101.48 21.4329L102.233 20.5377C102.916 21.1276 103.598 21.4638 104.483 21.4638C105.257 21.4638 105.745 21.107 105.745 20.5563C105.745 20.0386 105.461 19.7622 104.137 19.457C102.621 19.0919 101.765 18.632 101.765 17.3202C101.765 16.0827 102.784 15.2432 104.198 15.2432C105.14 15.2245 106.057 15.5419 106.785 16.1384L106.112 17.0851C105.565 16.6359 104.885 16.3787 104.178 16.3529C103.446 16.3529 103.017 16.7283 103.017 17.2068C103.017 17.7636 103.343 18.0111 104.708 18.337ZM37.5869 18.3247H76.6142V19.5106H37.5869V18.3247Z\" fill=\"#43434C\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ohza3n\",\"data-framer-name\":\"Frame 41152\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:110,svg:'<svg width=\"110\" height=\"25\" viewBox=\"0 0 110 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M39.3393 12.8785C37.8575 5.95208 31.5126 1.11698 24.0307 1.17533C16.4983 1.235 10.3678 6.07143 8.96732 13.1132C8.42479 15.8384 8.81451 18.6034 8.73741 21.3485C8.68975 23.0195 9.53369 23.9982 10.9075 24.0181C12.2982 24.0393 13.1716 23.0632 13.194 21.4003C13.2179 19.5967 13.1814 17.7932 13.2066 15.9909C13.2277 14.511 13.9567 13.7352 15.2758 13.7073C16.6805 13.6782 17.46 14.4659 17.481 16.0055C17.5049 17.8078 17.474 19.6113 17.4908 21.4148C17.5063 23.0473 18.4035 24.0472 19.7871 24.0194C21.1217 23.9915 21.9671 23.0341 21.9839 21.4705C22.0035 19.667 21.9741 17.8634 21.9937 16.0612C22.0105 14.5203 22.7704 13.714 24.1554 13.706C25.5377 13.698 26.2569 14.4871 26.2779 16.0705C26.3031 18.0146 26.2288 19.9641 26.3466 21.9042C26.4307 23.2887 27.4527 24.0963 28.6822 24.0154C29.9214 23.9345 30.7317 23.0341 30.7457 21.6681C30.764 19.8646 30.7331 18.061 30.7556 16.2588C30.7766 14.6317 31.5644 13.7286 32.9243 13.7047C34.3598 13.6782 35.1729 14.5958 35.1897 16.3052C35.208 18.1552 35.1673 20.0065 35.2066 21.8565C35.2346 23.1547 36.2187 24.0499 37.4706 24.0154C38.6664 23.9836 39.5006 23.1335 39.5356 21.8339C39.5693 20.5529 39.5426 19.2718 39.5426 17.6884C39.5062 16.284 39.7024 14.5627 39.3408 12.8772L39.3393 12.8785Z\" fill=\"#43434C\"/>\\n<path d=\"M62.3977 11.9574C63.7623 11.8248 64.9373 11.3242 65.9551 10.3232C66.4404 11.6922 67.1987 12.0731 68.5606 11.739C68.9115 11.6532 68.9841 11.4751 68.9828 11.2748C68.9828 11.2644 68.9828 11.254 68.9828 11.2423C68.9828 11.2397 68.9828 11.2384 68.9828 11.2358V10.6118C68.9828 10.4779 68.8699 10.3687 68.7314 10.3687H68.6789C68.6789 10.3687 68.6749 10.3687 68.6722 10.3687C68.6655 10.3687 68.6574 10.3687 68.6507 10.3687C68.5835 10.3687 68.5095 10.3752 68.4343 10.3804C67.8521 10.4233 67.7405 10.0671 67.7446 9.58732C67.7567 7.72688 67.7593 5.86514 67.7459 4.0047C67.7365 2.51478 67.1624 1.73603 65.7669 1.25499C64.6644 0.875361 63.5203 0.811656 62.3883 1.00147C60.9833 1.23809 59.7706 1.78803 59.3767 3.30524C59.1091 4.33362 59.1199 4.33232 60.1981 4.36222C60.7117 4.37652 61.0451 4.30892 61.1164 3.72518C61.1648 3.32995 61.4485 3.02442 61.798 2.79821C62.6477 2.24696 64.5071 2.27167 65.3326 2.84501C65.8233 3.18564 66.0519 3.87859 65.8919 4.54294C65.7521 5.12018 65.2896 5.23069 64.7733 5.29049C63.8416 5.3971 62.9112 5.52061 61.9795 5.63242C60.2197 5.84434 59.0123 6.79601 58.7475 8.18581C58.3307 10.3752 60.0879 12.1797 62.395 11.9561L62.3977 11.9574ZM61.9217 7.18344C62.6289 6.95852 63.3751 6.94552 64.1011 6.81681C64.3861 6.7661 64.6765 6.731 64.9575 6.6647C65.8959 6.44108 65.8959 6.43718 65.8946 7.37845C65.8932 9.3533 64.2436 10.7119 62.2054 10.4168C61.314 10.2881 60.6902 9.71733 60.6324 8.97627C60.5585 8.0454 60.9537 7.49156 61.9217 7.18344Z\" fill=\"#43434C\"/>\\n<path d=\"M84.039 11.9883C86.5073 12.2738 88.7754 11.4787 89.8793 9.30734C90.3311 8.41846 90.3235 8.43671 89.2136 8.38327C88.5058 8.34939 88.0736 8.48754 87.7889 9.10402C87.4877 9.75569 86.8236 10.1415 86.0525 10.3565C83.7062 11.0121 81.774 9.75178 81.6023 7.48657C81.5722 7.09687 81.6956 6.99521 82.1218 7.00042C83.4004 7.01606 84.6775 7.00564 85.9561 7.00564C87.2347 7.00564 88.5133 6.99 89.7904 7.01346C90.2573 7.02128 90.4244 6.88312 90.3777 6.48951C90.316 5.97339 90.304 5.45075 90.2302 4.93593C89.9636 3.08127 88.8446 1.78705 86.7588 1.23443C84.6324 0.67139 82.6911 0.969855 81.0978 2.40223C79.4396 3.89325 79.2077 5.74661 79.4186 7.67686C79.6716 9.99551 81.4547 11.6886 84.042 11.987L84.039 11.9883ZM81.6444 5.10667C81.8116 3.60391 83.3297 2.49607 85.1896 2.5482C86.8658 2.59512 88.1624 3.77074 88.2181 5.26176C88.2317 5.6254 87.9727 5.57196 87.7332 5.57326C86.8085 5.57717 85.8838 5.57457 84.9576 5.57457C84.033 5.57457 83.1068 5.56284 82.1821 5.57978C81.7709 5.5876 81.5993 5.49897 81.6429 5.10406L81.6444 5.10667Z\" fill=\"#43434C\"/>\\n<path d=\"M91.7915 10.9928V11.2238C91.7915 11.4093 91.9649 11.5594 92.1792 11.5594H93.3907C93.605 11.5594 93.7784 11.4093 93.7784 11.2238V10.189C93.7784 10.1776 93.7755 10.1663 93.7741 10.1562C93.7551 8.49552 93.6793 6.83486 93.8513 5.17546C94.0175 3.57536 95.7421 2.45101 97.5643 2.74882C98.6256 2.92296 99.2539 3.56022 99.2816 4.65934C99.3282 6.54967 99.2947 8.44126 99.3166 10.3316C99.3326 11.7134 99.0338 11.514 100.769 11.5329C100.817 11.5329 100.866 11.5291 100.914 11.5329C101.229 11.5544 101.341 11.4219 101.34 11.1581C101.321 8.74159 101.394 6.32252 101.267 3.91103C101.178 2.20494 99.8268 1.25599 97.8413 1.18027C96.2348 1.11844 94.8966 1.57651 93.6997 2.79046C93.6997 2.37908 93.6764 2.16834 93.7041 1.96391C93.7668 1.51089 93.5335 1.35441 93.0379 1.40741C92.8702 1.42508 92.6953 1.4276 92.5291 1.40741C91.9649 1.34053 91.7813 1.52225 91.7856 2.02953C91.8133 4.94957 91.8206 7.87088 91.7827 10.7922C91.7827 10.8641 91.7827 10.931 91.79 10.9916L91.7915 10.9928Z\" fill=\"#43434C\"/>\\n<path d=\"M70.4705 10.4152C70.4777 11.7162 70.2143 11.5241 71.5581 11.5589C71.9207 11.568 72.0633 11.4532 72.0476 11.0496C72.0222 10.3843 72.1044 9.70988 72.0258 9.05485C71.9062 8.05554 72.2458 7.35796 72.9515 6.72227C73.3684 6.34575 73.4941 6.44633 73.7298 6.8641C74.5177 8.26185 75.331 9.64541 76.1431 11.0277C76.264 11.234 76.328 11.5396 76.6278 11.5447C77.2356 11.5564 77.8447 11.5486 78.5444 11.5486C78.3752 11.252 78.2761 11.0702 78.1686 10.8923C77.0954 9.12706 76.0368 7.35151 74.9347 5.6069C74.6591 5.16979 74.7002 4.92479 75.0519 4.59599C75.6259 4.05701 76.1649 3.47547 76.7039 2.8978C77.2054 2.35882 77.6876 1.8005 78.1734 1.25635C77.0314 1.07583 75.9679 1.10807 75.1921 2.27501C74.8597 2.77531 74.3787 3.16472 73.9582 3.59668C73.3721 4.19884 72.7799 4.79327 72.1116 5.47022C72.0826 5.22007 72.0572 5.09887 72.056 4.97766C72.0524 3.90356 72.0391 2.82946 72.0621 1.75665C72.0705 1.34017 71.9509 1.15449 71.5497 1.20607C71.4107 1.22412 71.2657 1.22928 71.1279 1.20607C70.5962 1.11581 70.4487 1.33888 70.4548 1.9101C70.4826 4.74556 70.4572 7.58103 70.4717 10.4152H70.4705Z\" fill=\"#43434C\"/>\\n<path d=\"M42.5144 10.363C42.5144 11.6103 42.5144 11.5974 43.5988 11.5397C43.8889 11.5243 43.9893 11.4165 43.9826 11.0867C43.9681 10.404 44.0351 9.71235 43.9648 9.03865C43.8588 8.02747 44.1411 7.28704 44.8495 6.68135C45.1452 6.42856 45.2623 6.37594 45.4654 6.76861C46.0634 7.92352 46.6949 9.05534 47.3074 10.2013C47.7901 11.1029 48.4964 11.5452 49.4261 11.5281C49.5656 11.5256 49.7519 11.6154 49.8356 11.4473C49.9215 11.2753 49.7608 11.1367 49.685 11.0007C48.8192 9.45827 47.9501 7.91839 47.0809 6.37979C46.3089 5.01315 46.3312 5.04138 47.3866 3.88776C48.1464 3.0575 48.8326 2.14127 49.5232 1.29947C48.3104 1.02358 47.8943 1.16473 47.0318 2.13871C46.0545 3.24229 45.0671 4.33432 43.9793 5.54954C43.9793 4.21113 43.957 3.03954 43.9893 1.86923C44.0038 1.35465 43.8566 1.16345 43.4237 1.23531C43.3143 1.25328 43.1994 1.25456 43.0901 1.23531C42.6192 1.15062 42.5021 1.3816 42.5054 1.90773C42.5266 4.72571 42.5155 7.54497 42.5155 10.363H42.5144Z\" fill=\"#43434C\"/>\\n<path d=\"M53.4023 11.5581C53.9914 11.5771 54.1068 11.3925 54.0993 10.94C54.0708 9.32067 54.0873 7.70139 54.0888 6.0821C54.0888 4.0444 55.0961 3.12414 57.5095 2.9851C57.8303 2.96613 57.9592 2.89282 57.9502 2.6223C57.9367 2.26457 57.9352 1.90683 57.9502 1.55036C57.9622 1.26847 57.7898 1.20021 57.4945 1.18251C56.5651 1.12563 55.7752 1.38477 55.1111 1.91821C54.7754 2.18746 54.4726 2.48705 54.0274 2.88776C54.0274 2.53635 53.9989 2.34421 54.0319 2.16091C54.1428 1.55163 53.8505 1.30513 53.1325 1.40752C53.1085 1.41131 53.083 1.40752 53.0575 1.40752C52.404 1.40752 52.0767 1.67424 52.0757 2.20769C52.0757 4.96338 52.0652 7.71782 52.0802 10.4735C52.0877 11.7136 51.8164 11.5088 53.4008 11.5594L53.4023 11.5581Z\" fill=\"#43434C\"/>\\n<path d=\"M99.5388 15.0309C99.3227 15.0188 99.1053 15.0212 98.8878 15.0212C89.8989 15.0212 80.9085 15.0212 71.9196 15.0212C62.9082 15.0212 53.8968 15.0212 44.8854 15.0212C44.6904 15.0212 44.4939 15.0212 44.2989 15.0296C43.2551 15.084 42.534 15.6767 42.5227 16.5664C42.4989 18.5269 42.5003 20.4886 42.5227 22.4503C42.5312 23.2929 43.2467 23.9171 44.2288 24.0076C44.4434 24.0269 44.6623 24.0197 44.8798 24.0197C62.9025 24.0197 80.9239 24.0197 98.9467 24.0197C99.0982 24.0197 99.2512 24.0233 99.4027 24.0185C100.562 23.9822 101.321 23.3473 101.33 22.3489C101.349 20.4439 101.349 18.539 101.33 16.634C101.321 15.725 100.584 15.0924 99.5402 15.0333L99.5388 15.0309ZM51.6885 16.9624C50.8537 18.7019 50.0091 20.4379 49.1813 22.1799C49.0368 22.4853 48.766 22.4479 48.4868 22.4527C48.2175 22.4575 47.9888 22.4491 47.8597 22.1763C47.0404 20.4512 46.2084 18.7309 45.3722 17.0119C45.2361 16.733 45.3273 16.6618 45.6584 16.64C46.235 16.6014 46.6124 16.7004 46.8285 17.2473C47.262 18.3398 47.791 19.4033 48.2848 20.4777C48.3451 20.6093 48.3564 20.7699 48.6075 20.8725C48.9821 20.0588 49.3525 19.2548 49.7215 18.4496C49.9431 17.9643 50.1564 17.4754 50.3865 16.9926C50.524 16.7028 51.3784 16.4976 51.6716 16.6702C51.8302 16.7632 51.7348 16.8694 51.6899 16.9612L51.6885 16.9624ZM57.9781 21.959C57.9724 22.2716 57.9079 22.4382 57.4786 22.4322C56.1345 22.4141 54.7891 22.4177 53.445 22.431C53.0816 22.4346 52.9483 22.3344 52.9554 22.0145C52.9764 21.1936 52.9624 20.3727 52.9624 19.5518C52.9624 18.7309 52.9778 17.91 52.9554 17.0891C52.9455 16.7475 53.0746 16.6352 53.4745 16.64C54.7975 16.657 56.1205 16.6594 57.4435 16.64C57.863 16.634 57.9472 16.7801 57.9486 17.1024C57.95 17.4344 57.8434 17.5684 57.4337 17.5587C56.5456 17.537 55.6547 17.5708 54.7666 17.5442C54.284 17.5298 54.1283 17.6638 54.1367 18.0851C54.1563 19.0617 54.1311 19.0617 55.2717 19.0617C55.8792 19.0617 56.4867 19.0774 57.0928 19.0569C57.5263 19.0424 57.5165 19.2657 57.5207 19.5253C57.5249 19.7945 57.5109 19.9949 57.0844 19.9828C56.2833 19.9611 55.4793 19.9888 54.6782 19.9707C54.3064 19.9623 54.1437 20.0347 54.1367 20.3981C54.1184 21.4664 54.0974 21.4652 55.3629 21.4652C56.0574 21.4652 56.7518 21.4858 57.4449 21.458C57.9023 21.4399 57.9851 21.6161 57.9795 21.9578L57.9781 21.959ZM65.0042 22.3948C64.6366 22.4672 64.255 22.501 63.9534 22.157C62.946 21.0089 61.9078 19.8814 60.8808 18.7478C60.8051 18.6645 60.7209 18.5861 60.5315 18.3965C60.5315 19.6363 60.5119 20.7457 60.5413 21.8539C60.5525 22.2837 60.4249 22.4551 59.8903 22.4406C59.4512 22.4286 59.3446 22.3042 59.3502 21.9469C59.3698 20.3957 59.3502 18.8456 59.3684 17.2944C59.3712 17.0819 59.1776 16.7415 59.5719 16.6739C59.9549 16.6087 60.3842 16.5471 60.6971 16.9117C61.2386 17.543 61.8124 18.1527 62.3736 18.7708C62.8759 19.3224 63.3796 19.8729 63.8818 20.4246C63.9323 20.4126 63.9814 20.4005 64.032 20.3872C64.032 19.5204 64.032 18.6537 64.032 17.7869C64.032 17.5998 64.0418 17.4127 64.0306 17.2267C64.0095 16.8863 64.0025 16.6244 64.5805 16.6292C65.1179 16.634 65.2343 16.797 65.2273 17.2207C65.2034 18.7526 65.2231 20.2846 65.2119 21.8165C65.2105 22.0181 65.3606 22.3235 65.007 22.3924L65.0042 22.3948ZM71.4004 17.63C70.887 17.6191 70.2093 17.4259 69.8964 17.7096C69.5359 18.0368 69.7842 18.6319 69.7744 19.11C69.7547 20.0613 69.7449 21.0137 69.7786 21.9638C69.794 22.4081 69.5303 22.431 69.136 22.4358C68.7221 22.4406 68.4836 22.3803 68.5061 21.9517C68.5412 21.2817 68.5159 20.6093 68.5145 19.9369C68.5145 19.3031 68.5005 18.6681 68.5201 18.0344C68.5299 17.7205 68.4065 17.5937 68.0361 17.6167C67.712 17.6372 67.3851 17.6046 67.061 17.6251C66.6373 17.6505 66.382 17.6118 66.3876 17.1362C66.3932 16.6606 66.6612 16.6413 67.0778 16.6437C68.5089 16.6557 69.9399 16.6642 71.371 16.6388C71.855 16.6304 71.8831 16.8308 71.8803 17.1507C71.8789 17.4525 71.8452 17.6396 71.399 17.63H71.4004ZM78.6651 20.5393C78.4126 21.9324 77.3155 22.5771 75.4326 22.4684C73.9777 22.3851 73.0602 21.5316 73.0195 20.2109C73.0041 19.7075 73.0167 19.2041 73.0167 18.6995C73.0167 18.1394 73.0363 17.5793 73.0097 17.0215C72.99 16.6014 73.3015 16.6485 73.6088 16.6461C73.9286 16.6437 74.2148 16.6304 74.2078 17.0348C74.1896 18.0416 74.1882 19.0496 74.2078 20.0564C74.2247 20.9401 74.7746 21.4737 75.6908 21.5485C76.7122 21.6306 77.4473 21.132 77.4894 20.2496C77.5385 19.2247 77.5343 18.1973 77.5077 17.1724C77.4964 16.7439 77.6704 16.6376 78.146 16.634C78.6441 16.6304 78.7858 16.7789 78.7619 17.1881C78.6988 18.3036 78.8644 19.4275 78.6637 20.5393H78.6651ZM84.0456 21.7405C83.8127 21.365 83.4718 21.0403 83.1954 20.683C83.0495 20.4922 82.8727 20.4222 82.6047 20.4138C81.5174 20.38 81.5188 20.3715 81.5188 21.318C81.5188 21.4858 81.4893 21.6584 81.5244 21.8214C81.6479 22.3996 81.2747 22.4624 80.7429 22.4346C80.4343 22.4189 80.3305 22.326 80.3319 22.0652C80.3403 20.386 80.3361 18.7056 80.3347 17.0264C80.3347 16.8272 80.3431 16.6425 80.6616 16.6509C81.8078 16.6835 82.9625 16.5555 84.1017 16.739C85.0599 16.8924 85.6731 17.4453 85.7979 18.2275C85.9284 19.0412 85.565 19.7039 84.6825 20.0709C84.2631 20.2447 84.3206 20.3739 84.5451 20.6298C85.001 21.1514 85.4303 21.6898 85.8681 22.2234C85.8919 22.2511 85.8933 22.2922 85.9186 22.3658C85.0768 22.5638 84.4609 22.4129 84.0442 21.7417L84.0456 21.7405ZM91.7143 22.4346C90.3927 22.4117 89.0683 22.4153 87.7467 22.4346C87.3412 22.4406 87.2318 22.3163 87.2346 21.9819C87.2514 20.3401 87.25 18.6983 87.2346 17.0577C87.2318 16.7342 87.3637 16.6352 87.7256 16.6449C88.3977 16.663 89.0697 16.6497 89.7417 16.6509C90.4138 16.6509 91.0872 16.6618 91.7578 16.6473C92.1619 16.6376 92.2082 16.8296 92.2082 17.1084C92.2082 17.3873 92.1731 17.5696 91.7606 17.5611C90.8501 17.5418 89.9381 17.5696 89.029 17.5491C88.5955 17.5394 88.4033 17.636 88.4187 18.0476C88.465 19.2814 88.2517 19.04 89.5692 19.0641C90.1332 19.0738 90.6986 19.087 91.2598 19.0593C91.7031 19.0363 91.8069 19.1921 91.8083 19.5458C91.8083 19.8922 91.675 19.9985 91.2808 19.9876C90.5007 19.9659 89.7193 19.9973 88.9392 19.9743C88.5422 19.9635 88.4089 20.0733 88.4201 20.4186C88.4594 21.7127 88.2546 21.4411 89.5958 21.4664C90.2889 21.4797 90.9848 21.4845 91.6778 21.4628C92.0903 21.4495 92.2615 21.5485 92.2447 21.9324C92.2306 22.2656 92.1773 22.4443 91.7143 22.4358V22.4346ZM98.3406 21.0789C98.1989 21.9143 97.3585 22.4455 96.1393 22.4708C96.0524 22.4732 95.9654 22.4708 95.7998 22.4708C95.017 22.501 94.2664 22.2306 93.5621 21.837C93.3306 21.7067 93.1075 21.5618 93.4161 21.3216C93.6364 21.1502 93.7178 20.7047 94.2004 21.0246C94.7883 21.4145 95.4505 21.6149 96.2011 21.5606C96.6683 21.5268 97.0639 21.3928 97.1537 20.9449C97.2435 20.4934 96.8759 20.3063 96.4662 20.1892C95.9331 20.0371 95.3803 19.9309 94.8472 19.7764C93.8399 19.4854 93.3769 18.9458 93.4442 18.1829C93.513 17.4018 94.119 16.7934 95.0619 16.6485C96.0033 16.5036 96.9236 16.5918 97.7542 17.0493C97.9548 17.1604 98.3056 17.2497 97.9899 17.5346C97.7808 17.7241 97.7514 18.2118 97.1972 17.8907C96.7216 17.6155 96.1842 17.4634 95.5978 17.5068C95.1615 17.5382 94.77 17.6469 94.6788 18.0754C94.5848 18.5209 94.9244 18.7237 95.3439 18.8432C95.7746 18.9663 96.2179 19.0617 96.6542 19.1715C98.0025 19.5096 98.5104 20.083 98.342 21.0765L98.3406 21.0789Z\" fill=\"#43434C\"/>\\n<path d=\"M84.4242 18.477C84.3812 17.8673 84.0237 17.5288 83.4942 17.4454C83.2093 17.4006 82.915 17.4379 82.6247 17.4379C81.4863 17.4443 81.4863 17.3 81.4863 18.6857C81.4863 18.9392 81.489 19.1926 81.489 19.4445C81.489 19.6339 81.5589 19.7636 81.7403 19.7576C82.3801 19.7352 83.0292 19.865 83.6595 19.6562C84.1823 19.4833 84.4659 19.0808 84.4242 18.477Z\" fill=\"#43434C\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-c2qxr9\",\"data-framer-name\":\"Frame 41153\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:23,intrinsicWidth:145,svg:'<svg width=\"145\" height=\"23\" viewBox=\"0 0 145 23\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_166_64964)\">\\n<path d=\"M34.1385 6.42116C29.4612 6.42116 25.8064 9.97185 25.8064 14.7252C25.8064 19.4785 29.3688 22.9988 34.1385 22.9988C38.9082 22.9988 42.5325 19.4178 42.5325 14.6948C42.5325 10.0022 38.9702 6.42116 34.1385 6.42116ZM34.1701 19.5732C31.5065 19.5732 29.5547 17.5045 29.5547 14.7264C29.5547 11.9167 31.4749 9.84913 34.1385 9.84913C36.8337 9.84913 38.7843 11.9482 38.7843 14.7264C38.7843 17.5045 36.8337 19.5732 34.1701 19.5732ZM43.554 10.0338H45.8775V22.6914H49.5942V6.72971H43.554V10.0338ZM16.4529 9.84796C18.4047 9.84796 19.9533 11.0518 20.5412 12.8423H24.4752C23.7623 9.01464 20.6031 6.42116 16.4844 6.42116C11.8071 6.42116 8.15234 9.97185 8.15234 14.7264C8.15234 19.4809 11.7147 23 16.4844 23C20.5108 23 23.7319 20.4065 24.4448 16.5473H20.5412C19.9837 18.3378 18.4351 19.5732 16.4833 19.5732C13.7881 19.5732 11.8994 17.5045 11.8994 14.7264C11.9006 11.9167 13.7589 9.84796 16.4529 9.84796ZM114.173 13.1824L111.447 12.7815C110.146 12.5969 109.217 12.1644 109.217 11.1453C109.217 10.0338 110.426 9.47863 112.067 9.47863C113.863 9.47863 115.01 10.25 115.257 11.5158H118.85C118.447 8.3052 115.969 6.42233 112.16 6.42233C108.226 6.42233 105.624 8.42909 105.624 11.2692C105.624 13.9854 107.329 15.5609 110.766 16.0541L113.491 16.455C114.824 16.6396 115.567 17.1656 115.567 18.1532C115.567 19.4189 114.266 19.9437 112.47 19.9437C110.27 19.9437 109.031 19.0484 108.846 17.6903H105.191C105.532 20.8086 107.978 23 112.438 23C116.496 23 119.19 21.1475 119.19 17.9673C119.19 15.1272 117.24 13.6453 114.173 13.1824ZM47.7359 0.154276C46.3731 0.154276 45.3504 1.14188 45.3504 2.49997C45.3504 3.85807 46.3719 4.84567 47.7359 4.84567C49.0986 4.84567 50.1213 3.85807 50.1213 2.49997C50.1213 1.14188 49.0986 0.154276 47.7359 0.154276ZM102.279 12.1948C102.279 8.73764 100.173 6.42233 95.7134 6.42233C91.5012 6.42233 89.1473 8.55298 88.6822 11.8255H92.3684C92.5542 10.5597 93.5454 9.51019 95.6515 9.51019C97.5413 9.51019 98.4705 10.3435 98.4705 11.3627C98.4705 12.6904 96.7665 13.0293 94.6604 13.2455C91.8109 13.5541 88.2801 14.5417 88.2801 18.2467C88.2801 21.1183 90.4178 22.9696 93.8247 22.9696C96.4883 22.9696 98.1608 21.8581 98.9976 20.098C99.1215 21.6723 100.298 22.6914 101.941 22.6914H104.109V19.3885H102.281V12.1948H102.279ZM98.6248 16.2083C98.6248 18.339 96.7665 19.9133 94.5049 19.9133C93.1106 19.9133 91.9336 19.3266 91.9336 18.0924C91.9336 16.5181 93.8235 16.0856 95.558 15.901C97.2304 15.7467 98.1596 15.3762 98.6248 14.6656V16.2083ZM78.895 6.42116C76.8193 6.42116 75.0848 7.28604 73.8459 8.73647V0H70.1293V22.6914H73.784V20.5924C75.0229 22.1047 76.7889 23 78.895 23C83.355 23 86.7315 19.4809 86.7315 14.7264C86.7315 9.97185 83.293 6.42116 78.895 6.42116ZM78.3375 19.5732C75.6739 19.5732 73.722 17.5045 73.722 14.7264C73.722 11.9482 75.7043 9.84913 78.3679 9.84913C81.063 9.84913 82.9517 11.9178 82.9517 14.7264C82.9517 17.5045 81.0011 19.5732 78.3375 19.5732ZM61.2397 6.42116C58.8239 6.42116 57.2437 7.40876 56.3145 8.79841V6.72971H52.6283V22.6903H56.3449V14.0158C56.3449 11.5766 57.8935 9.84796 60.1855 9.84796C62.3231 9.84796 63.6544 11.3603 63.6544 13.5529V22.6914H67.371V13.2759C67.3722 9.26124 65.2976 6.42116 61.2397 6.42116ZM136.907 14.2016C136.907 9.63291 133.562 6.42233 129.071 6.42233C124.301 6.42233 120.801 10.0034 120.801 14.7264C120.801 19.6971 124.549 23 129.133 23C133.005 23 136.04 20.7151 136.814 17.4741H132.942C132.384 18.8942 131.022 19.6971 129.194 19.6971C126.808 19.6971 125.012 18.2151 124.61 15.6216H136.906V14.2016H136.907ZM124.827 12.9662C125.416 10.7432 127.089 9.6633 129.009 9.6633C131.115 9.6633 132.726 10.8671 133.097 12.9662H124.827Z\" fill=\"#43434C\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_166_64964\">\\n<rect width=\"128.755\" height=\"23\" fill=\"white\" transform=\"translate(8.15234)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ovjk94\",\"data-framer-name\":\".Logos/Gated\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-bdr2fq\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:7,intrinsicWidth:46,svg:'<svg width=\"46\" height=\"7\" viewBox=\"0 0 46 7\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 0.4869H0.689951L2.18881 4.72086L3.68767 0.4869H4.37762L2.53378 5.70248H1.84383L0 0.4869ZM6.67349 0.4869H10.1232V1.17285H7.36344V2.75763H9.89722V3.44358H7.36344V5.01653H10.1232V5.70248H6.67349V0.4869ZM13.1091 0.4869H12.4191V5.70248H13.1091V2.53292H13.799V3.20704H14.489V3.89299H15.1789V4.57894H15.8689V5.71431H16.5588V0.498724H15.8689V3.90482H15.1789V3.21887H14.489V2.53292H13.799V1.8588H13.1091C13.1091 1.84697 13.1091 0.4869 13.1091 0.4869ZM32.2017 4.10587H32.8916V4.78H32.2017V4.10587ZM33.5816 5.47777H32.8916V4.80365H33.5816V5.47777ZM33.5816 5.47777H34.2715V6.16372H33.5816V5.47777Z\" fill=\"#161618\" style=\"fill:#161618;fill:color(display-p3 0.0855 0.0858 0.0945);fill-opacity:1;\"/>\\n<path d=\"M32.2017 3.43175V4.1177H31.5117V3.43175H30.8218V5.70248H30.1318V0.4869H33.1176V1.17285H30.8218V2.75763H33.1176V3.44358H32.2017V3.43175Z\" fill=\"#161618\" style=\"fill:#161618;fill:color(display-p3 0.0855 0.0858 0.0945);fill-opacity:1;\"/>\\n<path d=\"M33.1176 2.74583V1.16105H33.8076V2.74583H33.1176ZM25.0761 0.486925H24.3862V5.01656H25.0761V5.7025H27.372V5.01656H28.062V0.475098H27.372V5.01656H25.0761V0.486925ZM46.0007 3.43178H45.3107V2.74583H43.0149V1.16105H45.7747V0.475098H43.0149V1.16105H42.3249V2.74583H43.0149V3.43178H45.3107V5.01656H42.5509V5.7025H45.3107V5.01656H46.0007V3.43178ZM22.3163 1.16105H20.7104V5.7025H20.0205V1.16105H18.1766V0.475098H22.3163V1.16105ZM36.5674 5.7025H40.0171V5.01656H37.2573V3.43178H39.7911V2.74583H37.2573V1.16105H40.0171V0.475098H36.5674V5.7025Z\" fill=\"#161618\" style=\"fill:#161618;fill:color(display-p3 0.0855 0.0858 0.0945);fill-opacity:1;\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-2ufhmg\",\"data-framer-name\":\"Exclude\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:52,svg:'<svg width=\"52\" height=\"18\" viewBox=\"0 0 52 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M24.8382 0.836426H23.4583V2.1965H24.8382V0.836426ZM28.9779 1.97179H30.3578V3.33186H28.9779V1.97179ZM1.3799 5.37788H2.7598L2.7598 4.6947H1.3799V5.37788ZM2.7598 6.05477H1.3799V5.37788H0V8.77492H1.3799V10.135H0V17.6304H2.7598L2.7598 11.4951H1.3799V10.135H2.7598V8.77492H1.3799V7.41485H2.7598V6.05477ZM7.81547 17.6304V5.37788H7.81547V6.05477H9.19537V7.41485H10.5753V6.05477H9.19537V5.37788H13.3351V6.05477H14.715V5.37788H16.0949V6.05477H17.4748L17.4748 10.135H16.0949V11.4951H17.4748V12.8551H16.0949V14.2152H17.4748L17.4748 17.6304H7.81547ZM17.4748 6.05477V4.6947H16.0949V5.37788H17.4748L17.4748 6.05477ZM14.715 5.37788V4.6947H13.3351V5.37788H14.715ZM9.19537 5.37788H7.81547V4.6947H9.19537V5.37788ZM14.715 8.09803V14.8984H10.5753V8.09803H14.715ZM29.6679 5.37788H31.0478L31.0478 6.05477L29.6679 6.05477V5.37788ZM25.5282 5.37788H29.6679V4.6947H31.0478V6.05477L31.0478 8.09803H24.1483V9.90751H25.5282V10.5962H26.9081V11.9563H28.288V10.5962H29.6679V11.9563H31.0478L31.0478 17.6185H21.3885V14.8984H28.288V12.6395H21.3885L21.3885 6.05477H22.7684V5.37788H24.1483V6.05477H25.5282V7.41485H26.9081V6.05477H25.5282V5.37788ZM25.5282 5.37788H24.1483V4.6947H25.5282V5.37788ZM21.3885 5.37788H22.7684V4.6947H21.3885L21.3885 5.37788ZM31.0478 10.5962H29.6679V9.90751H31.0478L31.0478 10.5962ZM28.288 9.90751V9.23616H29.6679V9.90751H28.288ZM28.288 9.90751V10.5962H26.9081V9.90751H28.288ZM26.9081 9.90751H25.5282V9.23616H26.9081V9.90751ZM29.6679 6.05477V7.41485H28.288V6.05477H29.6679ZM38.6372 5.37788H35.8774V17.6185H45.5367L45.5367 10.5962H44.1568V9.90751H45.5367L45.5367 9.23616H44.1568V9.90751H40.4811V12.6277H42.7769V14.8984H38.6372V8.09803H45.5367L45.5367 6.05477H44.1568V5.37788H45.5367L45.5367 4.6947H44.1568V5.37788H42.7769V4.6947H41.397V5.37788H40.0171V4.6947H38.6372V5.37788ZM38.6372 6.05477V5.37788H40.0171V6.05477H38.6372ZM38.6372 6.05477V7.41485H37.2573V6.05477H38.6372ZM42.7769 6.05477V7.41485H44.1568V6.05477H42.7769ZM42.7769 6.05477H41.397V5.37788H42.7769V6.05477ZM44.1568 10.5962V11.9563H42.7769V10.5962H44.1568ZM47.3806 9.23339H48.7605V10.5935H47.3806V9.23339ZM21.3885 2.43303H20.0086V3.7931H21.3885V2.43303ZM3.91368 1.07296H5.29358V2.43303H3.91368V1.07296ZM51.7463 13.3136H50.3664V14.6737H51.7463V13.3136ZM46.9166 15.809H48.2965V17.1691H46.9166V15.809Z\" fill=\"#161618\" style=\"fill:#161618;fill:color(display-p3 0.0855 0.0858 0.0945);fill-opacity:1;\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-mgji2b\",\"data-framer-name\":\"Frame 41155\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:104,svg:'<svg width=\"104\" height=\"25\" viewBox=\"0 0 104 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M28.3007 22.1523V26.0008H9.11078C9.11681 24.757 9.10319 23.5124 9.10974 22.2683C9.11 22.2188 9.13696 22.1699 9.13696 22.1523H28.3007Z\" fill=\"#43434C\"/>\\n<path d=\"M28.3007 2.98895H9.13698C9.1129 9.37607 9.16945 15.7655 9.13698 22.1526C4.78222 17.923 3.91252 11.0707 6.94311 5.80853C11.3984 -1.92737 21.968 -3.35104 28.3007 2.98895Z\" fill=\"#43434C\"/>\\n<path d=\"M28.3003 22.1525V2.98877C29.2004 3.88988 29.9305 4.81272 30.5562 5.92956C33.5043 11.1899 32.6132 17.9451 28.3003 22.1525Z\" fill=\"#43434C\"/>\\n<path d=\"M48.1185 8.7485C48.1614 8.75557 48.1428 8.71316 48.1444 8.68357C48.152 8.53409 48.1499 8.3613 48.1455 8.21077C48.1371 7.92907 48.0661 7.51019 48.091 7.24185C48.1049 7.09341 48.136 7.05937 48.2874 7.0455C48.6698 7.01068 49.5644 7.00309 49.9385 7.04602C50.0123 7.05466 50.0919 7.08293 50.1076 7.16488C50.1037 7.88928 50.1144 8.61394 50.1092 9.33833C50.0904 12.0398 50.1 14.7497 50.0807 17.4544C50.0642 19.7422 49.4209 21.7021 47.0388 22.4474C44.5151 23.237 40.4648 22.5901 40.137 19.3872C40.1169 19.1901 40.0763 19.0322 40.3287 19.0097C40.73 18.9741 41.5272 18.9736 41.9283 19.0097C42.2026 19.0343 42.1489 19.3155 42.2152 19.5344C42.7671 21.3588 45.3573 21.7086 46.8077 20.8282C48.3167 19.9121 48.2277 17.9392 48.197 16.3928L47.687 17.0737C45.9788 18.9655 42.6155 18.6751 41.0507 16.7454C39.1545 14.4068 39.4074 9.61165 41.89 7.74241C43.775 6.32319 46.8956 6.60201 48.119 8.74798L48.1185 8.7485ZM44.6049 8.33774C42.6987 8.51524 41.9424 10.4361 41.8602 12.1118C41.7379 14.6084 42.4668 17.1119 45.4607 16.8905C47.3739 16.7488 48.1174 14.9212 48.1978 13.2397C48.3151 10.7934 47.6145 8.05761 44.6049 8.33774Z\" fill=\"#43434C\"/>\\n<path d=\"M75.5294 8.74878C75.5747 8.75585 75.5509 8.71789 75.548 8.69118C75.4954 8.19874 75.5234 7.6466 75.5145 7.1505C75.5478 7.06122 75.613 7.05389 75.698 7.04604C76.2303 6.99761 76.835 7.08505 77.3751 7.04682C77.4565 7.04944 77.5204 7.0895 77.5393 7.17065C77.5301 8.26864 77.5291 9.36663 77.5199 10.4649C77.5016 12.6116 77.4961 14.7568 77.5178 16.9051C77.522 17.3319 77.5856 17.785 77.5463 18.2141C77.5325 18.3644 77.4992 18.3969 77.35 18.4105C76.8175 18.4594 76.2125 18.3704 75.6719 18.4105L75.5428 18.3301L75.5551 16.6292L75.0451 17.3101C73.4162 19.1241 70.3011 19.0482 68.6826 17.2578C66.3864 14.7175 66.7157 8.76318 70.0921 7.22589C71.9567 6.37688 74.5074 6.86644 75.5294 8.74878ZM72.0158 8.33802C69.1544 8.59118 68.9439 12.6637 69.5534 14.7641C70.0165 16.3603 71.138 17.3321 72.8688 17.1232C74.8451 16.8844 75.5239 15.0228 75.6077 13.2648C75.7247 10.8073 75.0307 8.07124 72.0161 8.33802H72.0158Z\" fill=\"#43434C\"/>\\n<path d=\"M59.8475 8.69568C59.897 8.21738 59.7745 7.68331 59.82 7.21495C59.8316 7.09609 59.8698 7.0597 59.9913 7.04583C60.5177 6.98535 61.1552 7.09243 61.694 7.04583C61.7754 7.04844 61.8393 7.0885 61.8582 7.16966C61.8414 8.1802 61.8487 9.19127 61.8388 10.2021C61.8155 12.5232 61.81 14.8404 61.8367 17.1659C61.8406 17.512 61.9055 17.8901 61.8644 18.2388C61.8485 18.3747 61.7958 18.398 61.6689 18.4097C61.1364 18.4587 60.5314 18.3697 59.9907 18.4097L59.8617 18.3294L59.874 16.6285L59.3378 17.3356C56.9112 19.6978 53.1908 18.748 52.0129 15.6014C50.667 12.0059 52.0255 6.55521 56.6942 6.83612C58.0011 6.91466 59.1451 7.60712 59.8475 8.69594V8.69568ZM56.3345 8.33702C54.6762 8.48363 53.8811 9.97195 53.6738 11.4621C53.3342 13.9002 53.9516 17.5131 57.1874 17.1225C59.1962 16.8798 59.8509 14.9595 59.9276 13.1868C60.0334 10.7471 59.3048 8.07443 56.3347 8.33728L56.3345 8.33702Z\" fill=\"#43434C\"/>\\n<path d=\"M91.2818 7.10608L94.5745 15.7648L97.3399 7.14168C97.3927 7.05215 97.4933 7.05267 97.5841 7.0456C97.9925 7.01393 98.8656 7.00031 99.2612 7.04613C99.3225 7.0532 99.3952 7.06655 99.406 7.13907L94.2061 22.0459L94.0716 22.147C93.5498 22.1229 92.9673 22.1978 92.4528 22.1535C92.335 22.1433 92.2719 22.1318 92.2942 21.9951L93.5267 18.4066L89.0654 7.18828L89.0675 7.0765C89.111 7.05398 89.1584 7.04901 89.2065 7.0456C89.8241 7.00057 90.4959 7.08226 91.1195 7.04613L91.2818 7.10634V7.10608Z\" fill=\"#43434C\"/>\\n<path d=\"M83.749 11.3138C84.4425 10.1441 85.1167 8.96023 85.823 7.79811C85.9209 7.63684 86.1924 7.11088 86.3456 7.06402C86.3848 7.05198 86.4181 7.04936 86.4581 7.0457C86.9896 6.99595 87.5959 7.08575 88.136 7.0457L88.2407 7.09963L84.9816 12.4532L88.6049 18.2531C88.6394 18.334 88.6279 18.4162 88.5287 18.4104C87.9048 18.3641 87.2035 18.4677 86.589 18.4104C86.517 18.4036 86.4482 18.3965 86.3924 18.3452L83.5008 13.6713L80.632 18.3418L80.5299 18.3968H78.5916L78.5513 18.3326L82.2529 12.3961L78.8649 7.09963L78.9701 7.0457C79.5924 7.0936 80.298 6.98653 80.9101 7.0457C80.9923 7.05355 81.0533 7.07187 81.1185 7.12528L83.6849 11.2871L83.7488 11.3143L83.749 11.3138Z\" fill=\"#43434C\"/>\\n<path d=\"M65.7574 3.02101C65.788 3.05374 65.7878 3.11395 65.7914 3.15715C65.8304 3.6132 65.7673 4.09151 65.7632 4.54469C65.7247 8.62378 65.7244 12.694 65.7632 16.7731C65.7673 17.2053 65.854 17.8483 65.7888 18.2624C65.7739 18.3572 65.7158 18.4046 65.6207 18.4085L63.8931 18.4075C63.8164 18.3931 63.7641 18.3158 63.773 18.2397C63.8313 13.1835 63.8282 8.13631 63.7751 3.08044C63.7908 2.9985 63.8701 2.96996 63.9442 2.96159C64.2955 2.92101 65.2417 2.92232 65.5948 2.96159C65.6354 2.96604 65.7325 2.99457 65.7577 3.02128L65.7574 3.02101Z\" fill=\"#43434C\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ml9e2t\",\"data-framer-name\":\"M0 white\",fill:\"rgb(56, 56, 63)\",intrinsicHeight:162,intrinsicWidth:250,svg:'<svg width=\"250\" height=\"162\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><mask id=\"a\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"250\" height=\"162\"><path d=\"M249.916 0H.166v162h249.75V0Z\" fill=\"#fff\"/></mask><g mask=\"url(#a)\" fill=\"#fff\"><path d=\"M93.764 161.908H112.8V34.535L93.764 68.037v93.871ZM88.565.146 46.962 73.36v24.691h19.037V78.208l27.762-48.856v.131L110.431.146H88.565Zm72.248 35.748 24.048 42.321v19.84h19.037V73.168l-29.1-51.212c.023-.01.047-.02.07-.032L165.439 5.33a48.99 48.99 0 0 0-15.15 12.07l10.517 18.509.007-.015Z\"/><path d=\"M201.245 0h-13.733a48.47 48.47 0 0 0-3.132.112l10.774 18.961h6.091c16.341 0 29.635 13.32 29.635 29.693v64.469c0 16.372-13.294 29.691-29.635 29.691h-13.733c-16.341 0-29.634-13.319-29.634-29.691v-43.93l-17.816-31.353a48.793 48.793 0 0 0-1.221 10.814v64.469c0 26.889 21.834 48.765 48.671 48.765h13.733c26.837 0 48.671-21.876 48.671-48.765v-64.47C249.916 21.877 228.082 0 201.245 0ZM24.51.146H.168v161.758h19.036V29.354l15.43 27.156 10.953-19.275L24.511.145Z\"/></g></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1mohdli\",\"data-framer-name\":\"Frame 41157\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:106,svg:'<svg width=\"106\" height=\"25\" viewBox=\"0 0 106 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M38.5694 0.999023H15.0819C14.937 0.999023 14.7981 1.05287 14.6956 1.14872C14.5932 1.24457 14.5356 1.37458 14.5356 1.51013V23.4876C14.5356 23.6232 14.5932 23.7533 14.6956 23.8492C14.7981 23.9449 14.937 23.9987 15.0819 23.9987H38.5694C38.7145 23.9987 38.8532 23.9449 38.9558 23.8492C39.0582 23.7533 39.1158 23.6232 39.1158 23.4876V1.51013C39.1158 1.37458 39.0582 1.24457 38.9558 1.14872C38.8532 1.05287 38.7145 0.999023 38.5694 0.999023ZM30.9224 15.8211C30.9224 15.9567 30.8648 16.0866 30.7624 16.1825C30.66 16.2783 30.521 16.3322 30.3762 16.3322H23.2752C23.1304 16.3322 22.9914 16.2783 22.889 16.1825C22.7866 16.0866 22.729 15.9567 22.729 15.8211V9.17671C22.729 9.04116 22.7866 8.91116 22.889 8.81531C22.9914 8.71945 23.1304 8.66561 23.2752 8.66561H30.3762C30.521 8.66561 30.66 8.71945 30.7624 8.81531C30.8648 8.91116 30.9224 9.04116 30.9224 9.17671V15.8211Z\" fill=\"#43434C\"/>\\n<path d=\"M87.74 8.6665H80.639C80.3375 8.6665 80.0928 8.89532 80.0928 9.17761V15.822C80.0928 16.1042 80.3375 16.3331 80.639 16.3331H87.74C88.0417 16.3331 88.2862 16.1042 88.2862 15.822V9.17761C88.2862 8.89532 88.0417 8.6665 87.74 8.6665Z\" fill=\"#43434C\"/>\\n<path d=\"M79.5484 0.999023H72.4476C72.1459 0.999023 71.9014 1.22785 71.9014 1.51013V8.15451C71.9014 8.43678 72.1459 8.66562 72.4476 8.66562H79.5484C79.8501 8.66562 80.0948 8.43678 80.0948 8.15451V1.51013C80.0948 1.22785 79.8501 0.999023 79.5484 0.999023Z\" fill=\"#43434C\"/>\\n<path d=\"M95.9375 0.999023H88.8365C88.535 0.999023 88.2903 1.22785 88.2903 1.51013V8.15451C88.2903 8.43678 88.535 8.66562 88.8365 8.66562H95.9375C96.2392 8.66562 96.4837 8.43678 96.4837 8.15451V1.51013C96.4837 1.22785 96.2392 0.999023 95.9375 0.999023Z\" fill=\"#43434C\"/>\\n<path d=\"M79.5484 16.332H72.4476C72.1459 16.332 71.9014 16.5609 71.9014 16.8431V23.4876C71.9014 23.7698 72.1459 23.9987 72.4476 23.9987H79.5484C79.8501 23.9987 80.0948 23.7698 80.0948 23.4876V16.8431C80.0948 16.5609 79.8501 16.332 79.5484 16.332Z\" fill=\"#43434C\"/>\\n<path d=\"M95.9375 16.332H88.8365C88.535 16.332 88.2903 16.5609 88.2903 16.8431V23.4876C88.2903 23.7698 88.535 23.9987 88.8365 23.9987H95.9375C96.2392 23.9987 96.4837 23.7698 96.4837 23.4876V16.8431C96.4837 16.5609 96.2392 16.332 95.9375 16.332Z\" fill=\"#43434C\"/>\\n<path d=\"M67.2478 0.999023H60.147C59.8453 0.999023 59.6006 1.22785 59.6006 1.51013V8.15451C59.6006 8.43678 59.8453 8.66562 60.147 8.66562H67.2478C67.5495 8.66562 67.794 8.43678 67.794 8.15451V1.51013C67.794 1.22785 67.5495 0.999023 67.2478 0.999023Z\" fill=\"#43434C\"/>\\n<path d=\"M67.2478 16.332H60.147C59.8453 16.332 59.6006 16.5609 59.6006 16.8431V23.4876C59.6006 23.7698 59.8453 23.9987 60.147 23.9987H67.2478C67.5495 23.9987 67.794 23.7698 67.794 23.4876V16.8431C67.794 16.5609 67.5495 16.332 67.2478 16.332Z\" fill=\"#43434C\"/>\\n<path d=\"M59.5988 9.17097C59.5988 9.03542 59.5411 8.90541 59.4388 8.80957C59.3364 8.71371 59.1974 8.65986 59.0526 8.65986H51.4053V1.51013C51.4053 1.37458 51.3477 1.24457 51.2453 1.14872C51.143 1.05287 51.004 0.999023 50.8591 0.999023H43.7583C43.6133 0.999023 43.4745 1.05287 43.3719 1.14872C43.2696 1.24457 43.2119 1.37458 43.2119 1.51013V23.4762C43.2119 23.6117 43.2696 23.7417 43.3719 23.8376C43.4745 23.9335 43.6133 23.9873 43.7583 23.9873H50.8591C51.004 23.9873 51.143 23.9335 51.2453 23.8376C51.3477 23.7417 51.4053 23.6117 51.4053 23.4762V16.3264H59.0526C59.1974 16.3264 59.3364 16.2726 59.4388 16.1768C59.5411 16.0809 59.5988 15.9509 59.5988 15.8153V9.17097Z\" fill=\"#43434C\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-mmz7xd\",\"data-framer-name\":\"Frame 41158\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:137,svg:'<svg width=\"137\" height=\"25\" viewBox=\"0 0 137 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M15.6746 22.1453C15.6746 22.9794 16.3609 23.6556 17.2075 23.6556H23.3394C24.186 23.6556 24.8724 22.9794 24.8724 22.1453V2.51038C24.8724 1.67622 24.186 1 23.3394 1H17.2075C16.3609 1 15.6746 1.67622 15.6746 2.51038V22.1453Z\" fill=\"#43434C\"/>\\n<path d=\"M43.2683 1.27148V23.7277H58.3067V20.0031H47.5729V14.3483H57.5341V10.6509H47.5729V4.99607H58.3067V1.27148H43.2683Z\" fill=\"#43434C\"/>\\n<path d=\"M70.5918 1C64.0798 1 60.6306 5.21395 60.6306 10.896V14.1584C60.6306 19.8132 64.0798 24 70.6192 24C76.5518 24 79.8633 20.4385 80.1667 15.7081L80.222 14.4302H75.7516L75.7242 16.2246C75.5588 18.3995 73.848 20.3026 70.6192 20.3026C66.7288 20.3026 65.0454 17.7199 65.0454 14.6478V10.3522C65.0454 7.22576 66.7288 4.6974 70.6192 4.6974C73.9028 4.6974 75.5588 6.62766 75.7242 8.80258L75.7516 10.5969H80.222L80.1667 9.31915C79.8633 4.58865 76.5796 1 70.5918 1Z\" fill=\"#43434C\"/>\\n<path d=\"M96.613 1.27148V10.6509H87.5622V1.27148H83.2578V23.7277H87.5622V14.3483H96.613V23.7277H100.945V1.27148H96.613Z\" fill=\"#43434C\"/>\\n<path d=\"M114.001 1C107.654 1 104.15 5.21395 104.15 10.896V14.1584C104.15 19.8132 107.682 24 114.001 24C120.32 24 123.824 19.8132 123.824 14.1584V10.896C123.824 5.21395 120.32 1 114.001 1ZM108.538 10.3522C108.538 7.30733 110.138 4.6974 114.001 4.6974C117.836 4.6974 119.437 7.30733 119.437 10.3522V14.6749C119.437 17.6655 117.836 20.3026 114.001 20.3026C110.138 20.3026 108.538 17.6655 108.538 14.6749V10.3522Z\" fill=\"#43434C\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1tuibuz\",\"data-framer-name\":\"Wintermute\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:27,intrinsicWidth:181,svg:'<svg width=\"181\" height=\"27\" viewBox=\"0 0 181 27\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M8.28634 17.6018C8.2813 17.624 8.27827 17.6451 8.27525 17.6683C8.27122 17.6945 8.26819 17.7187 8.26718 17.7439C8.26718 17.751 8.26416 17.757 8.26416 17.7651C8.26416 17.7802 8.26819 17.7933 8.26819 17.8074C8.2692 17.8326 8.27122 17.8578 8.27626 17.8831C8.28029 17.9062 8.28533 17.9274 8.29138 17.9496C8.29642 17.9718 8.30348 17.9929 8.31154 18.0141C8.31961 18.0363 8.32868 18.0575 8.33977 18.0776C8.34885 18.0978 8.35994 18.1169 8.37204 18.1371C8.38413 18.1563 8.39825 18.1754 8.41135 18.1926C8.42446 18.2117 8.43958 18.2289 8.45571 18.247C8.47084 18.2631 8.48798 18.2793 8.50411 18.2944C8.52125 18.3095 8.53838 18.3246 8.55653 18.3377C8.5767 18.3529 8.59888 18.365 8.62005 18.3781C8.63214 18.3851 8.64323 18.3942 8.65634 18.4013L25.7107 26.9284C25.7177 26.9314 25.7238 26.9325 25.7298 26.9355C25.7389 26.9395 25.747 26.9445 25.757 26.9486C25.7651 26.9526 25.7742 26.9536 25.7843 26.9577C25.7974 26.9627 25.8125 26.9667 25.8266 26.9708C25.8397 26.9748 25.8538 26.9788 25.8669 26.9819C25.875 26.9829 25.8821 26.9869 25.8901 26.9889C25.8982 26.9899 25.9063 26.9899 25.9143 26.9919C25.9294 26.995 25.9446 26.996 25.9607 26.997C25.9768 26.998 25.993 27 26.0081 27H26.0504C26.0666 27 26.0817 26.999 26.0978 26.997C26.1129 26.996 26.1281 26.9929 26.1442 26.9919C26.1523 26.9909 26.1603 26.9909 26.1684 26.9889C26.1764 26.9879 26.1835 26.9849 26.1916 26.9819C26.2047 26.9788 26.2188 26.9748 26.2319 26.9708C26.245 26.9667 26.2601 26.9617 26.2742 26.9577C26.2833 26.9546 26.2914 26.9526 26.3015 26.9486C26.3105 26.9445 26.3186 26.9395 26.3287 26.9355C26.3357 26.9325 26.3418 26.9314 26.3478 26.9284L43.4022 18.4013C43.4153 18.3942 43.4254 18.3851 43.4385 18.3781C43.4596 18.366 43.4818 18.3519 43.502 18.3377C43.5211 18.3246 43.5373 18.3095 43.5544 18.2944C43.5715 18.2793 43.5887 18.2631 43.6028 18.247C43.6189 18.2299 43.633 18.2117 43.6472 18.1926C43.6603 18.1754 43.6744 18.1563 43.6865 18.1371C43.6986 18.118 43.7076 18.0978 43.7187 18.0776C43.7298 18.0575 43.7389 18.0353 43.747 18.0141C43.755 17.9929 43.7621 17.9708 43.7671 17.9496C43.7722 17.9284 43.7782 17.9062 43.7822 17.8831C43.7863 17.8578 43.7873 17.8326 43.7903 17.8074C43.7913 17.7943 43.7943 17.7802 43.7943 17.7651C43.7943 17.758 43.7933 17.752 43.7913 17.7439C43.7903 17.7177 43.7873 17.6935 43.7833 17.6683C43.7802 17.6461 43.7782 17.624 43.7722 17.6018C43.7671 17.5816 43.7601 17.5594 43.753 17.5393C43.7449 17.5151 43.7369 17.4889 43.7248 17.4657C43.7218 17.4586 43.7208 17.4526 43.7177 17.4465L35.1936 0.393189C35.1896 0.385124 35.1825 0.380083 35.1785 0.373026C35.1543 0.328666 35.126 0.286322 35.0918 0.248012C35.0837 0.238938 35.0766 0.228856 35.0686 0.220791C35.0293 0.180464 34.9849 0.143161 34.9355 0.111908C34.9234 0.103842 34.9113 0.0988014 34.8992 0.0917442C34.8599 0.0695642 34.8175 0.0524252 34.7742 0.0373026C34.7591 0.0322617 34.7439 0.028229 34.7298 0.0241963C34.6754 0.01109 34.6199 0.00100818 34.5635 0.00100818C34.5604 0.00100818 34.5594 0 34.5584 0C34.5514 0 34.5433 0.00302453 34.5373 0.00302453C34.4929 0.00403271 34.4496 0.00806542 34.4072 0.0181472C34.3941 0.0211717 34.38 0.0272208 34.3669 0.0302453C34.3306 0.0413353 34.2953 0.0534334 34.261 0.0685561C34.256 0.0715806 34.2489 0.0725888 34.2439 0.0756133C34.2308 0.0826706 34.2207 0.0917442 34.2076 0.0988014C34.1854 0.1109 34.1642 0.125014 34.1441 0.139128C34.1249 0.152235 34.1088 0.167357 34.0916 0.18248C34.0745 0.197603 34.0574 0.213734 34.0433 0.229864C34.0271 0.247003 34.013 0.265151 33.9989 0.284306C33.9858 0.301445 33.9717 0.3206 33.9596 0.339756C33.9475 0.358911 33.9374 0.379075 33.9273 0.399238C33.9162 0.419402 33.9072 0.441582 33.8991 0.462753C33.891 0.484933 33.886 0.506105 33.8789 0.528285C33.8739 0.550465 33.8678 0.571637 33.8638 0.594825C33.8598 0.621037 33.8588 0.645234 33.8557 0.670438C33.8547 0.683544 33.8517 0.697659 33.8517 0.712781V16.0522L26.5384 8.73888C26.5041 8.7046 26.4678 8.67537 26.4285 8.64915C26.4124 8.63806 26.3932 8.63 26.3761 8.62093C26.3529 8.60883 26.3317 8.59471 26.3065 8.58463C26.2833 8.57556 26.2591 8.56951 26.2359 8.56245C26.2158 8.55741 26.1956 8.54935 26.1754 8.54531C26.1291 8.53624 26.0837 8.53221 26.0363 8.53221C25.9889 8.53221 25.9426 8.53725 25.8972 8.54531C25.876 8.54935 25.8569 8.55741 25.8347 8.56245C25.8105 8.56951 25.7873 8.57455 25.7641 8.58463C25.7399 8.5937 25.7177 8.60883 25.6945 8.62093C25.6774 8.63 25.6593 8.63806 25.6421 8.64915C25.6028 8.67537 25.5665 8.7046 25.5322 8.73888L18.2189 16.0522V0.711773C18.2189 0.696651 18.2149 0.683544 18.2149 0.66943C18.2139 0.643217 18.2118 0.619021 18.2068 0.593817C18.2028 0.570628 18.1977 0.549457 18.1917 0.527277C18.1856 0.505097 18.1796 0.483925 18.1715 0.461745C18.1635 0.439565 18.1544 0.418394 18.1433 0.39823C18.1342 0.378067 18.1231 0.358911 18.111 0.338748C18.0989 0.319592 18.0858 0.300437 18.0717 0.283298C18.0586 0.264142 18.0435 0.247003 18.0273 0.228856C18.0122 0.212725 17.9951 0.196595 17.979 0.181472C17.9618 0.166349 17.9447 0.151227 17.9265 0.13812C17.9064 0.122998 17.8842 0.1109 17.863 0.0977932C17.8509 0.090736 17.8398 0.0816624 17.8267 0.0746051C17.8217 0.0715806 17.8146 0.0705724 17.8096 0.0675479C17.7753 0.0514171 17.74 0.0403271 17.7047 0.0292371C17.6896 0.0252044 17.6765 0.0181472 17.6614 0.0161308C17.619 0.00705724 17.5777 0.00302453 17.5323 0.00100818C17.5253 0.00201635 17.5172 0 17.5112 0C17.5081 0 17.5071 0.00100818 17.5061 0.00100818C17.4476 0.00100818 17.3922 0.0100818 17.3398 0.0241963C17.3247 0.028229 17.3095 0.0332699 17.2954 0.0373026C17.2521 0.0504089 17.2097 0.0695642 17.1704 0.0917442C17.1583 0.0988014 17.1462 0.103842 17.1341 0.111908C17.0857 0.143161 17.0403 0.178447 17.001 0.220791C16.993 0.228856 16.9859 0.239946 16.9778 0.248012C16.9436 0.286322 16.9153 0.327658 16.8911 0.373026C16.8871 0.381091 16.88 0.386132 16.876 0.393189L8.33977 17.4475C8.33675 17.4546 8.33574 17.4596 8.33272 17.4667C8.32163 17.4899 8.31356 17.5151 8.30449 17.5403C8.29743 17.5604 8.29138 17.5806 8.28533 17.6028L8.28634 17.6018ZM17.2097 18.4759L22.4321 23.6982L11.9874 18.4759H17.2097ZM34.8528 18.4759H40.0752L29.6305 23.6982L34.8528 18.4759ZM35.2692 17.0543V3.72118L41.9363 17.0553H35.2692V17.0543ZM26.742 24.5763V10.9528L33.5543 17.7651L26.742 24.5774V24.5763ZM25.3215 24.5763L18.5093 17.7641L25.3215 10.9518V24.5753V24.5763ZM10.1263 17.0543L16.7933 3.72118V17.0553H10.1263V17.0543Z\" fill=\"#43434C\"/>\\n<path d=\"M49.0861 7.80622C49.0156 7.56224 49.1557 7.38581 49.4007 7.38581H51.0077C51.1468 7.38581 51.287 7.5078 51.3223 7.62979L53.139 14.6034H53.2086L55.9861 7.40396C56.0214 7.30011 56.1081 7.2124 56.2825 7.2124H56.5971C56.7715 7.2124 56.8582 7.29911 56.8935 7.40396L59.6932 14.6034H59.7637L61.5452 7.62979C61.5805 7.5078 61.7196 7.38581 61.8597 7.38581H63.4668C63.7107 7.38581 63.8519 7.56022 63.7813 7.80622L60.4785 19.5495C60.4432 19.6886 60.3041 19.7934 60.164 19.7934H59.8847C59.7274 19.7934 59.6236 19.7057 59.5883 19.6009L56.4609 11.6857H56.3742L53.2801 19.6009C53.2277 19.7057 53.1582 19.7934 52.9837 19.7934H52.7045C52.5653 19.7934 52.4252 19.6876 52.3899 19.5495L49.0851 7.80622H49.0861Z\" fill=\"#43434C\"/>\\n<path d=\"M67.2424 7.72036C67.2424 7.54595 67.3997 7.38867 67.5741 7.38867H69.1993C69.3737 7.38867 69.531 7.54595 69.531 7.72036V19.2882C69.531 19.4626 69.3737 19.6199 69.1993 19.6199H67.5741C67.3997 19.6199 67.2424 19.4626 67.2424 19.2882V7.72036Z\" fill=\"#43434C\"/>\\n<path d=\"M74.1902 7.52695C74.1902 7.35254 74.3475 7.2124 74.5219 7.2124H74.9584L82.2274 14.935H82.2445V7.71952C82.2445 7.5451 82.3837 7.38782 82.5762 7.38782H84.1833C84.3577 7.38782 84.515 7.5451 84.515 7.71952V19.4789C84.515 19.6533 84.3577 19.7934 84.1833 19.7934H83.7629L76.4596 11.7724H76.4425V19.2863C76.4425 19.4607 76.3034 19.618 76.1108 19.618H74.5209C74.3465 19.618 74.1892 19.4607 74.1892 19.2863V7.52695H74.1902Z\" fill=\"#43434C\"/>\\n<path d=\"M90.7937 9.48467H88.12C87.9275 9.48467 87.7883 9.3274 87.7883 9.15298V7.72036C87.7883 7.54595 87.9275 7.38867 88.12 7.38867H95.756C95.9485 7.38867 96.0876 7.54595 96.0876 7.72036V9.15298C96.0876 9.3274 95.9485 9.48467 95.756 9.48467H93.0823V19.2872C93.0823 19.4616 92.925 19.6189 92.7506 19.6189H91.1254C90.951 19.6189 90.7937 19.4616 90.7937 19.2872V9.48467Z\" fill=\"#43434C\"/>\\n<path d=\"M99.3496 7.72036C99.3496 7.54595 99.4887 7.38867 99.6813 7.38867H106.793C106.986 7.38867 107.125 7.54595 107.125 7.72036V9.15298C107.125 9.3274 106.986 9.48467 106.793 9.48467H101.621V12.3509H105.937C106.111 12.3509 106.269 12.5082 106.269 12.6826V14.1324C106.269 14.3249 106.111 14.4641 105.937 14.4641H101.621V17.5229H106.793C106.986 17.5229 107.125 17.6801 107.125 17.8546V19.2882C107.125 19.4626 106.986 19.6199 106.793 19.6199H99.6813C99.4887 19.6199 99.3496 19.4626 99.3496 19.2882V7.72036Z\" fill=\"#43434C\"/>\\n<path d=\"M111.211 7.72036C111.211 7.54595 111.351 7.38867 111.543 7.38867H116.541C118.637 7.38867 120.35 9.06628 120.35 11.1462C120.35 12.7532 119.283 14.0638 117.765 14.6758L120.159 19.1138C120.281 19.3416 120.159 19.6209 119.863 19.6209H118.028C117.87 19.6209 117.784 19.5342 117.748 19.4636L115.425 14.8331H113.486V19.2882C113.486 19.4626 113.329 19.6199 113.154 19.6199H111.547C111.355 19.6199 111.215 19.4626 111.215 19.2882V7.72036H111.212H111.211ZM116.348 12.9619C117.274 12.9619 118.078 12.1584 118.078 11.1804C118.078 10.2549 117.275 9.48568 116.348 9.48568H113.5V12.9629H116.348V12.9619Z\" fill=\"#43434C\"/>\\n<path d=\"M125.56 7.47352C125.577 7.33439 125.682 7.2124 125.874 7.2124H126.153C126.293 7.2124 126.397 7.28197 126.45 7.38682L130.294 15.6347H130.346L134.191 7.38682C134.243 7.28297 134.33 7.2124 134.487 7.2124H134.766C134.959 7.2124 135.063 7.33439 135.081 7.47352L137.144 19.2148C137.196 19.4587 137.056 19.617 136.829 19.617H135.24C135.083 19.617 134.944 19.4779 134.908 19.3559L133.877 12.7342H133.825L130.766 19.6019C130.731 19.7067 130.627 19.7945 130.469 19.7945H130.157C130 19.7945 129.913 19.7067 129.86 19.6019L126.767 12.7342H126.715L125.702 19.3559C125.685 19.4779 125.544 19.617 125.387 19.617H123.814C123.587 19.617 123.447 19.4597 123.483 19.2148L125.563 7.47352H125.56Z\" fill=\"#43434C\"/>\\n<path d=\"M140.746 7.72036C140.746 7.54595 140.903 7.38867 141.078 7.38867H142.737C142.93 7.38867 143.069 7.54595 143.069 7.72036V14.8673C143.069 16.3524 144.083 17.5229 145.603 17.5229C147.124 17.5229 148.155 16.3524 148.155 14.8845V7.72036C148.155 7.54595 148.294 7.38867 148.487 7.38867H150.147C150.322 7.38867 150.479 7.54595 150.479 7.72036V14.9893C150.479 17.6449 148.365 19.7943 145.603 19.7943C142.842 19.7943 140.745 17.6449 140.745 14.9893V7.72036H140.746Z\" fill=\"#43434C\"/>\\n<path d=\"M156.669 9.48467H153.995C153.804 9.48467 153.664 9.3274 153.664 9.15298V7.72036C153.664 7.54595 153.803 7.38867 153.995 7.38867H161.631C161.824 7.38867 161.963 7.54595 161.963 7.72036V9.15298C161.963 9.3274 161.824 9.48467 161.631 9.48467H158.958V19.2872C158.958 19.4616 158.8 19.6189 158.626 19.6189H157.001C156.826 19.6189 156.669 19.4616 156.669 19.2872V9.48467Z\" fill=\"#43434C\"/>\\n<path d=\"M165.225 7.72036C165.225 7.54595 165.364 7.38867 165.557 7.38867H172.668C172.86 7.38867 173 7.54595 173 7.72036V9.15298C173 9.3274 172.86 9.48467 172.668 9.48467H167.497V12.3509H171.813C171.987 12.3509 172.144 12.5082 172.144 12.6826V14.1324C172.144 14.3249 171.987 14.4641 171.813 14.4641H167.497V17.5229H172.668C172.86 17.5229 173 17.6801 173 17.8546V19.2882C173 19.4626 172.86 19.6199 172.668 19.6199H165.557C165.364 19.6199 165.225 19.4626 165.225 19.2882V7.72036Z\" fill=\"#43434C\"/>\\n</svg>\\n',withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-189k3b5\",\"data-framer-name\":\"Why Usual\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nt2kS3X5C:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:821,intrinsicWidth:2098,pixelHeight:589,pixelWidth:1372,src:\"https://framerusercontent.com/images/lbalz0ZN5k9TEI8cgE4q10ynFXQ.png\"}},qSA0MXLLq:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:821,intrinsicWidth:2098,pixelHeight:589,pixelWidth:1372,src:\"https://framerusercontent.com/images/lbalz0ZN5k9TEI8cgE4q10ynFXQ.png\"}},Tdcf2m17Y:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:821,intrinsicWidth:2098,pixelHeight:589,pixelWidth:1372,src:\"https://framerusercontent.com/images/lbalz0ZN5k9TEI8cgE4q10ynFXQ.png\"}},YwQdG6HP0:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:821,intrinsicWidth:2098,pixelHeight:589,pixelWidth:1372,src:\"https://framerusercontent.com/images/lbalz0ZN5k9TEI8cgE4q10ynFXQ.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:821,intrinsicWidth:2098,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+907+1),pixelHeight:589,pixelWidth:1372,src:\"https://framerusercontent.com/images/lbalz0ZN5k9TEI8cgE4q10ynFXQ.png\"},className:\"framer-1q1s8ut\",\"data-framer-name\":\"BG GRID\",transformTemplate:transformTemplate2})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gg0v2m\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lco490\",\"data-framer-name\":\"Section Description\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h2cf5u\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YwQdG6HP0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIE1lZGl1bQ==\",\"--framer-font-family\":'\"Uxum Grotesque Medium\", \"Uxum Grotesque Medium Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(273deg, rgb(138, 96, 255) 0%, rgb(193, 76, 193) 100%)\"},children:\"Why Usual\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIE1lZGl1bQ==\",\"--framer-font-family\":'\"Uxum Grotesque Medium\", \"Uxum Grotesque Medium Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(273deg, rgb(138, 96, 255) 0%, rgb(193, 76, 193) 100%)\"},children:\"Why Usual\"})})}),className:\"framer-t8iy38\",\"data-framer-name\":\"Section title\",fonts:[\"CUSTOM;Uxum Grotesque Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Tdcf2m17Y:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-line-height\":\"44px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(24, 24, 27)\"},children:\"Rebuilding Finance\"}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-line-height\":\"44px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(24, 24, 27)\"},children:[\"for \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(153, 151, 164)\",\"--framer-text-decoration\":\"line-through\"},children:\"Insiders\"}),\" Users.\"]})]})},YwQdG6HP0:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(24, 24, 27)\"},children:\"Rebuilding Finance\"}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(24, 24, 27)\"},children:[\"for \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(153, 151, 164)\",\"--framer-text-decoration\":\"line-through\"},children:\"Insiders\"}),\" Users.\"]})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"62px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(24, 24, 27)\"},children:\"Rebuilding Finance\"}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"62px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(24, 24, 27)\"},children:[\"for \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(153, 151, 164)\",\"--framer-text-decoration\":\"line-through\"},children:\"Insiders\"}),\" Users.\"]})]}),className:\"framer-1m64uu\",\"data-framer-name\":\"Main heading\",fonts:[\"CUSTOM;Uxum Grotesque Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Tdcf2m17Y:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Uxum Grotesque Regular\", \"Uxum Grotesque Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(67, 67, 75)\"},children:[\"Today\u2019s stablecoin issuers operate like centralized banks, accumulating vast liquidity but rarely distributing value back to users. Meanwhile, crypto tokenomics have fallen short, often benefiting insiders at the expense of long-term value.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"Usual aims to change this dynamic. \"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VXh1bSBHcm90ZXNxdWUtcmVndWxhcg==\",\"--framer-font-family\":'\"Uxum Grotesque\", \"Uxum Grotesque Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(67, 67, 75)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Uxum Grotesque Regular\", \"Uxum Grotesque Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(67, 67, 75)\"},children:\"By giving users ownership of the protocol, Usual ensures value circulates within the community, not just among a few. Every dollar in the system builds real, shared rewards, with 90% of value going back to users. Usual turns users into owners, creating a new, equitable approach to stablecoins and token-based finance.\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Uxum Grotesque Regular\", \"Uxum Grotesque Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(67, 67, 75)\"},children:[\"Today\u2019s stablecoin issuers operate like centralized banks, accumulating vast liquidity but rarely distributing value back to users. Meanwhile, crypto tokenomics have fallen short, often benefiting insiders at the expense of long-term value.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"Usual aims to change this dynamic. \"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VXh1bSBHcm90ZXNxdWUtcmVndWxhcg==\",\"--framer-font-family\":'\"Uxum Grotesque\", \"Uxum Grotesque Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(67, 67, 75)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Uxum Grotesque Regular\", \"Uxum Grotesque Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(67, 67, 75)\"},children:\"By giving users ownership of the protocol, Usual ensures value circulates within the community, not just among a few. Every dollar in the system builds real, shared rewards, with 90% of value going back to users. Usual turns users into owners, creating a new, equitable approach to stablecoins and token-based finance.\"})]}),className:\"framer-1jvknbo\",\"data-framer-name\":\"Description\",fonts:[\"CUSTOM;Uxum Grotesque Regular\",\"GF;Uxum Grotesque-regular\"],verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-6r95ux\",\"data-framer-name\":\"Logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:118,svg:'<svg width=\"118\" height=\"18\" viewBox=\"0 0 118 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.39718 18C10.9876 18 12.3307 16.8831 12.9018 15.3816C12.9538 15.2451 13.0041 15.1077 13.0527 14.9695C15.1106 13.794 16.5 11.5611 16.5 9C16.5 6.43894 15.1106 4.20608 13.0527 3.03051C13.0041 2.89234 12.9538 2.75494 12.9017 2.6184C12.3306 1.11694 10.9876 0 9.39718 0C4.48348 0 0.5 4.02943 0.5 9C0.5 13.9706 4.48348 18 9.39718 18ZM13.0527 3.03051C12.0706 2.46951 10.936 2.14929 9.72747 2.14929C5.98719 2.14929 2.95502 5.21649 2.95502 9C2.95502 12.7835 5.98719 15.8507 9.72747 15.8507C10.936 15.8507 12.0706 15.5306 13.0527 14.9695C13.7103 13.1037 14.0683 11.0942 14.0683 9C14.0683 6.90583 13.7103 4.89634 13.0527 3.03051Z\" fill=\"#18181B\"/>\\n<path d=\"M34.3393 17.5C40.1573 17.5 40.2852 13.0573 40.2852 9.748V0.975999H37.6426V8.02533C37.6426 13.42 37.3442 14.984 34.3393 14.984C31.3983 14.984 31.1426 13.42 31.1426 8.02533V0.930667H28.5V9.748C28.5 13.0573 28.6279 17.5 34.3393 17.5Z\" fill=\"#18181B\"/>\\n<path d=\"M56.4776 12.604C56.4776 9.43067 47.5695 11.0173 47.5695 5.64533C47.5695 2.51733 49.8924 0.5 53.1317 0.5C56.8825 0.5 59.1842 2.35867 59.312 6.46133L56.6055 6.008C56.6055 3.44667 54.8793 2.948 53.1744 2.948C51.5973 2.948 50.3613 3.65067 50.3613 5.23733C50.3613 8.97733 59.1842 6.91467 59.1842 12.1733C59.1842 15.4147 57.0743 17.5 53.3449 17.5C50.1055 17.5 47.4203 15.052 47.4203 11.5387L50.1695 11.788C50.1695 13.9187 51.7039 15.052 53.3449 15.052C55.1776 15.052 56.4776 14.2133 56.4776 12.604Z\" fill=\"#18181B\"/>\\n<path d=\"M72.5399 17.5C78.3579 17.5 78.4857 13.0573 78.4857 9.748V0.975999H75.8431V8.02533C75.8431 13.42 75.5448 14.984 72.5399 14.984C69.5989 14.984 69.3432 13.42 69.3432 8.02533V0.930667H66.7006V9.748C66.7006 13.0573 66.8284 17.5 72.5399 17.5Z\" fill=\"#18181B\"/>\\n<path d=\"M97.1182 17.0467H99.9526L94.5395 0.953333H90.5117L85.0346 17.0467H87.8691L89.2969 12.4453H95.7116L97.1182 17.0467ZM90.0428 10.0427L92.1526 3.288C92.3444 2.44933 92.4084 1.792 92.4084 1.792H92.6641C92.6641 1.792 92.7067 2.44933 92.8985 3.288L94.9657 10.0427H90.0428Z\" fill=\"#18181B\"/>\\n<path d=\"M109.297 14.5987V0.953333H106.654V17.0467H116.5V14.5987H109.297Z\" fill=\"#18181B\"/>\\n</svg>\\n',withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kyp85w\",\"data-framer-name\":\"Swap\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-4tnze3\",\"data-framer-name\":\"Products\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jszl3q\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9vsyhj\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Tdcf2m17Y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIE1lZGl1bQ==\",\"--framer-font-family\":'\"Uxum Grotesque Medium\", \"Uxum Grotesque Medium Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(273deg, rgb(138, 96, 255) 0%, rgb(193, 76, 193) 100%)\"},children:\"Our products\"})})})},YwQdG6HP0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIE1lZGl1bQ==\",\"--framer-font-family\":'\"Uxum Grotesque Medium\", \"Uxum Grotesque Medium Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(273deg, rgb(138, 96, 255) 0%, rgb(193, 76, 193) 100%)\"},children:\"Our products\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIE1lZGl1bQ==\",\"--framer-font-family\":'\"Uxum Grotesque Medium\", \"Uxum Grotesque Medium Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(273deg, rgb(138, 96, 255) 0%, rgb(193, 76, 193) 100%)\"},children:\"Our products\"})})}),className:\"framer-nz69fr\",\"data-framer-name\":\"Section title\",fonts:[\"CUSTOM;Uxum Grotesque Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Tdcf2m17Y:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Building blocks\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"of the new era\"})]})},YwQdG6HP0:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Building blocks\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"of the new era\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"62px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Building blocks\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"62px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"of the new era\"})]}),className:\"framer-2a0xbg\",\"data-framer-name\":\"Main heading\",fonts:[\"CUSTOM;Uxum Grotesque Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1v88usi\",\"data-styles-preset\":\"xgaci6mnc\",style:{\"--framer-text-alignment\":\"center\"},children:\"USD0 for stability, USD0++ for growth, and $USUAL for governance and revenue-sharing, soon strengthened by yield optimizer, fixed rates, and fixed terms to deliver a unique range of products.\"})}),className:\"framer-g1s8do\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jmpteu\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n9n02x\",\"data-framer-name\":\"Segment\",children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-9pmqsa hidden-cpn38j hidden-d6mxlb\",\"data-framer-name\":\"Connectors\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1t7vbgq\",\"data-framer-name\":\"Connector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:86,intrinsicWidth:50,svg:'<svg width=\"50\" height=\"86\" viewBox=\"0 0 50 86\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M7.59131 78.8226V26.0625C7.59131 16.2257 15.5443 8.25732 25.362 8.25732H43.2606\" stroke=\"#1D1D20\" stroke-miterlimit=\"10\"/>\\n<path d=\"M23.0708 78.4956V25.6304C23.0708 24.5258 23.9662 23.6304 25.0708 23.6304H43.2608\" stroke=\"#1D1D20\" stroke-miterlimit=\"10\"/>\\n<path d=\"M29.3859 78.9956H0V85.726H29.3859V78.9956Z\" stroke=\"#1D1D20\" stroke-miterlimit=\"10\"/>\\n<path d=\"M43.2827 0.000171661V29.4429H50.0001V0.000171661H43.2827Z\" stroke=\"#1D1D20\" stroke-miterlimit=\"10\"/>\\n<path opacity=\"0.61\" d=\"M18.2886 78.4624V54.312\" stroke=\"#1D1D20\" stroke-miterlimit=\"10\"/>\\n<path opacity=\"0.61\" d=\"M35.2622 13.2031H43.2825\" stroke=\"#1D1D20\" stroke-miterlimit=\"10\"/>\\n<path opacity=\"0.61\" d=\"M26.0732 18.9814H43.2823\" stroke=\"#1D1D20\" stroke-miterlimit=\"10\"/>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed1()&&/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Tdcf2m17Y:{height:72,width:`max(${componentViewport?.width||\"100vw\"} - 48px, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(Container,{className:\"framer-chli4e-container hidden-cpyxmp hidden-1s8wux7 hidden-1maln7k hidden-cpn38j\",id:\"chli4e\",nodeId:\"BUf3q2_xX\",ref:ref2,scopeId:\"pipfm3NxG\",children:[/*#__PURE__*/_jsx(V11DropdownMenu,{height:\"100%\",id:\"BUf3q2_xX\",layoutId:\"BUf3q2_xX\",njoFAKd7A:njoFAKd7Atxyyif({overlay}),style:{width:\"100%\"},variant:overlay.visible?\"OLQOn7Nsu\":\"NCatUFlTE\",width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Tdcf2m17Y:{safeArea:false}},children:/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref2,className:cx(scopingClassNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":\"chli4e\",offsetX:0,offsetY:10,onDismiss:overlay.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(motion.div,{animate:animation7,className:\"framer-13ypvt2\",exit:animation6,initial:animation8,ref:ref3,role:\"dialog\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Tdcf2m17Y:{background:{alt:\"\",fit:\"stretch\",pixelHeight:1152,pixelWidth:1280,positionX:\"center\",positionY:\"center\",sizes:\"340px\",src:\"https://framerusercontent.com/images/CfmKvh9GGzBPQpWCFsW4MEvs.png\",srcSet:\"https://framerusercontent.com/images/CfmKvh9GGzBPQpWCFsW4MEvs.png?scale-down-to=512 512w,https://framerusercontent.com/images/CfmKvh9GGzBPQpWCFsW4MEvs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/CfmKvh9GGzBPQpWCFsW4MEvs.png 1280w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:1152,pixelWidth:1280,positionX:\"center\",positionY:\"center\",sizes:\"320px\",src:\"https://framerusercontent.com/images/CfmKvh9GGzBPQpWCFsW4MEvs.png\",srcSet:\"https://framerusercontent.com/images/CfmKvh9GGzBPQpWCFsW4MEvs.png?scale-down-to=512 512w,https://framerusercontent.com/images/CfmKvh9GGzBPQpWCFsW4MEvs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/CfmKvh9GGzBPQpWCFsW4MEvs.png 1280w\"},className:\"framer-lleld4\",\"data-border\":true,\"data-framer-name\":\"Menu\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pgs9vo\",\"data-framer-name\":\".Row\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mfup6h\",\"data-framer-name\":\"Currency Container\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-136lvxx\",\"data-framer-name\":\"Currency Container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Tdcf2m17Y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Stablecoin\"})}),fonts:[\"CUSTOM;Uxum Grotesque Bold\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VXh1bSBHcm90ZXNxdWUtNzAw\",\"--framer-font-family\":'\"Uxum Grotesque\", \"Uxum Grotesque Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Stablecoin\"})}),className:\"framer-dknnyi\",\"data-framer-name\":\"USD0\",fonts:[\"GF;Uxum Grotesque-700\"],verticalAlignment:\"center\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VXh1bSBHcm90ZXNxdWUtNzAw\",\"--framer-font-family\":'\"Uxum Grotesque\", \"Uxum Grotesque Placeholder\", sans-serif',\"--framer-font-size\":\"0.71px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"1px\",\"--framer-text-color\":\"rgb(10, 10, 11)\"},children:\"+\"})}),className:\"framer-fgok7t\",\"data-framer-name\":\"+1\",fonts:[\"GF;Uxum Grotesque-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VXh1bSBHcm90ZXNxdWUtNzAw\",\"--framer-font-family\":'\"Uxum Grotesque\", \"Uxum Grotesque Placeholder\", sans-serif',\"--framer-font-size\":\"0.71px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"1px\",\"--framer-text-color\":\"rgb(10, 10, 11)\"},children:\"+\"})}),className:\"framer-m57ve2\",\"data-framer-name\":\"+2\",fonts:[\"GF;Uxum Grotesque-700\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-10d5fl2\",\"data-framer-name\":\".Row\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fad712\",\"data-framer-name\":\"Currency Container\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1isoje7\",\"data-framer-name\":\"Currency Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Tdcf2m17Y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(153, 151, 164)\"},children:\"Yield Optimizer\"})}),fonts:[\"CUSTOM;Uxum Grotesque Bold\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VXh1bSBHcm90ZXNxdWUtNzAw\",\"--framer-font-family\":'\"Uxum Grotesque\", \"Uxum Grotesque Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(153, 151, 164)\"},children:\"Yield Optimizer\"})}),className:\"framer-1mzb6hq\",\"data-framer-name\":\"USD0\",fonts:[\"GF;Uxum Grotesque-700\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Tdcf2m17Y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEl0YWxpYyBSZWd1bGFy\",\"--framer-font-family\":'\"Uxum Grotesque Italic Regular\", \"Uxum Grotesque Italic Regular Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(153, 151, 164)\"},children:\"coming soon\"})}),fonts:[\"CUSTOM;Uxum Grotesque Italic Regular\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VXh1bSBHcm90ZXNxdWUgSXRhbGljLTUwMA==\",\"--framer-font-family\":'\"Uxum Grotesque Italic\", \"Uxum Grotesque Italic Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(153, 151, 164)\"},children:\"coming soon\"})}),className:\"framer-autvo4\",\"data-framer-name\":\"USD0\",fonts:[\"GF;Uxum Grotesque Italic-500\"],verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VXh1bSBHcm90ZXNxdWUtNzAw\",\"--framer-font-family\":'\"Uxum Grotesque\", \"Uxum Grotesque Placeholder\", sans-serif',\"--framer-font-size\":\"0.71px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"1px\",\"--framer-text-color\":\"rgb(10, 10, 11)\"},children:\"+\"})}),className:\"framer-5jk3qd\",\"data-framer-name\":\"+1\",fonts:[\"GF;Uxum Grotesque-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VXh1bSBHcm90ZXNxdWUtNzAw\",\"--framer-font-family\":'\"Uxum Grotesque\", \"Uxum Grotesque Placeholder\", sans-serif',\"--framer-font-size\":\"0.71px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"1px\",\"--framer-text-color\":\"rgb(10, 10, 11)\"},children:\"+\"})}),className:\"framer-1w5r35p\",\"data-framer-name\":\"+2\",fonts:[\"GF;Uxum Grotesque-700\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1l3lzd4\",\"data-framer-name\":\".Row\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1cirppe\",\"data-framer-name\":\"Currency Container\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15rsd81\",\"data-framer-name\":\"Currency Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Tdcf2m17Y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(153, 151, 164)\"},children:\"Fixed Rates\"})}),fonts:[\"CUSTOM;Uxum Grotesque Bold\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VXh1bSBHcm90ZXNxdWUtNzAw\",\"--framer-font-family\":'\"Uxum Grotesque\", \"Uxum Grotesque Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(153, 151, 164)\"},children:\"Fixed Rates\"})}),className:\"framer-10b64z9\",\"data-framer-name\":\"USD0\",fonts:[\"GF;Uxum Grotesque-700\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Tdcf2m17Y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEl0YWxpYyBSZWd1bGFy\",\"--framer-font-family\":'\"Uxum Grotesque Italic Regular\", \"Uxum Grotesque Italic Regular Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(153, 151, 164)\"},children:\"coming soon\"})}),fonts:[\"CUSTOM;Uxum Grotesque Italic Regular\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VXh1bSBHcm90ZXNxdWUgSXRhbGljLTUwMA==\",\"--framer-font-family\":'\"Uxum Grotesque Italic\", \"Uxum Grotesque Italic Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(153, 151, 164)\"},children:\"coming soon\"})}),className:\"framer-20sr31\",\"data-framer-name\":\"USD0\",fonts:[\"GF;Uxum Grotesque Italic-500\"],verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VXh1bSBHcm90ZXNxdWUtNzAw\",\"--framer-font-family\":'\"Uxum Grotesque\", \"Uxum Grotesque Placeholder\", sans-serif',\"--framer-font-size\":\"0.71px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"1px\",\"--framer-text-color\":\"rgb(10, 10, 11)\"},children:\"+\"})}),className:\"framer-grv0hu\",\"data-framer-name\":\"+1\",fonts:[\"GF;Uxum Grotesque-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VXh1bSBHcm90ZXNxdWUtNzAw\",\"--framer-font-family\":'\"Uxum Grotesque\", \"Uxum Grotesque Placeholder\", sans-serif',\"--framer-font-size\":\"0.71px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"1px\",\"--framer-text-color\":\"rgb(10, 10, 11)\"},children:\"+\"})}),className:\"framer-1ruipt2\",\"data-framer-name\":\"+2\",fonts:[\"GF;Uxum Grotesque-700\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ry8wot\",\"data-framer-name\":\".Row\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-povbxf\",\"data-framer-name\":\"Currency Container\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-s0w3st\",\"data-framer-name\":\"Currency Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Tdcf2m17Y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(153, 151, 164)\"},children:\"Fixed Terms\"})}),fonts:[\"CUSTOM;Uxum Grotesque Bold\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VXh1bSBHcm90ZXNxdWUtNzAw\",\"--framer-font-family\":'\"Uxum Grotesque\", \"Uxum Grotesque Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(153, 151, 164)\"},children:\"Fixed Terms\"})}),className:\"framer-1vlo5it\",\"data-framer-name\":\"USD0\",fonts:[\"GF;Uxum Grotesque-700\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Tdcf2m17Y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEl0YWxpYyBSZWd1bGFy\",\"--framer-font-family\":'\"Uxum Grotesque Italic Regular\", \"Uxum Grotesque Italic Regular Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(153, 151, 164)\"},children:\"coming soon\"})}),fonts:[\"CUSTOM;Uxum Grotesque Italic Regular\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VXh1bSBHcm90ZXNxdWUgSXRhbGljLTUwMA==\",\"--framer-font-family\":'\"Uxum Grotesque Italic\", \"Uxum Grotesque Italic Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(153, 151, 164)\"},children:\"coming soon\"})}),className:\"framer-1v66iuv\",\"data-framer-name\":\"USD0\",fonts:[\"GF;Uxum Grotesque Italic-500\"],verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VXh1bSBHcm90ZXNxdWUtNzAw\",\"--framer-font-family\":'\"Uxum Grotesque\", \"Uxum Grotesque Placeholder\", sans-serif',\"--framer-font-size\":\"0.71px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"1px\",\"--framer-text-color\":\"rgb(10, 10, 11)\"},children:\"+\"})}),className:\"framer-1h3hm22\",\"data-framer-name\":\"+1\",fonts:[\"GF;Uxum Grotesque-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VXh1bSBHcm90ZXNxdWUtNzAw\",\"--framer-font-family\":'\"Uxum Grotesque\", \"Uxum Grotesque Placeholder\", sans-serif',\"--framer-font-size\":\"0.71px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"1px\",\"--framer-text-color\":\"rgb(10, 10, 11)\"},children:\"+\"})}),className:\"framer-14zp4xx\",\"data-framer-name\":\"+2\",fonts:[\"GF;Uxum Grotesque-700\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})})})})})})]})})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nt2kS3X5C:{background:{alt:\"\",fit:\"stretch\",pixelHeight:312,pixelWidth:2912,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/QwdrxmTfoxiexedqyylt8tGgQ.png\",srcSet:\"https://framerusercontent.com/images/QwdrxmTfoxiexedqyylt8tGgQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/QwdrxmTfoxiexedqyylt8tGgQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/QwdrxmTfoxiexedqyylt8tGgQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/QwdrxmTfoxiexedqyylt8tGgQ.png 2912w\"}},qSA0MXLLq:{background:{alt:\"\",fit:\"stretch\",pixelHeight:312,pixelWidth:2912,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/QwdrxmTfoxiexedqyylt8tGgQ.png\",srcSet:\"https://framerusercontent.com/images/QwdrxmTfoxiexedqyylt8tGgQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/QwdrxmTfoxiexedqyylt8tGgQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/QwdrxmTfoxiexedqyylt8tGgQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/QwdrxmTfoxiexedqyylt8tGgQ.png 2912w\"}},YwQdG6HP0:{background:{alt:\"\",fit:\"stretch\",pixelHeight:312,pixelWidth:2912,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/QwdrxmTfoxiexedqyylt8tGgQ.png\",srcSet:\"https://framerusercontent.com/images/QwdrxmTfoxiexedqyylt8tGgQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/QwdrxmTfoxiexedqyylt8tGgQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/QwdrxmTfoxiexedqyylt8tGgQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/QwdrxmTfoxiexedqyylt8tGgQ.png 2912w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2461+0+0+120+0+0+1064+0+0+0),pixelHeight:312,pixelWidth:2912,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/QwdrxmTfoxiexedqyylt8tGgQ.png\",srcSet:\"https://framerusercontent.com/images/QwdrxmTfoxiexedqyylt8tGgQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/QwdrxmTfoxiexedqyylt8tGgQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/QwdrxmTfoxiexedqyylt8tGgQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/QwdrxmTfoxiexedqyylt8tGgQ.png 2912w\"},className:\"framer-1dtsny8 hidden-d6mxlb\",\"data-border\":true,\"data-framer-name\":\"Segments\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hjgfr5\",\"data-framer-name\":\"Segment\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1g104ha\",\"data-border\":true,\"data-framer-name\":\"Asset\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5x9ea9\",\"data-framer-name\":\"Currency Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Stablecoin\"})}),className:\"framer-saaf7u\",\"data-framer-name\":\"USD0\",fonts:[\"CUSTOM;Uxum Grotesque Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VXh1bSBHcm90ZXNxdWUtNzAw\",\"--framer-font-family\":'\"Uxum Grotesque\", \"Uxum Grotesque Placeholder\", sans-serif',\"--framer-font-size\":\"0.71px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"1px\",\"--framer-text-color\":\"rgb(10, 10, 11)\"},children:\"+\"})}),className:\"framer-gk2a58\",\"data-framer-name\":\"+1\",fonts:[\"GF;Uxum Grotesque-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7VXh1bSBHcm90ZXNxdWUtNzAw\",\"--framer-font-family\":'\"Uxum Grotesque\", \"Uxum Grotesque Placeholder\", sans-serif',\"--framer-font-size\":\"0.71px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"1px\",\"--framer-text-color\":\"rgb(10, 10, 11)\"},children:\"+\"})}),className:\"framer-xk4jp\",\"data-framer-name\":\"+2\",fonts:[\"GF;Uxum Grotesque-700\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11tq23j\",\"data-framer-name\":\"Icon Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pyur80\",\"data-framer-name\":\"Currency Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Yield Optimizer\"})}),className:\"framer-u3b1un\",\"data-framer-name\":\"USD0\",fonts:[\"CUSTOM;Uxum Grotesque Bold\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEl0YWxpYyBNZWRpdW0=\",\"--framer-font-family\":'\"Uxum Grotesque Italic Medium\", \"Uxum Grotesque Italic Medium Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(153, 151, 164)\"},children:\"coming soon\"})}),className:\"framer-1qpqdmw\",\"data-framer-name\":\"USD0\",fonts:[\"CUSTOM;Uxum Grotesque Italic Medium\"],verticalAlignment:\"center\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xm74c4\",\"data-framer-name\":\"Icon Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1r3xpjr\",\"data-framer-name\":\"Currency Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Fixed Rates\"})}),className:\"framer-ajjp09\",\"data-framer-name\":\"USD0\",fonts:[\"CUSTOM;Uxum Grotesque Bold\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEl0YWxpYyBNZWRpdW0=\",\"--framer-font-family\":'\"Uxum Grotesque Italic Medium\", \"Uxum Grotesque Italic Medium Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(153, 151, 164)\"},children:\"coming soon\"})}),className:\"framer-17jjwuq\",\"data-framer-name\":\"USD0\",fonts:[\"CUSTOM;Uxum Grotesque Italic Medium\"],verticalAlignment:\"center\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-liumup\",\"data-framer-name\":\"Icon Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ycutdi\",\"data-framer-name\":\"Currency Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Fixed Terms\"})}),className:\"framer-1kw9gry\",\"data-framer-name\":\"USD0\",fonts:[\"CUSTOM;Uxum Grotesque Bold\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEl0YWxpYyBNZWRpdW0=\",\"--framer-font-family\":'\"Uxum Grotesque Italic Medium\", \"Uxum Grotesque Italic Medium Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"rgb(153, 151, 164)\"},children:\"coming soon\"})}),className:\"framer-1kqoz9w\",\"data-framer-name\":\"USD0\",fonts:[\"CUSTOM;Uxum Grotesque Italic Medium\"],verticalAlignment:\"center\",withExternalLayout:true})]})})]})})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1u2qqf5 hidden-cpn38j hidden-d6mxlb\",\"data-framer-name\":\"Connectors\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-194z7vb\",\"data-framer-name\":\"Connector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:86,intrinsicWidth:50,svg:'<svg width=\"50\" height=\"86\" viewBox=\"0 0 50 86\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M6.02392 24.2388L6.02393 0L-5.29289e-05 -2.57848e-07L-5.40109e-05 24.2388L6.02392 24.2388Z\" stroke=\"#1D1D20\" stroke-miterlimit=\"10\"/>\\n<path d=\"M50.0004 39.5562H25.2476V45.455H50.0004V39.5562Z\" stroke=\"#1D1D20\" stroke-miterlimit=\"10\"/>\\n<path d=\"M50.0004 80.1011H25.2476V85.9999H50.0004V80.1011Z\" stroke=\"#1D1D20\" stroke-miterlimit=\"10\"/>\\n<path d=\"M32.2222 45.4897C32.2222 45.4897 40.7232 51.0547 40.3368 59.558C39.9503 68.0613 33.3814 71.378 33.9497 79.7477\" stroke=\"#1D1D20\" stroke-miterlimit=\"10\"/>\\n<path d=\"M42.6806 45.4897C42.6806 45.4897 34.1796 51.0547 34.566 59.558C34.9524 68.0613 41.5213 71.378 40.9531 79.7477\" stroke=\"#1D1D20\" stroke-miterlimit=\"10\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M26.2576 16.8114H6.06006V6.92236H26.2576C35.7391 6.92236 43.4255 14.4491 43.4255 23.7337V39.5562H33.3267V23.7337C33.3267 19.9106 30.1617 16.8114 26.2576 16.8114Z\" stroke=\"#1D1D20\"/>\\n<path d=\"M36.356 28.1836V22.7446\" stroke=\"#1D1D20\"/>\\n<path d=\"M40.396 36.5893V33.6226\" stroke=\"#1D1D20\"/>\\n<path d=\"M13.1284 10.8779H22.2173\" stroke=\"#1D1D20\"/>\\n<path d=\"M26.2573 13.8447L31.3067 13.8447\" stroke=\"#1D1D20\"/>\\n</svg>\\n',withExternalLayout:true})})]}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6p5j99 hidden-cpn38j hidden-d6mxlb\",\"data-framer-name\":\"Asset\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nt2kS3X5C:{background:{alt:\"\",fit:\"stretch\",pixelHeight:960,pixelWidth:3840,positionX:\"center\",positionY:\"center\",sizes:`calc(max((min(${componentViewport?.width||\"100vw\"}, 1040px) - 32px) / 3, 50px) * 3 + 32px)`,src:\"https://framerusercontent.com/images/HESeo7hEm0ovBECHrQ9iczGBCU.png\",srcSet:\"https://framerusercontent.com/images/HESeo7hEm0ovBECHrQ9iczGBCU.png?scale-down-to=512 512w,https://framerusercontent.com/images/HESeo7hEm0ovBECHrQ9iczGBCU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HESeo7hEm0ovBECHrQ9iczGBCU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/HESeo7hEm0ovBECHrQ9iczGBCU.png 3840w\"}},qSA0MXLLq:{background:{alt:\"\",fit:\"stretch\",pixelHeight:960,pixelWidth:3840,positionX:\"center\",positionY:\"center\",sizes:`calc(max((min(${componentViewport?.width||\"100vw\"}, 1040px) - 32px) / 3, 50px) * 3 + 32px)`,src:\"https://framerusercontent.com/images/HESeo7hEm0ovBECHrQ9iczGBCU.png\",srcSet:\"https://framerusercontent.com/images/HESeo7hEm0ovBECHrQ9iczGBCU.png?scale-down-to=512 512w,https://framerusercontent.com/images/HESeo7hEm0ovBECHrQ9iczGBCU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HESeo7hEm0ovBECHrQ9iczGBCU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/HESeo7hEm0ovBECHrQ9iczGBCU.png 3840w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2461+0+0+120+0+0+1064+0+118+0+0),pixelHeight:960,pixelWidth:3840,positionX:\"center\",positionY:\"center\",sizes:`calc(max((min(${componentViewport?.width||\"100vw\"}, 1280px) - 32px) / 3, 50px) * 3 + 32px)`,src:\"https://framerusercontent.com/images/HESeo7hEm0ovBECHrQ9iczGBCU.png\",srcSet:\"https://framerusercontent.com/images/HESeo7hEm0ovBECHrQ9iczGBCU.png?scale-down-to=512 512w,https://framerusercontent.com/images/HESeo7hEm0ovBECHrQ9iczGBCU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HESeo7hEm0ovBECHrQ9iczGBCU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/HESeo7hEm0ovBECHrQ9iczGBCU.png 3840w\"},className:\"framer-18vn5aa\",\"data-border\":true,\"data-framer-name\":\"Details\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jjs3ux\",\"data-framer-name\":\"Left\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18okhnu\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichTextWithDynamicTitle11t7v7u,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"34px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"USD0, The Ultimate\\xa0Fiat Stablecoin\"})}),className:\"framer-11t7v7u\",\"data-framer-name\":\"Title\",fonts:[\"CUSTOM;Uxum Grotesque Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithDynamicDescltp5o3,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Uxum Grotesque Regular\", \"Uxum Grotesque Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.03em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(153, 151, 164)\"},children:\"The world's first RWA stablecoin that aggregates various US Treasury Bill tokens, providing a secure, bankruptcy-remote solution unlinked to traditional bank deposits. \"})}),className:\"framer-ltp5o3\",\"data-framer-name\":\"Subtext\",fonts:[\"CUSTOM;Uxum Grotesque Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xh1uly\",\"data-framer-name\":\"Data\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lo7t6n\",\"data-framer-name\":\"Data 1\",children:[/*#__PURE__*/_jsx(RichTextWithDynamicNum1Title1rlp751,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Uxum Grotesque Regular\", \"Uxum Grotesque Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"28px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(153, 151, 164)\"},children:\"4-Year Cash Flow\"})}),className:\"framer-1rlp751\",\"data-framer-name\":\"USD0\",fonts:[\"CUSTOM;Uxum Grotesque Regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithDynamicNum11k3asz0,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"$192.50M\"})}),className:\"framer-1k3asz0\",\"data-framer-name\":\"USD0\",fonts:[\"CUSTOM;Uxum Grotesque Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-168o3cv\",\"data-framer-name\":\"Data 2\",children:[/*#__PURE__*/_jsx(RichTextWithDynamicNum2Title16rrc1c,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Uxum Grotesque Regular\", \"Uxum Grotesque Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"28px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(153, 151, 164)\"},children:\"APY\"})}),className:\"framer-16rrc1c\",\"data-framer-name\":\"USD0\",fonts:[\"CUSTOM;Uxum Grotesque Regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithDynamicNum214dbfj2,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"12%\"})}),className:\"framer-14dbfj2\",\"data-framer-name\":\"USD0\",fonts:[\"CUSTOM;Uxum Grotesque Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-77szih\",\"data-framer-name\":\"Right\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nt2kS3X5C:{background:{alt:\"\",fit:\"stretch\",pixelHeight:1152,pixelWidth:1696,positionX:\"center\",positionY:\"center\",sizes:`calc(min(max((max((min(${componentViewport?.width||\"100vw\"}, 1040px) - 32px) / 3, 50px) * 3 + 12px) / 2, 1px), 440px) - 16px)`,src:\"https://framerusercontent.com/images/5IA7aMwylOhQ6bmJ2D5b1zNOqYE.png\",srcSet:\"https://framerusercontent.com/images/5IA7aMwylOhQ6bmJ2D5b1zNOqYE.png?scale-down-to=512 512w,https://framerusercontent.com/images/5IA7aMwylOhQ6bmJ2D5b1zNOqYE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5IA7aMwylOhQ6bmJ2D5b1zNOqYE.png 1696w\"}},qSA0MXLLq:{background:{alt:\"\",fit:\"stretch\",pixelHeight:1152,pixelWidth:1696,positionX:\"center\",positionY:\"center\",sizes:`calc(min(max((max((min(${componentViewport?.width||\"100vw\"}, 1040px) - 32px) / 3, 50px) * 3 + 12px) / 2, 1px), 440px) - 16px)`,src:\"https://framerusercontent.com/images/5IA7aMwylOhQ6bmJ2D5b1zNOqYE.png\",srcSet:\"https://framerusercontent.com/images/5IA7aMwylOhQ6bmJ2D5b1zNOqYE.png?scale-down-to=512 512w,https://framerusercontent.com/images/5IA7aMwylOhQ6bmJ2D5b1zNOqYE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5IA7aMwylOhQ6bmJ2D5b1zNOqYE.png 1696w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2461+0+0+120+0+0+1064+0+118+0+0+0+16+0),pixelHeight:1152,pixelWidth:1696,positionX:\"center\",positionY:\"center\",sizes:`calc(min(max((max((min(${componentViewport?.width||\"100vw\"}, 1280px) - 32px) / 3, 50px) * 3 + 12px) / 2, 1px), 440px) - 16px)`,src:\"https://framerusercontent.com/images/5IA7aMwylOhQ6bmJ2D5b1zNOqYE.png\",srcSet:\"https://framerusercontent.com/images/5IA7aMwylOhQ6bmJ2D5b1zNOqYE.png?scale-down-to=512 512w,https://framerusercontent.com/images/5IA7aMwylOhQ6bmJ2D5b1zNOqYE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5IA7aMwylOhQ6bmJ2D5b1zNOqYE.png 1696w\"},className:\"framer-ketmkc\",\"data-border\":true,\"data-framer-name\":\".Switch\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v36l5a\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichTextWithDynamicSwitchTitle1t3v63x,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"34px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Supercharge USD0\"})}),className:\"framer-1t3v63x\",\"data-framer-name\":\"Title\",fonts:[\"CUSTOM;Uxum Grotesque Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithDynamicSwitchDescriptionc2feb8,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Uxum Grotesque Regular\", \"Uxum Grotesque Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.03em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.8)\"},children:\"Discover USD0++, a liquid staking version of USD0, acting like a savings account for Real-World Assets with a 4-year lock-up.\"})}),className:\"framer-c2feb8\",\"data-framer-name\":\"Subtext\",fonts:[\"CUSTOM;Uxum Grotesque Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yswvfi\",\"data-framer-name\":\"Toggle Usual Workfile\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nt2kS3X5C:{y:undefined},qSA0MXLLq:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:68,width:\"138px\",y:(componentViewport?.y||0)+0+2461+0+0+120+0+0+1064+0+118+0+0+0+16+0+40+330+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ijcq75-container\",nodeId:\"ziD0OJcRi\",rendersWithMotion:true,scopeId:\"pipfm3NxG\",children:/*#__PURE__*/_jsx(SwitchWithStoreSwitch1ijcq75WithMappedReactProps1n9h0s8,{height:\"100%\",id:\"ziD0OJcRi\",layoutId:\"ziD0OJcRi\",style:{height:\"100%\",width:\"100%\"},variant:\"Yk9eDoMXh\",width:\"100%\"})})})})})]})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nt2kS3X5C:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1040px) - 32px) / 3, 50px)`,y:undefined},qSA0MXLLq:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1040px) - 32px) / 3, 50px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:335,width:`max((min(${componentViewport?.width||\"100vw\"}, 1280px) - 32px) / 3, 50px)`,y:(componentViewport?.y||0)+0+2461+0+0+120+0+0+1064+0+118+0+336,children:/*#__PURE__*/_jsx(Container,{className:\"framer-njmr1u-container\",nodeId:\"ooe2LUvNV\",rendersWithMotion:true,scopeId:\"pipfm3NxG\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qSA0MXLLq:{OtvbAw3DJ:\"32px 32px 40px 32px\"}},children:/*#__PURE__*/_jsx(ProductCard01WithDynamicVariantnjmr1uWithMappedReactProps1gguo81,{height:\"100%\",id:\"ooe2LUvNV\",layoutId:\"ooe2LUvNV\",OtvbAw3DJ:\"40px 40px 48px 40px\",style:{height:\"100%\",width:\"100%\"},variant:\"rUBWsqPoF\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nt2kS3X5C:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1040px) - 32px) / 3, 50px)`,y:undefined},qSA0MXLLq:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1040px) - 32px) / 3, 50px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:335,width:`max((min(${componentViewport?.width||\"100vw\"}, 1280px) - 32px) / 3, 50px)`,y:(componentViewport?.y||0)+0+2461+0+0+120+0+0+1064+0+118+0+336,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kcwz3w-container\",nodeId:\"Cz1wDsK7n\",rendersWithMotion:true,scopeId:\"pipfm3NxG\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qSA0MXLLq:{hyBJlv8P2:\"32px 32px 40px 32px\"}},children:/*#__PURE__*/_jsx(ProductCard02WithDynamicVariant1kcwz3wWithMappedReactProps1e330cl,{height:\"100%\",hyBJlv8P2:\"40px 40px 48px 40px\",id:\"Cz1wDsK7n\",layoutId:\"Cz1wDsK7n\",style:{height:\"100%\",width:\"100%\"},variant:\"POHNtmu3o\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nt2kS3X5C:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1040px) - 32px) / 3, 50px)`,y:undefined},qSA0MXLLq:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1040px) - 32px) / 3, 50px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:335,width:`max((min(${componentViewport?.width||\"100vw\"}, 1280px) - 32px) / 3, 50px)`,y:(componentViewport?.y||0)+0+2461+0+0+120+0+0+1064+0+118+0+336,children:/*#__PURE__*/_jsx(Container,{className:\"framer-43i6xp-container\",nodeId:\"xdWpQq50L\",rendersWithMotion:true,scopeId:\"pipfm3NxG\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qSA0MXLLq:{xEJKa8ZRX:\"32px 32px 40px 32px\"}},children:/*#__PURE__*/_jsx(ProductCard03WithDynamicVariant43i6xpWithMappedReactProps1801cm6,{height:\"100%\",id:\"xdWpQq50L\",layoutId:\"xdWpQq50L\",style:{height:\"100%\",width:\"100%\"},variant:\"FtmtxGlqd\",width:\"100%\",xEJKa8ZRX:\"40px 40px 48px 40px\"})})})})})]}),isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-mw2az hidden-cpyxmp hidden-1s8wux7 hidden-1maln7k\",\"data-framer-name\":\"Asset Test\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Tdcf2m17Y:{width:`min(${componentViewport?.width||\"100vw\"}, 1280px)`},YwQdG6HP0:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1280px), 768px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1388,children:/*#__PURE__*/_jsx(Container,{className:\"framer-v7fpop-container\",nodeId:\"BYCDwQMRp\",scopeId:\"pipfm3NxG\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Tdcf2m17Y:{A2ZWZgN9F:14,lBfMNU7_t:20,UULSwUwFP:18,WKUTks7nq:14,zdc1xENiU:20},YwQdG6HP0:{style:{maxWidth:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(AssetSwitch,{A2ZWZgN9F:16,height:\"100%\",id:\"BYCDwQMRp\",layoutId:\"BYCDwQMRp\",lBfMNU7_t:26,style:{width:\"100%\"},UULSwUwFP:20,variant:\"hD8mcnCKd\",width:\"100%\",WKUTks7nq:16,zdc1xENiU:26})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bof93y\",\"data-framer-name\":\"Connectors\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nt2kS3X5C:{background:{alt:\"\",fit:\"fill\",pixelHeight:640,pixelWidth:1664,sizes:\"332.8px\",src:\"https://framerusercontent.com/images/4HczbRrMbowb3d7Y3VaVPWpc1M.png\",srcSet:\"https://framerusercontent.com/images/4HczbRrMbowb3d7Y3VaVPWpc1M.png?scale-down-to=512 512w,https://framerusercontent.com/images/4HczbRrMbowb3d7Y3VaVPWpc1M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4HczbRrMbowb3d7Y3VaVPWpc1M.png 1664w\"}},qSA0MXLLq:{background:{alt:\"\",fit:\"fill\",pixelHeight:640,pixelWidth:1664,sizes:\"336.05px\",src:\"https://framerusercontent.com/images/4HczbRrMbowb3d7Y3VaVPWpc1M.png\",srcSet:\"https://framerusercontent.com/images/4HczbRrMbowb3d7Y3VaVPWpc1M.png?scale-down-to=512 512w,https://framerusercontent.com/images/4HczbRrMbowb3d7Y3VaVPWpc1M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4HczbRrMbowb3d7Y3VaVPWpc1M.png 1664w\"}},YwQdG6HP0:{background:{alt:\"\",fit:\"fill\",pixelHeight:640,pixelWidth:1664,sizes:\"222.625px\",src:\"https://framerusercontent.com/images/4HczbRrMbowb3d7Y3VaVPWpc1M.png\",srcSet:\"https://framerusercontent.com/images/4HczbRrMbowb3d7Y3VaVPWpc1M.png?scale-down-to=512 512w,https://framerusercontent.com/images/4HczbRrMbowb3d7Y3VaVPWpc1M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4HczbRrMbowb3d7Y3VaVPWpc1M.png 1664w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2461+0+0+120+0+0+1064+0+789+0),pixelHeight:640,pixelWidth:1664,sizes:\"416px\",src:\"https://framerusercontent.com/images/4HczbRrMbowb3d7Y3VaVPWpc1M.png\",srcSet:\"https://framerusercontent.com/images/4HczbRrMbowb3d7Y3VaVPWpc1M.png?scale-down-to=512 512w,https://framerusercontent.com/images/4HczbRrMbowb3d7Y3VaVPWpc1M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4HczbRrMbowb3d7Y3VaVPWpc1M.png 1664w\"},className:\"framer-hke4w hidden-d6mxlb\",\"data-framer-name\":\"Connector\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nt2kS3X5C:{background:{alt:\"\",fit:\"fill\",pixelHeight:636,pixelWidth:1664,sizes:\"332.8px\",src:\"https://framerusercontent.com/images/VqsiqS9MJtMSdT5sHJshLA.png\",srcSet:\"https://framerusercontent.com/images/VqsiqS9MJtMSdT5sHJshLA.png?scale-down-to=512 512w,https://framerusercontent.com/images/VqsiqS9MJtMSdT5sHJshLA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/VqsiqS9MJtMSdT5sHJshLA.png 1664w\"}},qSA0MXLLq:{background:{alt:\"\",fit:\"fill\",pixelHeight:636,pixelWidth:1664,sizes:\"336.05px\",src:\"https://framerusercontent.com/images/VqsiqS9MJtMSdT5sHJshLA.png\",srcSet:\"https://framerusercontent.com/images/VqsiqS9MJtMSdT5sHJshLA.png?scale-down-to=512 512w,https://framerusercontent.com/images/VqsiqS9MJtMSdT5sHJshLA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/VqsiqS9MJtMSdT5sHJshLA.png 1664w\"}},Tdcf2m17Y:{background:{alt:\"\",fit:\"fill\",pixelHeight:636,pixelWidth:1664,sizes:\"416px\",src:\"https://framerusercontent.com/images/VqsiqS9MJtMSdT5sHJshLA.png\",srcSet:\"https://framerusercontent.com/images/VqsiqS9MJtMSdT5sHJshLA.png?scale-down-to=512 512w,https://framerusercontent.com/images/VqsiqS9MJtMSdT5sHJshLA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/VqsiqS9MJtMSdT5sHJshLA.png 1664w\"}},YwQdG6HP0:{background:{alt:\"\",fit:\"fill\",pixelHeight:636,pixelWidth:1664,sizes:\"222.625px\",src:\"https://framerusercontent.com/images/VqsiqS9MJtMSdT5sHJshLA.png\",srcSet:\"https://framerusercontent.com/images/VqsiqS9MJtMSdT5sHJshLA.png?scale-down-to=512 512w,https://framerusercontent.com/images/VqsiqS9MJtMSdT5sHJshLA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/VqsiqS9MJtMSdT5sHJshLA.png 1664w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2461+0+0+120+0+0+1064+0+789+0),pixelHeight:636,pixelWidth:1664,sizes:\"416px\",src:\"https://framerusercontent.com/images/VqsiqS9MJtMSdT5sHJshLA.png\",srcSet:\"https://framerusercontent.com/images/VqsiqS9MJtMSdT5sHJshLA.png?scale-down-to=512 512w,https://framerusercontent.com/images/VqsiqS9MJtMSdT5sHJshLA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/VqsiqS9MJtMSdT5sHJshLA.png 1664w\"},className:\"framer-icm324\",\"data-framer-name\":\"Connector\"})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nt2kS3X5C:{background:{alt:\"\",fit:\"fill\",pixelHeight:640,pixelWidth:1664,sizes:\"332.8px\",src:\"https://framerusercontent.com/images/zO91dRyBLuGItQ36FX1Mcp5v35U.png\",srcSet:\"https://framerusercontent.com/images/zO91dRyBLuGItQ36FX1Mcp5v35U.png?scale-down-to=512 512w,https://framerusercontent.com/images/zO91dRyBLuGItQ36FX1Mcp5v35U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zO91dRyBLuGItQ36FX1Mcp5v35U.png 1664w\"}},qSA0MXLLq:{background:{alt:\"\",fit:\"fill\",pixelHeight:640,pixelWidth:1664,sizes:\"336.05px\",src:\"https://framerusercontent.com/images/zO91dRyBLuGItQ36FX1Mcp5v35U.png\",srcSet:\"https://framerusercontent.com/images/zO91dRyBLuGItQ36FX1Mcp5v35U.png?scale-down-to=512 512w,https://framerusercontent.com/images/zO91dRyBLuGItQ36FX1Mcp5v35U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zO91dRyBLuGItQ36FX1Mcp5v35U.png 1664w\"}},YwQdG6HP0:{background:{alt:\"\",fit:\"fill\",pixelHeight:640,pixelWidth:1664,sizes:\"222.625px\",src:\"https://framerusercontent.com/images/zO91dRyBLuGItQ36FX1Mcp5v35U.png\",srcSet:\"https://framerusercontent.com/images/zO91dRyBLuGItQ36FX1Mcp5v35U.png?scale-down-to=512 512w,https://framerusercontent.com/images/zO91dRyBLuGItQ36FX1Mcp5v35U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zO91dRyBLuGItQ36FX1Mcp5v35U.png 1664w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2461+0+0+120+0+0+1064+0+789+0),pixelHeight:640,pixelWidth:1664,sizes:\"416px\",src:\"https://framerusercontent.com/images/zO91dRyBLuGItQ36FX1Mcp5v35U.png\",srcSet:\"https://framerusercontent.com/images/zO91dRyBLuGItQ36FX1Mcp5v35U.png?scale-down-to=512 512w,https://framerusercontent.com/images/zO91dRyBLuGItQ36FX1Mcp5v35U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zO91dRyBLuGItQ36FX1Mcp5v35U.png 1664w\"},className:\"framer-1e5a90e hidden-d6mxlb\",\"data-framer-name\":\"Connector\"})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gaqt4\",\"data-framer-name\":\"AA Grade\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wsuhck\",\"data-border\":true,\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11sf0uo\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gtcsf4\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Tdcf2m17Y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Built on Stability. \",/*#__PURE__*/_jsx(\"br\",{}),\"Secured by AA-Grade Assets.\"]})})},YwQdG6HP0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Built on Stability. \",/*#__PURE__*/_jsx(\"br\",{}),\"Secured by AA-Grade Assets.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"40px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Built on Stability. \",/*#__PURE__*/_jsx(\"br\",{}),\"Secured by AA-Grade Assets.\"]})}),className:\"framer-16urldo\",\"data-framer-name\":\"Title\",fonts:[\"CUSTOM;Uxum Grotesque Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YwQdG6HP0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Uxum Grotesque Regular\", \"Uxum Grotesque Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.03em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(153, 151, 164)\"},children:\"Discover the latest updates and plans from the Usual Labs.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Uxum Grotesque Regular\", \"Uxum Grotesque Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.03em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(153, 151, 164)\"},children:\"Backed by high-quality, revenue-generating assets, ensuring stability, security, and sustainable yield.\"})}),className:\"framer-swbss9\",\"data-framer-name\":\"Subtext\",fonts:[\"CUSTOM;Uxum Grotesque Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ysr4x8\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-zt2srl\",\"data-framer-name\":\"M0 white\",fill:\"rgb(56, 56, 63)\",intrinsicHeight:162,intrinsicWidth:250,svg:'<svg width=\"250\" height=\"162\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><mask id=\"a\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"250\" height=\"162\"><path d=\"M249.916 0H.166v162h249.75V0Z\" fill=\"#fff\"/></mask><g mask=\"url(#a)\" fill=\"#fff\"><path d=\"M93.764 161.908H112.8V34.535L93.764 68.037v93.871ZM88.565.146 46.962 73.36v24.691h19.037V78.208l27.762-48.856v.131L110.431.146H88.565Zm72.248 35.748 24.048 42.321v19.84h19.037V73.168l-29.1-51.212c.023-.01.047-.02.07-.032L165.439 5.33a48.99 48.99 0 0 0-15.15 12.07l10.517 18.509.007-.015Z\"/><path d=\"M201.245 0h-13.733a48.47 48.47 0 0 0-3.132.112l10.774 18.961h6.091c16.341 0 29.635 13.32 29.635 29.693v64.469c0 16.372-13.294 29.691-29.635 29.691h-13.733c-16.341 0-29.634-13.319-29.634-29.691v-43.93l-17.816-31.353a48.793 48.793 0 0 0-1.221 10.814v64.469c0 26.889 21.834 48.765 48.671 48.765h13.733c26.837 0 48.671-21.876 48.671-48.765v-64.47C249.916 21.877 228.082 0 201.245 0ZM24.51.146H.168v161.758h19.036V29.354l15.43 27.156 10.953-19.275L24.511.145Z\"/></g></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-39na7d\",\"data-framer-name\":\"circle-logo-white 4\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:26,intrinsicWidth:99,svg:'<svg width=\"99\" height=\"26\" viewBox=\"0 0 99 26\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_190_46362)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M23.1944 5.49891L23.2326 5.5002C23.3975 5.51136 23.5568 5.59482 23.6571 5.74346L23.6792 5.77891L24.2228 6.72634L24.2956 6.85504C25.3033 8.66149 25.8465 10.7037 25.8718 12.7802L25.8727 12.9322L25.8711 13.1388C25.7612 19.8754 20.2863 25.3349 13.5312 25.4434L13.3261 25.4451L13.1798 25.4442C10.4994 25.4141 7.95953 24.5556 5.81698 22.9551L5.70051 22.8671L4.94323 22.2881L4.91453 22.2646C4.68396 22.063 4.66039 21.7118 4.86187 21.4816L4.88822 21.4535L10.0293 16.3265L10.0582 16.2997C10.2257 16.1547 10.4638 16.1226 10.6638 16.2179L10.7008 16.2373L11.2556 16.5542L11.3419 16.6022C11.9191 16.9139 12.5651 17.0855 13.2223 17.1018L13.3261 17.1031L13.3981 17.1025C15.6472 17.0645 17.4696 15.247 17.5077 13.0039L17.5083 12.9322L17.5066 12.8131C17.4996 12.5746 17.4717 12.3349 17.4232 12.0978L17.3972 11.9795L17.2914 11.5279L17.284 11.4903C17.2576 11.3282 17.3046 11.1626 17.412 11.0384L17.4402 11.0082L18.7012 9.75047L18.729 9.7245C18.9939 9.49299 19.4076 9.56378 19.5815 9.86932L19.5992 9.90295L19.6597 10.0312C19.9558 10.6751 20.1522 11.3628 20.2406 12.0711L20.2569 12.213L20.2707 12.3568C20.2831 12.5007 20.2914 12.6447 20.2948 12.7885L20.2965 12.9322L20.2956 13.047C20.2345 16.7896 17.1929 19.8226 13.4401 19.8829L13.3261 19.8838L13.1853 19.8823C12.4349 19.8671 11.6928 19.7305 10.9895 19.4806L10.8581 19.4324L8.7526 21.5321L8.88018 21.5988C10.203 22.2778 11.6616 22.6413 13.1791 22.6633L13.3261 22.6644L13.4873 22.6631C18.741 22.5779 22.9988 18.3312 23.0834 13.0913L23.0847 12.9322L23.0834 12.773C23.0678 11.8209 22.9125 10.8788 22.6259 9.97899L22.5739 9.82065L22.5706 9.82386L22.5166 9.66806C22.2768 8.99497 21.9629 8.34897 21.5792 7.74189L21.4894 7.60249L21.4689 7.56871C21.3536 7.36373 21.3768 7.10903 21.5302 6.93129L21.5586 6.90075L22.801 5.66185C22.9113 5.55175 23.0534 5.49891 23.1944 5.49891ZM13.4943 0.465332C16.2403 0.465332 18.8448 1.32579 21.0359 2.95528L21.1529 3.04331L21.9136 3.6223L21.9424 3.64578C22.174 3.84726 22.1976 4.19846 21.9952 4.42875L21.9687 4.45689L16.8054 9.58396L16.7764 9.6108C16.6082 9.75574 16.369 9.78793 16.1682 9.6926L16.131 9.67322L15.5735 9.35607L15.4869 9.30815C14.9073 8.99652 14.2585 8.82485 13.5986 8.80846L13.4943 8.80717L13.4221 8.80777C11.1631 8.84579 9.33283 10.6634 9.29454 12.9064L9.29393 12.9781L9.29569 13.0974C9.30271 13.3361 9.33075 13.5758 9.37935 13.8126L9.40535 13.9308L9.51161 14.3826L9.51907 14.4201C9.5455 14.5822 9.49837 14.7478 9.39052 14.8721L9.3623 14.9023L8.09617 16.1594L8.06826 16.1853C7.80226 16.4169 7.38659 16.3462 7.21209 16.0406L7.19434 16.007L7.13387 15.8794C6.83811 15.2387 6.64102 14.5546 6.55112 13.8519L6.53457 13.7111L6.52131 13.5752L6.51083 13.4393L6.50707 13.3829L6.50381 13.3264L6.49854 13.2103L6.49496 13.0942L6.49364 12.9781L6.49458 12.8633C6.5559 9.1208 9.61061 6.08773 13.3799 6.02744L13.4943 6.02652L13.6357 6.02795C14.3893 6.04317 15.1347 6.17987 15.8411 6.4298L15.9731 6.47799L18.0876 4.37827L17.9595 4.31157C16.6309 3.63252 15.1659 3.26901 13.642 3.24695L13.4943 3.24588L13.3325 3.24719C8.05587 3.33244 3.77955 7.57929 3.69455 12.819L3.69326 12.9781L3.69457 13.1374C3.71025 14.0896 3.86631 15.0316 4.15415 15.9314L4.20631 16.0897L4.20936 16.0867L4.26363 16.2425C4.50456 16.9157 4.82017 17.5621 5.20524 18.1689L5.29533 18.3082L5.31594 18.342C5.43151 18.547 5.40829 18.8016 5.25429 18.9793L5.22576 19.0098L3.9782 20.2485L3.95058 20.2742C3.69671 20.4952 3.30251 20.4429 3.11599 20.1635L3.09614 20.1315L2.5501 19.184L2.47698 19.0554C1.46435 17.2481 0.918781 15.2046 0.893953 13.1266L0.893066 12.9781L0.894758 12.7715C1.00625 5.96684 6.61542 0.465332 13.4943 0.465332ZM38.0364 6.11653C39.8092 6.11653 41.2274 6.66024 42.635 7.87898C42.7503 7.98099 42.8154 8.11465 42.8197 8.25609C42.8235 8.38439 42.7776 8.50828 42.6898 8.60903L42.6622 8.63854L41.8535 9.46364C41.7412 9.60338 41.618 9.6392 41.5338 9.64431C41.4413 9.65039 41.299 9.62459 41.1454 9.47132C40.291 8.72828 39.1328 8.28018 38.0551 8.28018C35.58 8.28018 33.5665 10.3644 33.5665 12.9267C33.5665 15.4786 35.5882 17.5545 38.0734 17.5545C39.4312 17.5545 40.3601 16.9843 41.1615 16.3678C41.3614 16.2127 41.6029 16.199 41.7863 16.3301L41.8163 16.3532L42.6795 17.1951C42.7668 17.271 42.8209 17.388 42.8251 17.5187C42.83 17.6693 42.769 17.8229 42.662 17.9296C41.416 19.1365 39.8169 19.7736 38.0364 19.7736C34.2521 19.7736 31.1732 16.7187 31.1732 12.9637C31.1732 9.18822 34.2521 6.11653 38.0364 6.11653ZM71.5899 6.11653C73.3627 6.11653 74.7807 6.66024 76.1883 7.87898C76.3036 7.98099 76.3686 8.11454 76.3729 8.25609C76.3769 8.38429 76.3309 8.50809 76.2432 8.60898L76.2156 8.63854L75.4067 9.46364C75.2944 9.60338 75.1713 9.6392 75.087 9.64431C74.994 9.65039 74.8524 9.62459 74.6986 9.47132C73.8443 8.72828 72.686 8.28018 71.6081 8.28018C69.1331 8.28018 67.1197 10.3644 67.1197 12.9267C67.1197 15.4786 69.1416 17.5545 71.6268 17.5545C72.9845 17.5545 73.9134 16.9843 74.7148 16.3678C74.9147 16.2127 75.1562 16.199 75.3396 16.3301L75.3696 16.3532L76.2328 17.1951C76.32 17.271 76.3741 17.388 76.3785 17.5186C76.3834 17.6691 76.3224 17.8227 76.2156 17.9294C74.9693 19.1365 73.3701 19.7736 71.5899 19.7736C67.8053 19.7736 64.7265 16.7187 64.7265 12.9637C64.7265 9.18822 67.8053 6.11653 71.5899 6.11653ZM47.6998 6.30171C47.9655 6.30171 48.1998 6.5245 48.2181 6.7861L48.2193 6.81898V19.0712C48.2193 19.3357 47.9956 19.5693 47.7328 19.5875L47.6998 19.5887H46.4755C46.21 19.5887 45.9757 19.3657 45.9573 19.1041L45.9562 19.0712V6.81898C45.9562 6.55447 46.1799 6.3211 46.4425 6.30285L46.4755 6.30171H47.6998ZM57.9754 6.30171C60.2973 6.30171 62.1861 8.15284 62.1861 10.428C62.1861 12.0519 61.1973 13.4875 59.5871 14.2307L59.5074 14.2667L61.9622 18.8079C62.0557 18.9811 62.0545 19.1867 61.9591 19.3448C61.8718 19.4894 61.7202 19.5765 61.5391 19.5875L61.4998 19.5887H60.0529C59.8493 19.5887 59.6904 19.4709 59.6196 19.3538L59.6066 19.3304L57.1857 14.5174H54.6556V19.0712C54.6556 19.3357 54.4318 19.5693 54.1691 19.5875L54.136 19.5887H52.9301C52.6553 19.5887 52.4295 19.3746 52.4119 19.1052L52.4108 19.0712V6.81898C52.4108 6.54526 52.6256 6.32036 52.896 6.30281L52.9301 6.30171H57.9754ZM81.2531 6.3017C81.5187 6.3017 81.7532 6.52449 81.7715 6.78609L81.7727 6.81897V17.5361H86.6321C86.9072 17.5361 87.1331 17.75 87.1507 18.0194L87.1518 18.0534V19.0712C87.1518 19.3451 86.9369 19.57 86.6662 19.5876L86.6321 19.5887H80.0288C79.754 19.5887 79.5282 19.3747 79.5106 19.1052L79.5095 19.0712V6.81897C79.5095 6.54525 79.7243 6.32035 79.9947 6.3028L80.0288 6.3017H81.2531ZM97.6312 6.30172C97.9063 6.30172 98.1321 6.51567 98.1497 6.78505L98.1508 6.81899V7.85547C98.1508 8.12929 97.936 8.3542 97.6653 8.37175L97.6312 8.37285H91.937V11.8171H96.7223C96.988 11.8171 97.2225 12.04 97.2408 12.3016L97.242 12.3345V13.3708C97.242 13.6446 97.0272 13.8695 96.7564 13.8871L96.7223 13.8882H91.937V17.5361H97.6312C97.9063 17.5361 98.1321 17.7501 98.1497 18.0193L98.1508 18.0533V19.0712C98.1508 19.345 97.936 19.57 97.6653 19.5876L97.6312 19.5887H90.2117C89.9368 19.5887 89.711 19.3746 89.6934 19.1052L89.6923 19.0712V6.81899C89.6923 6.54527 89.9071 6.32037 90.1776 6.30282L90.2117 6.30172H97.6312ZM57.8271 8.42837H54.6926V12.5943H57.8271C58.9632 12.5943 59.923 11.6193 59.923 10.4651C59.923 9.36103 58.9632 8.42837 57.8271 8.42837Z\" fill=\"#43434C\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_190_46362\">\\n<rect width=\"97.2917\" height=\"25\" fill=\"white\" transform=\"translate(0.887695 0.499512)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1gt0gek\",\"data-framer-name\":\"Hashnot\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:116,svg:'<svg width=\"116\" height=\"25\" viewBox=\"0 0 116 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_2849_75139)\">\\n<mask id=\"mask0_2849_75139\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"115\" height=\"25\">\\n<path d=\"M114.841 0.763672H0.291992V24.7637H114.841V0.763672Z\" fill=\"white\" style=\"fill:white;fill-opacity:1;\"/>\\n</mask>\\n<g mask=\"url(#mask0_2849_75139)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6.58008 15.6011H8.21363L7.37684 19.8874H10.4519L13.2114 5.75195C11.5131 5.75195 9.87626 7.08431 9.55541 8.72781L9.24897 10.2977H7.56963L7.28694 11.8129H8.95315L8.50945 14.0858H6.8628L6.58008 15.6011ZM17.3977 5.75195H14.3227L11.681 19.9092C13.3792 19.9092 15.005 18.5748 15.3121 16.9287L15.5598 15.6011H17.338L17.6208 14.0858H15.8426L16.2667 11.8129H18.0449L18.3276 10.2977H16.5495L17.3977 5.75195Z\" fill=\"#43434C\" style=\"fill:#43434C;fill:color(display-p3 0.2645 0.2628 0.2972);fill-opacity:1;\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.4685 23.2805C18.3622 23.2805 23.14 18.572 23.14 12.7637C23.14 6.95536 18.3622 2.24682 12.4685 2.24682C6.57473 2.24682 1.79695 6.95536 1.79695 12.7637C1.79695 18.572 6.57473 23.2805 12.4685 23.2805ZM12.4685 24.7637C19.1933 24.7637 24.6449 19.3911 24.6449 12.7637C24.6449 6.13625 19.1933 0.763672 12.4685 0.763672C5.74358 0.763672 0.291992 6.13625 0.291992 12.7637C0.291992 19.3911 5.74358 24.7637 12.4685 24.7637Z\" fill=\"#43434C\" style=\"fill:#43434C;fill:color(display-p3 0.2645 0.2628 0.2972);fill-opacity:1;\"/>\\n<path d=\"M30.8555 19.8754V5.96875H33.7914V11.9794H39.2843V5.96875H42.2202V19.8754H39.2843V14.4994H33.7914V19.8754H30.8555Z\" fill=\"#43434C\" style=\"fill:#43434C;fill:color(display-p3 0.2645 0.2628 0.2972);fill-opacity:1;\"/>\\n<path d=\"M47.1531 20.099C46.4081 20.099 45.7641 19.9808 45.2209 19.7443C44.6779 19.5079 44.2612 19.1719 43.9708 18.7363C43.6804 18.2883 43.5352 17.7595 43.5352 17.1497C43.5352 16.5773 43.6677 16.0733 43.9329 15.6377C44.1981 15.1897 44.6022 14.8163 45.1452 14.5177C45.7009 14.219 46.3891 14.0075 47.2099 13.883L50.3731 13.379V15.4323L47.7213 15.899C47.3172 15.9737 47.0078 16.1043 46.7932 16.291C46.5785 16.4653 46.4712 16.7203 46.4712 17.0563C46.4712 17.3675 46.5911 17.6101 46.8311 17.7843C47.071 17.9586 47.3677 18.0457 47.7213 18.0457C48.1885 18.0457 48.5989 17.9461 48.9525 17.747C49.3061 17.5479 49.5775 17.2803 49.7669 16.9443C49.969 16.5959 50.07 16.2163 50.07 15.8057V13.155C50.07 12.7693 49.9122 12.4457 49.5965 12.1843C49.2934 11.923 48.8767 11.7923 48.3464 11.7923C47.8412 11.7923 47.393 11.9293 47.0015 12.203C46.6227 12.4768 46.3449 12.8377 46.1681 13.2857L43.895 12.2217C44.0971 11.6493 44.4191 11.1577 44.861 10.747C45.303 10.3363 45.8335 10.019 46.4522 9.79498C47.071 9.57098 47.7465 9.45898 48.4789 9.45898C49.3502 9.45898 50.1205 9.61458 50.7898 9.92565C51.459 10.2368 51.9768 10.6723 52.3429 11.2323C52.7218 11.7799 52.9112 12.4208 52.9112 13.155V17.635H54.0476V19.875H50.2594V18.2323L50.9034 18.1203C50.6004 18.5683 50.2657 18.9417 49.8995 19.2403C49.5334 19.5266 49.1229 19.7381 48.6684 19.875C48.2138 20.0243 47.7086 20.099 47.1531 20.099Z\" fill=\"#43434C\" style=\"fill:#43434C;fill:color(display-p3 0.2645 0.2628 0.2972);fill-opacity:1;\"/>\\n<path d=\"M59.1091 20.099C57.9727 20.099 56.9814 19.8377 56.1354 19.315C55.302 18.7799 54.7337 18.0643 54.4307 17.1683L56.5142 16.1977C56.7794 16.7453 57.1392 17.1746 57.5938 17.4857C58.0484 17.7968 58.5535 17.9523 59.1091 17.9523C59.5133 17.9523 59.8226 17.8715 60.0372 17.7097C60.2519 17.5479 60.3593 17.3239 60.3593 17.0377C60.3593 16.8883 60.3214 16.7639 60.2456 16.6643C60.1698 16.5523 60.0562 16.4528 59.9047 16.3657C59.7531 16.2786 59.5637 16.2039 59.3364 16.1417L57.5749 15.6563C56.7288 15.4199 56.0785 15.0403 55.624 14.5177C55.1694 13.9826 54.9421 13.3541 54.9421 12.6323C54.9421 11.9977 55.1063 11.4439 55.4345 10.971C55.7628 10.4981 56.2238 10.131 56.8173 9.86965C57.4107 9.59592 58.0926 9.45898 58.8629 9.45898C59.8731 9.45898 60.757 9.69545 61.5147 10.1683C62.285 10.6288 62.8279 11.2821 63.1436 12.1283L61.0411 13.099C60.8896 12.6759 60.6118 12.3399 60.2077 12.091C59.8162 11.8297 59.368 11.699 58.8629 11.699C58.4967 11.699 58.2062 11.7737 57.9916 11.923C57.7895 12.0723 57.6885 12.2777 57.6885 12.539C57.6885 12.6759 57.7264 12.8003 57.8022 12.9123C57.878 13.0243 57.9979 13.1239 58.1621 13.211C58.3388 13.2981 58.5535 13.379 58.8061 13.4537L60.454 13.939C61.3126 14.1879 61.9692 14.5675 62.4238 15.0777C62.8784 15.5755 63.1057 16.1915 63.1057 16.9257C63.1057 17.5603 62.9352 18.1141 62.5943 18.587C62.266 19.0599 61.8051 19.4333 61.2116 19.707C60.6181 19.9683 59.9173 20.099 59.1091 20.099Z\" fill=\"#43434C\" style=\"fill:#43434C;fill:color(display-p3 0.2645 0.2628 0.2972);fill-opacity:1;\"/>\\n<path d=\"M64.2354 19.8748V5.74414H67.0765V11.6988L66.7356 11.2508C66.9755 10.641 67.3606 10.193 67.891 9.90681C68.434 9.60814 69.0651 9.45881 69.7849 9.45881C70.5683 9.45881 71.2501 9.62061 71.8306 9.94414C72.4245 10.2677 72.8852 10.7219 73.2133 11.3068C73.542 11.8793 73.7057 12.5513 73.7057 13.3228V19.8748H70.8646V13.9201C70.8646 13.5219 70.7827 13.1797 70.6183 12.8935C70.4668 12.6073 70.2463 12.3833 69.9554 12.2215C69.678 12.0597 69.3493 11.9788 68.9704 11.9788C68.6045 11.9788 68.2764 12.0597 67.9855 12.2215C67.6953 12.3833 67.468 12.6073 67.3038 12.8935C67.1523 13.1797 67.0765 13.5219 67.0765 13.9201V19.8748H64.2354Z\" fill=\"#43434C\" style=\"fill:#43434C;fill:color(display-p3 0.2645 0.2628 0.2972);fill-opacity:1;\"/>\\n<path d=\"M75.0059 19.875V9.68298H77.6576V11.699L77.5061 11.251C77.7456 10.6413 78.1312 10.1933 78.6615 9.90698C79.204 9.60832 79.8359 9.45898 80.5556 9.45898C81.3383 9.45898 82.0202 9.62078 82.6013 9.94432C83.1945 10.2679 83.6552 10.7221 83.984 11.307C84.3121 11.8795 84.4764 12.5515 84.4764 13.323V19.875H81.6353V13.9203C81.6353 13.5221 81.5527 13.1799 81.389 12.8937C81.2375 12.6075 81.0163 12.3835 80.7261 12.2217C80.4481 12.0599 80.12 11.979 79.7412 11.979C79.3745 11.979 79.0464 12.0599 78.7562 12.2217C78.4653 12.3835 78.238 12.6075 78.0743 12.8937C77.9228 13.1799 77.847 13.5221 77.847 13.9203V19.875H75.0059Z\" fill=\"#43434C\" style=\"fill:#43434C;fill:color(display-p3 0.2645 0.2628 0.2972);fill-opacity:1;\"/>\\n<path d=\"M90.9101 20.099C89.8873 20.099 88.9524 19.8688 88.1068 19.4083C87.2734 18.9479 86.6037 18.3195 86.0991 17.523C85.6066 16.7141 85.3604 15.7995 85.3604 14.779C85.3604 13.7461 85.6066 12.8315 86.0991 12.035C86.6037 11.2386 87.2734 10.6101 88.1068 10.1497C88.9524 9.68925 89.8873 9.45898 90.9101 9.45898C91.9329 9.45898 92.8611 9.68925 93.6945 10.1497C94.5279 10.6101 95.1908 11.2386 95.6833 12.035C96.1879 12.8315 96.4409 13.7461 96.4409 14.779C96.4409 15.7995 96.1879 16.7141 95.6833 17.523C95.1908 18.3195 94.5279 18.9479 93.6945 19.4083C92.8611 19.8688 91.9329 20.099 90.9101 20.099ZM90.9101 17.579C91.4276 17.579 91.8761 17.4608 92.2549 17.2243C92.6459 16.9879 92.949 16.6581 93.1641 16.235C93.3914 15.8119 93.5051 15.3266 93.5051 14.779C93.5051 14.2315 93.3914 13.7523 93.1641 13.3417C92.949 12.9186 92.6459 12.5888 92.2549 12.3523C91.8761 12.1035 91.4276 11.979 90.9101 11.979C90.3919 11.979 89.9373 12.1035 89.5463 12.3523C89.1547 12.5888 88.8455 12.9186 88.6182 13.3417C88.4031 13.7523 88.2962 14.2315 88.2962 14.779C88.2962 15.3266 88.4031 15.8119 88.6182 16.235C88.8455 16.6581 89.1547 16.9879 89.5463 17.2243C89.9373 17.4608 90.3919 17.579 90.9101 17.579Z\" fill=\"#43434C\" style=\"fill:#43434C;fill:color(display-p3 0.2645 0.2628 0.2972);fill-opacity:1;\"/>\\n<path d=\"M102.343 19.9878C101.092 19.9878 100.12 19.658 99.4256 18.9984C98.7437 18.3264 98.4027 17.3931 98.4027 16.1984V12.1104H96.6602V9.68378H96.7549C97.2852 9.68378 97.6897 9.55311 97.9671 9.29178C98.258 9.03045 98.4027 8.63845 98.4027 8.11578V7.36914H101.244V9.68378H103.668V12.1104H101.244V16.0118C101.244 16.3602 101.308 16.6527 101.433 16.8891C101.56 17.1131 101.755 17.2811 102.021 17.3931C102.286 17.5051 102.614 17.5611 103.005 17.5611C103.094 17.5611 103.195 17.5549 103.309 17.5424C103.422 17.53 103.543 17.5176 103.668 17.5051V19.8758C103.479 19.9007 103.265 19.9256 103.024 19.9504C102.785 19.9754 102.558 19.9878 102.343 19.9878Z\" fill=\"#43434C\" style=\"fill:#43434C;fill:color(display-p3 0.2645 0.2628 0.2972);fill-opacity:1;\"/>\\n<path d=\"M109.747 20.099C108.648 20.099 107.694 19.8626 106.887 19.3897C106.078 18.9043 105.453 18.2573 105.012 17.4483C104.569 16.6395 104.349 15.7435 104.349 14.7603C104.349 13.7399 104.576 12.8315 105.031 12.035C105.497 11.2386 106.122 10.6101 106.906 10.1497C107.688 9.68925 108.573 9.45898 109.557 9.45898C110.378 9.45898 111.104 9.58965 111.736 9.85098C112.367 10.0999 112.897 10.4546 113.327 10.915C113.768 11.3755 114.103 11.9106 114.331 12.5203C114.558 13.1177 114.672 13.771 114.672 14.4803C114.672 14.6795 114.659 14.8786 114.634 15.0777C114.621 15.2643 114.589 15.4261 114.539 15.563H106.792V13.5097H112.929L111.584 14.4803C111.71 13.9453 111.704 13.4723 111.565 13.0617C111.426 12.6386 111.18 12.3088 110.827 12.0723C110.486 11.8235 110.062 11.699 109.557 11.699C109.065 11.699 108.642 11.8173 108.288 12.0537C107.935 12.2901 107.669 12.6386 107.493 13.099C107.316 13.5595 107.247 14.1195 107.285 14.779C107.234 15.3515 107.303 15.8555 107.493 16.291C107.682 16.7266 107.972 17.0688 108.364 17.3177C108.755 17.5541 109.229 17.6723 109.785 17.6723C110.289 17.6723 110.719 17.5728 111.073 17.3737C111.439 17.1746 111.723 16.9008 111.925 16.5523L114.198 17.6163C113.996 18.1141 113.674 18.5497 113.232 18.923C112.802 19.2963 112.291 19.5888 111.698 19.8003C111.104 19.9995 110.454 20.099 109.747 20.099Z\" fill=\"#43434C\" style=\"fill:#43434C;fill:color(display-p3 0.2645 0.2628 0.2972);fill-opacity:1;\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_2849_75139\">\\n<rect width=\"115\" height=\"24\" fill=\"white\" style=\"fill:white;fill-opacity:1;\" transform=\"translate(0.291992 0.763672)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xlmmw8-container\",isModuleExternal:true,nodeId:\"cAZrdTx2V\",scopeId:\"pipfm3NxG\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Tdcf2m17Y:{direction:\"bottom\",gap:0,padding:0,paddingBottom:0,paddingLeft:0,paddingRight:0,paddingTop:0}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"flex-start\",direction:\"top\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:30,overflow:false},gap:8,height:\"100%\",hoverFactor:1,id:\"cAZrdTx2V\",layoutId:\"cAZrdTx2V\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:65,width:\"181px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-11xtjud-container\",\"data-framer-name\":\"USYC\",inComponentSlot:true,name:\"USYC\",nodeId:\"xcWm2NFKX\",rendersWithMotion:true,scopeId:\"pipfm3NxG\",children:/*#__PURE__*/_jsx(AssetItem,{height:\"100%\",id:\"xcWm2NFKX\",layoutId:\"xcWm2NFKX\",name:\"USYC\",qzNeBa4EV:addImageAlt({pixelHeight:32,pixelWidth:32,src:\"https://framerusercontent.com/images/zcGWxtK3GD2a5cZKy4dc9avprQ.svg\"},\"\"),style:{height:\"100%\"},width:\"100%\",wjCl7GZKr:false,wp1_8uHtb:\"USYC\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:65,width:\"144px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-w9vd1u-container\",\"data-framer-name\":\"M0\",inComponentSlot:true,name:\"M0\",nodeId:\"s1_sqA07A\",rendersWithMotion:true,scopeId:\"pipfm3NxG\",children:/*#__PURE__*/_jsx(AssetItem,{height:\"100%\",id:\"s1_sqA07A\",layoutId:\"s1_sqA07A\",name:\"M0\",qzNeBa4EV:addImageAlt({pixelHeight:152,pixelWidth:152,src:\"https://framerusercontent.com/images/ZELKydXWOmy6QdAEXpHn7mKsWZI.svg\"},\"\"),style:{height:\"100%\"},width:\"100%\",wjCl7GZKr:false,wp1_8uHtb:\"M0\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:65,width:\"191.5px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qn1jos-container\",\"data-framer-name\":\"UStb\",inComponentSlot:true,name:\"UStb\",nodeId:\"J6sn_6SwA\",rendersWithMotion:true,scopeId:\"pipfm3NxG\",children:/*#__PURE__*/_jsx(AssetItem,{height:\"100%\",id:\"J6sn_6SwA\",layoutId:\"J6sn_6SwA\",name:\"UStb\",qzNeBa4EV:addImageAlt({pixelHeight:62,pixelWidth:62,src:\"https://framerusercontent.com/images/oyzhf3VnyO8FxoXO46sJDc7g.svg\"},\"\"),style:{height:\"100%\"},width:\"100%\",wjCl7GZKr:false,wp1_8uHtb:\"USDtb\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:65,width:\"300px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-11mzj0h-container\",\"data-framer-name\":\"ONDO\",inComponentSlot:true,name:\"ONDO\",nodeId:\"ML9UiDdGM\",rendersWithMotion:true,scopeId:\"pipfm3NxG\",children:/*#__PURE__*/_jsx(AssetItem,{height:\"100%\",id:\"ML9UiDdGM\",layoutId:\"ML9UiDdGM\",name:\"ONDO\",qzNeBa4EV:addImageAlt({pixelHeight:32,pixelWidth:32,src:\"https://framerusercontent.com/images/ZsCyVkmyi0rgqKHwDqxDg3009mA.svg\"},\"\"),style:{height:\"100%\"},width:\"100%\",wjCl7GZKr:true,wp1_8uHtb:\"ONDO\"})})})],speed:30,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7ornkp\",\"data-framer-name\":\"Connector\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nt2kS3X5C:{background:{alt:\"\",fit:\"fit\",pixelHeight:797,pixelWidth:3366,positionX:\"center\",positionY:\"center\",sizes:\"842px\",src:\"https://framerusercontent.com/images/Rk9BVTbqdlD0ZWLkIQuJxu2apM0.png\",srcSet:\"https://framerusercontent.com/images/Rk9BVTbqdlD0ZWLkIQuJxu2apM0.png?scale-down-to=512 512w,https://framerusercontent.com/images/Rk9BVTbqdlD0ZWLkIQuJxu2apM0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Rk9BVTbqdlD0ZWLkIQuJxu2apM0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Rk9BVTbqdlD0ZWLkIQuJxu2apM0.png 3366w\"}},qSA0MXLLq:{background:{alt:\"\",fit:\"fit\",pixelHeight:797,pixelWidth:3366,positionX:\"center\",positionY:\"center\",sizes:\"842px\",src:\"https://framerusercontent.com/images/Rk9BVTbqdlD0ZWLkIQuJxu2apM0.png\",srcSet:\"https://framerusercontent.com/images/Rk9BVTbqdlD0ZWLkIQuJxu2apM0.png?scale-down-to=512 512w,https://framerusercontent.com/images/Rk9BVTbqdlD0ZWLkIQuJxu2apM0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Rk9BVTbqdlD0ZWLkIQuJxu2apM0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Rk9BVTbqdlD0ZWLkIQuJxu2apM0.png 3366w\"}},Tdcf2m17Y:{background:{alt:\"\",fit:\"fit\",pixelHeight:797,pixelWidth:3366,positionX:\"center\",positionY:\"center\",sizes:\"605px\",src:\"https://framerusercontent.com/images/Rk9BVTbqdlD0ZWLkIQuJxu2apM0.png\",srcSet:\"https://framerusercontent.com/images/Rk9BVTbqdlD0ZWLkIQuJxu2apM0.png?scale-down-to=512 512w,https://framerusercontent.com/images/Rk9BVTbqdlD0ZWLkIQuJxu2apM0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Rk9BVTbqdlD0ZWLkIQuJxu2apM0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Rk9BVTbqdlD0ZWLkIQuJxu2apM0.png 3366w\"}},YwQdG6HP0:{background:{alt:\"\",fit:\"fit\",pixelHeight:797,pixelWidth:3366,positionX:\"center\",positionY:\"center\",sizes:\"588px\",src:\"https://framerusercontent.com/images/Rk9BVTbqdlD0ZWLkIQuJxu2apM0.png\",srcSet:\"https://framerusercontent.com/images/Rk9BVTbqdlD0ZWLkIQuJxu2apM0.png?scale-down-to=512 512w,https://framerusercontent.com/images/Rk9BVTbqdlD0ZWLkIQuJxu2apM0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Rk9BVTbqdlD0ZWLkIQuJxu2apM0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Rk9BVTbqdlD0ZWLkIQuJxu2apM0.png 3366w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2461+0+0+120+0+0+1064+0+1261+0+0),pixelHeight:797,pixelWidth:3366,positionX:\"center\",positionY:\"center\",sizes:\"842px\",src:\"https://framerusercontent.com/images/Rk9BVTbqdlD0ZWLkIQuJxu2apM0.png\",srcSet:\"https://framerusercontent.com/images/Rk9BVTbqdlD0ZWLkIQuJxu2apM0.png?scale-down-to=512 512w,https://framerusercontent.com/images/Rk9BVTbqdlD0ZWLkIQuJxu2apM0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Rk9BVTbqdlD0ZWLkIQuJxu2apM0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Rk9BVTbqdlD0ZWLkIQuJxu2apM0.png 3366w\"},className:\"framer-isc32c\",\"data-framer-name\":\"Connector\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1oymr4u\",\"data-framer-name\":\"Usual\",id:elementId1,ref:ref4,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nt2kS3X5C:{background:{alt:\"\",fit:\"fit\",pixelHeight:2712,pixelWidth:3900,positionX:\"center\",positionY:\"center\",sizes:\"1300px\",src:\"https://framerusercontent.com/images/wb6U0Ulf1rpJ7ZR84nYsUusdA.png\",srcSet:\"https://framerusercontent.com/images/wb6U0Ulf1rpJ7ZR84nYsUusdA.png?scale-down-to=512 512w,https://framerusercontent.com/images/wb6U0Ulf1rpJ7ZR84nYsUusdA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wb6U0Ulf1rpJ7ZR84nYsUusdA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/wb6U0Ulf1rpJ7ZR84nYsUusdA.png 3900w\"}},qSA0MXLLq:{background:{alt:\"\",fit:\"fit\",pixelHeight:2712,pixelWidth:3900,positionX:\"center\",positionY:\"center\",sizes:\"1300px\",src:\"https://framerusercontent.com/images/wb6U0Ulf1rpJ7ZR84nYsUusdA.png\",srcSet:\"https://framerusercontent.com/images/wb6U0Ulf1rpJ7ZR84nYsUusdA.png?scale-down-to=512 512w,https://framerusercontent.com/images/wb6U0Ulf1rpJ7ZR84nYsUusdA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wb6U0Ulf1rpJ7ZR84nYsUusdA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/wb6U0Ulf1rpJ7ZR84nYsUusdA.png 3900w\"}},Tdcf2m17Y:{background:{alt:\"\",fit:\"fit\",pixelHeight:2712,pixelWidth:3900,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} + 440px)`,src:\"https://framerusercontent.com/images/wb6U0Ulf1rpJ7ZR84nYsUusdA.png\",srcSet:\"https://framerusercontent.com/images/wb6U0Ulf1rpJ7ZR84nYsUusdA.png?scale-down-to=512 512w,https://framerusercontent.com/images/wb6U0Ulf1rpJ7ZR84nYsUusdA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wb6U0Ulf1rpJ7ZR84nYsUusdA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/wb6U0Ulf1rpJ7ZR84nYsUusdA.png 3900w\"}},YwQdG6HP0:{background:{alt:\"\",fit:\"fit\",pixelHeight:2712,pixelWidth:3900,positionX:\"center\",positionY:\"center\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1280px) + 20px)`,src:\"https://framerusercontent.com/images/wb6U0Ulf1rpJ7ZR84nYsUusdA.png\",srcSet:\"https://framerusercontent.com/images/wb6U0Ulf1rpJ7ZR84nYsUusdA.png?scale-down-to=512 512w,https://framerusercontent.com/images/wb6U0Ulf1rpJ7ZR84nYsUusdA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wb6U0Ulf1rpJ7ZR84nYsUusdA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/wb6U0Ulf1rpJ7ZR84nYsUusdA.png 3900w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2461+0+0+120+0+0+1064+0+1431+-140),pixelHeight:2712,pixelWidth:3900,positionX:\"center\",positionY:\"center\",sizes:\"1300px\",src:\"https://framerusercontent.com/images/wb6U0Ulf1rpJ7ZR84nYsUusdA.png\",srcSet:\"https://framerusercontent.com/images/wb6U0Ulf1rpJ7ZR84nYsUusdA.png?scale-down-to=512 512w,https://framerusercontent.com/images/wb6U0Ulf1rpJ7ZR84nYsUusdA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wb6U0Ulf1rpJ7ZR84nYsUusdA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/wb6U0Ulf1rpJ7ZR84nYsUusdA.png 3900w\"},className:\"framer-oa0ram\",\"data-framer-name\":\"BG Floor\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1drrpcm\",\"data-framer-name\":\"Illus\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Tdcf2m17Y:{__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:30}},{ref:ref4,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}]}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-60,y:0}},{ref:ref4,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ztvj01\",\"data-framer-name\":\"Left\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-oyr2h8\",\"data-framer-name\":\"Scarcity Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Tdcf2m17Y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Uxum Grotesque Regular\", \"Uxum Grotesque Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(153, 151, 164)\"},children:\"USUALx APY\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Uxum Grotesque Regular\", \"Uxum Grotesque Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"28px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(153, 151, 164)\"},children:\"USUALx APY\"})}),className:\"framer-15egbmu\",\"data-framer-name\":\"USD0\",fonts:[\"CUSTOM;Uxum Grotesque Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Tdcf2m17Y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"158%\"})})}},children:/*#__PURE__*/_jsx(RichTextWithUSUALxAPY1mb9khu,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"34px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"158%\"})}),className:\"framer-1mb9khu\",\"data-framer-name\":\"USD0\",fonts:[\"CUSTOM;Uxum Grotesque Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1g2yypu\",\"data-framer-name\":\"Scarcity Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Tdcf2m17Y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Uxum Grotesque Regular\", \"Uxum Grotesque Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(153, 151, 164)\"},children:\"4-Year Cash Flow\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Uxum Grotesque Regular\", \"Uxum Grotesque Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"28px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(153, 151, 164)\"},children:\"4-Year Cash Flow\"})}),className:\"framer-1h9mxet\",\"data-framer-name\":\"USD0\",fonts:[\"CUSTOM;Uxum Grotesque Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Tdcf2m17Y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"$192.50M\"})})}},children:/*#__PURE__*/_jsx(RichTextWithRevenuesnhsu5n,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"34px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"$192.50M\"})}),className:\"framer-nhsu5n\",\"data-framer-name\":\"USD0\",fonts:[\"CUSTOM;Uxum Grotesque Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nhpuxl\",\"data-framer-name\":\"Illus\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5xacj6\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Tdcf2m17Y:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 241 165\"><g transform=\"translate(0 0)\"><path d=\"M 128.02 18.021 C 123.135 15.179 117.098 15.16 112.195 17.972 L 0.003 70.705 C 0.003 70.705 0.01 91.327 0 93.742 C -0.01 96.16 1.177 98.581 3.564 99.976 L 112.301 162.52 C 117.147 165.308 123.111 165.332 127.977 162.579 L 236.777 100.589 C 238.835 99.408 240.015 97.462 240.314 95.405 C 240.712 92.669 240.39 70.705 240.39 70.705 L 128.02 18.024 Z\" fill=\"rgb(122,122,122)\" stroke-width=\"0.6\" stroke=\"rgb(0,0,0)\" stroke-miterlimit=\"10\"></path><path d=\"M 128.02 2.145 C 123.134 -0.697 117.097 -0.716 112.195 2.095 L 3.616 64.321 C -1.184 67.071 -1.21 73.971 3.567 76.76 L 112.304 139.304 C 117.15 142.092 123.114 142.116 127.98 139.363 L 236.779 77.373 C 241.579 74.617 241.599 67.714 236.816 64.931 Z\" fill=\"rgb(255,255,255)\" stroke-width=\"0.6\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 113.297 139.83 L 113.297 163.046\" fill=\"transparent\" stroke-width=\"0.6\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 127.55 140.07 L 127.55 162.552\" fill=\"transparent\" stroke-width=\"0.6\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 127.314 8.36 C 122.871 5.774 117.38 5.758 112.922 8.314 L 14.184 64.903 C 9.821 67.403 9.795 73.676 14.138 76.213 L 113.02 133.087 C 117.429 135.623 122.852 135.642 127.277 133.139 L 226.219 76.767 C 230.585 74.26 230.601 67.984 226.251 65.451 L 127.317 8.357 Z\" fill=\"rgb(0,0,0)\" stroke-width=\"0.99\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 126.445 15.959 C 122.542 13.689 117.722 13.676 113.806 15.92 L 27.099 65.612 C 23.265 67.807 23.246 73.319 27.06 75.544 L 113.892 125.488 C 117.762 127.716 122.522 127.733 126.412 125.535 L 213.297 76.033 C 217.13 73.834 217.147 68.319 213.326 66.098 L 126.449 15.959 Z\" fill=\"transparent\" stroke-width=\"0.6\" stroke=\"rgb(255,255,255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 125.031 28.335 C 122.013 26.58 118.281 26.567 115.249 28.302 L 48.142 66.76 C 45.177 68.459 45.16 72.725 48.113 74.447 L 115.315 113.102 C 118.311 114.824 121.997 114.838 125.005 113.138 L 192.247 74.828 C 195.213 73.125 195.226 68.856 192.27 67.137 L 125.031 28.332 Z\" fill=\"transparent\" stroke-width=\"0.6\" stroke=\"rgb(255,255,255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 123.653 40.399 C 121.494 39.143 118.827 39.133 116.656 40.376 L 68.659 67.885 C 66.538 69.102 66.525 72.15 68.636 73.384 L 116.702 101.031 C 118.847 102.264 121.48 102.274 123.634 101.056 L 171.73 73.653 C 173.851 72.436 173.861 69.384 171.746 68.154 Z\" fill=\"transparent\" stroke-width=\"0.6\" stroke=\"rgb(255,255,255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><g transform=\"translate(214.007 71.303)\"><path d=\"M 0 18.837 L 0 42.149 L 22.847 29.353 C 25.031 28.128 26.382 25.825 26.382 23.329 L 26.382 0 C 26.382 0 26.504 4.347 20.78 6.847 L 0 18.833 Z\" fill=\"rgb(206,206,206)\"></path></g><g transform=\"translate(127.55 123.543)\"><path d=\"M 0 16.527 L 0.427 39.035 L 28.306 22.916 L 28.306 0 Z\" fill=\"rgb(206,206,206)\"></path></g><g transform=\"translate(0 70.704)\"><path d=\"M 23.466 17.501 L 23.466 40.718 L 3.564 29.271 C 3.564 29.271 0 28.289 0 21.452 L 0 0 C 0 0 0.138 4.055 3.564 6.054 C 6.99 8.052 23.466 17.501 23.466 17.501 Z\" fill=\"rgb(204,204,204)\"></path></g><path d=\"M 220.694 86.538 L 220.694 109.377\" fill=\"transparent\" stroke-width=\"0.6\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 217.143 88.848 L 217.143 111.688\" fill=\"transparent\" stroke-width=\"0.6\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 7.528 88.942 C 7.528 88.942 8.087 88.634 9.369 87.912 C 10.159 87.469 10.935 87.006 11.914 87.062 C 14.63 87.22 17.106 90.146 17.047 93.592 C 17.017 95.32 16.356 96.656 15.363 97.436 C 14.37 98.218 12.289 99.268 12.289 99.268\" fill=\"rgb(122,122,122)\"></path><path d=\"M 7.528 88.942 C 7.528 88.942 8.087 88.634 9.369 87.912 C 10.159 87.469 10.935 87.006 11.914 87.062 C 14.63 87.22 17.106 90.146 17.047 93.592 C 17.017 95.32 16.356 96.656 15.363 97.436 C 14.37 98.218 12.289 99.268 12.289 99.268\" fill=\"transparent\" stroke-width=\"0.6\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 14.342 95.168 C 14.28 98.626 11.702 100.516 8.983 99.525 C 6.625 98.665 4.985 95.88 5.044 93.213 C 5.103 90.545 6.849 88.504 9.206 88.638 C 11.922 88.796 14.398 91.723 14.339 95.168 Z\" fill=\"rgb(255,255,255)\" stroke-width=\"0.6\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 24.784 99.039 C 24.784 99.039 25.343 98.73 26.626 98.008 C 27.415 97.566 28.191 97.103 29.17 97.159 C 31.886 97.316 34.362 100.243 34.303 103.688 C 34.273 105.417 33.612 106.753 32.619 107.533 C 31.627 108.314 29.545 109.364 29.545 109.364\" fill=\"rgb(122,122,122)\"></path><path d=\"M 24.784 99.039 C 24.784 99.039 25.343 98.73 26.626 98.008 C 27.415 97.566 28.191 97.103 29.17 97.159 C 31.886 97.316 34.362 100.243 34.303 103.688 C 34.273 105.417 33.612 106.753 32.619 107.533 C 31.627 108.314 29.545 109.364 29.545 109.364\" fill=\"transparent\" stroke-width=\"0.6\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 31.598 105.265 C 31.536 108.723 28.958 110.612 26.239 109.621 C 23.881 108.762 22.241 105.977 22.3 103.309 C 22.362 100.652 24.105 98.601 26.462 98.735 C 29.178 98.893 31.654 101.819 31.595 105.265 Z\" fill=\"rgb(255,255,255)\" stroke-width=\"0.6\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 210.233 103.516 C 210.177 107.103 207.685 111.431 204.63 113.272 C 201.536 115.135 198.952 113.799 198.887 110.201 C 198.82 106.522 201.405 101.965 204.621 100.115 C 207.793 98.286 210.289 99.855 210.233 103.516 Z\" fill=\"rgb(255,255,255)\" stroke-width=\"0.6\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 38.18 104.308 L 38.18 112.543 L 93.24 144.461 L 93.24 135.822 Z\" fill=\"rgb(255,255,255)\" stroke-width=\"0.6\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 134.219 139.736 L 134.219 155.187 L 147.92 147.463 L 147.92 131.688 Z\" fill=\"rgb(0,0,0)\" stroke-width=\"0.6\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 134.219 139.952 L 134.219 151.852 L 144.938 145.795 L 144.938 133.57 Z\" fill=\"rgb(255,255,255)\" stroke-width=\"0.6\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 155.124 135.937 L 191.748 114.459\" fill=\"transparent\" stroke-width=\"0.6\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><g transform=\"translate(80.156 120.813)\"><path d=\"M 4.459 2.565 L 4.459 25.681 L 0 23.217 L 0 0 Z\" fill=\"rgb(206,206,206)\"></path></g><g transform=\"translate(87.466 125.018)\"><path d=\"M 0 0 L 0 23.217 L 25.83 38.028 L 25.83 14.811 Z\" fill=\"rgb(206,206,206)\"></path></g><g transform=\"translate(158.546 119.493)\"><path d=\"M 0 2.455 L 0 25.531 L 4.308 23.217 L 4.308 0 Z\" fill=\"rgb(206,206,206)\"></path></g><path d=\"M 99.189 136.808 L 99.189 150.943\" fill=\"transparent\" stroke-width=\"0.6\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 102.285 138.605 L 102.285 152.739\" fill=\"transparent\" stroke-width=\"0.6\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 105.288 140.538 L 105.288 154.673\" fill=\"transparent\" stroke-width=\"0.6\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></g></svg>',svgContentId:12511902763},YwQdG6HP0:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 268 184\"><g transform=\"translate(0 0)\"><path d=\"M 142.363 20.096 C 136.93 16.927 130.217 16.905 124.765 20.041 L 0.004 78.847 C 0.004 78.847 0.011 101.843 0 104.536 C -0.011 107.233 1.309 109.933 3.964 111.488 L 124.882 181.234 C 130.271 184.344 136.904 184.37 142.315 181.3 L 263.303 112.172 C 265.592 110.855 266.905 108.685 267.238 106.391 C 267.68 103.339 267.322 78.847 267.322 78.847 L 142.363 20.1 Z\" fill=\"rgb(122,122,122)\" stroke-width=\"0.67\" stroke=\"rgb(0,0,0)\" stroke-miterlimit=\"10\"></path><path d=\"M 142.363 2.392 C 136.929 -0.777 130.216 -0.799 124.765 2.337 L 4.022 71.728 C -1.317 74.794 -1.346 82.489 3.967 85.599 L 124.885 155.345 C 130.275 158.454 136.907 158.48 142.318 155.411 L 263.306 86.283 C 268.644 83.209 268.666 75.511 263.347 72.408 Z\" fill=\"rgb(255,255,255)\" stroke-width=\"0.67\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 125.989 155.931 L 125.989 181.822\" fill=\"transparent\" stroke-width=\"0.67\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 141.84 156.199 L 141.84 181.27\" fill=\"transparent\" stroke-width=\"0.67\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 141.577 9.323 C 136.637 6.439 130.531 6.421 125.573 9.271 L 15.773 72.376 C 10.921 75.165 10.892 82.16 15.722 84.989 L 125.682 148.412 C 130.585 151.24 136.615 151.262 141.536 148.471 L 251.563 85.607 C 256.418 82.812 256.436 75.812 251.599 72.987 L 141.58 9.319 Z\" fill=\"rgb(0,0,0)\" stroke-width=\"1.1\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 140.611 17.797 C 136.271 15.265 130.911 15.25 126.556 17.753 L 30.135 73.167 C 25.872 75.615 25.85 81.762 30.091 84.243 L 126.651 139.938 C 130.955 142.423 136.249 142.441 140.574 139.99 L 237.193 84.788 C 241.456 82.336 241.475 76.186 237.226 73.709 L 140.615 17.797 Z\" fill=\"transparent\" stroke-width=\"0.67\" stroke=\"rgb(255,255,255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 139.039 31.598 C 135.683 29.64 131.532 29.626 128.161 31.561 L 53.536 74.447 C 50.238 76.343 50.219 81.099 53.503 83.02 L 128.234 126.126 C 131.565 128.047 135.664 128.061 139.01 126.166 L 213.785 83.445 C 217.083 81.546 217.098 76.785 213.811 74.868 L 139.039 31.594 Z\" fill=\"transparent\" stroke-width=\"0.67\" stroke=\"rgb(255,255,255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 137.507 45.051 C 135.105 43.65 132.14 43.639 129.726 45.026 L 76.351 75.702 C 73.993 77.059 73.978 80.459 76.326 81.834 L 129.777 112.664 C 132.161 114.04 135.09 114.05 137.485 112.693 L 190.97 82.134 C 193.328 80.777 193.339 77.374 190.988 76.002 Z\" fill=\"transparent\" stroke-width=\"0.67\" stroke=\"rgb(255,255,255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><g transform=\"translate(237.983 79.513)\"><path d=\"M 0 21.006 L 0 47.002 L 25.407 32.733 C 27.836 31.367 29.338 28.799 29.338 26.015 L 29.338 0 C 29.338 0 29.473 4.848 23.108 7.636 L 0 21.002 Z\" fill=\"rgb(206,206,206)\"></path></g><g transform=\"translate(141.84 137.769)\"><path d=\"M 0 18.43 L 0.475 43.53 L 31.477 25.554 L 31.477 0 Z\" fill=\"rgb(206,206,206)\"></path></g><g transform=\"translate(0 78.846)\"><path d=\"M 26.095 19.516 L 26.095 45.407 L 3.963 32.641 C 3.963 32.641 0 31.547 0 23.922 L 0 0 C 0 0 0.154 4.522 3.963 6.751 C 7.773 8.979 26.095 19.516 26.095 19.516 Z\" fill=\"rgb(204,204,204)\"></path></g><path d=\"M 245.419 96.503 L 245.419 121.972\" fill=\"transparent\" stroke-width=\"0.67\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 241.471 99.079 L 241.471 124.549\" fill=\"transparent\" stroke-width=\"0.67\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 8.372 99.184 C 8.372 99.184 8.993 98.84 10.419 98.035 C 11.297 97.541 12.16 97.025 13.249 97.087 C 16.269 97.263 19.022 100.526 18.957 104.369 C 18.924 106.296 18.189 107.786 17.085 108.656 C 15.98 109.528 13.666 110.699 13.666 110.699\" fill=\"rgb(122,122,122)\"></path><path d=\"M 8.372 99.184 C 8.372 99.184 8.993 98.84 10.419 98.035 C 11.297 97.541 12.16 97.025 13.249 97.087 C 16.269 97.263 19.022 100.526 18.957 104.369 C 18.924 106.296 18.189 107.786 17.085 108.656 C 15.98 109.528 13.666 110.699 13.666 110.699\" fill=\"transparent\" stroke-width=\"0.67\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 15.949 106.126 C 15.879 109.983 13.013 112.091 9.989 110.986 C 7.367 110.027 5.543 106.92 5.609 103.946 C 5.675 100.971 7.616 98.695 10.238 98.845 C 13.258 99.021 16.011 102.285 15.945 106.126 Z\" fill=\"rgb(255,255,255)\" stroke-width=\"0.67\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 27.561 110.443 C 27.561 110.443 28.182 110.099 29.608 109.294 C 30.486 108.8 31.349 108.284 32.438 108.346 C 35.459 108.522 38.212 111.786 38.146 115.628 C 38.113 117.556 37.378 119.045 36.274 119.916 C 35.17 120.786 32.855 121.957 32.855 121.957\" fill=\"rgb(122,122,122)\"></path><path d=\"M 27.561 110.443 C 27.561 110.443 28.182 110.099 29.608 109.294 C 30.486 108.8 31.349 108.284 32.438 108.346 C 35.459 108.522 38.212 111.786 38.146 115.628 C 38.113 117.556 37.378 119.045 36.274 119.916 C 35.17 120.786 32.855 121.957 32.855 121.957\" fill=\"transparent\" stroke-width=\"0.67\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 35.138 117.386 C 35.069 121.242 32.202 123.349 29.178 122.245 C 26.557 121.286 24.732 118.18 24.798 115.205 C 24.868 112.242 26.805 109.955 29.427 110.105 C 32.447 110.28 35.2 113.544 35.135 117.386 Z\" fill=\"rgb(255,255,255)\" stroke-width=\"0.67\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 233.786 115.437 C 233.724 119.436 230.953 124.262 227.555 126.315 C 224.115 128.393 221.241 126.904 221.169 122.89 C 221.095 118.788 223.969 113.706 227.545 111.643 C 231.073 109.604 233.849 111.354 233.786 115.437 Z\" fill=\"rgb(255,255,255)\" stroke-width=\"0.67\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 42.458 116.319 L 42.458 125.503 L 103.687 161.096 L 103.687 151.462 Z\" fill=\"rgb(255,255,255)\" stroke-width=\"0.67\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 149.256 155.827 L 149.256 173.057 L 164.492 164.444 L 164.492 146.852 Z\" fill=\"rgb(0,0,0)\" stroke-width=\"0.67\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 149.256 156.068 L 149.256 169.338 L 161.176 162.584 L 161.176 148.951 Z\" fill=\"rgb(255,255,255)\" stroke-width=\"0.67\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 172.503 151.59 L 213.23 127.639\" fill=\"transparent\" stroke-width=\"0.67\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><g transform=\"translate(89.136 134.725)\"><path d=\"M 4.958 2.861 L 4.958 28.638 L 0 25.89 L 0 0 Z\" fill=\"rgb(206,206,206)\"></path></g><g transform=\"translate(97.265 139.414)\"><path d=\"M 0 0 L 0 25.89 L 28.724 42.407 L 28.724 16.517 Z\" fill=\"rgb(206,206,206)\"></path></g><g transform=\"translate(176.308 133.253)\"><path d=\"M 0 2.737 L 0 28.471 L 4.79 25.89 L 4.79 0 Z\" fill=\"rgb(206,206,206)\"></path></g><path d=\"M 110.302 152.561 L 110.302 168.324\" fill=\"transparent\" stroke-width=\"0.67\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 113.745 154.565 L 113.745 170.328\" fill=\"transparent\" stroke-width=\"0.67\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 117.084 156.721 L 117.084 172.483\" fill=\"transparent\" stroke-width=\"0.67\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></g></svg>',svgContentId:11894479609}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-5bwuey\",\"data-framer-name\":\"Base\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 309 212\"><g transform=\"translate(0 0)\"><path d=\"M 164.142 23.154 C 157.878 19.503 150.138 19.478 143.852 23.091 L 0.004 90.845 C 0.004 90.845 0.013 117.341 0 120.444 C -0.013 123.551 1.509 126.662 4.57 128.454 L 143.987 208.813 C 150.201 212.396 157.848 212.426 164.087 208.889 L 303.585 129.242 C 306.224 127.724 307.737 125.224 308.121 122.581 C 308.631 119.065 308.218 90.845 308.218 90.845 L 164.142 23.158 Z\" fill=\"rgb(122,122,122)\" stroke-width=\"0.766983\" stroke=\"rgb(0,0,0)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 164.142 2.756 C 157.877 -0.895 150.137 -0.92 143.852 2.692 L 4.637 82.643 C -1.518 86.176 -1.552 95.041 4.574 98.625 L 143.991 178.984 C 150.205 182.567 157.852 182.597 164.091 179.06 L 303.588 99.413 C 309.743 95.872 309.768 87.002 303.635 83.427 Z\" fill=\"rgb(255,255,255)\" stroke-width=\"0.766983\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 145.264 179.66 L 145.264 209.49\" fill=\"transparent\" stroke-width=\"0.766983\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 163.539 179.969 L 163.539 208.855\" fill=\"transparent\" stroke-width=\"0.766983\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 163.236 10.741 C 157.54 7.419 150.5 7.398 144.784 10.682 L 18.187 83.39 C 12.592 86.603 12.559 94.663 18.127 97.922 L 144.91 170.996 C 150.563 174.255 157.515 174.28 163.189 171.064 L 290.048 98.634 C 295.646 95.413 295.667 87.349 290.09 84.094 L 163.24 10.737 Z\" fill=\"rgb(0,0,0)\" stroke-width=\"1.26471\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 162.122 20.505 C 157.118 17.588 150.938 17.571 145.917 20.455 L 34.746 84.301 C 29.83 87.122 29.805 94.204 34.695 97.062 L 146.027 161.233 C 150.989 164.096 157.093 164.117 162.08 161.293 L 273.48 97.69 C 278.395 94.866 278.417 87.779 273.518 84.925 L 162.127 20.505 Z\" fill=\"transparent\" stroke-width=\"0.766983\" stroke=\"rgb(255,255,255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 160.31 36.406 C 156.44 34.151 151.655 34.134 147.768 36.364 L 61.726 85.776 C 57.923 87.96 57.902 93.44 61.688 95.654 L 147.852 145.319 C 151.693 147.532 156.419 147.549 160.276 145.365 L 246.491 96.143 C 250.294 93.955 250.311 88.47 246.521 86.261 L 160.31 36.402 Z\" fill=\"transparent\" stroke-width=\"0.766983\" stroke=\"rgb(255,255,255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 158.543 51.907 C 155.774 50.292 152.355 50.28 149.572 51.877 L 88.032 87.222 C 85.313 88.786 85.296 92.702 88.002 94.287 L 149.631 129.809 C 152.38 131.394 155.757 131.406 158.518 129.842 L 220.185 94.633 C 222.904 93.069 222.917 89.148 220.206 87.567 Z\" fill=\"transparent\" stroke-width=\"0.766983\" stroke=\"rgb(255,255,255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><g transform=\"translate(274.391 91.613)\"><path d=\"M 0 24.203 L 0 54.155 L 29.294 37.714 C 32.094 36.141 33.826 33.182 33.826 29.974 L 33.826 0 C 33.826 0 33.982 5.586 26.643 8.798 L 0 24.198 Z\" fill=\"rgb(206,206,206)\"></path></g><g transform=\"translate(163.539 158.734)\"><path d=\"M 0 21.235 L 0.548 50.154 L 36.293 29.443 L 36.293 0 Z\" fill=\"rgb(206,206,206)\"></path></g><g transform=\"translate(0 90.844)\"><path d=\"M 30.087 22.486 L 30.087 52.316 L 4.57 37.608 C 4.57 37.608 0 36.347 0 27.562 L 0 0 C 0 0 0.177 5.21 4.57 7.778 C 8.963 10.345 30.087 22.486 30.087 22.486 Z\" fill=\"rgb(204,204,204)\"></path></g><path d=\"M 282.965 111.188 L 282.965 140.533\" fill=\"transparent\" stroke-width=\"0.766983\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 278.412 114.156 L 278.412 143.502\" fill=\"transparent\" stroke-width=\"0.766983\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 9.652 114.277 C 9.652 114.277 10.369 113.881 12.013 112.953 C 13.025 112.384 14.02 111.79 15.276 111.861 C 18.758 112.064 21.933 115.824 21.857 120.251 C 21.819 122.472 20.972 124.188 19.698 125.191 C 18.425 126.195 15.757 127.544 15.757 127.544\" fill=\"rgb(122,122,122)\"></path><path d=\"M 9.652 114.277 C 9.652 114.277 10.369 113.881 12.013 112.953 C 13.025 112.384 14.02 111.79 15.276 111.861 C 18.758 112.064 21.933 115.824 21.857 120.251 C 21.819 122.472 20.972 124.188 19.698 125.191 C 18.425 126.195 15.757 127.544 15.757 127.544\" fill=\"transparent\" stroke-width=\"0.766983\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 18.389 122.276 C 18.309 126.72 15.004 129.148 11.517 127.875 C 8.495 126.77 6.391 123.191 6.467 119.764 C 6.543 116.336 8.781 113.714 11.804 113.887 C 15.286 114.089 18.461 117.85 18.385 122.276 Z\" fill=\"rgb(255,255,255)\" stroke-width=\"0.766983\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 31.777 127.25 C 31.777 127.25 32.494 126.853 34.138 125.926 C 35.15 125.357 36.145 124.762 37.401 124.834 C 40.883 125.036 44.058 128.797 43.982 133.223 C 43.944 135.445 43.097 137.161 41.823 138.164 C 40.55 139.167 37.882 140.516 37.882 140.516\" fill=\"rgb(122,122,122)\"></path><path d=\"M 31.777 127.25 C 31.777 127.25 32.494 126.853 34.138 125.926 C 35.15 125.357 36.145 124.762 37.401 124.834 C 40.883 125.036 44.058 128.797 43.982 133.223 C 43.944 135.445 43.097 137.161 41.823 138.164 C 40.55 139.167 37.882 140.516 37.882 140.516\" fill=\"transparent\" stroke-width=\"0.766983\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 40.514 135.249 C 40.434 139.692 37.129 142.12 33.642 140.847 C 30.62 139.743 28.516 136.164 28.592 132.736 C 28.672 129.322 30.906 126.687 33.929 126.86 C 37.411 127.062 40.586 130.822 40.51 135.249 Z\" fill=\"rgb(255,255,255)\" stroke-width=\"0.766983\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 269.552 133.003 C 269.48 137.611 266.285 143.172 262.368 145.537 C 258.401 147.931 255.088 146.215 255.004 141.591 C 254.919 136.865 258.233 131.009 262.356 128.632 C 266.424 126.283 269.624 128.299 269.552 133.003 Z\" fill=\"rgb(255,255,255)\" stroke-width=\"0.766983\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 48.953 134.02 L 48.953 144.601 L 119.549 185.611 L 119.549 174.511 Z\" fill=\"rgb(255,255,255)\" stroke-width=\"0.766983\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 172.09 179.54 L 172.09 199.392 L 189.657 189.468 L 189.657 169.199 Z\" fill=\"rgb(0,0,0)\" stroke-width=\"0.766983\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 172.09 179.817 L 172.09 195.107 L 185.833 187.325 L 185.833 171.617 Z\" fill=\"rgb(255,255,255)\" stroke-width=\"0.766983\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 198.893 174.658 L 245.851 147.062\" fill=\"transparent\" stroke-width=\"0.766983\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><g transform=\"translate(102.773 155.227)\"><path d=\"M 5.717 3.296 L 5.717 32.996 L 0 29.83 L 0 0 Z\" fill=\"rgb(206,206,206)\"></path></g><g transform=\"translate(112.145 160.629)\"><path d=\"M 0 0 L 0 29.83 L 33.118 48.86 L 33.118 19.03 Z\" fill=\"rgb(206,206,206)\"></path></g><g transform=\"translate(203.281 153.531)\"><path d=\"M 0 3.154 L 0 32.803 L 5.523 29.83 L 5.523 0 Z\" fill=\"rgb(206,206,206)\"></path></g><path d=\"M 127.176 175.777 L 127.176 193.939\" fill=\"transparent\" stroke-width=\"0.766983\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 131.146 178.086 L 131.146 196.247\" fill=\"transparent\" stroke-width=\"0.766983\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 134.996 180.57 L 134.996 198.731\" fill=\"transparent\" stroke-width=\"0.766983\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></g></svg>',svgContentId:11199180771,withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-50}},{ref:ref4,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-6phbr3\",\"data-framer-name\":\"USUAL\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nt2kS3X5C:{background:{alt:\"\",fit:\"fill\",pixelHeight:173,pixelWidth:173,src:\"https://framerusercontent.com/images/yX2lVaJ6XvjjWDio85QVJK1KAPo.svg\"}},qSA0MXLLq:{background:{alt:\"\",fit:\"fill\",pixelHeight:173,pixelWidth:173,src:\"https://framerusercontent.com/images/yX2lVaJ6XvjjWDio85QVJK1KAPo.svg\"}},Tdcf2m17Y:{background:{alt:\"\",fit:\"fill\",pixelHeight:173,pixelWidth:173,src:\"https://framerusercontent.com/images/yX2lVaJ6XvjjWDio85QVJK1KAPo.svg\"}},YwQdG6HP0:{background:{alt:\"\",fit:\"fill\",pixelHeight:173,pixelWidth:173,src:\"https://framerusercontent.com/images/yX2lVaJ6XvjjWDio85QVJK1KAPo.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2461+0+0+120+0+0+1064+0+1431+30+0+0+0+0+120+0),pixelHeight:173,pixelWidth:173,src:\"https://framerusercontent.com/images/yX2lVaJ6XvjjWDio85QVJK1KAPo.svg\"},className:\"framer-j9tkgl\",\"data-framer-name\":\"USUAL\"})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-100}},{ref:ref4,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-r0vh9i\",\"data-framer-name\":\"Glass\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1a7hisp\",\"data-framer-name\":\"Glass\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:319,intrinsicWidth:309,svg:'<svg width=\"309\" height=\"319\" viewBox=\"0 0 309 319\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path style=\"mix-blend-mode:hard-light\" opacity=\"0.3\" d=\"M308.142 99.0861C308.138 94.4405 303.121 91.5232 299.083 93.8165L170.863 166.558C166.356 169.18 163.582 174.003 163.582 179.218V316.624L301.473 237.538L302.556 236.931C306.106 234.937 308.298 231.965 308.294 227.897L308.142 99.0904V99.0861Z\" fill=\"url(#paint0_linear_205_35664)\"/>\\n<path style=\"mix-blend-mode:hard-light\" opacity=\"0.2\" d=\"M167.781 168.415L295.019 96.1241L299.079 93.8223C299.079 93.8223 301.035 92.7515 303.058 92.6883L143.655 2.4093L140.387 0.769395C140.387 0.769395 136.138 -1.24571 129.726 1.6842C123.314 4.6141 53.7129 45.0173 53.7129 45.0173L6.61523 72.1874L167.781 168.423V168.415Z\" fill=\"url(#paint1_linear_205_35664)\"/>\\n<path style=\"mix-blend-mode:hard-light\" opacity=\"0.3\" d=\"M163.202 183.08L163.628 178.438C164.003 174.32 165.727 171.187 166.157 170.652L167.78 168.413L6.61442 72.1777L4.56137 72.9197C3.7351 73.7375 0.345686 79.1252 0.0126466 80.2381L0 83.8721L0.0885259 153.03L0 209.82L0.29931 225.46C0.0800945 229.554 2.22588 234.026 4.65412 235.426L145.26 316.78C145.26 316.78 148.831 318.812 153.708 318.812C158.586 318.812 163.653 316.279 163.653 316.279L163.506 193.577L163.206 183.076L163.202 183.08Z\" fill=\"url(#paint2_linear_205_35664)\"/>\\n<path d=\"M0.0117188 84.1348L163.201 183.081\" stroke=\"black\" stroke-width=\"0.766983\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M6.54297 72.1777L167.78 168.413\" stroke=\"black\" stroke-width=\"0.766983\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M0.0117188 227.644V84.1294C0.0117188 78.9146 2.78564 74.0918 7.29222 71.4696L129.728 1.6747C133.636 -0.551186 138.43 -0.559621 142.342 1.65783L305.042 93.8044\" stroke=\"black\" stroke-width=\"0.766983\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M308.142 99.0861C308.138 94.4405 303.121 91.5232 299.083 93.8165L170.863 166.558C166.356 169.18 163.582 174.003 163.582 179.218V316.624L301.473 237.538L302.556 236.931C306.106 234.937 308.298 231.965 308.294 227.897L308.142 99.0904V99.0861Z\" stroke=\"black\" stroke-width=\"0.766983\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_205_35664\" x1=\"155.8\" y1=\"222.217\" x2=\"365.199\" y2=\"141.387\" gradientUnits=\"userSpaceOnUse\">\\n<stop offset=\"0.14\" stop-color=\"#7A7A7A\"/>\\n<stop offset=\"0.25\" stop-color=\"#A8A8A8\"/>\\n<stop offset=\"0.36\" stop-color=\"#CDCDCD\"/>\\n<stop offset=\"0.44\" stop-color=\"#E4E4E4\"/>\\n<stop offset=\"0.5\" stop-color=\"#EDEDED\"/>\\n<stop offset=\"0.64\" stop-color=\"#C8C8C8\"/>\\n<stop offset=\"0.91\" stop-color=\"#7A7A7A\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_205_35664\" x1=\"128.133\" y1=\"-24.069\" x2=\"196.486\" y2=\"168.423\" gradientUnits=\"userSpaceOnUse\">\\n<stop offset=\"0.14\" stop-color=\"#7A7A7A\"/>\\n<stop offset=\"0.17\" stop-color=\"#888888\"/>\\n<stop offset=\"0.26\" stop-color=\"#A7A7A7\"/>\\n<stop offset=\"0.35\" stop-color=\"#C0C0C0\"/>\\n<stop offset=\"0.46\" stop-color=\"#D4D4D4\"/>\\n<stop offset=\"0.58\" stop-color=\"#E2E2E2\"/>\\n<stop offset=\"0.73\" stop-color=\"#EAEAEA\"/>\\n<stop offset=\"1\" stop-color=\"#EDEDED\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_205_35664\" x1=\"-22.1346\" y1=\"72.1777\" x2=\"181.839\" y2=\"323.662\" gradientUnits=\"userSpaceOnUse\">\\n<stop offset=\"0.0924715\" stop-color=\"#7A7A7A\"/>\\n<stop offset=\"0.25\" stop-color=\"#A8A8A8\"/>\\n<stop offset=\"0.36\" stop-color=\"#CDCDCD\"/>\\n<stop offset=\"0.44\" stop-color=\"#E4E4E4\"/>\\n<stop offset=\"0.5\" stop-color=\"#EDEDED\"/>\\n<stop offset=\"0.64\" stop-color=\"#C8C8C8\"/>\\n<stop offset=\"0.91\" stop-color=\"#7A7A7A\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.2,skewX:0,skewY:0,x:0,y:0}},{ref:ref4,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-o6fuz2\",\"data-framer-name\":\"Circle\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-16mkfj4\",\"data-framer-name\":\"Circle\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:978,intrinsicWidth:976,svg:'<svg width=\"976\" height=\"978\" viewBox=\"0 0 976 978\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M975.797 485.063C975.778 482.546 975.74 480.033 975.684 477.525L974.934 477.542C974.877 475.038 974.801 472.538 974.707 470.043L975.456 470.015C975.362 467.512 975.249 465.014 975.117 462.521L974.368 462.561C974.235 460.049 974.083 457.543 973.912 455.041L974.66 454.99C974.489 452.485 974.299 449.985 974.091 447.49L973.343 447.553C973.135 445.062 972.908 442.576 972.663 440.096L973.409 440.022C973.161 437.518 972.895 435.02 972.609 432.527L971.864 432.612C971.579 430.119 971.275 427.632 970.952 425.151L971.696 425.055C971.372 422.57 971.031 420.091 970.67 417.618L969.928 417.726C969.567 415.245 969.187 412.77 968.788 410.301L969.528 410.181C969.128 407.7 968.708 405.224 968.27 402.755L967.532 402.886C967.095 400.421 966.639 397.962 966.165 395.509L966.902 395.367C966.426 392.905 965.932 390.45 965.419 388.001L964.685 388.155C964.171 385.698 963.638 383.247 963.087 380.803L963.818 380.638C963.266 378.191 962.696 375.75 962.108 373.317L961.379 373.493C960.791 371.062 960.185 368.639 959.561 366.222L960.287 366.034C959.658 363.6 959.011 361.172 958.346 358.752L957.623 358.951C956.958 356.535 956.276 354.126 955.576 351.725L956.296 351.515C955.595 349.11 954.876 346.713 954.139 344.323L953.422 344.545C952.683 342.147 951.925 339.757 951.15 337.375L951.863 337.143C951.086 334.756 950.291 332.377 949.479 330.007L948.769 330.25C947.958 327.883 947.129 325.524 946.283 323.174L946.988 322.919C946.138 320.557 945.27 318.204 944.384 315.859L943.682 316.124C942.797 313.779 941.893 311.442 940.973 309.115L941.67 308.839C940.748 306.508 939.809 304.185 938.852 301.872L938.159 302.158C937.202 299.844 936.228 297.538 935.236 295.241L935.925 294.944C934.929 292.639 933.917 290.343 932.888 288.056L932.204 288.364C931.176 286.081 930.131 283.808 929.07 281.544L929.749 281.225C928.684 278.955 927.603 276.694 926.504 274.443L925.83 274.772C924.731 272.519 923.615 270.276 922.483 268.043L923.152 267.703C922.017 265.467 920.867 263.24 919.699 261.023L919.035 261.373C917.869 259.158 916.686 256.954 915.487 254.759L916.145 254.4C914.941 252.197 913.721 250.004 912.484 247.822L911.832 248.192C910.597 246.014 909.346 243.845 908.079 241.688L908.726 241.308C907.457 239.147 906.172 236.996 904.87 234.856L904.229 235.246C902.927 233.105 901.609 230.974 900.275 228.855L900.91 228.455C899.574 226.333 898.222 224.221 896.855 222.12L896.226 222.53C894.861 220.432 893.48 218.346 892.083 216.272L892.705 215.853C891.304 213.771 889.887 211.701 888.455 209.642L887.84 210.07C886.409 208.015 884.964 205.971 883.503 203.938L884.112 203.5C882.649 201.465 881.171 199.441 879.678 197.429L879.075 197.876C877.583 195.865 876.075 193.865 874.552 191.878L875.148 191.422C873.622 189.431 872.082 187.453 870.527 185.486L869.938 185.951C868.385 183.988 866.818 182.037 865.236 180.098L865.817 179.624C864.231 177.681 862.631 175.751 861.016 173.833L860.443 174.316C858.83 172.4 857.203 170.497 855.561 168.607L856.128 168.115C854.484 166.222 852.826 164.342 851.153 162.475L850.594 162.975C848.924 161.11 847.24 159.258 845.541 157.419L846.092 156.911C844.391 155.068 842.676 153.24 840.946 151.424L840.403 151.941C838.677 150.128 836.937 148.329 835.183 146.543L835.718 146.017C833.961 144.228 832.191 142.453 830.407 140.691L829.88 141.225C828.099 139.466 826.304 137.72 824.496 135.988L825.015 135.447C823.204 133.713 821.38 131.992 819.543 130.286L819.033 130.835C817.199 129.131 815.352 127.442 813.492 125.766L813.994 125.209C812.131 123.531 810.255 121.867 808.367 120.218L807.874 120.783C805.988 119.136 804.09 117.504 802.179 115.886L802.664 115.313C800.75 113.693 798.824 112.087 796.886 110.496L796.41 111.076C794.476 109.488 792.529 107.915 790.57 106.357L791.037 105.77C789.075 104.21 787.101 102.664 785.114 101.133L784.656 101.727C782.673 100.199 780.678 98.6853 778.671 97.1871L779.12 96.5861C777.112 95.0872 775.092 93.6034 773.06 92.1349L772.621 92.7428C770.592 91.2765 768.552 89.8255 766.501 88.3899L766.93 87.7754C764.876 86.3377 762.809 84.9153 760.731 83.5086L760.311 84.1297C758.24 82.7275 756.157 81.3409 754.064 79.97L754.474 79.3425C752.378 77.9695 750.269 76.6122 748.15 75.2708L747.749 75.9045C745.633 74.5652 743.507 73.2417 741.369 71.9343L741.76 71.2945C739.623 69.9876 737.476 68.6967 735.317 67.4219L734.936 68.0677C732.782 66.7953 730.617 65.539 728.441 64.2991L728.813 63.6475C726.634 62.4056 724.445 61.1801 722.245 59.971L721.884 60.6283C719.692 59.4235 717.49 58.2352 715.278 57.0634L715.629 56.4006C713.415 55.2279 711.191 54.0718 708.957 52.9324L708.617 53.6005C706.386 52.4628 704.146 51.3419 701.896 50.2378L702.226 49.5645C699.977 48.4609 697.718 47.3742 695.45 46.3044L695.13 46.9828C692.868 45.9161 690.597 44.8665 688.317 43.8338L688.626 43.1506C686.342 42.1164 684.049 41.0993 681.746 40.0995L681.447 40.7874C679.152 39.7909 676.848 38.8115 674.535 37.8495L674.823 37.157C672.511 36.1957 670.191 35.2518 667.862 34.3252L667.585 35.0221C665.259 34.097 662.925 33.1893 660.582 32.2993L660.848 31.5981C658.504 30.7078 656.152 29.8351 653.791 28.98L653.536 29.6852C651.187 28.8345 648.83 28.0014 646.464 27.186L646.709 26.4769C644.34 25.6603 641.962 24.8614 639.577 24.0804L639.343 24.7932C636.963 24.0138 634.574 23.2523 632.177 22.5088L632.4 21.7925C630.011 21.0517 627.616 20.3287 625.212 19.6238L625.001 20.3435C622.601 19.6397 620.193 18.9539 617.778 18.2863L617.978 17.5634C615.559 16.8947 613.133 16.2442 610.699 15.6121L610.511 16.338C608.095 15.7105 605.671 15.101 603.241 14.5098L603.418 13.7811C600.986 13.1894 598.546 12.616 596.099 12.0611L595.933 12.7925C593.491 12.2384 591.041 11.7027 588.584 11.1855L588.739 10.4516C586.291 9.93614 583.836 9.43909 581.374 8.96058L581.231 9.6968C578.779 9.22023 576.321 8.76208 573.856 8.3225L573.988 7.58415C571.519 7.14389 569.044 6.72223 566.563 6.31931L566.443 7.05962C563.974 6.65873 561.499 6.27643 559.018 5.91287L559.127 5.17079C556.654 4.80846 554.175 4.4647 551.691 4.13968L551.594 4.88334C549.113 4.55882 546.626 4.25299 544.134 3.96601L544.22 3.22094C541.727 2.9339 539.229 2.66569 536.724 2.41645L536.65 3.16277C534.17 2.91593 531.685 2.68772 529.194 2.47829L529.257 1.73092C526.762 1.52117 524.262 1.33022 521.757 1.15822L521.706 1.90646C519.205 1.73472 516.698 1.58189 514.187 1.44813L514.227 0.699189C511.733 0.56641 509.236 0.452381 506.733 0.357241L506.704 1.1067C504.21 1.01187 501.71 0.935827 499.206 0.878721L499.223 0.128916C496.715 0.0717231 494.202 0.0334914 491.685 0.0143584L491.679 0.764337C490.423 0.754785 489.165 0.75 487.906 0.75C486.647 0.75 485.389 0.754785 484.132 0.764337L484.127 0.0143583C481.609 0.0334913 479.097 0.0717228 476.589 0.128916L476.606 0.87872C474.102 0.935826 471.602 1.01186 469.107 1.1067L469.079 0.35724C466.576 0.45238 464.078 0.566409 461.585 0.699189L461.625 1.44813C459.114 1.58189 456.607 1.73472 454.106 1.90646L454.054 1.15822C451.549 1.33022 449.049 1.52117 446.555 1.73092L446.618 2.47829C444.127 2.68772 441.642 2.91593 439.162 3.16277L439.087 2.41645C436.583 2.66569 434.085 2.9339 431.592 3.22094L431.678 3.96601C429.185 4.25299 426.699 4.55882 424.218 4.88334L424.121 4.13968C421.636 4.4647 419.158 4.80846 416.685 5.17079L416.794 5.91287C414.313 6.27643 411.838 6.65873 409.369 7.05962L409.249 6.31931C406.768 6.72223 404.293 7.14389 401.824 7.58415L401.956 8.3225C399.491 8.76208 397.033 9.22023 394.581 9.6968L394.438 8.96058C391.976 9.4391 389.521 9.93615 387.073 10.4516L387.227 11.1855C384.771 11.7027 382.321 12.2384 379.878 12.7925L379.712 12.0611C377.266 12.616 374.826 13.1894 372.394 13.7811L372.571 14.5098C370.14 15.101 367.717 15.7105 365.301 16.338L365.112 15.6121C362.679 16.2442 360.252 16.8947 357.833 17.5634L358.033 18.2863C355.618 18.9539 353.211 19.6397 350.811 20.3435L350.6 19.6238C348.196 20.3287 345.8 21.0517 343.412 21.7925L343.634 22.5088C341.238 23.2523 338.849 24.0138 336.468 24.7932L336.235 24.0804C333.849 24.8614 331.472 25.6603 329.103 26.4769L329.347 27.186C326.982 28.0014 324.625 28.8345 322.276 29.6852L322.021 28.98C319.66 29.8351 317.307 30.7078 314.964 31.5982L315.23 32.2993C312.887 33.1894 310.553 34.097 308.227 35.0221L307.95 34.3252C305.621 35.2518 303.3 36.1958 300.989 37.157L301.277 37.8495C298.964 38.8115 296.659 39.7909 294.364 40.7874L294.066 40.0995C291.763 41.0993 289.47 42.1164 287.186 43.1506L287.495 43.8339C285.214 44.8665 282.943 45.9162 280.682 46.9828L280.362 46.3044C278.093 47.3742 275.835 48.461 273.586 49.5645L273.916 50.2378C271.666 51.3419 269.426 52.4629 267.195 53.6005L266.854 52.9324C264.621 54.0718 262.397 55.228 260.183 56.4007L260.534 57.0634C258.322 58.2352 256.12 59.4235 253.928 60.6283L253.567 59.971C251.367 61.1801 249.178 62.4056 246.999 63.6475L247.37 64.2991C245.195 65.5391 243.03 66.7953 240.876 68.0677L240.494 67.4219C238.336 68.6967 236.188 69.9876 234.051 71.2945L234.443 71.9343C232.305 73.2417 230.178 74.5652 228.062 75.9045L227.661 75.2708C225.542 76.6122 223.434 77.9695 221.337 79.3425L221.748 79.97C219.654 81.3409 217.572 82.7275 215.501 84.1297L215.08 83.5086C213.003 84.9153 210.936 86.3377 208.881 87.7754L209.311 88.3899C207.259 89.8255 205.219 91.2765 203.191 92.7428L202.751 92.1349C200.72 93.6034 198.7 95.0872 196.692 96.5861L197.141 97.1871C195.134 98.6853 193.138 100.199 191.155 101.727L190.698 101.133C188.711 102.664 186.737 104.21 184.775 105.77L185.242 106.357C183.283 107.915 181.336 109.488 179.402 111.076L178.926 110.496C176.987 112.087 175.061 113.693 173.148 115.313L173.633 115.886C171.722 117.504 169.823 119.136 167.938 120.783L167.445 120.218C165.556 121.867 163.681 123.531 161.818 125.209L162.32 125.766C160.46 127.442 158.613 129.131 156.779 130.835L156.268 130.286C154.431 131.992 152.607 133.713 150.797 135.447L151.315 135.988C149.508 137.72 147.713 139.466 145.932 141.225L145.405 140.691C143.621 142.453 141.851 144.228 140.094 146.017L140.629 146.543C138.875 148.329 137.135 150.128 135.408 151.941L134.865 151.424C133.136 153.24 131.421 155.068 129.719 156.911L130.27 157.419C128.572 159.258 126.888 161.11 125.217 162.975L124.659 162.475C122.986 164.342 121.328 166.222 119.684 168.115L120.25 168.607C118.609 170.497 116.982 172.4 115.369 174.316L114.795 173.833C113.181 175.751 111.58 177.681 109.995 179.624L110.576 180.098C108.994 182.037 107.426 183.988 105.873 185.951L105.285 185.486C103.73 187.453 102.19 189.431 100.664 191.422L101.26 191.878C99.7368 193.865 98.229 195.865 96.7363 197.876L96.134 197.429C94.6407 199.441 93.1625 201.465 91.6996 203.5L92.3086 203.938C90.8479 205.971 89.4023 208.015 87.9722 210.07L87.3565 209.642C85.9244 211.701 84.5076 213.771 83.1064 215.853L83.7286 216.272C82.332 218.346 80.9509 220.432 79.5855 222.53L78.957 222.12C77.5895 224.221 76.2376 226.333 74.9017 228.455L75.5364 228.855C74.2025 230.974 72.8844 233.105 71.5823 235.246L70.9415 234.856C69.6402 236.996 68.3549 239.147 67.0858 241.308L67.7325 241.688C66.4655 243.845 65.2146 246.014 63.9799 248.192L63.3274 247.822C62.0908 250.004 60.8705 252.197 59.6667 254.4L60.3248 254.759C59.1256 256.954 57.9426 259.158 56.7762 261.373L56.1127 261.023C54.9452 263.24 53.7943 265.467 52.66 267.703L53.3289 268.043C52.1963 270.276 51.0805 272.519 49.9814 274.772L49.3073 274.443C48.209 276.694 47.1275 278.955 46.0628 281.225L46.7419 281.544C45.6803 283.808 44.6355 286.081 43.6078 288.364L42.9239 288.056C41.8945 290.343 40.8822 292.639 39.8871 294.944L40.5757 295.241C39.5842 297.538 38.6097 299.844 37.6525 302.158L36.9594 301.872C36.0028 304.185 35.0635 306.508 34.1415 308.839L34.8389 309.115C33.9184 311.442 33.0151 313.779 32.1295 316.124L31.4278 315.859C30.5421 318.204 29.6739 320.557 28.8232 322.919L29.5289 323.173C28.6825 325.524 27.8536 327.883 27.0424 330.25L26.3329 330.007C25.5204 332.377 24.7255 334.756 23.9486 337.143L24.6617 337.375C23.8865 339.757 23.129 342.147 22.3895 344.545L21.6728 344.323C20.9359 346.713 20.2167 349.11 19.5155 351.515L20.2356 351.725C19.5354 354.126 18.8532 356.535 18.1891 358.951L17.4659 358.752C16.8008 361.172 16.1537 363.6 15.525 366.034L16.2511 366.222C15.6271 368.639 15.021 371.062 14.4331 373.493L13.7041 373.317C13.1157 375.75 12.5454 378.191 11.9934 380.638L12.725 380.803C12.1739 383.247 11.6411 385.697 11.1267 388.155L10.3927 388.001C9.88013 390.45 9.38589 392.905 8.91008 395.367L9.64646 395.509C9.17251 397.962 8.71688 400.421 8.27972 402.886L7.54124 402.755C7.10341 405.224 6.68408 407.7 6.2834 410.181L7.02381 410.301C6.62521 412.77 6.2451 415.245 5.88361 417.726L5.14145 417.618C4.78114 420.091 4.43931 422.57 4.11611 425.055L4.85984 425.151C4.53714 427.633 4.23303 430.119 3.94766 432.612L3.20253 432.527C2.91715 435.02 2.65048 437.518 2.40268 440.022L3.14903 440.096C2.90359 442.576 2.67667 445.062 2.46843 447.553L1.72104 447.49C1.51247 449.985 1.32261 452.485 1.15158 454.99L1.89984 455.041C1.72908 457.543 1.57712 460.049 1.44412 462.561L0.695167 462.521C0.563156 465.014 0.449786 467.512 0.355195 470.015L1.10466 470.043C1.01037 472.538 0.934765 475.038 0.877985 477.542L0.128178 477.525C0.0713122 480.033 0.0332996 482.546 0.0142762 485.063L0.764255 485.068C0.754757 486.325 0.75 487.583 0.75 488.842C0.75 490.101 0.754757 491.359 0.764255 492.615L0.0142761 492.621C0.0332994 495.138 0.0713121 497.651 0.128178 500.159L0.877985 500.142C0.934765 502.646 1.01037 505.146 1.10466 507.641L0.355196 507.669C0.449788 510.172 0.563157 512.67 0.695168 515.163L1.44412 515.123C1.57712 517.635 1.72908 520.141 1.89984 522.643L1.15158 522.694C1.32261 525.199 1.51247 527.699 1.72104 530.194L2.46843 530.131C2.67667 532.622 2.90359 535.108 3.14903 537.588L2.40268 537.662C2.65049 540.166 2.91715 542.664 3.20253 545.157L3.94767 545.072C4.23303 547.564 4.53714 550.051 4.85985 552.533L4.11612 552.629C4.43932 555.114 4.78114 557.593 5.14145 560.066L5.88361 559.958C6.2451 562.439 6.62521 564.914 7.02381 567.383L6.28339 567.503C6.68407 569.984 7.1034 572.46 7.54123 574.929L8.27972 574.798C8.71688 577.263 9.1725 579.722 9.64645 582.174L8.91008 582.317C9.38588 584.779 9.88012 587.234 10.3926 589.683L11.1267 589.529C11.6411 591.986 12.1739 594.437 12.725 596.881L11.9934 597.046C12.5454 599.493 13.1157 601.933 13.7041 604.367L14.4331 604.19C15.021 606.622 15.6271 609.045 16.2511 611.462L15.525 611.649C16.1537 614.084 16.8008 616.512 17.4659 618.932L18.1891 618.733C18.8532 621.149 19.5354 623.558 20.2356 625.959L19.5155 626.169C20.2167 628.574 20.9359 630.971 21.6728 633.36L22.3895 633.139C23.129 635.537 23.8865 637.927 24.6617 640.308L23.9486 640.541C24.7255 642.928 25.5204 645.307 26.3329 647.677L27.0423 647.434C27.8536 649.801 28.6825 652.16 29.5289 654.51L28.8232 654.764C29.6738 657.127 30.5421 659.48 31.4278 661.825L32.1294 661.56C33.0151 663.905 33.9183 666.242 34.8389 668.569L34.1415 668.845C35.0634 671.176 36.0028 673.499 36.9594 675.812L37.6525 675.525C38.6097 677.84 39.5841 680.146 40.5757 682.443L39.8871 682.74C40.8822 685.045 41.8945 687.341 42.9239 689.628L43.6078 689.32C44.6355 691.603 45.6803 693.876 46.7419 696.14L46.0628 696.458C47.1275 698.729 48.209 700.99 49.3073 703.241L49.9814 702.912C51.0805 705.165 52.1963 707.408 53.3289 709.641L52.66 709.981C53.7943 712.217 54.9452 714.444 56.1127 716.661L56.7762 716.311C57.9427 718.526 59.1256 720.73 60.3248 722.925L59.6667 723.284C60.8705 725.487 62.0908 727.679 63.3274 729.861L63.9799 729.492C65.2146 731.67 66.4655 733.839 67.7325 735.996L67.0857 736.376C68.3549 738.537 69.6402 740.688 70.9415 742.828L71.5823 742.438C72.8844 744.579 74.2025 746.71 75.5364 748.829L74.9016 749.229C76.2376 751.351 77.5894 753.463 78.957 755.563L79.5855 755.154C80.9509 757.252 82.332 759.338 83.7286 761.412L83.1064 761.831C84.5076 763.913 85.9243 765.983 87.3565 768.042L87.9722 767.613C89.4023 769.669 90.8478 771.713 92.3086 773.746L91.6995 774.184C93.1625 776.219 94.6407 778.243 96.134 780.255L96.7363 779.808C98.229 781.819 99.7368 783.818 101.259 785.806L100.664 786.262C102.19 788.253 103.73 790.231 105.285 792.198L105.873 791.732C107.426 793.696 108.994 795.647 110.576 797.586L109.995 798.06C111.58 800.003 113.181 801.933 114.795 803.851L115.369 803.368C116.982 805.284 118.609 807.187 120.25 809.077L119.684 809.568C121.328 811.461 122.986 813.342 124.659 815.209L125.217 814.709C126.888 816.574 128.572 818.426 130.27 820.264L129.719 820.773C131.421 822.615 133.136 824.444 134.865 826.26L135.408 825.743C137.135 827.556 138.875 829.355 140.629 831.141L140.094 831.667C141.851 833.456 143.621 835.231 145.405 836.993L145.932 836.459C147.713 838.218 149.507 839.964 151.315 841.695L150.797 842.237C152.607 843.971 154.431 845.692 156.268 847.398L156.779 846.849C158.613 848.553 160.46 850.242 162.32 851.918L161.818 852.475C163.681 854.153 165.556 855.817 167.445 857.466L167.938 856.901C169.823 858.548 171.722 860.18 173.632 861.798L173.148 862.371C175.061 863.991 176.987 865.596 178.926 867.188L179.402 866.608C181.336 868.195 183.283 869.768 185.242 871.327L184.775 871.914C186.737 873.474 188.711 875.02 190.698 876.551L191.155 875.957C193.138 877.485 195.134 878.999 197.141 880.497L196.692 881.098C198.7 882.597 200.72 884.081 202.751 885.549L203.191 884.941C205.219 886.407 207.259 887.858 209.311 889.294L208.881 889.909C210.936 891.346 213.003 892.769 215.08 894.175L215.501 893.554C217.572 894.956 219.654 896.343 221.748 897.714L221.337 898.341C223.434 899.714 225.542 901.072 227.661 902.413L228.062 901.779C230.178 903.119 232.305 904.442 234.443 905.75L234.051 906.389C236.188 907.696 238.336 908.987 240.494 910.262L240.876 909.616C243.03 910.889 245.195 912.145 247.37 913.385L246.999 914.036C249.178 915.278 251.367 916.504 253.567 917.713L253.928 917.056C256.12 918.26 258.322 919.449 260.534 920.62L260.183 921.283C262.397 922.456 264.62 923.612 266.854 924.752L267.195 924.083C269.426 925.221 271.666 926.342 273.916 927.446L273.586 928.119C275.835 929.223 278.093 930.31 280.362 931.38L280.682 930.701C282.943 931.768 285.214 932.818 287.495 933.85L287.186 934.533C289.47 935.568 291.763 936.585 294.066 937.584L294.364 936.897C296.659 937.893 298.964 938.872 301.277 939.834L300.989 940.527C303.3 941.488 305.621 942.432 307.95 943.359L308.227 942.662C310.553 943.587 312.887 944.495 315.23 945.385L314.964 946.086C317.307 946.976 319.66 947.849 322.021 948.704L322.276 947.999C324.625 948.849 326.982 949.683 329.347 950.498L329.103 951.207C331.472 952.024 333.849 952.823 336.235 953.604L336.468 952.891C338.849 953.67 341.238 954.432 343.634 955.175L343.412 955.891C345.8 956.632 348.196 957.355 350.6 958.06L350.811 957.34C353.211 958.044 355.618 958.73 358.033 959.398L357.833 960.121C360.252 960.789 362.679 961.44 365.112 962.072L365.301 961.346C367.717 961.974 370.14 962.583 372.571 963.174L372.394 963.903C374.826 964.495 377.266 965.068 379.712 965.623L379.878 964.891C382.321 965.446 384.771 965.981 387.227 966.498L387.073 967.232C389.521 967.748 391.976 968.245 394.438 968.723L394.581 967.987C397.033 968.464 399.491 968.922 401.956 969.361L401.824 970.1C404.293 970.54 406.767 970.962 409.249 971.365L409.369 970.624C411.838 971.025 414.313 971.408 416.794 971.771L416.685 972.513C419.158 972.875 421.636 973.219 424.121 973.544L424.218 972.801C426.699 973.125 429.185 973.431 431.678 973.718L431.592 974.463C434.085 974.75 436.583 975.018 439.087 975.268L439.162 974.521C441.641 974.768 444.127 974.996 446.618 975.206L446.555 975.953C449.049 976.163 451.549 976.354 454.054 976.526L454.106 975.778C456.607 975.949 459.113 976.102 461.625 976.236L461.585 976.985C464.078 977.117 466.576 977.232 469.079 977.327L469.107 976.577C471.602 976.672 474.102 976.748 476.606 976.805L476.589 977.555C479.097 977.612 481.609 977.651 484.127 977.67L484.132 976.92C485.389 976.929 486.647 976.934 487.906 976.934C489.165 976.934 490.423 976.929 491.679 976.92L491.685 977.67C494.202 977.651 496.715 977.612 499.223 977.555L499.206 976.805C501.71 976.748 504.21 976.672 506.704 976.577L506.733 977.327C509.236 977.232 511.733 977.117 514.227 976.985L514.187 976.236C516.698 976.102 519.205 975.949 521.706 975.778L521.757 976.526C524.262 976.354 526.762 976.163 529.257 975.953L529.194 975.206C531.685 974.996 534.17 974.768 536.65 974.521L536.724 975.268C539.229 975.018 541.727 974.75 544.22 974.463L544.134 973.718C546.626 973.431 549.113 973.125 551.594 972.801L551.691 973.544C554.175 973.219 556.654 972.875 559.127 972.513L559.018 971.771C561.499 971.408 563.974 971.025 566.443 970.624L566.563 971.365C569.044 970.962 571.519 970.54 573.988 970.1L573.856 969.361C576.321 968.922 578.779 968.464 581.231 967.987L581.374 968.723C583.836 968.245 586.291 967.748 588.739 967.232L588.584 966.498C591.041 965.981 593.491 965.446 595.933 964.891L596.099 965.623C598.546 965.068 600.986 964.495 603.418 963.903L603.241 963.174C605.671 962.583 608.095 961.974 610.511 961.346L610.699 962.072C613.133 961.44 615.559 960.789 617.978 960.121L617.778 959.398C620.193 958.73 622.601 958.044 625.001 957.34L625.212 958.06C627.616 957.355 630.012 956.632 632.4 955.891L632.177 955.175C634.574 954.432 636.963 953.67 639.343 952.891L639.577 953.604C641.962 952.823 644.34 952.024 646.709 951.207L646.464 950.498C648.83 949.683 651.187 948.849 653.536 947.999L653.791 948.704C656.152 947.849 658.504 946.976 660.848 946.086L660.582 945.385C662.925 944.495 665.259 943.587 667.585 942.662L667.862 943.359C670.191 942.432 672.511 941.488 674.823 940.527L674.535 939.834C676.848 938.872 679.152 937.893 681.447 936.897L681.746 937.584C684.049 936.585 686.342 935.568 688.626 934.533L688.317 933.85C690.597 932.817 692.868 931.768 695.13 930.701L695.45 931.38C697.718 930.31 699.977 929.223 702.226 928.119L701.896 927.446C704.146 926.342 706.386 925.221 708.617 924.083L708.957 924.752C711.191 923.612 713.415 922.456 715.629 921.283L715.278 920.621C717.49 919.449 719.692 918.26 721.884 917.056L722.245 917.713C724.445 916.504 726.634 915.278 728.813 914.036L728.441 913.385C730.617 912.145 732.782 910.889 734.936 909.616L735.317 910.262C737.476 908.987 739.623 907.696 741.76 906.389L741.369 905.75C743.507 904.442 745.633 903.119 747.749 901.779L748.15 902.413C750.269 901.072 752.378 899.714 754.474 898.341L754.064 897.714C756.157 896.343 758.24 894.956 760.311 893.554L760.731 894.175C762.809 892.769 764.876 891.346 766.93 889.909L766.501 889.294C768.552 887.858 770.592 886.407 772.621 884.941L773.06 885.549C775.092 884.081 777.112 882.597 779.12 881.098L778.671 880.497C780.678 878.999 782.673 877.485 784.656 875.957L785.114 876.551C787.101 875.02 789.075 873.474 791.037 871.914L790.57 871.327C792.529 869.768 794.476 868.195 796.41 866.608L796.886 867.188C798.824 865.597 800.75 863.991 802.664 862.371L802.179 861.798C804.09 860.18 805.988 858.548 807.874 856.901L808.367 857.466C810.255 855.817 812.131 854.153 813.994 852.475L813.492 851.918C815.352 850.242 817.199 848.553 819.033 846.849L819.543 847.398C821.38 845.692 823.204 843.971 825.015 842.237L824.496 841.695C826.304 839.964 828.099 838.218 829.88 836.459L830.407 836.993C832.191 835.231 833.961 833.456 835.718 831.667L835.183 831.141C836.937 829.355 838.677 827.556 840.403 825.743L840.946 826.26C842.676 824.444 844.391 822.615 846.092 820.773L845.541 820.264C847.24 818.426 848.924 816.574 850.594 814.709L851.153 815.209C852.825 813.342 854.484 811.462 856.128 809.569L855.561 809.077C857.203 807.187 858.83 805.284 860.443 803.368L861.016 803.851C862.631 801.933 864.231 800.003 865.817 798.06L865.236 797.586C866.818 795.647 868.385 793.696 869.938 791.732L870.527 792.198C872.082 790.231 873.622 788.253 875.148 786.262L874.552 785.806C876.075 783.818 877.583 781.819 879.075 779.808L879.678 780.255C881.171 778.243 882.649 776.219 884.112 774.184L883.503 773.746C884.964 771.713 886.409 769.669 887.839 767.613L888.455 768.042C889.887 765.983 891.304 763.913 892.705 761.831L892.083 761.412C893.48 759.338 894.861 757.252 896.226 755.154L896.855 755.563C898.222 753.463 899.574 751.351 900.91 749.229L900.275 748.829C901.609 746.71 902.927 744.579 904.229 742.438L904.87 742.828C906.171 740.688 907.457 738.537 908.726 736.376L908.079 735.996C909.346 733.839 910.597 731.67 911.832 729.492L912.484 729.862C913.721 727.68 914.941 725.487 916.145 723.284L915.487 722.925C916.686 720.73 917.869 718.526 919.035 716.311L919.699 716.661C920.866 714.444 922.017 712.217 923.152 709.981L922.483 709.641C923.615 707.408 924.731 705.165 925.83 702.912L926.504 703.241C927.603 700.99 928.684 698.729 929.749 696.458L929.07 696.14C930.131 693.876 931.176 691.603 932.204 689.32L932.888 689.628C933.917 687.341 934.929 685.045 935.925 682.74L935.236 682.443C936.228 680.146 937.202 677.84 938.159 675.525L938.852 675.812C939.809 673.499 940.748 671.176 941.67 668.845L940.973 668.569C941.893 666.242 942.797 663.905 943.682 661.56L944.384 661.825C945.27 659.48 946.138 657.127 946.988 654.765L946.283 654.51C947.129 652.16 947.958 649.801 948.769 647.434L949.479 647.677C950.291 645.307 951.086 642.928 951.863 640.541L951.15 640.308C951.925 637.927 952.683 635.537 953.422 633.139L954.139 633.36C954.876 630.971 955.595 628.574 956.296 626.169L955.576 625.959C956.276 623.558 956.958 621.149 957.623 618.733L958.346 618.932C959.011 616.512 959.658 614.084 960.287 611.649L959.561 611.462C960.185 609.045 960.791 606.622 961.379 604.191L962.108 604.367C962.696 601.933 963.266 599.493 963.818 597.046L963.087 596.881C963.638 594.437 964.171 591.986 964.685 589.529L965.419 589.683C965.932 587.234 966.426 584.779 966.902 582.317L966.165 582.175C966.639 579.722 967.095 577.263 967.532 574.798L968.27 574.929C968.708 572.46 969.128 569.984 969.528 567.503L968.788 567.383C969.187 564.914 969.567 562.439 969.928 559.958L970.67 560.066C971.031 557.593 971.372 555.114 971.696 552.629L970.952 552.532C971.275 550.051 971.579 547.564 971.864 545.072L972.609 545.157C972.895 542.664 973.161 540.166 973.409 537.662L972.663 537.588C972.908 535.108 973.135 532.622 973.343 530.131L974.091 530.194C974.299 527.699 974.489 525.199 974.66 522.694L973.912 522.643C974.083 520.141 974.235 517.635 974.368 515.123L975.117 515.163C975.249 512.67 975.362 510.172 975.456 507.669L974.707 507.641C974.801 505.146 974.877 502.646 974.934 500.142L975.684 500.159C975.74 497.651 975.778 495.138 975.797 492.621L975.047 492.616C975.057 491.359 975.062 490.101 975.062 488.842C975.062 488.069 975.06 487.296 975.056 486.524C975.054 486.039 975.051 485.553 975.047 485.068L975.797 485.063Z\" stroke=\"url(#paint0_linear_205_35678)\" stroke-width=\"1.5\" stroke-dasharray=\"7.53 7.53\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_205_35678\" x1=\"487.906\" y1=\"0\" x2=\"487.906\" y2=\"977.684\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#43434C\"/>\\n<stop offset=\"1\" stop-color=\"#43434C\" stop-opacity=\"0\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Tdcf2m17Y:{__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-30}},{ref:ref4,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}]}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:60,y:0}},{ref:ref4,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-7mhmxg\",\"data-framer-name\":\"Right\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vd6w4e\",\"data-framer-name\":\"Scarcity Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Tdcf2m17Y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Uxum Grotesque Regular\", \"Uxum Grotesque Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(153, 151, 164)\"},children:\"Staked Supply\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Uxum Grotesque Regular\", \"Uxum Grotesque Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"28px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(153, 151, 164)\"},children:\"Staked Supply\"})}),className:\"framer-t6cxvn\",\"data-framer-name\":\"USD0\",fonts:[\"CUSTOM;Uxum Grotesque Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Tdcf2m17Y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"60.05%\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"34px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"60.05%\"})}),className:\"framer-1ty1ec5\",\"data-framer-name\":\"USD0\",fonts:[\"CUSTOM;Uxum Grotesque Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h2gp53\",\"data-framer-name\":\"Scarcity Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Tdcf2m17Y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Uxum Grotesque Regular\", \"Uxum Grotesque Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(153, 151, 164)\"},children:\"Burned Supply\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Uxum Grotesque Regular\", \"Uxum Grotesque Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"28px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(153, 151, 164)\"},children:\"Burned Supply\"})}),className:\"framer-xvg0u0\",\"data-framer-name\":\"USD0\",fonts:[\"CUSTOM;Uxum Grotesque Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Tdcf2m17Y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"20.86%\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"34px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"20.86%\"})}),className:\"framer-1w98bip\",\"data-framer-name\":\"USD0\",fonts:[\"CUSTOM;Uxum Grotesque Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mk6tcz\",\"data-framer-name\":\"Title Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-782fmo\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Tdcf2m17Y:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"28px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"The Revenue-Based Token \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"28px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"at the Heart of Usual\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"34px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"The Revenue-Based Token \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"34px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"at the Heart of Usual\"})]}),className:\"framer-amm02c\",\"data-framer-name\":\"USD0\",fonts:[\"CUSTOM;Uxum Grotesque Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Tdcf2m17Y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Uxum Grotesque Regular\", \"Uxum Grotesque Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(153, 151, 164)\"},children:\"USUAL rewards adoption and usage, aligning incentives with contributors to fuel protocol growth. Its distribution introduces new DeFi primitives, ensuring rapid ecosystem scaling and sustainable decentralization.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Uxum Grotesque Regular\", \"Uxum Grotesque Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"165%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(153, 151, 164)\"},children:\"USUAL rewards adoption and usage, aligning incentives with contributors to fuel protocol growth. Its distribution introduces new DeFi primitives, ensuring rapid ecosystem scaling and sustainable decentralization.\"})}),className:\"framer-k2iv5q\",\"data-framer-name\":\"Description Text\",fonts:[\"CUSTOM;Uxum Grotesque Regular\"],verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nt2kS3X5C:{y:undefined},qSA0MXLLq:{y:undefined},Tdcf2m17Y:{y:undefined},YwQdG6HP0:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+0+2461+0+0+120+0+0+1064+0+1431+30+438+0+512,children:/*#__PURE__*/_jsx(Container,{className:\"framer-188mm86-container\",nodeId:\"qxT4llvjo\",scopeId:\"pipfm3NxG\",children:/*#__PURE__*/_jsx(Link,{Gtid9bviI:false,height:\"100%\",id:\"qxT4llvjo\",layoutId:\"qxT4llvjo\",MexmuZTpf:\"Learn more\",NhjwAsko1:false,variant:\"BbLHkMjly\",width:\"100%\"})})})})]})]})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-basdsl\",\"data-framer-name\":\"Swap\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nt2kS3X5C:{y:undefined},qSA0MXLLq:{y:undefined},Tdcf2m17Y:{y:undefined},YwQdG6HP0:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:810,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+2461+0+3799+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-rnosex-container\",id:elementId2,nodeId:\"s62BANXeO\",ref:ref5,scopeId:\"pipfm3NxG\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nt2kS3X5C:{variant:\"rFXYNagox\"},qSA0MXLLq:{variant:\"cFA8sIA6y\"},Tdcf2m17Y:{eJd3XhsYE:\"0px 0px 60px 0px\",variant:\"D02u9QpgG\"},YwQdG6HP0:{eJd3XhsYE:\"0px 0px 70px 0px\",variant:\"S7aQmJjZJ\"}},children:/*#__PURE__*/_jsx(V1Counter,{cyC45DweF:\"rgb(249, 248, 255)\",eJd3XhsYE:\"0px 0px 100px 0px\",height:\"100%\",id:\"s62BANXeO\",layoutId:\"s62BANXeO\",odmIXjVR4:false,style:{width:\"100%\"},variant:\"d_mgZsT4L\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1oah0yz\",\"data-framer-name\":\"V1 / Ecosystem\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-bzo7mx\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jw9ok7\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zq019y\",\"data-framer-name\":\"Section Description\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Tdcf2m17Y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIE1lZGl1bQ==\",\"--framer-font-family\":'\"Uxum Grotesque Medium\", \"Uxum Grotesque Medium Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(273deg, rgb(138, 96, 255) 0%, rgb(193, 76, 193) 100%)\"},children:\"Ecosystem\"})})})},YwQdG6HP0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIE1lZGl1bQ==\",\"--framer-font-family\":'\"Uxum Grotesque Medium\", \"Uxum Grotesque Medium Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(273deg, rgb(138, 96, 255) 0%, rgb(193, 76, 193) 100%)\"},children:\"Ecosystem\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIE1lZGl1bQ==\",\"--framer-font-family\":'\"Uxum Grotesque Medium\", \"Uxum Grotesque Medium Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(273deg, rgb(138, 96, 255) 0%, rgb(193, 76, 193) 100%)\"},children:\"Ecosystem\"})})}),className:\"framer-1ft8xie\",\"data-framer-name\":\"Section title\",fonts:[\"CUSTOM;Uxum Grotesque Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Tdcf2m17Y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(24, 24, 27)\"},children:\"Usual Everywhere\"})})},YwQdG6HP0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(24, 24, 27)\"},children:\"Usual Everywhere\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"62px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(24, 24, 27)\"},children:\"Usual Everywhere\"})}),className:\"framer-1dpftzq\",\"data-framer-name\":\"Main heading\",fonts:[\"CUSTOM;Uxum Grotesque Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1v88usi\",\"data-styles-preset\":\"xgaci6mnc\",style:{\"--framer-text-alignment\":\"center\"},children:\"We partner with the best platforms and ecosystems in DeFi to unlock the full potential of USD0++ and USUAL.\"})}),className:\"framer-4a2h53\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zgtm1p\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"nW4yug2an\"},implicitPathVariables:undefined},{href:{webPageId:\"nW4yug2an\"},implicitPathVariables:undefined},{href:{webPageId:\"nW4yug2an\"},implicitPathVariables:undefined},{href:{webPageId:\"nW4yug2an\"},implicitPathVariables:undefined},{href:{webPageId:\"nW4yug2an\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nt2kS3X5C:{y:undefined},qSA0MXLLq:{y:undefined},Tdcf2m17Y:{y:undefined},YwQdG6HP0:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+0+2461+0+3799+0+810+120+703+460-24,children:/*#__PURE__*/_jsx(Container,{className:\"framer-8h83ko-container\",nodeId:\"akNO_0Ypm\",scopeId:\"pipfm3NxG\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nt2kS3X5C:{xOH4u7Dxw:resolvedLinks[2]},qSA0MXLLq:{xOH4u7Dxw:resolvedLinks[1]},Tdcf2m17Y:{xOH4u7Dxw:resolvedLinks[4]},YwQdG6HP0:{xOH4u7Dxw:resolvedLinks[3]}},children:/*#__PURE__*/_jsx(Link,{Gtid9bviI:false,height:\"100%\",id:\"akNO_0Ypm\",layoutId:\"akNO_0Ypm\",MexmuZTpf:\"Explore all the ecosystem\",NhjwAsko1:false,variant:\"cGsWJ4qCU\",width:\"100%\",xOH4u7Dxw:resolvedLinks[0]})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1p5r9f6\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nt2kS3X5C:{query:{from:{alias:\"g9yaryxsc\",data:Ecosystem,type:\"Collection\"},limit:{type:\"LiteralValue\",value:6},select:[{collection:\"g9yaryxsc\",name:\"I1cKsZ6l1\",type:\"Identifier\"},{collection:\"g9yaryxsc\",name:\"h6eAt4RpK\",type:\"Identifier\"},{collection:\"g9yaryxsc\",name:\"bhY__7WiP\",type:\"Identifier\"},{collection:\"g9yaryxsc\",name:\"EHGDe67TZ\",type:\"Identifier\"},{collection:\"g9yaryxsc\",name:\"T1DCFDVFX\",type:\"Identifier\"},{alias:\"SycvZOZyw\",arguments:[{from:{alias:\"SycvZOZyw\",data:EcosystemTags,type:\"Collection\"},orderBy:[{arguments:[{collection:\"g9yaryxsc\",name:\"SycvZOZyw\",type:\"Identifier\"},{collection:\"SycvZOZyw\",name:\"id\",type:\"Identifier\"}],functionName:\"INDEX_OF\",type:\"FunctionCall\"}],select:[{collection:\"SycvZOZyw\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{collection:\"SycvZOZyw\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{collection:\"g9yaryxsc\",name:\"SycvZOZyw\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"FLAT_ARRAY\",type:\"FunctionCall\"},{alias:\"lXgE05m0R\",arguments:[{from:{alias:\"lXgE05m0R\",data:CategoryTags,type:\"Collection\"},orderBy:[{arguments:[{collection:\"g9yaryxsc\",name:\"lXgE05m0R\",type:\"Identifier\"},{collection:\"lXgE05m0R\",name:\"id\",type:\"Identifier\"}],functionName:\"INDEX_OF\",type:\"FunctionCall\"}],select:[{collection:\"lXgE05m0R\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{collection:\"lXgE05m0R\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{collection:\"g9yaryxsc\",name:\"lXgE05m0R\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"FLAT_ARRAY\",type:\"FunctionCall\"},{collection:\"g9yaryxsc\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{left:{left:{left:{left:{left:{left:{collection:\"g9yaryxsc\",name:\"T1DCFDVFX\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"morpho\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"g9yaryxsc\",name:\"T1DCFDVFX\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"curve\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"g9yaryxsc\",name:\"T1DCFDVFX\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"pendle\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"g9yaryxsc\",name:\"T1DCFDVFX\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"layerzero\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"g9yaryxsc\",name:\"T1DCFDVFX\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"chainlink\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"g9yaryxsc\",name:\"T1DCFDVFX\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"binance\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"g9yaryxsc\",name:\"T1DCFDVFX\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"uniswap\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"g9yaryxsc\",name:\"T1DCFDVFX\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"euler\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}}},qSA0MXLLq:{query:{from:{alias:\"g9yaryxsc\",data:Ecosystem,type:\"Collection\"},limit:{type:\"LiteralValue\",value:6},select:[{collection:\"g9yaryxsc\",name:\"I1cKsZ6l1\",type:\"Identifier\"},{collection:\"g9yaryxsc\",name:\"h6eAt4RpK\",type:\"Identifier\"},{collection:\"g9yaryxsc\",name:\"bhY__7WiP\",type:\"Identifier\"},{collection:\"g9yaryxsc\",name:\"EHGDe67TZ\",type:\"Identifier\"},{collection:\"g9yaryxsc\",name:\"T1DCFDVFX\",type:\"Identifier\"},{alias:\"SycvZOZyw\",arguments:[{from:{alias:\"SycvZOZyw\",data:EcosystemTags,type:\"Collection\"},orderBy:[{arguments:[{collection:\"g9yaryxsc\",name:\"SycvZOZyw\",type:\"Identifier\"},{collection:\"SycvZOZyw\",name:\"id\",type:\"Identifier\"}],functionName:\"INDEX_OF\",type:\"FunctionCall\"}],select:[{collection:\"SycvZOZyw\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{collection:\"SycvZOZyw\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{collection:\"g9yaryxsc\",name:\"SycvZOZyw\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"FLAT_ARRAY\",type:\"FunctionCall\"},{alias:\"lXgE05m0R\",arguments:[{from:{alias:\"lXgE05m0R\",data:CategoryTags,type:\"Collection\"},orderBy:[{arguments:[{collection:\"g9yaryxsc\",name:\"lXgE05m0R\",type:\"Identifier\"},{collection:\"lXgE05m0R\",name:\"id\",type:\"Identifier\"}],functionName:\"INDEX_OF\",type:\"FunctionCall\"}],select:[{collection:\"lXgE05m0R\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{collection:\"lXgE05m0R\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{collection:\"g9yaryxsc\",name:\"lXgE05m0R\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"FLAT_ARRAY\",type:\"FunctionCall\"},{collection:\"g9yaryxsc\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{left:{left:{left:{left:{left:{left:{collection:\"g9yaryxsc\",name:\"T1DCFDVFX\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"morpho\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"g9yaryxsc\",name:\"T1DCFDVFX\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"curve\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"g9yaryxsc\",name:\"T1DCFDVFX\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"pendle\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"g9yaryxsc\",name:\"T1DCFDVFX\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"layerzero\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"g9yaryxsc\",name:\"T1DCFDVFX\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"chainlink\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"g9yaryxsc\",name:\"T1DCFDVFX\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"binance\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"g9yaryxsc\",name:\"T1DCFDVFX\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"uniswap\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"g9yaryxsc\",name:\"T1DCFDVFX\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"euler\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}}},Tdcf2m17Y:{query:{from:{alias:\"g9yaryxsc\",data:Ecosystem,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"g9yaryxsc\",name:\"I1cKsZ6l1\",type:\"Identifier\"},{collection:\"g9yaryxsc\",name:\"h6eAt4RpK\",type:\"Identifier\"},{collection:\"g9yaryxsc\",name:\"bhY__7WiP\",type:\"Identifier\"},{collection:\"g9yaryxsc\",name:\"EHGDe67TZ\",type:\"Identifier\"},{collection:\"g9yaryxsc\",name:\"T1DCFDVFX\",type:\"Identifier\"},{alias:\"SycvZOZyw\",arguments:[{from:{alias:\"SycvZOZyw\",data:EcosystemTags,type:\"Collection\"},orderBy:[{arguments:[{collection:\"g9yaryxsc\",name:\"SycvZOZyw\",type:\"Identifier\"},{collection:\"SycvZOZyw\",name:\"id\",type:\"Identifier\"}],functionName:\"INDEX_OF\",type:\"FunctionCall\"}],select:[{collection:\"SycvZOZyw\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{collection:\"SycvZOZyw\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{collection:\"g9yaryxsc\",name:\"SycvZOZyw\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"FLAT_ARRAY\",type:\"FunctionCall\"},{alias:\"lXgE05m0R\",arguments:[{from:{alias:\"lXgE05m0R\",data:CategoryTags,type:\"Collection\"},orderBy:[{arguments:[{collection:\"g9yaryxsc\",name:\"lXgE05m0R\",type:\"Identifier\"},{collection:\"lXgE05m0R\",name:\"id\",type:\"Identifier\"}],functionName:\"INDEX_OF\",type:\"FunctionCall\"}],select:[{collection:\"lXgE05m0R\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{collection:\"lXgE05m0R\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{collection:\"g9yaryxsc\",name:\"lXgE05m0R\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"FLAT_ARRAY\",type:\"FunctionCall\"},{collection:\"g9yaryxsc\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{left:{left:{left:{left:{left:{left:{collection:\"g9yaryxsc\",name:\"T1DCFDVFX\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"morpho\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"g9yaryxsc\",name:\"T1DCFDVFX\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"curve\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"g9yaryxsc\",name:\"T1DCFDVFX\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"pendle\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"g9yaryxsc\",name:\"T1DCFDVFX\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"layerzero\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"g9yaryxsc\",name:\"T1DCFDVFX\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"chainlink\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"g9yaryxsc\",name:\"T1DCFDVFX\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"binance\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"g9yaryxsc\",name:\"T1DCFDVFX\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"uniswap\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"g9yaryxsc\",name:\"T1DCFDVFX\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"euler\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}}},YwQdG6HP0:{query:{from:{alias:\"g9yaryxsc\",data:Ecosystem,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},select:[{collection:\"g9yaryxsc\",name:\"I1cKsZ6l1\",type:\"Identifier\"},{collection:\"g9yaryxsc\",name:\"h6eAt4RpK\",type:\"Identifier\"},{collection:\"g9yaryxsc\",name:\"bhY__7WiP\",type:\"Identifier\"},{collection:\"g9yaryxsc\",name:\"EHGDe67TZ\",type:\"Identifier\"},{collection:\"g9yaryxsc\",name:\"T1DCFDVFX\",type:\"Identifier\"},{alias:\"SycvZOZyw\",arguments:[{from:{alias:\"SycvZOZyw\",data:EcosystemTags,type:\"Collection\"},orderBy:[{arguments:[{collection:\"g9yaryxsc\",name:\"SycvZOZyw\",type:\"Identifier\"},{collection:\"SycvZOZyw\",name:\"id\",type:\"Identifier\"}],functionName:\"INDEX_OF\",type:\"FunctionCall\"}],select:[{collection:\"SycvZOZyw\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{collection:\"SycvZOZyw\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{collection:\"g9yaryxsc\",name:\"SycvZOZyw\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"FLAT_ARRAY\",type:\"FunctionCall\"},{alias:\"lXgE05m0R\",arguments:[{from:{alias:\"lXgE05m0R\",data:CategoryTags,type:\"Collection\"},orderBy:[{arguments:[{collection:\"g9yaryxsc\",name:\"lXgE05m0R\",type:\"Identifier\"},{collection:\"lXgE05m0R\",name:\"id\",type:\"Identifier\"}],functionName:\"INDEX_OF\",type:\"FunctionCall\"}],select:[{collection:\"lXgE05m0R\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{collection:\"lXgE05m0R\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{collection:\"g9yaryxsc\",name:\"lXgE05m0R\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"FLAT_ARRAY\",type:\"FunctionCall\"},{collection:\"g9yaryxsc\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{left:{left:{left:{left:{left:{left:{collection:\"g9yaryxsc\",name:\"T1DCFDVFX\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"morpho\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"g9yaryxsc\",name:\"T1DCFDVFX\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"curve\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"g9yaryxsc\",name:\"T1DCFDVFX\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"pendle\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"g9yaryxsc\",name:\"T1DCFDVFX\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"layerzero\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"g9yaryxsc\",name:\"T1DCFDVFX\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"chainlink\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"g9yaryxsc\",name:\"T1DCFDVFX\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"binance\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"g9yaryxsc\",name:\"T1DCFDVFX\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"uniswap\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"g9yaryxsc\",name:\"T1DCFDVFX\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"euler\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}}}},children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"g9yaryxsc\",data:Ecosystem,type:\"Collection\"},limit:{type:\"LiteralValue\",value:8},select:[{collection:\"g9yaryxsc\",name:\"I1cKsZ6l1\",type:\"Identifier\"},{collection:\"g9yaryxsc\",name:\"h6eAt4RpK\",type:\"Identifier\"},{collection:\"g9yaryxsc\",name:\"bhY__7WiP\",type:\"Identifier\"},{collection:\"g9yaryxsc\",name:\"EHGDe67TZ\",type:\"Identifier\"},{collection:\"g9yaryxsc\",name:\"T1DCFDVFX\",type:\"Identifier\"},{alias:\"SycvZOZyw\",arguments:[{from:{alias:\"SycvZOZyw\",data:EcosystemTags,type:\"Collection\"},orderBy:[{arguments:[{collection:\"g9yaryxsc\",name:\"SycvZOZyw\",type:\"Identifier\"},{collection:\"SycvZOZyw\",name:\"id\",type:\"Identifier\"}],functionName:\"INDEX_OF\",type:\"FunctionCall\"}],select:[{collection:\"SycvZOZyw\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{collection:\"SycvZOZyw\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{collection:\"g9yaryxsc\",name:\"SycvZOZyw\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"FLAT_ARRAY\",type:\"FunctionCall\"},{alias:\"lXgE05m0R\",arguments:[{from:{alias:\"lXgE05m0R\",data:CategoryTags,type:\"Collection\"},orderBy:[{arguments:[{collection:\"g9yaryxsc\",name:\"lXgE05m0R\",type:\"Identifier\"},{collection:\"lXgE05m0R\",name:\"id\",type:\"Identifier\"}],functionName:\"INDEX_OF\",type:\"FunctionCall\"}],select:[{collection:\"lXgE05m0R\",name:\"id\",type:\"Identifier\"}],type:\"Select\",where:{left:{collection:\"lXgE05m0R\",name:\"id\",type:\"Identifier\"},operator:\"in\",right:{collection:\"g9yaryxsc\",name:\"lXgE05m0R\",type:\"Identifier\"},type:\"BinaryOperation\"}}],functionName:\"FLAT_ARRAY\",type:\"FunctionCall\"},{collection:\"g9yaryxsc\",name:\"id\",type:\"Identifier\"}],where:{left:{left:{left:{left:{left:{left:{left:{left:{collection:\"g9yaryxsc\",name:\"T1DCFDVFX\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"morpho\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"g9yaryxsc\",name:\"T1DCFDVFX\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"curve\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"g9yaryxsc\",name:\"T1DCFDVFX\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"pendle\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"g9yaryxsc\",name:\"T1DCFDVFX\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"layerzero\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"g9yaryxsc\",name:\"T1DCFDVFX\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"chainlink\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"g9yaryxsc\",name:\"T1DCFDVFX\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"binance\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"g9yaryxsc\",name:\"T1DCFDVFX\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"uniswap\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"},operator:\"or\",right:{left:{collection:\"g9yaryxsc\",name:\"T1DCFDVFX\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"euler\"},type:\"BinaryOperation\"},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({bhY__7WiP:bhY__7WiPg9yaryxsc,EHGDe67TZ:EHGDe67TZg9yaryxsc,h6eAt4RpK:h6eAt4RpKg9yaryxsc,I1cKsZ6l1:I1cKsZ6l1g9yaryxsc,id:idg9yaryxsc,lXgE05m0R:lXgE05m0Rg9yaryxsc,SycvZOZyw:SycvZOZywg9yaryxsc,T1DCFDVFX:T1DCFDVFXg9yaryxsc},index)=>{I1cKsZ6l1g9yaryxsc??=\"\";h6eAt4RpKg9yaryxsc??=\"\";EHGDe67TZg9yaryxsc??=\"\";T1DCFDVFXg9yaryxsc??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`g9yaryxsc-${idg9yaryxsc}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{T1DCFDVFX:T1DCFDVFXg9yaryxsc},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:EHGDe67TZg9yaryxsc,implicitPathVariables:{T1DCFDVFX:T1DCFDVFXg9yaryxsc}},{href:EHGDe67TZg9yaryxsc,implicitPathVariables:{T1DCFDVFX:T1DCFDVFXg9yaryxsc}},{href:EHGDe67TZg9yaryxsc,implicitPathVariables:{T1DCFDVFX:T1DCFDVFXg9yaryxsc}},{href:EHGDe67TZg9yaryxsc,implicitPathVariables:{T1DCFDVFX:T1DCFDVFXg9yaryxsc}},{href:EHGDe67TZg9yaryxsc,implicitPathVariables:{T1DCFDVFX:T1DCFDVFXg9yaryxsc}}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nt2kS3X5C:{width:`max((min(max(${componentViewport?.width||\"100vw\"} - 160px, 1px), 1280px) - 40px) / 3, 50px)`,y:undefined},qSA0MXLLq:{width:`max(min(max(${componentViewport?.width||\"100vw\"} - 160px, 1px), 1280px) * 0.32, 305px)`,y:undefined},Tdcf2m17Y:{height:248,width:`min(max(${componentViewport?.width||\"100vw\"} - 48px, 1px), 1280px)`,y:undefined},YwQdG6HP0:{width:`max((min(max(${componentViewport?.width||\"100vw\"} - 128px, 1px), 682px) - 20px) / 2, 50px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:220,width:`max((min(max(${componentViewport?.width||\"100vw\"} - 160px, 1px), 1280px) - 60px) / 4, 50px)`,y:(componentViewport?.y||0)+0+2461+0+3799+0+810+120+703+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-11ynq2q-container\",nodeId:\"fA5m8Hw5H\",scopeId:\"pipfm3NxG\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nt2kS3X5C:{fASNQsVIO:resolvedLinks1[2]},qSA0MXLLq:{fASNQsVIO:resolvedLinks1[1]},Tdcf2m17Y:{fASNQsVIO:resolvedLinks1[4],style:{width:\"100%\"},variant:\"Bt_dd2HFd\"},YwQdG6HP0:{fASNQsVIO:resolvedLinks1[3]}},children:/*#__PURE__*/_jsx(EcosystemCard,{aGYuP21Qc:lXgE05m0Rg9yaryxsc,ECcVoofkv:h6eAt4RpKg9yaryxsc,fASNQsVIO:resolvedLinks1[0],height:\"100%\",id:\"fA5m8Hw5H\",J1Za7Yg6B:SycvZOZywg9yaryxsc,layoutId:\"fA5m8Hw5H\",NN_hiaBzM:I1cKsZ6l1g9yaryxsc,QswXBY2lt:toResponsiveImage(bhY__7WiPg9yaryxsc),style:{height:\"100%\",width:\"100%\"},variant:\"qTnNivk6U\",width:\"100%\",XFWISpyEi:false})})})})})})})},idg9yaryxsc);})})})})})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7pfp39\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nt2kS3X5C:{background:{alt:\"\",fit:\"fill\",pixelHeight:450,pixelWidth:1560,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/JTebbJdMZzOixxPkTngSITFbII.png\",srcSet:\"https://framerusercontent.com/images/JTebbJdMZzOixxPkTngSITFbII.png?scale-down-to=512 512w,https://framerusercontent.com/images/JTebbJdMZzOixxPkTngSITFbII.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JTebbJdMZzOixxPkTngSITFbII.png 1560w\"}},qSA0MXLLq:{background:{alt:\"\",fit:\"fill\",pixelHeight:450,pixelWidth:1560,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/JTebbJdMZzOixxPkTngSITFbII.png\",srcSet:\"https://framerusercontent.com/images/JTebbJdMZzOixxPkTngSITFbII.png?scale-down-to=512 512w,https://framerusercontent.com/images/JTebbJdMZzOixxPkTngSITFbII.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JTebbJdMZzOixxPkTngSITFbII.png 1560w\"}},Tdcf2m17Y:{background:{alt:\"\",fit:\"fill\",pixelHeight:450,pixelWidth:1560,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/JTebbJdMZzOixxPkTngSITFbII.png\",srcSet:\"https://framerusercontent.com/images/JTebbJdMZzOixxPkTngSITFbII.png?scale-down-to=512 512w,https://framerusercontent.com/images/JTebbJdMZzOixxPkTngSITFbII.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JTebbJdMZzOixxPkTngSITFbII.png 1560w\"}},YwQdG6HP0:{background:{alt:\"\",fit:\"fill\",pixelHeight:450,pixelWidth:1560,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/JTebbJdMZzOixxPkTngSITFbII.png\",srcSet:\"https://framerusercontent.com/images/JTebbJdMZzOixxPkTngSITFbII.png?scale-down-to=512 512w,https://framerusercontent.com/images/JTebbJdMZzOixxPkTngSITFbII.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JTebbJdMZzOixxPkTngSITFbII.png 1560w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2461+0+5892+0),pixelHeight:450,pixelWidth:1560,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/JTebbJdMZzOixxPkTngSITFbII.png\",srcSet:\"https://framerusercontent.com/images/JTebbJdMZzOixxPkTngSITFbII.png?scale-down-to=512 512w,https://framerusercontent.com/images/JTebbJdMZzOixxPkTngSITFbII.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JTebbJdMZzOixxPkTngSITFbII.png 1560w\"},className:\"framer-1kth4v2\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rnyafq\",\"data-framer-name\":\"Stats Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mkx32j\",\"data-framer-name\":\"Supported Chains\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Tdcf2m17Y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIE1lZGl1bQ==\",\"--framer-font-family\":'\"Uxum Grotesque Medium\", \"Uxum Grotesque Medium Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"44px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(24, 24, 27)\"},children:\"+30\"})})},YwQdG6HP0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIE1lZGl1bQ==\",\"--framer-font-family\":'\"Uxum Grotesque Medium\", \"Uxum Grotesque Medium Placeholder\", sans-serif',\"--framer-font-size\":\"62px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(24, 24, 27)\"},children:\"+30\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIE1lZGl1bQ==\",\"--framer-font-family\":'\"Uxum Grotesque Medium\", \"Uxum Grotesque Medium Placeholder\", sans-serif',\"--framer-font-size\":\"92px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(24, 24, 27)\"},children:\"+30\"})}),className:\"framer-yw6agp\",\"data-framer-name\":\"USD0\",fonts:[\"CUSTOM;Uxum Grotesque Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Tdcf2m17Y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Uxum Grotesque Regular\", \"Uxum Grotesque Regular Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0.03em\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(24, 24, 27)\"},children:\"Integrated Projects\"})}),fonts:[\"CUSTOM;Uxum Grotesque Regular\"]},YwQdG6HP0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIE1lZGl1bQ==\",\"--framer-font-family\":'\"Uxum Grotesque Medium\", \"Uxum Grotesque Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.03em\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(24, 24, 27)\"},children:\"Integrated Projects\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIE1lZGl1bQ==\",\"--framer-font-family\":'\"Uxum Grotesque Medium\", \"Uxum Grotesque Medium Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.03em\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(24, 24, 27)\"},children:\"Integrated Projects\"})}),className:\"framer-1ii4jbv\",\"data-framer-name\":\"USD0\",fonts:[\"CUSTOM;Uxum Grotesque Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-t8itxc hidden-d6mxlb\",\"data-framer-name\":\"Networks\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ch6z4d\",\"data-framer-name\":\".Protocols / Bonus / Network\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e84j29\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wwn6sa\",\"data-framer-name\":\"AssetWrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nt2kS3X5C:{background:{alt:\"\",fit:\"fit\",pixelHeight:96,pixelWidth:96,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/YeU3lQhN6XZWdNzVWNxc9y0gDM.png\"}},qSA0MXLLq:{background:{alt:\"\",fit:\"fit\",pixelHeight:96,pixelWidth:96,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/YeU3lQhN6XZWdNzVWNxc9y0gDM.png\"}},YwQdG6HP0:{background:{alt:\"\",fit:\"fit\",pixelHeight:96,pixelWidth:96,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/YeU3lQhN6XZWdNzVWNxc9y0gDM.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2461+0+5892+80+250.4+0+129.2+2+0+0+6+0),pixelHeight:96,pixelWidth:96,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/YeU3lQhN6XZWdNzVWNxc9y0gDM.png\"},className:\"framer-11hxr1v\",\"data-framer-name\":\"Background\"})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-11fmbd7\",\"data-framer-name\":\"Logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:17,svg:'<svg width=\"17\" height=\"17\" viewBox=\"0 0 17 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M5.27006 0.500091C3.54224 0.491062 2.94067 1.15468 2.11521 2.18178C1.28975 3.20888 0.73739 4.93572 0.656111 6.89963C0.576235 8.82963 1.34573 12.1931 2.15988 13.7845C2.97403 15.376 3.84529 16.4369 5.45098 16.2225C6.73553 16.0509 7.57626 14.2021 7.80242 13.0622C8.08134 12.9644 8.90209 12.6898 9.77052 12.4189C10.1956 12.2863 10.8893 12.1136 11.6419 11.9262C12.8113 11.635 14.1229 11.3084 14.7906 11.0419C16.0344 10.5452 16.2611 9.37145 16.3855 8.08476C16.5099 6.79807 15.8767 4.9922 13.6377 3.44592C11.4261 1.91846 7.42983 0.511378 5.27006 0.500091ZM12.7777 7.26062C11.9002 7.61277 9.11775 7.97169 7.83622 8.10713C7.83622 6.41412 7.33817 5.16009 7.1125 4.61953C7.09257 4.57178 7.07234 4.52455 7.05237 4.47791C6.84573 3.99537 6.66593 3.57551 7.11252 3.28787C7.46299 3.06213 8.27717 2.91545 11.138 4.19085C13.9989 5.46625 13.8745 6.82044 12.7777 7.26062ZM6.45673 10.6805C6.79596 12.4864 6.40021 14.2133 5.38251 14.3619C4.01709 14.5612 3.25668 13.1862 2.90614 11.4255C2.5556 9.66474 2.97397 8.00745 4.01428 7.81558C5.05459 7.6237 6.11749 8.87466 6.45673 10.6805Z\" fill=\"url(#paint0_radial_192_119186)\"/>\\n<defs>\\n<radialGradient id=\"paint0_radial_192_119186\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(4.83796 -0.105769) rotate(93.6427) scale(18.1492 46.1391)\">\\n<stop stop-color=\"#B11306\"/>\\n<stop offset=\"0.191429\" stop-color=\"#ED6B2C\"/>\\n<stop offset=\"0.373959\" stop-color=\"#F5F852\"/>\\n<stop offset=\"0.564712\" stop-color=\"#A5FC82\"/>\\n<stop offset=\"0.776842\" stop-color=\"#75F8E4\"/>\\n<stop offset=\"1\" stop-color=\"#0414F5\"/>\\n</radialGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fha0yh\",\"data-framer-name\":\"AssetWrapper\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-cd87g9\",\"data-framer-name\":\"Group\",fill:\"rgba(0, 0, 0, 0)\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M12 24C18.6274 24 24 18.6274 24 12C24 5.37258 18.6274 0 12 0C5.37258 0 0 5.37258 0 12C0 18.6274 5.37258 24 12 24Z\" fill=\"#2470FF\"/>\\n<path d=\"M10.9918 13.8008C10.6958 13.1608 9.98377 12.6168 9.14377 12.1768L7.72777 12.9608C7.26377 13.2248 6.96777 13.6968 6.96777 14.2008V17.7768C6.96777 18.0008 7.15177 18.0888 7.21577 18.1128C7.27177 18.1368 7.47177 18.1928 7.63977 18.0328L10.3438 15.4328C10.5758 15.2088 10.7998 14.9768 10.9598 14.7048C11.0398 14.5768 11.0718 14.5048 11.0718 14.5048C11.0958 14.4488 11.1198 14.3928 11.1358 14.3368C11.1278 14.1528 11.0718 13.9768 10.9918 13.8008Z\" fill=\"#DAE2EA\"/>\\n<path d=\"M16.2724 12.96L14.8564 12.168C14.0164 12.616 13.3044 13.16 13.0084 13.792C12.9284 13.976 12.8724 14.152 12.8564 14.336C12.8724 14.392 12.8964 14.44 12.9204 14.496C12.9204 14.496 12.9684 14.6 13.0804 14.768C13.2244 14.984 13.4004 15.176 13.5924 15.36L16.3604 18.016C16.5364 18.176 16.7284 18.12 16.7844 18.096C16.8404 18.072 17.0324 17.984 17.0324 17.76V14.184C17.0324 13.696 16.7444 13.232 16.2724 12.96Z\" fill=\"#DAE2EA\"/>\\n<path d=\"M18.5844 6.25645V10.0004C18.5844 10.4724 18.2724 10.8884 17.8244 11.0164C16.3044 11.4564 13.6484 12.4004 13.0084 13.7924C12.9284 13.9764 12.8724 14.1524 12.8564 14.3444C12.4324 13.5684 12.2324 12.6724 12.3284 11.7684C12.4564 10.4884 13.1284 9.32045 14.1924 8.57645L17.9684 5.92845C18.0324 5.88045 18.1124 5.85645 18.1924 5.85645C18.2564 5.85645 18.3204 5.87245 18.3764 5.90445C18.5044 5.97645 18.5844 6.10445 18.5844 6.25645Z\" fill=\"white\"/>\\n<path d=\"M5.41602 6.25626V10.0003C5.41602 10.4723 5.72802 10.8883 6.17602 11.0163C7.69602 11.4563 10.352 12.4003 10.992 13.7923C11.072 13.9763 11.128 14.1523 11.144 14.3443C11.568 13.5683 11.768 12.6723 11.672 11.7683C11.544 10.4883 10.872 9.32026 9.80802 8.57626L6.03202 5.93626C5.96802 5.88826 5.88802 5.86426 5.80802 5.86426C5.74402 5.86426 5.68002 5.88026 5.62402 5.91226C5.49602 5.97626 5.41602 6.10426 5.41602 6.25626Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ou9qqm\",\"data-framer-name\":\"AssetWrapper\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yp8qm4\",\"data-framer-name\":\"Vector\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-k14m9y\",\"data-framer-name\":\"Group 38726\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:15,svg:'<svg width=\"15\" height=\"18\" viewBox=\"0 0 15 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M8.01001 13.6422C8.01001 15.6764 6.36097 17.3254 4.32678 17.3254C2.29259 17.3254 0.643555 15.6764 0.643555 13.6422C0.643555 11.608 2.29259 9.95898 4.32678 9.95898C6.36097 9.95898 8.01001 11.608 8.01001 13.6422Z\" fill=\"#28437C\"/>\\n<path d=\"M7.73629 13.8622C11.3364 13.8622 14.2548 10.9438 14.2548 7.34371C14.2548 3.74363 11.3364 0.825195 7.73629 0.825195C4.13621 0.825195 1.21777 3.74363 1.21777 7.34371C1.21777 10.9438 4.13621 13.8622 7.73629 13.8622Z\" fill=\"#DEDEDE\"/>\\n<path d=\"M7.98546 13.2493C7.7908 11.5316 6.44903 10.1761 4.74775 9.97761V1.54883C4.4549 1.70015 4.175 1.87301 3.91013 2.06533L3.90558 9.97732C3.26154 10.0506 2.65124 10.2943 2.13477 10.6799C3.2724 12.5857 5.35511 13.8621 7.73593 13.8621C7.82617 13.8621 7.91599 13.8603 8.00534 13.8567C8.01506 13.6541 8.00841 13.4509 7.98546 13.2493Z\" fill=\"#1B2D4E\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-mzlshr\",\"data-framer-name\":\".quantity\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIE1lZGl1bQ==\",\"--framer-font-family\":'\"Uxum Grotesque Medium\", \"Uxum Grotesque Medium Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(39, 39, 39)\"},children:\"+27\"})}),className:\"framer-1tvr6oo\",\"data-framer-name\":\"+3\",fonts:[\"CUSTOM;Uxum Grotesque Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b30df1\",\"data-framer-name\":\"Supported Chains\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Tdcf2m17Y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIE1lZGl1bQ==\",\"--framer-font-family\":'\"Uxum Grotesque Medium\", \"Uxum Grotesque Medium Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"44px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(24, 24, 27)\"},children:\"4\"})})},YwQdG6HP0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIE1lZGl1bQ==\",\"--framer-font-family\":'\"Uxum Grotesque Medium\", \"Uxum Grotesque Medium Placeholder\", sans-serif',\"--framer-font-size\":\"62px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(24, 24, 27)\"},children:\"4\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIE1lZGl1bQ==\",\"--framer-font-family\":'\"Uxum Grotesque Medium\", \"Uxum Grotesque Medium Placeholder\", sans-serif',\"--framer-font-size\":\"92px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(24, 24, 27)\"},children:\"4\"})}),className:\"framer-1tfx1zg\",\"data-framer-name\":\"USD0\",fonts:[\"CUSTOM;Uxum Grotesque Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Tdcf2m17Y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Uxum Grotesque Regular\", \"Uxum Grotesque Regular Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0.03em\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(24, 24, 27)\"},children:\"Supported Chains\"})}),fonts:[\"CUSTOM;Uxum Grotesque Regular\"]},YwQdG6HP0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIE1lZGl1bQ==\",\"--framer-font-family\":'\"Uxum Grotesque Medium\", \"Uxum Grotesque Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.03em\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(24, 24, 27)\"},children:\"Supported Chains\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIE1lZGl1bQ==\",\"--framer-font-family\":'\"Uxum Grotesque Medium\", \"Uxum Grotesque Medium Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.03em\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(24, 24, 27)\"},children:\"Supported Chains\"})}),className:\"framer-t2ldb7\",\"data-framer-name\":\"USD0\",fonts:[\"CUSTOM;Uxum Grotesque Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-c0h3aj hidden-d6mxlb\",\"data-framer-name\":\"Networks\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1k7o7a\",\"data-framer-name\":\".Protocols / Bonus / Network\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9uq0fd\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1w28b9r\",\"data-framer-name\":\"AssetWrapper\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6yyj5i\",\"data-framer-name\":\"Assets/Logos/Cryptocurrencies\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-63x692\",\"data-framer-name\":\"Background\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-assf0c\",\"data-framer-name\":\"Logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:12,svg:'<svg width=\"12\" height=\"22\" viewBox=\"0 0 12 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M5.99924 0.713867L5.86816 1.18267V14.7849L5.99924 14.9226L11.9957 11.1904L5.99924 0.713867Z\" fill=\"#C1CBED\"/>\\n<path d=\"M5.99958 0.713867L0.00292969 11.1904L5.99958 14.9226V8.32045V0.713867Z\" fill=\"#FFFFFE\"/>\\n<path d=\"M5.99966 16.118L5.92578 16.2128V21.0581L5.99966 21.2852L11.9998 12.3877L5.99966 16.118Z\" fill=\"#C1CBED\"/>\\n<path d=\"M5.99958 21.2852V16.118L0.00292969 12.3877L5.99958 21.2852Z\" fill=\"#FFFFFE\"/>\\n<path d=\"M6 14.9225L11.9965 11.1903L6 8.32031V14.9225Z\" fill=\"#8C99E9\"/>\\n<path d=\"M0.00292969 11.1903L5.99958 14.9225V8.32031L0.00292969 11.1903Z\" fill=\"#C1CBED\"/>\\n</svg>\\n',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-146ndal\",\"data-framer-name\":\"AssetWrapper\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-17rq7yp\",\"data-framer-name\":\"Assets/Logos/Cryptocurrencies\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nt2kS3X5C:{background:{alt:\"\",fit:\"stretch\",pixelHeight:96,pixelWidth:96,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Juowr0dsWPnuaMK7lezRKxE7Fg.png\"}},qSA0MXLLq:{background:{alt:\"\",fit:\"stretch\",pixelHeight:96,pixelWidth:96,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Juowr0dsWPnuaMK7lezRKxE7Fg.png\"}},YwQdG6HP0:{background:{alt:\"\",fit:\"stretch\",pixelHeight:96,pixelWidth:96,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Juowr0dsWPnuaMK7lezRKxE7Fg.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2461+0+5892+80+48+0+534+-10+0+0+18+0+0),pixelHeight:96,pixelWidth:96,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Juowr0dsWPnuaMK7lezRKxE7Fg.png\"},className:\"framer-4krf90\",\"data-framer-name\":\"BG\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-jer434\",\"data-framer-name\":\"AssetWrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nt2kS3X5C:{background:{alt:\"\",fit:\"fill\",pixelHeight:96,pixelWidth:96,src:\"https://framerusercontent.com/images/ceDwhqj066Nj6ip6NY5hOEnx7A.png\"}},qSA0MXLLq:{background:{alt:\"\",fit:\"fill\",pixelHeight:96,pixelWidth:96,src:\"https://framerusercontent.com/images/ceDwhqj066Nj6ip6NY5hOEnx7A.png\"}},YwQdG6HP0:{background:{alt:\"\",fit:\"fill\",pixelHeight:96,pixelWidth:96,src:\"https://framerusercontent.com/images/ceDwhqj066Nj6ip6NY5hOEnx7A.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2461+0+5892+80+48+0+534+-10+0+0+18+0),pixelHeight:96,pixelWidth:96,src:\"https://framerusercontent.com/images/ceDwhqj066Nj6ip6NY5hOEnx7A.png\"},className:\"framer-1rf6q2c\",\"data-framer-name\":\"Assets/Logos/Cryptocurrencies\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nt2kS3X5C:{background:{alt:\"\",fit:\"fill\",pixelHeight:96,pixelWidth:96,src:\"https://framerusercontent.com/images/60NTIO8gdceKUfqQgZ6E0su8.png\"}},qSA0MXLLq:{background:{alt:\"\",fit:\"fill\",pixelHeight:96,pixelWidth:96,src:\"https://framerusercontent.com/images/60NTIO8gdceKUfqQgZ6E0su8.png\"}},YwQdG6HP0:{background:{alt:\"\",fit:\"fill\",pixelHeight:96,pixelWidth:96,src:\"https://framerusercontent.com/images/60NTIO8gdceKUfqQgZ6E0su8.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2461+0+5892+80+48+0+534+-10+0+0+6),pixelHeight:96,pixelWidth:96,src:\"https://framerusercontent.com/images/60NTIO8gdceKUfqQgZ6E0su8.png\"},className:\"framer-1skcwa3\",\"data-framer-name\":\"image 1\"})})]})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rhj3iv\",\"data-framer-name\":\"Supported Chains\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Tdcf2m17Y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIE1lZGl1bQ==\",\"--framer-font-family\":'\"Uxum Grotesque Medium\", \"Uxum Grotesque Medium Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"44px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(24, 24, 27)\"},children:\"+80\"})})},YwQdG6HP0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIE1lZGl1bQ==\",\"--framer-font-family\":'\"Uxum Grotesque Medium\", \"Uxum Grotesque Medium Placeholder\", sans-serif',\"--framer-font-size\":\"62px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(24, 24, 27)\"},children:\"+80\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIE1lZGl1bQ==\",\"--framer-font-family\":'\"Uxum Grotesque Medium\", \"Uxum Grotesque Medium Placeholder\", sans-serif',\"--framer-font-size\":\"92px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(24, 24, 27)\"},children:\"+80\"})}),className:\"framer-191p7b\",\"data-framer-name\":\"USD0\",fonts:[\"CUSTOM;Uxum Grotesque Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Tdcf2m17Y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Uxum Grotesque Regular\", \"Uxum Grotesque Regular Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0.03em\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(24, 24, 27)\"},children:\"Yield Opportunities\"})}),fonts:[\"CUSTOM;Uxum Grotesque Regular\"]},YwQdG6HP0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIE1lZGl1bQ==\",\"--framer-font-family\":'\"Uxum Grotesque Medium\", \"Uxum Grotesque Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.03em\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(24, 24, 27)\"},children:\"Yield Opportunities\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIE1lZGl1bQ==\",\"--framer-font-family\":'\"Uxum Grotesque Medium\", \"Uxum Grotesque Medium Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.03em\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(24, 24, 27)\"},children:\"Yield Opportunities\"})}),className:\"framer-vc9yk5\",\"data-framer-name\":\"USD0\",fonts:[\"CUSTOM;Uxum Grotesque Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-8zefvb hidden-d6mxlb\",\"data-framer-name\":\"Networks\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-blrqm2\",\"data-framer-name\":\"Frame 41033\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-10ek5rq\",\"data-border\":true,\"data-framer-name\":\"Label\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIE1lZGl1bQ==\",\"--framer-font-family\":'\"Uxum Grotesque Medium\", \"Uxum Grotesque Medium Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(1179deg, rgb(113, 113, 113) 0%, rgb(188, 188, 188) 100%)\"},children:\"Vault\"})})}),className:\"framer-rlppdh\",\"data-framer-name\":\"Revenue Switch\",fonts:[\"CUSTOM;Uxum Grotesque Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ftkcy7\",\"data-border\":true,\"data-framer-name\":\"Label\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIE1lZGl1bQ==\",\"--framer-font-family\":'\"Uxum Grotesque Medium\", \"Uxum Grotesque Medium Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(1179deg, rgb(113, 113, 113) 0%, rgb(188, 188, 188) 100%)\"},children:\"Liquidity Provider\"})})}),className:\"framer-yj9p93\",\"data-framer-name\":\"Revenue Switch\",fonts:[\"CUSTOM;Uxum Grotesque Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-sgbnab\",\"data-border\":true,\"data-framer-name\":\"Label\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIE1lZGl1bQ==\",\"--framer-font-family\":'\"Uxum Grotesque Medium\", \"Uxum Grotesque Medium Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(1179deg, rgb(113, 113, 113) 0%, rgb(188, 188, 188) 100%)\"},children:\"+3\"})})}),className:\"framer-q6ahkm\",\"data-framer-name\":\"Revenue Switch\",fonts:[\"CUSTOM;Uxum Grotesque Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})]})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-r937c3\",\"data-framer-name\":\"Updates\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-18jf3pe\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jsrj13\",\"data-framer-name\":\"Section Description\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Tdcf2m17Y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIE1lZGl1bQ==\",\"--framer-font-family\":'\"Uxum Grotesque Medium\", \"Uxum Grotesque Medium Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(273deg, rgb(138, 96, 255) 0%, rgb(193, 76, 193) 100%)\"},children:\"Updates\"})})})},YwQdG6HP0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIE1lZGl1bQ==\",\"--framer-font-family\":'\"Uxum Grotesque Medium\", \"Uxum Grotesque Medium Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(273deg, rgb(138, 96, 255) 0%, rgb(193, 76, 193) 100%)\"},children:\"Updates\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIE1lZGl1bQ==\",\"--framer-font-family\":'\"Uxum Grotesque Medium\", \"Uxum Grotesque Medium Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(273deg, rgb(138, 96, 255) 0%, rgb(193, 76, 193) 100%)\"},children:\"Updates\"})})}),className:\"framer-pug9fj\",\"data-framer-name\":\"Section title\",fonts:[\"CUSTOM;Uxum Grotesque Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Tdcf2m17Y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"What\u2019s New\"})})},YwQdG6HP0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"What\u2019s New\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"62px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"What\u2019s New\"})}),className:\"framer-8huy36\",\"data-framer-name\":\"Main heading\",fonts:[\"CUSTOM;Uxum Grotesque Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1v88usi\",\"data-styles-preset\":\"xgaci6mnc\",style:{\"--framer-text-alignment\":\"center\"},children:\"Continuous improvements and new features, each release brings a better experience. Stay informed with the latest updates.\"})}),className:\"framer-l9rglt\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18y0qil\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gtj76o\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-fg546n\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Tdcf2m17Y:{query:{from:{alias:\"yuR8MvHzZ\",data:Updates,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"yuR8MvHzZ\",name:\"kt2p7gRuV\",type:\"Identifier\"},{collection:\"yuR8MvHzZ\",name:\"ZrOwRJV0o\",type:\"Identifier\"},{collection:\"yuR8MvHzZ\",name:\"rkA37NDe7\",type:\"Identifier\"},{collection:\"yuR8MvHzZ\",name:\"T6LFYpEch\",type:\"Identifier\"},{collection:\"yuR8MvHzZ\",name:\"id\",type:\"Identifier\"}]}}},children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"yuR8MvHzZ\",data:Updates,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"yuR8MvHzZ\",name:\"kt2p7gRuV\",type:\"Identifier\"},{collection:\"yuR8MvHzZ\",name:\"ZrOwRJV0o\",type:\"Identifier\"},{collection:\"yuR8MvHzZ\",name:\"rkA37NDe7\",type:\"Identifier\"},{collection:\"yuR8MvHzZ\",name:\"T6LFYpEch\",type:\"Identifier\"},{collection:\"yuR8MvHzZ\",name:\"id\",type:\"Identifier\"}]},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({id:idyuR8MvHzZ,kt2p7gRuV:kt2p7gRuVyuR8MvHzZ,rkA37NDe7:rkA37NDe7yuR8MvHzZ,T6LFYpEch:T6LFYpEchyuR8MvHzZ,ZrOwRJV0o:ZrOwRJV0oyuR8MvHzZ},index1)=>{ZrOwRJV0oyuR8MvHzZ??=\"\";T6LFYpEchyuR8MvHzZ??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`yuR8MvHzZ-${idyuR8MvHzZ}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{T6LFYpEch:T6LFYpEchyuR8MvHzZ},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{T6LFYpEch:T6LFYpEchyuR8MvHzZ},webPageId:\"uzZUuQUkd\"},implicitPathVariables:undefined},{href:{pathVariables:{T6LFYpEch:T6LFYpEchyuR8MvHzZ},webPageId:\"uzZUuQUkd\"},implicitPathVariables:undefined},{href:{pathVariables:{T6LFYpEch:T6LFYpEchyuR8MvHzZ},webPageId:\"uzZUuQUkd\"},implicitPathVariables:undefined},{href:{pathVariables:{T6LFYpEch:T6LFYpEchyuR8MvHzZ},webPageId:\"uzZUuQUkd\"},implicitPathVariables:undefined},{href:{pathVariables:{T6LFYpEch:T6LFYpEchyuR8MvHzZ},webPageId:\"uzZUuQUkd\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nt2kS3X5C:{width:`max(min(${componentViewport?.width||\"100vw\"} - 160px, 1280px), 1px)`,y:undefined},qSA0MXLLq:{width:`max(min(${componentViewport?.width||\"100vw\"} - 160px, 1280px), 1px)`,y:undefined},Tdcf2m17Y:{width:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 1280px), 1px)`,y:undefined},YwQdG6HP0:{width:`max(min(${componentViewport?.width||\"100vw\"} - 128px, 1280px), 1px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:289,width:`max((min(${componentViewport?.width||\"100vw\"} - 160px, 1280px) - 16px) / 2, 1px)`,y:(componentViewport?.y||0)+0+9223+120+715+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-xbq6p3-container\",nodeId:\"kGxbdSfHg\",scopeId:\"pipfm3NxG\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nt2kS3X5C:{SdVWDwg4f:resolvedLinks2[2]},qSA0MXLLq:{SdVWDwg4f:resolvedLinks2[1]},Tdcf2m17Y:{dAlQepPvv:16,SdVWDwg4f:resolvedLinks2[4],variant:\"NPPcfHJpt\",WLkLjlfgE:\"12px 40px 12px 40px\"},YwQdG6HP0:{SdVWDwg4f:resolvedLinks2[3]}},children:/*#__PURE__*/_jsx(ChangelogCard,{AaZ9BoLtd:false,BWClWF0sW:false,dAlQepPvv:18,height:\"100%\",HUDjQMsFo:ZrOwRJV0oyuR8MvHzZ,id:\"kGxbdSfHg\",KYbrkzuOQ:true,layoutId:\"kGxbdSfHg\",SdVWDwg4f:resolvedLinks2[0],style:{width:\"100%\"},variant:\"AaaTbKP4k\",width:\"100%\",WLkLjlfgE:\"16px 40px 16px 40px\",yylKX7Kuy:toDateString(rkA37NDe7yuR8MvHzZ,{dateStyle:\"long\",locale:\"\"},activeLocaleCode),zTnHiG7d3:toResponsiveImage(kt2p7gRuVyuR8MvHzZ)})})})})})})})},idyuR8MvHzZ);})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1stxl1a\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Tdcf2m17Y:{query:{from:{alias:\"vqN0sscIF\",data:Updates,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"vqN0sscIF\",name:\"kt2p7gRuV\",type:\"Identifier\"},{collection:\"vqN0sscIF\",name:\"ZrOwRJV0o\",type:\"Identifier\"},{collection:\"vqN0sscIF\",name:\"rkA37NDe7\",type:\"Identifier\"},{collection:\"vqN0sscIF\",name:\"T6LFYpEch\",type:\"Identifier\"},{collection:\"vqN0sscIF\",name:\"id\",type:\"Identifier\"}]}}},children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"vqN0sscIF\",data:Updates,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},offset:{type:\"LiteralValue\",value:2},select:[{collection:\"vqN0sscIF\",name:\"kt2p7gRuV\",type:\"Identifier\"},{collection:\"vqN0sscIF\",name:\"ZrOwRJV0o\",type:\"Identifier\"},{collection:\"vqN0sscIF\",name:\"rkA37NDe7\",type:\"Identifier\"},{collection:\"vqN0sscIF\",name:\"T6LFYpEch\",type:\"Identifier\"},{collection:\"vqN0sscIF\",name:\"id\",type:\"Identifier\"}]},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2?.map(({id:idvqN0sscIF,kt2p7gRuV:kt2p7gRuVvqN0sscIF,rkA37NDe7:rkA37NDe7vqN0sscIF,T6LFYpEch:T6LFYpEchvqN0sscIF,ZrOwRJV0o:ZrOwRJV0ovqN0sscIF},index2)=>{ZrOwRJV0ovqN0sscIF??=\"\";T6LFYpEchvqN0sscIF??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`vqN0sscIF-${idvqN0sscIF}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{T6LFYpEch:T6LFYpEchvqN0sscIF},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{T6LFYpEch:T6LFYpEchvqN0sscIF},webPageId:\"uzZUuQUkd\"},implicitPathVariables:undefined},{href:{pathVariables:{T6LFYpEch:T6LFYpEchvqN0sscIF},webPageId:\"uzZUuQUkd\"},implicitPathVariables:undefined},{href:{pathVariables:{T6LFYpEch:T6LFYpEchvqN0sscIF},webPageId:\"uzZUuQUkd\"},implicitPathVariables:undefined},{href:{pathVariables:{T6LFYpEch:T6LFYpEchvqN0sscIF},webPageId:\"uzZUuQUkd\"},implicitPathVariables:undefined},{href:{pathVariables:{T6LFYpEch:T6LFYpEchvqN0sscIF},webPageId:\"uzZUuQUkd\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nt2kS3X5C:{y:undefined},qSA0MXLLq:{y:undefined},Tdcf2m17Y:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1280px)`,y:undefined},YwQdG6HP0:{width:`min(${componentViewport?.width||\"100vw\"} - 128px, 1280px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:289,width:`min(${componentViewport?.width||\"100vw\"} - 160px, 1280px)`,y:(componentViewport?.y||0)+0+9223+120+715+0+0+0+305+0+305,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1c18te3-container\",nodeId:\"RVBhElv6X\",scopeId:\"pipfm3NxG\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nt2kS3X5C:{SdVWDwg4f:resolvedLinks3[2]},qSA0MXLLq:{SdVWDwg4f:resolvedLinks3[1]},Tdcf2m17Y:{dAlQepPvv:16,KYbrkzuOQ:false,SdVWDwg4f:resolvedLinks3[4],WLkLjlfgE:\"12px 32px 12px 32px\"},YwQdG6HP0:{SdVWDwg4f:resolvedLinks3[3]}},children:/*#__PURE__*/_jsx(ChangelogCard,{AaZ9BoLtd:false,BWClWF0sW:false,dAlQepPvv:18,height:\"100%\",HUDjQMsFo:ZrOwRJV0ovqN0sscIF,id:\"RVBhElv6X\",KYbrkzuOQ:true,layoutId:\"RVBhElv6X\",SdVWDwg4f:resolvedLinks3[0],style:{width:\"100%\"},variant:\"UvR6UlCNz\",width:\"100%\",WLkLjlfgE:\"16px 40px 16px 40px\",yylKX7Kuy:toDateString(rkA37NDe7vqN0sscIF,{dateStyle:\"long\",locale:\"\"},activeLocaleCode),zTnHiG7d3:toResponsiveImage(kt2p7gRuVvqN0sscIF)})})})})})})})},idvqN0sscIF);})})})})})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"zMfuBPn9N\"},implicitPathVariables:undefined},{href:{webPageId:\"zMfuBPn9N\"},implicitPathVariables:undefined},{href:{webPageId:\"zMfuBPn9N\"},implicitPathVariables:undefined},{href:{webPageId:\"zMfuBPn9N\"},implicitPathVariables:undefined},{href:{webPageId:\"zMfuBPn9N\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nt2kS3X5C:{y:undefined},qSA0MXLLq:{y:undefined},Tdcf2m17Y:{y:undefined},YwQdG6HP0:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+0+9223+120+715+0+939,children:/*#__PURE__*/_jsx(Container,{className:\"framer-10c2d77-container\",nodeId:\"QFpnxrFmU\",scopeId:\"pipfm3NxG\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nt2kS3X5C:{xOH4u7Dxw:resolvedLinks4[2]},qSA0MXLLq:{xOH4u7Dxw:resolvedLinks4[1]},Tdcf2m17Y:{xOH4u7Dxw:resolvedLinks4[4]},YwQdG6HP0:{xOH4u7Dxw:resolvedLinks4[3]}},children:/*#__PURE__*/_jsx(Link,{Gtid9bviI:false,height:\"100%\",id:\"QFpnxrFmU\",layoutId:\"QFpnxrFmU\",MexmuZTpf:\"Explore the Updates\",NhjwAsko1:false,variant:\"BbLHkMjly\",width:\"100%\",xOH4u7Dxw:resolvedLinks4[0]})})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2q59tg\",\"data-framer-name\":\"Resources\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-7nhh4r\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14s908d\",\"data-framer-name\":\"Section Description\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Tdcf2m17Y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIE1lZGl1bQ==\",\"--framer-font-family\":'\"Uxum Grotesque Medium\", \"Uxum Grotesque Medium Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(273deg, rgb(138, 96, 255) 0%, rgb(193, 76, 193) 100%)\"},children:\"Resources\"})})})},YwQdG6HP0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIE1lZGl1bQ==\",\"--framer-font-family\":'\"Uxum Grotesque Medium\", \"Uxum Grotesque Medium Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(273deg, rgb(138, 96, 255) 0%, rgb(193, 76, 193) 100%)\"},children:\"Resources\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIE1lZGl1bQ==\",\"--framer-font-family\":'\"Uxum Grotesque Medium\", \"Uxum Grotesque Medium Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(273deg, rgb(138, 96, 255) 0%, rgb(193, 76, 193) 100%)\"},children:\"Resources\"})})}),className:\"framer-slnu2n\",\"data-framer-name\":\"Section title\",fonts:[\"CUSTOM;Uxum Grotesque Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Tdcf2m17Y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Beyond the Usual\"})})},YwQdG6HP0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Beyond the Usual\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"62px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Beyond the Usual\"})}),className:\"framer-79j4iq\",\"data-framer-name\":\"Main heading\",fonts:[\"CUSTOM;Uxum Grotesque Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1v88usi\",\"data-styles-preset\":\"xgaci6mnc\",style:{\"--framer-text-alignment\":\"center\"},children:\"A comprehensive collection of resources to help you navigate and thrive within the Usual protocol.\"})}),className:\"framer-vyjl91\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fp9ed5\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nt2kS3X5C:{y:undefined},qSA0MXLLq:{y:undefined},Tdcf2m17Y:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 460px)`,y:undefined},YwQdG6HP0:{height:200,width:`min(max((min(${componentViewport?.width||\"100vw\"} - 128px, 1280px) - 16px) / 2, 50px) * 2 + 16px, 682px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:410,width:`max((min(${componentViewport?.width||\"100vw\"} - 160px, 1280px) - 32px) / 3, 1px)`,y:(componentViewport?.y||0)+0+11141+120+715+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xdshfm-container\",nodeId:\"J85c4FVdG\",scopeId:\"pipfm3NxG\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nt2kS3X5C:{rPPEbLPdo:22},qSA0MXLLq:{rPPEbLPdo:24},Tdcf2m17Y:{variant:\"NbTm4i4cA\"},YwQdG6HP0:{style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},variant:\"y6bbAS3Hr\",VMK9oD5dQ:addImageAlt({pixelHeight:201,pixelWidth:360,src:\"https://framerusercontent.com/images/WcxzNx9AR5P7uhKZKYpEUtPCBRQ.png\"},\"\")}},children:/*#__PURE__*/_jsx(V1CardsBlog2,{ENUKoaLvq:\"https://docs.usual.money/\",height:\"100%\",id:\"J85c4FVdG\",layoutId:\"J85c4FVdG\",rPPEbLPdo:20,style:{width:\"100%\"},variant:\"cTF0O0iH_\",VMK9oD5dQ:addImageAlt({pixelHeight:520,pixelWidth:832,src:\"https://framerusercontent.com/images/9NXWSr1vvgIUfZnt1yBFvyw5fEE.png\",srcSet:\"https://framerusercontent.com/images/9NXWSr1vvgIUfZnt1yBFvyw5fEE.png?scale-down-to=512 512w,https://framerusercontent.com/images/9NXWSr1vvgIUfZnt1yBFvyw5fEE.png 832w\"},\"\"),vOZH5f2um:\"Documentation\",width:\"100%\",wthhuW4X0:\"Explore Gitbook\",Ze28lfeWz:\"Explore Usual's Gitbook for all details on the protocol\"})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"VBdM6CIMR\"},implicitPathVariables:undefined},{href:{webPageId:\"VBdM6CIMR\"},implicitPathVariables:undefined},{href:{webPageId:\"VBdM6CIMR\"},implicitPathVariables:undefined},{href:{webPageId:\"VBdM6CIMR\"},implicitPathVariables:undefined},{href:{webPageId:\"VBdM6CIMR\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nt2kS3X5C:{y:undefined},qSA0MXLLq:{y:undefined},Tdcf2m17Y:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 460px)`,y:undefined},YwQdG6HP0:{height:200,width:`min(max((min(${componentViewport?.width||\"100vw\"} - 128px, 1280px) - 16px) / 2, 50px) * 2 + 16px, 682px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:410,width:`max((min(${componentViewport?.width||\"100vw\"} - 160px, 1280px) - 32px) / 3, 1px)`,y:(componentViewport?.y||0)+0+11141+120+715+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-6vny6c-container\",nodeId:\"XbYAxP_k_\",scopeId:\"pipfm3NxG\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nt2kS3X5C:{ENUKoaLvq:resolvedLinks5[2],rPPEbLPdo:22},qSA0MXLLq:{ENUKoaLvq:resolvedLinks5[1],rPPEbLPdo:24},Tdcf2m17Y:{ENUKoaLvq:resolvedLinks5[4],variant:\"NbTm4i4cA\"},YwQdG6HP0:{ENUKoaLvq:resolvedLinks5[3],style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},variant:\"y6bbAS3Hr\"}},children:/*#__PURE__*/_jsx(V1CardsBlog2,{ENUKoaLvq:resolvedLinks5[0],height:\"100%\",id:\"XbYAxP_k_\",layoutId:\"XbYAxP_k_\",rPPEbLPdo:20,style:{width:\"100%\"},variant:\"cTF0O0iH_\",VMK9oD5dQ:addImageAlt({pixelHeight:520,pixelWidth:832,src:\"https://framerusercontent.com/images/wll54PN7zObpGPZtEnnCLgBbIQ8.png\",srcSet:\"https://framerusercontent.com/images/wll54PN7zObpGPZtEnnCLgBbIQ8.png?scale-down-to=512 512w,https://framerusercontent.com/images/wll54PN7zObpGPZtEnnCLgBbIQ8.png 832w\"},\"\"),vOZH5f2um:\"Blog\",width:\"100%\",wthhuW4X0:\"Get updates\",Ze28lfeWz:\"Discover the latest updates and plans from the Usual Labs.\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nt2kS3X5C:{y:undefined},qSA0MXLLq:{y:undefined},Tdcf2m17Y:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 460px)`,y:undefined},YwQdG6HP0:{height:200,width:`min(max((min(${componentViewport?.width||\"100vw\"} - 128px, 1280px) - 16px) / 2, 50px) * 2 + 16px, 682px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:410,width:`max((min(${componentViewport?.width||\"100vw\"} - 160px, 1280px) - 32px) / 3, 1px)`,y:(componentViewport?.y||0)+0+11141+120+715+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-syceg7-container\",nodeId:\"KPERqOFpE\",scopeId:\"pipfm3NxG\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nt2kS3X5C:{rPPEbLPdo:22},qSA0MXLLq:{rPPEbLPdo:24},Tdcf2m17Y:{variant:\"NbTm4i4cA\"},YwQdG6HP0:{style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},variant:\"y6bbAS3Hr\"}},children:/*#__PURE__*/_jsx(V1CardsBlog2,{ENUKoaLvq:\"https://discord.usual.money\",height:\"100%\",id:\"KPERqOFpE\",layoutId:\"KPERqOFpE\",rPPEbLPdo:20,style:{width:\"100%\"},variant:\"cTF0O0iH_\",VMK9oD5dQ:addImageAlt({pixelHeight:520,pixelWidth:832,src:\"https://framerusercontent.com/images/hGdrNQ5zEVsczJwf22saLDUXTk.png\",srcSet:\"https://framerusercontent.com/images/hGdrNQ5zEVsczJwf22saLDUXTk.png?scale-down-to=512 512w,https://framerusercontent.com/images/hGdrNQ5zEVsczJwf22saLDUXTk.png 832w\"},\"\"),vOZH5f2um:\"Community\",width:\"100%\",wthhuW4X0:\"Join Discord\",Ze28lfeWz:\"Connect with more Usual enthusiasts.\"})})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-vgdaah\",\"data-framer-name\":\"FAQ\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18ytljs\",\"data-framer-name\":\"Section\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dsqp64\",\"data-framer-name\":\"Head\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11fdjy4\",\"data-framer-name\":\"Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Tdcf2m17Y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIE1lZGl1bQ==\",\"--framer-font-family\":'\"Uxum Grotesque Medium\", \"Uxum Grotesque Medium Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(273deg, rgb(138, 96, 255) 0%, rgb(193, 76, 193) 100%)\"},children:\"FAQ\"})})})},YwQdG6HP0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIE1lZGl1bQ==\",\"--framer-font-family\":'\"Uxum Grotesque Medium\", \"Uxum Grotesque Medium Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(273deg, rgb(138, 96, 255) 0%, rgb(193, 76, 193) 100%)\"},children:\"FAQ\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIE1lZGl1bQ==\",\"--framer-font-family\":'\"Uxum Grotesque Medium\", \"Uxum Grotesque Medium Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(273deg, rgb(138, 96, 255) 0%, rgb(193, 76, 193) 100%)\"},children:\"FAQ\"})})}),className:\"framer-1rkmb4r\",\"data-framer-name\":\"FAQ\",fonts:[\"CUSTOM;Uxum Grotesque Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Tdcf2m17Y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(39, 39, 39)\"},children:\"Frequently asked questions\"})})},YwQdG6HP0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(39, 39, 39)\"},children:\"Frequently asked questions\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1V4dW0gR3JvdGVzcXVlIEJvbGQ=\",\"--framer-font-family\":'\"Uxum Grotesque Bold\", \"Uxum Grotesque Bold Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(39, 39, 39)\"},children:\"Frequently asked questions\"})}),className:\"framer-1y7sv62\",\"data-framer-name\":\"Frequently asked questions\",fonts:[\"CUSTOM;Uxum Grotesque Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1v88usi\",\"data-styles-preset\":\"xgaci6mnc\",style:{\"--framer-text-alignment\":\"center\"},children:\"Find the answers you need to confidently navigate and succeed with Usual.\"})}),className:\"framer-vfucgg\",\"data-framer-name\":\"Find the answers you need to confidently navigate and succeed with Usual.\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nt2kS3X5C:{y:undefined},qSA0MXLLq:{y:undefined},Tdcf2m17Y:{width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`,y:undefined},YwQdG6HP0:{width:`min(${componentViewport?.width||\"100vw\"} - 240px, 884px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:644,y:(componentViewport?.y||0)+0+12586+120+0+0+546,children:/*#__PURE__*/_jsx(Container,{className:\"framer-pz9ppf-container\",nodeId:\"N7gnffI1v\",scopeId:\"pipfm3NxG\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Tdcf2m17Y:{style:{width:\"100%\"}},YwQdG6HP0:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(V1FAQ,{height:\"100%\",id:\"N7gnffI1v\",layoutId:\"N7gnffI1v\",width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Tdcf2m17Y:{y:940}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:920,children:/*#__PURE__*/_jsx(Container,{className:\"framer-117axlv-container\",layoutScroll:true,nodeId:\"c4DEpQ4sI\",rendersWithMotion:true,scopeId:\"pipfm3NxG\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nt2kS3X5C:{__framer__targets:[{ref:ref5,target:\"lDVWOXAc9\"}]},qSA0MXLLq:{__framer__targets:[{ref:ref5,target:\"lDVWOXAc9\"}]},Tdcf2m17Y:{__framer__targets:[{ref:ref5,target:\"lDVWOXAc9\"}]},YwQdG6HP0:{__framer__targets:[{ref:ref5,target:\"lDVWOXAc9\"}]}},children:/*#__PURE__*/_jsx(V1WidgetBaseWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref1,target:\"lDVWOXAc9\"}],__framer__threshold:1,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"c4DEpQ4sI\",layoutId:\"c4DEpQ4sI\",variant:\"r0wLIGyra\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nt2kS3X5C:{y:undefined},qSA0MXLLq:{y:undefined},Tdcf2m17Y:{y:undefined},YwQdG6HP0:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:244,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+13976,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1uc0lwy-container\",nodeId:\"vehp58V8a\",scopeId:\"pipfm3NxG\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nt2kS3X5C:{variant:\"IP8ewSisK\"},qSA0MXLLq:{variant:\"ez0giPPrI\"},Tdcf2m17Y:{variant:\"qjPwvXxdI\"},YwQdG6HP0:{variant:\"efbp4Oak2\"}},children:/*#__PURE__*/_jsx(CloserOverlapV11,{height:\"100%\",id:\"vehp58V8a\",k21jbbjNG:true,layoutId:\"vehp58V8a\",oniChz3rS:\"rgb(249, 248, 255)\",style:{width:\"100%\"},ttBLe5JY2:true,variant:\"cmtAHuJCP\",w0DuN6bMM:true,width:\"100%\",ZNaDAJtGd:\"rgb(8, 8, 8)\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nt2kS3X5C:{y:undefined},qSA0MXLLq:{y:undefined},Tdcf2m17Y:{y:undefined},YwQdG6HP0:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:608,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+14220,children:/*#__PURE__*/_jsx(Container,{className:\"framer-2vsmg6-container\",nodeId:\"eW9BrB3Ed\",scopeId:\"pipfm3NxG\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nt2kS3X5C:{variant:\"K2aexKule\"},qSA0MXLLq:{variant:\"nS38k4f_b\"},Tdcf2m17Y:{R4dJ8jYwt:\"80px 24px 0px 24px\",variant:\"KHCKemTKj\"},YwQdG6HP0:{R4dJ8jYwt:\"0px 80px 0px 80px\",variant:\"nihWo9MOb\"}},children:/*#__PURE__*/_jsx(FooterV11,{height:\"100%\",hKYqvWPpD:true,id:\"eW9BrB3Ed\",layoutId:\"eW9BrB3Ed\",R4dJ8jYwt:\"100px 80px 0px 80px\",style:{width:\"100%\"},variant:\"d166uot76\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-W5uQG.framer-1uzh6c2, .framer-W5uQG .framer-1uzh6c2 { display: block; }\",\".framer-W5uQG.framer-cpyxmp { align-content: center; align-items: center; background-color: #000000; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1460px; }\",\".framer-W5uQG .framer-g1s4ky-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 10; }\",\".framer-W5uQG .framer-1x6w2lo { flex: none; height: 5084px; left: 0px; opacity: 0.3; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-W5uQG .framer-ezdm65 { align-content: center; align-items: center; background-color: #080808; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: hidden; padding: 120px 80px 80px 80px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-W5uQG .framer-fp293c { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: 580px; justify-content: flex-start; max-width: 1280px; overflow: visible; padding: 0px 0px 0px 40px; position: relative; width: 100%; }\",\".framer-W5uQG .framer-1cgepfz { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: 100%; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-W5uQG .framer-14fb152 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-W5uQG .framer-u7glxw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-W5uQG .framer-yjtgo3, .framer-W5uQG .framer-1m64uu, .framer-W5uQG .framer-1jvknbo { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 620px; word-break: break-word; word-wrap: break-word; }\",\".framer-W5uQG .framer-17vhbpy, .framer-W5uQG .framer-bilkvl, .framer-W5uQG .framer-i10owy, .framer-W5uQG .framer-dknnyi, .framer-W5uQG .framer-fgok7t, .framer-W5uQG .framer-m57ve2, .framer-W5uQG .framer-1mzb6hq, .framer-W5uQG .framer-autvo4, .framer-W5uQG .framer-5jk3qd, .framer-W5uQG .framer-1w5r35p, .framer-W5uQG .framer-10b64z9, .framer-W5uQG .framer-20sr31, .framer-W5uQG .framer-grv0hu, .framer-W5uQG .framer-1ruipt2, .framer-W5uQG .framer-1vlo5it, .framer-W5uQG .framer-1v66iuv, .framer-W5uQG .framer-1h3hm22, .framer-W5uQG .framer-14zp4xx, .framer-W5uQG .framer-gk2a58, .framer-W5uQG .framer-xk4jp, .framer-W5uQG .framer-1qpqdmw, .framer-W5uQG .framer-ajjp09, .framer-W5uQG .framer-17jjwuq, .framer-W5uQG .framer-1kw9gry, .framer-W5uQG .framer-1kqoz9w, .framer-W5uQG .framer-1rlp751, .framer-W5uQG .framer-1k3asz0, .framer-W5uQG .framer-16rrc1c, .framer-W5uQG .framer-14dbfj2, .framer-W5uQG .framer-15egbmu, .framer-W5uQG .framer-1mb9khu, .framer-W5uQG .framer-1h9mxet, .framer-W5uQG .framer-nhsu5n, .framer-W5uQG .framer-t6cxvn, .framer-W5uQG .framer-1ty1ec5, .framer-W5uQG .framer-xvg0u0, .framer-W5uQG .framer-1w98bip, .framer-W5uQG .framer-yw6agp, .framer-W5uQG .framer-1ii4jbv, .framer-W5uQG .framer-1tvr6oo, .framer-W5uQG .framer-t2ldb7, .framer-W5uQG .framer-191p7b, .framer-W5uQG .framer-vc9yk5, .framer-W5uQG .framer-rlppdh, .framer-W5uQG .framer-yj9p93, .framer-W5uQG .framer-q6ahkm, .framer-W5uQG .framer-1rkmb4r { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-W5uQG .framer-1gqrwx8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-W5uQG .framer-zwbsf3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 4px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-W5uQG .framer-ekmls1 { -webkit-mask: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0,0,0,1) 100%) add; flex: none; height: 44px; mask: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0,0,0,1) 100%) add; opacity: 0.9; overflow: hidden; position: relative; width: 84px; }\",\".framer-W5uQG .framer-85e2n8 { flex: none; gap: 0px; height: 40px; left: 41px; overflow: visible; position: absolute; top: calc(50.00000000000002% - 40px / 2); width: 40px; }\",\".framer-W5uQG .framer-7vuw9s, .framer-W5uQG .framer-1adnebn, .framer-W5uQG .framer-1i621cp, .framer-W5uQG .framer-6yyj5i { bottom: 0px; flex: none; gap: 0px; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-W5uQG .framer-1k71qgl, .framer-W5uQG .framer-1ivpo5 { flex: none; height: 44px; left: -2px; position: absolute; top: -2px; width: 45px; }\",\".framer-W5uQG .framer-tnt696 { flex: none; gap: 0px; height: 40px; left: calc(48.80952380952383% - 40px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 40px / 2); width: 40px; }\",\".framer-W5uQG .framer-15fl7fr { bottom: -2px; flex: none; gap: 0px; height: 44px; left: 1px; overflow: visible; position: absolute; width: 44px; }\",\".framer-W5uQG .framer-15vw943 { bottom: 2px; flex: none; left: -2px; position: absolute; right: 2px; top: -2px; }\",\".framer-W5uQG .framer-1nkbj84 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 540px; word-break: break-word; word-wrap: break-word; }\",\".framer-W5uQG .framer-j2r8qr { 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: 24px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-W5uQG .framer-2lzi9l-container { flex: none; height: auto; position: relative; width: 198px; }\",\".framer-W5uQG .framer-ertg45 { flex: 1 0 0px; height: 580px; overflow: visible; position: relative; width: 1px; }\",\".framer-W5uQG .framer-1efgleb-container { bottom: 0px; flex: none; left: calc(50.00000000000002% - 480px / 2); position: absolute; top: 0px; width: 480px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-W5uQG .framer-1ga60h4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1280px; opacity: 0.8; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-W5uQG .framer-17juozo { flex: none; height: 25px; position: relative; width: 113px; }\",\".framer-W5uQG .framer-1ohza3n { flex: none; height: 25px; position: relative; width: 110px; }\",\".framer-W5uQG .framer-c2qxr9 { flex: none; height: 23px; position: relative; width: 145px; }\",\".framer-W5uQG .framer-ovjk94 { -webkit-filter: brightness(2) contrast(0.75); filter: brightness(2) contrast(0.75); flex: none; gap: 0px; height: 26px; overflow: visible; position: relative; width: 52px; }\",\".framer-W5uQG .framer-bdr2fq { bottom: 1px; flex: none; left: 0px; position: absolute; right: 6px; top: 20px; }\",\".framer-W5uQG .framer-2ufhmg { flex: none; height: 18px; left: 0px; position: absolute; top: -1px; width: 52px; }\",\".framer-W5uQG .framer-mgji2b { flex: none; height: 25px; position: relative; width: 104px; }\",\".framer-W5uQG .framer-ml9e2t { aspect-ratio: 1.5432098765432098 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 25px); opacity: 0.26; position: relative; width: 39px; }\",\".framer-W5uQG .framer-1mohdli { flex: none; height: 25px; position: relative; width: 106px; }\",\".framer-W5uQG .framer-mmz7xd { flex: none; height: 25px; position: relative; width: 137px; }\",\".framer-W5uQG .framer-1tuibuz { flex: none; height: 27px; position: relative; width: 181px; }\",\".framer-W5uQG .framer-189k3b5 { align-content: flex-start; align-items: flex-start; background-color: #f9f9ff; border-top-left-radius: 32px; border-top-right-radius: 32px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 120px 0px 96px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-W5uQG .framer-1q1s8ut { -webkit-user-select: none; aspect-ratio: 2.5554202192448234 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 691px); left: 50%; min-width: 1000px; overflow: visible; pointer-events: none; position: absolute; top: 1px; transform: translateX(-50%); user-select: none; width: 121%; z-index: 1; }\",\".framer-W5uQG .framer-gg0v2m { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; max-width: 1280px; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-W5uQG .framer-lco490 { 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; max-width: 620px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-W5uQG .framer-1h2cf5u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-W5uQG .framer-t8iy38, .framer-W5uQG .framer-nz69fr, .framer-W5uQG .framer-2a0xbg, .framer-W5uQG .framer-g1s8do, .framer-W5uQG .framer-1ft8xie, .framer-W5uQG .framer-1dpftzq, .framer-W5uQG .framer-pug9fj, .framer-W5uQG .framer-8huy36, .framer-W5uQG .framer-l9rglt, .framer-W5uQG .framer-slnu2n, .framer-W5uQG .framer-79j4iq, .framer-W5uQG .framer-vyjl91 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 600px; word-break: break-word; word-wrap: break-word; }\",\".framer-W5uQG .framer-6r95ux { flex: none; height: 18px; position: relative; width: 118px; }\",\".framer-W5uQG .framer-kyp85w { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-W5uQG .framer-4tnze3 { align-content: center; align-items: center; background-color: #080808; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 120px 0px 160px 0px; position: relative; width: 100%; }\",\".framer-W5uQG .framer-jszl3q, .framer-W5uQG .framer-18jf3pe, .framer-W5uQG .framer-7nhh4r { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-W5uQG .framer-9vsyhj, .framer-W5uQG .framer-zq019y, .framer-W5uQG .framer-1jsrj13, .framer-W5uQG .framer-14s908d { 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; overflow: visible; padding: 0px; position: relative; width: 600px; }\",\".framer-W5uQG .framer-1jmpteu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-W5uQG .framer-n9n02x { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-W5uQG .framer-9pmqsa, .framer-W5uQG .framer-1u2qqf5 { 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: 32px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-W5uQG .framer-1t7vbgq, .framer-W5uQG .framer-194z7vb { flex: none; height: 86px; position: relative; width: 50px; }\",\".framer-W5uQG .framer-chli4e-container, .framer-W5uQG .framer-xbq6p3-container, .framer-W5uQG .framer-1xdshfm-container, .framer-W5uQG .framer-6vny6c-container, .framer-W5uQG .framer-syceg7-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-W5uQG .framer-13ypvt2 { background-color: #ffffff; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05); height: 150px; overflow: hidden; position: relative; width: 200px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-W5uQG .framer-lleld4 { --border-bottom-width: 1.5px; --border-color: #1c1c20; --border-left-width: 1.5px; --border-right-width: 1.5px; --border-style: solid; --border-top-width: 1.5px; align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.15), 0px 10px 25px 0px rgba(0, 0, 0, 0.1), 0px 4px 8px 0px rgba(0, 0, 0, 0.1); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; top: 0px; width: 320px; will-change: var(--framer-will-change-override, transform); }\",\".framer-W5uQG .framer-1pgs9vo { align-content: center; align-items: center; background-color: #151518; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 72px; justify-content: flex-start; overflow: visible; padding: 0px 24px 0px 24px; position: relative; width: 100%; }\",\".framer-W5uQG .framer-mfup6h, .framer-W5uQG .framer-1fad712, .framer-W5uQG .framer-1cirppe, .framer-W5uQG .framer-povbxf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-W5uQG .framer-136lvxx, .framer-W5uQG .framer-1isoje7, .framer-W5uQG .framer-15rsd81, .framer-W5uQG .framer-s0w3st { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; overflow: visible; padding: 2px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-W5uQG .framer-10d5fl2, .framer-W5uQG .framer-1l3lzd4, .framer-W5uQG .framer-1ry8wot { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 72px; justify-content: flex-start; overflow: visible; padding: 0px 24px 0px 24px; position: relative; width: 100%; }\",\".framer-W5uQG .framer-1dtsny8 { --border-bottom-width: 1.5px; --border-color: #1c1c20; --border-left-width: 1.5px; --border-right-width: 1.5px; --border-style: solid; --border-top-width: 1.5px; align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.15), 0px 10px 25px 0px rgba(0, 0, 0, 0.1), 0px 4px 8px 0px rgba(0, 0, 0, 0.1), inset 0px 4px 4px 0px rgba(0, 0, 0, 0.25); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 4px; position: relative; width: min-content; }\",\".framer-W5uQG .framer-hjgfr5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 100%; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 720px; }\",\".framer-W5uQG .framer-1g104ha { --border-bottom-width: 1.5px; --border-color: #1c1c20; --border-left-width: 1.5px; --border-right-width: 1.5px; --border-style: solid; --border-top-width: 1.5px; align-content: center; align-items: center; background-color: #151517; border-bottom-left-radius: 18px; border-bottom-right-radius: 18px; border-top-left-radius: 18px; border-top-right-radius: 18px; box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.15), 0px 10px 25px 0px rgba(0, 0, 0, 0.1), 0px 4px 8px 0px rgba(0, 0, 0, 0.1); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: 70px; justify-content: flex-start; overflow: visible; padding: 0px 24px 0px 24px; position: relative; width: min-content; }\",\".framer-W5uQG .framer-5x9ea9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 3px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-W5uQG .framer-saaf7u, .framer-W5uQG .framer-u3b1un { --framer-paragraph-spacing: 0px; -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-W5uQG .framer-11tq23j, .framer-W5uQG .framer-xm74c4, .framer-W5uQG .framer-liumup { align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: 70px; justify-content: flex-start; overflow: visible; padding: 0px 24px 0px 24px; position: relative; width: min-content; }\",\".framer-W5uQG .framer-1pyur80, .framer-W5uQG .framer-1r3xpjr, .framer-W5uQG .framer-ycutdi { -webkit-user-select: none; align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; overflow: visible; padding: 2px 0px 0px 0px; position: relative; user-select: none; width: min-content; }\",\".framer-W5uQG .framer-6p5j99 { display: grid; flex: none; gap: 16px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(50px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; max-width: 1280px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-W5uQG .framer-18vn5aa { --border-bottom-width: 1.5px; --border-color: #1c1c20; --border-left-width: 1.5px; --border-right-width: 1.5px; --border-style: solid; --border-top-width: 1.5px; align-content: center; align-items: center; align-self: start; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.15), 0px 10px 25px 0px rgba(0, 0, 0, 0.1), 0px 4px 8px 0px rgba(0, 0, 0, 0.1); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; grid-column: span 3; height: 320px; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-W5uQG .framer-jjs3ux { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 100%; justify-content: space-between; overflow: visible; padding: 56px 32px 48px 32px; position: relative; width: 1px; }\",\".framer-W5uQG .framer-18okhnu, .framer-W5uQG .framer-1v36l5a { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 8px 0px 8px; position: relative; width: 100%; }\",\".framer-W5uQG .framer-11t7v7u, .framer-W5uQG .framer-ltp5o3, .framer-W5uQG .framer-1t3v63x, .framer-W5uQG .framer-c2feb8, .framer-W5uQG .framer-16urldo, .framer-W5uQG .framer-4a2h53 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-W5uQG .framer-1xh1uly { align-content: center; align-items: center; 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: 43px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 8px 0px 8px; position: relative; width: 100%; }\",\".framer-W5uQG .framer-1lo7t6n, .framer-W5uQG .framer-168o3cv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-W5uQG .framer-77szih { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: flex-start; max-width: 440px; overflow: visible; padding: 16px 16px 16px 0px; position: relative; width: 1px; }\",\".framer-W5uQG .framer-ketmkc { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.12); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: 1px; justify-content: flex-start; overflow: visible; padding: 40px 32px 32px 32px; position: relative; width: 100%; }\",\".framer-W5uQG .framer-1yswvfi { -webkit-user-select: none; 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; user-select: none; width: min-content; }\",\".framer-W5uQG .framer-1ijcq75-container { aspect-ratio: 2.0285714285714285 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 68px); position: relative; width: 138px; }\",\".framer-W5uQG .framer-njmr1u-container, .framer-W5uQG .framer-1kcwz3w-container, .framer-W5uQG .framer-43i6xp-container { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; width: 100%; }\",\".framer-W5uQG .framer-mw2az { 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; max-width: 1280px; overflow: visible; padding: 24px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-W5uQG .framer-v7fpop-container, .framer-W5uQG .framer-1c18te3-container, .framer-W5uQG .framer-1uc0lwy-container, .framer-W5uQG .framer-2vsmg6-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-W5uQG .framer-1bof93y { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-W5uQG .framer-hke4w, .framer-W5uQG .framer-1e5a90e { flex: none; height: 160px; position: relative; width: 416px; }\",\".framer-W5uQG .framer-icm324 { flex: none; height: 159px; position: relative; width: 416px; }\",\".framer-W5uQG .framer-1gaqt4 { 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; max-width: 1280px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-W5uQG .framer-1wsuhck { --border-bottom-width: 1.5px; --border-color: #1c1c20; --border-left-width: 1.5px; --border-right-width: 1.5px; --border-style: solid; --border-top-width: 1.5px; align-content: center; align-items: center; background-color: #09090a; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; box-shadow: 0px 6px 12px 0px rgba(0, 0, 0, 0.15), 0px 10px 25px 0px rgba(0, 0, 0, 0.1), 0px 4px 8px 0px rgba(0, 0, 0, 0.1); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 312px; justify-content: space-between; max-width: 1280px; overflow: visible; padding: 12px 48px 12px 48px; position: relative; width: 100%; }\",\".framer-W5uQG .framer-11sf0uo { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 24px 16px 24px 16px; position: relative; width: 1px; }\",\".framer-W5uQG .framer-1gtcsf4 { 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: flex-start; overflow: visible; padding: 0px; position: relative; width: 480px; }\",\".framer-W5uQG .framer-swbss9 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 428px; word-break: break-word; word-wrap: break-word; }\",\".framer-W5uQG .framer-ysr4x8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-W5uQG .framer-zt2srl { aspect-ratio: 1.5432098765432098 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 22px); opacity: 0.22; position: relative; width: 34px; }\",\".framer-W5uQG .framer-39na7d { flex: none; height: 26px; position: relative; width: 99px; }\",\".framer-W5uQG .framer-1gt0gek { flex: none; height: 25px; position: relative; width: 116px; }\",\".framer-W5uQG .framer-1xlmmw8-container { -webkit-filter: grayscale(1); filter: grayscale(1); flex: none; height: 100%; position: relative; width: 33%; }\",\".framer-W5uQG .framer-11xtjud-container, .framer-W5uQG .framer-w9vd1u-container, .framer-W5uQG .framer-1qn1jos-container, .framer-W5uQG .framer-11mzj0h-container { height: 65px; position: relative; width: auto; }\",\".framer-W5uQG .framer-7ornkp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 170px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1280px; }\",\".framer-W5uQG .framer-isc32c { flex: none; height: 199px; position: relative; width: 842px; }\",\".framer-W5uQG .framer-1oymr4u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; max-width: 1280px; overflow: visible; padding: 30px 0px 20px 0px; position: relative; width: 1280px; }\",\".framer-W5uQG .framer-oa0ram { -webkit-user-select: none; flex: none; height: 904px; left: -14px; pointer-events: none; position: absolute; right: -6px; top: -140px; user-select: none; z-index: 1; }\",\".framer-W5uQG .framer-1drrpcm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 0px 64px 0px 64px; position: relative; width: 100%; z-index: 1; }\",\".framer-W5uQG .framer-ztvj01 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: 100%; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 200px; }\",\".framer-W5uQG .framer-oyr2h8, .framer-W5uQG .framer-1g2yypu { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 160px; }\",\".framer-W5uQG .framer-1nhpuxl { -webkit-user-select: none; align-content: center; align-items: center; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 390px; justify-content: space-between; overflow: visible; padding: 0px; pointer-events: none; position: relative; user-select: none; width: 360px; }\",\".framer-W5uQG .framer-5xacj6 { -webkit-user-select: none; aspect-ratio: 1.0375494071146245 / 1; flex: none; gap: 0px; height: 120%; overflow: visible; pointer-events: none; position: relative; user-select: none; width: var(--framer-aspect-ratio-supported, 486px); }\",\".framer-W5uQG .framer-5bwuey { bottom: 81px; flex: none; height: 212px; left: calc(51.2345679012346% - 309px / 2); position: absolute; width: 309px; z-index: 0; }\",\".framer-W5uQG .framer-6phbr3 { flex: none; height: 173px; left: calc(51.028806584362165% - 174px / 2); overflow: hidden; position: absolute; top: 120px; width: 174px; }\",\".framer-W5uQG .framer-j9tkgl { bottom: 0px; flex: none; left: calc(50.00000000000002% - 173px / 2); position: absolute; top: 0px; width: 173px; z-index: 1; }\",\".framer-W5uQG .framer-r0vh9i { flex: none; height: 319px; left: calc(51.028806584362165% - 310px / 2); overflow: hidden; position: absolute; top: 39px; width: 310px; }\",\".framer-W5uQG .framer-1a7hisp { bottom: 0px; flex: none; left: 1px; position: absolute; right: 0px; top: 0px; z-index: 2; }\",\".framer-W5uQG .framer-o6fuz2 { bottom: -1px; flex: none; left: calc(50.00000000000002% - 470px / 2); overflow: hidden; position: absolute; top: 0px; width: 470px; }\",\".framer-W5uQG .framer-16mkfj4, .framer-W5uQG .framer-11hxr1v, .framer-W5uQG .framer-cd87g9 { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-W5uQG .framer-7mhmxg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: 100%; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 200px; }\",\".framer-W5uQG .framer-vd6w4e, .framer-W5uQG .framer-h2gp53 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 160px; }\",\".framer-W5uQG .framer-1mk6tcz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 480px; z-index: 1; }\",\".framer-W5uQG .framer-782fmo { 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; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-W5uQG .framer-amm02c { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 326px; word-break: break-word; word-wrap: break-word; }\",\".framer-W5uQG .framer-k2iv5q { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 480px; word-break: break-word; word-wrap: break-word; }\",\".framer-W5uQG .framer-188mm86-container, .framer-W5uQG .framer-10c2d77-container { flex: none; height: auto; position: relative; width: auto; z-index: 1; }\",\".framer-W5uQG .framer-basdsl { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-W5uQG .framer-rnosex-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\".framer-W5uQG .framer-1oah0yz { align-content: center; align-items: center; background: linear-gradient(179.99999999999736deg, #f9f8ff 0%, rgb(246, 246, 246) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 120px 80px 0px 80px; position: relative; width: 100%; }\",\".framer-W5uQG .framer-bzo7mx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 90%; z-index: 2; }\",\".framer-W5uQG .framer-1jw9ok7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-W5uQG .framer-zgtm1p { 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-W5uQG .framer-8h83ko-container { bottom: 0px; flex: none; height: auto; left: 50%; position: absolute; transform: translateX(-50%); width: auto; z-index: 1; }\",\".framer-W5uQG .framer-1p5r9f6 { -webkit-mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 14.000000000000002%, rgba(0,0,0,1) 54%) add; display: grid; flex: 1 0 0px; gap: 20px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(4, minmax(50px, 1fr)); height: min-content; justify-content: center; mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 14.000000000000002%, rgba(0,0,0,1) 54%) add; max-width: 1280px; padding: 0px; position: relative; width: 1px; }\",\".framer-W5uQG .framer-11ynq2q-container { align-self: start; flex: none; height: 220px; justify-self: start; position: relative; width: 100%; }\",\".framer-W5uQG .framer-7pfp39 { align-content: center; align-items: center; background-color: #f7f6f7; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 0px 120px 0px; position: relative; width: 100%; }\",\".framer-W5uQG .framer-1kth4v2 { -webkit-user-select: none; bottom: 0px; flex: none; left: 0px; overflow: hidden; pointer-events: none; position: absolute; right: 0px; top: 0px; user-select: none; z-index: 1; }\",\".framer-W5uQG .framer-rnyafq { align-content: center; align-items: center; 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; height: min-content; justify-content: space-between; max-width: 1120px; overflow: visible; padding: 48px 160px 48px 160px; position: relative; width: 100%; z-index: 1; }\",\".framer-W5uQG .framer-1mkx32j, .framer-W5uQG .framer-1b30df1, .framer-W5uQG .framer-1rhj3iv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 110px; }\",\".framer-W5uQG .framer-t8itxc, .framer-W5uQG .framer-c0h3aj, .framer-W5uQG .framer-8zefvb { align-content: center; align-items: center; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 40px; justify-content: center; overflow: visible; padding: 0px 8px 0px 8px; position: relative; width: 100%; }\",\".framer-W5uQG .framer-1ch6z4d, .framer-W5uQG .framer-1k7o7a { align-content: flex-end; align-items: flex-end; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-W5uQG .framer-e84j29, .framer-W5uQG .framer-9uq0fd { align-content: center; align-items: center; background-color: #f8f8f8; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 6px; position: relative; width: min-content; }\",\".framer-W5uQG .framer-1wwn6sa, .framer-W5uQG .framer-1fha0yh, .framer-W5uQG .framer-ou9qqm, .framer-W5uQG .framer-1w28b9r, .framer-W5uQG .framer-146ndal, .framer-W5uQG .framer-jer434 { flex: none; gap: 0px; height: 24px; overflow: visible; position: relative; width: 24px; }\",\".framer-W5uQG .framer-11fmbd7 { flex: none; height: 16px; left: calc(50.00000000000002% - 16px / 2); position: absolute; top: calc(50.00000000000002% - 16px / 2); width: 16px; }\",\".framer-W5uQG .framer-1yp8qm4 { background-color: #000000; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-W5uQG .framer-k14m9y { flex: none; height: 18px; left: calc(50.00000000000002% - 15px / 2); position: absolute; top: calc(50.00000000000002% - 18px / 2); width: 15px; }\",\".framer-W5uQG .framer-mzlshr { align-content: center; align-items: center; background-color: #eaeaea; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 9.333333015441895px; height: 24px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 24px; }\",\".framer-W5uQG .framer-1tfx1zg { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 110px; word-break: break-word; word-wrap: break-word; }\",\".framer-W5uQG .framer-63x692 { background-color: #6877e8; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-W5uQG .framer-assf0c { flex: none; height: 22px; left: 6px; position: absolute; top: 1px; width: 12px; }\",\".framer-W5uQG .framer-17rq7yp, .framer-W5uQG .framer-1rf6q2c { border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; bottom: 0px; flex: none; gap: 0px; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-override, transform); }\",\".framer-W5uQG .framer-4krf90 { border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-W5uQG .framer-1skcwa3 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 24px; }\",\".framer-W5uQG .framer-blrqm2 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: 100%; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-W5uQG .framer-10ek5rq, .framer-W5uQG .framer-1ftkcy7, .framer-W5uQG .framer-sgbnab { --border-bottom-width: 1px; --border-color: #eaeaea; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background: linear-gradient(245.0694978228257deg, #fafafa 0%, rgb(248, 248, 248) 100%); 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: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 3px 8px 2px 8px; position: relative; width: min-content; }\",\".framer-W5uQG .framer-r937c3 { align-content: center; align-items: center; background-color: #080808; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 72px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 120px 80px 120px 80px; position: relative; width: 100%; }\",\".framer-W5uQG .framer-18y0qil { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1280px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-W5uQG .framer-gtj76o { 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; max-width: 1280px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-W5uQG .framer-fg546n { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; max-width: 1280px; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-W5uQG .framer-1stxl1a { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; max-width: 1280px; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-W5uQG .framer-2q59tg { align-content: center; align-items: center; background-color: #080808; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 72px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 120px 80px 200px 80px; position: relative; width: 100%; }\",\".framer-W5uQG .framer-1fp9ed5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; max-width: 1280px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-W5uQG .framer-vgdaah { align-content: center; align-items: center; background: linear-gradient(-2.3732127374387346e-12deg, #f9f8ff 0%, rgb(246, 246, 246) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 120px; height: min-content; justify-content: center; overflow: hidden; padding: 120px 120px 80px 120px; position: relative; width: 100%; }\",\".framer-W5uQG .framer-18ytljs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-W5uQG .framer-dsqp64, .framer-W5uQG .framer-11fdjy4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-W5uQG .framer-1y7sv62 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 1320px; word-break: break-word; word-wrap: break-word; }\",\".framer-W5uQG .framer-vfucgg { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 520px; word-break: break-word; word-wrap: break-word; }\",\".framer-W5uQG .framer-pz9ppf-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-W5uQG .framer-117axlv-container { bottom: 40px; flex: none; height: auto; position: fixed; right: 40px; width: auto; z-index: 10; }\",...sharedStyle.css,'.framer-W5uQG[data-border=\"true\"]::after, .framer-W5uQG [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 1200px) and (max-width: 1459px) { .framer-W5uQG.framer-cpyxmp { width: 1200px; } .framer-W5uQG .framer-1efgleb-container { left: unset; right: -20px; } .framer-W5uQG .framer-1q1s8ut { height: var(--framer-aspect-ratio-supported, 568px); } .framer-W5uQG .framer-gg0v2m { max-width: unset; } .framer-W5uQG .framer-6p5j99, .framer-W5uQG .framer-1bof93y, .framer-W5uQG .framer-1gaqt4 { max-width: 1040px; } .framer-W5uQG .framer-18okhnu, .framer-W5uQG .framer-1xh1uly { padding: 0px; } .framer-W5uQG .framer-hke4w, .framer-W5uQG .framer-icm324, .framer-W5uQG .framer-1e5a90e { width: 336px; } .framer-W5uQG .framer-1xlmmw8-container { width: 32%; } .framer-W5uQG .framer-1p5r9f6 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: wrap; justify-content: flex-start; } .framer-W5uQG .framer-11ynq2q-container { align-self: unset; min-width: 305px; width: 32%; } .framer-W5uQG .framer-1fp9ed5 { height: 470px; } .framer-W5uQG .framer-1xdshfm-container { order: 0; } .framer-W5uQG .framer-6vny6c-container { order: 1; } .framer-W5uQG .framer-syceg7-container { order: 2; }}\",\"@media (min-width: 1080px) and (max-width: 1199px) { .framer-W5uQG.framer-cpyxmp { width: 1080px; } .framer-W5uQG .framer-fp293c { padding: 0px; } .framer-W5uQG .framer-1efgleb-container { left: unset; right: -100px; width: auto; } .framer-W5uQG .framer-1ga60h4 { flex-wrap: wrap; gap: 40px; justify-content: center; } .framer-W5uQG .framer-1q1s8ut { height: var(--framer-aspect-ratio-supported, 511px); } .framer-W5uQG .framer-6p5j99, .framer-W5uQG .framer-1bof93y, .framer-W5uQG .framer-1gaqt4 { max-width: 1040px; } .framer-W5uQG .framer-hke4w, .framer-W5uQG .framer-icm324, .framer-W5uQG .framer-1e5a90e { width: 333px; } .framer-W5uQG .framer-1xlmmw8-container { width: 41%; } .framer-W5uQG .framer-1p5r9f6 { grid-template-columns: repeat(3, minmax(50px, 1fr)); } .framer-W5uQG .framer-1fp9ed5 { height: 434px; }}\",\"@media (min-width: 810px) and (max-width: 1079px) { .framer-W5uQG.framer-cpyxmp { width: 810px; } .framer-W5uQG .framer-fp293c { flex-direction: column; height: min-content; padding: 0px; } .framer-W5uQG .framer-1cgepfz { align-content: center; align-items: center; flex: none; height: min-content; width: 100%; } .framer-W5uQG .framer-14fb152, .framer-W5uQG .framer-u7glxw { align-content: center; align-items: center; } .framer-W5uQG .framer-yjtgo3 { white-space: pre; width: auto; } .framer-W5uQG .framer-j2r8qr { padding: 0px; } .framer-W5uQG .framer-ertg45 { flex: none; width: 100%; } .framer-W5uQG .framer-1efgleb-container { bottom: unset; height: 580px; left: 50%; top: 50%; transform: translate(-50%, -50%); width: auto; } .framer-W5uQG .framer-1ga60h4 { flex-wrap: wrap; gap: 40px; justify-content: center; } .framer-W5uQG .framer-189k3b5 { padding: 96px 0px 96px 0px; } .framer-W5uQG .framer-1q1s8ut { height: var(--framer-aspect-ratio-supported, 391px); } .framer-W5uQG .framer-gg0v2m { gap: 64px; } .framer-W5uQG .framer-4tnze3 { padding: 120px 0px 0px 0px; } .framer-W5uQG .framer-9vsyhj, .framer-W5uQG .framer-1jsrj13, .framer-W5uQG .framer-14s908d { width: 512px; } .framer-W5uQG .framer-nz69fr, .framer-W5uQG .framer-2a0xbg, .framer-W5uQG .framer-g1s8do, .framer-W5uQG .framer-1gtcsf4, .framer-W5uQG .framer-swbss9, .framer-W5uQG .framer-pug9fj, .framer-W5uQG .framer-8huy36, .framer-W5uQG .framer-l9rglt, .framer-W5uQG .framer-slnu2n, .framer-W5uQG .framer-79j4iq, .framer-W5uQG .framer-vyjl91, .framer-W5uQG .framer-1y7sv62, .framer-W5uQG .framer-vfucgg, .framer-W5uQG .framer-pz9ppf-container { width: 100%; } .framer-W5uQG .framer-1jmpteu { padding: 0px 0px 100px 0px; } .framer-W5uQG .framer-n9n02x { padding: 0px 0px 32px 0px; } .framer-W5uQG .framer-v7fpop-container { max-width: 768px; } .framer-W5uQG .framer-hke4w, .framer-W5uQG .framer-icm324, .framer-W5uQG .framer-1e5a90e { width: 223px; } .framer-W5uQG .framer-1gaqt4 { max-width: 720px; } .framer-W5uQG .framer-1wsuhck { gap: 42px; height: min-content; justify-content: flex-start; padding: 12px 24px 12px 24px; } .framer-W5uQG .framer-ysr4x8 { flex-wrap: wrap; } .framer-W5uQG .framer-1xlmmw8-container { height: 298px; width: 292px; } .framer-W5uQG .framer-7ornkp { height: min-content; width: 100%; } .framer-W5uQG .framer-isc32c { aspect-ratio: 4.23021582733813 / 1; height: var(--framer-aspect-ratio-supported, 139px); width: 588px; } .framer-W5uQG .framer-1oymr4u { padding: 80px 0px 20px 0px; width: 100%; } .framer-W5uQG .framer-oa0ram { bottom: -35px; height: unset; top: -250px; } .framer-W5uQG .framer-1nhpuxl { aspect-ratio: 0.9230769230769231 / 1; height: var(--framer-aspect-ratio-supported, 330px); width: 253px; } .framer-W5uQG .framer-5xacj6 { width: var(--framer-aspect-ratio-supported, 342px); } .framer-W5uQG .framer-5bwuey { bottom: 45px; height: 184px; left: calc(51.16959064327487% - 268px / 2); width: 268px; } .framer-W5uQG .framer-6phbr3 { height: 139px; left: calc(50.00000000000002% - 140px / 2); top: 46px; width: 140px; } .framer-W5uQG .framer-j9tkgl { left: 1px; right: 0px; width: unset; } .framer-W5uQG .framer-r0vh9i { height: 273px; left: calc(51.16959064327487% - 265px / 2); top: -18px; width: 265px; } .framer-W5uQG .framer-o6fuz2 { left: -64px; right: -64px; top: -72px; width: unset; } .framer-W5uQG .framer-1oah0yz { justify-content: flex-start; padding: 80px 64px 80px 64px; } .framer-W5uQG .framer-1p5r9f6 { grid-template-columns: repeat(2, minmax(50px, 1fr)); max-width: 682px; } .framer-W5uQG .framer-rnyafq { padding: 32px 120px 32px 120px; } .framer-W5uQG .framer-r937c3 { padding: 120px 64px 120px 64px; } .framer-W5uQG .framer-18jf3pe, .framer-W5uQG .framer-7nhh4r { order: 0; } .framer-W5uQG .framer-18y0qil { order: 5; } .framer-W5uQG .framer-2q59tg { justify-content: center; padding: 120px 64px 200px 64px; } .framer-W5uQG .framer-1fp9ed5 { align-content: unset; align-items: unset; display: grid; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, min-content); order: 1; } .framer-W5uQG .framer-1xdshfm-container, .framer-W5uQG .framer-6vny6c-container, .framer-W5uQG .framer-syceg7-container { align-self: start; flex: none; grid-column: span 2; height: 200px; justify-self: start; max-width: 682px; width: 100%; } .framer-W5uQG .framer-18ytljs { justify-content: center; max-width: 884px; } .framer-W5uQG .framer-dsqp64 { max-width: 520px; }}\",\"@media (max-width: 809px) { .framer-W5uQG.framer-cpyxmp { width: 390px; } .framer-W5uQG .framer-1x6w2lo { height: 2367px; } .framer-W5uQG .framer-ezdm65 { padding: 120px 24px 60px 24px; } .framer-W5uQG .framer-fp293c { flex-direction: column; height: min-content; padding: 0px; } .framer-W5uQG .framer-1cgepfz { flex: none; height: min-content; width: 100%; } .framer-W5uQG .framer-u7glxw { gap: 0px; } .framer-W5uQG .framer-yjtgo3, .framer-W5uQG .framer-1nkbj84, .framer-W5uQG .framer-t8iy38, .framer-W5uQG .framer-1m64uu, .framer-W5uQG .framer-1jvknbo, .framer-W5uQG .framer-nz69fr, .framer-W5uQG .framer-2a0xbg, .framer-W5uQG .framer-g1s8do, .framer-W5uQG .framer-1gtcsf4, .framer-W5uQG .framer-k2iv5q, .framer-W5uQG .framer-zq019y, .framer-W5uQG .framer-1ft8xie, .framer-W5uQG .framer-1dpftzq, .framer-W5uQG .framer-pug9fj, .framer-W5uQG .framer-8huy36, .framer-W5uQG .framer-l9rglt, .framer-W5uQG .framer-slnu2n, .framer-W5uQG .framer-79j4iq, .framer-W5uQG .framer-vyjl91, .framer-W5uQG .framer-1y7sv62, .framer-W5uQG .framer-vfucgg, .framer-W5uQG .framer-pz9ppf-container { width: 100%; } .framer-W5uQG .framer-17vhbpy, .framer-W5uQG .framer-1ii4jbv, .framer-W5uQG .framer-t2ldb7, .framer-W5uQG .framer-vc9yk5 { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-W5uQG .framer-1gqrwx8 { flex-wrap: wrap; width: 100%; } .framer-W5uQG .framer-zwbsf3 { padding: 8px 0px 0px 0px; } .framer-W5uQG .framer-1k71qgl, .framer-W5uQG .framer-1ivpo5 { aspect-ratio: 1.0227272727272727 / 1; height: var(--framer-aspect-ratio-supported, 40px); width: 41px; } .framer-W5uQG .framer-15vw943 { aspect-ratio: 1 / 1; bottom: unset; height: var(--framer-aspect-ratio-supported, 40px); right: 6px; } .framer-W5uQG .framer-j2r8qr, .framer-W5uQG .framer-7pfp39 { padding: 0px; } .framer-W5uQG .framer-ertg45, .framer-W5uQG .framer-1xdshfm-container, .framer-W5uQG .framer-6vny6c-container, .framer-W5uQG .framer-syceg7-container { flex: none; width: 100%; } .framer-W5uQG .framer-1efgleb-container { bottom: unset; height: auto; left: 50%; transform: translateX(-50%); } .framer-W5uQG .framer-1ga60h4 { flex-wrap: wrap; gap: 40px; justify-content: center; } .framer-W5uQG .framer-189k3b5 { padding: 60px 24px 60px 24px; } .framer-W5uQG .framer-1q1s8ut { height: var(--framer-aspect-ratio-supported, 391px); left: 50%; top: 0px; } .framer-W5uQG .framer-gg0v2m { gap: 40px; } .framer-W5uQG .framer-kyp85w { overflow: hidden; } .framer-W5uQG .framer-4tnze3 { padding: 80px 0px 0px 0px; } .framer-W5uQG .framer-jszl3q { gap: 40px; padding: 0px 0px 100px 0px; } .framer-W5uQG .framer-9vsyhj { max-width: 512px; padding: 0px 24px 0px 24px; width: 100%; } .framer-W5uQG .framer-n9n02x, .framer-W5uQG .framer-1mk6tcz { padding: 0px 24px 0px 24px; width: 100%; } .framer-W5uQG .framer-13ypvt2 { align-content: center; align-items: center; background-color: unset; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; padding: 0px; width: 340px; } .framer-W5uQG .framer-lleld4 { left: unset; position: relative; top: unset; width: 100%; } .framer-W5uQG .framer-1gaqt4 { padding: 0px 24px 0px 24px; } .framer-W5uQG .framer-1wsuhck { flex-direction: column; gap: 32px; height: min-content; justify-content: flex-start; padding: 32px 24px 8px 24px; } .framer-W5uQG .framer-11sf0uo { flex: none; padding: 0px; width: 100%; } .framer-W5uQG .framer-16urldo { order: 0; } .framer-W5uQG .framer-swbss9 { order: 1; width: 100%; } .framer-W5uQG .framer-ysr4x8 { flex-wrap: wrap; gap: 16px; } .framer-W5uQG .framer-1xlmmw8-container { height: 180px; width: 100%; } .framer-W5uQG .framer-7ornkp { height: min-content; width: 100%; } .framer-W5uQG .framer-isc32c { height: 143px; width: 605px; } .framer-W5uQG .framer-1oymr4u { gap: 60px; max-width: unset; width: 100%; } .framer-W5uQG .framer-oa0ram { height: 543px; left: -221px; right: -219px; top: 70px; } .framer-W5uQG .framer-1drrpcm { flex-direction: column; gap: 16px; padding: 0px; } .framer-W5uQG .framer-ztvj01 { align-content: center; align-items: center; flex-direction: row; gap: 16px; height: min-content; order: 0; padding: 0px 24px 0px 24px; width: 100%; } .framer-W5uQG .framer-oyr2h8, .framer-W5uQG .framer-1g2yypu, .framer-W5uQG .framer-vd6w4e, .framer-W5uQG .framer-h2gp53 { align-content: center; align-items: center; flex: 1 0 0px; width: 1px; } .framer-W5uQG .framer-1nhpuxl { order: 2; } .framer-W5uQG .framer-5xacj6 { height: var(--framer-aspect-ratio-supported, 401px); width: 416px; } .framer-W5uQG .framer-5bwuey { bottom: unset; height: 165px; left: calc(51.2345679012346% - 241px / 2); top: calc(59.914712153518145% - 165px / 2); width: 241px; } .framer-W5uQG .framer-6phbr3 { height: 133px; left: calc(51.44230769230771% - 134px / 2); top: calc(42.643391521197024% - 133px / 2); width: 134px; } .framer-W5uQG .framer-j9tkgl { left: calc(50.00000000000002% - 132.88px / 2); width: 133px; } .framer-W5uQG .framer-r0vh9i { height: 245px; left: calc(50.96153846153848% - 240px / 2); top: calc(43.64089775561099% - 245px / 2); width: 240px; } .framer-W5uQG .framer-1a7hisp { left: 1px; } .framer-W5uQG .framer-o6fuz2 { bottom: unset; height: 361px; left: calc(50.41152263374487% - 361px / 2); top: calc(52.23880597014927% - 361px / 2); width: 361px; } .framer-W5uQG .framer-7mhmxg { align-content: center; align-items: center; flex-direction: row; gap: 16px; height: min-content; order: 3; padding: 0px 24px 0px 24px; width: 100%; } .framer-W5uQG .framer-1oah0yz { gap: 40px; justify-content: flex-start; padding: 80px 24px 0px 24px; } .framer-W5uQG .framer-1p5r9f6 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; } .framer-W5uQG .framer-11ynq2q-container { align-self: unset; height: auto; } .framer-W5uQG .framer-rnyafq { gap: 32px; justify-content: flex-start; padding: 64px 24px 64px 24px; } .framer-W5uQG .framer-1mkx32j, .framer-W5uQG .framer-1b30df1, .framer-W5uQG .framer-1rhj3iv { flex: 1 0 0px; width: 1px; } .framer-W5uQG .framer-r937c3, .framer-W5uQG .framer-2q59tg { gap: 40px; padding: 80px 24px 100px 24px; } .framer-W5uQG .framer-1jsrj13, .framer-W5uQG .framer-14s908d { max-width: 512px; width: 100%; } .framer-W5uQG .framer-gtj76o, .framer-W5uQG .framer-1stxl1a { gap: 12px; } .framer-W5uQG .framer-1fp9ed5 { flex-direction: column; max-width: 460px; } .framer-W5uQG .framer-vgdaah { padding: 120px 24px 30px 24px; } .framer-W5uQG .framer-117axlv-container { bottom: 20px; right: 20px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 10341.5\n * @framerIntrinsicWidth 1460\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"qSA0MXLLq\":{\"layout\":[\"fixed\",\"auto\"]},\"nt2kS3X5C\":{\"layout\":[\"fixed\",\"auto\"]},\"YwQdG6HP0\":{\"layout\":[\"fixed\",\"auto\"]},\"Tdcf2m17Y\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"tL_sKr14h\":{\"pattern\":\":tL_sKr14h\",\"name\":\"why\"},\"B9qbYMUfi\":{\"pattern\":\":B9qbYMUfi\",\"name\":\"usual-animation\"},\"s62BANXeO\":{\"pattern\":\":s62BANXeO\",\"name\":\"swap\"}}\n * @framerResponsiveScreen\n */const Framerpipfm3NxG=withCSS(Component,css,\"framer-W5uQG\");export default Framerpipfm3NxG;Framerpipfm3NxG.displayName=\"Dev / Home Dev\";Framerpipfm3NxG.defaultProps={height:10341.5,width:1460};addFonts(Framerpipfm3NxG,[{explicitInter:true,fonts:[{family:\"Uxum Grotesque Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/p3seIywnIAnIXHuYThOPrNgZfo.woff2\"},{family:\"Uxum Grotesque Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/pexfO5izGLBcHiyniDYIZUv6ls0.woff2\"},{family:\"Uxum Grotesque Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/ci6qYgtb6YEPPF81fGDWEKf7bw.woff2\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Uxum Grotesque Italic Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/LgtBO6dOXuwP7RlP1IjkfVGGY.woff2\"},{family:\"Uxum Grotesque Italic Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/PQyJGON8obkQP7ctUdIdLj5fwU.woff2\"}]},...NavBarV11Fonts,...V11CTAFonts,...HeroIllustrationFonts,...V11DropdownMenuFonts,...SwitchFonts,...ProductCard01Fonts,...ProductCard02Fonts,...ProductCard03Fonts,...AssetSwitchFonts,...AssetItemFonts,...TickerFonts,...LinkFonts,...V1CounterFonts,...EcosystemCardFonts,...ChangelogCardFonts,...V1CardsBlog2Fonts,...V1FAQFonts,...V1WidgetBaseFonts,...CloserOverlapV11Fonts,...FooterV11Fonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerpipfm3NxG\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qSA0MXLLq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"nt2kS3X5C\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"YwQdG6HP0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Tdcf2m17Y\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"10341.5\",\"framerScrollSections\":\"{\\\"tL_sKr14h\\\":{\\\"pattern\\\":\\\":tL_sKr14h\\\",\\\"name\\\":\\\"why\\\"},\\\"B9qbYMUfi\\\":{\\\"pattern\\\":\\\":B9qbYMUfi\\\",\\\"name\\\":\\\"usual-animation\\\"},\\\"s62BANXeO\\\":{\\\"pattern\\\":\\\":s62BANXeO\\\",\\\"name\\\":\\\"swap\\\"}}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicWidth\":\"1460\",\"framerColorSyntax\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "currentTarget", "RenderTarget", "isCanvas", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "Z", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "ref", "p", "LayoutGroup", "q", "isInView", "useInView", "i", "childIndex", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "playOrPause", "hidden", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "GFS7XixfE_exports", "__export", "__FramerMetadata__", "GFS7XixfE_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "numberToPixelString", "value", "transition1", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "padding", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "xEJKa8ZRX", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "Image2", "getLoadingLazyAtYPosition", "u", "RichText2", "css", "FramerGFS7XixfE", "withCSS", "GFS7XixfE_default", "addPropertyControls", "ControlType", "addFonts", "__FramerMetadata__", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "hover", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "q97P4ofZl", "njoFAKd7A", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapuzags7", "args", "onMouseEnterwhkpsf", "scopingClassNames", "cx", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "SVG", "css", "FramerM5fmjn3Hx", "withCSS", "M5fmjn3Hx_default", "addPropertyControls", "ControlType", "addFonts", "JSON_RPC_URL", "USD0_ADDRESS", "RWA_HELPER_ADDRESS", "USUAL_API_PREFIX", "TOTAL_SUPPLY_SIGNATURE", "GET_BACKING_SIGNATURE", "K", "M", "B", "T", "PRECISION", "abbreviateNumber", "value", "prefix", "multiplier", "scaledValue", "suffix", "whole", "fractional", "calculateRevenues", "tvl", "revenueRate", "annualMultiplier", "divisor", "revenues", "useEthCall", "to", "input", "result", "setResult", "ye", "ue", "fetchRPC", "signal", "res", "controller", "useAPY", "symbol", "apy", "setAPY", "fetchAPI", "url", "window", "rewards", "totalApy", "a", "b", "useStore", "createStore", "withStoreSwitch", "Component", "props", "store", "setStore", "toggleStore", "p", "withDynamicTitle", "text", "withDynamicDesc", "withDynamicVariant", "withDynamicNum1Title", "withDynamicNum1", "withDynamicNum2Title", "withDynamicNum2", "backing", "collateralizationRatio", "withCollateralizationRatio", "withDynamicSwitchTitle", "withDynamicSwitchDescription", "componentName", "Controls", "props", "layout", "v", "params", "RiveComponent", "rive", "H", "boolean1", "D", "ue", "boolean2", "RenderTarget", "e", "propertyControls", "ControlType", "addPropertyControls", "AnimSwitch_default", "Controls", "componentName", "addPropertyControls", "propertyControls", "ArtboardStateMachine1Fonts", "getFonts", "AnimSwitch_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "CIOMVIyzl", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapqrn5i4", "args", "scopingClassNames", "cx", "LayoutGroup", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerLiqQ_fpln", "withCSS", "LiqQ_fpln_default", "addPropertyControls", "ControlType", "addFonts", "p6jB45PEX_exports", "__export", "__FramerMetadata__", "p6jB45PEX_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "numberToPixelString", "value", "transition1", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "padding", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "hyBJlv8P2", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "Image2", "getLoadingLazyAtYPosition", "u", "RichText2", "css", "Framerp6jB45PEX", "withCSS", "p6jB45PEX_default", "addPropertyControls", "ControlType", "addFonts", "__FramerMetadata__", "US8YMbf4A_exports", "__export", "__FramerMetadata__", "US8YMbf4A_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "numberToPixelString", "value", "transition1", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "padding", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "OtvbAw3DJ", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "Image2", "getLoadingLazyAtYPosition", "u", "RichText2", "css", "FramerUS8YMbf4A", "withCSS", "US8YMbf4A_default", "addPropertyControls", "ControlType", "addFonts", "__FramerMetadata__", "RichTextWithTVLAbbreviated7itakd", "withCodeBoundaryForOverrides", "RichText2", "withTVLAbbreviated", "RichTextWithCollateralizationRatiokvckg4", "withCollateralizationRatio", "RichTextWithRevenuesxjtb5c", "withRevenues", "RichTextWithAPY1my9una", "withAPY", "SwitchMobileFonts", "getFonts", "LiqQ_fpln_default", "ProductCard01Fonts", "US8YMbf4A_default", "ProductCard02Fonts", "p6jB45PEX_default", "ProductCard03Fonts", "GFS7XixfE_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "metricSize", "subtextSize", "switchSubtextSize", "switchTitleSize", "titleSize", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "zdc1xENiU", "A2ZWZgN9F", "lBfMNU7_t", "WKUTks7nq", "UULSwUwFP", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "CIOMVIyzl7htncx", "args", "CIOMVIyzl1kk6die", "CIOMVIyzlfw86pe", "CIOMVIyzl1hjlsxl", "scopingClassNames", "cx", "LayoutGroup", "u", "Image2", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerO8g3_TEK7", "withCSS", "O8g3_TEK7_default", "addPropertyControls", "ControlType", "addFonts", "Uj51H0VpQ_exports", "__export", "__FramerMetadata__", "Uj51H0VpQ_default", "ArtboardStateMachine1Fonts", "getFonts", "AnimSwitch_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerUj51H0VpQ", "withCSS", "Uj51H0VpQ_default", "addPropertyControls", "ControlType", "addFonts", "__FramerMetadata__", "serializationHash", "variantClassNames", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "comingSoon", "height", "id", "image", "label", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "qzNeBa4EV", "wp1_8uHtb", "wjCl7GZKr", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "FramerVs5fsVuCV", "withCSS", "Vs5fsVuCV_default", "addPropertyControls", "ControlType", "addFonts", "NavBarV11Fonts", "getFonts", "yr7NPWIHK_default", "ContainerWithFX", "withFX", "Container", "V11CTAFonts", "hEcnoZDn_default", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "HeroIllustrationFonts", "gi_nqfxz5_default", "ContainerWithOptimizedAppearEffect", "V11DropdownMenuFonts", "M5fmjn3Hx_default", "RichTextWithDynamicTitle11t7v7u", "withCodeBoundaryForOverrides", "RichText2", "withDynamicTitle", "RichTextWithDynamicDescltp5o3", "withDynamicDesc", "RichTextWithDynamicNum1Title1rlp751", "withDynamicNum1Title", "RichTextWithDynamicNum11k3asz0", "withDynamicNum1", "RichTextWithDynamicNum2Title16rrc1c", "withDynamicNum2Title", "RichTextWithDynamicNum214dbfj2", "withDynamicNum2", "RichTextWithDynamicSwitchTitle1t3v63x", "withDynamicSwitchTitle", "RichTextWithDynamicSwitchDescriptionc2feb8", "withDynamicSwitchDescription", "SwitchFonts", "Uj51H0VpQ_default", "SwitchWithStoreSwitch1ijcq75WithMappedReactProps1n9h0s8", "withMappedReactProps", "withStoreSwitch", "Uj51H0VpQ_exports", "ProductCard01Fonts", "US8YMbf4A_default", "ProductCard01WithDynamicVariantnjmr1uWithMappedReactProps1gguo81", "withDynamicVariant", "US8YMbf4A_exports", "ProductCard02Fonts", "p6jB45PEX_default", "ProductCard02WithDynamicVariant1kcwz3wWithMappedReactProps1e330cl", "p6jB45PEX_exports", "ProductCard03Fonts", "GFS7XixfE_default", "ProductCard03WithDynamicVariant43i6xpWithMappedReactProps1801cm6", "GFS7XixfE_exports", "AssetSwitchFonts", "O8g3_TEK7_default", "AssetItemFonts", "Vs5fsVuCV_default", "TickerFonts", "Ticker", "RichTextWithUSUALxAPY1mb9khu", "withUSUALxAPY", "RichTextWithRevenuesnhsu5n", "withRevenues", "MotionDivWithFX", "LinkFonts", "ZPxe4RUhi_default", "V1CounterFonts", "unqgq04VT_default", "EcosystemCardFonts", "OZTo0_s5I_default", "ChangelogCardFonts", "pZgsidZ5J_default", "V1CardsBlog2Fonts", "Ee5hBujEw_default", "V1FAQFonts", "lQcSZBSxR_default", "V1WidgetBaseFonts", "czraw8c0S_default", "V1WidgetBaseWithVariantAppearEffect", "withVariantAppearEffect", "CloserOverlapV11Fonts", "bODLsdDpz_default", "FooterV11Fonts", "RKixl7fdY_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "transition2", "animation1", "animation2", "transition3", "animation3", "transition4", "animation4", "animation5", "transformTemplate1", "_", "t", "transformTemplate2", "transition5", "animation6", "animation7", "animation8", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "addImageAlt", "image", "alt", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "data", "useQueryData", "toDateString", "options", "activeLocale", "date", "display", "dateOptions", "fallbackLocale", "locale", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "I1cKsZ6l1g9yaryxsc", "h6eAt4RpKg9yaryxsc", "bhY__7WiPg9yaryxsc", "EHGDe67TZg9yaryxsc", "T1DCFDVFXg9yaryxsc", "SycvZOZywg9yaryxsc", "lXgE05m0Rg9yaryxsc", "idg9yaryxsc", "kt2p7gRuVyuR8MvHzZ", "ZrOwRJV0oyuR8MvHzZ", "rkA37NDe7yuR8MvHzZ", "T6LFYpEchyuR8MvHzZ", "idyuR8MvHzZ", "kt2p7gRuVvqN0sscIF", "ZrOwRJV0ovqN0sscIF", "rkA37NDe7vqN0sscIF", "T6LFYpEchvqN0sscIF", "idvqN0sscIF", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "njoFAKd7Atxyyif", "overlay", "loadMore", "args", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "isDisplayed", "isDisplayed1", "ref2", "ref3", "isDisplayed2", "isDisplayed3", "elementId1", "ref4", "elementId2", "ref5", "router", "useRouter", "activeLocaleCode", "useLocaleCode", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "PropertyOverrides2", "Image2", "getLoadingLazyAtYPosition", "x", "SVG", "l", "AnimatePresence", "Floating", "ResolveLinks", "resolvedLinks", "ChildrenCanSuspend", "DQWzLRVSt_default", "Y_kSu3ZOV_default", "A0jyWmIn6_default", "collection", "paginationInfo", "index", "PathVariablesContext", "resolvedLinks1", "HQTnxFNOP_default", "collection1", "paginationInfo1", "loadMore1", "index1", "resolvedLinks2", "collection2", "paginationInfo2", "loadMore2", "index2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "css", "Framerpipfm3NxG", "withCSS", "pipfm3NxG_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
