{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/LHz3bw67SqHRmnCKTlE6/Ticker.js", "ssg:https://framerusercontent.com/modules/QCGe0rFdJk9vqhtmCLY0/pGDnJrRhIGtJDM0XQH3B/uUaE2pdtI.js", "ssg:https://framerusercontent.com/modules/HR4m4GrMfzkeRKdG2rvY/FkLsUr7erBN7YRbYMJVZ/bCsGAafEr.js", "ssg:https://framerusercontent.com/modules/LJNf3jyRSXeu67fSmRQs/yo7EDlyiBX1JEpCILeLn/Tickertest.js", "ssg:https://framerusercontent.com/modules/4ACux8hKVLUAJESOof8u/8zVXjVeFF1k9spRqjouH/k3sz8CTXO.js", "ssg:https://framerusercontent.com/modules/0UyLjSqmQlvyzTqpiDwk/tQRE4kP6HFe4kK29wH0I/k3sz8CTXO.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 (1d068b1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,Link,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 enabledGestures={QNjLCfc8a:{hover:true},X4rMxUJDz:{hover:true}};const cycleOrder=[\"QNjLCfc8a\",\"X4rMxUJDz\"];const serializationHash=\"framer-qEbR1\";const variantClassNames={QNjLCfc8a:\"framer-v-n8u3db\",X4rMxUJDz:\"framer-v-1f1fsmm\"};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 humanReadableVariantMap={Default:\"QNjLCfc8a\",Smol:\"X4rMxUJDz\"};const getProps=({business,height,hover,id,image,link,name1,width,...props})=>{return{...props,CByXvhyO9:link??props.CByXvhyO9,fKm3kbwmC:business??props.fKm3kbwmC,lYXr9v7pK:image??props.lYXr9v7pK??{alt:\"\",src:\"https://framerusercontent.com/images/2yUAR8VsNruV4dsYnKAqw0dwMs.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/2yUAR8VsNruV4dsYnKAqw0dwMs.jpg?scale-down-to=2048 978w,https://framerusercontent.com/images/2yUAR8VsNruV4dsYnKAqw0dwMs.jpg 1609w\"},variant:humanReadableVariantMap[props.variant]??props.variant??\"QNjLCfc8a\",Vz9no7KiI:hover??props.Vz9no7KiI,yBz2HDdAq:name1??props.yBz2HDdAq};};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,Vz9no7KiI,lYXr9v7pK,CByXvhyO9,fKm3kbwmC,yBz2HDdAq,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"QNjLCfc8a\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnterqm179k=activeVariantCallback(async(...args)=>{if(Vz9no7KiI){const res=await Vz9no7KiI(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(gestureVariant===\"X4rMxUJDz-hover\")return true;return false;};const isDisplayed1=()=>{if(gestureVariant===\"QNjLCfc8a-hover\")return true;return false;};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-n8u3db\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"QNjLCfc8a\",ref:refBinding,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"none\",...style},variants:{\"QNjLCfc8a-hover\":{\"--border-bottom-width\":\"1.5px\",\"--border-color\":\"rgb(35, 30, 86)\",\"--border-left-width\":\"1.5px\",\"--border-right-width\":\"1.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1.5px\",boxShadow:\"3px 3px 0px 0px rgb(32, 29, 87)\"},\"X4rMxUJDz-hover\":{\"--border-bottom-width\":\"1.5px\",\"--border-color\":\"rgb(35, 30, 86)\",\"--border-left-width\":\"1.5px\",\"--border-right-width\":\"1.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1.5px\",boxShadow:\"3px 3px 0px 0px rgb(32, 29, 87)\"}},...addPropertyOverrides({\"QNjLCfc8a-hover\":{\"data-border\":true,\"data-framer-name\":undefined},\"X4rMxUJDz-hover\":{\"data-border\":true,\"data-framer-name\":undefined},X4rMxUJDz:{\"data-framer-name\":\"Smol\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:3369,pixelWidth:1609,sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(lYXr9v7pK)},className:\"framer-1kz9zg5\",\"data-framer-name\":\"Carousel-Testimonial\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"RHVt___eJ\",onMouseEnter:onMouseEnterqm179k,style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12}}),/*#__PURE__*/_jsx(Link,{motionChild:true,nodeId:\"K2ZAcz34t\",scopeId:\"uUaE2pdtI\",...addPropertyOverrides({\"QNjLCfc8a-hover\":{href:CByXvhyO9,openInNewTab:true},\"X4rMxUJDz-hover\":{href:CByXvhyO9,openInNewTab:true}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-83og7v framer-1ywkmcj\",layoutDependency:layoutDependency,layoutId:\"K2ZAcz34t\",style:{background:\"linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%)\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},variants:{\"QNjLCfc8a-hover\":{background:\"linear-gradient(180deg, rgba(35, 30, 86, 0.05) 0%, rgba(35, 30, 86, 0.1) 50.65066128432571%, rgba(35, 30, 86, 0.7) 100%)\"},\"X4rMxUJDz-hover\":{background:\"linear-gradient(180deg, rgba(35, 30, 86, 0.05) 0%, rgba(35, 30, 86, 0.1) 50.65066128432571%, rgba(35, 30, 86, 0.7) 100%)\"}},children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-e1cpz3\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"rrlkT3_ne\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtYm9sZA==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Content\"})}),className:\"framer-12uxmwp\",fonts:[\"FS;Plus Jakarta Sans-bold\"],layoutDependency:layoutDependency,layoutId:\"o8yXDDsiA\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:fKm3kbwmC,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtbWVkaXVt\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Content\"})}),className:\"framer-19236mj\",fonts:[\"FS;Plus Jakarta Sans-medium\"],layoutDependency:layoutDependency,layoutId:\"yj6dAuoyS\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:yBz2HDdAq,verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ewyasj\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"GsVFFmvG_\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtYm9sZA==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Content\"})}),className:\"framer-oaxjut\",fonts:[\"FS;Plus Jakarta Sans-bold\"],layoutDependency:layoutDependency,layoutId:\"PAjhGFeqs\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:fKm3kbwmC,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtbWVkaXVt\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Content\"})}),className:\"framer-133zmon\",fonts:[\"FS;Plus Jakarta Sans-medium\"],layoutDependency:layoutDependency,layoutId:\"t9y9DEx8c\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:yBz2HDdAq,verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1siv70l\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:39,intrinsicWidth:41,layoutDependency:layoutDependency,layoutId:\"akTgwmhus\",svg:'<svg width=\"41\" height=\"39\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M30.528 8.125c.936 0 1.695.727 1.695 1.625v14.625c0 .897-.76 1.625-1.695 1.625-.936 0-1.695-.728-1.695-1.625V13.673L11.385 30.399a1.747 1.747 0 0 1-2.397 0 1.578 1.578 0 0 1 0-2.298l17.447-16.726H15.272c-.936 0-1.695-.728-1.695-1.625 0-.898.76-1.625 1.695-1.625h15.256Z\" fill=\"#fff\"/></svg>',withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-8y9uol\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:39,intrinsicWidth:41,layoutDependency:layoutDependency,layoutId:\"zrw5sjoOW\",svg:'<svg width=\"41\" height=\"39\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M30.528 8.125c.936 0 1.695.727 1.695 1.625v14.625c0 .897-.76 1.625-1.695 1.625-.936 0-1.695-.728-1.695-1.625V13.673L11.385 30.399a1.747 1.747 0 0 1-2.397 0 1.578 1.578 0 0 1 0-2.298l17.447-16.726H15.272c-.936 0-1.695-.728-1.695-1.625 0-.898.76-1.625 1.695-1.625h15.256Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})]})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-qEbR1.framer-1ywkmcj, .framer-qEbR1 .framer-1ywkmcj { display: block; }\",\".framer-qEbR1.framer-n8u3db { cursor: pointer; height: 536px; overflow: hidden; position: relative; width: 256px; will-change: var(--framer-will-change-override, transform); }\",\".framer-qEbR1 .framer-1kz9zg5, .framer-qEbR1 .framer-83og7v { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-override, transform); }\",\".framer-qEbR1 .framer-e1cpz3 { bottom: 24px; flex: none; height: 44px; left: calc(50.78125000000002% - 213px / 2); overflow: hidden; position: absolute; width: 213px; z-index: 1; }\",\".framer-qEbR1 .framer-12uxmwp, .framer-qEbR1 .framer-oaxjut { flex: none; height: auto; left: 0px; position: absolute; top: 0px; white-space: pre; width: auto; }\",\".framer-qEbR1 .framer-19236mj, .framer-qEbR1 .framer-133zmon { bottom: 0px; flex: none; height: auto; left: 0px; position: absolute; white-space: pre; width: auto; }\",\".framer-qEbR1 .framer-1ewyasj { bottom: 24px; flex: none; height: 44px; left: calc(50.78125000000002% - 213px / 2); overflow: hidden; position: absolute; width: 213px; }\",\".framer-qEbR1 .framer-1siv70l { aspect-ratio: 1.0512820512820513 / 1; bottom: 12px; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: absolute; right: 13px; width: 25px; z-index: 1; }\",\".framer-qEbR1 .framer-8y9uol { aspect-ratio: 1.0512820512820513 / 1; bottom: 12px; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: absolute; right: 12px; width: 25px; }\",\".framer-qEbR1.framer-v-1f1fsmm.framer-n8u3db { height: 256px; overflow: visible; will-change: unset; }\",\".framer-qEbR1.framer-v-1f1fsmm .framer-83og7v { overflow: visible; will-change: unset; }\",\".framer-qEbR1.framer-v-n8u3db.hover .framer-83og7v { text-decoration: none; }\",\".framer-qEbR1.framer-v-1f1fsmm.hover.framer-n8u3db { will-change: unset; }\",\".framer-qEbR1.framer-v-1f1fsmm.hover .framer-83og7v { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; justify-content: center; padding: 0px; text-decoration: none; will-change: unset; }\",\".framer-qEbR1.framer-v-1f1fsmm.hover .framer-e1cpz3 { order: 4; }\",\".framer-qEbR1.framer-v-1f1fsmm.hover .framer-1siv70l { order: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-qEbR1.framer-v-1f1fsmm.hover .framer-83og7v { gap: 0px; } .framer-qEbR1.framer-v-1f1fsmm.hover .framer-83og7v > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-qEbR1.framer-v-1f1fsmm.hover .framer-83og7v > :first-child { margin-left: 0px; } .framer-qEbR1.framer-v-1f1fsmm.hover .framer-83og7v > :last-child { margin-right: 0px; } }\",'.framer-qEbR1[data-border=\"true\"]::after, .framer-qEbR1 [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 536\n * @framerIntrinsicWidth 256\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"X4rMxUJDz\":{\"layout\":[\"fixed\",\"fixed\"]},\"VAWXfIQN3\":{\"layout\":[\"fixed\",\"fixed\"]},\"I2gDhwQAX\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"Vz9no7KiI\":\"hover\",\"lYXr9v7pK\":\"image\",\"CByXvhyO9\":\"link\",\"fKm3kbwmC\":\"business\",\"yBz2HDdAq\":\"name1\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameruUaE2pdtI=withCSS(Component,css,\"framer-qEbR1\");export default FrameruUaE2pdtI;FrameruUaE2pdtI.displayName=\"Carousel-Testimonial\";FrameruUaE2pdtI.defaultProps={height:536,width:256};addPropertyControls(FrameruUaE2pdtI,{variant:{options:[\"QNjLCfc8a\",\"X4rMxUJDz\"],optionTitles:[\"Default\",\"Smol\"],title:\"Variant\",type:ControlType.Enum},Vz9no7KiI:{title:\"Hover\",type:ControlType.EventHandler},lYXr9v7pK:{__defaultAssetReference:\"data:framer/asset-reference,2yUAR8VsNruV4dsYnKAqw0dwMs.jpg?originalFilename=photo3.jpg&preferredSize=auto\",__vekterDefault:{alt:\"\",assetReference:\"data:framer/asset-reference,2yUAR8VsNruV4dsYnKAqw0dwMs.jpg?originalFilename=photo3.jpg&preferredSize=auto\"},title:\"Image\",type:ControlType.ResponsiveImage},CByXvhyO9:{title:\"Link\",type:ControlType.Link},fKm3kbwmC:{defaultValue:\"\",description:\"\",displayTextArea:false,placeholder:\"\",title:\"Business\",type:ControlType.String},yBz2HDdAq:{defaultValue:\"\",placeholder:\"\",title:\"Name\",type:ControlType.String}});addFonts(FrameruUaE2pdtI,[{explicitInter:true,fonts:[{family:\"Plus Jakarta Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/AJVGEOXGB2ALQKAZEK2LDOLCVBCMCOIT/LDEP4R7SNNABDEG433DCQGM2A7YCBHLU/OWABOLGBAKFVLPZ756IYS6EKYKU54K3I.woff2\",weight:\"700\"},{family:\"Plus Jakarta Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/3U7D2WJULAFN5UCDE2DSKFPDTJNUSRPY/XTZGHUDFURQVBRVTOPX7XHP5YBIQJL2U/FVNNCZHGTHUOM3RCJDOO45QMBIJISVEG.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameruUaE2pdtI\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"Vz9no7KiI\\\":\\\"hover\\\",\\\"lYXr9v7pK\\\":\\\"image\\\",\\\"CByXvhyO9\\\":\\\"link\\\",\\\"fKm3kbwmC\\\":\\\"business\\\",\\\"yBz2HDdAq\\\":\\\"name1\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"X4rMxUJDz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"VAWXfIQN3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"I2gDhwQAX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"256\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"536\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./uUaE2pdtI.map", "// Generated by Framer (bab6da3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,ResolveLinks,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import CarouselTestimonial from\"https://framerusercontent.com/modules/QCGe0rFdJk9vqhtmCLY0/pGDnJrRhIGtJDM0XQH3B/uUaE2pdtI.js\";const CarouselTestimonialFonts=getFonts(CarouselTestimonial);const serializationHash=\"framer-5GAjg\";const variantClassNames={ID2bWeViR:\"framer-v-kcsz96\"};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 addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const equals=(a,b)=>{return typeof a===\"string\"&&typeof b===\"string\"?a.toLowerCase()===b.toLowerCase():a===b;};const convertFromBoolean=(value,activeLocale)=>{if(value){return\"https://www.ownr.co/blog/a-day-in-the-life-of-featuring-jasmine-williams/\";}else{return undefined;}};const convertFromBoolean1=(value,activeLocale)=>{if(value){return\"https://www.ownr.co/blog/ownr-success-story-sole-premium-shoe-care/\";}else{return undefined;}};const convertFromBoolean2=(value,activeLocale)=>{if(value){return\"https://www.ownr.co/blog/a-day-in-the-life-of-featuring-jetsurf-toronto/\";}else{return undefined;}};const convertFromBoolean3=(value,activeLocale)=>{if(value){return\"https://www.ownr.co/blog/camilla-james-journey-to-ownership-and-how-her-swimwear-label-the-saltwater-collective-is-helping-keep-our-oceans-clean/\";}else{return undefined;}};const convertFromBoolean4=(value,activeLocale)=>{if(value){return\"https://www.ownr.co/blog/a-day-in-the-life-of-featuring-son-of-a-woodcutter/\";}else{return undefined;}};const convertFromBoolean5=(value,activeLocale)=>{if(value){return\"https://www.ownr.co/blog/day-in-the-life-pet-sitting-for-fun-and-profit/\";}else{return\"\";}};const toString=value=>{return typeof value===\"string\"?value:String(value);};const convertFromBoolean6=(value,activeLocale)=>{if(value){return\"https://www.ownr.co/blog/ownr-success-stories-camila-tea/\";}else{return undefined;}};const convertFromBoolean7=(value,activeLocale)=>{if(value){return\"https://www.ownr.co/blog/plentea-tea-bar-starting-a-tea-business-in-canada/\";}else{return undefined;}};const convertFromBoolean8=(value,activeLocale)=>{if(value){return\"https://www.ownr.co/blog/a-day-in-the-life-of-featuring-judy-singer/\";}else{return undefined;}};const convertFromBoolean9=(value,activeLocale)=>{if(value){return\"https://www.ownr.co/blog/ownr-success-story-road-astronaut/\";}else{return undefined;}};const convertFromBoolean10=(value,activeLocale)=>{if(value){return\"https://www.ownr.co/blog/this-entrepreneur-started-his-masonry-business-with-ownr/\";}else{return undefined;}};const convertFromBoolean11=(value,activeLocale)=>{if(value){return\"https://www.ownr.co/blog/a-day-in-the-life-of-featuring-bonafide-restaurant/\";}else{return undefined;}};const convertFromBoolean12=(value,activeLocale)=>{if(value){return\"https://www.ownr.co/blog/ownr-success-story-gradient-movement/\";}else{return undefined;}};const convertFromBoolean13=(value,activeLocale)=>{if(value){return\"https://www.ownr.co/blog/a-day-in-the-life-of-featuring-wolfe-co/\";}else{return 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=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"ID2bWeViR\",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-kcsz96\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"ID2bWeViR\",ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-f4jxwn\",layoutDependency:layoutDependency,layoutId:\"erQIx1zHq\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:convertFromBoolean(equals(activeLocale?.id,\"default\"),activeLocale),implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:536,width:\"256px\",y:(componentViewport?.y||0)+(0+((componentViewport?.height||576)-0-576)/2)+40,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ctk10t-container\",layoutDependency:layoutDependency,layoutId:\"K3X6splbM-container\",nodeId:\"K3X6splbM\",rendersWithMotion:true,scopeId:\"bCsGAafEr\",children:/*#__PURE__*/_jsx(CarouselTestimonial,{CByXvhyO9:resolvedLinks[0],fKm3kbwmC:\"Jasmine Williams Media\",height:\"100%\",id:\"K3X6splbM\",layoutId:\"K3X6splbM\",lYXr9v7pK:addImageAlt({pixelHeight:1154,pixelWidth:552,src:\"https://framerusercontent.com/images/A1bMy8FIxXhhnHpd9iE6z1vzFIY.png\",srcSet:\"https://framerusercontent.com/images/A1bMy8FIxXhhnHpd9iE6z1vzFIY.png 552w\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"QNjLCfc8a\",width:\"100%\",yBz2HDdAq:\"Jasmine Williams\"})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:convertFromBoolean1(equals(activeLocale?.id,\"default\"),activeLocale),implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:536,width:\"256px\",y:(componentViewport?.y||0)+(0+((componentViewport?.height||576)-0-536)/2),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1rqiujc-container\",layoutDependency:layoutDependency,layoutId:\"I0CBjyfHg-container\",nodeId:\"I0CBjyfHg\",rendersWithMotion:true,scopeId:\"bCsGAafEr\",style:{rotate:2},children:/*#__PURE__*/_jsx(CarouselTestimonial,{CByXvhyO9:resolvedLinks1[0],fKm3kbwmC:\"SOLE Premium\",height:\"100%\",id:\"I0CBjyfHg\",layoutId:\"I0CBjyfHg\",lYXr9v7pK:addImageAlt({pixelHeight:1154,pixelWidth:552,src:\"https://framerusercontent.com/images/5N1cfFLaXRzauNb6vFaXtJITGeA.png\",srcSet:\"https://framerusercontent.com/images/5N1cfFLaXRzauNb6vFaXtJITGeA.png 552w\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"QNjLCfc8a\",width:\"100%\",yBz2HDdAq:\"Levi-Evan\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qv5upr\",layoutDependency:layoutDependency,layoutId:\"oJZmSixKP\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:convertFromBoolean2(equals(activeLocale?.id,\"default\"),activeLocale),implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:536,width:\"256px\",y:(componentViewport?.y||0)+(0+((componentViewport?.height||576)-0-576)/2)+40,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1vfvoki-container\",layoutDependency:layoutDependency,layoutId:\"y5TWITDbr-container\",nodeId:\"y5TWITDbr\",rendersWithMotion:true,scopeId:\"bCsGAafEr\",children:/*#__PURE__*/_jsx(CarouselTestimonial,{CByXvhyO9:resolvedLinks2[0],fKm3kbwmC:\"Jetsurf\",height:\"100%\",id:\"y5TWITDbr\",layoutId:\"y5TWITDbr\",style:{width:\"100%\"},variant:\"QNjLCfc8a\",width:\"100%\",yBz2HDdAq:\"Mark Andrews\"})})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rl859y\",layoutDependency:layoutDependency,layoutId:\"XQPoJSyOs\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:convertFromBoolean3(equals(activeLocale?.id,\"default\"),activeLocale),implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:536,width:\"256px\",y:(componentViewport?.y||0)+(0+((componentViewport?.height||576)-0-1092)/2)+0+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1wld11b-container\",layoutDependency:layoutDependency,layoutId:\"jQ0748oqM-container\",nodeId:\"jQ0748oqM\",rendersWithMotion:true,scopeId:\"bCsGAafEr\",style:{rotate:1},children:/*#__PURE__*/_jsx(CarouselTestimonial,{CByXvhyO9:resolvedLinks3[0],fKm3kbwmC:\"The Saltwater Collective\",height:\"100%\",id:\"jQ0748oqM\",layoutId:\"jQ0748oqM\",lYXr9v7pK:addImageAlt({pixelHeight:552,pixelWidth:552,src:\"https://framerusercontent.com/images/6sFaodi8skezFaGUE2oJuMrNbo.png\",srcSet:\"https://framerusercontent.com/images/6sFaodi8skezFaGUE2oJuMrNbo.png?scale-down-to=512 512w,https://framerusercontent.com/images/6sFaodi8skezFaGUE2oJuMrNbo.png 552w\"},\"\"),style:{width:\"100%\"},variant:\"X4rMxUJDz\",width:\"100%\",yBz2HDdAq:\"Camilla James\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:convertFromBoolean4(equals(activeLocale?.id,\"default\"),activeLocale),implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:536,width:\"256px\",y:(componentViewport?.y||0)+(0+((componentViewport?.height||576)-0-1092)/2)+0+556,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-180f4o3-container\",layoutDependency:layoutDependency,layoutId:\"bzebnp7Z9-container\",nodeId:\"bzebnp7Z9\",rendersWithMotion:true,scopeId:\"bCsGAafEr\",style:{rotate:-2},children:/*#__PURE__*/_jsx(CarouselTestimonial,{CByXvhyO9:resolvedLinks4[0],fKm3kbwmC:\"Son of a Woodcutter\",height:\"100%\",id:\"bzebnp7Z9\",layoutId:\"bzebnp7Z9\",lYXr9v7pK:addImageAlt({pixelHeight:552,pixelWidth:552,src:\"https://framerusercontent.com/images/7vhu3DRjOW88acWPwdjZmneuN9k.png\",srcSet:\"https://framerusercontent.com/images/7vhu3DRjOW88acWPwdjZmneuN9k.png?scale-down-to=512 512w,https://framerusercontent.com/images/7vhu3DRjOW88acWPwdjZmneuN9k.png 552w\"},\"\"),style:{width:\"100%\"},variant:\"X4rMxUJDz\",width:\"100%\",yBz2HDdAq:\"Jack Fouracre\"})})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-n4gl5p\",layoutDependency:layoutDependency,layoutId:\"OCABo37Or\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:536,width:\"256px\",y:(componentViewport?.y||0)+(0+((componentViewport?.height||576)-0-576)/2)+40,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-19lx6xf-container\",layoutDependency:layoutDependency,layoutId:\"NZGbZuFCe-container\",nodeId:\"NZGbZuFCe\",rendersWithMotion:true,scopeId:\"bCsGAafEr\",style:{rotate:1},children:/*#__PURE__*/_jsx(CarouselTestimonial,{CByXvhyO9:\"https://www.ownr.co/blog/day-in-the-life-pet-sitting-for-fun-and-profit/\",fKm3kbwmC:toString(convertFromBoolean5(equals(activeLocale?.id,\"default\"),activeLocale)),height:\"100%\",id:\"NZGbZuFCe\",layoutId:\"NZGbZuFCe\",lYXr9v7pK:addImageAlt({pixelHeight:768,pixelWidth:1024,src:\"https://framerusercontent.com/images/I4zU7gCuG3tOdoQu6GZalRF71I.png\",srcSet:\"https://framerusercontent.com/images/I4zU7gCuG3tOdoQu6GZalRF71I.png?scale-down-to=512 512w,https://framerusercontent.com/images/I4zU7gCuG3tOdoQu6GZalRF71I.png 1024w\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"QNjLCfc8a\",width:\"100%\",yBz2HDdAq:\"Lee Ellis\"})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1tntyfr\",layoutDependency:layoutDependency,layoutId:\"hBKWvJiLw\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:convertFromBoolean6(equals(activeLocale?.id,\"default\"),activeLocale),implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:536,width:\"256px\",y:(componentViewport?.y||0)+(0+((componentViewport?.height||576)-0-1092)/2)+0+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-12iwmxu-container\",layoutDependency:layoutDependency,layoutId:\"QWDX7wFob-container\",nodeId:\"QWDX7wFob\",rendersWithMotion:true,scopeId:\"bCsGAafEr\",style:{rotate:-2},children:/*#__PURE__*/_jsx(CarouselTestimonial,{CByXvhyO9:resolvedLinks5[0],fKm3kbwmC:\"Camila Tea\",height:\"100%\",id:\"QWDX7wFob\",layoutId:\"QWDX7wFob\",lYXr9v7pK:addImageAlt({pixelHeight:619,pixelWidth:620,src:\"https://framerusercontent.com/images/3qftfjCY4BMaNdSuSigmJ8sxQc.png\",srcSet:\"https://framerusercontent.com/images/3qftfjCY4BMaNdSuSigmJ8sxQc.png?scale-down-to=512 512w,https://framerusercontent.com/images/3qftfjCY4BMaNdSuSigmJ8sxQc.png 620w\"},\"\"),style:{width:\"100%\"},variant:\"X4rMxUJDz\",width:\"100%\",yBz2HDdAq:\"Colin Bhowmik\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:convertFromBoolean7(equals(activeLocale?.id,\"default\"),activeLocale),implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:536,width:\"256px\",y:(componentViewport?.y||0)+(0+((componentViewport?.height||576)-0-1092)/2)+0+556,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1vq7tzv-container\",layoutDependency:layoutDependency,layoutId:\"DceHhN43E-container\",nodeId:\"DceHhN43E\",rendersWithMotion:true,scopeId:\"bCsGAafEr\",children:/*#__PURE__*/_jsx(CarouselTestimonial,{CByXvhyO9:resolvedLinks6[0],fKm3kbwmC:\"Plentea Tea Bar\",height:\"100%\",id:\"DceHhN43E\",layoutId:\"DceHhN43E\",lYXr9v7pK:addImageAlt({pixelHeight:619,pixelWidth:620,src:\"https://framerusercontent.com/images/FlHsAIw4SDn9WDF6nxxoNwnNoc.png\",srcSet:\"https://framerusercontent.com/images/FlHsAIw4SDn9WDF6nxxoNwnNoc.png?scale-down-to=512 512w,https://framerusercontent.com/images/FlHsAIw4SDn9WDF6nxxoNwnNoc.png 620w\"},\"\"),style:{width:\"100%\"},variant:\"X4rMxUJDz\",width:\"100%\",yBz2HDdAq:\"Tariq & Mohammed\"})})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-v38san\",layoutDependency:layoutDependency,layoutId:\"HUiAvUU9r\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:convertFromBoolean8(equals(activeLocale?.id,\"default\"),activeLocale),implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:536,width:\"256px\",y:(componentViewport?.y||0)+(0+((componentViewport?.height||576)-0-576)/2)+40,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-11i7gol-container\",layoutDependency:layoutDependency,layoutId:\"IZDFAPhiT-container\",nodeId:\"IZDFAPhiT\",rendersWithMotion:true,scopeId:\"bCsGAafEr\",children:/*#__PURE__*/_jsx(CarouselTestimonial,{CByXvhyO9:resolvedLinks7[0],fKm3kbwmC:\"Entrepreneur\",height:\"100%\",id:\"IZDFAPhiT\",layoutId:\"IZDFAPhiT\",lYXr9v7pK:addImageAlt({pixelHeight:1413,pixelWidth:948,src:\"https://framerusercontent.com/images/OHcaxDnzfF1Ltp8xK6UOfy3f0UA.png\",srcSet:\"https://framerusercontent.com/images/OHcaxDnzfF1Ltp8xK6UOfy3f0UA.png?scale-down-to=1024 687w,https://framerusercontent.com/images/OHcaxDnzfF1Ltp8xK6UOfy3f0UA.png 948w\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"QNjLCfc8a\",width:\"100%\",yBz2HDdAq:\"Judy Singer\"})})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-smf8c3\",layoutDependency:layoutDependency,layoutId:\"rhvfGvqTM\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:convertFromBoolean9(equals(activeLocale?.id,\"default\"),activeLocale),implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:536,width:\"256px\",y:(componentViewport?.y||0)+(0+((componentViewport?.height||576)-0-1092)/2)+0+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ltp83c-container\",layoutDependency:layoutDependency,layoutId:\"wS9V_H0wW-container\",nodeId:\"wS9V_H0wW\",rendersWithMotion:true,scopeId:\"bCsGAafEr\",children:/*#__PURE__*/_jsx(CarouselTestimonial,{CByXvhyO9:resolvedLinks8[0],fKm3kbwmC:\"Road Astronaut\",height:\"100%\",id:\"wS9V_H0wW\",layoutId:\"wS9V_H0wW\",lYXr9v7pK:addImageAlt({pixelHeight:576,pixelWidth:1024,src:\"https://framerusercontent.com/images/5MmucH0XlclLMJo9AJ0UhmvBMN4.webp\",srcSet:\"https://framerusercontent.com/images/5MmucH0XlclLMJo9AJ0UhmvBMN4.webp?scale-down-to=512 512w,https://framerusercontent.com/images/5MmucH0XlclLMJo9AJ0UhmvBMN4.webp 1024w\"},\"\"),style:{width:\"100%\"},variant:\"X4rMxUJDz\",width:\"100%\",yBz2HDdAq:\"Art Green\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:convertFromBoolean10(equals(activeLocale?.id,\"default\"),activeLocale),implicitPathVariables:undefined}],children:resolvedLinks9=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:536,width:\"256px\",y:(componentViewport?.y||0)+(0+((componentViewport?.height||576)-0-1092)/2)+0+556,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-gaf0j1-container\",layoutDependency:layoutDependency,layoutId:\"YGzESym97-container\",nodeId:\"YGzESym97\",rendersWithMotion:true,scopeId:\"bCsGAafEr\",style:{rotate:2},children:/*#__PURE__*/_jsx(CarouselTestimonial,{CByXvhyO9:resolvedLinks9[0],fKm3kbwmC:\"Masonry Restoration\",height:\"100%\",id:\"YGzESym97\",layoutId:\"YGzESym97\",lYXr9v7pK:addImageAlt({pixelHeight:608,pixelWidth:1024,src:\"https://framerusercontent.com/images/ygzwnB7WMTtGu5tyUZNyUeO4mHk.webp\",srcSet:\"https://framerusercontent.com/images/ygzwnB7WMTtGu5tyUZNyUeO4mHk.webp?scale-down-to=512 512w,https://framerusercontent.com/images/ygzwnB7WMTtGu5tyUZNyUeO4mHk.webp 1024w\"},\"\"),style:{width:\"100%\"},variant:\"X4rMxUJDz\",width:\"100%\",yBz2HDdAq:\"Stephen Mason\"})})})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:convertFromBoolean11(equals(activeLocale?.id,\"default\"),activeLocale),implicitPathVariables:undefined}],children:resolvedLinks10=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:536,width:\"256px\",y:(componentViewport?.y||0)+(0+((componentViewport?.height||576)-0-536)/2),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1o8bpdh-container\",layoutDependency:layoutDependency,layoutId:\"RtpABu3_y-container\",nodeId:\"RtpABu3_y\",rendersWithMotion:true,scopeId:\"bCsGAafEr\",children:/*#__PURE__*/_jsx(CarouselTestimonial,{CByXvhyO9:resolvedLinks10[0],fKm3kbwmC:\"Bonafide Restaurant\",height:\"100%\",id:\"RtpABu3_y\",layoutId:\"RtpABu3_y\",lYXr9v7pK:addImageAlt({pixelHeight:682,pixelWidth:1024,positionX:\"59.1%\",positionY:\"36.3%\",src:\"https://framerusercontent.com/images/EN8dWjxbgKGR5z1BCbrbeM6NK4.webp\",srcSet:\"https://framerusercontent.com/images/EN8dWjxbgKGR5z1BCbrbeM6NK4.webp?scale-down-to=512 512w,https://framerusercontent.com/images/EN8dWjxbgKGR5z1BCbrbeM6NK4.webp 1024w\"},\"\"),style:{width:\"100%\"},variant:\"QNjLCfc8a\",width:\"100%\",yBz2HDdAq:\"Zoi Bellissimo\"})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1i0z5g\",layoutDependency:layoutDependency,layoutId:\"DkaRvDTZY\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:convertFromBoolean12(equals(activeLocale?.id,\"default\"),activeLocale),implicitPathVariables:undefined}],children:resolvedLinks11=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:536,width:\"256px\",y:(componentViewport?.y||0)+(0+((componentViewport?.height||576)-0-1092)/2)+0+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1r72uph-container\",layoutDependency:layoutDependency,layoutId:\"DPHHynFj0-container\",nodeId:\"DPHHynFj0\",rendersWithMotion:true,scopeId:\"bCsGAafEr\",style:{rotate:-2},children:/*#__PURE__*/_jsx(CarouselTestimonial,{CByXvhyO9:resolvedLinks11[0],fKm3kbwmC:\"Gradient Movement\",height:\"100%\",id:\"DPHHynFj0\",layoutId:\"DPHHynFj0\",lYXr9v7pK:addImageAlt({pixelHeight:682,pixelWidth:1024,src:\"https://framerusercontent.com/images/vdyt5qj5B0khK9jhmP8eqgYWQSY.webp\",srcSet:\"https://framerusercontent.com/images/vdyt5qj5B0khK9jhmP8eqgYWQSY.webp?scale-down-to=512 512w,https://framerusercontent.com/images/vdyt5qj5B0khK9jhmP8eqgYWQSY.webp 1024w\"},\"\"),style:{width:\"100%\"},variant:\"X4rMxUJDz\",width:\"100%\",yBz2HDdAq:\"Justin Tamane\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:convertFromBoolean13(equals(activeLocale?.id,\"default\"),activeLocale),implicitPathVariables:undefined}],children:resolvedLinks12=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:536,width:\"256px\",y:(componentViewport?.y||0)+(0+((componentViewport?.height||576)-0-1092)/2)+0+556,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1xv84yj-container\",layoutDependency:layoutDependency,layoutId:\"ri7P7TLne-container\",nodeId:\"ri7P7TLne\",rendersWithMotion:true,scopeId:\"bCsGAafEr\",children:/*#__PURE__*/_jsx(CarouselTestimonial,{CByXvhyO9:resolvedLinks12[0],fKm3kbwmC:\"Wolfe Co\",height:\"100%\",id:\"ri7P7TLne\",layoutId:\"ri7P7TLne\",lYXr9v7pK:addImageAlt({pixelHeight:800,pixelWidth:853,src:\"https://framerusercontent.com/images/kBpRLTWmMGOuQ2xYWjX4W0CIpow.webp\",srcSet:\"https://framerusercontent.com/images/kBpRLTWmMGOuQ2xYWjX4W0CIpow.webp?scale-down-to=512 512w,https://framerusercontent.com/images/kBpRLTWmMGOuQ2xYWjX4W0CIpow.webp 853w\"},\"\"),style:{width:\"100%\"},variant:\"X4rMxUJDz\",width:\"100%\",yBz2HDdAq:\"Amanda Tyler\"})})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-5GAjg.framer-q2spil, .framer-5GAjg .framer-q2spil { display: block; }\",\".framer-5GAjg.framer-kcsz96 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 10px 0px 0px; position: relative; width: min-content; }\",\".framer-5GAjg .framer-f4jxwn, .framer-5GAjg .framer-1qv5upr, .framer-5GAjg .framer-n4gl5p, .framer-5GAjg .framer-v38san { 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: 40px 0px 0px 0px; position: relative; width: 256px; }\",\".framer-5GAjg .framer-ctk10t-container, .framer-5GAjg .framer-1rqiujc-container, .framer-5GAjg .framer-19lx6xf-container, .framer-5GAjg .framer-11i7gol-container { flex: none; height: 536px; position: relative; width: 256px; }\",\".framer-5GAjg .framer-1vfvoki-container, .framer-5GAjg .framer-1wld11b-container, .framer-5GAjg .framer-180f4o3-container, .framer-5GAjg .framer-12iwmxu-container, .framer-5GAjg .framer-1vq7tzv-container, .framer-5GAjg .framer-1ltp83c-container, .framer-5GAjg .framer-gaf0j1-container, .framer-5GAjg .framer-1o8bpdh-container, .framer-5GAjg .framer-1r72uph-container, .framer-5GAjg .framer-1xv84yj-container { flex: none; height: auto; position: relative; width: 256px; }\",\".framer-5GAjg .framer-1rl859y, .framer-5GAjg .framer-1tntyfr, .framer-5GAjg .framer-smf8c3, .framer-5GAjg .framer-1i0z5g { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 576\n * @framerIntrinsicWidth 2750\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerbCsGAafEr=withCSS(Component,css,\"framer-5GAjg\");export default FramerbCsGAafEr;FramerbCsGAafEr.displayName=\"Carousel-Testimonials-Group\";FramerbCsGAafEr.defaultProps={height:576,width:2750};addFonts(FramerbCsGAafEr,[{explicitInter:true,fonts:[]},...CarouselTestimonialFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerbCsGAafEr\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"2750\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"576\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./bCsGAafEr.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";const css=`\n.scrollable-ticker section {\n    overflow: scroll !important;\n}\n.scrollable-ticker section::-webkit-scrollbar {\n   display: none;\n}\n`;export function withScroll(Component){return props=>{return /*#__PURE__*/_jsxs(\"div\",{className:\"scrollable-ticker\",children:[/*#__PURE__*/_jsx(\"style\",{children:css}),/*#__PURE__*/_jsx(Component,{...props})]});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withScroll\":{\"type\":\"reactHoc\",\"name\":\"withScroll\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Tickertest.map", "// Generated by Framer (f2c0341)\nimport{LazyValue}from\"framer\";const valuesByLocaleId={lfcMrhzSI:new LazyValue(()=>import(\"./k3sz8CTXO-0.js\"))};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values.read()[key];if(value)return value;}locale=locale.fallback;}}function preload(locale){const promises=[];while(locale){const values=valuesByLocaleId[locale.id];if(values){const promise=values.preload();if(promise)promises.push(promise);}locale=locale.fallback;}if(promises.length>0)return Promise.all(promises);}export function usePreloadLocalizedValues(locale){const preloadPromise=preload(locale);if(preloadPromise)throw preloadPromise;}\nexport const __FramerMetadata__ = {\"exports\":{\"usePreloadLocalizedValues\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f2c0341)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,useRouter,withCodeBoundaryForOverrides,withCSS,withMappedReactProps,withVariantAppearEffect}from\"framer\";import{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{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js\";import CarouselTestimonialsGroup from\"#framer/local/canvasComponent/bCsGAafEr/bCsGAafEr.js\";import MCPTestimonials from\"#framer/local/canvasComponent/BPAaHkAJG/BPAaHkAJG.js\";import FeatureList from\"#framer/local/canvasComponent/dwlt17cjo/dwlt17cjo.js\";import Footer from\"#framer/local/canvasComponent/HCNZjGSfT/HCNZjGSfT.js\";import PricingCards from\"#framer/local/canvasComponent/ksjaeGtj9/ksjaeGtj9.js\";import NavigationMain from\"#framer/local/canvasComponent/o8rDZNrrz/o8rDZNrrz.js\";import Button,*as ButtonInfo from\"#framer/local/canvasComponent/S0o_QUjUS/S0o_QUjUS.js\";import Pill from\"#framer/local/canvasComponent/saC79ZTbF/saC79ZTbF.js\";import LinkIconRight,*as LinkIconRightInfo from\"#framer/local/canvasComponent/WedZWJNhL/WedZWJNhL.js\";import ViewTerms from\"#framer/local/canvasComponent/zwkcB99Nk/zwkcB99Nk.js\";import CompanyCount from\"#framer/local/codeFile/dVPN6ZM/CompanyCount.js\";import{withScroll}from\"#framer/local/codeFile/fUBnAOd/Tickertest.js\";import{withTrackingOnClick}from\"#framer/local/codeFile/sDCR1Yu/TrackOverride.js\";import*as sharedStyle3 from\"#framer/local/css/anypUxJuc/anypUxJuc.js\";import*as sharedStyle2 from\"#framer/local/css/CmDuRJeCw/CmDuRJeCw.js\";import*as sharedStyle5 from\"#framer/local/css/cseSXmtw8/cseSXmtw8.js\";import*as sharedStyle4 from\"#framer/local/css/pjwGzfL7a/pjwGzfL7a.js\";import*as sharedStyle1 from\"#framer/local/css/SMVMOBXNq/SMVMOBXNq.js\";import*as sharedStyle from\"#framer/local/css/y38oXIt50/y38oXIt50.js\";import*as sharedStyle6 from\"#framer/local/css/YJiMJorRR/YJiMJorRR.js\";import getLocalizedValue,{usePreloadLocalizedValues}from\"#framer/local/localization/k3sz8CTXO/k3sz8CTXO.js\";import metadataProvider from\"#framer/local/webPageMetadata/k3sz8CTXO/k3sz8CTXO.js\";const NavigationMainFonts=getFonts(NavigationMain);const NavigationMainWithVariantAppearEffect=withVariantAppearEffect(NavigationMain);const ButtonFonts=getFonts(Button);const ButtonWithTrackingOnClick12m2w0tWithMappedReactProps1v1ipky=withMappedReactProps(withCodeBoundaryForOverrides(Button,{nodeId:\"fnHDjfPgy\",override:withTrackingOnClick,scopeId:\"k3sz8CTXO\"}),ButtonInfo);const ButtonWithTrackingOnClick1dzcoqbWithMappedReactProps1v1ipky=withMappedReactProps(withCodeBoundaryForOverrides(Button,{nodeId:\"G8UU4Bq9e\",override:withTrackingOnClick,scopeId:\"k3sz8CTXO\"}),ButtonInfo);const PillFonts=getFonts(Pill);const LinkIconRightFonts=getFonts(LinkIconRight);const LinkIconRightWithTrackingOnClick1n1ulubWithMappedReactPropsgcfxvs=withMappedReactProps(withCodeBoundaryForOverrides(LinkIconRight,{nodeId:\"JwTqpS9hB\",override:withTrackingOnClick,scopeId:\"k3sz8CTXO\"}),LinkIconRightInfo);const LinkIconRightWithTrackingOnClick1nsk2hfWithMappedReactPropsgcfxvs=withMappedReactProps(withCodeBoundaryForOverrides(LinkIconRight,{nodeId:\"RrD2cXzlF\",override:withTrackingOnClick,scopeId:\"k3sz8CTXO\"}),LinkIconRightInfo);const LinkIconRightWithTrackingOnClicklt80quWithMappedReactPropsgcfxvs=withMappedReactProps(withCodeBoundaryForOverrides(LinkIconRight,{nodeId:\"hNCy2gbYt\",override:withTrackingOnClick,scopeId:\"k3sz8CTXO\"}),LinkIconRightInfo);const ButtonWithTrackingOnClick1w0pab3WithMappedReactProps1v1ipky=withMappedReactProps(withCodeBoundaryForOverrides(Button,{nodeId:\"Uwbp3NM7D\",override:withTrackingOnClick,scopeId:\"k3sz8CTXO\"}),ButtonInfo);const CompanyCountFonts=getFonts(CompanyCount);const CarouselTestimonialsGroupFonts=getFonts(CarouselTestimonialsGroup);const TickerFonts=getFonts(Ticker);const TickerWithScrolle81uhw=withCodeBoundaryForOverrides(Ticker,{nodeId:\"Pw5_WlTUu\",override:withScroll,scopeId:\"k3sz8CTXO\"});const ButtonWithTrackingOnClick12hqig2WithMappedReactProps1v1ipky=withMappedReactProps(withCodeBoundaryForOverrides(Button,{nodeId:\"LUgPBAcPU\",override:withTrackingOnClick,scopeId:\"k3sz8CTXO\"}),ButtonInfo);const FeatureListFonts=getFonts(FeatureList);const PricingCardsFonts=getFonts(PricingCards);const YouTubeFonts=getFonts(YouTube);const ButtonWithTrackingOnClick2hk9rdWithMappedReactProps1v1ipky=withMappedReactProps(withCodeBoundaryForOverrides(Button,{nodeId:\"Ap1RiNh3u\",override:withTrackingOnClick,scopeId:\"k3sz8CTXO\"}),ButtonInfo);const ButtonWithTrackingOnClick1dkovp5WithMappedReactProps1v1ipky=withMappedReactProps(withCodeBoundaryForOverrides(Button,{nodeId:\"F15ssZ8qT\",override:withTrackingOnClick,scopeId:\"k3sz8CTXO\"}),ButtonInfo);const ButtonWithTrackingOnClick219wvoWithMappedReactProps1v1ipky=withMappedReactProps(withCodeBoundaryForOverrides(Button,{nodeId:\"She9CDXb3\",override:withTrackingOnClick,scopeId:\"k3sz8CTXO\"}),ButtonInfo);const MCPTestimonialsFonts=getFonts(MCPTestimonials);const ButtonWithTrackingOnClick1801w79WithMappedReactProps1v1ipky=withMappedReactProps(withCodeBoundaryForOverrides(Button,{nodeId:\"RKTerWPQV\",override:withTrackingOnClick,scopeId:\"k3sz8CTXO\"}),ButtonInfo);const ViewTermsFonts=getFonts(ViewTerms);const FooterFonts=getFonts(Footer);const breakpoints={c1rjELC96:\"(min-width: 1150px) and (max-width: 1439px)\",Gm4IiVboT:\"(min-width: 768px) and (max-width: 999px)\",Jqhr02QTv:\"(min-width: 1440px)\",syu6cCCcY:\"(min-width: 1000px) and (max-width: 1149px)\",Xh3DCC8UM:\"(max-width: 767px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-L19O9\";const variantClassNames={c1rjELC96:\"framer-v-1iuxexp\",Gm4IiVboT:\"framer-v-qdked2\",Jqhr02QTv:\"framer-v-pj3a9u\",syu6cCCcY:\"framer-v-1ii9vdz\",Xh3DCC8UM:\"framer-v-f4gq7q\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition1={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.02,skewX:0,skewY:0,transition:transition1};const equals=(a,b)=>{return typeof a===\"string\"&&typeof b===\"string\"?a.toLowerCase()===b.toLowerCase():a===b;};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Large Tablet\":\"syu6cCCcY\",\"nav edit\":\"c1rjELC96\",Desktop:\"Jqhr02QTv\",Phone:\"Xh3DCC8UM\",Tablet:\"Gm4IiVboT\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"Jqhr02QTv\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const elementId=useRouteElementId(\"mSvjKcdpy\");usePreloadLocalizedValues(activeLocale);const router=useRouter();const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"Xh3DCC8UM\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"Gm4IiVboT\")return true;return false;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"Gm4IiVboT\")return false;return true;};const isDisplayed3=()=>{if(!isBrowser())return true;if([\"Xh3DCC8UM\",\"Gm4IiVboT\",\"syu6cCCcY\",\"c1rjELC96\"].includes(baseVariant))return false;return true;};const isDisplayed4=()=>{if(!isBrowser())return true;if(baseVariant===\"Xh3DCC8UM\")return true;return false;};const elementId1=useRouteElementId(\"ZEU4_A7_r\");const ref2=React.useRef(null);const visible=equals(activeLocale?.id,\"default\");const isDisplayed5=()=>{if(!isBrowser())return true;if(baseVariant===\"c1rjELC96\")return true;return false;};const isDisplayed6=()=>{if(!isBrowser())return true;if([\"Xh3DCC8UM\",\"Gm4IiVboT\"].includes(baseVariant))return false;return true;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"Jqhr02QTv\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-pj3a9u\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-as462k-container\",id:\"as462k\",layoutScroll:true,nodeId:\"D9wfwUeDP\",rendersWithMotion:true,scopeId:\"k3sz8CTXO\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c1rjELC96:{__framer__targets:[{offset:0,ref:ref1,target:\"JI8m_05o4\"}],variant:\"hZKZbCkwK\"},Gm4IiVboT:{__framer__targets:[{offset:0,ref:ref1,target:\"IzJX8_CG4\"}],variant:\"iBmftxAys\"},syu6cCCcY:{__framer__targets:[{offset:0,ref:ref1,target:\"IzJX8_CG4\"}],variant:\"iBmftxAys\"},Xh3DCC8UM:{__framer__targets:[{offset:0,ref:ref1,target:\"mzQm8zblI\"}],variant:\"VuR9gjMvU\"}},children:/*#__PURE__*/_jsx(NavigationMainWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{offset:0,ref:ref1,target:\"UijMtPKJ9\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,gk3NniakL:\"0px 4px 8px 0px rgba(35, 30, 86, 0.05)\",height:\"100%\",id:\"D9wfwUeDP\",layoutId:\"D9wfwUeDP\",style:{width:\"100%\"},variant:\"Q25VHVnkY\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gppgk4\",\"data-framer-name\":\"Page Content\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fq36kv\",\"data-framer-name\":\"Hero\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13dogq5\",\"data-framer-name\":\"2 Columns Text Image\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-njgwgs\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1at9f95\",\"data-border\":true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-f32fgy\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:25,svg:'<svg width=\"25\" height=\"24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M5.188 19.921A7.388 7.388 0 0 1 2.456 9.892a7.257 7.257 0 0 1 9.986-2.636L5.188 19.921Z\" fill=\"#5F3DC8\"/><path d=\"M9.71 2.502a7.257 7.257 0 0 1 9.967 2.633 7.39 7.39 0 0 1-2.713 10.036L9.71 2.501Zm12.854 12.669a7.328 7.328 0 1 1-14.658 0h14.658Z\" fill=\"#5F3DC8\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xh3DCC8UM:{children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(35, 30, 86)\"},children:[\"Celebrating \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-weight\":\"700\"},children:\"215,000+\"}),\" businesses!\"]})}),fonts:[\"GF;Inter-500\",\"GF;Inter-700\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-e4a552aa-62a5-4d12-bf71-89c8be926218, rgb(35, 30, 86))\"},children:\"Celebrating 220,000+ businesses created!\"})}),className:\"framer-2lnx10\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tde50k\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jkgg4z\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c1rjELC96:{children:getLocalizedValue(\"v4\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1w1knz8\",\"data-styles-preset\":\"y38oXIt50\",children:\"The easiest way to start, manage, and grow your business\"})}),fonts:[\"Inter\"]},Gm4IiVboT:{children:getLocalizedValue(\"v4\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1w1knz8\",\"data-styles-preset\":\"y38oXIt50\",children:\"The easiest way to start, manage, and grow your business\"})}),fonts:[\"Inter\"]},syu6cCCcY:{children:getLocalizedValue(\"v4\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1w1knz8\",\"data-styles-preset\":\"y38oXIt50\",children:\"The easiest way to start, manage, and grow your business\"})}),fonts:[\"Inter\"]},Xh3DCC8UM:{children:getLocalizedValue(\"v3\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtYm9sZA==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"105%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-e4a552aa-62a5-4d12-bf71-89c8be926218, rgb(35, 30, 86))\"},children:\"The easiest way to start, manage, and grow your business\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v2\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtYm9sZA==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"52px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"105%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-2caa4405-b4b2-4cde-8787-d3028d1af67f, rgba(35, 30, 86, 0.9))\"},children:\"The easiest way to start, manage, and grow your business\"})}),className:\"framer-ryhm0k\",fonts:[\"FS;Plus Jakarta Sans-bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xh3DCC8UM:{children:getLocalizedValue(\"v6\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qiwde8\",\"data-styles-preset\":\"SMVMOBXNq\",style:{\"--framer-text-color\":\"var(--token-2caa4405-b4b2-4cde-8787-d3028d1af67f, rgba(35, 30, 86, 0.9))\"},children:\"Ownr has everything you need to register, incorporate, create legal agreements, stay compliant, manage employees, and more.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v5\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qiwde8\",\"data-styles-preset\":\"SMVMOBXNq\",children:\"Ownr has everything you need to register, incorporate, create legal agreements, stay compliant, manage employees, and more.\"})}),className:\"framer-1n5tcjp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-eqgvof\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-12l34a0\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xh3DCC8UM:{width:`max(min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 1232px), 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(Container,{className:\"framer-12m2w0t-container\",nodeId:\"fnHDjfPgy\",rendersWithMotion:true,scopeId:\"k3sz8CTXO\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xh3DCC8UM:{style:{width:\"100%\"},variant:\"IepsDFXC5\"}},children:/*#__PURE__*/_jsx(ButtonWithTrackingOnClick12m2w0tWithMappedReactProps1v1ipky,{CIx07aqhO:false,Cu4D0_EOi:\"home\",gDxUiWVA2:\"home\",gtBTPu_hO:\"homepage-header-cta\",HagJtdLM9:false,height:\"100%\",i8NEUhQou:\"button-click\",ibf40tJYv:getLocalizedValue(\"v7\",activeLocale)??\"Start Your Business\",id:\"fnHDjfPgy\",kNVuXmein:false,layoutId:\"fnHDjfPgy\",nu83Zx0Mn:\"https://www.ownr.co/new\",variant:\"zGB7vs8To\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1je7jqp\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":ZEU4_A7_r\",webPageId:\"k3sz8CTXO\"},implicitPathVariables:undefined},{href:{hash:\":ZEU4_A7_r\",webPageId:\"k3sz8CTXO\"},implicitPathVariables:undefined},{href:{hash:\":ZEU4_A7_r\",webPageId:\"k3sz8CTXO\"},implicitPathVariables:undefined},{href:{hash:\":ZEU4_A7_r\",webPageId:\"k3sz8CTXO\"},implicitPathVariables:undefined},{href:{hash:\":ZEU4_A7_r\",webPageId:\"k3sz8CTXO\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xh3DCC8UM:{width:`max(min(max(${componentViewport?.width||\"100vw\"} - 32px, 1px), 1232px), 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dzcoqb-container\",nodeId:\"G8UU4Bq9e\",rendersWithMotion:true,scopeId:\"k3sz8CTXO\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c1rjELC96:{nu83Zx0Mn:resolvedLinks[4]},Gm4IiVboT:{nu83Zx0Mn:resolvedLinks[2]},syu6cCCcY:{nu83Zx0Mn:resolvedLinks[3]},Xh3DCC8UM:{nu83Zx0Mn:resolvedLinks[1],style:{width:\"100%\"},variant:\"lBvUI4Ufj\"}},children:/*#__PURE__*/_jsx(ButtonWithTrackingOnClick1dzcoqbWithMappedReactProps1v1ipky,{CIx07aqhO:false,Cu4D0_EOi:\"home\",gDxUiWVA2:\"corner-right-down\",gtBTPu_hO:\"homepage-header-learnmore-cta\",HagJtdLM9:false,height:\"100%\",i8NEUhQou:\"button-click\",ibf40tJYv:getLocalizedValue(\"v8\",activeLocale)??\"Learn More\",id:\"G8UU4Bq9e\",kNVuXmein:true,layoutId:\"G8UU4Bq9e\",nu83Zx0Mn:resolvedLinks[0],variant:\"eDi_wdAh5\",width:\"100%\"})})})})})})})]})]})]}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2x262s hidden-f4gq7q\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Gm4IiVboT:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:308.5,intrinsicWidth:484,pixelHeight:617,pixelWidth:968,sizes:`max(min(max(${componentViewport?.width||\"100vw\"} - 64px, 1px), 1232px) * 1, 1px)`,src:\"https://framerusercontent.com/images/9X0RG8ajIJMSMKcdjOCc6EWZ2U.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/9X0RG8ajIJMSMKcdjOCc6EWZ2U.png?scale-down-to=512 512w,https://framerusercontent.com/images/9X0RG8ajIJMSMKcdjOCc6EWZ2U.png 968w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:308.5,intrinsicWidth:484,pixelHeight:617,pixelWidth:968,src:\"https://framerusercontent.com/images/9X0RG8ajIJMSMKcdjOCc6EWZ2U.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/9X0RG8ajIJMSMKcdjOCc6EWZ2U.png?scale-down-to=512 512w,https://framerusercontent.com/images/9X0RG8ajIJMSMKcdjOCc6EWZ2U.png 968w\"},className:\"framer-gjmfhs hidden-pj3a9u hidden-1ii9vdz hidden-1iuxexp\",\"data-framer-name\":\"Group 3099\"})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c1rjELC96:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:488,intrinsicWidth:678,pixelHeight:922,pixelWidth:1186,sizes:`max(min(max(${componentViewport?.width||\"100vw\"} - 128px, 1px), 1232px) / 1.9, 1px)`,src:\"https://framerusercontent.com/images/RTtgX5EfotQYdBjqcXdZdhHvnGU.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/RTtgX5EfotQYdBjqcXdZdhHvnGU.png?scale-down-to=512 512w,https://framerusercontent.com/images/RTtgX5EfotQYdBjqcXdZdhHvnGU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RTtgX5EfotQYdBjqcXdZdhHvnGU.png 1186w\"}},syu6cCCcY:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:488,intrinsicWidth:678,pixelHeight:922,pixelWidth:1186,sizes:`max(min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1232px) / 1.9, 1px)`,src:\"https://framerusercontent.com/images/RTtgX5EfotQYdBjqcXdZdhHvnGU.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/RTtgX5EfotQYdBjqcXdZdhHvnGU.png?scale-down-to=512 512w,https://framerusercontent.com/images/RTtgX5EfotQYdBjqcXdZdhHvnGU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RTtgX5EfotQYdBjqcXdZdhHvnGU.png 1186w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:488,intrinsicWidth:678,pixelHeight:922,pixelWidth:1186,sizes:`max(min(max(${componentViewport?.width||\"100vw\"} - 208px, 1px), 1232px) / 1.9, 1px)`,src:\"https://framerusercontent.com/images/RTtgX5EfotQYdBjqcXdZdhHvnGU.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/RTtgX5EfotQYdBjqcXdZdhHvnGU.png?scale-down-to=512 512w,https://framerusercontent.com/images/RTtgX5EfotQYdBjqcXdZdhHvnGU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RTtgX5EfotQYdBjqcXdZdhHvnGU.png 1186w\"},className:\"framer-quz7ns hidden-qdked2\",\"data-framer-name\":\"Image\"})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dyovqc\",\"data-framer-name\":\"Why Us?\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:386,pixelWidth:2880,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/cya3nqvmd7RAtiJC6JG3BN2WJ4.png\",srcSet:\"https://framerusercontent.com/images/cya3nqvmd7RAtiJC6JG3BN2WJ4.png?scale-down-to=512 512w,https://framerusercontent.com/images/cya3nqvmd7RAtiJC6JG3BN2WJ4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/cya3nqvmd7RAtiJC6JG3BN2WJ4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/cya3nqvmd7RAtiJC6JG3BN2WJ4.png 2880w\"},className:\"framer-1vwyell\",\"data-framer-name\":\"Graphic\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:386,pixelWidth:2880,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/cya3nqvmd7RAtiJC6JG3BN2WJ4.png\",srcSet:\"https://framerusercontent.com/images/cya3nqvmd7RAtiJC6JG3BN2WJ4.png?scale-down-to=512 512w,https://framerusercontent.com/images/cya3nqvmd7RAtiJC6JG3BN2WJ4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/cya3nqvmd7RAtiJC6JG3BN2WJ4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/cya3nqvmd7RAtiJC6JG3BN2WJ4.png 2880w\"},className:\"framer-1r75zjl\",\"data-framer-name\":\"Graphic\",style:{rotate:180}}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nqmo86\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18b4yco\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1x02au5-container\",nodeId:\"U0LxAjuia\",scopeId:\"k3sz8CTXO\",children:/*#__PURE__*/_jsx(Pill,{e5KZkPk6L:\"var(--token-fd6d18e2-f769-44a0-8ce3-bd764d176b28, rgb(57, 27, 147))\",h9nZbCkbW:\"rgb(255, 255, 255)\",height:\"100%\",id:\"U0LxAjuia\",jKNIyP3WP:\"0px 4px 8px 0px rgba(37, 22, 125, 0.05)\",layoutId:\"U0LxAjuia\",OKJXJE54m:{borderColor:\"var(--token-170e6570-679e-4a3b-8261-0290dd0d284f, rgb(95, 61, 200))\",borderStyle:\"solid\",borderWidth:.5},QFoy3BvrC:getLocalizedValue(\"v9\",activeLocale)??\"Why Us?\",sp1vPSCpF:\"var(--token-170e6570-679e-4a3b-8261-0290dd0d284f, rgb(95, 61, 200))\",t_Z_vMXmV:\"HandThumbUp\",variant:\"a3nu6UJMj\",width:\"100%\",yza3a5i8l:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xh3DCC8UM:{children:getLocalizedValue(\"v11\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-137c46q\",\"data-styles-preset\":\"CmDuRJeCw\",style:{\"--framer-text-alignment\":\"left\"},children:[\"You have \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-170e6570-679e-4a3b-8261-0290dd0d284f, rgb(95, 61, 200))\"},children:\"a dream\"}),\", we have \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-170e6570-679e-4a3b-8261-0290dd0d284f, rgb(95, 61, 200))\"},children:\"the tools\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v10\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-137c46q\",\"data-styles-preset\":\"CmDuRJeCw\",style:{\"--framer-text-alignment\":\"center\"},children:[\"You have \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-170e6570-679e-4a3b-8261-0290dd0d284f, rgb(95, 61, 200))\"},children:\"a dream\"}),\", we have \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-170e6570-679e-4a3b-8261-0290dd0d284f, rgb(95, 61, 200))\"},children:\"the tools\"})]})}),className:\"framer-1setec3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xh3DCC8UM:{children:getLocalizedValue(\"v13\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qiwde8\",\"data-styles-preset\":\"SMVMOBXNq\",style:{\"--framer-text-alignment\":\"left\"},children:\"With streamlined services that include business registration and hassle-free legal compliance, Ownr empowers all entrepreneurs at every stage of their journey.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v12\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qiwde8\",\"data-styles-preset\":\"SMVMOBXNq\",style:{\"--framer-text-alignment\":\"center\"},children:\"With streamlined services that include business registration and hassle-free legal compliance, Ownr empowers all entrepreneurs at every stage of their journey.\"})}),className:\"framer-12vquoe\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-monz6i\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:1,intrinsicWidth:1440,svg:'<svg width=\"1440\" height=\"1\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path stroke=\"url(#a)\" d=\"M0 .5h1440\"/><defs><linearGradient id=\"a\" x1=\"0\" y1=\"1.5\" x2=\"1440\" y2=\"1.5\" gradientUnits=\"userSpaceOnUse\"><stop offset=\".198\" stop-color=\"#5F3DC8\" stop-opacity=\"0\"/><stop offset=\".505\" stop-color=\"#5F3DC8\" stop-opacity=\".41\"/><stop offset=\".777\" stop-color=\"#5F3DC8\" stop-opacity=\"0\"/></linearGradient></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-118q8gk\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:1,intrinsicWidth:1440,svg:'<svg width=\"1440\" height=\"1\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path stroke=\"url(#a)\" d=\"M0 .5h1440\"/><defs><linearGradient id=\"a\" x1=\"0\" y1=\"1.5\" x2=\"1440\" y2=\"1.5\" gradientUnits=\"userSpaceOnUse\"><stop offset=\".198\" stop-color=\"#5F3DC8\" stop-opacity=\"0\"/><stop offset=\".505\" stop-color=\"#5F3DC8\" stop-opacity=\".41\"/><stop offset=\".777\" stop-color=\"#5F3DC8\" stop-opacity=\"0\"/></linearGradient></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qxhsxo\",\"data-hide-scrollbars\":true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xx6ie7\",\"data-hide-scrollbars\":true,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1uiyrw8\",\"data-border\":true,\"data-framer-name\":\"Card\",whileHover:animation,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14d2yad\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-12jmy8o\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:64,intrinsicWidth:65,svg:'<svg width=\"65\" height=\"64\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect x=\".5\" width=\"64\" height=\"64\" rx=\"10\" fill=\"#D3F3EC\" fill-opacity=\".75\"/><path d=\"m31.44 41.886-5.556-5.611L14.96 46.962l-2.717-2.778-.012.012-4.185-4.277 15.202-14.872 2.708 2.786.021-.02 7.096 7.298 10.36-10.483-4.117-4.3 14.955-2.786-.002.011.013-.006L57 20.307l-2.5 15.009-4.169-3.752L40.06 42.1l-4.277 4.185-4.341-4.4Z\" fill=\"#19B48F\" stroke=\"#19B48F\" stroke-width=\"1.197\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"m33.053 43.52 4.277-4.185 2.568-2.635 2.567-2.634 5.136-5.27 4.169 3.752 2.5-15.006-14.954 2.785 4.117 4.301-10.38 10.503-9.805-10.084L8.047 39.919l4.184 4.277 8.193-8.016 2.731-2.672 5.77 5.827 4.128 4.184Z\" fill=\"#D3F3EC\"/><path d=\"m37.33 39.335-4.277 4.184-4.128-4.184-5.77-5.827-2.73 2.672-8.194 8.016-4.184-4.277 15.2-14.872 9.806 10.084 10.38-10.503-4.117-4.3 14.955-2.786-2.501 15.006-4.169-3.751-5.994 6.196\" stroke=\"#231E56\" stroke-width=\"1.197\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rqfxld\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v14\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-fesehh\",\"data-styles-preset\":\"anypUxJuc\",children:\"Everything You Need\"})}),className:\"framer-mag6fg\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v15\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qgih7y\",\"data-styles-preset\":\"pjwGzfL7a\",children:\"We have all the tools to take you from idea to fully operational business.\"})}),className:\"framer-ztx2f2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19q327r\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"QNYD77uG0\"},implicitPathVariables:undefined},{href:{webPageId:\"QNYD77uG0\"},implicitPathVariables:undefined},{href:{webPageId:\"QNYD77uG0\"},implicitPathVariables:undefined},{href:{webPageId:\"QNYD77uG0\"},implicitPathVariables:undefined},{href:{webPageId:\"QNYD77uG0\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1n1ulub-container\",nodeId:\"JwTqpS9hB\",rendersWithMotion:true,scopeId:\"k3sz8CTXO\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c1rjELC96:{avRBuCrwm:resolvedLinks1[4]},Gm4IiVboT:{avRBuCrwm:resolvedLinks1[2]},syu6cCCcY:{avRBuCrwm:resolvedLinks1[3]},Xh3DCC8UM:{avRBuCrwm:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(LinkIconRightWithTrackingOnClick1n1ulubWithMappedReactPropsgcfxvs,{AGFZ2OiUi:\"var(--token-fd6d18e2-f769-44a0-8ce3-bd764d176b28, rgb(57, 27, 147))\",AMs_H6CGc:\"var(--token-170e6570-679e-4a3b-8261-0290dd0d284f, rgb(95, 61, 200))\",avRBuCrwm:resolvedLinks1[0],B8xevsggR:\"var(--token-170e6570-679e-4a3b-8261-0290dd0d284f, rgb(95, 61, 200))\",CFL8s8o41:{borderBottomWidth:1,borderColor:\"var(--token-fd6d18e2-f769-44a0-8ce3-bd764d176b28, rgb(57, 27, 147))\",borderLeftWidth:0,borderRightWidth:0,borderStyle:\"solid\",borderTopWidth:0},Dl86q68SP:\"link-click\",height:\"100%\",id:\"JwTqpS9hB\",layoutId:\"JwTqpS9hB\",lY5WbeVyF:false,O61RRdgif:getLocalizedValue(\"v16\",activeLocale)??\"Features\",p9RSlRI1I:\"var(--token-fd6d18e2-f769-44a0-8ce3-bd764d176b28, rgb(57, 27, 147))\",r9V1LAhRh:\"homepage-why-us-features-link\",W31mWqfnL:true,width:\"100%\",Y1XbkU16H:\"arrow-right\"})})})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ex4snk\",\"data-border\":true,\"data-framer-name\":\"Card\",whileHover:animation,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5aw2dk\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1o2ceca\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:64,intrinsicWidth:65,svg:'<svg width=\"65\" height=\"64\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect x=\".5\" width=\"64\" height=\"64\" rx=\"10\" fill=\"#E8E1FF\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M41.799 28.398v-6.257c0-3.039-2.042-5.565-3.958-7.237a8.729 8.729 0 0 0-15.513 5.492v8.002h-3.452a2 2 0 0 0-2 2v16.956c0 .591.257 1.123.665 1.489l3.322 3.234c.09.059.185.112.287.147a2 2 0 0 0 .65.109h24.325a2 2 0 0 0 2-2V32.94c0-.69-.377-1.227-.94-1.696l-2.71-2.318a1.993 1.993 0 0 0-1.355-.529H41.8Zm-6.392-11.62a5.795 5.795 0 0 0-7.995 5.362v6.258h9.303v-8.002a5.635 5.635 0 0 0-1.308-3.617Z\" fill=\"#5F3DC8\"/><path d=\"M44.475 28.927c.009.007-.008-.007 0 0Zm0 0a1.993 1.993 0 0 0-1.355-.529H41.8v-6.257c0-3.039-2.042-5.565-3.958-7.237a8.729 8.729 0 0 0-15.513 5.492v8.002h-3.452a2 2 0 0 0-2 2v16.956c0 .591.257 1.123.665 1.489l3.322 3.234c.09.059.185.112.287.147a2 2 0 0 0 .65.109h24.325a2 2 0 0 0 2-2V32.94c0-.69-.377-1.227-.94-1.696l-2.71-2.318ZM33.206 16.346c.78 0 1.522.154 2.2.433a5.635 5.635 0 0 1 1.309 3.617v8.002h-9.303v-6.257c0-3.2 2.594-5.795 5.794-5.795Z\" stroke=\"#5F3DC8\" stroke-width=\"1.3\" stroke-miterlimit=\"10\" stroke-linejoin=\"round\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M31.057 14.738a5.658 5.658 0 0 0-5.659 5.659v8.792h-3.07v-8.793a8.729 8.729 0 0 1 17.457 0v8.793h-3.07v-8.793a5.658 5.658 0 0 0-5.658-5.658Z\" fill=\"#231E56\" stroke=\"#231E56\" stroke-width=\"1.3\"/><path d=\"M43.12 28.398H18.877a2 2 0 0 0-2 2v16.956a2 2 0 0 0 2 2H43.12a2 2 0 0 0 2-2V30.398a2 2 0 0 0-2-2Z\" fill=\"#9A7EF2\"/><path d=\"M45.12 31.082v-.684a2 2 0 0 0-2-2H18.877a2 2 0 0 0-2 2v16.956a2 2 0 0 0 2 2H43.12a2 2 0 0 0 2-2V36.449\" stroke=\"#231E56\" stroke-width=\"1.3\" stroke-miterlimit=\"10\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M26.538 43.884c-2.253-1.301-3.042-4.193-1.754-6.442 1.288-2.249 4.17-3.004 6.423-1.703l-4.669 8.145Z\" fill=\"#fff\" stroke=\"#231E56\" stroke-width=\"1.3\" stroke-linejoin=\"round\"/><path d=\"M29.452 32.687c2.254-1.317 5.136-.546 6.424 1.687 1.287 2.249.498 5.14-1.755 6.442l-4.669-8.129Zm8.275 8.145c0 2.65-2.11 4.787-4.717 4.787-2.608 0-4.717-2.136-4.717-4.787h9.434Z\" fill=\"#fff\" stroke=\"#231E56\" stroke-width=\"1.3\" stroke-linejoin=\"round\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1m2yhmy\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v17\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-fesehh\",\"data-styles-preset\":\"anypUxJuc\",children:\"Worry-Free\"})}),className:\"framer-16v5ipe\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v18\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qgih7y\",\"data-styles-preset\":\"pjwGzfL7a\",children:\"With easy setup and automated processes, you\u2019ll have more time to focus on growing your business.\"})}),className:\"framer-1kyndbh\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-pczjsg\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"rnQJEmvtP\"},implicitPathVariables:undefined},{href:{webPageId:\"rnQJEmvtP\"},implicitPathVariables:undefined},{href:{webPageId:\"rnQJEmvtP\"},implicitPathVariables:undefined},{href:{webPageId:\"rnQJEmvtP\"},implicitPathVariables:undefined},{href:{webPageId:\"rnQJEmvtP\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nsk2hf-container\",nodeId:\"RrD2cXzlF\",rendersWithMotion:true,scopeId:\"k3sz8CTXO\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c1rjELC96:{avRBuCrwm:resolvedLinks2[4]},Gm4IiVboT:{avRBuCrwm:resolvedLinks2[2]},syu6cCCcY:{avRBuCrwm:resolvedLinks2[3]},Xh3DCC8UM:{avRBuCrwm:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(LinkIconRightWithTrackingOnClick1nsk2hfWithMappedReactPropsgcfxvs,{AGFZ2OiUi:\"var(--token-fd6d18e2-f769-44a0-8ce3-bd764d176b28, rgb(57, 27, 147))\",AMs_H6CGc:\"var(--token-170e6570-679e-4a3b-8261-0290dd0d284f, rgb(95, 61, 200))\",avRBuCrwm:resolvedLinks2[0],B8xevsggR:\"var(--token-170e6570-679e-4a3b-8261-0290dd0d284f, rgb(95, 61, 200))\",CFL8s8o41:{borderBottomWidth:1,borderColor:\"var(--token-fd6d18e2-f769-44a0-8ce3-bd764d176b28, rgb(57, 27, 147))\",borderLeftWidth:0,borderRightWidth:0,borderStyle:\"solid\",borderTopWidth:0},Dl86q68SP:\"link-click\",height:\"100%\",id:\"RrD2cXzlF\",layoutId:\"RrD2cXzlF\",lY5WbeVyF:false,O61RRdgif:getLocalizedValue(\"v19\",activeLocale)??\"New Businesses\",p9RSlRI1I:\"var(--token-fd6d18e2-f769-44a0-8ce3-bd764d176b28, rgb(57, 27, 147))\",r9V1LAhRh:\"homepage-why-us-new-businesses-link\",W31mWqfnL:true,width:\"100%\",Y1XbkU16H:\"arrow-right\"})})})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7auxoa\",\"data-border\":true,\"data-framer-name\":\"Card\",whileHover:animation,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1isr5hx\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-d5k8od\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:64,intrinsicWidth:65,svg:'<svg width=\"65\" height=\"64\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect x=\".5\" width=\"64\" height=\"64\" rx=\"10\" fill=\"#FCEDCA\" fill-opacity=\".75\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M31.889 14.575c2.967-3.392 6.512-5.769 10.244-6.187l.053.062.006-.003 2.932 2.996c2.441 2.856 3.408 7.013 3.256 11.517h.002c-.075 2.326-.449 4.747-1.074 7.127a36.827 36.827 0 0 1-1.67 4.923l2.24 4.324-4.449 11.27-2.993-3.056-3.748-6.334s.002 0 .004-.004l-7.307-2.885-9.79 2.844-2.859-2.925-.131-.13 4.48-11.26 4.578-1.608c1.449-3.915 3.614-7.686 6.226-10.671Z\" fill=\"#ABBAE1\" stroke=\"#ABBAE1\" stroke-width=\"1.3\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"m24.65 42.53.025 10.089.07.062 2.943 2.932 6.907-7.352c1.933-2.058-.138-5.574-2.024-7.522-.492-.507-1.373-1.526-2.44-1.946-2.635-1.042-5.487.904-5.48 3.737Z\" fill=\"#F6BE4F\" stroke=\"#F6BE4F\" stroke-width=\"1.3\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"m30.036 46.911-2.131 2.27-3.23 3.438-.025-10.089c-.006-2.833 2.846-4.779 5.482-3.737 2.635 1.04 3.39 4.41 1.45 6.474\" fill=\"#FCEDCA\"/><path d=\"m30.036 46.911-2.131 2.27-3.23 3.438-.025-10.089c-.006-2.833 2.846-4.779 5.482-3.737 2.635 1.04 3.39 4.41 1.45 6.474\" stroke=\"#231E56\" stroke-width=\"1.3\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M45.39 19.904c-.076 2.326-.45 4.747-1.075 7.128a36.829 36.829 0 0 1-1.67 4.923c-.413.989-.87 1.953-1.366 2.882l-.366-.146L24.69 28.29c1.335-4.964 3.914-9.961 7.199-13.715l13.5 5.33Z\" fill=\"#F0F4FF\" stroke=\"#231E56\" stroke-width=\"1.3\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M41.28 34.837c-1.24 2.336-2.714 4.441-4.36 6.14-.075.079-.15.156-.227.233l-13.005-5.133c-.081-2.454.281-5.115 1.003-7.787l16.223 6.401.366.146Zm4.11-14.933-13.501-5.33c2.967-3.391 6.512-5.768 10.244-6.186 2.441 2.856 3.408 7.012 3.256 11.516Z\" fill=\"#FBA4A4\" stroke=\"#231E56\" stroke-width=\"1.3\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M35.758 28.251a3.87 3.87 0 1 0 0-7.738 3.87 3.87 0 0 0 0 7.738Z\" fill=\"#fff\" stroke=\"#231E56\" stroke-width=\"1.3\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"m44.886 36.279-4.45 11.27-3.748-6.335s.002 0 .005-.004c.076-.077.151-.154.226-.233 1.646-1.699 3.12-3.804 4.36-6.14a33.63 33.63 0 0 0 1.366-2.883l2.24 4.325Zm-23.802-9.425-4.48 11.26 7.071-2.048v-.006a8.85 8.85 0 0 1-.006-.325c-.034-2.367.334-4.91 1.03-7.462a33.07 33.07 0 0 1 .98-3.033l-4.595 1.614Z\" fill=\"#D4DDF3\" stroke=\"#231E56\" stroke-width=\"1.3\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lfvjpp\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v20\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-fesehh\",\"data-styles-preset\":\"anypUxJuc\",children:\"Simple and Fast\"})}),className:\"framer-640z88\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v21\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qgih7y\",\"data-styles-preset\":\"pjwGzfL7a\",children:\"No lawyers, no complicated forms, no big costs - if you have an idea, we can make it real.\"})}),className:\"framer-kifygq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13zqyzi\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,children:/*#__PURE__*/_jsx(Container,{className:\"framer-lt80qu-container\",nodeId:\"hNCy2gbYt\",rendersWithMotion:true,scopeId:\"k3sz8CTXO\",children:/*#__PURE__*/_jsx(LinkIconRightWithTrackingOnClicklt80quWithMappedReactPropsgcfxvs,{AGFZ2OiUi:\"var(--token-fd6d18e2-f769-44a0-8ce3-bd764d176b28, rgb(57, 27, 147))\",AMs_H6CGc:\"var(--token-170e6570-679e-4a3b-8261-0290dd0d284f, rgb(95, 61, 200))\",avRBuCrwm:\"ownr.co/new\",B8xevsggR:\"var(--token-170e6570-679e-4a3b-8261-0290dd0d284f, rgb(95, 61, 200))\",CFL8s8o41:{borderBottomWidth:1,borderColor:\"var(--token-fd6d18e2-f769-44a0-8ce3-bd764d176b28, rgb(57, 27, 147))\",borderLeftWidth:0,borderRightWidth:0,borderStyle:\"solid\",borderTopWidth:0},Dl86q68SP:\"link-click\",height:\"100%\",id:\"hNCy2gbYt\",layoutId:\"hNCy2gbYt\",lY5WbeVyF:false,O61RRdgif:getLocalizedValue(\"v22\",activeLocale)??\"Get Started\",p9RSlRI1I:\"var(--token-fd6d18e2-f769-44a0-8ce3-bd764d176b28, rgb(57, 27, 147))\",r9V1LAhRh:\"homepage-why-us-get-started-link\",W31mWqfnL:true,width:\"100%\",Y1XbkU16H:\"arrow-right\"})})})})]})]}),isDisplayed3()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-6uxefp hidden-f4gq7q hidden-qdked2 hidden-1ii9vdz hidden-1iuxexp\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:105,intrinsicWidth:120,svg:'<svg width=\"120\" height=\"105\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M45.465 50.312a11.957 11.957 0 0 1-9.12 1.206 12.2 12.2 0 0 1-7.362-5.627 12.155 12.155 0 0 1-1.29-9.163 11.912 11.912 0 0 1 5.537-7.332l12.235 20.916Z\" fill=\"#40B9EA\"/><path d=\"M47.897 82.13a11.699 11.699 0 0 1-1.353 9c-1.651 2.718-4.331 4.694-7.45 5.495a12.31 12.31 0 0 1-9.182-1.228c-2.76-1.587-4.751-4.188-5.535-7.232l23.52-6.035Z\" fill=\"#F8D689\"/><path d=\"M103.889 29.714a10.613 10.613 0 0 1 .868 8.148 10.875 10.875 0 0 1-5.2 6.425 10.911 10.911 0 0 1-8.223.937 10.648 10.648 0 0 1-6.428-5.099l18.983-10.411Z\" fill=\"#EA75BB\"/></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-15wumkq\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xh3DCC8UM:{width:`max(${componentViewport?.width||\"100vw\"} - 32px, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1w0pab3-container\",nodeId:\"Uwbp3NM7D\",rendersWithMotion:true,scopeId:\"k3sz8CTXO\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xh3DCC8UM:{style:{width:\"100%\"},variant:\"IepsDFXC5\"}},children:/*#__PURE__*/_jsx(ButtonWithTrackingOnClick1w0pab3WithMappedReactProps1v1ipky,{CIx07aqhO:false,Cu4D0_EOi:\"home\",gDxUiWVA2:\"home\",gtBTPu_hO:\"homepage-why-us-cta\",HagJtdLM9:false,height:\"100%\",i8NEUhQou:\"button-click\",ibf40tJYv:getLocalizedValue(\"v22\",activeLocale)??\"Get Started\",id:\"Uwbp3NM7D\",kNVuXmein:false,layoutId:\"Uwbp3NM7D\",nu83Zx0Mn:\"https://www.ownr.co/new\",variant:\"zGB7vs8To\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2ebxwu\",\"data-framer-name\":\"Templates\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1ye9vva\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:691,intrinsicWidth:1170,svg:'<svg width=\"1170\" height=\"691\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g opacity=\".5\"><mask id=\"B\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"-122\" y=\"-25\" width=\"1292\" height=\"906\"><path d=\"M177.655-24v904.927\" stroke=\"url(#a)\" stroke-width=\"1.105\"/><path d=\"M209.103-24v904.927\" stroke=\"url(#b)\" stroke-width=\"1.105\"/><path d=\"M240.55-24v904.927\" stroke=\"url(#c)\" stroke-width=\"1.105\"/><path d=\"M271.997-24v904.927\" stroke=\"url(#d)\" stroke-width=\"1.105\"/><path d=\"M303.444-24v904.927\" stroke=\"url(#e)\" stroke-width=\"1.105\"/><path d=\"M334.892-24v904.927\" stroke=\"url(#f)\" stroke-width=\"1.105\"/><path d=\"M366.339-24v904.927\" stroke=\"url(#g)\" stroke-width=\"1.105\"/><path d=\"M397.786-24v904.927\" stroke=\"url(#h)\" stroke-width=\"1.105\"/><path d=\"M429.233-24v904.927\" stroke=\"url(#i)\" stroke-width=\"1.105\"/><path d=\"M460.681-24v904.927\" stroke=\"url(#j)\" stroke-width=\"1.105\"/><path d=\"M492.128-24v904.927\" stroke=\"url(#k)\" stroke-width=\"1.105\"/><path d=\"M523.575-24v904.927\" stroke=\"url(#l)\" stroke-width=\"1.105\"/><path d=\"M555.022-24v904.927\" stroke=\"url(#m)\" stroke-width=\"1.105\"/><path d=\"M586.47-24v904.927\" stroke=\"url(#n)\" stroke-width=\"1.105\"/><path d=\"M617.917-24v904.927\" stroke=\"url(#o)\" stroke-width=\"1.105\"/><path d=\"M649.364-24v904.927\" stroke=\"url(#p)\" stroke-width=\"1.105\"/><path d=\"m680.812-24-.001 904.927\" stroke=\"url(#q)\" stroke-width=\"1.105\"/><path d=\"M712.259-24v904.927\" stroke=\"url(#r)\" stroke-width=\"1.105\"/><path d=\"M743.706-24v904.927\" stroke=\"url(#s)\" stroke-width=\"1.105\"/><path d=\"M775.153-24v904.927\" stroke=\"url(#t)\" stroke-width=\"1.105\"/><path d=\"M806.601-24v904.927\" stroke=\"url(#u)\" stroke-width=\"1.105\"/><path d=\"M838.048-24v904.927\" stroke=\"url(#v)\" stroke-width=\"1.105\"/><path d=\"M869.495-24v904.927\" stroke=\"url(#w)\" stroke-width=\"1.105\"/><path d=\"M900.942-24v904.927\" stroke=\"url(#x)\" stroke-width=\"1.105\"/><path d=\"M932.39-24v904.927\" stroke=\"url(#y)\" stroke-width=\"1.105\"/><path d=\"M963.837-24v904.927\" stroke=\"url(#z)\" stroke-width=\"1.105\"/><path d=\"M995.284-24v904.927\" stroke=\"url(#A)\" stroke-width=\"1.105\"/><path d=\"M496.746 150.086H-122m1292 31.447H-122m1141.18 31.447H-122m1292 31.447H-122m1141.18 31.448H-122m1292 31.447H-122m1292 31.447H-122m1292 31.447H-122m1292 31.448H-122m1292 31.447H-122m1292 31.447H-122m1292 31.447H-122m1292 31.448H-122M1170 558.9H-122m1292 31.447H-122m1292 31.447H-122m1292 31.447H-122m1292 31.448H-122\" stroke=\"#ABBAE1\" stroke-width=\"1.105\"/></mask><g mask=\"url(#B)\"><ellipse cx=\"594.5\" cy=\"397.063\" rx=\"594.5\" ry=\"397\" fill=\"url(#C)\" fill-opacity=\".7\"/></g><path d=\"M859.763 447.198a17.789 17.789 0 0 0-5.445 12.584 18.183 18.183 0 0 0 5.086 12.848 18.186 18.186 0 0 0 12.64 5.587 17.783 17.783 0 0 0 12.787-4.947l-25.068-26.072Z\" fill=\"#97D8F2\"/></g><defs><linearGradient id=\"a\" x1=\"178.155\" y1=\"-24\" x2=\"178.155\" y2=\"880.927\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#8765F0\"/><stop offset=\".041\" stop-color=\"#7957E2\"/><stop offset=\".114\" stop-color=\"#704ED9\"/><stop offset=\".229\" stop-color=\"#6745D0\"/><stop offset=\".478\" stop-color=\"#5F3DC8\"/><stop offset=\"1\" stop-color=\"#5F3DC8\"/></linearGradient><linearGradient id=\"b\" x1=\"209.603\" y1=\"-24\" x2=\"209.602\" y2=\"880.927\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#8765F0\"/><stop offset=\".041\" stop-color=\"#7957E2\"/><stop offset=\".114\" stop-color=\"#704ED9\"/><stop offset=\".229\" stop-color=\"#6745D0\"/><stop offset=\".478\" stop-color=\"#5F3DC8\"/><stop offset=\"1\" stop-color=\"#5F3DC8\"/></linearGradient><linearGradient id=\"c\" x1=\"241.05\" y1=\"-24\" x2=\"241.05\" y2=\"880.927\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#8765F0\"/><stop offset=\".041\" stop-color=\"#7957E2\"/><stop offset=\".114\" stop-color=\"#704ED9\"/><stop offset=\".229\" stop-color=\"#6745D0\"/><stop offset=\".478\" stop-color=\"#5F3DC8\"/><stop offset=\"1\" stop-color=\"#5F3DC8\"/></linearGradient><linearGradient id=\"d\" x1=\"272.497\" y1=\"-24\" x2=\"272.497\" y2=\"880.927\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#8765F0\"/><stop offset=\".041\" stop-color=\"#7957E2\"/><stop offset=\".114\" stop-color=\"#704ED9\"/><stop offset=\".229\" stop-color=\"#6745D0\"/><stop offset=\".478\" stop-color=\"#5F3DC8\"/><stop offset=\"1\" stop-color=\"#5F3DC8\"/></linearGradient><linearGradient id=\"e\" x1=\"303.944\" y1=\"-24\" x2=\"303.944\" y2=\"880.927\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#8765F0\"/><stop offset=\".041\" stop-color=\"#7957E2\"/><stop offset=\".114\" stop-color=\"#704ED9\"/><stop offset=\".229\" stop-color=\"#6745D0\"/><stop offset=\".478\" stop-color=\"#5F3DC8\"/><stop offset=\"1\" stop-color=\"#5F3DC8\"/></linearGradient><linearGradient id=\"f\" x1=\"335.392\" y1=\"-24\" x2=\"335.392\" y2=\"880.927\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#8765F0\"/><stop offset=\".041\" stop-color=\"#7957E2\"/><stop offset=\".114\" stop-color=\"#704ED9\"/><stop offset=\".229\" stop-color=\"#6745D0\"/><stop offset=\".478\" stop-color=\"#5F3DC8\"/><stop offset=\"1\" stop-color=\"#5F3DC8\"/></linearGradient><linearGradient id=\"g\" x1=\"366.839\" y1=\"-24\" x2=\"366.839\" y2=\"880.927\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#8765F0\"/><stop offset=\".041\" stop-color=\"#7957E2\"/><stop offset=\".114\" stop-color=\"#704ED9\"/><stop offset=\".229\" stop-color=\"#6745D0\"/><stop offset=\".478\" stop-color=\"#5F3DC8\"/><stop offset=\"1\" stop-color=\"#5F3DC8\"/></linearGradient><linearGradient id=\"h\" x1=\"398.286\" y1=\"-24\" x2=\"398.286\" y2=\"880.927\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#8765F0\"/><stop offset=\".041\" stop-color=\"#7957E2\"/><stop offset=\".114\" stop-color=\"#704ED9\"/><stop offset=\".229\" stop-color=\"#6745D0\"/><stop offset=\".478\" stop-color=\"#5F3DC8\"/><stop offset=\"1\" stop-color=\"#5F3DC8\"/></linearGradient><linearGradient id=\"i\" x1=\"429.733\" y1=\"-24\" x2=\"429.733\" y2=\"880.927\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#8765F0\"/><stop offset=\".041\" stop-color=\"#7957E2\"/><stop offset=\".114\" stop-color=\"#704ED9\"/><stop offset=\".229\" stop-color=\"#6745D0\"/><stop offset=\".478\" stop-color=\"#5F3DC8\"/><stop offset=\"1\" stop-color=\"#5F3DC8\"/></linearGradient><linearGradient id=\"j\" x1=\"461.181\" y1=\"-24\" x2=\"461.181\" y2=\"880.927\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#8765F0\"/><stop offset=\".041\" stop-color=\"#7957E2\"/><stop offset=\".114\" stop-color=\"#704ED9\"/><stop offset=\".229\" stop-color=\"#6745D0\"/><stop offset=\".478\" stop-color=\"#5F3DC8\"/><stop offset=\"1\" stop-color=\"#5F3DC8\"/></linearGradient><linearGradient id=\"k\" x1=\"492.628\" y1=\"-24\" x2=\"492.628\" y2=\"880.927\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#8765F0\"/><stop offset=\".041\" stop-color=\"#7957E2\"/><stop offset=\".114\" stop-color=\"#704ED9\"/><stop offset=\".229\" stop-color=\"#6745D0\"/><stop offset=\".478\" stop-color=\"#5F3DC8\"/><stop offset=\"1\" stop-color=\"#5F3DC8\"/></linearGradient><linearGradient id=\"l\" x1=\"524.075\" y1=\"-24\" x2=\"524.075\" y2=\"880.927\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#8765F0\"/><stop offset=\".041\" stop-color=\"#7957E2\"/><stop offset=\".114\" stop-color=\"#704ED9\"/><stop offset=\".229\" stop-color=\"#6745D0\"/><stop offset=\".478\" stop-color=\"#5F3DC8\"/><stop offset=\"1\" stop-color=\"#5F3DC8\"/></linearGradient><linearGradient id=\"m\" x1=\"555.522\" y1=\"-24\" x2=\"555.522\" y2=\"880.927\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#8765F0\"/><stop offset=\".041\" stop-color=\"#7957E2\"/><stop offset=\".114\" stop-color=\"#704ED9\"/><stop offset=\".229\" stop-color=\"#6745D0\"/><stop offset=\".478\" stop-color=\"#5F3DC8\"/><stop offset=\"1\" stop-color=\"#5F3DC8\"/></linearGradient><linearGradient id=\"n\" x1=\"586.97\" y1=\"-24\" x2=\"586.97\" y2=\"880.927\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#8765F0\"/><stop offset=\".041\" stop-color=\"#7957E2\"/><stop offset=\".114\" stop-color=\"#704ED9\"/><stop offset=\".229\" stop-color=\"#6745D0\"/><stop offset=\".478\" stop-color=\"#5F3DC8\"/><stop offset=\"1\" stop-color=\"#5F3DC8\"/></linearGradient><linearGradient id=\"o\" x1=\"618.417\" y1=\"-24\" x2=\"618.417\" y2=\"880.927\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#8765F0\"/><stop offset=\".041\" stop-color=\"#7957E2\"/><stop offset=\".114\" stop-color=\"#704ED9\"/><stop offset=\".229\" stop-color=\"#6745D0\"/><stop offset=\".478\" stop-color=\"#5F3DC8\"/><stop offset=\"1\" stop-color=\"#5F3DC8\"/></linearGradient><linearGradient id=\"p\" x1=\"649.864\" y1=\"-24\" x2=\"649.864\" y2=\"880.927\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#8765F0\"/><stop offset=\".041\" stop-color=\"#7957E2\"/><stop offset=\".114\" stop-color=\"#704ED9\"/><stop offset=\".229\" stop-color=\"#6745D0\"/><stop offset=\".478\" stop-color=\"#5F3DC8\"/><stop offset=\"1\" stop-color=\"#5F3DC8\"/></linearGradient><linearGradient id=\"q\" x1=\"681.312\" y1=\"-24\" x2=\"681.311\" y2=\"880.927\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#8765F0\"/><stop offset=\".041\" stop-color=\"#7957E2\"/><stop offset=\".114\" stop-color=\"#704ED9\"/><stop offset=\".229\" stop-color=\"#6745D0\"/><stop offset=\".478\" stop-color=\"#5F3DC8\"/><stop offset=\"1\" stop-color=\"#5F3DC8\"/></linearGradient><linearGradient id=\"r\" x1=\"712.759\" y1=\"-24\" x2=\"712.759\" y2=\"880.927\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#8765F0\"/><stop offset=\".041\" stop-color=\"#7957E2\"/><stop offset=\".114\" stop-color=\"#704ED9\"/><stop offset=\".229\" stop-color=\"#6745D0\"/><stop offset=\".478\" stop-color=\"#5F3DC8\"/><stop offset=\"1\" stop-color=\"#5F3DC8\"/></linearGradient><linearGradient id=\"s\" x1=\"744.206\" y1=\"-24\" x2=\"744.206\" y2=\"880.927\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#8765F0\"/><stop offset=\".041\" stop-color=\"#7957E2\"/><stop offset=\".114\" stop-color=\"#704ED9\"/><stop offset=\".229\" stop-color=\"#6745D0\"/><stop offset=\".478\" stop-color=\"#5F3DC8\"/><stop offset=\"1\" stop-color=\"#5F3DC8\"/></linearGradient><linearGradient id=\"t\" x1=\"775.653\" y1=\"-24\" x2=\"775.653\" y2=\"880.927\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#8765F0\"/><stop offset=\".041\" stop-color=\"#7957E2\"/><stop offset=\".114\" stop-color=\"#704ED9\"/><stop offset=\".229\" stop-color=\"#6745D0\"/><stop offset=\".478\" stop-color=\"#5F3DC8\"/><stop offset=\"1\" stop-color=\"#5F3DC8\"/></linearGradient><linearGradient id=\"u\" x1=\"807.101\" y1=\"-24\" x2=\"807.101\" y2=\"880.927\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#8765F0\"/><stop offset=\".041\" stop-color=\"#7957E2\"/><stop offset=\".114\" stop-color=\"#704ED9\"/><stop offset=\".229\" stop-color=\"#6745D0\"/><stop offset=\".478\" stop-color=\"#5F3DC8\"/><stop offset=\"1\" stop-color=\"#5F3DC8\"/></linearGradient><linearGradient id=\"v\" x1=\"838.548\" y1=\"-24\" x2=\"838.548\" y2=\"880.927\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#8765F0\"/><stop offset=\".041\" stop-color=\"#7957E2\"/><stop offset=\".114\" stop-color=\"#704ED9\"/><stop offset=\".229\" stop-color=\"#6745D0\"/><stop offset=\".478\" stop-color=\"#5F3DC8\"/><stop offset=\"1\" stop-color=\"#5F3DC8\"/></linearGradient><linearGradient id=\"w\" x1=\"869.995\" y1=\"-24\" x2=\"869.995\" y2=\"880.927\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#8765F0\"/><stop offset=\".041\" stop-color=\"#7957E2\"/><stop offset=\".114\" stop-color=\"#704ED9\"/><stop offset=\".229\" stop-color=\"#6745D0\"/><stop offset=\".478\" stop-color=\"#5F3DC8\"/><stop offset=\"1\" stop-color=\"#5F3DC8\"/></linearGradient><linearGradient id=\"x\" x1=\"901.442\" y1=\"-24\" x2=\"901.442\" y2=\"880.927\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#8765F0\"/><stop offset=\".041\" stop-color=\"#7957E2\"/><stop offset=\".114\" stop-color=\"#704ED9\"/><stop offset=\".229\" stop-color=\"#6745D0\"/><stop offset=\".478\" stop-color=\"#5F3DC8\"/><stop offset=\"1\" stop-color=\"#5F3DC8\"/></linearGradient><linearGradient id=\"y\" x1=\"932.89\" y1=\"-24\" x2=\"932.89\" y2=\"880.927\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#8765F0\"/><stop offset=\".041\" stop-color=\"#7957E2\"/><stop offset=\".114\" stop-color=\"#704ED9\"/><stop offset=\".229\" stop-color=\"#6745D0\"/><stop offset=\".478\" stop-color=\"#5F3DC8\"/><stop offset=\"1\" stop-color=\"#5F3DC8\"/></linearGradient><linearGradient id=\"z\" x1=\"964.337\" y1=\"-24\" x2=\"964.337\" y2=\"880.927\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#8765F0\"/><stop offset=\".041\" stop-color=\"#7957E2\"/><stop offset=\".114\" stop-color=\"#704ED9\"/><stop offset=\".229\" stop-color=\"#6745D0\"/><stop offset=\".478\" stop-color=\"#5F3DC8\"/><stop offset=\"1\" stop-color=\"#5F3DC8\"/></linearGradient><linearGradient id=\"A\" x1=\"995.784\" y1=\"-24\" x2=\"995.784\" y2=\"880.927\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#8765F0\"/><stop offset=\".041\" stop-color=\"#7957E2\"/><stop offset=\".114\" stop-color=\"#704ED9\"/><stop offset=\".229\" stop-color=\"#6745D0\"/><stop offset=\".478\" stop-color=\"#5F3DC8\"/><stop offset=\"1\" stop-color=\"#5F3DC8\"/></linearGradient><radialGradient id=\"C\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"scale(594.5 397) rotate(90 0 1)\"><stop stop-color=\"#ABBAE1\"/><stop offset=\".165\" stop-color=\"#ABBAE1\" stop-opacity=\".835\"/><stop offset=\"1\" stop-color=\"#ABBAE1\" stop-opacity=\"0\"/></radialGradient></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o54lq\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1b87kwd\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ib9bct\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o0g4me\",\"data-border\":true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1u039se\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:25,svg:'<svg width=\"25\" height=\"24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.5 4.5a.75.75 0 0 1 .72.544l.814 2.846a3.75 3.75 0 0 0 2.576 2.576l2.846.813a.75.75 0 0 1 0 1.442l-2.846.813a3.75 3.75 0 0 0-2.576 2.576l-.813 2.846a.75.75 0 0 1-1.442 0l-.813-2.846a3.75 3.75 0 0 0-2.576-2.576l-2.846-.813a.75.75 0 0 1 0-1.442l2.846-.813A3.75 3.75 0 0 0 7.966 7.89l.813-2.846A.75.75 0 0 1 9.5 4.5Zm9-3a.75.75 0 0 1 .728.568l.258 1.036a2.63 2.63 0 0 0 1.91 1.91l1.036.258a.75.75 0 0 1 0 1.456l-1.036.258a2.63 2.63 0 0 0-1.91 1.91l-.258 1.036a.75.75 0 0 1-1.456 0l-.258-1.036a2.624 2.624 0 0 0-1.91-1.91l-1.036-.258a.75.75 0 0 1 0-1.456l1.036-.258a2.625 2.625 0 0 0 1.91-1.91l.258-1.036A.75.75 0 0 1 18.5 1.5ZM17 15a.75.75 0 0 1 .712.513l.394 1.183c.15.447.5.799.948.948l1.183.395a.75.75 0 0 1 0 1.422l-1.183.395a1.5 1.5 0 0 0-.948.948l-.395 1.183a.75.75 0 0 1-1.422 0l-.395-1.183a1.5 1.5 0 0 0-.948-.948l-1.183-.395a.75.75 0 0 1 0-1.422l1.183-.395a1.5 1.5 0 0 0 .948-.948l.395-1.183a.75.75 0 0 1 .71-.513Z\" fill=\"#5F3DC8\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v23\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(95, 61, 200)\"},children:\"Success Stories\"})}),className:\"framer-1j3qhi3\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-w36vcd-container\",isAuthoredByUser:true,nodeId:\"WslppIREL\",scopeId:\"k3sz8CTXO\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xh3DCC8UM:{align:\"left\",fontSize:32}},children:/*#__PURE__*/_jsx(CompanyCount,{align:\"center\",defaultCompanyCount:\"200,000\",font:\"Plus Jakarta Sans\",fontSize:40,fontStyle:\"normal\",height:\"100%\",highlightTextColor:\"rgb(95, 61, 200)\",id:\"WslppIREL\",layoutId:\"WslppIREL\",letterSpacing:-.75,lineHeight:1.25,postText:getLocalizedValue(\"v25\",activeLocale)??\"small business owners\",preText:getLocalizedValue(\"v24\",activeLocale)??\"Trusted by over\",style:{width:\"100%\"},textColor:\"rgb(35, 30, 86)\",weight:\"bold\",width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xh3DCC8UM:{children:getLocalizedValue(\"v27\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qiwde8\",\"data-styles-preset\":\"SMVMOBXNq\",style:{\"--framer-text-alignment\":\"left\"},children:\"From bakeries and doggy daycares to design agencies and financial consultants, see how Ownr has helped everyday Canadians achieve their biggest dreams.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v26\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qiwde8\",\"data-styles-preset\":\"SMVMOBXNq\",style:{\"--framer-text-alignment\":\"center\"},children:\"From bakeries and doggy daycares to design agencies and financial consultants, see how Ownr has helped everyday Canadians achieve their biggest dreams.\"})}),className:\"framer-1jxy8jh\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-e81uhw-container\",isModuleExternal:true,nodeId:\"Pw5_WlTUu\",rendersWithMotion:true,scopeId:\"k3sz8CTXO\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xh3DCC8UM:{fadeOptions:{fadeAlpha:1,fadeContent:true,fadeInset:0,fadeWidth:0,overflow:false}}},children:/*#__PURE__*/_jsx(TickerWithScrolle81uhw,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:1,fadeContent:true,fadeInset:0,fadeWidth:12,overflow:false},gap:10,height:\"100%\",hoverFactor:0,id:\"Pw5_WlTUu\",layoutId:\"Pw5_WlTUu\",padding:10,paddingBottom:64,paddingLeft:10,paddingPerSide:true,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:576,width:\"2750px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-6hd36u-container\",inComponentSlot:true,nodeId:\"fLbiOTTTR\",rendersWithMotion:true,scopeId:\"k3sz8CTXO\",children:/*#__PURE__*/_jsx(CarouselTestimonialsGroup,{height:\"100%\",id:\"fLbiOTTTR\",layoutId:\"fLbiOTTTR\",style:{height:\"100%\"},width:\"100%\"})})})],speed:110,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1n8a1se\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:1,intrinsicWidth:1440,svg:'<svg width=\"1440\" height=\"1\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path stroke=\"url(#a)\" d=\"M0 .5h1443\"/><defs><linearGradient id=\"a\" x1=\"0\" y1=\"1.5\" x2=\"1443\" y2=\"1.5\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#5F3DC8\" stop-opacity=\"0\"/><stop offset=\".505\" stop-color=\"#5F3DC8\" stop-opacity=\".5\"/><stop offset=\"1\" stop-color=\"#5F3DC8\" stop-opacity=\"0\"/></linearGradient></defs></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-yggf4o\",\"data-framer-name\":\"Banner\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s8c4v7\",\"data-border\":true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-h2y350\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:137,intrinsicWidth:304,svg:'<svg width=\"304\" height=\"137\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M147.632-109.965a110.34 110.34 0 0 1 84.116-11.568 110.321 110.321 0 0 1 67.424 51.606 112.37 112.37 0 0 1-41.246 152.596h85.134a111.425 111.425 0 0 1-222.851.07l-41.326 72.15A112.334 112.334 0 0 1 37.335 2.405a110.33 110.33 0 0 1 151.613-40.21l-41.316-72.16ZM120.249 82.669h137.676L189.101-37.538 120.249 82.669Z\" fill=\"#6646CB\" fill-opacity=\".05\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sro4xp\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b7hkfe\",children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-lg49rr hidden-f4gq7q\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:56,intrinsicWidth:56,svg:'<svg width=\"56\" height=\"56\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M22.784 6.34a16.721 16.721 0 0 1 22.966 6.07 17.03 17.03 0 0 1-6.251 23.126h12.902a16.887 16.887 0 0 1-33.773.01L12.365 46.48a17.024 17.024 0 0 1-6.297-23.11 16.722 16.722 0 0 1 22.977-6.094L22.784 6.341Zm-4.15 29.195h20.865l-10.43-18.218-10.436 18.218Z\" fill=\"#5F3DC8\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ix6oox\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ex4kl3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v28\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-6ezwb6\",\"data-styles-preset\":\"cseSXmtw8\",children:\"See if Ownr is right for you.\"})}),className:\"framer-fo6z74\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1rncbb8 hidden-pj3a9u hidden-qdked2 hidden-1ii9vdz hidden-1iuxexp\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:56,intrinsicWidth:56,svg:'<svg width=\"56\" height=\"56\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M22.784 6.34a16.721 16.721 0 0 1 22.966 6.07 17.03 17.03 0 0 1-6.251 23.126h12.902a16.887 16.887 0 0 1-33.773.01L12.365 46.48a17.024 17.024 0 0 1-6.297-23.11 16.722 16.722 0 0 1 22.977-6.094L22.784 6.341Zm-4.15 29.195h20.865l-10.43-18.218-10.436 18.218Z\" fill=\"#5F3DC8\"/></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v29\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qgih7y\",\"data-styles-preset\":\"pjwGzfL7a\",children:\"Book a call with an Ownr team member today.\"})}),className:\"framer-6136t1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xh3DCC8UM:{width:`max(min(${componentViewport?.width||\"100vw\"} - 32px, 892px) - 48px, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(Container,{className:\"framer-12hqig2-container\",nodeId:\"LUgPBAcPU\",rendersWithMotion:true,scopeId:\"k3sz8CTXO\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xh3DCC8UM:{style:{width:\"100%\"},variant:\"IepsDFXC5\"}},children:/*#__PURE__*/_jsx(ButtonWithTrackingOnClick12hqig2WithMappedReactProps1v1ipky,{CIx07aqhO:false,Cu4D0_EOi:\"home\",gDxUiWVA2:\"arrow-right\",gtBTPu_hO:\"homepage-book-a-demo-cta\",HagJtdLM9:true,height:\"100%\",i8NEUhQou:\"button-click\",ibf40tJYv:getLocalizedValue(\"v30\",activeLocale)??\"Book a Demo\",id:\"LUgPBAcPU\",kNVuXmein:true,layoutId:\"LUgPBAcPU\",nu83Zx0Mn:\"https://calendly.com/d/dsb-hmc-r6j\",variant:\"zGB7vs8To\",width:\"100%\"})})})})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lh25bd\",\"data-framer-name\":\"Features\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vapw3r\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13ktkxb\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,children:/*#__PURE__*/_jsx(Container,{className:\"framer-qvupy7-container\",nodeId:\"HGz2pm3XU\",scopeId:\"k3sz8CTXO\",children:/*#__PURE__*/_jsx(Pill,{e5KZkPk6L:\"var(--token-fd6d18e2-f769-44a0-8ce3-bd764d176b28, rgb(57, 27, 147))\",h9nZbCkbW:\"rgb(255, 255, 255)\",height:\"100%\",id:\"HGz2pm3XU\",jKNIyP3WP:\"0px 4px 8px 0px rgba(37, 22, 125, 0.05)\",layoutId:\"HGz2pm3XU\",OKJXJE54m:{borderColor:\"var(--token-170e6570-679e-4a3b-8261-0290dd0d284f, rgb(95, 61, 200))\",borderStyle:\"solid\",borderWidth:.5},QFoy3BvrC:getLocalizedValue(\"v16\",activeLocale)??\"Features\",sp1vPSCpF:\"var(--token-170e6570-679e-4a3b-8261-0290dd0d284f, rgb(95, 61, 200))\",t_Z_vMXmV:\"RectangleGroup\",variant:\"a3nu6UJMj\",width:\"100%\",yza3a5i8l:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xh3DCC8UM:{children:getLocalizedValue(\"v32\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-137c46q\",\"data-styles-preset\":\"CmDuRJeCw\",style:{\"--framer-text-alignment\":\"left\"},children:[\"Support for your business from \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-170e6570-679e-4a3b-8261-0290dd0d284f, rgb(95, 61, 200))\"},children:\"launch to growth\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v31\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-137c46q\",\"data-styles-preset\":\"CmDuRJeCw\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Support for your business \",/*#__PURE__*/_jsx(\"br\",{}),\"from launch to growth\"]})}),className:\"framer-1l3d9ow\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xh3DCC8UM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qiwde8\",\"data-styles-preset\":\"SMVMOBXNq\",style:{\"--framer-text-alignment\":\"left\"},children:\"We\u2019re not just here to help you start, we want to help you thrive. Check out how clients benefit with Ownr beyond registration.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qiwde8\",\"data-styles-preset\":\"SMVMOBXNq\",style:{\"--framer-text-alignment\":\"center\"},children:\"We\u2019re not just here to help you start, we want to help you thrive. Check out how clients benefit with Ownr beyond registration.\"})}),className:\"framer-1gho4j1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c1rjELC96:{width:`min(${componentViewport?.width||\"100vw\"} - 128px, 1232px)`},Gm4IiVboT:{width:`min(${componentViewport?.width||\"100vw\"}, 1232px)`},syu6cCCcY:{width:`min(${componentViewport?.width||\"100vw\"} - 80px, 1232px)`},Xh3DCC8UM:{width:`min(${componentViewport?.width||\"100vw\"}, 1232px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:865,width:`min(${componentViewport?.width||\"100vw\"} - 208px, 1232px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-axkm56-container\",nodeId:\"AKokFcE8C\",scopeId:\"k3sz8CTXO\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c1rjELC96:{variant:\"NCd2YuW2M\"},Gm4IiVboT:{variant:\"ny1_jmHAz\"},syu6cCCcY:{variant:\"NCd2YuW2M\"},Xh3DCC8UM:{variant:\"uHHfeTZv9\"}},children:/*#__PURE__*/_jsx(FeatureList,{height:\"100%\",id:\"AKokFcE8C\",layoutId:\"AKokFcE8C\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"gOJxDwq6A\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1r3mw6i\",\"data-framer-name\":\"Comparison\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bci49l\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1edwsh0-container\",nodeId:\"Ds97uStHx\",scopeId:\"k3sz8CTXO\",children:/*#__PURE__*/_jsx(Pill,{e5KZkPk6L:\"var(--token-fd6d18e2-f769-44a0-8ce3-bd764d176b28, rgb(57, 27, 147))\",h9nZbCkbW:\"rgb(255, 255, 255)\",height:\"100%\",id:\"Ds97uStHx\",jKNIyP3WP:\"0px 4px 8px 0px rgba(37, 22, 125, 0.05)\",layoutId:\"Ds97uStHx\",OKJXJE54m:{borderColor:\"var(--token-170e6570-679e-4a3b-8261-0290dd0d284f, rgb(95, 61, 200))\",borderStyle:\"solid\",borderWidth:.5},QFoy3BvrC:getLocalizedValue(\"v33\",activeLocale)??\"Comparison\",sp1vPSCpF:\"var(--token-170e6570-679e-4a3b-8261-0290dd0d284f, rgb(95, 61, 200))\",t_Z_vMXmV:\"ClipboardDocument\",variant:\"a3nu6UJMj\",width:\"100%\",yza3a5i8l:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9msoyu\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xh3DCC8UM:{children:getLocalizedValue(\"v35\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-137c46q\",\"data-styles-preset\":\"CmDuRJeCw\",style:{\"--framer-text-alignment\":\"left\"},children:[\"Legal \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-170e6570-679e-4a3b-8261-0290dd0d284f, rgb(95, 61, 200))\"},children:\"support\"}),\" for your business without the high price tag\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v34\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-137c46q\",\"data-styles-preset\":\"CmDuRJeCw\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Legal \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-170e6570-679e-4a3b-8261-0290dd0d284f, rgb(95, 61, 200))\"},children:\"support\"}),\" for your business without the high price tag\"]})}),className:\"framer-yeieyy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xh3DCC8UM:{children:getLocalizedValue(\"v37\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qiwde8\",\"data-styles-preset\":\"SMVMOBXNq\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-2caa4405-b4b2-4cde-8787-d3028d1af67f, rgba(35, 30, 86, 0.9))\"},children:\"Our full suite of features and tools help all growing businesses navigate and streamline confusing legal processes.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v36\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qiwde8\",\"data-styles-preset\":\"SMVMOBXNq\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2caa4405-b4b2-4cde-8787-d3028d1af67f, rgba(35, 30, 86, 0.9))\"},children:\"Our full suite of features and tools help all growing businesses navigate and streamline confusing legal processes.\"})}),className:\"framer-15iuly\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1532non\",\"data-border\":true,\"data-framer-name\":\"Main Table\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9l4gxt\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tndykj\",\"data-border\":true,children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v38\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-fesehh\",\"data-styles-preset\":\"anypUxJuc\",style:{\"--framer-text-alignment\":\"center\"},children:\"Service Offerings\"})}),className:\"framer-f9o3tb hidden-f4gq7q\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1av8hr5 hidden-f4gq7q\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:58,intrinsicWidth:386,svg:'<svg width=\"386\" height=\"58\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><ellipse cx=\"1.846\" cy=\"1.864\" rx=\"1.846\" ry=\"1.864\" transform=\"matrix(1.00012 .00456 .03246 .9996 12.13 10.145)\" fill=\"#E8E6EB\" fill-opacity=\".65\"/><ellipse cx=\"1.846\" cy=\"1.864\" rx=\"1.846\" ry=\"1.864\" transform=\"matrix(1.00012 .00456 .03246 .9996 31.561 10.143)\" fill=\"#E8E6EB\" fill-opacity=\".65\"/><ellipse cx=\"1.846\" cy=\"1.864\" rx=\"1.846\" ry=\"1.864\" transform=\"matrix(1.00012 .00456 .03246 .9996 50.998 10.142)\" fill=\"#E8E6EB\" fill-opacity=\".65\"/><ellipse cx=\"1.846\" cy=\"1.864\" rx=\"1.846\" ry=\"1.864\" transform=\"matrix(1.00012 .00456 .03246 .9996 70.432 10.141)\" fill=\"#E8E6EB\" fill-opacity=\".65\"/><ellipse cx=\"1.846\" cy=\"1.864\" rx=\"1.846\" ry=\"1.864\" transform=\"matrix(1.00012 .00456 .03246 .9996 89.868 10.142)\" fill=\"#E8E6EB\" fill-opacity=\".65\"/><ellipse cx=\"1.846\" cy=\"1.864\" rx=\"1.846\" ry=\"1.864\" transform=\"matrix(1.00012 .00456 .03246 .9996 109.304 10.138)\" fill=\"#E8E6EB\" fill-opacity=\".65\"/><ellipse cx=\"1.846\" cy=\"1.864\" rx=\"1.846\" ry=\"1.864\" transform=\"matrix(1.00012 .00456 .03246 .9996 12.625 27.77)\" fill=\"#E8E6EB\" fill-opacity=\".65\"/><ellipse cx=\"1.846\" cy=\"1.864\" rx=\"1.846\" ry=\"1.864\" transform=\"matrix(1.00012 .00456 .03246 .9996 32.057 27.77)\" fill=\"#E8E6EB\" fill-opacity=\".65\"/><ellipse cx=\"1.846\" cy=\"1.864\" rx=\"1.846\" ry=\"1.864\" transform=\"matrix(1.00012 .00456 .03246 .9996 51.493 27.768)\" fill=\"#E8E6EB\" fill-opacity=\".65\"/><ellipse cx=\"1.846\" cy=\"1.864\" rx=\"1.846\" ry=\"1.864\" transform=\"matrix(1.00012 .00456 .03246 .9996 70.927 27.767)\" fill=\"#E8E6EB\" fill-opacity=\".65\"/><ellipse cx=\"1.846\" cy=\"1.864\" rx=\"1.846\" ry=\"1.864\" transform=\"matrix(1.00012 .00456 .03246 .9996 90.363 27.767)\" fill=\"#E8E6EB\" fill-opacity=\".65\"/><ellipse cx=\"1.846\" cy=\"1.864\" rx=\"1.846\" ry=\"1.864\" transform=\"matrix(1.00012 .00456 .03246 .9996 109.799 27.764)\" fill=\"#E8E6EB\" fill-opacity=\".65\"/><ellipse cx=\"1.846\" cy=\"1.864\" rx=\"1.846\" ry=\"1.864\" transform=\"matrix(1.00012 .00456 .03246 .9996 13.117 45.401)\" fill=\"#E8E6EB\" fill-opacity=\".65\"/><ellipse cx=\"1.846\" cy=\"1.864\" rx=\"1.846\" ry=\"1.864\" transform=\"matrix(1.00012 .00456 .03246 .9996 32.549 45.4)\" fill=\"#E8E6EB\" fill-opacity=\".65\"/><ellipse cx=\"1.846\" cy=\"1.864\" rx=\"1.846\" ry=\"1.864\" transform=\"matrix(1.00012 .00456 .03246 .9996 51.985 45.398)\" fill=\"#E8E6EB\" fill-opacity=\".65\"/><ellipse cx=\"1.846\" cy=\"1.864\" rx=\"1.846\" ry=\"1.864\" transform=\"matrix(1.00012 .00456 .03246 .9996 71.419 45.398)\" fill=\"#E8E6EB\" fill-opacity=\".65\"/><ellipse cx=\"1.846\" cy=\"1.864\" rx=\"1.846\" ry=\"1.864\" transform=\"matrix(1.00012 .00456 .03246 .9996 90.856 45.398)\" fill=\"#E8E6EB\" fill-opacity=\".65\"/><ellipse cx=\"1.846\" cy=\"1.864\" rx=\"1.846\" ry=\"1.864\" transform=\"matrix(1.00012 .00456 .03246 .9996 110.291 45.395)\" fill=\"#E8E6EB\" fill-opacity=\".65\"/><ellipse cx=\"1.846\" cy=\"1.864\" rx=\"1.846\" ry=\"1.864\" transform=\"matrix(1.00012 .00456 .03246 .9996 128.096 10.316)\" fill=\"#E8E6EB\" fill-opacity=\".65\"/><ellipse cx=\"1.846\" cy=\"1.864\" rx=\"1.846\" ry=\"1.864\" transform=\"matrix(1.00012 .00456 .03246 .9996 147.531 10.316)\" fill=\"#E8E6EB\" fill-opacity=\".65\"/><ellipse cx=\"1.846\" cy=\"1.864\" rx=\"1.846\" ry=\"1.864\" transform=\"matrix(1.00012 .00456 .03246 .9996 166.964 10.315)\" fill=\"#E8E6EB\" fill-opacity=\".65\"/><ellipse cx=\"1.846\" cy=\"1.864\" rx=\"1.846\" ry=\"1.864\" transform=\"matrix(1.00012 .00456 .03246 .9996 186.399 10.313)\" fill=\"#E8E6EB\" fill-opacity=\".65\"/><ellipse cx=\"1.846\" cy=\"1.864\" rx=\"1.846\" ry=\"1.864\" transform=\"matrix(1.00012 .00456 .03246 .9996 205.834 10.313)\" fill=\"#E8E6EB\" fill-opacity=\".65\"/><ellipse cx=\"1.846\" cy=\"1.864\" rx=\"1.846\" ry=\"1.864\" transform=\"matrix(1.00012 .00456 .03246 .9996 225.27 10.313)\" fill=\"#E8E6EB\" fill-opacity=\".65\"/><ellipse cx=\"1.846\" cy=\"1.864\" rx=\"1.846\" ry=\"1.864\" transform=\"matrix(1.00012 .00456 .03246 .9996 244.706 10.31)\" fill=\"#E8E6EB\" fill-opacity=\".65\"/><ellipse cx=\"1.846\" cy=\"1.864\" rx=\"1.846\" ry=\"1.864\" transform=\"matrix(1.00012 .00456 .03246 .9996 128.593 27.943)\" fill=\"#E8E6EB\" fill-opacity=\".65\"/><ellipse cx=\"1.846\" cy=\"1.864\" rx=\"1.846\" ry=\"1.864\" transform=\"matrix(1.00012 .00456 .03246 .9996 148.029 27.943)\" fill=\"#E8E6EB\" fill-opacity=\".65\"/><ellipse cx=\"1.846\" cy=\"1.864\" rx=\"1.846\" ry=\"1.864\" transform=\"matrix(1.00012 .00456 .03246 .9996 167.461 27.942)\" fill=\"#E8E6EB\" fill-opacity=\".65\"/><ellipse cx=\"1.846\" cy=\"1.864\" rx=\"1.846\" ry=\"1.864\" transform=\"matrix(1.00012 .00456 .03246 .9996 186.897 27.94)\" fill=\"#E8E6EB\" fill-opacity=\".65\"/><ellipse cx=\"1.846\" cy=\"1.864\" rx=\"1.846\" ry=\"1.864\" transform=\"matrix(1.00012 .00456 .03246 .9996 206.331 27.94)\" fill=\"#E8E6EB\" fill-opacity=\".65\"/><ellipse cx=\"1.846\" cy=\"1.864\" rx=\"1.846\" ry=\"1.864\" transform=\"matrix(1.00012 .00456 .03246 .9996 225.768 27.94)\" fill=\"#E8E6EB\" fill-opacity=\".65\"/><ellipse cx=\"1.846\" cy=\"1.864\" rx=\"1.846\" ry=\"1.864\" transform=\"matrix(1.00012 .00456 .03246 .9996 245.203 27.937)\" fill=\"#E8E6EB\" fill-opacity=\".65\"/><ellipse cx=\"1.846\" cy=\"1.864\" rx=\"1.846\" ry=\"1.864\" transform=\"matrix(1.00012 .00456 .03246 .9996 129.083 45.559)\" fill=\"#E8E6EB\" fill-opacity=\".65\"/><ellipse cx=\"1.846\" cy=\"1.864\" rx=\"1.846\" ry=\"1.864\" transform=\"matrix(1.00012 .00456 .03246 .9996 148.52 45.559)\" fill=\"#E8E6EB\" fill-opacity=\".65\"/><ellipse cx=\"1.846\" cy=\"1.864\" rx=\"1.846\" ry=\"1.864\" transform=\"matrix(1.00012 .00456 .03246 .9996 167.951 45.558)\" fill=\"#E8E6EB\" fill-opacity=\".65\"/><ellipse cx=\"1.846\" cy=\"1.864\" rx=\"1.846\" ry=\"1.864\" transform=\"matrix(1.00012 .00456 .03246 .9996 187.388 45.556)\" fill=\"#E8E6EB\" fill-opacity=\".65\"/><ellipse cx=\"1.846\" cy=\"1.864\" rx=\"1.846\" ry=\"1.864\" transform=\"matrix(1.00012 .00456 .03246 .9996 206.821 45.556)\" fill=\"#E8E6EB\" fill-opacity=\".65\"/><ellipse cx=\"1.846\" cy=\"1.864\" rx=\"1.846\" ry=\"1.864\" transform=\"matrix(1.00012 .00456 .03246 .9996 226.258 45.555)\" fill=\"#E8E6EB\" fill-opacity=\".65\"/><ellipse cx=\"1.846\" cy=\"1.864\" rx=\"1.846\" ry=\"1.864\" transform=\"matrix(1.00012 .00456 .03246 .9996 245.693 45.554)\" fill=\"#E8E6EB\" fill-opacity=\".65\"/><ellipse cx=\"1.846\" cy=\"1.864\" rx=\"1.846\" ry=\"1.864\" transform=\"matrix(1.00012 .00456 .03246 .9996 262.094 10.508)\" fill=\"#E8E6EB\" fill-opacity=\".65\"/><ellipse cx=\"1.846\" cy=\"1.864\" rx=\"1.846\" ry=\"1.864\" transform=\"matrix(1.00012 .00456 .03246 .9996 281.53 10.508)\" fill=\"#E8E6EB\" fill-opacity=\".65\"/><ellipse cx=\"1.846\" cy=\"1.864\" rx=\"1.846\" ry=\"1.864\" transform=\"matrix(1.00012 .00456 .03246 .9996 300.962 10.507)\" fill=\"#E8E6EB\" fill-opacity=\".65\"/><ellipse cx=\"1.846\" cy=\"1.864\" rx=\"1.846\" ry=\"1.864\" transform=\"matrix(1.00012 .00456 .03246 .9996 320.398 10.505)\" fill=\"#E8E6EB\" fill-opacity=\".65\"/><ellipse cx=\"1.846\" cy=\"1.864\" rx=\"1.846\" ry=\"1.864\" transform=\"matrix(1.00012 .00456 .03246 .9996 339.832 10.505)\" fill=\"#E8E6EB\" fill-opacity=\".65\"/><ellipse cx=\"1.846\" cy=\"1.864\" rx=\"1.846\" ry=\"1.864\" transform=\"matrix(1.00012 .00456 .03246 .9996 359.269 10.505)\" fill=\"#E8E6EB\" fill-opacity=\".65\"/><ellipse cx=\"1.846\" cy=\"1.864\" rx=\"1.846\" ry=\"1.864\" transform=\"matrix(1.00012 .00456 .03246 .9996 378.704 10.502)\" fill=\"#E8E6EB\" fill-opacity=\".65\"/><ellipse cx=\"1.846\" cy=\"1.864\" rx=\"1.846\" ry=\"1.864\" transform=\"matrix(1.00012 .00456 .03246 .9996 262.589 28.135)\" fill=\"#E8E6EB\" fill-opacity=\".65\"/><ellipse cx=\"1.846\" cy=\"1.864\" rx=\"1.846\" ry=\"1.864\" transform=\"matrix(1.00012 .00456 .03246 .9996 282.025 28.135)\" fill=\"#E8E6EB\" fill-opacity=\".65\"/><ellipse cx=\"1.846\" cy=\"1.864\" rx=\"1.846\" ry=\"1.864\" transform=\"matrix(1.00012 .00456 .03246 .9996 301 28)\" fill=\"#E8E6EB\" fill-opacity=\".65\"/><ellipse cx=\"1.846\" cy=\"1.864\" rx=\"1.846\" ry=\"1.864\" transform=\"matrix(1.00012 .00456 .03246 .9996 320.894 28.132)\" fill=\"#E8E6EB\" fill-opacity=\".65\"/><ellipse cx=\"1.846\" cy=\"1.864\" rx=\"1.846\" ry=\"1.864\" transform=\"matrix(1.00012 .00456 .03246 .9996 340.327 28.132)\" fill=\"#E8E6EB\" fill-opacity=\".65\"/><ellipse cx=\"1.846\" cy=\"1.864\" rx=\"1.846\" ry=\"1.864\" transform=\"matrix(1.00012 .00456 .03246 .9996 359.764 28.132)\" fill=\"#E8E6EB\" fill-opacity=\".65\"/><ellipse cx=\"1.846\" cy=\"1.864\" rx=\"1.846\" ry=\"1.864\" transform=\"matrix(1.00012 .00456 .03246 .9996 379.199 28.129)\" fill=\"#E8E6EB\" fill-opacity=\".65\"/><ellipse cx=\"1.846\" cy=\"1.864\" rx=\"1.846\" ry=\"1.864\" transform=\"matrix(1.00012 .00456 .03246 .9996 263.079 45.765)\" fill=\"#E8E6EB\" fill-opacity=\".65\"/><ellipse cx=\"1.846\" cy=\"1.864\" rx=\"1.846\" ry=\"1.864\" transform=\"matrix(1.00012 .00456 .03246 .9996 282.516 45.766)\" fill=\"#E8E6EB\" fill-opacity=\".65\"/><ellipse cx=\"1.846\" cy=\"1.864\" rx=\"1.846\" ry=\"1.864\" transform=\"matrix(1.00012 .00456 .03246 .9996 301.947 45.764)\" fill=\"#E8E6EB\" fill-opacity=\".65\"/><ellipse cx=\"1.846\" cy=\"1.864\" rx=\"1.846\" ry=\"1.864\" transform=\"matrix(1.00012 .00456 .03246 .9996 321.384 45.763)\" fill=\"#E8E6EB\" fill-opacity=\".65\"/><ellipse cx=\"1.846\" cy=\"1.864\" rx=\"1.846\" ry=\"1.864\" transform=\"matrix(1.00012 .00456 .03246 .9996 340.817 45.763)\" fill=\"#E8E6EB\" fill-opacity=\".65\"/><ellipse cx=\"1.846\" cy=\"1.864\" rx=\"1.846\" ry=\"1.864\" transform=\"matrix(1.00012 .00456 .03246 .9996 360.254 45.762)\" fill=\"#E8E6EB\" fill-opacity=\".65\"/><ellipse cx=\"1.846\" cy=\"1.864\" rx=\"1.846\" ry=\"1.864\" transform=\"matrix(1.00012 .00456 .03246 .9996 379.689 45.76)\" fill=\"#E8E6EB\" fill-opacity=\".65\"/></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zbk2n2\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xh3DCC8UM:{\"data-border\":true}},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i47qs5\",children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1oxvxpz hidden-f4gq7q\",fill:\"black\",intrinsicHeight:20,intrinsicWidth:20,svg:'<svg width=\"20\" height=\"20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10 0c.46 0 .833.373.833.833v18.334a.833.833 0 0 1-1.666 0V.833C9.167.373 9.54 0 10 0Z\" fill=\"#231E56\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M5.265 4.432a3.75 3.75 0 0 1 2.652-1.099h6.25a.833.833 0 0 1 0 1.667h-6.25a2.083 2.083 0 1 0 0 4.167h4.166a3.75 3.75 0 1 1 0 7.5H5A.833.833 0 0 1 5 15h7.083a2.083 2.083 0 1 0 0-4.167H7.917a3.75 3.75 0 0 1-2.652-6.401Z\" fill=\"#231E56\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xh3DCC8UM:{children:getLocalizedValue(\"v40\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-e4a552aa-62a5-4d12-bf71-89c8be926218, rgb(35, 30, 86))\"},children:\"Low Cost / Price\"})}),fonts:[\"Inter-Medium\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v39\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mv9g3f\",\"data-styles-preset\":\"YJiMJorRR\",children:\"Low Cost / Price\"})}),className:\"framer-zb4zmr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xh3DCC8UM:{\"data-border\":true}},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rxrra1\",children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-j74tyf hidden-f4gq7q\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M5.99 5a1 1 0 0 0-1 1v14a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1h-2a1 1 0 1 1 0-2h2a3 3 0 0 1 3 3v14a3 3 0 0 1-3 3h-12a3 3 0 0 1-3-3V6a3 3 0 0 1 3-3h2a1 1 0 1 1 0 2h-2Z\" fill=\"#231E56\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6.99 3a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2h-6a2 2 0 0 1-2-2V3Zm8 0h-6v2h6V3Z\" fill=\"#231E56\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xh3DCC8UM:{children:getLocalizedValue(\"v42\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-e4a552aa-62a5-4d12-bf71-89c8be926218, rgb(35, 30, 86))\"},children:\"Articles of Incorporation\"})}),fonts:[\"Inter-Medium\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v41\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mv9g3f\",\"data-styles-preset\":\"YJiMJorRR\",children:\"Articles of Incorporation\"})}),className:\"framer-129nit7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xh3DCC8UM:{\"data-border\":true}},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qtzxa\",children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-15l8b5a hidden-f4gq7q\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:19,intrinsicWidth:19,svg:'<svg width=\"19\" height=\"19\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4.236 4.09c0-.622.504-1.126 1.125-1.126h9.375v9.75H5.36c-.403 0-.784.091-1.125.253V4.089Zm0 11.25c0-.622.504-1.126 1.125-1.126h9.375v2.25H5.36a1.125 1.125 0 0 1-1.125-1.125Zm12-1.876V2.214a.75.75 0 0 0-.75-.75H5.36A2.625 2.625 0 0 0 2.736 4.09v11.25a2.625 2.625 0 0 0 2.625 2.625h10.125a.75.75 0 0 0 .75-.75v-3.75Z\" fill=\"#231E56\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xh3DCC8UM:{children:getLocalizedValue(\"v44\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-e4a552aa-62a5-4d12-bf71-89c8be926218, rgb(35, 30, 86))\"},children:\"Online Minute Book\"})}),fonts:[\"Inter-Medium\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v43\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mv9g3f\",\"data-styles-preset\":\"YJiMJorRR\",children:\"Online Minute Book\"})}),className:\"framer-1xn9oea\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xh3DCC8UM:{\"data-border\":true}},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6vlqnc\",children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-rwuv6q hidden-f4gq7q\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-.01 19a5 5 0 0 1 5-5h8a5 5 0 0 1 5 5v2a1 1 0 1 1-2 0v-2a3 3 0 0 0-3-3h-8a3 3 0 0 0-3 3v2a1 1 0 1 1-2 0v-2Zm4-12a5 5 0 1 1 10 0 5 5 0 0 1-10 0Zm5-3a3 3 0 1 0 0 6 3 3 0 0 0 0-6Zm10.032 10.88a1 1 0 0 1 1.218-.718 5 5 0 0 1 3.75 4.837V21a1 1 0 1 1-2 0v-2a3 3 0 0 0-2.25-2.902 1 1 0 0 1-.718-1.218ZM15.021 2.882a1 1 0 0 1 1.217-.72 5 5 0 0 1 0 9.687 1 1 0 0 1-.496-1.938 3 3 0 0 0 0-5.812 1 1 0 0 1-.72-1.217Z\" fill=\"#231E56\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xh3DCC8UM:{children:getLocalizedValue(\"v46\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-e4a552aa-62a5-4d12-bf71-89c8be926218, rgb(35, 30, 86))\"},children:\"Shareholder Management\"})}),fonts:[\"Inter-Medium\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v45\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mv9g3f\",\"data-styles-preset\":\"YJiMJorRR\",children:\"Shareholder Management\"})}),className:\"framer-1dez18e\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xh3DCC8UM:{\"data-border\":true}},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9tu3j3\",children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-58k09e hidden-f4gq7q\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.965.6h4.453c.336 0 .671.124.928.364.26.243.42.587.42.96V3.84c0 .374-.16.718-.42.96a1.36 1.36 0 0 1-.928.365h-4.453V.6Zm2 2v.564h1.8V2.6h-1.8ZM4.993 16.456c0-.84.752-1.206 1.25-1.206h1.148c.499 0 1.25.366 1.25 1.206v2.588c0 .84-.751 1.206-1.25 1.206H6.243c-.498 0-1.25-.366-1.25-1.206v-2.588Zm5.147 0c0-.84.753-1.206 1.251-1.206h1.148c.498 0 1.25.366 1.25 1.206v2.588c0 .84-.752 1.206-1.25 1.206h-1.148c-.498 0-1.25-.366-1.25-1.206v-2.588Zm5.15 0c0-.84.751-1.206 1.25-1.206h1.148c.498 0 1.25.366 1.25 1.206v2.588c0 .84-.752 1.206-1.25 1.206H16.54c-.499 0-1.25-.366-1.25-1.206v-2.588Z\" fill=\"#231E56\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.965 6.38V1.4h2v4.98h-2Z\" fill=\"#231E56\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.569 5.822a6.708 6.708 0 0 1 2.64-.438c3.553.127 6.295 3.055 6.457 6.518l.359.001h1.593a2.072 2.072 0 0 1 2.072 2.072v7.493a2.072 2.072 0 0 1-2.072 2.072H3.312a2.072 2.072 0 0 1-2.072-2.072v-7.492a2.072 2.072 0 0 1 2.072-2.073h1.59l.358-.001a6.708 6.708 0 0 1 4.309-6.08Zm2.568 1.56a4.708 4.708 0 0 0-4.88 4.706v.477a1.333 1.333 0 0 1-1.326 1.333l-1.026.005H3.312a.072.072 0 0 0-.072.072v7.493a.072.072 0 0 0 .072.072h17.306a.072.072 0 0 0 .072-.072v-7.492a.072.072 0 0 0-.072-.073H19.02L18 13.898a1.333 1.333 0 0 1-1.327-1.333v-.34c0-2.589-2.012-4.753-4.536-4.842Z\" fill=\"#231E56\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xh3DCC8UM:{children:getLocalizedValue(\"v48\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-e4a552aa-62a5-4d12-bf71-89c8be926218, rgb(35, 30, 86))\"},children:\"Ongoing Government Filing\"})}),fonts:[\"GF;Inter-500\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v47\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mv9g3f\",\"data-styles-preset\":\"YJiMJorRR\",children:\"Ongoing Government Filing\"})}),className:\"framer-1tybn9u\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xh3DCC8UM:{\"data-border\":true}},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1udqmmn\",children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-aege6d hidden-f4gq7q\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M5.99 5a1 1 0 0 0-1 1v14a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V6a1 1 0 0 0-1-1h-2a1 1 0 1 1 0-2h2a3 3 0 0 1 3 3v14a3 3 0 0 1-3 3h-12a3 3 0 0 1-3-3V6a3 3 0 0 1 3-3h2a1 1 0 1 1 0 2h-2Z\" fill=\"#231E56\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6.99 3a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v2a2 2 0 0 1-2 2h-6a2 2 0 0 1-2-2V3Zm8 0h-6v2h6V3Z\" fill=\"#231E56\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xh3DCC8UM:{children:getLocalizedValue(\"v50\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-e4a552aa-62a5-4d12-bf71-89c8be926218, rgb(35, 30, 86))\"},children:\"Company Bylaws\"})}),fonts:[\"GF;Inter-500\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v49\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mv9g3f\",\"data-styles-preset\":\"YJiMJorRR\",children:\"Company Bylaws\"})}),className:\"framer-c0nkpo\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xh3DCC8UM:{\"data-border\":true}},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fzwgsv\",children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-u0kq9b hidden-f4gq7q\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:19,intrinsicWidth:19,svg:'<svg width=\"19\" height=\"19\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1.445 1.483a.75.75 0 0 1 .897.565l.193.848h9.098a.75.75 0 0 1 .75.75v2.83h4.978a.75.75 0 0 1 .644 1.133l-1.517 2.552 1.547 3.18a.75.75 0 0 1-.674 1.078H8.054a.75.75 0 0 1-.75-.75v-2.83H4.34l1.582 6.96a.75.75 0 1 1-1.463.332L.88 2.38a.75.75 0 0 1 .566-.898Zm7.359 9.356v2.08h7.358l-1.2-2.466a.75.75 0 0 1 .03-.711l1.05-1.766h-3.659v2.113a.75.75 0 0 1-.75.75h-2.83ZM4 9.341 2.876 4.396h8.007V9.34H4.05c-.017 0-.034 0-.05.002Z\" fill=\"#231E56\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xh3DCC8UM:{children:getLocalizedValue(\"v52\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-e4a552aa-62a5-4d12-bf71-89c8be926218, rgb(35, 30, 86))\"},children:\"Complete Incorporation\"})}),fonts:[\"Inter-Medium\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v51\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mv9g3f\",\"data-styles-preset\":\"YJiMJorRR\",children:\"Complete Incorporation\"})}),className:\"framer-1ahai5o\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xh3DCC8UM:{\"data-border\":true}},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12ntunm\",children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-dghzab hidden-f4gq7q\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:19,intrinsicWidth:19,svg:'<svg width=\"19\" height=\"19\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M7.985 2.215a2.25 2.25 0 0 0-2.25 2.25v.75h-2.25a2.25 2.25 0 0 0-2.25 2.25v7.5a2.25 2.25 0 0 0 2.25 2.25h12.002a2.25 2.25 0 0 0 2.25-2.25v-7.5a2.25 2.25 0 0 0-2.25-2.25h-2.25v-.75a2.25 2.25 0 0 0-2.25-2.25h-3Zm3.75 3v-.75a.75.75 0 0 0-.75-.75h-3a.75.75 0 0 0-.75.75v.75h4.5Zm-4.5 1.5h4.5v9h-4.5v-9Zm-1.5 0h-2.25a.75.75 0 0 0-.75.75v7.5c0 .414.337.75.75.75h2.25v-9Zm7.5 9v-9h2.25a.75.75 0 0 1 .75.75v7.5a.75.75 0 0 1-.75.75h-2.25Z\" fill=\"#231E56\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xh3DCC8UM:{children:getLocalizedValue(\"v54\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-e4a552aa-62a5-4d12-bf71-89c8be926218, rgb(35, 30, 86))\"},children:\"Director Resolutions\"})}),fonts:[\"Inter-Medium\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v53\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mv9g3f\",\"data-styles-preset\":\"YJiMJorRR\",children:\"Director Resolutions\"})}),className:\"framer-u9opiy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-145yp6l\",\"data-border\":true,\"data-framer-name\":\"Ownr Stack\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-vf1t7u\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-dh2nmj\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:31,intrinsicWidth:122,svg:'<svg width=\"122\" height=\"31\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M60.074 6.959h5.754l2.877 9.462h.061L71.36 6.96h4.96l2.517 9.523h.061l2.78-9.523h5.755l-5.19 16.903h-6.031l-2.424-8.552h-.068l-2.428 8.552h-5.909L60.074 6.96Zm34.727 2.158h.09c1.331-1.86 3.046-2.877 5.37-2.877 3.862 0 5.848 2.625 5.848 6.56v11.062h-6.197v-9.516c0-1.77-.72-2.92-2.323-2.92-1.604 0-2.518 1.392-2.518 3.237v9.2h-6.225V6.778h5.89v2.338h.065Zm20.191.384h.108c1.676-2.424 3.132-2.992 5.833-2.877a2.16 2.16 0 0 1 1.029.176v5.312h-.155c-4.258-.87-6.513 1.025-6.513 4.838v6.912h-6.308V6.959h5.956v2.553h.039l.011-.01ZM50.914 6.24a9.171 9.171 0 1 0-.022 18.342 9.171 9.171 0 0 0 .022-18.342Zm0 13.058a3.889 3.889 0 0 1-.749-7.7 3.888 3.888 0 0 1 4.644 3.813 3.876 3.876 0 0 1-3.895 3.888ZM6.055 26.782A10.696 10.696 0 0 1 2.1 12.263a10.505 10.505 0 0 1 14.458-3.815L6.055 26.782Z\" fill=\"#fff\"/><path d=\"M12.6 1.564a10.505 10.505 0 0 1 14.43 3.812 10.7 10.7 0 0 1-3.928 14.53L12.601 1.564Zm18.609 18.342a10.61 10.61 0 0 1-21.22 0h21.22Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pvhiwt\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xh3DCC8UM:{\"data-border\":true}},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-nbes5r\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-asojbn\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect x=\".257\" y=\".257\" width=\"23.486\" height=\"23.486\" rx=\"11.743\" fill=\"#19B48F\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M11.58 1.99a9.59 9.59 0 1 0 0 19.18 9.59 9.59 0 0 0 0-19.18ZM.033 11.58C.033 5.203 5.203.033 11.58.033c6.377 0 11.547 5.17 11.547 11.547 0 6.377-5.17 11.547-11.547 11.547-6.377 0-11.547-5.17-11.547-11.547Z\" fill=\"#19B48F\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"m14.273 8.4-3.867 3.867-1.518-1.518a1.173 1.173 0 1 0-1.66 1.66l2.348 2.349a1.171 1.171 0 0 0 1.66 0l4.698-4.697a1.173 1.173 0 1 0-1.66-1.66Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xh3DCC8UM:{\"data-border\":true}},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fdjvom\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-21t5l4\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect x=\".257\" y=\".257\" width=\"23.486\" height=\"23.486\" rx=\"11.743\" fill=\"#19B48F\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M11.58 1.99a9.59 9.59 0 1 0 0 19.18 9.59 9.59 0 0 0 0-19.18ZM.033 11.58C.033 5.203 5.203.033 11.58.033c6.377 0 11.547 5.17 11.547 11.547 0 6.377-5.17 11.547-11.547 11.547-6.377 0-11.547-5.17-11.547-11.547Z\" fill=\"#19B48F\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"m14.273 8.4-3.867 3.867-1.518-1.518a1.173 1.173 0 1 0-1.66 1.66l2.348 2.349a1.171 1.171 0 0 0 1.66 0l4.698-4.697a1.173 1.173 0 1 0-1.66-1.66Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xh3DCC8UM:{\"data-border\":true}},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1waq9lf\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-111yrbe\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect x=\".257\" y=\".257\" width=\"23.486\" height=\"23.486\" rx=\"11.743\" fill=\"#19B48F\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M11.58 1.99a9.59 9.59 0 1 0 0 19.18 9.59 9.59 0 0 0 0-19.18ZM.033 11.58C.033 5.203 5.203.033 11.58.033c6.377 0 11.547 5.17 11.547 11.547 0 6.377-5.17 11.547-11.547 11.547-6.377 0-11.547-5.17-11.547-11.547Z\" fill=\"#19B48F\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"m14.273 8.4-3.867 3.867-1.518-1.518a1.173 1.173 0 1 0-1.66 1.66l2.348 2.349a1.171 1.171 0 0 0 1.66 0l4.698-4.697a1.173 1.173 0 1 0-1.66-1.66Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xh3DCC8UM:{\"data-border\":true}},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-10knhnh\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-tj8zh7\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect x=\".257\" y=\".257\" width=\"23.486\" height=\"23.486\" rx=\"11.743\" fill=\"#19B48F\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M11.58 1.99a9.59 9.59 0 1 0 0 19.18 9.59 9.59 0 0 0 0-19.18ZM.033 11.58C.033 5.203 5.203.033 11.58.033c6.377 0 11.547 5.17 11.547 11.547 0 6.377-5.17 11.547-11.547 11.547-6.377 0-11.547-5.17-11.547-11.547Z\" fill=\"#19B48F\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"m14.273 8.4-3.867 3.867-1.518-1.518a1.173 1.173 0 1 0-1.66 1.66l2.348 2.349a1.171 1.171 0 0 0 1.66 0l4.698-4.697a1.173 1.173 0 1 0-1.66-1.66Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xh3DCC8UM:{\"data-border\":true}},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-eqfjm7\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-19i709j\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect x=\".257\" y=\".257\" width=\"23.486\" height=\"23.486\" rx=\"11.743\" fill=\"#19B48F\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M11.58 1.99a9.59 9.59 0 1 0 0 19.18 9.59 9.59 0 0 0 0-19.18ZM.033 11.58C.033 5.203 5.203.033 11.58.033c6.377 0 11.547 5.17 11.547 11.547 0 6.377-5.17 11.547-11.547 11.547-6.377 0-11.547-5.17-11.547-11.547Z\" fill=\"#19B48F\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"m14.273 8.4-3.867 3.867-1.518-1.518a1.173 1.173 0 1 0-1.66 1.66l2.348 2.349a1.171 1.171 0 0 0 1.66 0l4.698-4.697a1.173 1.173 0 1 0-1.66-1.66Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xh3DCC8UM:{\"data-border\":true}},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-wcsmfo\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1f3kd6m\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect x=\".257\" y=\".257\" width=\"23.486\" height=\"23.486\" rx=\"11.743\" fill=\"#19B48F\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M11.58 1.99a9.59 9.59 0 1 0 0 19.18 9.59 9.59 0 0 0 0-19.18ZM.033 11.58C.033 5.203 5.203.033 11.58.033c6.377 0 11.547 5.17 11.547 11.547 0 6.377-5.17 11.547-11.547 11.547-6.377 0-11.547-5.17-11.547-11.547Z\" fill=\"#19B48F\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"m14.273 8.4-3.867 3.867-1.518-1.518a1.173 1.173 0 1 0-1.66 1.66l2.348 2.349a1.171 1.171 0 0 0 1.66 0l4.698-4.697a1.173 1.173 0 1 0-1.66-1.66Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xh3DCC8UM:{\"data-border\":true}},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-i84t8u\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-yge0yg\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect x=\".257\" y=\".257\" width=\"23.486\" height=\"23.486\" rx=\"11.743\" fill=\"#19B48F\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M11.58 1.99a9.59 9.59 0 1 0 0 19.18 9.59 9.59 0 0 0 0-19.18ZM.033 11.58C.033 5.203 5.203.033 11.58.033c6.377 0 11.547 5.17 11.547 11.547 0 6.377-5.17 11.547-11.547 11.547-6.377 0-11.547-5.17-11.547-11.547Z\" fill=\"#19B48F\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"m14.273 8.4-3.867 3.867-1.518-1.518a1.173 1.173 0 1 0-1.66 1.66l2.348 2.349a1.171 1.171 0 0 0 1.66 0l4.698-4.697a1.173 1.173 0 1 0-1.66-1.66Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xh3DCC8UM:{\"data-border\":true}},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-7zmz19\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-10d257h\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect x=\".257\" y=\".257\" width=\"23.486\" height=\"23.486\" rx=\"11.743\" fill=\"#19B48F\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M11.58 1.99a9.59 9.59 0 1 0 0 19.18 9.59 9.59 0 0 0 0-19.18ZM.033 11.58C.033 5.203 5.203.033 11.58.033c6.377 0 11.547 5.17 11.547 11.547 0 6.377-5.17 11.547-11.547 11.547-6.377 0-11.547-5.17-11.547-11.547Z\" fill=\"#19B48F\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"m14.273 8.4-3.867 3.867-1.518-1.518a1.173 1.173 0 1 0-1.66 1.66l2.348 2.349a1.171 1.171 0 0 0 1.66 0l4.698-4.697a1.173 1.173 0 1 0-1.66-1.66Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1s4rl2n hidden-f4gq7q\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n2l5zk\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-xn51f\",\"data-border\":true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xh3DCC8UM:{children:getLocalizedValue(\"v56\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtYm9sZA==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-e4a552aa-62a5-4d12-bf71-89c8be926218, rgb(35, 30, 86))\"},children:\"Government\"})}),fonts:[\"FS;Plus Jakarta Sans-bold\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v55\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-fesehh\",\"data-styles-preset\":\"anypUxJuc\",style:{\"--framer-text-alignment\":\"center\"},children:\"Government\"})}),className:\"framer-14dgwle\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-66u5ge\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-106fk55\",\"data-border\":true,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1by41u4\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:25,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.193 3.124a9.59 9.59 0 1 0 0 19.18 9.59 9.59 0 0 0 0-19.18ZM.646 12.714c0-6.377 5.17-11.547 11.547-11.547 6.377 0 11.547 5.17 11.547 11.547 0 6.377-5.17 11.547-11.547 11.547-6.378 0-11.547-5.17-11.547-11.547Z\" fill=\"#19B48F\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"m14.885 9.536-3.867 3.866-1.519-1.518a1.173 1.173 0 1 0-1.66 1.66l2.349 2.35a1.17 1.17 0 0 0 1.66 0l4.697-4.698a1.173 1.173 0 1 0-1.66-1.66Z\" fill=\"#19B48F\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-h7ysvy\",\"data-border\":true,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1xn34lb\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:25,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.193 3.124a9.59 9.59 0 1 0 0 19.18 9.59 9.59 0 0 0 0-19.18ZM.646 12.714c0-6.377 5.17-11.547 11.547-11.547 6.377 0 11.547 5.17 11.547 11.547 0 6.377-5.17 11.547-11.547 11.547-6.378 0-11.547-5.17-11.547-11.547Z\" fill=\"#19B48F\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"m14.885 9.536-3.867 3.866-1.519-1.518a1.173 1.173 0 1 0-1.66 1.66l2.349 2.35a1.17 1.17 0 0 0 1.66 0l4.697-4.698a1.173 1.173 0 1 0-1.66-1.66Z\" fill=\"#19B48F\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-zjzh46\",\"data-border\":true,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-dov2oq\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1.257 11.986c0-5.945 4.82-10.765 10.765-10.765s10.764 4.82 10.764 10.764c0 5.945-4.82 10.765-10.764 10.765-5.945 0-10.765-4.82-10.765-10.764Zm10.765-8.808a8.807 8.807 0 1 0 0 17.615 8.807 8.807 0 0 0 0-17.615Z\" fill=\"#E26565\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.65 8.358a.979.979 0 0 1 0 1.384l-5.872 5.871a.978.978 0 1 1-1.384-1.384l5.871-5.871a.979.979 0 0 1 1.384 0Z\" fill=\"#E26565\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.394 8.358a.979.979 0 0 1 1.384 0l5.871 5.871a.979.979 0 0 1-1.384 1.384L8.394 9.742a.979.979 0 0 1 0-1.384Z\" fill=\"#E26565\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-nr3bs0\",\"data-border\":true,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-17t73ut\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1.257 11.986c0-5.945 4.82-10.765 10.765-10.765s10.764 4.82 10.764 10.764c0 5.945-4.82 10.765-10.764 10.765-5.945 0-10.765-4.82-10.765-10.764Zm10.765-8.808a8.807 8.807 0 1 0 0 17.615 8.807 8.807 0 0 0 0-17.615Z\" fill=\"#E26565\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.65 8.358a.979.979 0 0 1 0 1.384l-5.872 5.871a.978.978 0 1 1-1.384-1.384l5.871-5.871a.979.979 0 0 1 1.384 0Z\" fill=\"#E26565\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.394 8.358a.979.979 0 0 1 1.384 0l5.871 5.871a.979.979 0 0 1-1.384 1.384L8.394 9.742a.979.979 0 0 1 0-1.384Z\" fill=\"#E26565\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hehuu0\",\"data-border\":true,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-4zqo19\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1.257 11.986c0-5.945 4.82-10.765 10.765-10.765s10.764 4.82 10.764 10.764c0 5.945-4.82 10.765-10.764 10.765-5.945 0-10.765-4.82-10.765-10.764Zm10.765-8.808a8.807 8.807 0 1 0 0 17.615 8.807 8.807 0 0 0 0-17.615Z\" fill=\"#E26565\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.65 8.358a.979.979 0 0 1 0 1.384l-5.872 5.871a.978.978 0 1 1-1.384-1.384l5.871-5.871a.979.979 0 0 1 1.384 0Z\" fill=\"#E26565\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.394 8.358a.979.979 0 0 1 1.384 0l5.871 5.871a.979.979 0 0 1-1.384 1.384L8.394 9.742a.979.979 0 0 1 0-1.384Z\" fill=\"#E26565\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1l0q9n0\",\"data-border\":true,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1fh4j9a\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1.257 11.986c0-5.945 4.82-10.765 10.765-10.765s10.764 4.82 10.764 10.764c0 5.945-4.82 10.765-10.764 10.765-5.945 0-10.765-4.82-10.765-10.764Zm10.765-8.808a8.807 8.807 0 1 0 0 17.615 8.807 8.807 0 0 0 0-17.615Z\" fill=\"#E26565\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.65 8.358a.979.979 0 0 1 0 1.384l-5.872 5.871a.978.978 0 1 1-1.384-1.384l5.871-5.871a.979.979 0 0 1 1.384 0Z\" fill=\"#E26565\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.394 8.358a.979.979 0 0 1 1.384 0l5.871 5.871a.979.979 0 0 1-1.384 1.384L8.394 9.742a.979.979 0 0 1 0-1.384Z\" fill=\"#E26565\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ah2o0r\",\"data-border\":true,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-xuicfc\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1.257 11.986c0-5.945 4.82-10.765 10.765-10.765s10.764 4.82 10.764 10.764c0 5.945-4.82 10.765-10.764 10.765-5.945 0-10.765-4.82-10.765-10.764Zm10.765-8.808a8.807 8.807 0 1 0 0 17.615 8.807 8.807 0 0 0 0-17.615Z\" fill=\"#E26565\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.65 8.358a.979.979 0 0 1 0 1.384l-5.872 5.871a.978.978 0 1 1-1.384-1.384l5.871-5.871a.979.979 0 0 1 1.384 0Z\" fill=\"#E26565\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.394 8.358a.979.979 0 0 1 1.384 0l5.871 5.871a.979.979 0 0 1-1.384 1.384L8.394 9.742a.979.979 0 0 1 0-1.384Z\" fill=\"#E26565\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bfx24k\",\"data-border\":true,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-elzc94\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1.257 11.986c0-5.945 4.82-10.765 10.765-10.765s10.764 4.82 10.764 10.764c0 5.945-4.82 10.765-10.764 10.765-5.945 0-10.765-4.82-10.765-10.764Zm10.765-8.808a8.807 8.807 0 1 0 0 17.615 8.807 8.807 0 0 0 0-17.615Z\" fill=\"#E26565\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.65 8.358a.979.979 0 0 1 0 1.384l-5.872 5.871a.978.978 0 1 1-1.384-1.384l5.871-5.871a.979.979 0 0 1 1.384 0Z\" fill=\"#E26565\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.394 8.358a.979.979 0 0 1 1.384 0l5.871 5.871a.979.979 0 0 1-1.384 1.384L8.394 9.742a.979.979 0 0 1 0-1.384Z\" fill=\"#E26565\"/></svg>',withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vjxef6\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-18ffox5\",\"data-border\":true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xh3DCC8UM:{children:getLocalizedValue(\"v58\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"RlM7UGx1cyBKYWthcnRhIFNhbnMtYm9sZA==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-e4a552aa-62a5-4d12-bf71-89c8be926218, rgb(35, 30, 86))\"},children:\"Lawyer / Accountant\"})}),fonts:[\"FS;Plus Jakarta Sans-bold\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v57\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-fesehh\",\"data-styles-preset\":\"anypUxJuc\",style:{\"--framer-text-alignment\":\"center\"},children:\"Lawyer / Accountant\"})}),className:\"framer-shzrhk\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vehtvn\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xh3DCC8UM:{\"data-border\":true}},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-rz3d7t\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1er80td\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1.257 11.986c0-5.945 4.82-10.765 10.765-10.765s10.764 4.82 10.764 10.764c0 5.945-4.82 10.765-10.764 10.765-5.945 0-10.765-4.82-10.765-10.764Zm10.765-8.808a8.807 8.807 0 1 0 0 17.615 8.807 8.807 0 0 0 0-17.615Z\" fill=\"#E26565\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.65 8.358a.979.979 0 0 1 0 1.384l-5.872 5.871a.978.978 0 1 1-1.384-1.384l5.871-5.871a.979.979 0 0 1 1.384 0Z\" fill=\"#E26565\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.394 8.358a.979.979 0 0 1 1.384 0l5.871 5.871a.979.979 0 0 1-1.384 1.384L8.394 9.742a.979.979 0 0 1 0-1.384Z\" fill=\"#E26565\"/></svg>',withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xh3DCC8UM:{\"data-border\":true}},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tv7ifu\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ubcr94\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1.257 11.986c0-5.945 4.82-10.765 10.765-10.765s10.764 4.82 10.764 10.764c0 5.945-4.82 10.765-10.764 10.765-5.945 0-10.765-4.82-10.765-10.764Zm10.765-8.808a8.807 8.807 0 1 0 0 17.615 8.807 8.807 0 0 0 0-17.615Z\" fill=\"#E26565\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.65 8.358a.979.979 0 0 1 0 1.384l-5.872 5.871a.978.978 0 1 1-1.384-1.384l5.871-5.871a.979.979 0 0 1 1.384 0Z\" fill=\"#E26565\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.394 8.358a.979.979 0 0 1 1.384 0l5.871 5.871a.979.979 0 0 1-1.384 1.384L8.394 9.742a.979.979 0 0 1 0-1.384Z\" fill=\"#E26565\"/></svg>',withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xh3DCC8UM:{\"data-border\":true}},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-uw0ue8\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-d8623s\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1.257 11.986c0-5.945 4.82-10.765 10.765-10.765s10.764 4.82 10.764 10.764c0 5.945-4.82 10.765-10.764 10.765-5.945 0-10.765-4.82-10.765-10.764Zm10.765-8.808a8.807 8.807 0 1 0 0 17.615 8.807 8.807 0 0 0 0-17.615Z\" fill=\"#E26565\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.65 8.358a.979.979 0 0 1 0 1.384l-5.872 5.871a.978.978 0 1 1-1.384-1.384l5.871-5.871a.979.979 0 0 1 1.384 0Z\" fill=\"#E26565\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.394 8.358a.979.979 0 0 1 1.384 0l5.871 5.871a.979.979 0 0 1-1.384 1.384L8.394 9.742a.979.979 0 0 1 0-1.384Z\" fill=\"#E26565\"/></svg>',withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xh3DCC8UM:{\"data-border\":true}},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ltk5dd\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1fhn8zj\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:25,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.193 3.124a9.59 9.59 0 1 0 0 19.18 9.59 9.59 0 0 0 0-19.18ZM.646 12.714c0-6.377 5.17-11.547 11.547-11.547 6.377 0 11.547 5.17 11.547 11.547 0 6.377-5.17 11.547-11.547 11.547-6.378 0-11.547-5.17-11.547-11.547Z\" fill=\"#19B48F\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"m14.885 9.536-3.867 3.866-1.519-1.518a1.173 1.173 0 1 0-1.66 1.66l2.349 2.35a1.17 1.17 0 0 0 1.66 0l4.697-4.698a1.173 1.173 0 1 0-1.66-1.66Z\" fill=\"#19B48F\"/></svg>',withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xh3DCC8UM:{\"data-border\":true}},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lwwkqc\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-61bpno\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:25,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.193 3.124a9.59 9.59 0 1 0 0 19.18 9.59 9.59 0 0 0 0-19.18ZM.646 12.714c0-6.377 5.17-11.547 11.547-11.547 6.377 0 11.547 5.17 11.547 11.547 0 6.377-5.17 11.547-11.547 11.547-6.378 0-11.547-5.17-11.547-11.547Z\" fill=\"#19B48F\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"m14.885 9.536-3.867 3.866-1.519-1.518a1.173 1.173 0 1 0-1.66 1.66l2.349 2.35a1.17 1.17 0 0 0 1.66 0l4.697-4.698a1.173 1.173 0 1 0-1.66-1.66Z\" fill=\"#19B48F\"/></svg>',withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xh3DCC8UM:{\"data-border\":true}},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1c8aopo\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1vlhn1e\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:25,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.193 3.124a9.59 9.59 0 1 0 0 19.18 9.59 9.59 0 0 0 0-19.18ZM.646 12.714c0-6.377 5.17-11.547 11.547-11.547 6.377 0 11.547 5.17 11.547 11.547 0 6.377-5.17 11.547-11.547 11.547-6.378 0-11.547-5.17-11.547-11.547Z\" fill=\"#19B48F\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"m14.885 9.536-3.867 3.866-1.519-1.518a1.173 1.173 0 1 0-1.66 1.66l2.349 2.35a1.17 1.17 0 0 0 1.66 0l4.697-4.698a1.173 1.173 0 1 0-1.66-1.66Z\" fill=\"#19B48F\"/></svg>',withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xh3DCC8UM:{\"data-border\":true}},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ybxx8i\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-38y0ln\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:25,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.193 3.124a9.59 9.59 0 1 0 0 19.18 9.59 9.59 0 0 0 0-19.18ZM.646 12.714c0-6.377 5.17-11.547 11.547-11.547 6.377 0 11.547 5.17 11.547 11.547 0 6.377-5.17 11.547-11.547 11.547-6.378 0-11.547-5.17-11.547-11.547Z\" fill=\"#19B48F\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"m14.885 9.536-3.867 3.866-1.519-1.518a1.173 1.173 0 1 0-1.66 1.66l2.349 2.35a1.17 1.17 0 0 0 1.66 0l4.697-4.698a1.173 1.173 0 1 0-1.66-1.66Z\" fill=\"#19B48F\"/></svg>',withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xh3DCC8UM:{\"data-border\":true}},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-hi79rk\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-15pi7az\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:25,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M12.193 3.124a9.59 9.59 0 1 0 0 19.18 9.59 9.59 0 0 0 0-19.18ZM.646 12.714c0-6.377 5.17-11.547 11.547-11.547 6.377 0 11.547 5.17 11.547 11.547 0 6.377-5.17 11.547-11.547 11.547-6.378 0-11.547-5.17-11.547-11.547Z\" fill=\"#19B48F\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"m14.885 9.536-3.867 3.866-1.519-1.518a1.173 1.173 0 1 0-1.66 1.66l2.349 2.35a1.17 1.17 0 0 0 1.66 0l4.697-4.698a1.173 1.173 0 1 0-1.66-1.66Z\" fill=\"#19B48F\"/></svg>',withExternalLayout:true})})})]})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ld26uu\",\"data-framer-name\":\"Pricing\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:386,pixelWidth:2880,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/cya3nqvmd7RAtiJC6JG3BN2WJ4.png\",srcSet:\"https://framerusercontent.com/images/cya3nqvmd7RAtiJC6JG3BN2WJ4.png?scale-down-to=512 512w,https://framerusercontent.com/images/cya3nqvmd7RAtiJC6JG3BN2WJ4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/cya3nqvmd7RAtiJC6JG3BN2WJ4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/cya3nqvmd7RAtiJC6JG3BN2WJ4.png 2880w\"},className:\"framer-vnioq3\",\"data-framer-name\":\"Graphic\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8qvwok\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qb1ibf\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-xv14zg\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1utiva6-container\",nodeId:\"AiNO7oUmq\",scopeId:\"k3sz8CTXO\",children:/*#__PURE__*/_jsx(Pill,{e5KZkPk6L:\"var(--token-fd6d18e2-f769-44a0-8ce3-bd764d176b28, rgb(57, 27, 147))\",h9nZbCkbW:\"rgb(255, 255, 255)\",height:\"100%\",id:\"AiNO7oUmq\",jKNIyP3WP:\"0px 4px 8px 0px rgba(37, 22, 125, 0.05)\",layoutId:\"AiNO7oUmq\",OKJXJE54m:{borderColor:\"var(--token-170e6570-679e-4a3b-8261-0290dd0d284f, rgb(95, 61, 200))\",borderStyle:\"solid\",borderWidth:.5},QFoy3BvrC:getLocalizedValue(\"v59\",activeLocale)??\"Pricing\",sp1vPSCpF:\"var(--token-170e6570-679e-4a3b-8261-0290dd0d284f, rgb(95, 61, 200))\",t_Z_vMXmV:\"CurrencyDollar\",variant:\"a3nu6UJMj\",width:\"100%\",yza3a5i8l:true})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c1rjELC96:{width:`min(max(min(${componentViewport?.width||\"100vw\"} - 128px, 1240px), 368px), 1024px)`},Gm4IiVboT:{width:`min(max(min(${componentViewport?.width||\"100vw\"} - 64px, 1240px), 368px), 1024px)`},syu6cCCcY:{width:`min(max(min(${componentViewport?.width||\"100vw\"} - 80px, 1240px), 368px), 1024px)`},Xh3DCC8UM:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1240px), 1024px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1179,width:`min(max(min(${componentViewport?.width||\"100vw\"} - 208px, 1240px), 368px), 1024px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-68pq9o-container\",nodeId:\"BOPOGTOhm\",scopeId:\"k3sz8CTXO\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Gm4IiVboT:{variant:\"S8q44FiUF\"},syu6cCCcY:{variant:\"S8q44FiUF\"},Xh3DCC8UM:{variant:\"FwMXWEKUA\"}},children:/*#__PURE__*/_jsx(PricingCards,{eaBrS6Xjk:\"homepage-pricing-ombp-rbc-link\",GpgCzcMPI:\"homepage-pricing-sp-rbc-link\",height:\"100%\",hVJCOo4hg:\"homepage-pricing-mcp-cta\",id:\"BOPOGTOhm\",IgnRRn5Bm:\"homepage-pricing-sp-pagelink-cta\",layoutId:\"BOPOGTOhm\",mPcEgbGCu:\"homepage-pricing-mcp-rbc-link\",NpOBim1bv:\"homepage-pricing-sp-cta\",PoYmWljDI:\"homepage-pricing-ombp-cta\",QDGgOKrgl:\"homepage-pricing-mcp-pagelink-cta\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"AqGyEgCGu\",width:\"100%\",Z_O1W8IYp:\"homepage-pricing-ombp-pagelink-cta\"})})})})})]})}),visible&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2gq231\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-mlmb03-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"GcV1opehk\",scopeId:\"k3sz8CTXO\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:12,bottomLeftRadius:12,bottomRightRadius:12,height:\"100%\",id:\"GcV1opehk\",isMixedBorderRadius:false,isRed:false,layoutId:\"GcV1opehk\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:12,topRightRadius:12,url:\"https://www.youtube.com/watch?v=jiqkbI9Y_JA\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s9xs48\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-em9yzg\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v60\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-6ezwb6\",\"data-styles-preset\":\"cseSXmtw8\",style:{\"--framer-text-alignment\":\"left\"},children:[\"Not sure \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-170e6570-679e-4a3b-8261-0290dd0d284f, rgb(95, 61, 200))\"},children:\"Incorporation\"}),\" is right for you?\"]})}),className:\"framer-mty2rj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v61\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qiwde8\",\"data-styles-preset\":\"SMVMOBXNq\",children:\"Take our quiz to find out which business structure is right for you: a sole proprietorship or corporation?\"})}),className:\"framer-49oqg4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jhu39w\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wgdwff\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xh3DCC8UM:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1024px) - 32px, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(Container,{className:\"framer-2hk9rd-container\",nodeId:\"Ap1RiNh3u\",rendersWithMotion:true,scopeId:\"k3sz8CTXO\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xh3DCC8UM:{style:{width:\"100%\"},variant:\"IepsDFXC5\"}},children:/*#__PURE__*/_jsx(ButtonWithTrackingOnClick2hk9rdWithMappedReactProps1v1ipky,{CIx07aqhO:true,Cu4D0_EOi:\"edit-2\",gDxUiWVA2:\"home\",gtBTPu_hO:\"homepage-pricing-quiz-cta\",HagJtdLM9:false,height:\"100%\",i8NEUhQou:\"button-click\",ibf40tJYv:getLocalizedValue(\"v62\",activeLocale)??\"Take the Quiz\",id:\"Ap1RiNh3u\",kNVuXmein:false,layoutId:\"Ap1RiNh3u\",nu83Zx0Mn:\"https://ownrsurvey.typeform.com/bizregquiz\",variant:\"zGB7vs8To\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xh3DCC8UM:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1024px) - 32px, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dkovp5-container\",nodeId:\"F15ssZ8qT\",rendersWithMotion:true,scopeId:\"k3sz8CTXO\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xh3DCC8UM:{style:{width:\"100%\"},variant:\"lBvUI4Ufj\"}},children:/*#__PURE__*/_jsx(ButtonWithTrackingOnClick1dkovp5WithMappedReactProps1v1ipky,{CIx07aqhO:true,Cu4D0_EOi:\"align-left\",gDxUiWVA2:\"corner-right-down\",gtBTPu_hO:\"homepage-pricing-article-cta\",HagJtdLM9:true,height:\"100%\",i8NEUhQou:\"button-click\",ibf40tJYv:getLocalizedValue(\"v63\",activeLocale)??\"Read Article\",id:\"F15ssZ8qT\",kNVuXmein:false,layoutId:\"F15ssZ8qT\",nu83Zx0Mn:\"https://www.ownr.co/blog/a-guide-what-to-consider-when-incorporating-your-business/\",variant:\"eDi_wdAh5\",width:\"100%\"})})})})})]})})]})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-3p81bd\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:1,intrinsicWidth:1440,svg:'<svg width=\"1440\" height=\"1\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path stroke=\"url(#a)\" d=\"M0 .5h1440\"/><defs><linearGradient id=\"a\" x1=\"0\" y1=\"1.5\" x2=\"1440\" y2=\"1.5\" gradientUnits=\"userSpaceOnUse\"><stop offset=\".198\" stop-color=\"#5F3DC8\" stop-opacity=\"0\"/><stop offset=\".505\" stop-color=\"#5F3DC8\" stop-opacity=\".41\"/><stop offset=\".777\" stop-color=\"#5F3DC8\" stop-opacity=\"0\"/></linearGradient></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-hom9z4\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:1,intrinsicWidth:1440,svg:'<svg width=\"1440\" height=\"1\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path stroke=\"url(#a)\" d=\"M0 .5h1440\"/><defs><linearGradient id=\"a\" x1=\"0\" y1=\"1.5\" x2=\"1440\" y2=\"1.5\" gradientUnits=\"userSpaceOnUse\"><stop offset=\".198\" stop-color=\"#5F3DC8\" stop-opacity=\"0\"/><stop offset=\".505\" stop-color=\"#5F3DC8\" stop-opacity=\".41\"/><stop offset=\".777\" stop-color=\"#5F3DC8\" stop-opacity=\"0\"/></linearGradient></defs></svg>',withExternalLayout:true})]}),visible&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q1ka5a\",\"data-framer-name\":\"blueprint\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-pa92qk\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:145,intrinsicWidth:1440,svg:'<svg width=\"1440\" height=\"145\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g opacity=\".1\"><path d=\"M1122.92-41.61c0 24.572-10.02 48.138-27.85 65.513-17.83 17.376-42.01 27.137-67.22 27.137v-92.65h95.07ZM-18.224 144.059V51.464h95.01a97.167 97.167 0 0 0-36.358 7.049C28.9 63.166 18.426 69.987 9.604 78.585.78 87.183-6.217 97.39-10.992 108.625a90.554 90.554 0 0 0-7.232 35.434Z\" fill=\"#D5E8FF\"/><path d=\"M-18.224 144.059c0-24.557 10.01-48.11 27.828-65.474 17.818-17.365 41.984-27.12 67.183-27.12v92.594h-95.011Z\" fill=\"#97C1F1\"/><path d=\"M76.774 51.477H-18.21v-92.59a90.512 90.512 0 0 0 7.222 35.43C-6.218 5.552.778 15.759 9.599 24.358c8.82 8.598 19.293 15.418 30.819 20.072a97.149 97.149 0 0 0 36.356 7.048Z\" fill=\"#3484DF\"/><path d=\"M171.767 144.059c-25.193-.008-49.352-9.767-67.163-27.131S76.787 76.017 76.787 51.464h94.98v92.595Z\" fill=\"#97C1F1\"/><path d=\"M171.767 144.059h-94.98V51.464c0 24.553 10.006 48.1 27.817 65.464 17.811 17.364 41.97 27.123 67.163 27.131Z\" fill=\"#D5E8FF\"/><path d=\"M76.786 51.464a90.526 90.526 0 0 1 7.23-35.423C88.79 4.81 95.786-5.394 104.605-13.99c8.82-8.596 19.29-15.415 30.814-20.066a97.132 97.132 0 0 1 36.347-7.047v92.566h-94.98Z\" fill=\"#97C1F1\"/><path d=\"M171.766 144.059V51.464h95.011c-25.198 0-49.365 9.756-67.183 27.12-17.818 17.366-27.828 40.918-27.828 65.475Z\" fill=\"#D5E8FF\"/><path d=\"M171.766 144.059c0-24.557 10.01-48.11 27.828-65.474 17.818-17.365 41.985-27.12 67.183-27.12v92.594h-95.011Z\" fill=\"#D5E8FF\"/><path d=\"M266.778 51.464h-95.011v-92.566c.009 24.553 10.022 48.097 27.839 65.456 17.818 17.358 41.979 27.11 67.172 27.11Z\" fill=\"#3484DF\"/><path d=\"M266.778 51.464c-25.193 0-49.354-9.752-67.172-27.11-17.817-17.359-27.83-40.903-27.839-65.456h95.011v92.566Z\" fill=\"#97C1F1\"/><path d=\"M266.768 51.464a97.133 97.133 0 0 1 36.354 7.05c11.526 4.653 21.997 11.474 30.818 20.073 8.82 8.598 15.815 18.806 20.587 30.04a90.533 90.533 0 0 1 7.221 35.432h-94.98V51.464Z\" fill=\"#D5E8FF\"/><path d=\"M266.768 51.464h95.01v92.595a90.516 90.516 0 0 0-7.224-35.439c-4.773-11.236-11.771-21.445-20.595-30.044-8.823-8.599-19.299-15.42-30.828-20.071a97.131 97.131 0 0 0-36.363-7.04Z\" fill=\"#D5E8FF\"/><path d=\"M361.778-41.102v92.566h-94.98c25.191 0 49.349-9.753 67.161-27.112 17.813-17.36 27.819-40.904 27.819-65.454Z\" fill=\"#3484DF\"/><path d=\"M361.778-41.102c0 24.55-10.006 48.095-27.819 65.454-17.812 17.36-41.97 27.112-67.161 27.112v-92.566h94.98Zm.001 185.161V51.464h94.98c-25.193.008-49.351 9.767-67.163 27.132-17.811 17.364-27.817 40.911-27.817 65.463Zm94.98-92.595h-94.98v-92.566c.009 24.548 10.018 48.088 27.828 65.445 17.811 17.358 41.965 27.113 67.152 27.12Z\" fill=\"#97C1F1\"/><path d=\"M361.78 144.059c0-24.557 10.01-48.11 27.828-65.474 17.818-17.365 41.985-27.12 67.183-27.12v92.594H361.78Z\" fill=\"#3484DF\"/><path d=\"M457.299 51.483h95.015v92.56a90.5 90.5 0 0 0-7.233-35.428c-4.775-11.232-11.775-21.437-20.598-30.032-8.823-8.596-19.298-15.413-30.826-20.063a97.146 97.146 0 0 0-36.358-7.037Z\" fill=\"#D5E8FF\"/><path d=\"M456.595 51.483a97.146 97.146 0 0 1 36.358 7.037c11.528 4.65 22.002 11.467 30.826 20.063 8.823 8.595 15.823 18.8 20.598 30.032a90.5 90.5 0 0 1 7.233 35.428h-95.015v-92.56Z\" fill=\"#3484DF\"/><path d=\"M552.297-41.102v92.566h-94.98c25.19 0 49.349-9.753 67.161-27.112 17.812-17.36 27.819-40.904 27.819-65.454Z\" fill=\"#97C1F1\"/><path d=\"M552.421 144.059V51.464h95.011a97.166 97.166 0 0 0-36.359 7.049c-11.528 4.653-22.002 11.474-30.824 20.072-8.823 8.598-15.821 18.806-20.596 30.04a90.55 90.55 0 0 0-7.232 35.434Z\" fill=\"#D5E8FF\"/><path d=\"M552.421 144.059c0-24.557 10.01-48.11 27.828-65.474 17.818-17.365 41.984-27.12 67.183-27.12v92.594h-95.011Z\" fill=\"#97C1F1\"/><path d=\"M647.418 51.478h-94.985v-92.59a90.524 90.524 0 0 0 7.221 35.43c4.772 11.234 11.768 21.44 20.588 30.04 8.821 8.597 19.293 15.418 30.819 20.071a97.156 97.156 0 0 0 36.357 7.049Z\" fill=\"#3484DF\"/><path d=\"M647.418 51.478a97.156 97.156 0 0 1-36.357-7.049c-11.526-4.653-21.998-11.474-30.819-20.072-8.82-8.598-15.816-18.805-20.588-30.039a90.524 90.524 0 0 1-7.221-35.43h94.985v92.59Z\" fill=\"#D5E8FF\"/><path d=\"M742.287 144.059h-94.98V51.464c0 24.553 10.006 48.1 27.817 65.464 17.812 17.364 41.97 27.123 67.163 27.131Z\" fill=\"#D5E8FF\"/><path d=\"M742.287 144.059c-25.193-.008-49.351-9.767-67.163-27.131-17.811-17.364-27.817-40.911-27.817-65.464h94.98v92.595Zm-94.98-92.595a90.53 90.53 0 0 1 7.23-35.423c4.773-11.231 11.77-21.435 20.589-30.03 8.82-8.596 19.29-15.415 30.814-20.066a97.132 97.132 0 0 1 36.347-7.047v92.566h-94.98Z\" fill=\"#97C1F1\"/><path d=\"M742.422 144.059V51.464h95.011c-25.199 0-49.365 9.755-67.183 27.12-17.818 17.365-27.828 40.917-27.828 65.475Z\" fill=\"#D5E8FF\"/><path d=\"M742.422 144.059c0-24.558 10.01-48.11 27.828-65.475 17.818-17.365 41.984-27.12 67.183-27.12v92.595h-95.011Z\" fill=\"#D5E8FF\"/><path d=\"M837.433 51.464h-95.011v-92.566c.008 24.553 10.022 48.097 27.839 65.456 17.817 17.358 41.979 27.11 67.172 27.11Z\" fill=\"#3484DF\"/><path d=\"M837.306 51.464a97.138 97.138 0 0 1 36.355 7.049c11.525 4.653 21.997 11.475 30.817 20.073 8.82 8.599 15.816 18.806 20.587 30.041a90.515 90.515 0 0 1 7.221 35.432h-94.98V51.464Z\" fill=\"#D5E8FF\"/><path d=\"M837.307 51.464h95.01v92.595a90.509 90.509 0 0 0-7.224-35.439c-4.773-11.236-11.771-21.445-20.595-30.044-8.823-8.6-19.298-15.42-30.828-20.072a97.131 97.131 0 0 0-36.363-7.04Z\" fill=\"#D5E8FF\"/><path d=\"M932.317-41.102v92.565h-94.98c25.191 0 49.349-9.752 67.161-27.111 17.813-17.36 27.819-40.904 27.819-65.454Z\" fill=\"#3484DF\"/><path d=\"M1027.3 51.464c-25.2 0-49.357-9.752-67.174-27.11-17.817-17.359-27.831-40.903-27.839-65.456h95.013v92.566Z\" fill=\"#D5E8FF\"/><path d=\"M932.318 144.059V51.464h94.982c-25.2.008-49.354 9.767-67.165 27.131-17.811 17.364-27.817 40.911-27.817 65.464Zm94.982-92.595h-94.982v-92.566c.008 24.548 10.018 48.088 27.828 65.445 17.81 17.358 41.964 27.113 67.154 27.12Z\" fill=\"#97C1F1\"/><path d=\"M932.318 144.059c0-24.558 10.01-48.11 27.828-65.475 17.818-17.365 41.984-27.12 67.184-27.12v92.595h-95.012Z\" fill=\"#3484DF\"/></g><g opacity=\".1\"><path d=\"M1028.56 51.482h95.01v92.56a90.608 90.608 0 0 0-7.23-35.428c-4.78-11.232-11.78-21.437-20.6-30.032-8.82-8.595-19.3-15.413-30.82-20.062a97.19 97.19 0 0 0-36.36-7.038Z\" fill=\"#D5E8FF\"/><path d=\"M1026.9 51.482a97.153 97.153 0 0 1 36.36 7.038c11.53 4.65 22 11.467 30.83 20.062 8.82 8.596 15.82 18.8 20.59 30.032a90.44 90.44 0 0 1 7.24 35.428h-95.02v-92.56Z\" fill=\"#3484DF\"/><path d=\"M1122.73-41.93v92.566h-94.98c25.19 0 49.35-9.753 67.16-27.112 17.81-17.36 27.82-40.904 27.82-65.454Z\" fill=\"#97C1F1\"/><path d=\"M1123.55 144.059V51.464h95.02a97.133 97.133 0 0 0-36.36 7.048c-11.53 4.654-22 11.474-30.83 20.072-8.82 8.599-15.82 18.806-20.59 30.04a90.47 90.47 0 0 0-7.24 35.435Z\" fill=\"#D5E8FF\"/><path d=\"M1123.55 144.059c0-24.558 10.01-48.11 27.83-65.475 17.82-17.365 41.99-27.12 67.19-27.12v92.595h-95.02Z\" fill=\"#97C1F1\"/><path d=\"M1217.72 50.65h-94.98v-92.59a90.612 90.612 0 0 0 7.22 35.43c4.77 11.233 11.77 21.44 20.59 30.039 8.82 8.598 19.29 15.419 30.82 20.072a97.117 97.117 0 0 0 36.35 7.049Z\" fill=\"#3484DF\"/><path d=\"M1313.54 144.059c-25.19-.008-49.35-9.767-67.16-27.131-17.81-17.364-27.81-40.912-27.81-65.464h94.97v92.595Z\" fill=\"#97C1F1\"/><path d=\"M1313.54 144.059h-94.97V51.464c0 24.552 10 48.1 27.81 65.464 17.81 17.364 41.97 27.123 67.16 27.131Z\" fill=\"#D5E8FF\"/><path d=\"M1218.57 51.464a90.574 90.574 0 0 1 7.22-35.423 92.549 92.549 0 0 1 20.59-30.03c8.82-8.596 19.29-15.415 30.82-20.066a97.097 97.097 0 0 1 36.34-7.047v92.566h-94.97Z\" fill=\"#97C1F1\"/><path d=\"M1313.54 144.059V51.464h95.02c-25.2 0-49.37 9.755-67.19 27.12-17.82 17.365-27.83 40.917-27.83 65.475Z\" fill=\"#D5E8FF\"/><path d=\"M1313.54 144.059c0-24.558 10.01-48.11 27.83-65.475 17.82-17.365 41.99-27.12 67.19-27.12v92.595h-95.02Z\" fill=\"#D5E8FF\"/><path d=\"M1408.56 51.464h-95.02v-92.566c.01 24.553 10.03 48.097 27.84 65.456 17.82 17.358 41.98 27.11 67.18 27.11Z\" fill=\"#3484DF\"/><path d=\"M1408.56 51.464c-25.2 0-49.36-9.752-67.18-27.11-17.81-17.359-27.83-40.903-27.84-65.456h95.02v92.566Z\" fill=\"#97C1F1\"/><path d=\"M1408.55 51.464c12.47 0 24.83 2.395 36.35 7.05 11.53 4.653 22 11.474 30.82 20.073a92.586 92.586 0 0 1 20.59 30.04 90.621 90.621 0 0 1 7.22 35.432h-94.98V51.464Z\" fill=\"#D5E8FF\"/><path d=\"M1408.54 51.464h95.02v92.595c0-12.16-2.46-24.203-7.23-35.439-4.77-11.236-11.77-21.445-20.59-30.044a95.237 95.237 0 0 0-30.83-20.071 97.163 97.163 0 0 0-36.37-7.04Z\" fill=\"#D5E8FF\"/><path d=\"M1503.56-41.102v92.566h-94.98c25.19 0 49.34-9.753 67.16-27.112 17.81-17.36 27.82-40.904 27.82-65.454Z\" fill=\"#3484DF\"/><path d=\"M1503.56-41.102c0 24.55-10.01 48.095-27.82 65.454-17.82 17.36-41.97 27.112-67.16 27.112v-92.566h94.98Z\" fill=\"#97C1F1\"/></g><path fill=\"url(#a)\" d=\"M0 1.06h1440v143H0z\"/><path fill=\"url(#b)\" d=\"M0-90.941h1440v235H0z\"/><defs><linearGradient id=\"a\" x1=\"720\" y1=\"1.06\" x2=\"720\" y2=\"144.06\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#EFF6FD\" stop-opacity=\"0\"/><stop offset=\"1\" stop-color=\"#FBFDFF\"/></linearGradient><linearGradient id=\"b\" x1=\"1440\" y1=\"26.559\" x2=\"0\" y2=\"26.559\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#FBFDFF\"/><stop offset=\".254\" stop-color=\"#FBFDFF\" stop-opacity=\".25\"/><stop offset=\".504\" stop-color=\"#FBFDFF\" stop-opacity=\"0\"/><stop offset=\".747\" stop-color=\"#FBFDFF\" stop-opacity=\".25\"/><stop offset=\"1\" stop-color=\"#FBFDFF\"/></linearGradient></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1np5ukz\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:95,intrinsicWidth:1440,svg:'<svg width=\"1440\" height=\"95\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g opacity=\".1\"><path d=\"M315.776 186.413c0-24.573 10.016-48.139 27.845-65.514 17.828-17.375 42.009-27.137 67.223-27.137v92.651h-95.068ZM1456.92.742v92.595h-95.01c12.47 0 24.83-2.395 36.36-7.048 11.52-4.653 22-11.474 30.82-20.072 8.82-8.598 15.82-18.806 20.6-30.04a90.638 90.638 0 0 0 7.23-35.435Z\" fill=\"#D5E8FF\"/><path d=\"M1456.92.742c0 24.558-10.01 48.11-27.83 65.475-17.82 17.365-41.98 27.12-67.18 27.12V.742h95.01Z\" fill=\"#97C1F1\"/><path d=\"M1361.92 93.324h94.99v92.59a90.44 90.44 0 0 0-7.23-35.43c-4.77-11.234-11.76-21.441-20.58-30.039-8.82-8.598-19.3-15.419-30.82-20.072a97.16 97.16 0 0 0-36.36-7.05Z\" fill=\"#3484DF\"/><path d=\"M1266.93.742c25.19.008 49.35 9.767 67.16 27.131 17.81 17.365 27.82 40.912 27.82 65.464h-94.98V.742Z\" fill=\"#97C1F1\"/><path d=\"M1266.93.742h94.98v92.595c0-24.552-10.01-48.1-27.82-65.463C1316.28 10.509 1292.12.75 1266.93.742Z\" fill=\"#D5E8FF\"/><path d=\"M1361.91 93.338a90.58 90.58 0 0 1-7.23 35.423c-4.77 11.231-11.77 21.435-20.59 30.031-8.82 8.595-19.29 15.413-30.81 20.065a97.182 97.182 0 0 1-36.35 7.046V93.338h94.98Z\" fill=\"#97C1F1\"/><path d=\"M1266.93.742v92.595h-95.01c25.2 0 49.36-9.755 67.18-27.12 17.82-17.365 27.83-40.917 27.83-65.475Z\" fill=\"#D5E8FF\"/><path d=\"M1266.93.742c0 24.558-10.01 48.11-27.83 65.475-17.82 17.365-41.98 27.12-67.18 27.12V.742h95.01Z\" fill=\"#D5E8FF\"/><path d=\"M1171.92 93.338h95.01v92.565c-.01-24.552-10.02-48.097-27.84-65.455-17.82-17.359-41.98-27.11-67.17-27.11Z\" fill=\"#3484DF\"/><path d=\"M1171.92 93.338c25.19 0 49.35 9.751 67.17 27.11 17.82 17.358 27.83 40.903 27.84 65.455h-95.01V93.338Z\" fill=\"#97C1F1\"/><path d=\"M1171.93 93.337a97.164 97.164 0 0 1-36.36-7.048c-11.52-4.654-21.99-11.475-30.81-20.074-8.82-8.599-15.82-18.806-20.59-30.04a90.442 90.442 0 0 1-7.22-35.433h94.98v92.595Z\" fill=\"#D5E8FF\"/><path d=\"M1171.93 93.337h-95.01V.742a90.474 90.474 0 0 0 7.22 35.44c4.77 11.236 11.77 21.445 20.59 30.044a95.237 95.237 0 0 0 30.83 20.071 97.163 97.163 0 0 0 36.37 7.04Z\" fill=\"#D5E8FF\"/><path d=\"M1076.92 185.903V93.338h94.98c-25.19 0-49.35 9.752-67.17 27.112-17.81 17.359-27.81 40.904-27.81 65.453Z\" fill=\"#3484DF\"/><path d=\"M1076.92 185.903c0-24.549 10-48.094 27.81-65.453 17.82-17.36 41.98-27.112 67.17-27.112v92.565h-94.98Zm-.01-185.16v92.595h-94.975c25.195-.008 49.355-9.767 67.165-27.131 17.81-17.364 27.81-40.912 27.81-65.464ZM981.935 93.34h94.975v92.564c0-24.547-10.01-48.087-27.82-65.444-17.81-17.358-41.97-27.113-67.155-27.12Z\" fill=\"#97C1F1\"/><path d=\"M1076.91.743c0 24.558-10.01 48.11-27.82 65.474-17.82 17.365-41.99 27.12-67.187 27.12V.744h95.007Z\" fill=\"#3484DF\"/><path d=\"M981.395 93.32h-95.016V.76a90.52 90.52 0 0 0 7.233 35.428c4.775 11.232 11.775 21.437 20.598 30.032 8.824 8.596 19.298 15.413 30.826 20.063a97.153 97.153 0 0 0 36.359 7.037Z\" fill=\"#D5E8FF\"/><path d=\"M982.12 93.32a97.144 97.144 0 0 1-36.358-7.037c-11.528-4.65-22.003-11.468-30.826-20.063-8.824-8.595-15.823-18.8-20.599-30.032A90.52 90.52 0 0 1 887.104.76h95.016v92.56Z\" fill=\"#3484DF\"/><path d=\"M886.397 185.904V93.339h94.98c-25.19 0-49.348 9.752-67.161 27.112-17.812 17.359-27.819 40.904-27.819 65.453Z\" fill=\"#97C1F1\"/><path d=\"M886.294.743v92.595h-95.011a97.164 97.164 0 0 0 36.359-7.048c11.528-4.654 22.001-11.474 30.824-20.073 8.823-8.598 15.821-18.805 20.596-30.04A90.55 90.55 0 0 0 886.294.743Z\" fill=\"#D5E8FF\"/><path d=\"M886.294.743c0 24.558-10.01 48.11-27.828 65.474-17.818 17.365-41.984 27.12-67.183 27.12V.744h95.011Z\" fill=\"#97C1F1\"/><path d=\"M791.297 93.324h94.985v92.591a90.524 90.524 0 0 0-7.221-35.431c-4.772-11.233-11.768-21.441-20.588-30.039-8.821-8.598-19.293-15.419-30.82-20.072a97.15 97.15 0 0 0-36.356-7.049Z\" fill=\"#3484DF\"/><path d=\"M791.297 93.324a97.15 97.15 0 0 1 36.356 7.049c11.527 4.653 21.999 11.474 30.82 20.072 8.82 8.598 15.816 18.806 20.588 30.039a90.524 90.524 0 0 1 7.221 35.431h-94.985v-92.59Z\" fill=\"#D5E8FF\"/><path d=\"M696.407.743h94.98v92.595c0-24.552-10.006-48.1-27.817-65.463C745.759 10.51 721.6.75 696.407.742Z\" fill=\"#D5E8FF\"/><path d=\"M696.407.743c25.193.008 49.352 9.767 67.163 27.132 17.811 17.364 27.817 40.91 27.817 65.463h-94.98V.743Zm94.98 92.597a90.526 90.526 0 0 1-7.23 35.422c-4.773 11.231-11.769 21.435-20.589 30.031-8.82 8.595-19.29 15.413-30.814 20.065a97.128 97.128 0 0 1-36.347 7.046V93.339h94.98Z\" fill=\"#97C1F1\"/><path d=\"M696.293.743v92.595h-95.011c25.199 0 49.365-9.755 67.183-27.12C686.283 48.853 696.293 25.3 696.293.743Z\" fill=\"#D5E8FF\"/><path d=\"M696.293.743c0 24.558-10.01 48.11-27.828 65.475-17.818 17.365-41.984 27.12-67.183 27.12V.743h95.011Z\" fill=\"#D5E8FF\"/><path d=\"M601.283 93.34h95.011v92.564c-.008-24.552-10.022-48.097-27.839-65.455-17.817-17.359-41.979-27.11-67.172-27.11Z\" fill=\"#3484DF\"/><path d=\"M601.388 93.338a97.133 97.133 0 0 1-36.354-7.049c-11.526-4.654-21.998-11.475-30.818-20.073-8.82-8.6-15.815-18.807-20.587-30.04A90.533 90.533 0 0 1 506.408.742h94.98v92.595Z\" fill=\"#D5E8FF\"/><path d=\"M601.388 93.338h-95.011V.743a90.532 90.532 0 0 0 7.224 35.44c4.773 11.235 11.772 21.444 20.595 30.043 8.823 8.6 19.299 15.42 30.828 20.072a97.137 97.137 0 0 0 36.364 7.04Z\" fill=\"#D5E8FF\"/><path d=\"M506.377 185.904V93.339h94.98c-25.19 0-49.349 9.752-67.161 27.111-17.812 17.36-27.819 40.904-27.819 65.454Z\" fill=\"#3484DF\"/><path d=\"M411.397 93.339c25.193 0 49.355 9.751 67.172 27.109 17.817 17.359 27.831 40.903 27.839 65.456h-95.011V93.339Z\" fill=\"#D5E8FF\"/><path d=\"M506.377.743v92.595h-94.98c25.193-.008 49.352-9.767 67.163-27.131S506.377 25.295 506.377.743Zm-94.98 92.596h94.98v92.565c-.008-24.548-10.018-48.087-27.828-65.445-17.811-17.357-41.964-27.112-67.152-27.12Z\" fill=\"#97C1F1\"/><path d=\"M506.376.743c0 24.558-10.01 48.11-27.828 65.474-17.818 17.365-41.984 27.12-67.183 27.12V.744h95.011Z\" fill=\"#3484DF\"/></g><g opacity=\".1\"><path d=\"M410.138 93.32h-95.016V.76a90.52 90.52 0 0 0 7.233 35.427c4.775 11.232 11.775 21.437 20.598 30.033 8.824 8.595 19.299 15.412 30.826 20.062a97.153 97.153 0 0 0 36.359 7.037Z\" fill=\"#D5E8FF\"/><path d=\"M411.793 93.32a97.153 97.153 0 0 1-36.359-7.038c-11.527-4.65-22.002-11.467-30.825-20.062-8.824-8.596-15.823-18.8-20.599-30.033A90.52 90.52 0 0 1 316.777.76h95.016v92.56Z\" fill=\"#3484DF\"/><path d=\"M315.968 186.731V94.166h94.98c-25.19 0-49.349 9.753-67.161 27.112-17.812 17.359-27.819 40.904-27.819 65.453Z\" fill=\"#97C1F1\"/><path d=\"M315.14.743v92.595h-95.011a97.164 97.164 0 0 0 36.359-7.048c11.527-4.654 22.001-11.474 30.824-20.073 8.822-8.598 15.821-18.805 20.596-30.04A90.568 90.568 0 0 0 315.14.743Z\" fill=\"#D5E8FF\"/><path d=\"M315.14.743c0 24.558-10.01 48.11-27.828 65.474-17.818 17.365-41.985 27.12-67.183 27.12V.744h95.011Z\" fill=\"#97C1F1\"/><path d=\"M220.97 94.152h94.985v92.59a90.502 90.502 0 0 0-7.222-35.43c-4.771-11.234-11.767-21.441-20.587-30.039-8.821-8.598-19.294-15.419-30.82-20.072a97.142 97.142 0 0 0-36.356-7.049Z\" fill=\"#3484DF\"/><path d=\"M125.149.743c25.193.008 49.352 9.767 67.163 27.131s27.817 40.911 27.817 65.464h-94.98V.743Z\" fill=\"#97C1F1\"/><path d=\"M125.149.743h94.98v92.595c0-24.553-10.006-48.1-27.817-65.464C174.501 10.51 150.342.751 125.149.743Z\" fill=\"#D5E8FF\"/><path d=\"M220.13 93.338a90.526 90.526 0 0 1-7.23 35.423c-4.773 11.231-11.77 21.435-20.589 30.031-8.82 8.595-19.29 15.413-30.814 20.065a97.128 97.128 0 0 1-36.347 7.046V93.338h94.98Z\" fill=\"#97C1F1\"/><path d=\"M125.149.742v92.595h-95.01c25.198 0 49.364-9.755 67.182-27.12C115.139 48.852 125.149 25.3 125.149.742Z\" fill=\"#D5E8FF\"/><path d=\"M125.149.742c0 24.558-10.01 48.11-27.828 65.475-17.818 17.365-41.984 27.12-67.183 27.12V.742h95.011Z\" fill=\"#D5E8FF\"/><path d=\"M30.138 93.338h95.011v92.565c-.008-24.552-10.022-48.097-27.839-65.455-17.817-17.359-41.979-27.11-67.172-27.11Z\" fill=\"#3484DF\"/><path d=\"M30.138 93.338c25.193 0 49.355 9.751 67.172 27.11 17.817 17.358 27.831 40.903 27.839 65.455h-95.01V93.338Z\" fill=\"#97C1F1\"/><path d=\"M30.148 93.337A97.135 97.135 0 0 1-6.207 86.29c-11.525-4.654-21.997-11.475-30.817-20.074-8.82-8.599-15.816-18.806-20.587-30.04A90.524 90.524 0 0 1-64.832.742h94.98v92.595Z\" fill=\"#D5E8FF\"/><path d=\"M30.149 93.337h-95.01V.742a90.525 90.525 0 0 0 7.223 35.44c4.773 11.236 11.772 21.445 20.595 30.044 8.823 8.599 19.3 15.42 30.828 20.071a97.135 97.135 0 0 0 36.364 7.04Z\" fill=\"#D5E8FF\"/><path d=\"M-64.861 185.903V93.338h94.98c-25.19 0-49.35 9.752-67.161 27.112-17.813 17.359-27.82 40.904-27.82 65.453Z\" fill=\"#3484DF\"/><path d=\"M-64.861 185.903c0-24.549 10.006-48.094 27.819-65.453 17.812-17.36 41.97-27.112 67.16-27.112v92.565h-94.98Z\" fill=\"#97C1F1\"/></g><path transform=\"rotate(180 1439 93.251)\" fill=\"url(#a)\" d=\"M1439 93.251h1440v93H1439z\"/><path transform=\"rotate(180 1439 196.251)\" fill=\"url(#b)\" d=\"M1439 196.251h1440v164H1439z\"/><defs><linearGradient id=\"a\" x1=\"2159\" y1=\"93.251\" x2=\"2159\" y2=\"186.251\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#FBFDFF\" stop-opacity=\"0\"/><stop offset=\"1\" stop-color=\"#FBFDFF\"/></linearGradient><linearGradient id=\"b\" x1=\"2879\" y1=\"278.251\" x2=\"1439\" y2=\"278.251\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#FBFDFF\"/><stop offset=\".254\" stop-color=\"#FBFDFF\" stop-opacity=\".25\"/><stop offset=\".504\" stop-color=\"#FBFDFF\" stop-opacity=\"0\"/><stop offset=\".747\" stop-color=\"#FBFDFF\" stop-opacity=\".25\"/><stop offset=\"1\" stop-color=\"#FBFDFF\"/></linearGradient></defs></svg>',withExternalLayout:true}),isDisplayed5()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-rjr9qm hidden-pj3a9u hidden-f4gq7q hidden-qdked2 hidden-1ii9vdz\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:145,intrinsicWidth:1440,svg:'<svg width=\"1440\" height=\"145\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g opacity=\".1\"><path d=\"M1122.92-41.61c0 24.572-10.02 48.138-27.85 65.513-17.83 17.376-42.01 27.137-67.22 27.137v-92.65h95.07ZM-18.224 144.059V51.464h95.01a97.167 97.167 0 0 0-36.358 7.049C28.9 63.166 18.426 69.987 9.604 78.585.78 87.183-6.217 97.39-10.992 108.625a90.554 90.554 0 0 0-7.232 35.434Z\" fill=\"#D5E8FF\"/><path d=\"M-18.224 144.059c0-24.557 10.01-48.11 27.828-65.474 17.818-17.365 41.984-27.12 67.183-27.12v92.594h-95.011Z\" fill=\"#97C1F1\"/><path d=\"M76.774 51.477H-18.21v-92.59a90.512 90.512 0 0 0 7.222 35.43C-6.218 5.552.778 15.759 9.599 24.358c8.82 8.598 19.293 15.418 30.819 20.072a97.149 97.149 0 0 0 36.356 7.048Z\" fill=\"#3484DF\"/><path d=\"M171.767 144.059c-25.193-.008-49.352-9.767-67.163-27.131S76.787 76.017 76.787 51.464h94.98v92.595Z\" fill=\"#97C1F1\"/><path d=\"M171.767 144.059h-94.98V51.464c0 24.553 10.006 48.1 27.817 65.464 17.811 17.364 41.97 27.123 67.163 27.131Z\" fill=\"#D5E8FF\"/><path d=\"M76.786 51.464a90.526 90.526 0 0 1 7.23-35.423C88.79 4.81 95.786-5.394 104.605-13.99c8.82-8.596 19.29-15.415 30.814-20.066a97.132 97.132 0 0 1 36.347-7.047v92.566h-94.98Z\" fill=\"#97C1F1\"/><path d=\"M171.766 144.059V51.464h95.011c-25.198 0-49.365 9.756-67.183 27.12-17.818 17.366-27.828 40.918-27.828 65.475Z\" fill=\"#D5E8FF\"/><path d=\"M171.766 144.059c0-24.557 10.01-48.11 27.828-65.474 17.818-17.365 41.985-27.12 67.183-27.12v92.594h-95.011Z\" fill=\"#D5E8FF\"/><path d=\"M266.778 51.464h-95.011v-92.566c.009 24.553 10.022 48.097 27.839 65.456 17.818 17.358 41.979 27.11 67.172 27.11Z\" fill=\"#3484DF\"/><path d=\"M266.778 51.464c-25.193 0-49.354-9.752-67.172-27.11-17.817-17.359-27.83-40.903-27.839-65.456h95.011v92.566Z\" fill=\"#97C1F1\"/><path d=\"M266.768 51.464a97.133 97.133 0 0 1 36.354 7.05c11.526 4.653 21.997 11.474 30.818 20.073 8.82 8.598 15.815 18.806 20.587 30.04a90.533 90.533 0 0 1 7.221 35.432h-94.98V51.464Z\" fill=\"#D5E8FF\"/><path d=\"M266.768 51.464h95.01v92.595a90.516 90.516 0 0 0-7.224-35.439c-4.773-11.236-11.771-21.445-20.595-30.044-8.823-8.599-19.299-15.42-30.828-20.071a97.131 97.131 0 0 0-36.363-7.04Z\" fill=\"#D5E8FF\"/><path d=\"M361.778-41.102v92.566h-94.98c25.191 0 49.349-9.753 67.161-27.112 17.813-17.36 27.819-40.904 27.819-65.454Z\" fill=\"#3484DF\"/><path d=\"M361.778-41.102c0 24.55-10.006 48.095-27.819 65.454-17.812 17.36-41.97 27.112-67.161 27.112v-92.566h94.98Zm.001 185.161V51.464h94.98c-25.193.008-49.351 9.767-67.163 27.132-17.811 17.364-27.817 40.911-27.817 65.463Zm94.98-92.595h-94.98v-92.566c.009 24.548 10.018 48.088 27.828 65.445 17.811 17.358 41.965 27.113 67.152 27.12Z\" fill=\"#97C1F1\"/><path d=\"M361.78 144.059c0-24.557 10.01-48.11 27.828-65.474 17.818-17.365 41.985-27.12 67.183-27.12v92.594H361.78Z\" fill=\"#3484DF\"/><path d=\"M457.299 51.483h95.015v92.56a90.5 90.5 0 0 0-7.233-35.428c-4.775-11.232-11.775-21.437-20.598-30.032-8.823-8.596-19.298-15.413-30.826-20.063a97.146 97.146 0 0 0-36.358-7.037Z\" fill=\"#D5E8FF\"/><path d=\"M456.595 51.483a97.146 97.146 0 0 1 36.358 7.037c11.528 4.65 22.002 11.467 30.826 20.063 8.823 8.595 15.823 18.8 20.598 30.032a90.5 90.5 0 0 1 7.233 35.428h-95.015v-92.56Z\" fill=\"#3484DF\"/><path d=\"M552.297-41.102v92.566h-94.98c25.19 0 49.349-9.753 67.161-27.112 17.812-17.36 27.819-40.904 27.819-65.454Z\" fill=\"#97C1F1\"/><path d=\"M552.421 144.059V51.464h95.011a97.166 97.166 0 0 0-36.359 7.049c-11.528 4.653-22.002 11.474-30.824 20.072-8.823 8.598-15.821 18.806-20.596 30.04a90.55 90.55 0 0 0-7.232 35.434Z\" fill=\"#D5E8FF\"/><path d=\"M552.421 144.059c0-24.557 10.01-48.11 27.828-65.474 17.818-17.365 41.984-27.12 67.183-27.12v92.594h-95.011Z\" fill=\"#97C1F1\"/><path d=\"M647.418 51.478h-94.985v-92.59a90.524 90.524 0 0 0 7.221 35.43c4.772 11.234 11.768 21.44 20.588 30.04 8.821 8.597 19.293 15.418 30.819 20.071a97.156 97.156 0 0 0 36.357 7.049Z\" fill=\"#3484DF\"/><path d=\"M647.418 51.478a97.156 97.156 0 0 1-36.357-7.049c-11.526-4.653-21.998-11.474-30.819-20.072-8.82-8.598-15.816-18.805-20.588-30.039a90.524 90.524 0 0 1-7.221-35.43h94.985v92.59Z\" fill=\"#D5E8FF\"/><path d=\"M742.287 144.059h-94.98V51.464c0 24.553 10.006 48.1 27.817 65.464 17.812 17.364 41.97 27.123 67.163 27.131Z\" fill=\"#D5E8FF\"/><path d=\"M742.287 144.059c-25.193-.008-49.351-9.767-67.163-27.131-17.811-17.364-27.817-40.911-27.817-65.464h94.98v92.595Zm-94.98-92.595a90.53 90.53 0 0 1 7.23-35.423c4.773-11.231 11.77-21.435 20.589-30.03 8.82-8.596 19.29-15.415 30.814-20.066a97.132 97.132 0 0 1 36.347-7.047v92.566h-94.98Z\" fill=\"#97C1F1\"/><path d=\"M742.422 144.059V51.464h95.011c-25.199 0-49.365 9.755-67.183 27.12-17.818 17.365-27.828 40.917-27.828 65.475Z\" fill=\"#D5E8FF\"/><path d=\"M742.422 144.059c0-24.558 10.01-48.11 27.828-65.475 17.818-17.365 41.984-27.12 67.183-27.12v92.595h-95.011Z\" fill=\"#D5E8FF\"/><path d=\"M837.433 51.464h-95.011v-92.566c.008 24.553 10.022 48.097 27.839 65.456 17.817 17.358 41.979 27.11 67.172 27.11Z\" fill=\"#3484DF\"/><path d=\"M837.306 51.464a97.138 97.138 0 0 1 36.355 7.049c11.525 4.653 21.997 11.475 30.817 20.073 8.82 8.599 15.816 18.806 20.587 30.041a90.515 90.515 0 0 1 7.221 35.432h-94.98V51.464Z\" fill=\"#D5E8FF\"/><path d=\"M837.307 51.464h95.01v92.595a90.509 90.509 0 0 0-7.224-35.439c-4.773-11.236-11.771-21.445-20.595-30.044-8.823-8.6-19.298-15.42-30.828-20.072a97.131 97.131 0 0 0-36.363-7.04Z\" fill=\"#D5E8FF\"/><path d=\"M932.317-41.102v92.565h-94.98c25.191 0 49.349-9.752 67.161-27.111 17.813-17.36 27.819-40.904 27.819-65.454Z\" fill=\"#3484DF\"/><path d=\"M1027.3 51.464c-25.2 0-49.357-9.752-67.174-27.11-17.817-17.359-27.831-40.903-27.839-65.456h95.013v92.566Z\" fill=\"#D5E8FF\"/><path d=\"M932.318 144.059V51.464h94.982c-25.2.008-49.354 9.767-67.165 27.131-17.811 17.364-27.817 40.911-27.817 65.464Zm94.982-92.595h-94.982v-92.566c.008 24.548 10.018 48.088 27.828 65.445 17.81 17.358 41.964 27.113 67.154 27.12Z\" fill=\"#97C1F1\"/><path d=\"M932.318 144.059c0-24.558 10.01-48.11 27.828-65.475 17.818-17.365 41.984-27.12 67.184-27.12v92.595h-95.012Z\" fill=\"#3484DF\"/></g><g opacity=\".1\"><path d=\"M1028.56 51.482h95.01v92.56a90.608 90.608 0 0 0-7.23-35.428c-4.78-11.232-11.78-21.437-20.6-30.032-8.82-8.595-19.3-15.413-30.82-20.062a97.19 97.19 0 0 0-36.36-7.038Z\" fill=\"#D5E8FF\"/><path d=\"M1026.9 51.482a97.153 97.153 0 0 1 36.36 7.038c11.53 4.65 22 11.467 30.83 20.062 8.82 8.596 15.82 18.8 20.59 30.032a90.44 90.44 0 0 1 7.24 35.428h-95.02v-92.56Z\" fill=\"#3484DF\"/><path d=\"M1122.73-41.93v92.566h-94.98c25.19 0 49.35-9.753 67.16-27.112 17.81-17.36 27.82-40.904 27.82-65.454Z\" fill=\"#97C1F1\"/><path d=\"M1123.55 144.059V51.464h95.02a97.133 97.133 0 0 0-36.36 7.048c-11.53 4.654-22 11.474-30.83 20.072-8.82 8.599-15.82 18.806-20.59 30.04a90.47 90.47 0 0 0-7.24 35.435Z\" fill=\"#D5E8FF\"/><path d=\"M1123.55 144.059c0-24.558 10.01-48.11 27.83-65.475 17.82-17.365 41.99-27.12 67.19-27.12v92.595h-95.02Z\" fill=\"#97C1F1\"/><path d=\"M1217.72 50.65h-94.98v-92.59a90.612 90.612 0 0 0 7.22 35.43c4.77 11.233 11.77 21.44 20.59 30.039 8.82 8.598 19.29 15.419 30.82 20.072a97.117 97.117 0 0 0 36.35 7.049Z\" fill=\"#3484DF\"/><path d=\"M1313.54 144.059c-25.19-.008-49.35-9.767-67.16-27.131-17.81-17.364-27.81-40.912-27.81-65.464h94.97v92.595Z\" fill=\"#97C1F1\"/><path d=\"M1313.54 144.059h-94.97V51.464c0 24.552 10 48.1 27.81 65.464 17.81 17.364 41.97 27.123 67.16 27.131Z\" fill=\"#D5E8FF\"/><path d=\"M1218.57 51.464a90.574 90.574 0 0 1 7.22-35.423 92.549 92.549 0 0 1 20.59-30.03c8.82-8.596 19.29-15.415 30.82-20.066a97.097 97.097 0 0 1 36.34-7.047v92.566h-94.97Z\" fill=\"#97C1F1\"/><path d=\"M1313.54 144.059V51.464h95.02c-25.2 0-49.37 9.755-67.19 27.12-17.82 17.365-27.83 40.917-27.83 65.475Z\" fill=\"#D5E8FF\"/><path d=\"M1313.54 144.059c0-24.558 10.01-48.11 27.83-65.475 17.82-17.365 41.99-27.12 67.19-27.12v92.595h-95.02Z\" fill=\"#D5E8FF\"/><path d=\"M1408.56 51.464h-95.02v-92.566c.01 24.553 10.03 48.097 27.84 65.456 17.82 17.358 41.98 27.11 67.18 27.11Z\" fill=\"#3484DF\"/><path d=\"M1408.56 51.464c-25.2 0-49.36-9.752-67.18-27.11-17.81-17.359-27.83-40.903-27.84-65.456h95.02v92.566Z\" fill=\"#97C1F1\"/><path d=\"M1408.55 51.464c12.47 0 24.83 2.395 36.35 7.05 11.53 4.653 22 11.474 30.82 20.073a92.586 92.586 0 0 1 20.59 30.04 90.621 90.621 0 0 1 7.22 35.432h-94.98V51.464Z\" fill=\"#D5E8FF\"/><path d=\"M1408.54 51.464h95.02v92.595c0-12.16-2.46-24.203-7.23-35.439-4.77-11.236-11.77-21.445-20.59-30.044a95.237 95.237 0 0 0-30.83-20.071 97.163 97.163 0 0 0-36.37-7.04Z\" fill=\"#D5E8FF\"/><path d=\"M1503.56-41.102v92.566h-94.98c25.19 0 49.34-9.753 67.16-27.112 17.81-17.36 27.82-40.904 27.82-65.454Z\" fill=\"#3484DF\"/><path d=\"M1503.56-41.102c0 24.55-10.01 48.095-27.82 65.454-17.82 17.36-41.97 27.112-67.16 27.112v-92.566h94.98Z\" fill=\"#97C1F1\"/></g><path fill=\"url(#a)\" d=\"M0 1.06h1440v143H0z\"/><path fill=\"url(#b)\" d=\"M0-90.941h1440v235H0z\"/><defs><linearGradient id=\"a\" x1=\"720\" y1=\"1.06\" x2=\"720\" y2=\"144.06\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#EFF6FD\" stop-opacity=\"0\"/><stop offset=\"1\" stop-color=\"#FBFDFF\"/></linearGradient><linearGradient id=\"b\" x1=\"1440\" y1=\"26.559\" x2=\"0\" y2=\"26.559\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#FBFDFF\"/><stop offset=\".254\" stop-color=\"#FBFDFF\" stop-opacity=\".25\"/><stop offset=\".504\" stop-color=\"#FBFDFF\" stop-opacity=\"0\"/><stop offset=\".747\" stop-color=\"#FBFDFF\" stop-opacity=\".25\"/><stop offset=\"1\" stop-color=\"#FBFDFF\"/></linearGradient></defs></svg>',withExternalLayout:true}),isDisplayed5()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-38pn1k hidden-pj3a9u hidden-f4gq7q hidden-qdked2 hidden-1ii9vdz\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:95,intrinsicWidth:1440,svg:'<svg width=\"1440\" height=\"95\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g opacity=\".1\"><path d=\"M315.776 186.413c0-24.573 10.016-48.139 27.845-65.514 17.828-17.375 42.009-27.137 67.223-27.137v92.651h-95.068ZM1456.92.742v92.595h-95.01c12.47 0 24.83-2.395 36.36-7.048 11.52-4.653 22-11.474 30.82-20.072 8.82-8.598 15.82-18.806 20.6-30.04a90.638 90.638 0 0 0 7.23-35.435Z\" fill=\"#D5E8FF\"/><path d=\"M1456.92.742c0 24.558-10.01 48.11-27.83 65.475-17.82 17.365-41.98 27.12-67.18 27.12V.742h95.01Z\" fill=\"#97C1F1\"/><path d=\"M1361.92 93.324h94.99v92.59a90.44 90.44 0 0 0-7.23-35.43c-4.77-11.234-11.76-21.441-20.58-30.039-8.82-8.598-19.3-15.419-30.82-20.072a97.16 97.16 0 0 0-36.36-7.05Z\" fill=\"#3484DF\"/><path d=\"M1266.93.742c25.19.008 49.35 9.767 67.16 27.131 17.81 17.365 27.82 40.912 27.82 65.464h-94.98V.742Z\" fill=\"#97C1F1\"/><path d=\"M1266.93.742h94.98v92.595c0-24.552-10.01-48.1-27.82-65.463C1316.28 10.509 1292.12.75 1266.93.742Z\" fill=\"#D5E8FF\"/><path d=\"M1361.91 93.338a90.58 90.58 0 0 1-7.23 35.423c-4.77 11.231-11.77 21.435-20.59 30.031-8.82 8.595-19.29 15.413-30.81 20.065a97.182 97.182 0 0 1-36.35 7.046V93.338h94.98Z\" fill=\"#97C1F1\"/><path d=\"M1266.93.742v92.595h-95.01c25.2 0 49.36-9.755 67.18-27.12 17.82-17.365 27.83-40.917 27.83-65.475Z\" fill=\"#D5E8FF\"/><path d=\"M1266.93.742c0 24.558-10.01 48.11-27.83 65.475-17.82 17.365-41.98 27.12-67.18 27.12V.742h95.01Z\" fill=\"#D5E8FF\"/><path d=\"M1171.92 93.338h95.01v92.565c-.01-24.552-10.02-48.097-27.84-65.455-17.82-17.359-41.98-27.11-67.17-27.11Z\" fill=\"#3484DF\"/><path d=\"M1171.92 93.338c25.19 0 49.35 9.751 67.17 27.11 17.82 17.358 27.83 40.903 27.84 65.455h-95.01V93.338Z\" fill=\"#97C1F1\"/><path d=\"M1171.93 93.337a97.164 97.164 0 0 1-36.36-7.048c-11.52-4.654-21.99-11.475-30.81-20.074-8.82-8.599-15.82-18.806-20.59-30.04a90.442 90.442 0 0 1-7.22-35.433h94.98v92.595Z\" fill=\"#D5E8FF\"/><path d=\"M1171.93 93.337h-95.01V.742a90.474 90.474 0 0 0 7.22 35.44c4.77 11.236 11.77 21.445 20.59 30.044a95.237 95.237 0 0 0 30.83 20.071 97.163 97.163 0 0 0 36.37 7.04Z\" fill=\"#D5E8FF\"/><path d=\"M1076.92 185.903V93.338h94.98c-25.19 0-49.35 9.752-67.17 27.112-17.81 17.359-27.81 40.904-27.81 65.453Z\" fill=\"#3484DF\"/><path d=\"M1076.92 185.903c0-24.549 10-48.094 27.81-65.453 17.82-17.36 41.98-27.112 67.17-27.112v92.565h-94.98Zm-.01-185.16v92.595h-94.975c25.195-.008 49.355-9.767 67.165-27.131 17.81-17.364 27.81-40.912 27.81-65.464ZM981.935 93.34h94.975v92.564c0-24.547-10.01-48.087-27.82-65.444-17.81-17.358-41.97-27.113-67.155-27.12Z\" fill=\"#97C1F1\"/><path d=\"M1076.91.743c0 24.558-10.01 48.11-27.82 65.474-17.82 17.365-41.99 27.12-67.187 27.12V.744h95.007Z\" fill=\"#3484DF\"/><path d=\"M981.395 93.32h-95.016V.76a90.52 90.52 0 0 0 7.233 35.428c4.775 11.232 11.775 21.437 20.598 30.032 8.824 8.596 19.298 15.413 30.826 20.063a97.153 97.153 0 0 0 36.359 7.037Z\" fill=\"#D5E8FF\"/><path d=\"M982.12 93.32a97.144 97.144 0 0 1-36.358-7.037c-11.528-4.65-22.003-11.468-30.826-20.063-8.824-8.595-15.823-18.8-20.599-30.032A90.52 90.52 0 0 1 887.104.76h95.016v92.56Z\" fill=\"#3484DF\"/><path d=\"M886.397 185.904V93.339h94.98c-25.19 0-49.348 9.752-67.161 27.112-17.812 17.359-27.819 40.904-27.819 65.453Z\" fill=\"#97C1F1\"/><path d=\"M886.294.743v92.595h-95.011a97.164 97.164 0 0 0 36.359-7.048c11.528-4.654 22.001-11.474 30.824-20.073 8.823-8.598 15.821-18.805 20.596-30.04A90.55 90.55 0 0 0 886.294.743Z\" fill=\"#D5E8FF\"/><path d=\"M886.294.743c0 24.558-10.01 48.11-27.828 65.474-17.818 17.365-41.984 27.12-67.183 27.12V.744h95.011Z\" fill=\"#97C1F1\"/><path d=\"M791.297 93.324h94.985v92.591a90.524 90.524 0 0 0-7.221-35.431c-4.772-11.233-11.768-21.441-20.588-30.039-8.821-8.598-19.293-15.419-30.82-20.072a97.15 97.15 0 0 0-36.356-7.049Z\" fill=\"#3484DF\"/><path d=\"M791.297 93.324a97.15 97.15 0 0 1 36.356 7.049c11.527 4.653 21.999 11.474 30.82 20.072 8.82 8.598 15.816 18.806 20.588 30.039a90.524 90.524 0 0 1 7.221 35.431h-94.985v-92.59Z\" fill=\"#D5E8FF\"/><path d=\"M696.407.743h94.98v92.595c0-24.552-10.006-48.1-27.817-65.463C745.759 10.51 721.6.75 696.407.742Z\" fill=\"#D5E8FF\"/><path d=\"M696.407.743c25.193.008 49.352 9.767 67.163 27.132 17.811 17.364 27.817 40.91 27.817 65.463h-94.98V.743Zm94.98 92.597a90.526 90.526 0 0 1-7.23 35.422c-4.773 11.231-11.769 21.435-20.589 30.031-8.82 8.595-19.29 15.413-30.814 20.065a97.128 97.128 0 0 1-36.347 7.046V93.339h94.98Z\" fill=\"#97C1F1\"/><path d=\"M696.293.743v92.595h-95.011c25.199 0 49.365-9.755 67.183-27.12C686.283 48.853 696.293 25.3 696.293.743Z\" fill=\"#D5E8FF\"/><path d=\"M696.293.743c0 24.558-10.01 48.11-27.828 65.475-17.818 17.365-41.984 27.12-67.183 27.12V.743h95.011Z\" fill=\"#D5E8FF\"/><path d=\"M601.283 93.34h95.011v92.564c-.008-24.552-10.022-48.097-27.839-65.455-17.817-17.359-41.979-27.11-67.172-27.11Z\" fill=\"#3484DF\"/><path d=\"M601.388 93.338a97.133 97.133 0 0 1-36.354-7.049c-11.526-4.654-21.998-11.475-30.818-20.073-8.82-8.6-15.815-18.807-20.587-30.04A90.533 90.533 0 0 1 506.408.742h94.98v92.595Z\" fill=\"#D5E8FF\"/><path d=\"M601.388 93.338h-95.011V.743a90.532 90.532 0 0 0 7.224 35.44c4.773 11.235 11.772 21.444 20.595 30.043 8.823 8.6 19.299 15.42 30.828 20.072a97.137 97.137 0 0 0 36.364 7.04Z\" fill=\"#D5E8FF\"/><path d=\"M506.377 185.904V93.339h94.98c-25.19 0-49.349 9.752-67.161 27.111-17.812 17.36-27.819 40.904-27.819 65.454Z\" fill=\"#3484DF\"/><path d=\"M411.397 93.339c25.193 0 49.355 9.751 67.172 27.109 17.817 17.359 27.831 40.903 27.839 65.456h-95.011V93.339Z\" fill=\"#D5E8FF\"/><path d=\"M506.377.743v92.595h-94.98c25.193-.008 49.352-9.767 67.163-27.131S506.377 25.295 506.377.743Zm-94.98 92.596h94.98v92.565c-.008-24.548-10.018-48.087-27.828-65.445-17.811-17.357-41.964-27.112-67.152-27.12Z\" fill=\"#97C1F1\"/><path d=\"M506.376.743c0 24.558-10.01 48.11-27.828 65.474-17.818 17.365-41.984 27.12-67.183 27.12V.744h95.011Z\" fill=\"#3484DF\"/></g><g opacity=\".1\"><path d=\"M410.138 93.32h-95.016V.76a90.52 90.52 0 0 0 7.233 35.427c4.775 11.232 11.775 21.437 20.598 30.033 8.824 8.595 19.299 15.412 30.826 20.062a97.153 97.153 0 0 0 36.359 7.037Z\" fill=\"#D5E8FF\"/><path d=\"M411.793 93.32a97.153 97.153 0 0 1-36.359-7.038c-11.527-4.65-22.002-11.467-30.825-20.062-8.824-8.596-15.823-18.8-20.599-30.033A90.52 90.52 0 0 1 316.777.76h95.016v92.56Z\" fill=\"#3484DF\"/><path d=\"M315.968 186.731V94.166h94.98c-25.19 0-49.349 9.753-67.161 27.112-17.812 17.359-27.819 40.904-27.819 65.453Z\" fill=\"#97C1F1\"/><path d=\"M315.14.743v92.595h-95.011a97.164 97.164 0 0 0 36.359-7.048c11.527-4.654 22.001-11.474 30.824-20.073 8.822-8.598 15.821-18.805 20.596-30.04A90.568 90.568 0 0 0 315.14.743Z\" fill=\"#D5E8FF\"/><path d=\"M315.14.743c0 24.558-10.01 48.11-27.828 65.474-17.818 17.365-41.985 27.12-67.183 27.12V.744h95.011Z\" fill=\"#97C1F1\"/><path d=\"M220.97 94.152h94.985v92.59a90.502 90.502 0 0 0-7.222-35.43c-4.771-11.234-11.767-21.441-20.587-30.039-8.821-8.598-19.294-15.419-30.82-20.072a97.142 97.142 0 0 0-36.356-7.049Z\" fill=\"#3484DF\"/><path d=\"M125.149.743c25.193.008 49.352 9.767 67.163 27.131s27.817 40.911 27.817 65.464h-94.98V.743Z\" fill=\"#97C1F1\"/><path d=\"M125.149.743h94.98v92.595c0-24.553-10.006-48.1-27.817-65.464C174.501 10.51 150.342.751 125.149.743Z\" fill=\"#D5E8FF\"/><path d=\"M220.13 93.338a90.526 90.526 0 0 1-7.23 35.423c-4.773 11.231-11.77 21.435-20.589 30.031-8.82 8.595-19.29 15.413-30.814 20.065a97.128 97.128 0 0 1-36.347 7.046V93.338h94.98Z\" fill=\"#97C1F1\"/><path d=\"M125.149.742v92.595h-95.01c25.198 0 49.364-9.755 67.182-27.12C115.139 48.852 125.149 25.3 125.149.742Z\" fill=\"#D5E8FF\"/><path d=\"M125.149.742c0 24.558-10.01 48.11-27.828 65.475-17.818 17.365-41.984 27.12-67.183 27.12V.742h95.011Z\" fill=\"#D5E8FF\"/><path d=\"M30.138 93.338h95.011v92.565c-.008-24.552-10.022-48.097-27.839-65.455-17.817-17.359-41.979-27.11-67.172-27.11Z\" fill=\"#3484DF\"/><path d=\"M30.138 93.338c25.193 0 49.355 9.751 67.172 27.11 17.817 17.358 27.831 40.903 27.839 65.455h-95.01V93.338Z\" fill=\"#97C1F1\"/><path d=\"M30.148 93.337A97.135 97.135 0 0 1-6.207 86.29c-11.525-4.654-21.997-11.475-30.817-20.074-8.82-8.599-15.816-18.806-20.587-30.04A90.524 90.524 0 0 1-64.832.742h94.98v92.595Z\" fill=\"#D5E8FF\"/><path d=\"M30.149 93.337h-95.01V.742a90.525 90.525 0 0 0 7.223 35.44c4.773 11.236 11.772 21.445 20.595 30.044 8.823 8.599 19.3 15.42 30.828 20.071a97.135 97.135 0 0 0 36.364 7.04Z\" fill=\"#D5E8FF\"/><path d=\"M-64.861 185.903V93.338h94.98c-25.19 0-49.35 9.752-67.161 27.112-17.813 17.359-27.82 40.904-27.82 65.453Z\" fill=\"#3484DF\"/><path d=\"M-64.861 185.903c0-24.549 10.006-48.094 27.819-65.453 17.812-17.36 41.97-27.112 67.16-27.112v92.565h-94.98Z\" fill=\"#97C1F1\"/></g><path transform=\"rotate(180 1439 93.251)\" fill=\"url(#a)\" d=\"M1439 93.251h1440v93H1439z\"/><path transform=\"rotate(180 1439 196.251)\" fill=\"url(#b)\" d=\"M1439 196.251h1440v164H1439z\"/><defs><linearGradient id=\"a\" x1=\"2159\" y1=\"93.251\" x2=\"2159\" y2=\"186.251\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#FBFDFF\" stop-opacity=\"0\"/><stop offset=\"1\" stop-color=\"#FBFDFF\"/></linearGradient><linearGradient id=\"b\" x1=\"2879\" y1=\"278.251\" x2=\"1439\" y2=\"278.251\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#FBFDFF\"/><stop offset=\".254\" stop-color=\"#FBFDFF\" stop-opacity=\".25\"/><stop offset=\".504\" stop-color=\"#FBFDFF\" stop-opacity=\"0\"/><stop offset=\".747\" stop-color=\"#FBFDFF\" stop-opacity=\".25\"/><stop offset=\"1\" stop-color=\"#FBFDFF\"/></linearGradient></defs></svg>',withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xh3DCC8UM:{background:{alt:\"\",fit:\"fill\",pixelHeight:1729,pixelWidth:4940,sizes:`min(${componentViewport?.width||\"100vw\"} - 32px, 1232px)`,src:\"https://framerusercontent.com/images/68nXnzzt7vbdHN7q9ma4MdEtfmA.jpg\",srcSet:\"https://framerusercontent.com/images/68nXnzzt7vbdHN7q9ma4MdEtfmA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/68nXnzzt7vbdHN7q9ma4MdEtfmA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/68nXnzzt7vbdHN7q9ma4MdEtfmA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/68nXnzzt7vbdHN7q9ma4MdEtfmA.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/68nXnzzt7vbdHN7q9ma4MdEtfmA.jpg 4940w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1729,pixelWidth:4940,src:\"https://framerusercontent.com/images/68nXnzzt7vbdHN7q9ma4MdEtfmA.jpg\",srcSet:\"https://framerusercontent.com/images/68nXnzzt7vbdHN7q9ma4MdEtfmA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/68nXnzzt7vbdHN7q9ma4MdEtfmA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/68nXnzzt7vbdHN7q9ma4MdEtfmA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/68nXnzzt7vbdHN7q9ma4MdEtfmA.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/68nXnzzt7vbdHN7q9ma4MdEtfmA.jpg 4940w\"},className:\"framer-xxzj4v hidden-pj3a9u hidden-qdked2 hidden-1ii9vdz hidden-1iuxexp\",\"data-border\":true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-32vu1o\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:56.5,intrinsicWidth:368.5,pixelHeight:113,pixelWidth:737,sizes:\"185px\",src:\"https://framerusercontent.com/images/7TpJd4Lq6btzlRwk4iQVdwBGNyo.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/7TpJd4Lq6btzlRwk4iQVdwBGNyo.png?scale-down-to=512 512w,https://framerusercontent.com/images/7TpJd4Lq6btzlRwk4iQVdwBGNyo.png 737w\"},className:\"framer-1msfzo8\",\"data-framer-name\":\"Frame 3587\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-e2hxit\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1reo86a\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-137c46q\",\"data-styles-preset\":\"CmDuRJeCw\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7ebcccca-40dd-46dd-8739-72dccc05bc5b, rgb(255, 255, 255))\"},children:\"Still figuring things out?\"})}),className:\"framer-u9hkxn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qgih7y\",\"data-styles-preset\":\"pjwGzfL7a\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7ebcccca-40dd-46dd-8739-72dccc05bc5b, rgb(255, 255, 255))\"},children:\"Create a business plan with Blueprint, our business planning tool.\"})}),className:\"framer-hqg8op\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-wtxl0l\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xh3DCC8UM:{width:`max(min(${componentViewport?.width||\"100vw\"} - 32px, 1232px) - 32px, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1o6d6hd-container\",nodeId:\"ySLG0RszP\",scopeId:\"k3sz8CTXO\",children:/*#__PURE__*/_jsx(Button,{CIx07aqhO:false,Cu4D0_EOi:\"home\",gDxUiWVA2:\"home\",gtBTPu_hO:\"\",HagJtdLM9:false,height:\"100%\",i8NEUhQou:\"button-click\",ibf40tJYv:\"Build My Free Business Plan\",id:\"ySLG0RszP\",kNVuXmein:false,layoutId:\"ySLG0RszP\",nu83Zx0Mn:\"https://www.ownr.co/blueprint\",style:{width:\"100%\"},variant:\"GO0Y4Kf1I\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:432,intrinsicWidth:572,pixelHeight:864,pixelWidth:1144,sizes:\"400px\",src:\"https://framerusercontent.com/images/UsBUkEJmrdOrIi5rYkqLNGuxuU.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/UsBUkEJmrdOrIi5rYkqLNGuxuU.png?scale-down-to=512 512w,https://framerusercontent.com/images/UsBUkEJmrdOrIi5rYkqLNGuxuU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/UsBUkEJmrdOrIi5rYkqLNGuxuU.png 1144w\"},className:\"framer-11r91t5\",\"data-framer-name\":\"Image\"})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Gm4IiVboT:{background:{alt:\"\",fit:\"fill\",pixelHeight:1729,pixelWidth:4940,sizes:`min(${componentViewport?.width||\"100vw\"} - 80px, 1232px)`,src:\"https://framerusercontent.com/images/68nXnzzt7vbdHN7q9ma4MdEtfmA.jpg\",srcSet:\"https://framerusercontent.com/images/68nXnzzt7vbdHN7q9ma4MdEtfmA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/68nXnzzt7vbdHN7q9ma4MdEtfmA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/68nXnzzt7vbdHN7q9ma4MdEtfmA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/68nXnzzt7vbdHN7q9ma4MdEtfmA.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/68nXnzzt7vbdHN7q9ma4MdEtfmA.jpg 4940w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1729,pixelWidth:4940,src:\"https://framerusercontent.com/images/68nXnzzt7vbdHN7q9ma4MdEtfmA.jpg\",srcSet:\"https://framerusercontent.com/images/68nXnzzt7vbdHN7q9ma4MdEtfmA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/68nXnzzt7vbdHN7q9ma4MdEtfmA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/68nXnzzt7vbdHN7q9ma4MdEtfmA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/68nXnzzt7vbdHN7q9ma4MdEtfmA.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/68nXnzzt7vbdHN7q9ma4MdEtfmA.jpg 4940w\"},className:\"framer-1tdq4w7 hidden-pj3a9u hidden-f4gq7q hidden-1ii9vdz hidden-1iuxexp\",\"data-border\":true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gvxunu\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:56.5,intrinsicWidth:368.5,pixelHeight:113,pixelWidth:737,sizes:\"185px\",src:\"https://framerusercontent.com/images/7TpJd4Lq6btzlRwk4iQVdwBGNyo.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/7TpJd4Lq6btzlRwk4iQVdwBGNyo.png?scale-down-to=512 512w,https://framerusercontent.com/images/7TpJd4Lq6btzlRwk4iQVdwBGNyo.png 737w\"},className:\"framer-1okoq7h\",\"data-framer-name\":\"Frame 3587\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-p5orr7\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1avvjgk\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-137c46q\",\"data-styles-preset\":\"CmDuRJeCw\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7ebcccca-40dd-46dd-8739-72dccc05bc5b, rgb(255, 255, 255))\"},children:\"Still figuring things out?\"})}),className:\"framer-1k0isot\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qgih7y\",\"data-styles-preset\":\"pjwGzfL7a\",style:{\"--framer-text-color\":\"var(--token-7ebcccca-40dd-46dd-8739-72dccc05bc5b, rgb(255, 255, 255))\"},children:\"Create a business plan with Blueprint, our business planning tool.\"})}),className:\"framer-xwkfq2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-kegwv0\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(Container,{className:\"framer-mothmt-container\",nodeId:\"HXGzWdsMt\",scopeId:\"k3sz8CTXO\",children:/*#__PURE__*/_jsx(Button,{CIx07aqhO:false,Cu4D0_EOi:\"home\",gDxUiWVA2:\"home\",gtBTPu_hO:\"\",HagJtdLM9:false,height:\"100%\",i8NEUhQou:\"button-click\",ibf40tJYv:\"Build My Free Business Plan\",id:\"HXGzWdsMt\",kNVuXmein:false,layoutId:\"HXGzWdsMt\",nu83Zx0Mn:\"https://www.ownr.co/blueprint\",variant:\"UqGVamJJ3\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Gm4IiVboT:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:432,intrinsicWidth:572,pixelHeight:864,pixelWidth:1144,sizes:\"580.6065px\",src:\"https://framerusercontent.com/images/UsBUkEJmrdOrIi5rYkqLNGuxuU.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/UsBUkEJmrdOrIi5rYkqLNGuxuU.png?scale-down-to=512 512w,https://framerusercontent.com/images/UsBUkEJmrdOrIi5rYkqLNGuxuU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/UsBUkEJmrdOrIi5rYkqLNGuxuU.png 1144w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:432,intrinsicWidth:572,pixelHeight:864,pixelWidth:1144,src:\"https://framerusercontent.com/images/UsBUkEJmrdOrIi5rYkqLNGuxuU.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/UsBUkEJmrdOrIi5rYkqLNGuxuU.png?scale-down-to=512 512w,https://framerusercontent.com/images/UsBUkEJmrdOrIi5rYkqLNGuxuU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/UsBUkEJmrdOrIi5rYkqLNGuxuU.png 1144w\"},className:\"framer-xot2t8\",\"data-framer-name\":\"Image\"})})]})}),isDisplayed6()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c1rjELC96:{background:{alt:\"\",fit:\"fill\",pixelHeight:1729,pixelWidth:4940,sizes:`min(${componentViewport?.width||\"100vw\"} - 128px, 1232px)`,src:\"https://framerusercontent.com/images/68nXnzzt7vbdHN7q9ma4MdEtfmA.jpg\",srcSet:\"https://framerusercontent.com/images/68nXnzzt7vbdHN7q9ma4MdEtfmA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/68nXnzzt7vbdHN7q9ma4MdEtfmA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/68nXnzzt7vbdHN7q9ma4MdEtfmA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/68nXnzzt7vbdHN7q9ma4MdEtfmA.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/68nXnzzt7vbdHN7q9ma4MdEtfmA.jpg 4940w\"}},syu6cCCcY:{background:{alt:\"\",fit:\"fill\",pixelHeight:1729,pixelWidth:4940,sizes:`min(${componentViewport?.width||\"100vw\"} - 128px, 1232px)`,src:\"https://framerusercontent.com/images/68nXnzzt7vbdHN7q9ma4MdEtfmA.jpg\",srcSet:\"https://framerusercontent.com/images/68nXnzzt7vbdHN7q9ma4MdEtfmA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/68nXnzzt7vbdHN7q9ma4MdEtfmA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/68nXnzzt7vbdHN7q9ma4MdEtfmA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/68nXnzzt7vbdHN7q9ma4MdEtfmA.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/68nXnzzt7vbdHN7q9ma4MdEtfmA.jpg 4940w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1729,pixelWidth:4940,sizes:`min(${componentViewport?.width||\"100vw\"} - 208px, 1232px)`,src:\"https://framerusercontent.com/images/68nXnzzt7vbdHN7q9ma4MdEtfmA.jpg\",srcSet:\"https://framerusercontent.com/images/68nXnzzt7vbdHN7q9ma4MdEtfmA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/68nXnzzt7vbdHN7q9ma4MdEtfmA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/68nXnzzt7vbdHN7q9ma4MdEtfmA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/68nXnzzt7vbdHN7q9ma4MdEtfmA.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/68nXnzzt7vbdHN7q9ma4MdEtfmA.jpg 4940w\"},className:\"framer-1yy7b6z hidden-f4gq7q hidden-qdked2\",\"data-border\":true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uyf7cx\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:56.5,intrinsicWidth:368.5,pixelHeight:113,pixelWidth:737,sizes:\"185px\",src:\"https://framerusercontent.com/images/7TpJd4Lq6btzlRwk4iQVdwBGNyo.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/7TpJd4Lq6btzlRwk4iQVdwBGNyo.png?scale-down-to=512 512w,https://framerusercontent.com/images/7TpJd4Lq6btzlRwk4iQVdwBGNyo.png 737w\"},className:\"framer-14wjl6l\",\"data-framer-name\":\"Frame 3587\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xiri3p\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-npxm0d\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v64\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-137c46q\",\"data-styles-preset\":\"CmDuRJeCw\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7ebcccca-40dd-46dd-8739-72dccc05bc5b, rgb(255, 255, 255))\"},children:\"Still figuring things out?\"})}),className:\"framer-1jto0ec\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v65\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qgih7y\",\"data-styles-preset\":\"pjwGzfL7a\",style:{\"--framer-text-color\":\"var(--token-7ebcccca-40dd-46dd-8739-72dccc05bc5b, rgb(255, 255, 255))\"},children:\"Create a business plan with Blueprint, our business planning tool.\"})}),className:\"framer-cse15o\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kx1119\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(Container,{className:\"framer-219wvo-container\",nodeId:\"She9CDXb3\",rendersWithMotion:true,scopeId:\"k3sz8CTXO\",children:/*#__PURE__*/_jsx(ButtonWithTrackingOnClick219wvoWithMappedReactProps1v1ipky,{CIx07aqhO:false,Cu4D0_EOi:\"home\",gDxUiWVA2:\"home\",gtBTPu_hO:\"homepage-business-plan-cta\",HagJtdLM9:true,height:\"100%\",i8NEUhQou:\"button-click\",ibf40tJYv:getLocalizedValue(\"v66\",activeLocale)??\"Build My Free Business Plan\",id:\"She9CDXb3\",kNVuXmein:false,layoutId:\"She9CDXb3\",nu83Zx0Mn:\"https://www.ownr.co/blueprint\",variant:\"UqGVamJJ3\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c1rjELC96:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:432,intrinsicWidth:572,pixelHeight:864,pixelWidth:1144,sizes:\"665.3472px\",src:\"https://framerusercontent.com/images/UsBUkEJmrdOrIi5rYkqLNGuxuU.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/UsBUkEJmrdOrIi5rYkqLNGuxuU.png?scale-down-to=512 512w,https://framerusercontent.com/images/UsBUkEJmrdOrIi5rYkqLNGuxuU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/UsBUkEJmrdOrIi5rYkqLNGuxuU.png 1144w\"}},syu6cCCcY:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:432,intrinsicWidth:572,pixelHeight:864,pixelWidth:1144,sizes:\"681.2361px\",src:\"https://framerusercontent.com/images/UsBUkEJmrdOrIi5rYkqLNGuxuU.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/UsBUkEJmrdOrIi5rYkqLNGuxuU.png?scale-down-to=512 512w,https://framerusercontent.com/images/UsBUkEJmrdOrIi5rYkqLNGuxuU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/UsBUkEJmrdOrIi5rYkqLNGuxuU.png 1144w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:432,intrinsicWidth:572,pixelHeight:864,pixelWidth:1144,sizes:\"728.9028px\",src:\"https://framerusercontent.com/images/UsBUkEJmrdOrIi5rYkqLNGuxuU.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/UsBUkEJmrdOrIi5rYkqLNGuxuU.png?scale-down-to=512 512w,https://framerusercontent.com/images/UsBUkEJmrdOrIi5rYkqLNGuxuU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/UsBUkEJmrdOrIi5rYkqLNGuxuU.png 1144w\"},className:\"framer-dcejpv\",\"data-framer-name\":\"Image\"})})]})}),isDisplayed6()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jifwvi hidden-f4gq7q hidden-qdked2\",\"data-framer-name\":\"Rocket Trail\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-xpibvz\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:592,intrinsicWidth:611,svg:'<svg width=\"611\" height=\"592\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path d=\"M272.898 339.338h-.661.661Zm294.601 106.416a.66.66 0 0 1 .796.489l1.379 5.786a.66.66 0 0 1-1.286.307l-1.226-5.143-5.143 1.226a.662.662 0 0 1-.306-1.286l5.786-1.379ZM457.621 66.747a.66.66 0 1 1 1.279.33l-1.279-.33Zm4.785-15.466a.661.661 0 0 1-1.301-.235l1.301.235Zm.573-15.09a.66.66 0 1 1 1.319.08l-1.319-.08Zm.304-16.186a.662.662 0 0 1-1.285.31l1.285-.31Zm-9.229-11.094a.661.661 0 0 1 .555-1.2l-.555 1.2Zm-15.638-.55a.661.661 0 1 1 .454 1.241l-.454-1.241Zm-12.765 8.158a.66.66 0 1 1-.725-1.105l.725 1.105Zm-13.785 8.777a.661.661 0 0 1 .856 1.008l-.856-1.008Zm-10.202 11.153a.661.661 0 0 1-.927-.943l.927.943ZM389.56 47.186a.662.662 0 0 1 .98.887l-.98-.887Zm-8.905 12.332a.66.66 0 1 1-1.019-.843l1.019.843Zm-11.07 11.85a.661.661 0 0 1 1.053.799l-1.053-.8Zm-7.894 13.013a.66.66 0 0 1-1.08-.763l1.08.763Zm-10.198 12.622a.662.662 0 0 1 1.105.726l-1.105-.726Zm-7.024 13.526a.661.661 0 1 1-1.126-.691l1.126.691Zm-9.377 13.229a.66.66 0 1 1 1.148.656l-1.148-.656Zm-6.153 13.862a.661.661 0 0 1-1.166-.623l1.166.623Zm-8.567 13.753a.662.662 0 0 1 1.184.587l-1.184-.587Zm-5.341 14.246a.662.662 0 0 1-1.201-.553l1.201.553Zm-7.741 14.264a.661.661 0 0 1 1.218.514l-1.218-.514Zm-4.463 14.531a.661.661 0 0 1-1.232-.478l1.232.478Zm-6.831 14.688a.66.66 0 1 1 1.247.437l-1.247-.437Zm-3.529 14.791a.662.662 0 0 1-1.261-.397l1.261.397Zm-5.85 15.125a.66.66 0 1 1 1.274.352l-1.274-.352Zm-2.501 14.995a.661.661 0 0 1-1.286-.307l1.286.307Zm-4.745 15.497a.661.661 0 0 1 1.297.257l-1.297-.257Zm-1.363 15.142a.66.66 0 1 1-1.305-.207l1.305.207Zm-3.499 15.827a.661.661 0 1 1 1.313.15l-1.313-.15Zm-.092 15.2a.66.66 0 1 1-1.318-.094l1.318.094Zm-2.09 16.073a.661.661 0 1 1 1.321.031l-1.321-.031Zm1.296 15.101a.66.66 0 1 1-1.321.023l1.321-.023Zm-.755 15.855a.66.66 0 1 1 1.32-.073l-1.32.073Zm2.406 14.727a.66.66 0 1 1-1.316.122l1.316-.122Zm.486 15.948a.661.661 0 0 1 1.31-.178l-1.31.178Zm3.621 14.499a.661.661 0 1 1-1.301.234l1.301-.234Zm1.889 15.8a.661.661 0 0 1 1.288-.298l-1.288.298Zm4.976 14.054a.66.66 0 1 1-1.271.361l1.271-.361Zm3.504 15.515a.66.66 0 1 1 1.248-.434l-1.248.434Zm6.518 13.41a.66.66 0 1 1-1.22.507l1.22-.507Zm5.386 14.983a.66.66 0 1 1 1.182-.591l-1.182.591Zm8.278 12.421a.662.662 0 0 1-1.136.675l1.136-.675Zm7.577 14.015a.66.66 0 0 1 1.073-.771l-1.073.771Zm10.24 10.865a.662.662 0 0 1-.999.865l.999-.865ZM337.8 531.28a.662.662 0 0 1 .9-.968l-.9.968Zm12.27 8.465a.661.661 0 0 1-.784 1.064l.784-1.064Zm12.633 9.634a.66.66 0 1 1 .633-1.16l-.633 1.16Zm14.055 5.032a.662.662 0 0 1-.47 1.236l.47-1.236Zm14.823 5.744a.661.661 0 0 1 .275-1.293l-.275 1.293Zm14.905.715a.661.661 0 0 1-.084 1.319l.084-1.319Zm15.839 1.126a.661.661 0 0 1-.114-1.317l.114 1.317Zm14.469-3.572a.66.66 0 1 1 .286 1.29l-.286-1.29Zm15.591-3.163a.66.66 0 1 1-.448-1.243l.448 1.243Zm13.19-7.002a.661.661 0 0 1 .577 1.189l-.577-1.189Zm14.555-6.486a.661.661 0 0 1-.691-1.127l.691 1.127Zm11.594-9.389a.66.66 0 1 1 .78 1.066l-.78-1.066Zm13.24-8.815a.662.662 0 0 1-.86-1.005l.86 1.005Zm10.066-10.968a.66.66 0 1 1 .92.949l-.92-.949Zm11.978-10.436a.66.66 0 1 1-.974-.893l.974.893Zm8.771-12.07a.661.661 0 0 1 1.017.844l-1.017-.844Zm10.899-11.653a.661.661 0 1 1-1.055-.796l1.055.796Zm7.677-12.879a.661.661 0 0 1 1.086.754l-1.086-.754Zm9.827-12.386a.66.66 0 1 1-1.114-.711l1.114.711ZM455.548 74.358c.749-2.62 1.44-5.157 2.073-7.61l1.279.33a297.29 297.29 0 0 1-2.082 7.644l-1.27-.364Zm5.557-23.312c.994-5.51 1.609-10.453 1.874-14.854l1.319.08c-.269 4.462-.89 9.458-1.892 15.009l-1.301-.235Zm.893-30.73c-1.45-6.01-4.215-9.68-7.944-11.405l.555-1.2c4.21 1.948 7.164 6.035 8.674 12.295l-1.285.31ZM438.87 9.601c-4.033 1.475-8.467 3.8-13.219 6.917l-.725-1.105c4.81-3.156 9.336-5.534 13.49-7.053l.454 1.241Zm-26.148 16.702c-3.587 3.044-7.282 6.433-11.058 10.145l-.927-.943c3.796-3.732 7.515-7.143 11.129-10.21l.856 1.008Zm-22.182 21.77a340.138 340.138 0 0 0-9.885 11.445l-1.019-.843a341.493 341.493 0 0 1 9.924-11.489l.98.887Zm-19.902 24.094a438.198 438.198 0 0 0-8.947 12.214l-1.08-.763a441.291 441.291 0 0 1 8.974-12.25l1.053.799Zm-18.04 25.562a499.462 499.462 0 0 0-8.129 12.8l-1.126-.691a501.458 501.458 0 0 1 8.15-12.835l1.105.726Zm-16.358 26.685a523.518 523.518 0 0 0-7.301 13.206l-1.166-.623a526.135 526.135 0 0 1 7.319-13.239l1.148.656Zm-14.684 27.546a525.458 525.458 0 0 0-6.525 13.659l-1.201-.553a526.526 526.526 0 0 1 6.542-13.693l1.184.587Zm-13.048 28.437a503.727 503.727 0 0 0-5.681 14.017l-1.232-.478a505.055 505.055 0 0 1 5.695-14.053l1.218.514Zm-11.265 29.142a473.068 473.068 0 0 0-4.776 14.354l-1.261-.397a473.862 473.862 0 0 1 4.79-14.394l1.247.437Zm-9.352 29.831a433.259 433.259 0 0 0-3.775 14.643l-1.286-.307a435.313 435.313 0 0 1 3.787-14.688l1.274.352Zm-7.223 30.397a393.45 393.45 0 0 0-2.66 14.885l-1.305-.207a395.73 395.73 0 0 1 2.668-14.935l1.297.257Zm-4.846 30.862a353.049 353.049 0 0 0-1.405 15.05l-1.318-.094c.361-5.045.833-10.082 1.41-15.106l1.313.15Zm-2.174 31.154a322.489 322.489 0 0 0-.089 7.555h-1.322c0-2.529.03-5.058.09-7.586l1.321.031Zm-.089 7.555c0 2.522.022 5.028.064 7.515l-1.321.023a437.458 437.458 0 0 1-.065-7.538h1.322Zm.629 23.297c.274 5.012.637 9.946 1.086 14.8l-1.316.122a397.24 397.24 0 0 1-1.09-14.849l1.32-.073Zm2.882 30.57c.677 4.987 1.449 9.88 2.311 14.677l-1.301.234a349.529 349.529 0 0 1-2.32-14.733l1.31-.178Zm5.488 30.179a297.73 297.73 0 0 0 3.688 14.352l-1.271.361a298.6 298.6 0 0 1-3.705-14.415l1.288-.298Zm8.44 29.433a250.1 250.1 0 0 0 5.27 13.844l-1.22.507a250.346 250.346 0 0 1-5.298-13.917l1.248-.434Zm11.838 28.236a204.028 204.028 0 0 0 7.096 13.012l-1.136.675a205.44 205.44 0 0 1-7.142-13.096l1.182-.591Zm15.746 26.256a163.018 163.018 0 0 0 9.167 11.636l-.999.865a164.166 164.166 0 0 1-9.241-11.73l1.073-.771Zm20.118 23.003a129.705 129.705 0 0 0 11.37 9.433l-.784 1.064c-3.94-2.9-7.772-6.08-11.486-9.529l.9-.968Zm24.636 17.907a107.88 107.88 0 0 0 13.422 6.192l-.47 1.236a109.235 109.235 0 0 1-13.585-6.268l.633-1.16Zm28.52 10.643c4.8 1.02 9.681 1.693 14.63 2.008l-.084 1.319a102.622 102.622 0 0 1-14.821-2.034l.275-1.293Zm30.355 1.817a112.201 112.201 0 0 0 14.583-2.255l.286 1.29a113.545 113.545 0 0 1-14.755 2.282l-.114-1.317Zm29.726-6.661a139.84 139.84 0 0 0 13.638-5.759l.577 1.189a141.079 141.079 0 0 1-13.767 5.813l-.448-1.243Zm27.502-13.372a182.591 182.591 0 0 0 12.285-8.262l.78 1.066a183.61 183.61 0 0 1-12.374 8.323l-.691-1.127Zm24.665-18.082a237.342 237.342 0 0 0 10.926-9.963l.92.949a238.949 238.949 0 0 1-10.986 10.019l-.86-1.005Zm21.93-21.292a302.288 302.288 0 0 0 9.745-11.177l1.017.844a302.25 302.25 0 0 1-9.788 11.226l-.974-.893Zm19.589-23.626a374.562 374.562 0 0 0 8.732-12.083l1.086.754a376.322 376.322 0 0 1-8.763 12.125l-1.055-.796Zm17.445-25.18a439.11 439.11 0 0 0 4.021-6.416l1.126.693a450.346 450.346 0 0 1-4.033 6.434l-1.114-.711Z\" fill=\"url(#b)\"/><path d=\"M157.408 515.858a.66.66 0 1 1 .994.871l-.994-.871Zm-1.023 3.139a.66.66 0 1 1-.982-.884l.982.884Zm-15.802 14.116a.662.662 0 0 1 .897.971l-.897-.971Zm-3.606 5.029a.66.66 0 1 1-.872-.993l.872.993Zm-17.322 12.197a.66.66 0 1 1 .779 1.068l-.779-1.068Zm-4.169 4.58a.66.66 0 1 1-.751-1.088l.751 1.088Zm-18.65 10.002a.66.66 0 0 1 .638 1.158l-.637-1.158Zm-4.735 4.003a.66.66 0 1 1-.6-1.178l.6 1.178Zm-19.947 7.132a.661.661 0 0 1 .432 1.249l-.432-1.249Zm-5.364 3.094a.66.66 0 1 1-.368-1.269l.368 1.269Zm-20.979 2.177a.661.661 0 0 1 .025 1.322l-.025-1.322Zm-6.107 1.077a.661.661 0 0 1 .137-1.315l-.137 1.315Zm-18.132-9.807a.662.662 0 0 1-.997.868l.997-.868Zm-4.413-4.266a.66.66 0 1 1 1.183-.59l-1.183.59Zm-1.86-20.883a.661.661 0 1 1-1.318-.103l1.317.103Zm-.584-6.177a.66.66 0 0 1 1.305.21l-1.305-.21Zm6.671-20.048a.66.66 0 1 1-1.247-.438l1.247.438Zm137.016-4.494c-.668.761-1.34 1.517-2.017 2.268l-.982-.884c.673-.747 1.341-1.499 2.005-2.255l.994.871Zm-16.922 17.355a240.257 240.257 0 0 1-4.503 4.058l-.872-.993a237.288 237.288 0 0 0 4.478-4.036l.897.971Zm-21.046 17.323a225.709 225.709 0 0 1-4.948 3.512l-.751-1.088a226.552 226.552 0 0 0 4.92-3.492l.779 1.068Zm-22.96 14.672a185.86 185.86 0 0 1-5.373 2.845l-.6-1.178a186.66 186.66 0 0 0 5.336-2.825l.637 1.158Zm-24.888 11.226c-1.957.677-3.89 1.292-5.796 1.845l-.368-1.269a118.464 118.464 0 0 0 5.732-1.825l.432 1.249Zm-26.75 5.344a50.432 50.432 0 0 1-6.132-.245l.137-1.315c1.905.198 3.898.277 5.97.238l.025 1.322Zm-25.26-9.184a24.32 24.32 0 0 1-3.417-5.134l1.183-.59a22.997 22.997 0 0 0 3.23 4.856l-.997.868Zm-6.595-26.12a75.02 75.02 0 0 1 .734-6.074l1.305.21a73.685 73.685 0 0 0-.722 5.967l-1.317-.103Zm6.158-26.56c.342-.971.698-1.955 1.069-2.951l1.239.461c-.369.989-.722 1.965-1.06 2.928l-1.248-.438Z\" fill=\"url(#c)\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M578.713 385.695c3.296-3.761 7.235-6.396 11.381-6.86l.059.069.006-.004 3.258 3.323c2.712 3.166 3.786 7.774 3.618 12.768h.002c-.083 2.579-.499 5.263-1.193 7.902a40.733 40.733 0 0 1-1.856 5.458l2.49 4.795-4.944 12.494-3.325-3.387-4.164-7.024s.002 0 .004-.004l-8.118-3.198-10.877 3.153-3.176-3.243-.147-.145 4.978-12.484 5.087-1.783c1.609-4.34 4.015-8.521 6.917-11.83Z\" fill=\"#ABBAE1\" stroke=\"#ABBAE1\" stroke-width=\"1.441\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"m570.67 416.689.027 11.185.078.069 3.27 3.251 7.674-8.152c2.148-2.281-.153-6.179-2.25-8.339-.546-.563-1.525-1.691-2.709-2.158-2.928-1.155-6.097 1.002-6.09 4.144Z\" fill=\"#F6BE4F\" stroke=\"#F6BE4F\" stroke-width=\"1.441\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"m576.654 421.546-2.368 2.516-3.589 3.812-.027-11.185c-.007-3.142 3.162-5.299 6.09-4.144 2.928 1.153 3.766 4.891 1.611 7.178\" fill=\"#FCEDCA\"/><path d=\"m576.654 421.546-2.368 2.516-3.589 3.812-.027-11.185c-.007-3.142 3.162-5.299 6.09-4.144 2.928 1.153 3.766 4.891 1.611 7.178\" stroke=\"#231E56\" stroke-width=\"1.441\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M593.712 391.603c-.084 2.579-.499 5.263-1.194 7.902a40.592 40.592 0 0 1-1.856 5.458 37.172 37.172 0 0 1-1.516 3.196l-.407-.162-18.024-7.097c1.483-5.503 4.348-11.044 7.997-15.206l15 5.909Z\" fill=\"#F0F4FF\" stroke=\"#231E56\" stroke-width=\"1.441\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M589.146 408.159c-1.377 2.59-3.015 4.924-4.844 6.808-.083.088-.167.173-.252.258l-14.449-5.691c-.09-2.72.313-5.671 1.115-8.634l18.024 7.098.406.161Zm4.566-16.556-14.999-5.908c3.296-3.761 7.236-6.396 11.381-6.86 2.713 3.166 3.787 7.774 3.618 12.768Z\" fill=\"#FBA4A4\" stroke=\"#231E56\" stroke-width=\"1.441\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M583.012 400.858a4.294 4.294 0 0 0 4.298-4.29 4.294 4.294 0 0 0-4.298-4.29 4.294 4.294 0 0 0-4.299 4.29 4.294 4.294 0 0 0 4.299 4.29Z\" fill=\"#fff\" stroke=\"#231E56\" stroke-width=\"1.441\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"m593.152 409.758-4.943 12.494-4.164-7.023s.002 0 .004-.004c.086-.086.169-.171.252-.258 1.829-1.884 3.467-4.218 4.845-6.808a37.48 37.48 0 0 0 1.517-3.196l2.489 4.795Zm-26.443-10.45-4.978 12.484 7.856-2.27v-.006c-.004-.122-.006-.24-.006-.362-.039-2.623.37-5.442 1.143-8.272.306-1.126.67-2.253 1.09-3.363l-5.105 1.789Z\" fill=\"#D4DDF3\" stroke=\"#231E56\" stroke-width=\"1.441\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></g><defs><linearGradient id=\"b\" x1=\"392.479\" y1=\"56.92\" x2=\"392.478\" y2=\"559.19\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#1058A9\"/><stop offset=\".122\" stop-color=\"#fff\"/><stop offset=\".39\" stop-color=\"#fff\" stop-opacity=\"0\"/><stop offset=\".683\" stop-color=\"#fff\" stop-opacity=\"0\"/><stop offset=\".815\" stop-color=\"#fff\"/><stop offset=\"1\" stop-color=\"#1058A9\"/></linearGradient><linearGradient id=\"c\" x1=\"83.969\" y1=\"540.584\" x2=\"123.005\" y2=\"39.833\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#1058A9\"/><stop offset=\".122\" stop-color=\"#fff\"/><stop offset=\".815\" stop-color=\"#fff\"/><stop offset=\"1\" stop-color=\"#1058A9\"/></linearGradient><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h611v592H0z\"/></clipPath></defs></svg>',withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d6e6a0\",\"data-framer-name\":\"Testimonials\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ni0cdw\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-755h94\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Gm4IiVboT:{y:(componentViewport?.y||0)+78+6901.5+72+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,children:/*#__PURE__*/_jsx(Container,{className:\"framer-kz0j9m-container\",nodeId:\"XHfFuoMMs\",scopeId:\"k3sz8CTXO\",children:/*#__PURE__*/_jsx(Pill,{e5KZkPk6L:\"var(--token-fd6d18e2-f769-44a0-8ce3-bd764d176b28, rgb(57, 27, 147))\",h9nZbCkbW:\"rgb(255, 255, 255)\",height:\"100%\",id:\"XHfFuoMMs\",jKNIyP3WP:\"0px 4px 8px 0px rgba(37, 22, 125, 0.05)\",layoutId:\"XHfFuoMMs\",OKJXJE54m:{borderColor:\"var(--token-170e6570-679e-4a3b-8261-0290dd0d284f, rgb(95, 61, 200))\",borderStyle:\"solid\",borderWidth:.5},QFoy3BvrC:getLocalizedValue(\"v67\",activeLocale)??\"Testimonials\",sp1vPSCpF:\"var(--token-170e6570-679e-4a3b-8261-0290dd0d284f, rgb(95, 61, 200))\",t_Z_vMXmV:\"Users\",variant:\"a3nu6UJMj\",width:\"100%\",yza3a5i8l:true})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xh3DCC8UM:{children:getLocalizedValue(\"v69\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-137c46q\",\"data-styles-preset\":\"CmDuRJeCw\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-2caa4405-b4b2-4cde-8787-d3028d1af67f, rgba(35, 30, 86, 0.9))\"},children:[\"See what small \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-170e6570-679e-4a3b-8261-0290dd0d284f, rgb(95, 61, 200))\"},children:\"business owners \"}),\"across Canada say about Ownr\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v68\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-137c46q\",\"data-styles-preset\":\"CmDuRJeCw\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2caa4405-b4b2-4cde-8787-d3028d1af67f, rgba(35, 30, 86, 0.9))\"},children:[\"See what small \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-170e6570-679e-4a3b-8261-0290dd0d284f, rgb(95, 61, 200))\"},children:\"business owners \"}),\"across Canada say about Ownr\"]})}),className:\"framer-7jzfwu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c1rjELC96:{width:`calc(${componentViewport?.width||\"100vw\"} - 128px)`},Gm4IiVboT:{width:`calc(${componentViewport?.width||\"100vw\"} - 64px)`,y:(componentViewport?.y||0)+78+6901.5+72+158},syu6cCCcY:{width:`calc(${componentViewport?.width||\"100vw\"} - 80px)`},Xh3DCC8UM:{width:`calc(${componentViewport?.width||\"100vw\"} - 32px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:357,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-fro08o-container\",nodeId:\"kFy7uYWJ7\",scopeId:\"k3sz8CTXO\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Xh3DCC8UM:{variant:\"yrmvk1bNT\"}},children:/*#__PURE__*/_jsx(MCPTestimonials,{height:\"100%\",id:\"kFy7uYWJ7\",layoutId:\"kFy7uYWJ7\",style:{width:\"100%\"},variant:\"C1aE6DJDc\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yo9xpc\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"qpVRMNEcT\"},implicitPathVariables:undefined},{href:{webPageId:\"qpVRMNEcT\"},implicitPathVariables:undefined},{href:{webPageId:\"qpVRMNEcT\"},implicitPathVariables:undefined},{href:{webPageId:\"qpVRMNEcT\"},implicitPathVariables:undefined},{href:{webPageId:\"qpVRMNEcT\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Gm4IiVboT:{y:(componentViewport?.y||0)+78+6901.5+72+563+0},Xh3DCC8UM:{width:`max(${componentViewport?.width||\"100vw\"} - 32px, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1801w79-container\",nodeId:\"RKTerWPQV\",rendersWithMotion:true,scopeId:\"k3sz8CTXO\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c1rjELC96:{nu83Zx0Mn:resolvedLinks3[4]},Gm4IiVboT:{nu83Zx0Mn:resolvedLinks3[2]},syu6cCCcY:{nu83Zx0Mn:resolvedLinks3[3]},Xh3DCC8UM:{nu83Zx0Mn:resolvedLinks3[1],style:{height:\"100%\",width:\"100%\"},variant:\"lBvUI4Ufj\"}},children:/*#__PURE__*/_jsx(ButtonWithTrackingOnClick1801w79WithMappedReactProps1v1ipky,{CIx07aqhO:false,Cu4D0_EOi:\"home\",gDxUiWVA2:\"arrow-up-right\",gtBTPu_hO:\"homepage-testimonials-cta\",HagJtdLM9:false,height:\"100%\",i8NEUhQou:\"button-click\",ibf40tJYv:getLocalizedValue(\"v70\",activeLocale)??\"See All Reviews\",id:\"RKTerWPQV\",kNVuXmein:true,layoutId:\"RKTerWPQV\",nu83Zx0Mn:resolvedLinks3[0],style:{height:\"100%\"},variant:\"eDi_wdAh5\",width:\"100%\"})})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-jqhkd3\",\"data-framer-name\":\"FAQ Section\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c1rjELC96:{width:`calc(${componentViewport?.width||\"100vw\"} - 128px)`},Gm4IiVboT:{width:`calc(${componentViewport?.width||\"100vw\"} - 64px)`,y:(componentViewport?.y||0)+78+7640.5+56+0},syu6cCCcY:{width:`calc(${componentViewport?.width||\"100vw\"} - 80px)`},Xh3DCC8UM:{width:`calc(${componentViewport?.width||\"100vw\"} - 32px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:70,width:`calc(${componentViewport?.width||\"100vw\"} - 208px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-gczrx5-container\",nodeId:\"WIMJLiZ_4\",scopeId:\"k3sz8CTXO\",children:/*#__PURE__*/_jsx(ViewTerms,{height:\"100%\",id:\"WIMJLiZ_4\",layoutId:\"WIMJLiZ_4\",RLbgH86j0:getLocalizedValue(\"v71\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{children:'* For sole proprietorship registration, \"Save $49\" offer is inclusive of any applicable taxes, and for incorporation, \"Save $300\" offer is inclusive of any applicable taxes (\"Offer\"). Offer available when you register or incorporate with Ownr and apply and get approved for a new RBC business deposit account associated with the business registered or incorporated with Ownr (\"BDA\") within 60 days of purchase (\"Application Criteria\"). Royal Bank of Canada (not Ownr or RBC Ventures Inc.) will in its discretion make approval decisions for all BDA applications. Once you complete the Application Criteria, you must log back into your Ownr account and click \\'Confirm Account Open\\' or \u201CRefund Me\u201D. If you received an automatic discount but do not apply and get approved for a BDA and click \u201CConfirm Account Open\u201D within 60 days of payment the discount will be reversed and the amount of the discount will be automatically charged to the credit card you used to pay for your registration. If you have not received an automatic discount, you will receive the Offer as a credit in your BDA within 7-10 business days of clicking \u201CRefund Me\u201D. To qualify for this Offer your BDA must remain open for a period of 1 year from the date it is opened but there is no minimum balance that must be maintained in your BDA. If you received this Offer then change or close your BDA within 1 year of the date it was opened, we reserve the right to charge the credit card that you used to pay for your registration. Offer may be revised or withdrawn at any time without notice.'}),/*#__PURE__*/_jsx(\"p\",{children:\"** Prices vary by province and incorporation type. Service offered in Ontario, Alberta, and British Columbia.\"}),/*#__PURE__*/_jsx(\"p\",{children:\"Additional government fees apply.\"})]}),style:{width:\"100%\"},variant:\"Y3Pn6zZxI\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Gm4IiVboT:{y:(componentViewport?.y||0)+78+7830.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:505,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-cmbe19-container\",nodeId:\"GSljjDY7u\",scopeId:\"k3sz8CTXO\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{c1rjELC96:{variant:\"rIay0FIgt\"},Gm4IiVboT:{variant:\"iOTfP89eB\"},syu6cCCcY:{variant:\"sVMaf9bPi\"},Xh3DCC8UM:{variant:\"wd1FCeyLs\"}},children:/*#__PURE__*/_jsx(Footer,{ceFlMmVfR:\"button-click\",height:\"100%\",id:\"GSljjDY7u\",layoutId:\"GSljjDY7u\",pLcvEViqj:true,QpBO9q47T:\"homepage-footer-start-cta\",style:{width:\"100%\"},variant:\"rkVaPAleg\",width:\"100%\",Xfic1mobF:true})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-L19O9.framer-g6r8az, .framer-L19O9 .framer-g6r8az { display: block; }\",\".framer-L19O9.framer-pj3a9u { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 87px 0px 0px 0px; position: relative; width: 1440px; }\",\".framer-L19O9 .framer-as462k-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 5; }\",\".framer-L19O9 .framer-1gppgk4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-L19O9 .framer-1fq36kv { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px 104px 20px 104px; position: relative; width: 100%; z-index: 1; }\",\".framer-L19O9 .framer-13dogq5 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1232px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-L19O9 .framer-njgwgs { align-content: flex-start; align-items: flex-start; display: flex; flex: 0.9 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 144px 0px 144px 0px; position: relative; width: 1px; }\",\".framer-L19O9 .framer-1at9f95 { --border-bottom-width: 0.5px; --border-color: var(--token-170e6570-679e-4a3b-8261-0290dd0d284f, #5f3dc8); --border-left-width: 0.5px; --border-right-width: 0.5px; --border-style: solid; --border-top-width: 0.5px; align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 64px; border-bottom-right-radius: 64px; border-top-left-radius: 64px; border-top-right-radius: 64px; box-shadow: 0px 2px 6px 0px rgba(37, 22, 125, 0.04); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 8px 18px 8px 14px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-L19O9 .framer-f32fgy, .framer-L19O9 .framer-1u039se { aspect-ratio: 1.0416666666666667 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 25px; }\",\".framer-L19O9 .framer-2lnx10, .framer-L19O9 .framer-1j3qhi3 { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-L19O9 .framer-1tde50k { 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: 0px; position: relative; width: 100%; }\",\".framer-L19O9 .framer-jkgg4z { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-L19O9 .framer-ryhm0k, .framer-L19O9 .framer-1setec3, .framer-L19O9 .framer-mag6fg, .framer-L19O9 .framer-16v5ipe, .framer-L19O9 .framer-640z88, .framer-L19O9 .framer-fo6z74, .framer-L19O9 .framer-yeieyy { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-L19O9 .framer-1n5tcjp, .framer-L19O9 .framer-12vquoe, .framer-L19O9 .framer-ztx2f2, .framer-L19O9 .framer-1kyndbh, .framer-L19O9 .framer-kifygq, .framer-L19O9 .framer-1jxy8jh, .framer-L19O9 .framer-6136t1, .framer-L19O9 .framer-1gho4j1, .framer-L19O9 .framer-49oqg4 { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-L19O9 .framer-eqgvof { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-L19O9 .framer-12l34a0, .framer-L19O9 .framer-1je7jqp { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-L19O9 .framer-12m2w0t-container { flex: none; height: auto; position: relative; width: auto; z-index: 1; }\",\".framer-L19O9 .framer-1dzcoqb-container, .framer-L19O9 .framer-1x02au5-container, .framer-L19O9 .framer-1n1ulub-container, .framer-L19O9 .framer-1nsk2hf-container, .framer-L19O9 .framer-lt80qu-container, .framer-L19O9 .framer-1w0pab3-container, .framer-L19O9 .framer-12hqig2-container, .framer-L19O9 .framer-qvupy7-container, .framer-L19O9 .framer-1edwsh0-container, .framer-L19O9 .framer-1utiva6-container, .framer-L19O9 .framer-2hk9rd-container, .framer-L19O9 .framer-1dkovp5-container, .framer-L19O9 .framer-mothmt-container, .framer-L19O9 .framer-219wvo-container, .framer-L19O9 .framer-kz0j9m-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-L19O9 .framer-2x262s { align-content: center; align-items: center; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-L19O9 .framer-gjmfhs { aspect-ratio: 1.5688816855753647 / 1; flex: 0.8 0 0px; height: var(--framer-aspect-ratio-supported, 127px); overflow: visible; position: relative; width: 1px; }\",\".framer-L19O9 .framer-quz7ns { aspect-ratio: 1.389344262295082 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 467px); overflow: visible; position: relative; width: 1px; }\",\".framer-L19O9 .framer-dyovqc { align-content: center; align-items: center; background-color: var(--token-e3df9087-43c9-4198-a799-afd9412fd380, #fcfbff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 104px; position: relative; width: 100%; }\",\".framer-L19O9 .framer-1vwyell { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 193px; justify-content: center; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; padding: 0px; position: absolute; top: 0px; width: 100%; z-index: 0; }\",\".framer-L19O9 .framer-1r75zjl { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 193px; justify-content: center; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; padding: 0px; position: absolute; width: 100%; z-index: 0; }\",\".framer-L19O9 .framer-1nqmo86 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: center; max-width: 750px; padding: 0px; position: relative; width: 100%; }\",\".framer-L19O9 .framer-18b4yco, .framer-L19O9 .framer-13ktkxb, .framer-L19O9 .framer-755h94 { 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: 100%; }\",\".framer-L19O9 .framer-monz6i, .framer-L19O9 .framer-3p81bd { flex: none; height: 1px; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-L19O9 .framer-118q8gk, .framer-L19O9 .framer-hom9z4 { bottom: 0px; flex: none; height: 1px; left: 0px; position: absolute; right: 0px; z-index: 1; }\",\".framer-L19O9 .framer-qxhsxo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 1024px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-L19O9 .framer-xx6ie7 { display: grid; flex: 1 0 0px; gap: 20px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(50px, 1fr)); grid-template-rows: repeat(1, min-content); height: min-content; justify-content: center; max-width: 1024px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-L19O9 .framer-1uiyrw8, .framer-L19O9 .framer-1ex4snk, .framer-L19O9 .framer-7auxoa { --border-bottom-width: 0.5px; --border-color: #bab6bf; --border-left-width: 0.5px; --border-right-width: 0.5px; --border-style: solid; --border-top-width: 0.5px; align-content: center; align-items: center; align-self: center; background-color: #ffffff; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: 0px 4px 8px 0px rgba(37, 22, 125, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 100%; justify-content: space-between; justify-self: center; padding: 24px 24px 32px 24px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-L19O9 .framer-14d2yad, .framer-L19O9 .framer-5aw2dk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 32px 0px; position: relative; width: 100%; }\",\".framer-L19O9 .framer-12jmy8o, .framer-L19O9 .framer-1o2ceca, .framer-L19O9 .framer-d5k8od { aspect-ratio: 1.015625 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 64px); position: relative; width: 65px; }\",\".framer-L19O9 .framer-rqfxld, .framer-L19O9 .framer-1m2yhmy, .framer-L19O9 .framer-lfvjpp, .framer-L19O9 .framer-em9yzg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-L19O9 .framer-19q327r, .framer-L19O9 .framer-pczjsg, .framer-L19O9 .framer-13zqyzi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-L19O9 .framer-1isr5hx { 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: hidden; padding: 0px 0px 32px 0px; position: relative; width: 100%; }\",\".framer-L19O9 .framer-6uxefp { aspect-ratio: 1.1428571428571428 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 105px); left: -73px; position: absolute; top: -67px; width: 120px; z-index: 1; }\",\".framer-L19O9 .framer-15wumkq { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 48px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 123px; }\",\".framer-L19O9 .framer-2ebxwu { align-content: center; align-items: center; background: linear-gradient(180deg, #ffffff 0%, rgb(255, 255, 255) 31.392089000478574%, rgb(252, 251, 255) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 0px 100px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-L19O9 .framer-1ye9vva { aspect-ratio: 1.6931982633863965 / 1; bottom: 0px; flex: none; height: var(--framer-aspect-ratio-supported, 691px); left: 49%; position: absolute; transform: translateX(-50%); width: 1170px; z-index: 0; }\",\".framer-L19O9 .framer-o54lq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: center; max-width: 740px; padding: 0px; position: relative; width: 100%; }\",\".framer-L19O9 .framer-1b87kwd, .framer-L19O9 .framer-xv14zg { 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-L19O9 .framer-1ib9bct { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-L19O9 .framer-o0g4me { --border-bottom-width: 0.5px; --border-color: #5f3dc8; --border-left-width: 0.5px; --border-right-width: 0.5px; --border-style: solid; --border-top-width: 0.5px; align-content: center; align-items: center; background-color: var(--token-7ebcccca-40dd-46dd-8739-72dccc05bc5b, #ffffff); border-bottom-left-radius: 64px; border-bottom-right-radius: 64px; border-top-left-radius: 64px; border-top-right-radius: 64px; box-shadow: 0px 2px 4px 0px rgba(37, 22, 125, 0.04); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 6px 12px 6px 12px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-L19O9 .framer-w36vcd-container, .framer-L19O9 .framer-fro08o-container, .framer-L19O9 .framer-gczrx5-container, .framer-L19O9 .framer-cmbe19-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-L19O9 .framer-e81uhw-container { flex: none; height: 592px; position: relative; width: 100%; }\",\".framer-L19O9 .framer-6hd36u-container { height: 576px; position: relative; width: auto; }\",\".framer-L19O9 .framer-1n8a1se { aspect-ratio: 1440 / 1; bottom: 0px; flex: none; height: var(--framer-aspect-ratio-supported, 1px); left: 0px; position: absolute; right: 0px; z-index: 1; }\",\".framer-L19O9 .framer-yggf4o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; overflow: visible; padding: 0px 104px 0px 104px; position: relative; width: 100%; }\",\".framer-L19O9 .framer-1s8c4v7 { --border-bottom-width: 1.5px; --border-color: #231e56; --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; background-color: #ffffff; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: 6px 6px 0px 0px #231e56; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 892px; overflow: hidden; padding: 32px 44px 32px 44px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 4; }\",\".framer-L19O9 .framer-h2y350 { aspect-ratio: 2.218978102189781 / 1; bottom: 0px; flex: none; position: absolute; right: -6px; top: 0px; width: var(--framer-aspect-ratio-supported, 304px); }\",\".framer-L19O9 .framer-1sro4xp { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-L19O9 .framer-1b7hkfe { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-L19O9 .framer-lg49rr { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 56px); position: relative; width: 56px; }\",\".framer-L19O9 .framer-ix6oox { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-L19O9 .framer-ex4kl3 { 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: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-L19O9 .framer-1rncbb8 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); position: relative; width: 40px; }\",\".framer-L19O9 .framer-lh25bd { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: visible; padding: 180px 104px 80px 104px; position: relative; width: 100%; }\",\".framer-L19O9 .framer-vapw3r { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: center; max-width: 727px; padding: 0px; position: relative; width: 100%; }\",\".framer-L19O9 .framer-1l3d9ow { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 702px; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-L19O9 .framer-axkm56-container { flex: none; height: auto; max-width: 1232px; position: relative; width: 100%; }\",\".framer-L19O9 .framer-1r3mw6i { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 96px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 104px 154px 104px; position: relative; width: 100%; z-index: 1; }\",\".framer-L19O9 .framer-bci49l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 723px; }\",\".framer-L19O9 .framer-9msoyu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-L19O9 .framer-15iuly { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 680px; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-L19O9 .framer-1532non { --border-bottom-width: 0.5px; --border-color: #797484; --border-left-width: 0.5px; --border-right-width: 0.5px; --border-style: solid; --border-top-width: 0.5px; 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; box-shadow: 0px 4px 8px 0px rgba(37, 22, 125, 0.05); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 481px; justify-content: flex-start; max-width: 1240px; overflow: visible; padding: 0px; position: relative; width: 1240px; }\",\".framer-L19O9 .framer-9l4gxt { 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: 375px; }\",\".framer-L19O9 .framer-1tndykj, .framer-L19O9 .framer-18ffox5 { --border-bottom-width: 0.5px; --border-color: #797484; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 16px 0px 16px 0px; position: relative; width: 100%; }\",\".framer-L19O9 .framer-f9o3tb { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: 27px; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-L19O9 .framer-1av8hr5 { aspect-ratio: 6.655172413793103 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 64px); left: -27px; position: absolute; right: -28px; top: 0px; z-index: 0; }\",\".framer-L19O9 .framer-zbk2n2 { 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-L19O9 .framer-i47qs5, .framer-L19O9 .framer-qtzxa, .framer-L19O9 .framer-fzwgsv { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 14px 24px 14px 24px; position: relative; width: 100%; }\",\".framer-L19O9 .framer-1oxvxpz, .framer-L19O9 .framer-j74tyf, .framer-L19O9 .framer-15l8b5a, .framer-L19O9 .framer-rwuv6q, .framer-L19O9 .framer-58k09e, .framer-L19O9 .framer-aege6d, .framer-L19O9 .framer-u0kq9b, .framer-L19O9 .framer-dghzab { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); position: relative; width: 20px; }\",\".framer-L19O9 .framer-zb4zmr, .framer-L19O9 .framer-1xn9oea, .framer-L19O9 .framer-1tybn9u { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-L19O9 .framer-1rxrra1, .framer-L19O9 .framer-6vlqnc, .framer-L19O9 .framer-1udqmmn, .framer-L19O9 .framer-12ntunm { align-content: center; align-items: center; background-color: #f8fafe; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 14px 24px 14px 24px; position: relative; width: 100%; }\",\".framer-L19O9 .framer-129nit7, .framer-L19O9 .framer-1dez18e, .framer-L19O9 .framer-c0nkpo, .framer-L19O9 .framer-1ahai5o, .framer-L19O9 .framer-u9opiy { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-L19O9 .framer-9tu3j3 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 73px; justify-content: flex-start; overflow: hidden; padding: 14px 24px 14px 24px; position: relative; width: 100%; }\",\".framer-L19O9 .framer-145yp6l { --border-bottom-width: 1px; --border-color: #231e56; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; 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; box-shadow: 0px 8px 40px 0px rgba(37, 22, 125, 0.16); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 579px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 290px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-L19O9 .framer-vf1t7u { align-content: center; align-items: center; background-color: #5f3dc8; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 106px; justify-content: center; overflow: hidden; padding: 20px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-L19O9 .framer-dh2nmj { aspect-ratio: 3.935483870967742 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 31px); position: relative; width: 122px; }\",\".framer-L19O9 .framer-pvhiwt, .framer-L19O9 .framer-1vehtvn { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 1px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-L19O9 .framer-nbes5r, .framer-L19O9 .framer-1waq9lf, .framer-L19O9 .framer-i84t8u, .framer-L19O9 .framer-rz3d7t, .framer-L19O9 .framer-uw0ue8 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 51px; justify-content: center; overflow: hidden; padding: 18px 24px 18px 24px; position: relative; width: 100%; }\",\".framer-L19O9 .framer-asojbn, .framer-L19O9 .framer-21t5l4, .framer-L19O9 .framer-111yrbe, .framer-L19O9 .framer-tj8zh7, .framer-L19O9 .framer-19i709j, .framer-L19O9 .framer-1f3kd6m, .framer-L19O9 .framer-yge0yg, .framer-L19O9 .framer-10d257h, .framer-L19O9 .framer-dov2oq, .framer-L19O9 .framer-17t73ut, .framer-L19O9 .framer-4zqo19, .framer-L19O9 .framer-1fh4j9a, .framer-L19O9 .framer-xuicfc, .framer-L19O9 .framer-elzc94, .framer-L19O9 .framer-1er80td, .framer-L19O9 .framer-ubcr94, .framer-L19O9 .framer-d8623s { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 24px; }\",\".framer-L19O9 .framer-1fdjvom, .framer-L19O9 .framer-10knhnh, .framer-L19O9 .framer-wcsmfo, .framer-L19O9 .framer-7zmz19 { align-content: center; align-items: center; background-color: #f8fafe; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 51px; justify-content: center; overflow: hidden; padding: 18px 24px 18px 24px; position: relative; width: 100%; }\",\".framer-L19O9 .framer-eqfjm7, .framer-L19O9 .framer-1lwwkqc { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 73px; justify-content: center; overflow: hidden; padding: 18px 24px 18px 24px; position: relative; width: 100%; }\",\".framer-L19O9 .framer-1s4rl2n { align-content: center; align-items: center; background-color: #5f3dc8; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 48px; justify-content: center; overflow: hidden; padding: 20px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-L19O9 .framer-n2l5zk { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-L19O9 .framer-xn51f { --border-bottom-width: 0.5px; --border-color: #797484; --border-left-width: 0px; --border-right-width: 0.5px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 16px 0px 16px 0px; position: relative; width: 100%; }\",\".framer-L19O9 .framer-14dgwle, .framer-L19O9 .framer-shzrhk { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: 27px; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-L19O9 .framer-66u5ge { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 1px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-L19O9 .framer-106fk55 { --border-bottom-width: 0px; --border-color: #797484; --border-left-width: 0px; --border-right-width: 0.5px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 51px; justify-content: center; overflow: hidden; padding: 18px 24px 18px 24px; position: relative; width: 100%; }\",\".framer-L19O9 .framer-1by41u4, .framer-L19O9 .framer-1xn34lb, .framer-L19O9 .framer-1fhn8zj, .framer-L19O9 .framer-61bpno, .framer-L19O9 .framer-1vlhn1e, .framer-L19O9 .framer-38y0ln, .framer-L19O9 .framer-15pi7az { aspect-ratio: 0.96 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 25px); position: relative; width: 24px; }\",\".framer-L19O9 .framer-h7ysvy, .framer-L19O9 .framer-nr3bs0, .framer-L19O9 .framer-1l0q9n0, .framer-L19O9 .framer-1bfx24k { --border-bottom-width: 0px; --border-color: #797484; --border-left-width: 0px; --border-right-width: 0.5px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; background-color: #f8fafe; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 1px; justify-content: center; overflow: hidden; padding: 18px 24px 18px 24px; position: relative; width: 100%; }\",\".framer-L19O9 .framer-zjzh46, .framer-L19O9 .framer-1ah2o0r { --border-bottom-width: 0px; --border-color: #797484; --border-left-width: 0px; --border-right-width: 0.5px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 1px; justify-content: center; overflow: hidden; padding: 18px 24px 18px 24px; position: relative; width: 100%; }\",\".framer-L19O9 .framer-1hehuu0 { --border-bottom-width: 0px; --border-color: #797484; --border-left-width: 0px; --border-right-width: 0.5px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 73px; justify-content: center; overflow: hidden; padding: 18px 24px 18px 24px; position: relative; width: 100%; }\",\".framer-L19O9 .framer-vjxef6 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-L19O9 .framer-1tv7ifu, .framer-L19O9 .framer-1ltk5dd, .framer-L19O9 .framer-1c8aopo, .framer-L19O9 .framer-hi79rk { align-content: center; align-items: center; background-color: #f8fafe; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 1px; justify-content: center; overflow: hidden; padding: 18px 24px 18px 24px; position: relative; width: 100%; }\",\".framer-L19O9 .framer-1ybxx8i { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 1px; justify-content: center; overflow: hidden; padding: 18px 24px 18px 24px; position: relative; width: 100%; }\",\".framer-L19O9 .framer-1ld26uu { align-content: center; align-items: center; background: linear-gradient(180deg, #fcfbff 0%, rgb(255, 255, 255) 73.57588281863144%, rgb(255, 255, 255) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 104px; position: relative; width: 100%; }\",\".framer-L19O9 .framer-vnioq3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 193px; justify-content: center; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; padding: 0px; position: absolute; top: -3px; width: 100%; z-index: 0; }\",\".framer-L19O9 .framer-8qvwok { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 8px; height: min-content; justify-content: flex-start; max-width: 1240px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-L19O9 .framer-qb1ibf { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; min-width: 368px; padding: 0px; position: relative; width: 1px; }\",\".framer-L19O9 .framer-68pq9o-container { flex: none; height: auto; max-width: 1024px; position: relative; width: 100%; }\",\".framer-L19O9 .framer-2gq231 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 1024px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-L19O9 .framer-mlmb03-container { flex: 1 0 0px; height: 270px; position: relative; width: 1px; }\",\".framer-L19O9 .framer-1s9xs48 { 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: center; max-width: 501px; padding: 0px; position: relative; width: 1px; }\",\".framer-L19O9 .framer-mty2rj { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 442px; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-L19O9 .framer-1jhu39w, .framer-L19O9 .framer-wgdwff { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-L19O9 .framer-q1ka5a { align-content: center; align-items: center; background: linear-gradient(180deg, #eff6fd 0%, rgb(250, 252, 255) 25.141859450021826%, rgb(250, 252, 255) 84.29224043000904%, rgb(241, 247, 253) 104%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 120px 104px 120px 104px; position: relative; width: 100%; }\",\".framer-L19O9 .framer-pa92qk { aspect-ratio: 9.931034482758621 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 145px); left: -132px; position: absolute; right: -158px; top: -8px; z-index: 0; }\",\".framer-L19O9 .framer-1np5ukz { aspect-ratio: 15.157894736842104 / 1; bottom: -4px; flex: none; height: var(--framer-aspect-ratio-supported, 95px); left: -145px; position: absolute; right: -145px; z-index: 0; }\",\".framer-L19O9 .framer-rjr9qm { aspect-ratio: 9.931034482758621 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 145px); left: -132px; position: absolute; right: -158px; top: 1px; z-index: 0; }\",\".framer-L19O9 .framer-38pn1k { aspect-ratio: 15.157894736842104 / 1; bottom: 0px; flex: none; height: var(--framer-aspect-ratio-supported, 95px); left: -145px; position: absolute; right: -145px; z-index: 0; }\",\".framer-L19O9 .framer-xxzj4v { --border-bottom-width: 0.5px; --border-color: var(--token-e4a552aa-62a5-4d12-bf71-89c8be926218, #231e56); --border-left-width: 0.5px; --border-right-width: 0.5px; --border-style: solid; --border-top-width: 0.5px; align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: 0px 12px 42px 0px rgba(35, 30, 86, 0.12); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 1232px; overflow: hidden; padding: 40px 16px 212px 16px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-L19O9 .framer-32vu1o { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 3; }\",\".framer-L19O9 .framer-1msfzo8, .framer-L19O9 .framer-1okoq7h { aspect-ratio: 6.522123893805309 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 57px); overflow: visible; position: relative; width: 185px; }\",\".framer-L19O9 .framer-e2hxit { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 323px; }\",\".framer-L19O9 .framer-1reo86a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 323px; }\",\".framer-L19O9 .framer-u9hkxn, .framer-L19O9 .framer-hqg8op, .framer-L19O9 .framer-1k0isot, .framer-L19O9 .framer-xwkfq2, .framer-L19O9 .framer-1jto0ec, .framer-L19O9 .framer-cse15o { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-L19O9 .framer-wtxl0l { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 48px; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-L19O9 .framer-1o6d6hd-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-L19O9 .framer-11r91t5 { aspect-ratio: 1.3240740740740742 / 1; bottom: -115px; flex: none; height: var(--framer-aspect-ratio-supported, 302px); overflow: visible; position: absolute; right: -137px; width: 400px; }\",\".framer-L19O9 .framer-1tdq4w7 { --border-bottom-width: 0.5px; --border-color: var(--token-e4a552aa-62a5-4d12-bf71-89c8be926218, #231e56); --border-left-width: 0.5px; --border-right-width: 0.5px; --border-style: solid; --border-top-width: 0.5px; 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; box-shadow: 0px 12px 42px 0px rgba(35, 30, 86, 0.12); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 1232px; overflow: hidden; padding: 48px 88px 48px 32px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-L19O9 .framer-gvxunu { 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: 60%; z-index: 3; }\",\".framer-L19O9 .framer-p5orr7, .framer-L19O9 .framer-xiri3p { 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-L19O9 .framer-1avvjgk, .framer-L19O9 .framer-npxm0d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-L19O9 .framer-kegwv0 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 48px; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 246px; }\",\".framer-L19O9 .framer-xot2t8 { aspect-ratio: 1.3240740740740742 / 1; bottom: 0px; flex: none; overflow: visible; position: absolute; right: -172px; top: 0px; width: var(--framer-aspect-ratio-supported, 478px); }\",\".framer-L19O9 .framer-1yy7b6z { --border-bottom-width: 0.5px; --border-color: var(--token-e4a552aa-62a5-4d12-bf71-89c8be926218, #231e56); --border-left-width: 0.5px; --border-right-width: 0.5px; --border-style: solid; --border-top-width: 0.5px; 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; box-shadow: 0px 12px 42px 0px rgba(35, 30, 86, 0.12); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 1232px; overflow: hidden; padding: 104px 88px 104px 88px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-L19O9 .framer-1uyf7cx { 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: 50%; z-index: 3; }\",\".framer-L19O9 .framer-14wjl6l { aspect-ratio: 6.522123893805309 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 28px); overflow: visible; position: relative; width: 185px; }\",\".framer-L19O9 .framer-1kx1119 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 48px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 246px; }\",\".framer-L19O9 .framer-dcejpv { aspect-ratio: 1.3240740740740742 / 1; bottom: 0px; flex: none; overflow: visible; position: absolute; right: 0px; top: 0px; width: var(--framer-aspect-ratio-supported, 552px); }\",\".framer-L19O9 .framer-1jifwvi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 417px; justify-content: flex-start; left: calc(50.00000000000002% - min(1232px, 85.55555555555556%) / 2); max-width: 1232px; overflow: visible; padding: 0px 0px 0px 64px; position: absolute; top: 120px; width: 86%; z-index: 1; }\",\".framer-L19O9 .framer-xpibvz { aspect-ratio: 1.0320945945945945 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 592px); position: relative; width: 611px; }\",\".framer-L19O9 .framer-d6e6a0 { align-content: center; align-items: center; background-color: var(--token-7ebcccca-40dd-46dd-8739-72dccc05bc5b, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 104px 0px 52px 0px; position: relative; width: 100%; }\",\".framer-L19O9 .framer-ni0cdw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 867px; }\",\".framer-L19O9 .framer-7jzfwu { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 687px; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-L19O9 .framer-1yo9xpc { 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: 0px; position: relative; width: 180px; }\",\".framer-L19O9 .framer-1801w79-container { flex: none; height: 48px; position: relative; width: auto; }\",\".framer-L19O9 .framer-jqhkd3 { align-content: center; align-items: center; background: linear-gradient(180deg, #ffffff 0%, rgb(242, 237, 255) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 80px 104px 64px 104px; position: relative; width: 100%; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,'.framer-L19O9[data-border=\"true\"]::after, .framer-L19O9 [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; }','.framer-L19O9[data-hide-scrollbars=\"true\"]::-webkit-scrollbar, .framer-L19O9 [data-hide-scrollbars=\"true\"]::-webkit-scrollbar { width: 0px; height: 0px; }','.framer-L19O9[data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb, .framer-L19O9 [data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb { background: transparent; }','.framer-L19O9[data-hide-scrollbars=\"true\"], .framer-L19O9 [data-hide-scrollbars=\"true\"] { scrollbar-width: none; }',\"@media (max-width: 767px) { .framer-L19O9.framer-pj3a9u { padding: 78px 0px 0px 0px; width: 402px; } .framer-L19O9 .framer-as462k-container, .framer-L19O9 .framer-1n5tcjp, .framer-L19O9 .framer-1r75zjl, .framer-L19O9 .framer-1jxy8jh, .framer-L19O9 .framer-axkm56-container, .framer-L19O9 .framer-gczrx5-container { order: 1; } .framer-L19O9 .framer-1gppgk4, .framer-L19O9 .framer-ryhm0k, .framer-L19O9 .framer-1vwyell, .framer-L19O9 .framer-1ye9vva, .framer-L19O9 .framer-1b87kwd, .framer-L19O9 .framer-o0g4me, .framer-L19O9 .framer-ix6oox, .framer-L19O9 .framer-1rncbb8 { order: 0; } .framer-L19O9 .framer-1fq36kv { justify-content: flex-end; padding: 48px 16px 40px 16px; } .framer-L19O9 .framer-13dogq5 { align-content: flex-start; align-items: flex-start; flex-direction: column; justify-content: flex-end; order: 0; } .framer-L19O9 .framer-njgwgs { flex: none; order: 0; padding: 0px; width: 100%; } .framer-L19O9 .framer-eqgvof { flex-direction: column; width: 100%; } .framer-L19O9 .framer-12l34a0, .framer-L19O9 .framer-1je7jqp, .framer-L19O9 .framer-12hqig2-container, .framer-L19O9 .framer-1jhu39w { width: 100%; } .framer-L19O9 .framer-12m2w0t-container, .framer-L19O9 .framer-1dzcoqb-container, .framer-L19O9 .framer-1w0pab3-container, .framer-L19O9 .framer-1801w79-container { flex: 1 0 0px; width: 1px; } .framer-L19O9 .framer-dyovqc { gap: 0px; overflow: visible; padding: 56px 0px 56px 0px; } .framer-L19O9 .framer-1nqmo86 { align-content: flex-start; align-items: flex-start; justify-content: flex-start; order: 2; padding: 0px 16px 0px 16px; } .framer-L19O9 .framer-18b4yco, .framer-L19O9 .framer-1ib9bct, .framer-L19O9 .framer-13ktkxb, .framer-L19O9 .framer-755h94 { align-content: flex-start; align-items: flex-start; } .framer-L19O9 .framer-monz6i, .framer-L19O9 .framer-1n8a1se { order: 3; } .framer-L19O9 .framer-118q8gk, .framer-L19O9 .framer-xxzj4v, .framer-L19O9 .framer-cmbe19-container { order: 4; } .framer-L19O9 .framer-qxhsxo { align-content: flex-start; align-items: flex-start; order: 5; overflow: auto; } .framer-L19O9 .framer-xx6ie7 { flex: none; gap: 16px; grid-template-columns: repeat(3, minmax(1px, 1fr)); justify-content: start; max-width: 1031px; overflow: auto; padding: 32px 16px 40px 16px; width: 258%; } .framer-L19O9 .framer-1uiyrw8, .framer-L19O9 .framer-1ex4snk, .framer-L19O9 .framer-7auxoa { max-width: 324px; } .framer-L19O9 .framer-15wumkq { order: 6; padding: 0px 16px 0px 16px; width: 100%; } .framer-L19O9 .framer-2ebxwu { gap: 0px; justify-content: flex-start; padding: 56px 0px 80px 0px; } .framer-L19O9 .framer-o54lq { order: 1; padding: 0px 16px 0px 16px; } .framer-L19O9 .framer-w36vcd-container { order: 1; width: auto; } .framer-L19O9 .framer-e81uhw-container, .framer-L19O9 .framer-fro08o-container { order: 2; } .framer-L19O9 .framer-yggf4o { padding: 0px 16px 0px 16px; } .framer-L19O9 .framer-1s8c4v7 { padding: 24px; } .framer-L19O9 .framer-h2y350 { right: -350px; width: var(--framer-aspect-ratio-supported, 536px); } .framer-L19O9 .framer-1sro4xp { flex-direction: column; gap: 24px; justify-content: flex-start; } .framer-L19O9 .framer-1b7hkfe, .framer-L19O9 .framer-mlmb03-container { flex: none; width: 100%; } .framer-L19O9 .framer-ex4kl3 { align-content: center; align-items: center; flex-direction: row; overflow: visible; } .framer-L19O9 .framer-fo6z74 { flex: 1 0 0px; order: 1; width: 1px; } .framer-L19O9 .framer-lh25bd { gap: 32px; padding: 176px 0px 0px 0px; } .framer-L19O9 .framer-vapw3r { align-content: flex-start; align-items: flex-start; max-width: unset; order: 0; padding: 0px 16px 0px 16px; } .framer-L19O9 .framer-1r3mw6i { gap: 32px; padding: 40px 16px 56px 16px; } .framer-L19O9 .framer-bci49l { align-content: flex-start; align-items: flex-start; width: 100%; } .framer-L19O9 .framer-1532non { --border-bottom-width: unset; --border-left-width: unset; --border-right-width: unset; --border-top-width: unset; align-content: flex-start; align-items: flex-start; box-shadow: unset; height: 676px; width: 100%; } .framer-L19O9 .framer-9l4gxt { width: 105px; } .framer-L19O9 .framer-1tndykj { --border-bottom-width: unset; --border-left-width: unset; --border-right-width: unset; --border-top-width: unset; height: 55px; width: 103px; } .framer-L19O9 .framer-zbk2n2 { height: 621px; } .framer-L19O9 .framer-i47qs5 { --border-bottom-width: 0.5px; --border-color: var(--token-b3e8776f-b5ae-439a-bacf-7a4bfabf37ca, #e8e6eb); --border-left-width: 0.5px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0.5px; border-top-left-radius: 12px; flex: 1 0 0px; height: 1px; padding: 8px 8px 8px 12px; will-change: var(--framer-will-change-override, transform); } .framer-L19O9 .framer-1rxrra1, .framer-L19O9 .framer-6vlqnc, .framer-L19O9 .framer-9tu3j3, .framer-L19O9 .framer-1udqmmn, .framer-L19O9 .framer-fzwgsv { --border-bottom-width: 0.5px; --border-color: var(--token-b3e8776f-b5ae-439a-bacf-7a4bfabf37ca, #e8e6eb); --border-left-width: 0.5px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; flex: 1 0 0px; height: 1px; padding: 8px 8px 8px 12px; } .framer-L19O9 .framer-129nit7, .framer-L19O9 .framer-1dez18e, .framer-L19O9 .framer-c0nkpo, .framer-L19O9 .framer-1ahai5o, .framer-L19O9 .framer-u9opiy { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; } .framer-L19O9 .framer-qtzxa { --border-bottom-width: 0.5px; --border-color: var(--token-b3e8776f-b5ae-439a-bacf-7a4bfabf37ca, #e8e6eb); --border-left-width: 0.5px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0.5px; flex: 1 0 0px; height: 1px; padding: 8px 8px 8px 12px; } .framer-L19O9 .framer-12ntunm { --border-bottom-width: 0.5px; --border-color: var(--token-b3e8776f-b5ae-439a-bacf-7a4bfabf37ca, #e8e6eb); --border-left-width: 0.5px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; border-bottom-left-radius: 12px; flex: 1 0 0px; height: 1px; padding: 8px 8px 8px 12px; will-change: var(--framer-will-change-override, transform); } .framer-L19O9 .framer-145yp6l { --border-bottom-width: unset; --border-left-width: unset; --border-right-width: unset; --border-top-width: unset; border-bottom-left-radius: unset; border-bottom-right-radius: unset; border-top-left-radius: unset; border-top-right-radius: unset; box-shadow: unset; flex: 1 0 0px; height: 100%; width: 1px; will-change: unset; } .framer-L19O9 .framer-vf1t7u { border-top-left-radius: 12px; height: 55px; will-change: var(--framer-will-change-override, transform); } .framer-L19O9 .framer-dh2nmj { height: var(--framer-aspect-ratio-supported, 18px); max-width: 71px; width: 80%; } .framer-L19O9 .framer-nbes5r, .framer-L19O9 .framer-1fdjvom, .framer-L19O9 .framer-1waq9lf, .framer-L19O9 .framer-10knhnh, .framer-L19O9 .framer-eqfjm7, .framer-L19O9 .framer-wcsmfo, .framer-L19O9 .framer-i84t8u, .framer-L19O9 .framer-7zmz19 { --border-bottom-width: 0.5px; --border-color: var(--token-b3e8776f-b5ae-439a-bacf-7a4bfabf37ca, #e8e6eb); --border-left-width: 0.5px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; flex: 1 0 0px; height: 1px; } .framer-L19O9 .framer-xn51f { --border-color: var(--token-b3e8776f-b5ae-439a-bacf-7a4bfabf37ca, #e8e6eb); --border-top-width: 0.5px; height: 55px; } .framer-L19O9 .framer-106fk55, .framer-L19O9 .framer-1hehuu0 { --border-bottom-width: 0.5px; --border-color: var(--token-b3e8776f-b5ae-439a-bacf-7a4bfabf37ca, #e8e6eb); --border-left-width: 0.5px; flex: 1 0 0px; height: 1px; } .framer-L19O9 .framer-h7ysvy, .framer-L19O9 .framer-zjzh46, .framer-L19O9 .framer-nr3bs0, .framer-L19O9 .framer-1l0q9n0, .framer-L19O9 .framer-1ah2o0r, .framer-L19O9 .framer-1bfx24k { --border-bottom-width: 0.5px; --border-color: var(--token-b3e8776f-b5ae-439a-bacf-7a4bfabf37ca, #e8e6eb); --border-left-width: 0.5px; } .framer-L19O9 .framer-18ffox5 { --border-color: var(--token-b3e8776f-b5ae-439a-bacf-7a4bfabf37ca, #e8e6eb); --border-right-width: 0.5px; --border-top-width: 0.5px; border-top-right-radius: 12px; height: 55px; will-change: var(--framer-will-change-override, transform); } .framer-L19O9 .framer-rz3d7t, .framer-L19O9 .framer-uw0ue8, .framer-L19O9 .framer-1lwwkqc { --border-bottom-width: 0.5px; --border-color: var(--token-b3e8776f-b5ae-439a-bacf-7a4bfabf37ca, #e8e6eb); --border-left-width: 0px; --border-right-width: 0.5px; --border-style: solid; --border-top-width: 0px; flex: 1 0 0px; height: 1px; } .framer-L19O9 .framer-1tv7ifu, .framer-L19O9 .framer-1ltk5dd, .framer-L19O9 .framer-1c8aopo, .framer-L19O9 .framer-1ybxx8i { --border-bottom-width: 0.5px; --border-color: var(--token-b3e8776f-b5ae-439a-bacf-7a4bfabf37ca, #e8e6eb); --border-left-width: 0px; --border-right-width: 0.5px; --border-style: solid; --border-top-width: 0px; } .framer-L19O9 .framer-hi79rk { --border-bottom-width: 0.5px; --border-color: var(--token-b3e8776f-b5ae-439a-bacf-7a4bfabf37ca, #e8e6eb); --border-left-width: 0px; --border-right-width: 0.5px; --border-style: solid; --border-top-width: 0px; border-bottom-right-radius: 12px; will-change: var(--framer-will-change-override, transform); } .framer-L19O9 .framer-1ld26uu { gap: 0px; padding: 56px 0px 56px 0px; } .framer-L19O9 .framer-8qvwok { flex-direction: column; } .framer-L19O9 .framer-qb1ibf { align-content: flex-start; align-items: flex-start; flex: none; gap: 24px; min-width: unset; order: 0; padding: 0px 0px 24px 0px; width: 100%; } .framer-L19O9 .framer-xv14zg { justify-content: flex-start; padding: 0px 0px 0px 16px; } .framer-L19O9 .framer-2gq231 { flex-direction: column; gap: 32px; padding: 0px 16px 0px 16px; } .framer-L19O9 .framer-1s9xs48 { flex: none; max-width: unset; width: 100%; } .framer-L19O9 .framer-wgdwff { flex: 1 0 0px; flex-direction: column; width: 1px; } .framer-L19O9 .framer-2hk9rd-container { order: 0; width: 100%; } .framer-L19O9 .framer-1dkovp5-container { order: 1; width: 100%; } .framer-L19O9 .framer-q1ka5a { padding: 48px 16px 48px 16px; } .framer-L19O9 .framer-pa92qk { height: var(--framer-aspect-ratio-supported, 174px); order: 0; } .framer-L19O9 .framer-1np5ukz { bottom: -27px; height: var(--framer-aspect-ratio-supported, 114px); order: 1; } .framer-L19O9 .framer-d6e6a0 { gap: 32px; order: 2; overflow: visible; padding: 56px 16px 40px 16px; } .framer-L19O9 .framer-ni0cdw { align-content: flex-start; align-items: flex-start; justify-content: flex-start; order: 0; width: 100%; } .framer-L19O9 .framer-1yo9xpc { order: 3; width: 100%; } .framer-L19O9 .framer-jqhkd3 { gap: 40px; order: 3; padding: 40px 16px 124px 16px; }}\",\"@media (min-width: 768px) and (max-width: 999px) { .framer-L19O9.framer-pj3a9u { padding: 78px 0px 0px 0px; width: 768px; } .framer-L19O9 .framer-1gppgk4 { height: 6902px; } .framer-L19O9 .framer-1fq36kv { padding: 0px 32px 48px 32px; } .framer-L19O9 .framer-13dogq5 { flex-direction: column; order: 0; } .framer-L19O9 .framer-njgwgs { flex: none; justify-content: flex-start; order: 1; padding: 16px 0px 0px 0px; width: 100%; } .framer-L19O9 .framer-2x262s { align-self: unset; flex: none; height: min-content; order: 0; overflow: visible; width: 100%; } .framer-L19O9 .framer-dyovqc { gap: 0px; padding: 72px 0px 72px 0px; } .framer-L19O9 .framer-1nqmo86, .framer-L19O9 .framer-o54lq, .framer-L19O9 .framer-yggf4o { padding: 0px 32px 0px 32px; } .framer-L19O9 .framer-1setec3, .framer-L19O9 .framer-7jzfwu { max-width: 592px; } .framer-L19O9 .framer-qxhsxo { gap: 16px; max-width: unset; overflow: auto; padding: 48px 32px 48px 32px; } .framer-L19O9 .framer-xx6ie7 { flex: none; gap: 16px; grid-template-columns: repeat(3, 324px); justify-content: start; width: min-content; } .framer-L19O9 .framer-1uiyrw8, .framer-L19O9 .framer-1ex4snk, .framer-L19O9 .framer-7auxoa { width: 324px; } .framer-L19O9 .framer-1s8c4v7 { padding: 24px 32px 24px 32px; } .framer-L19O9 .framer-h2y350 { bottom: -100px; right: -40px; top: -100px; width: var(--framer-aspect-ratio-supported, 413px); } .framer-L19O9 .framer-1b7hkfe { gap: 24px; } .framer-L19O9 .framer-ix6oox { align-self: stretch; height: auto; } .framer-L19O9 .framer-lh25bd { gap: 56px; justify-content: flex-start; padding: 104px 0px 0px 0px; } .framer-L19O9 .framer-vapw3r { order: 0; padding: 0px 32px 0px 0px; } .framer-L19O9 .framer-axkm56-container { order: 1; } .framer-L19O9 .framer-1r3mw6i { padding: 0px 24px 104px 24px; } .framer-L19O9 .framer-1532non { height: 577px; width: 100%; } .framer-L19O9 .framer-9l4gxt { width: 254px; } .framer-L19O9 .framer-1av8hr5 { height: var(--framer-aspect-ratio-supported, 65px); } .framer-L19O9 .framer-i47qs5, .framer-L19O9 .framer-qtzxa, .framer-L19O9 .framer-12ntunm, .framer-L19O9 .framer-nbes5r, .framer-L19O9 .framer-1waq9lf, .framer-L19O9 .framer-i84t8u, .framer-L19O9 .framer-7zmz19, .framer-L19O9 .framer-106fk55, .framer-L19O9 .framer-rz3d7t, .framer-L19O9 .framer-uw0ue8 { height: 73px; } .framer-L19O9 .framer-1ahai5o, .framer-L19O9 .framer-u9opiy { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; } .framer-L19O9 .framer-145yp6l { height: 668px; width: 204px; } .framer-L19O9 .framer-h7ysvy, .framer-L19O9 .framer-1ltk5dd { flex: none; height: 51px; } .framer-L19O9 .framer-zjzh46, .framer-L19O9 .framer-1ah2o0r, .framer-L19O9 .framer-1bfx24k, .framer-L19O9 .framer-1ybxx8i, .framer-L19O9 .framer-hi79rk { flex: none; height: 73px; } .framer-L19O9 .framer-1ld26uu { padding: 72px 32px 72px 32px; } .framer-L19O9 .framer-8qvwok { flex-direction: column; } .framer-L19O9 .framer-qb1ibf { flex: none; gap: 24px; order: 0; width: 100%; } .framer-L19O9 .framer-2gq231 { gap: 32px; } .framer-L19O9 .framer-wgdwff { align-content: flex-start; align-items: flex-start; flex-direction: column; } .framer-L19O9 .framer-q1ka5a { padding: 64px 40px 64px 40px; } .framer-L19O9 .framer-pa92qk { height: var(--framer-aspect-ratio-supported, 174px); left: -131px; right: -159px; top: -21px; } .framer-L19O9 .framer-1np5ukz { bottom: -13px; height: var(--framer-aspect-ratio-supported, 114px); } .framer-L19O9 .framer-d6e6a0 { padding: 72px 32px 56px 32px; } .framer-L19O9 .framer-ni0cdw { width: 100%; } .framer-L19O9 .framer-jqhkd3 { padding: 56px 32px 64px 32px; }}\",\"@media (min-width: 1000px) and (max-width: 1149px) { .framer-L19O9.framer-pj3a9u { padding: 78px 0px 0px 0px; width: 1000px; } .framer-L19O9 .framer-1fq36kv { padding: 0px 40px 24px 40px; } .framer-L19O9 .framer-13dogq5 { justify-content: flex-start; } .framer-L19O9 .framer-njgwgs { padding: 48px 0px 48px 0px; } .framer-L19O9 .framer-1at9f95 { order: 0; } .framer-L19O9 .framer-1tde50k { min-width: 440px; order: 1; } .framer-L19O9 .framer-jkgg4z { align-content: flex-start; align-items: flex-start; min-width: 440px; } .framer-L19O9 .framer-ryhm0k { width: 451px; } .framer-L19O9 .framer-quz7ns { height: var(--framer-aspect-ratio-supported, 144px); } .framer-L19O9 .framer-dyovqc, .framer-L19O9 .framer-1ld26uu { padding: 104px 40px 104px 40px; } .framer-L19O9 .framer-1setec3, .framer-L19O9 .framer-7jzfwu { max-width: 662px; } .framer-L19O9 .framer-yggf4o { padding: 0px 40px 0px 40px; } .framer-L19O9 .framer-h2y350 { right: 0px; width: var(--framer-aspect-ratio-supported, 306px); } .framer-L19O9 .framer-lh25bd { padding: 180px 40px 80px 40px; } .framer-L19O9 .framer-1r3mw6i { padding: 0px 40px 104px 40px; } .framer-L19O9 .framer-1532non { height: 533px; width: 100%; } .framer-L19O9 .framer-9l4gxt { justify-content: flex-start; width: 326px; } .framer-L19O9 .framer-1tndykj { justify-content: flex-start; width: 375px; } .framer-L19O9 .framer-1av8hr5 { height: var(--framer-aspect-ratio-supported, 65px); } .framer-L19O9 .framer-zbk2n2 { height: 472px; } .framer-L19O9 .framer-i47qs5, .framer-L19O9 .framer-1rxrra1, .framer-L19O9 .framer-qtzxa, .framer-L19O9 .framer-6vlqnc, .framer-L19O9 .framer-9tu3j3, .framer-L19O9 .framer-1udqmmn, .framer-L19O9 .framer-fzwgsv, .framer-L19O9 .framer-12ntunm, .framer-L19O9 .framer-nbes5r, .framer-L19O9 .framer-1fdjvom, .framer-L19O9 .framer-1waq9lf, .framer-L19O9 .framer-10knhnh, .framer-L19O9 .framer-eqfjm7, .framer-L19O9 .framer-wcsmfo, .framer-L19O9 .framer-i84t8u, .framer-L19O9 .framer-7zmz19, .framer-L19O9 .framer-106fk55, .framer-L19O9 .framer-1hehuu0, .framer-L19O9 .framer-rz3d7t, .framer-L19O9 .framer-uw0ue8, .framer-L19O9 .framer-1lwwkqc { flex: 1 0 0px; height: 1px; } .framer-L19O9 .framer-145yp6l { height: 623px; width: 256px; } .framer-L19O9 .framer-8qvwok { flex-direction: column; } .framer-L19O9 .framer-qb1ibf { flex: none; gap: 32px; order: 0; width: 100%; } .framer-L19O9 .framer-q1ka5a { padding: 120px 64px 120px 64px; } .framer-L19O9 .framer-pa92qk { height: var(--framer-aspect-ratio-supported, 174px); } .framer-L19O9 .framer-1np5ukz { height: var(--framer-aspect-ratio-supported, 114px); } .framer-L19O9 .framer-1yy7b6z { padding: 80px 88px 80px 32px; } .framer-L19O9 .framer-1uyf7cx { gap: 30px; } .framer-L19O9 .framer-14wjl6l { height: var(--framer-aspect-ratio-supported, 57px); } .framer-L19O9 .framer-xiri3p { align-content: flex-start; align-items: flex-start; gap: 24px; justify-content: flex-start; } .framer-L19O9 .framer-dcejpv { right: -92px; width: var(--framer-aspect-ratio-supported, 493px); } .framer-L19O9 .framer-1jifwvi { height: 447px; left: calc(50.00000000000002% - min(1232px, 110.00000000000001%) / 2); padding: 0px; width: 110%; } .framer-L19O9 .framer-d6e6a0 { padding: 104px 40px 52px 40px; } .framer-L19O9 .framer-jqhkd3 { padding: 80px 40px 64px 40px; }}\",\"@media (min-width: 1150px) and (max-width: 1439px) { .framer-L19O9.framer-pj3a9u { width: 1150px; } .framer-L19O9 .framer-1fq36kv { padding: 0px 64px 24px 64px; } .framer-L19O9 .framer-13dogq5 { justify-content: flex-start; } .framer-L19O9 .framer-njgwgs { padding: 88px 0px 88px 0px; } .framer-L19O9 .framer-jkgg4z { min-width: 400px; } .framer-L19O9 .framer-quz7ns { height: var(--framer-aspect-ratio-supported, 387px); } .framer-L19O9 .framer-dyovqc, .framer-L19O9 .framer-1ld26uu { padding: 104px 64px 104px 64px; } .framer-L19O9 .framer-yggf4o { padding: 0px 64px 0px 64px; } .framer-L19O9 .framer-h2y350 { right: 0px; } .framer-L19O9 .framer-lh25bd { padding: 180px 64px 80px 64px; } .framer-L19O9 .framer-1r3mw6i { padding: 0px 64px 104px 64px; } .framer-L19O9 .framer-1532non { height: 503px; width: 100%; } .framer-L19O9 .framer-9l4gxt { justify-content: flex-start; width: 334px; } .framer-L19O9 .framer-1tndykj { justify-content: flex-start; width: 375px; } .framer-L19O9 .framer-zbk2n2 { height: 446px; } .framer-L19O9 .framer-i47qs5, .framer-L19O9 .framer-1rxrra1, .framer-L19O9 .framer-qtzxa, .framer-L19O9 .framer-6vlqnc, .framer-L19O9 .framer-9tu3j3, .framer-L19O9 .framer-1udqmmn, .framer-L19O9 .framer-fzwgsv, .framer-L19O9 .framer-12ntunm, .framer-L19O9 .framer-nbes5r, .framer-L19O9 .framer-1fdjvom, .framer-L19O9 .framer-1waq9lf, .framer-L19O9 .framer-10knhnh, .framer-L19O9 .framer-eqfjm7, .framer-L19O9 .framer-wcsmfo, .framer-L19O9 .framer-i84t8u, .framer-L19O9 .framer-7zmz19, .framer-L19O9 .framer-106fk55, .framer-L19O9 .framer-1hehuu0, .framer-L19O9 .framer-rz3d7t, .framer-L19O9 .framer-uw0ue8, .framer-L19O9 .framer-1lwwkqc { flex: 1 0 0px; height: 1px; } .framer-L19O9 .framer-145yp6l { height: 598px; width: 272px; } .framer-L19O9 .framer-q1ka5a { padding: 120px 64px 120px 64px; } .framer-L19O9 .framer-pa92qk { order: 2; z-index: -1; } .framer-L19O9 .framer-1np5ukz { order: 3; } .framer-L19O9 .framer-rjr9qm { order: 0; } .framer-L19O9 .framer-38pn1k { order: 1; } .framer-L19O9 .framer-1yy7b6z { order: 6; padding: 80px 88px 80px 40px; } .framer-L19O9 .framer-14wjl6l { height: var(--framer-aspect-ratio-supported, 29px); } .framer-L19O9 .framer-dcejpv { right: -1px; width: var(--framer-aspect-ratio-supported, 523px); } .framer-L19O9 .framer-1jifwvi { height: 395px; order: 7; padding: 0px 0px 0px 88px; } .framer-L19O9 .framer-d6e6a0 { padding: 104px 64px 52px 64px; } .framer-L19O9 .framer-jqhkd3 { padding: 80px 64px 64px 64px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 9070.5\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Xh3DCC8UM\":{\"layout\":[\"fixed\",\"auto\"]},\"Gm4IiVboT\":{\"layout\":[\"fixed\",\"auto\"]},\"syu6cCCcY\":{\"layout\":[\"fixed\",\"auto\"]},\"c1rjELC96\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"mSvjKcdpy\":{\"pattern\":\":mSvjKcdpy\",\"name\":\"page-content\"},\"ZEU4_A7_r\":{\"pattern\":\":ZEU4_A7_r\",\"name\":\"features\"}}\n * @framerResponsiveScreen\n */const Framerk3sz8CTXO=withCSS(Component,css,\"framer-L19O9\");export default Framerk3sz8CTXO;Framerk3sz8CTXO.displayName=\"Home\";Framerk3sz8CTXO.defaultProps={height:9070.5,width:1440};addFonts(Framerk3sz8CTXO,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"},{family:\"Plus Jakarta Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/AJVGEOXGB2ALQKAZEK2LDOLCVBCMCOIT/LDEP4R7SNNABDEG433DCQGM2A7YCBHLU/OWABOLGBAKFVLPZ756IYS6EKYKU54K3I.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://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:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\",weight:\"600\"},{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...NavigationMainFonts,...ButtonFonts,...PillFonts,...LinkIconRightFonts,...CompanyCountFonts,...CarouselTestimonialsGroupFonts,...TickerFonts,...FeatureListFonts,...PricingCardsFonts,...YouTubeFonts,...MCPTestimonialsFonts,...ViewTermsFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerk3sz8CTXO\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"9070.5\",\"framerResponsiveScreen\":\"\",\"framerScrollSections\":\"{\\\"mSvjKcdpy\\\":{\\\"pattern\\\":\\\":mSvjKcdpy\\\",\\\"name\\\":\\\"page-content\\\"},\\\"ZEU4_A7_r\\\":{\\\"pattern\\\":\\\":ZEU4_A7_r\\\",\\\"name\\\":\\\"features\\\"}}\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Xh3DCC8UM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Gm4IiVboT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"syu6cCCcY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"c1rjELC96\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "82CAA+W,IAAMA,GAAqB,IAAUC,GAAsB,CAAC,KAAKC,GAAQ,eAAeA,CAAM,MAAM,MAAMA,GAAQ,cAAcA,CAAM,MAAM,IAAIA,GAAQ,eAAeA,CAAM,MAAM,OAAOA,GAAQ,cAAcA,CAAM,KAAK,EASxjB,SAARC,GAAwBC,EAAM,CAAY,GAAG,CAAC,MAAAC,EAAM,CAAC,EAAE,IAAAC,EAAI,QAAAC,EAAQ,eAAAC,EAAe,WAAAC,EAAW,aAAAC,GAAa,cAAAC,EAAc,YAAAC,EAAY,MAAAC,EAAM,YAAAC,EAAY,UAAAC,EAAU,UAAAC,GAAU,cAAAC,EAAc,YAAAC,GAAY,MAAAC,EAAK,EAAEf,EAAW,CAAC,YAAAgB,GAAY,SAAAC,GAAS,UAAAC,EAAU,UAAAC,GAAU,UAAAC,EAAS,EAAEN,GAAiB,CAAC,UAAAO,EAAU,WAAAC,CAAU,EAAET,EAAoBU,GAAanB,EAAe,GAAGC,CAAU,MAAMC,EAAY,MAAMC,CAAa,MAAMC,CAAW,KAAK,GAAGL,CAAO,KAAuBqB,GAAcC,GAAa,QAAQ,EAAQC,EAASF,KAAgBC,GAAa,QAAQD,KAAgBC,GAAa,OACtkBE,EAAc1B,EAAM,OAAO,OAAO,EAAQ2B,EAAYC,GAAS,MAAMF,CAAa,EAAQG,EAAYF,EAAY,EAAKjB,IAAY,KAAMA,EAAU,QAAQ,IAAMoB,EAAapB,IAAY,QAAQA,IAAY,QAAcb,GAAOkC,GAAe,CAAC,EAAQC,EAAYpC,GAAsBc,CAAS,EAAQuB,EAAUC,GAAarC,GAAOmC,CAAW,EAA4BG,EAAUC,EAAO,IAAI,EAAQC,EAAYC,GAAQ,IAAW,CAAC,CAAC,QAAQ,IAAI,EAAE,CAAC,QAAQ,IAAI,CAAC,EAAI,CAAC,CAAC,EAAO,CAACC,EAAKC,EAAO,EAAEC,GAAS,CAAC,OAAO,KAAK,SAAS,IAAI,CAAC,EAAkBC,GAAe,KAASC,GAAc,CAAC,EAA2BC,GAAY,EAAMC,GAAQ,EAAKpB,IAAUmB,GAAYjB,EAAY,KAAK,MAAM,GAAGA,CAAW,EAAE,EAAEkB,GAAQ,GAAM,CAACpB,GAAUI,GAAaU,EAAK,SAAQK,GAAY,KAAK,MAAML,EAAK,OAAOA,EAAK,SAAS,CAAC,EAAE,EAAEK,GAAY,KAAK,IAAIA,GAAYjD,EAAoB,EAAEkD,GAAQ,GAAiC,IAAMC,GAAQC,GAAY,IAAI,CAAC,GAAGlB,GAAaM,EAAU,QAAQ,CAAC,IAAMa,EAAalB,EAAaK,EAAU,QAAQ,YAAYA,EAAU,QAAQ,aAAmBc,EAAMZ,EAAY,CAAC,EAAE,QAAQP,EAAaO,EAAY,CAAC,EAAE,QAAQ,WAAWA,EAAY,CAAC,EAAE,QAAQ,UAAU,EAAkMa,IAAtLb,EAAY,CAAC,EAAE,QAAQP,EAAaO,EAAY,CAAC,EAAE,QAAQ,WAAWA,EAAY,CAAC,EAAE,QAAQ,YAAYA,EAAY,CAAC,EAAE,QAAQ,UAAUA,EAAY,CAAC,EAAE,QAAQ,aAAa,GAA2BY,EAAMhD,EAAIkD,GAAgB,IAAIX,GAAQ,CAAC,OAAOQ,EAAa,SAASE,EAAc,CAAC,CAAC,CAAE,CAAC,EAAE,CAAC,CAAC,EAAQE,GAAe3B,EAAS,CAAC,kBAAkB,MAAM,EAAE,CAAC,EAAwC,GAAGI,EAAY,CACnkD,GAAG,CAACJ,EAAS,CAGE,IAAI4B,EAAcjB,EAAO,EAAI,EAAEkB,GAAU,KAAKC,GAAM,KAAKT,EAAO,EAASU,GAAOrB,EAAU,QAAQ,CAAC,CAAC,YAAAsB,CAAW,IAAI,CAAI,CAACJ,EAAc,UAAUI,EAAY,OAAOA,EAAY,SAASF,GAAM,KAAKT,EAAO,EAAGO,EAAc,QAAQ,EAAM,CAAC,GAAI,CAAC,CAAC,CAAE,CAACX,GAAed,GAAS,IAAIF,EAAc,CAACgC,EAAMC,IAAQ,CAAC,IAAIC,GAAOD,IAAQ,IAAGC,GAAIvB,EAAY,CAAC,GAAMsB,IAAQjC,EAAc,OAAO,IAAGkC,GAAIvB,EAAY,CAAC,GAAG,IAAME,GAAK,CAAC,MAAMnB,EAAUsC,EAAM,OAAO,MAAM,OAAO,OAAOrC,EAAWqC,EAAM,OAAO,OAAO,MAAM,EAAE,OAAoBG,EAAKC,EAAY,CAAC,QAAQ,KAAK,SAAsBD,EAAK,KAAK,CAAC,IAAID,GAAI,MAAMrB,GAAK,SAAsBwB,GAAaL,EAAM,CAAC,MAAM,CAAC,GAAGA,EAAM,OAAO,MAAM,GAAGnB,GAAK,WAAW,EAAE,GAAGa,EAAc,EAAE,SAASM,EAAM,MAAM,SAASA,EAAM,MAAM,SAAS,aAAaC,EAAM,MAAS,EAAED,EAAM,OAAO,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,CAAE,CAAC,IAAMM,GAASvC,EAAS,GAAKwC,GAAU9B,CAAS,EAAE,GAAG,CAACV,EAAU,QAAQyC,EAAE,EAAEA,EAAEtB,GAAYsB,IAAKvB,GAAcA,GAAc,OAAOf,GAAS,IAAIF,EAAc,CAACgC,EAAMS,KAAa,CAAC,IAAM5B,GAAK,CAAC,MAAMnB,EAAUsC,EAAM,OAAO,MAAM,OAAO,OAAOrC,EAAWqC,EAAM,OAAO,OAAO,OAAO,WAAYM,GAAmB,YAAV,MAAqB,EAAE,OAAoBH,EAAKC,EAAY,CAAC,QAAQ,KAAK,SAAsBD,EAAK,KAAK,CAAC,MAAMtB,GAAK,cAAc,GAAK,SAAsBwB,GAAaL,EAAM,CAAC,IAAIQ,EAAE,IAAIC,GAAW,MAAM,CAAC,GAAGT,EAAM,OAAO,MAAM,MAAMtC,EAAUsC,EAAM,OAAO,MAAM,OAAO,OAAOrC,EAAWqC,EAAM,OAAO,OAAO,OAAO,WAAW,EAAE,GAAGN,EAAc,EAAE,SAASM,EAAM,MAAM,SAASA,EAAM,MAAM,SAAS,SAASQ,EAAE,MAAS,EAAER,EAAM,OAAO,QAAQ,CAAC,EAAEQ,EAAE,KAAKC,EAAU,CAAC,EAAED,EAAE,KAAKC,EAAU,CAAE,CAAC,CAAC,EAAI,IAAMC,GAAe7B,EAAK,SAASA,EAAK,SAAS,KAAK,MAAMA,EAAK,OAAOA,EAAK,QAAQ,EAAQ8B,GAAYjC,EAAO,IAAI,EAAQkC,GAASlC,EAAO,IAAI,EAAQmC,GAAKnC,EAAO,CAAC,EAAQoC,GAAQpC,EAAO,EAAK,EAAQqC,GAAgBC,GAAiB,EAAQC,GAAQvC,EAAO,IAAI,EAAQwC,EAAaxC,EAAO,IAAI,EAEz3D,GAAG,CAACX,EAAS,CAAC6B,GAAU,IAAI,CAAC,GAAG,EAAAmB,IAAiB,CAACL,IAAgB,CAAC5D,GAAe,OAAAoE,EAAa,QAAQD,GAAQ,QAAQ,QAAQ,CAAC,UAAU,CAAC3C,EAAY,CAAC,EAAEA,EAAYoC,EAAc,CAAC,CAAC,EAAE,CAAC,SAAS,KAAK,IAAIA,EAAc,EAAE5D,EAAM,IAAI,WAAW,IAAS,OAAO,QAAQ,CAAC,EAAQ,IAAIoE,EAAa,QAAQ,OAAO,CAAE,EAAE,CAACnE,EAAY2D,GAAe5D,CAAK,CAAC,EAAE,IAAMqE,EAAY9B,GAAY,IAAI,CAAC,GAAG,CAAC6B,EAAa,QAAQ,OAAO,IAAME,EAAO,SAAS,OAAUd,IAAU,CAACc,GAAQF,EAAa,QAAQ,YAAY,SAAUA,EAAa,QAAQ,KAAK,GAAY,CAACZ,IAAUc,IAASF,EAAa,QAAQ,YAAY,WAAWA,EAAa,QAAQ,MAAM,CAAG,EAAE,CAACZ,EAAQ,CAAC,EAAEV,GAAU,IAAI,CAACuB,EAAY,CAAE,EAAE,CAACb,EAAQ,CAAC,EAAEV,GAAU,KAAK,SAAS,iBAAiB,mBAAmBuB,CAAW,EAAQ,IAAI,CAAC,SAAS,oBAAoB,mBAAmBA,CAAW,CAAE,GAAI,CAACA,CAAW,CAAC,CAAE,CAAY,IAAME,GAAcjD,EAAa,WAAW,YAAkBkD,GAAe/D,EAAU,EAAQgE,GAAa,IAAIhE,EAAU,EAAQiE,GAAeC,GAAMjE,GAAU,EAAE8D,EAAc,EAAQI,GAAa,IAAIlE,GAAgBmE,GAAS,mBAAmBN,EAAa,mBAAmB5D,EAAS,KAAK+D,EAAc,uBAAuBF,EAAc,uBAAuBC,EAAY,oBAAoB9D,EAAS,KAAKiE,EAAY,KAAsB,OAAIvD,EAAkWgC,EAAK,UAAU,CAAC,MAAM,CAAC,GAAGyB,GAAe,QAAQzC,GAAQ,gBAAgB9B,GAAYsE,GAAS,OAAU,UAAUtE,GAAYsE,GAAS,OAAU,SAASrE,GAAS,UAAU,SAAS,QAAQM,EAAY,EAAE,IAAIa,EAAU,SAAsBoD,EAAMC,EAAO,GAAG,CAAC,IAAIb,GAAQ,MAAM,CAAC,GAAGW,GAAe,IAAIrF,EAAI,IAAIS,IAAY,UAAU+E,GAAcrB,EAAc,EAAE,CAACA,GAAe,OAAU,KAAK1D,IAAY,SAAS+E,GAAcrB,EAAc,EAAE,CAACA,GAAe,OAAU,WAAWzD,GAAU,SAAS,WAAW,cAAcmB,EAAa,MAAM,SAAS,GAAGhB,GAAM,WAAWW,GAAU,CAACuC,GAAS,OAAO,YAAY,UAAUhC,EAAY,CAAC,CAAC,EAAE,aAAa,IAAI,CAACwC,GAAQ,QAAQ,GAAQI,EAAa,UACn0EA,EAAa,QAAQ,aAAanE,EAAa,EAAE,aAAa,IAAI,CAAC+D,GAAQ,QAAQ,GAASI,EAAa,UACzGA,EAAa,QAAQ,aAAa,EAAG,EAAE,SAAS,CAAClC,GAAeC,EAAa,CAAC,CAAC,CAAC,CAAC,EAFgwC4C,EAAM,UAAU,CAAC,MAAMG,GAAkB,SAAS,CAAc7B,EAAK,MAAM,CAAC,MAAM8B,GAAY,SAAS,QAAG,CAAC,EAAe9B,EAAK,IAAI,CAAC,MAAM+B,GAAY,SAAS,oBAAoB,CAAC,EAAe/B,EAAK,IAAI,CAAC,MAAMgC,GAAe,SAAS,2DAA2D,CAAC,CAAC,CAAC,CAAC,CAExiD,CAAyB/F,GAAO,aAAa,CAAC,IAAI,GAAG,QAAQ,GAAG,cAAc,CAAC,UAAU,GAAK,WAAW,EAAI,EAAE,YAAY,CAAC,YAAY,GAAK,SAAS,GAAM,UAAU,GAAG,UAAU,EAAE,UAAU,CAAC,EAAE,UAAU,EAAI,EAAyBgG,GAAoBhG,GAAO,CAAC,MAAM,CAAC,KAAKiG,EAAY,MAAM,MAAM,WAAW,QAAQ,CAAC,KAAKA,EAAY,iBAAiB,CAAC,EAAE,MAAM,CAAC,KAAKA,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,IAAI,aAAa,IAAI,KAAK,IAAI,eAAe,GAAK,KAAK,CAAC,EAAE,UAAU,CAAC,KAAKA,EAAY,KAAK,MAAM,YAAY,QAAQ,CAAC,OAAO,QAAQ,MAAM,QAAQ,EAAE,YAAY,CAAC,iBAAiB,kBAAkB,eAAe,gBAAgB,EAAE,aAAa,CAAC,OAAO,QAAQ,MAAM,QAAQ,EAAE,aAAa,OAAO,wBAAwB,EAAI,EAAE,UAAU,CAAC,KAAKA,EAAY,KAAK,MAAM,QAAQ,QAAQ,CAAC,aAAa,SAAS,UAAU,EAAE,YAAY,CAAC,UAAU,CAAC,MAAM,CAAC,YAAY,eAAe,cAAc,EAAE,KAAK,CAAC,YAAY,eAAe,cAAc,EAAE,IAAI,CAAC,aAAa,eAAe,aAAa,EAAE,OAAO,CAAC,aAAa,eAAe,aAAa,CAAC,CAAC,EAAE,aAAa,SAAS,wBAAwB,EAAI,EAAE,IAAI,CAAC,KAAKA,EAAY,OAAO,MAAM,KAAK,EAAE,QAAQ,CAAC,MAAM,UAAU,KAAKA,EAAY,YAAY,UAAU,iBAAiB,aAAa,CAAC,UAAU,kBAAkB,EAAE,UAAU,CAAC,aAAa,eAAe,gBAAgB,aAAa,EAAE,YAAY,CAAC,IAAI,IAAI,IAAI,GAAG,EAAE,IAAI,CAAC,EAAE,cAAc,CAAC,KAAKA,EAAY,OAAO,MAAM,SAAS,SAAS,CAAC,UAAU,CAAC,KAAKA,EAAY,QAAQ,MAAM,QAAQ,aAAa,OAAO,cAAc,UAAU,aAAa,EAAI,EAAE,WAAW,CAAC,KAAKA,EAAY,QAAQ,MAAM,SAAS,aAAa,OAAO,cAAc,UAAU,aAAa,EAAI,CAAC,CAAC,EAAE,YAAY,CAAC,KAAKA,EAAY,OAAO,MAAM,WAAW,SAAS,CAAC,YAAY,CAAC,KAAKA,EAAY,QAAQ,MAAM,OAAO,aAAa,EAAI,EAAE,SAAS,CAAC,KAAKA,EAAY,QAAQ,MAAM,WAAW,aAAa,OAAO,cAAc,OAAO,aAAa,GAAM,OAAOhG,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAK,CAAC,EAAE,UAAU,CAAC,KAAKgG,EAAY,OAAO,MAAM,QAAQ,aAAa,GAAG,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAOhG,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,EAAE,UAAU,CAAC,KAAKgG,EAAY,OAAO,MAAM,QAAQ,aAAa,EAAE,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAOhG,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,EAAE,UAAU,CAAC,KAAKgG,EAAY,OAAO,MAAM,UAAU,aAAa,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,OAAOhG,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,CAAC,CAAC,EAAE,YAAY,CAAC,KAAKgG,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,aAAa,EAAE,KAAK,GAAG,eAAe,GAAK,YAAY,8CAA8C,CAAC,CAAC,EAA0B,IAAMT,GAAe,CAAC,QAAQ,OAAO,MAAM,OAAO,OAAO,OAAO,SAAS,OAAO,UAAU,OAAO,WAAW,SAAS,OAAO,EAAE,QAAQ,EAAE,cAAc,OAAO,WAAW,MAAM,EAAoBI,GAAkB,CAAC,QAAQ,OAAO,MAAM,OAAO,OAAO,OAAO,aAAa,SAAS,WAAW,SAAS,cAAc,SAAS,MAAM,OAAO,WAAW,0BAA0B,SAAS,GAAG,SAAS,SAAS,QAAQ,qBAAqB,EAAQC,GAAY,CAAC,SAAS,GAAG,aAAa,EAAE,EAAQC,GAAY,CAAC,OAAO,EAAE,aAAa,GAAG,WAAW,IAAI,UAAU,QAAQ,EAAQC,GAAe,CAAC,OAAO,EAAE,QAAQ,GAAG,SAAS,IAAI,WAAW,IAAI,UAAU,QAAQ,EAAgDV,GAAM,CAACa,EAAIC,EAAIC,IAAM,KAAK,IAAI,KAAK,IAAIF,EAAIC,CAAG,EAAEC,CAAG,EAAQT,GAAcU,GAAO,OAAOA,GAAQ,UAAU,CAAC,MAAMA,CAAK,ECjBzhG,IAAMC,GAAgB,CAAC,UAAU,CAAC,MAAM,EAAI,EAAE,UAAU,CAAC,MAAM,EAAI,CAAC,EAAQC,GAAW,CAAC,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,kBAAkB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAAAD,GAAU,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,OAAO,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,QAAQ,EAAQC,GAAkBC,GAAW,OAAOA,GAAQ,UAAUA,IAAQ,MAAM,OAAOA,EAAM,KAAM,SAAiBA,EAAc,OAAOA,GAAQ,SAAS,CAAC,IAAIA,CAAK,EAAE,OAAkBC,GAAW,CAAC,CAAC,MAAAD,EAAM,SAAAE,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,EAAmB,EAAQC,EAAWN,GAAOG,EAAO,WAAiBI,EAAmBC,GAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,GAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,QAAQ,YAAY,KAAK,WAAW,EAAQC,GAAS,CAAC,CAAC,SAAAC,EAAS,OAAAC,EAAO,MAAAC,EAAM,GAAAC,EAAG,MAAAC,EAAM,KAAAC,EAAK,MAAAC,GAAM,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,UAAUH,GAAMG,EAAM,UAAU,UAAUR,GAAUQ,EAAM,UAAU,UAAUJ,GAAOI,EAAM,WAAW,CAAC,IAAI,GAAG,IAAI,yFAAyF,OAAO,uKAAuK,EAAE,QAAQV,GAAwBU,EAAM,OAAO,GAAGA,EAAM,SAAS,YAAY,UAAUN,GAAOM,EAAM,UAAU,UAAUF,IAAOE,EAAM,SAAS,GAAUC,GAAuB,CAACD,EAAM5B,IAAe4B,EAAM,iBAAwB5B,EAAS,KAAK,GAAG,EAAE4B,EAAM,iBAAwB5B,EAAS,KAAK,GAAG,EAAU8B,GAA6BC,GAAW,SAASH,EAAMI,EAAI,CAAC,IAAMC,EAAYC,EAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,GAAM,EAAO,CAAC,aAAAC,EAAa,UAAAC,EAAS,EAAEC,GAAc,EAAQC,EAAkBC,GAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAA3C,EAAQ,UAAA4C,GAAU,UAAAC,EAAU,UAAAC,GAAU,UAAAC,GAAU,UAAAC,GAAU,GAAGC,EAAS,EAAEhC,GAASS,CAAK,EAAO,CAAC,YAAAwB,EAAY,WAAAC,GAAW,oBAAAC,GAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,GAAU,gBAAAC,GAAgB,WAAAC,EAAW,SAAA3D,CAAQ,EAAE4D,GAAgB,CAAC,WAAAjE,GAAW,eAAe,YAAY,gBAAAD,GAAgB,IAAIyC,EAAW,QAAAjC,EAAQ,kBAAAL,EAAiB,CAAC,EAAQgE,EAAiBhC,GAAuBD,EAAM5B,CAAQ,EAAO,CAAC,sBAAA8D,EAAsB,MAAAC,CAAK,EAAEC,GAAyBZ,CAAW,EAAQa,GAAmBH,EAAsB,SAASI,IAAO,CAAC,GAAGpB,IAAqB,MAAMA,GAAU,GAAGoB,CAAI,IAAW,GAAM,MAAO,EAAO,CAAC,EAAuCC,EAAkBC,EAAGxE,GAAkB,GAAhD,CAAC,CAAuE,EAAQyE,EAAY,IAAQb,IAAiB,kBAAmDc,EAAa,IAAQd,IAAiB,kBAA6C,OAAoB1C,EAAKyD,EAAY,CAAC,GAAG1B,GAAUT,EAAgB,SAAsBtB,EAAKC,GAAS,CAAC,QAAQf,EAAS,QAAQ,GAAM,SAAsBc,EAAKR,GAAW,CAAC,MAAMH,GAAY,SAAsBqE,EAAMxD,EAAO,IAAI,CAAC,GAAGmC,GAAU,GAAGI,EAAgB,UAAUa,EAAGD,EAAkB,gBAAgBvB,EAAUS,EAAU,EAAE,mBAAmB,UAAU,iBAAiBQ,EAAiB,SAAS,YAAY,IAAI1B,EAAW,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,mBAAmB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,OAAO,GAAGQ,CAAK,EAAE,SAAS,CAAC,kBAAkB,CAAC,wBAAwB,QAAQ,iBAAiB,kBAAkB,sBAAsB,QAAQ,uBAAuB,QAAQ,iBAAiB,QAAQ,qBAAqB,QAAQ,UAAU,iCAAiC,EAAE,kBAAkB,CAAC,wBAAwB,QAAQ,iBAAiB,kBAAkB,sBAAsB,QAAQ,uBAAuB,QAAQ,iBAAiB,QAAQ,qBAAqB,QAAQ,UAAU,iCAAiC,CAAC,EAAE,GAAG7C,GAAqB,CAAC,kBAAkB,CAAC,cAAc,GAAK,mBAAmB,MAAS,EAAE,kBAAkB,CAAC,cAAc,GAAK,mBAAmB,MAAS,EAAE,UAAU,CAAC,mBAAmB,MAAM,CAAC,EAAEsD,EAAYI,CAAc,EAAE,SAAS,CAAc1C,EAAK2D,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQC,IAA2BjC,GAAmB,GAAG,GAAG,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,MAAMA,GAAmB,OAAO,QAAQ,GAAGrC,GAAkB2C,CAAS,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,uBAAuB,iBAAiB,GAAK,iBAAiBc,EAAiB,SAAS,YAAY,aAAaI,GAAmB,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,CAAC,CAAC,EAAenD,EAAK6D,GAAK,CAAC,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,GAAG7E,GAAqB,CAAC,kBAAkB,CAAC,KAAKkD,GAAU,aAAa,EAAI,EAAE,kBAAkB,CAAC,KAAKA,GAAU,aAAa,EAAI,CAAC,EAAEI,EAAYI,CAAc,EAAE,SAAsBgB,EAAMxD,EAAO,EAAE,CAAC,UAAU,+BAA+B,iBAAiB6C,EAAiB,SAAS,YAAY,MAAM,CAAC,WAAW,4FAA4F,gBAAgB,mBAAmB,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAS,CAAC,kBAAkB,CAAC,WAAW,0HAA0H,EAAE,kBAAkB,CAAC,WAAW,0HAA0H,CAAC,EAAE,SAAS,CAACQ,EAAY,GAAgBG,EAAMxD,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,iBAAiB6C,EAAiB,SAAS,YAAY,SAAS,CAAc/C,EAAK8D,EAAS,CAAC,sBAAsB,GAAK,SAAsB9D,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uCAAuC,uBAAuB,mEAAmE,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,MAAM,uBAAuB,OAAO,sBAAsB,6CAA6C,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,2BAA2B,EAAE,iBAAiB6C,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,KAAKZ,GAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAenC,EAAK8D,EAAS,CAAC,sBAAsB,GAAK,SAAsB9D,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uCAAuC,uBAAuB,mEAAmE,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,MAAM,uBAAuB,OAAO,sBAAsB,6CAA6C,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,6BAA6B,EAAE,iBAAiB6C,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,KAAKX,GAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAEoB,EAAa,GAAgBE,EAAMxD,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,iBAAiB6C,EAAiB,SAAS,YAAY,SAAS,CAAc/C,EAAK8D,EAAS,CAAC,sBAAsB,GAAK,SAAsB9D,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uCAAuC,uBAAuB,mEAAmE,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,MAAM,uBAAuB,OAAO,sBAAsB,6CAA6C,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,2BAA2B,EAAE,iBAAiB6C,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,KAAKZ,GAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAenC,EAAK8D,EAAS,CAAC,sBAAsB,GAAK,SAAsB9D,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uCAAuC,uBAAuB,mEAAmE,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,MAAM,uBAAuB,OAAO,sBAAsB,6CAA6C,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,6BAA6B,EAAE,iBAAiB6C,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,KAAKX,GAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAEmB,EAAY,GAAgBvD,EAAK+D,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,QAAQ,gBAAgB,GAAG,eAAe,GAAG,iBAAiBhB,EAAiB,SAAS,YAAY,IAAI,iaAAia,mBAAmB,EAAI,CAAC,EAAES,EAAa,GAAgBxD,EAAK+D,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,QAAQ,gBAAgB,GAAG,eAAe,GAAG,iBAAiBhB,EAAiB,SAAS,YAAY,IAAI,iaAAia,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQiB,GAAI,CAAC,kFAAkF,kFAAkF,kLAAkL,8NAA8N,uLAAuL,oKAAoK,wKAAwK,4KAA4K,kNAAkN,qMAAqM,yGAAyG,2FAA2F,gFAAgF,6EAA6E,0PAA0P,oEAAoE,qEAAqE,2cAA2c,+bAA+b,EASpwcC,GAAgBC,GAAQlD,GAAUgD,GAAI,cAAc,EAASG,EAAQF,GAAgBA,GAAgB,YAAY,uBAAuBA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAG,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,UAAU,MAAM,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,MAAM,QAAQ,KAAKA,EAAY,YAAY,EAAE,UAAU,CAAC,wBAAwB,4GAA4G,gBAAgB,CAAC,IAAI,GAAG,eAAe,2GAA2G,EAAE,MAAM,QAAQ,KAAKA,EAAY,eAAe,EAAE,UAAU,CAAC,MAAM,OAAO,KAAKA,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,GAAG,YAAY,GAAG,gBAAgB,GAAM,YAAY,GAAG,MAAM,WAAW,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,GAAG,YAAY,GAAG,MAAM,OAAO,KAAKA,EAAY,MAAM,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,oBAAoB,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,EAAE,CAAC,OAAO,oBAAoB,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECTtlC,IAAMM,GAAyBC,EAASC,CAAmB,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,iBAAiB,EAAyL,IAAMC,GAAY,CAAC,OAAO,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,QAAQ,EAAQC,EAAY,CAACC,EAAMC,IAAM,CAAC,GAAG,GAACD,GAAO,OAAOA,GAAQ,UAAkB,MAAM,CAAC,GAAGA,EAAM,IAAAC,CAAG,CAAE,EAAQC,EAAO,CAACC,EAAEC,IAAY,OAAOD,GAAI,UAAU,OAAOC,GAAI,SAASD,EAAE,YAAY,IAAIC,EAAE,YAAY,EAAED,IAAIC,EAAUC,GAAmB,CAACC,EAAMC,IAAe,CAAC,GAAGD,EAAO,MAAM,2EAAoG,EAAQE,GAAoB,CAACF,EAAMC,IAAe,CAAC,GAAGD,EAAO,MAAM,qEAA8F,EAAQG,GAAoB,CAACH,EAAMC,IAAe,CAAC,GAAGD,EAAO,MAAM,0EAAmG,EAAQI,GAAoB,CAACJ,EAAMC,IAAe,CAAC,GAAGD,EAAO,MAAM,mJAA4K,EAAQK,GAAoB,CAACL,EAAMC,IAAe,CAAC,GAAGD,EAAO,MAAM,8EAAuG,EAAQM,GAAoB,CAACN,EAAMC,IAAmBD,EAAa,2EAAuF,GAAYO,GAASP,GAAe,OAAOA,GAAQ,SAASA,EAAM,OAAOA,CAAK,EAAUQ,GAAoB,CAACR,EAAMC,IAAe,CAAC,GAAGD,EAAO,MAAM,2DAAoF,EAAQS,GAAoB,CAACT,EAAMC,IAAe,CAAC,GAAGD,EAAO,MAAM,6EAAsG,EAAQU,GAAoB,CAACV,EAAMC,IAAe,CAAC,GAAGD,EAAO,MAAM,sEAA+F,EAAQW,GAAoB,CAACX,EAAMC,IAAe,CAAC,GAAGD,EAAO,MAAM,6DAAsF,EAAQY,GAAqB,CAACZ,EAAMC,IAAe,CAAC,GAAGD,EAAO,MAAM,oFAA6G,EAAQa,GAAqB,CAACb,EAAMC,IAAe,CAAC,GAAGD,EAAO,MAAM,8EAAuG,EAAQc,GAAqB,CAACd,EAAMC,IAAe,CAAC,GAAGD,EAAO,MAAM,gEAAyF,EAAQe,GAAqB,CAACf,EAAMC,IAAe,CAAC,GAAGD,EAAO,MAAM,mEAA4F,EAAQgB,GAAW,CAAC,CAAC,MAAAhB,EAAM,SAAAiB,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,EAAmB,EAAQC,EAAWrB,GAAOkB,EAAO,WAAiBI,EAAmBC,GAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,GAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,CAAK,GAAUC,GAAuB,CAACD,EAAME,IAAeF,EAAM,iBAAwBE,EAAS,KAAK,GAAG,EAAEF,EAAM,iBAAwBE,EAAS,KAAK,GAAG,EAAUC,GAA6BC,GAAW,SAASJ,EAAMK,EAAI,CAAC,IAAMC,EAAYC,EAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,GAAM,EAAO,CAAC,aAAAzC,EAAa,UAAA0C,EAAS,EAAEC,GAAc,EAAQC,EAAkBC,GAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,GAAGC,EAAS,EAAEvB,GAASI,CAAK,EAAO,CAAC,YAAAoB,EAAY,WAAAC,GAAW,oBAAAC,GAAoB,gBAAAC,GAAgB,eAAAC,GAAe,UAAAC,EAAU,gBAAAC,GAAgB,WAAAC,GAAW,SAAAzB,CAAQ,EAAE0B,GAAgB,CAAC,eAAe,YAAY,IAAIpB,EAAW,QAAAU,EAAQ,kBAAAW,EAAiB,CAAC,EAAQC,EAAiB7B,GAAuBD,EAAME,CAAQ,EAAuC6B,GAAkBC,EAAGC,GAAkB,GAAhD,CAAC,CAAuE,EAAE,OAAoBzC,EAAK0C,EAAY,CAAC,GAAGjB,GAAUR,EAAgB,SAAsBjB,EAAKC,GAAS,CAAC,QAAQS,EAAS,QAAQ,GAAM,SAAsBV,EAAKR,GAAW,CAAC,MAAMxB,GAAY,SAAsB2E,EAAMzC,EAAO,IAAI,CAAC,GAAGyB,GAAU,GAAGI,GAAgB,UAAUS,EAAGD,GAAkB,gBAAgBf,EAAUK,EAAU,EAAE,mBAAmB,YAAY,iBAAiBS,EAAiB,SAAS,YAAY,IAAItB,EAAW,MAAM,CAAC,GAAGO,CAAK,EAAE,SAAS,CAAcvB,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBoC,EAAiB,SAAS,YAAY,SAAsBtC,EAAK4C,EAAa,CAAC,MAAM,CAAC,CAAC,KAAKrE,GAAmBH,EAAOK,GAAc,GAAG,SAAS,EAAEA,CAAY,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASoE,GAA4B7C,EAAK8C,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,GAAGzB,GAAmB,GAAG,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,KAAK,GAAG,GAAG,SAAsBrB,EAAK+C,EAA8B,CAAC,UAAU,0BAA0B,iBAAiBT,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBtC,EAAKgD,EAAoB,CAAC,UAAUH,EAAc,CAAC,EAAE,UAAU,yBAAyB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU5E,EAAY,CAAC,YAAY,KAAK,WAAW,IAAI,IAAI,uEAAuE,OAAO,2EAA2E,EAAE,EAAE,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,kBAAkB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+B,EAAK4C,EAAa,CAAC,MAAM,CAAC,CAAC,KAAKlE,GAAoBN,EAAOK,GAAc,GAAG,SAAS,EAAEA,CAAY,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASwE,GAA6BjD,EAAK8C,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,GAAGzB,GAAmB,GAAG,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,KAAK,GAAG,SAAsBrB,EAAK+C,EAA8B,CAAC,UAAU,2BAA2B,iBAAiBT,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,OAAO,CAAC,EAAE,SAAsBtC,EAAKgD,EAAoB,CAAC,UAAUC,EAAe,CAAC,EAAE,UAAU,eAAe,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUhF,EAAY,CAAC,YAAY,KAAK,WAAW,IAAI,IAAI,uEAAuE,OAAO,2EAA2E,EAAE,EAAE,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+B,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBoC,EAAiB,SAAS,YAAY,SAAsBtC,EAAK4C,EAAa,CAAC,MAAM,CAAC,CAAC,KAAKjE,GAAoBP,EAAOK,GAAc,GAAG,SAAS,EAAEA,CAAY,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASyE,GAA6BlD,EAAK8C,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,GAAGzB,GAAmB,GAAG,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,KAAK,GAAG,GAAG,SAAsBrB,EAAK+C,EAA8B,CAAC,UAAU,2BAA2B,iBAAiBT,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBtC,EAAKgD,EAAoB,CAAC,UAAUE,EAAe,CAAC,EAAE,UAAU,UAAU,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeP,EAAMzC,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBoC,EAAiB,SAAS,YAAY,SAAS,CAActC,EAAK4C,EAAa,CAAC,MAAM,CAAC,CAAC,KAAKhE,GAAoBR,EAAOK,GAAc,GAAG,SAAS,EAAEA,CAAY,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAAS0E,GAA6BnD,EAAK8C,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,GAAGzB,GAAmB,GAAG,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,MAAM,GAAG,EAAE,EAAE,SAAsBrB,EAAK+C,EAA8B,CAAC,UAAU,2BAA2B,iBAAiBT,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,OAAO,CAAC,EAAE,SAAsBtC,EAAKgD,EAAoB,CAAC,UAAUG,EAAe,CAAC,EAAE,UAAU,2BAA2B,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUlF,EAAY,CAAC,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,OAAO,qKAAqK,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+B,EAAK4C,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK/D,GAAoBT,EAAOK,GAAc,GAAG,SAAS,EAAEA,CAAY,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAAS2E,GAA6BpD,EAAK8C,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,GAAGzB,GAAmB,GAAG,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,MAAM,GAAG,EAAE,IAAI,SAAsBrB,EAAK+C,EAA8B,CAAC,UAAU,2BAA2B,iBAAiBT,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,OAAO,EAAE,EAAE,SAAsBtC,EAAKgD,EAAoB,CAAC,UAAUI,EAAe,CAAC,EAAE,UAAU,sBAAsB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUnF,EAAY,CAAC,YAAY,IAAI,WAAW,IAAI,IAAI,uEAAuE,OAAO,uKAAuK,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+B,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBoC,EAAiB,SAAS,YAAY,SAAsBtC,EAAK8C,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,GAAGzB,GAAmB,GAAG,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,KAAK,GAAG,GAAG,SAAsBrB,EAAK+C,EAA8B,CAAC,UAAU,2BAA2B,iBAAiBT,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,OAAO,CAAC,EAAE,SAAsBtC,EAAKgD,EAAoB,CAAC,UAAU,2EAA2E,UAAUjE,GAASD,GAAoBV,EAAOK,GAAc,GAAG,SAAS,EAAEA,CAAY,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUR,EAAY,CAAC,YAAY,IAAI,WAAW,KAAK,IAAI,sEAAsE,OAAO,sKAAsK,EAAE,EAAE,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe0E,EAAMzC,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBoC,EAAiB,SAAS,YAAY,SAAS,CAActC,EAAK4C,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK5D,GAAoBZ,EAAOK,GAAc,GAAG,SAAS,EAAEA,CAAY,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAAS4E,GAA6BrD,EAAK8C,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,GAAGzB,GAAmB,GAAG,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,MAAM,GAAG,EAAE,EAAE,SAAsBrB,EAAK+C,EAA8B,CAAC,UAAU,2BAA2B,iBAAiBT,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,OAAO,EAAE,EAAE,SAAsBtC,EAAKgD,EAAoB,CAAC,UAAUK,EAAe,CAAC,EAAE,UAAU,aAAa,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUpF,EAAY,CAAC,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,OAAO,qKAAqK,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+B,EAAK4C,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK3D,GAAoBb,EAAOK,GAAc,GAAG,SAAS,EAAEA,CAAY,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAAS6E,GAA6BtD,EAAK8C,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,GAAGzB,GAAmB,GAAG,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,MAAM,GAAG,EAAE,IAAI,SAAsBrB,EAAK+C,EAA8B,CAAC,UAAU,2BAA2B,iBAAiBT,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBtC,EAAKgD,EAAoB,CAAC,UAAUM,EAAe,CAAC,EAAE,UAAU,kBAAkB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUrF,EAAY,CAAC,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,OAAO,qKAAqK,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,kBAAkB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+B,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBoC,EAAiB,SAAS,YAAY,SAAsBtC,EAAK4C,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK1D,GAAoBd,EAAOK,GAAc,GAAG,SAAS,EAAEA,CAAY,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAAS8E,GAA6BvD,EAAK8C,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,GAAGzB,GAAmB,GAAG,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,KAAK,GAAG,GAAG,SAAsBrB,EAAK+C,EAA8B,CAAC,UAAU,2BAA2B,iBAAiBT,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBtC,EAAKgD,EAAoB,CAAC,UAAUO,EAAe,CAAC,EAAE,UAAU,eAAe,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUtF,EAAY,CAAC,YAAY,KAAK,WAAW,IAAI,IAAI,uEAAuE,OAAO,wKAAwK,EAAE,EAAE,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,aAAa,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe0E,EAAMzC,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBoC,EAAiB,SAAS,YAAY,SAAS,CAActC,EAAK4C,EAAa,CAAC,MAAM,CAAC,CAAC,KAAKzD,GAAoBf,EAAOK,GAAc,GAAG,SAAS,EAAEA,CAAY,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAAS+E,GAA6BxD,EAAK8C,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,GAAGzB,GAAmB,GAAG,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,MAAM,GAAG,EAAE,EAAE,SAAsBrB,EAAK+C,EAA8B,CAAC,UAAU,2BAA2B,iBAAiBT,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBtC,EAAKgD,EAAoB,CAAC,UAAUQ,EAAe,CAAC,EAAE,UAAU,iBAAiB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUvF,EAAY,CAAC,YAAY,IAAI,WAAW,KAAK,IAAI,wEAAwE,OAAO,0KAA0K,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+B,EAAK4C,EAAa,CAAC,MAAM,CAAC,CAAC,KAAKxD,GAAqBhB,EAAOK,GAAc,GAAG,SAAS,EAAEA,CAAY,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASgF,GAA6BzD,EAAK8C,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,GAAGzB,GAAmB,GAAG,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,MAAM,GAAG,EAAE,IAAI,SAAsBrB,EAAK+C,EAA8B,CAAC,UAAU,0BAA0B,iBAAiBT,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,OAAO,CAAC,EAAE,SAAsBtC,EAAKgD,EAAoB,CAAC,UAAUS,EAAe,CAAC,EAAE,UAAU,sBAAsB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUxF,EAAY,CAAC,YAAY,IAAI,WAAW,KAAK,IAAI,wEAAwE,OAAO,0KAA0K,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+B,EAAK4C,EAAa,CAAC,MAAM,CAAC,CAAC,KAAKvD,GAAqBjB,EAAOK,GAAc,GAAG,SAAS,EAAEA,CAAY,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASiF,GAA8B1D,EAAK8C,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,GAAGzB,GAAmB,GAAG,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,KAAK,GAAG,SAAsBrB,EAAK+C,EAA8B,CAAC,UAAU,2BAA2B,iBAAiBT,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBtC,EAAKgD,EAAoB,CAAC,UAAUU,EAAgB,CAAC,EAAE,UAAU,sBAAsB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUzF,EAAY,CAAC,YAAY,IAAI,WAAW,KAAK,UAAU,QAAQ,UAAU,QAAQ,IAAI,uEAAuE,OAAO,wKAAwK,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe0E,EAAMzC,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBoC,EAAiB,SAAS,YAAY,SAAS,CAActC,EAAK4C,EAAa,CAAC,MAAM,CAAC,CAAC,KAAKtD,GAAqBlB,EAAOK,GAAc,GAAG,SAAS,EAAEA,CAAY,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASkF,GAA8B3D,EAAK8C,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,GAAGzB,GAAmB,GAAG,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,MAAM,GAAG,EAAE,EAAE,SAAsBrB,EAAK+C,EAA8B,CAAC,UAAU,2BAA2B,iBAAiBT,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,OAAO,EAAE,EAAE,SAAsBtC,EAAKgD,EAAoB,CAAC,UAAUW,EAAgB,CAAC,EAAE,UAAU,oBAAoB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU1F,EAAY,CAAC,YAAY,IAAI,WAAW,KAAK,IAAI,wEAAwE,OAAO,0KAA0K,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+B,EAAK4C,EAAa,CAAC,MAAM,CAAC,CAAC,KAAKrD,GAAqBnB,EAAOK,GAAc,GAAG,SAAS,EAAEA,CAAY,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASmF,GAA8B5D,EAAK8C,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,GAAGzB,GAAmB,GAAG,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,MAAM,GAAG,EAAE,IAAI,SAAsBrB,EAAK+C,EAA8B,CAAC,UAAU,2BAA2B,iBAAiBT,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBtC,EAAKgD,EAAoB,CAAC,UAAUY,EAAgB,CAAC,EAAE,UAAU,WAAW,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU3F,EAAY,CAAC,YAAY,IAAI,WAAW,IAAI,IAAI,wEAAwE,OAAO,yKAAyK,EAAE,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQ4F,GAAI,CAAC,kFAAkF,gFAAgF,wRAAwR,qXAAqX,qOAAqO,0dAA0d,kXAAkX,EAUnotBC,GAAgBC,GAAQpD,GAAUkD,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,8BAA8BA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,IAAI,EAAEG,GAASH,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,EAAE,GAAGI,EAAwB,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECX5Q,IAAMC,GAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAO1D,SAASC,GAAWC,EAAU,CAAC,OAAOC,GAA4BC,EAAM,MAAM,CAAC,UAAU,oBAAoB,SAAS,CAAcC,EAAK,QAAQ,CAAC,SAASL,EAAG,CAAC,EAAeK,EAAKH,EAAU,CAAC,GAAGC,CAAK,CAAC,CAAC,CAAC,CAAC,CAAI,CCNzL,IAAMG,GAAiB,CAAC,UAAU,IAAIC,GAAU,IAAI,OAAO,4BAAkB,CAAC,CAAC,EAAiB,SAARC,EAAmCC,EAAIC,EAAO,CAAC,KAAMA,GAAO,CAAC,IAAMC,EAAOL,GAAiBI,EAAO,EAAE,EAAE,GAAGC,EAAO,CAAC,IAAMC,EAAMD,EAAO,KAAK,EAAEF,CAAG,EAAE,GAAGG,EAAM,OAAOA,CAAM,CAACF,EAAOA,EAAO,QAAS,CAAC,CAAC,SAASG,GAAQH,EAAO,CAAC,IAAMI,EAAS,CAAC,EAAE,KAAMJ,GAAO,CAAC,IAAMC,EAAOL,GAAiBI,EAAO,EAAE,EAAE,GAAGC,EAAO,CAAC,IAAMI,EAAQJ,EAAO,QAAQ,EAAKI,GAAQD,EAAS,KAAKC,CAAO,CAAE,CAACL,EAAOA,EAAO,QAAS,CAAC,GAAGI,EAAS,OAAO,EAAE,OAAO,QAAQ,IAAIA,CAAQ,CAAE,CAAQ,SAASE,GAA0BN,EAAO,CAAC,IAAMO,EAAeJ,GAAQH,CAAM,EAAE,GAAGO,EAAe,MAAMA,CAAe,CCA0xD,IAAMC,GAAoBC,EAASC,EAAc,EAAQC,GAAsCC,GAAwBF,EAAc,EAAQG,GAAYJ,EAASK,CAAM,EAAQC,GAA4DC,EAAqBC,EAA6BH,EAAO,CAAC,OAAO,YAAY,SAASI,EAAoB,QAAQ,WAAW,CAAC,EAAEC,CAAU,EAAQC,GAA4DJ,EAAqBC,EAA6BH,EAAO,CAAC,OAAO,YAAY,SAASI,EAAoB,QAAQ,WAAW,CAAC,EAAEC,CAAU,EAAQE,GAAUZ,EAASa,EAAI,EAAQC,GAAmBd,EAASe,EAAa,EAAQC,GAAkET,EAAqBC,EAA6BO,GAAc,CAAC,OAAO,YAAY,SAASN,EAAoB,QAAQ,WAAW,CAAC,EAAEQ,EAAiB,EAAQC,GAAkEX,EAAqBC,EAA6BO,GAAc,CAAC,OAAO,YAAY,SAASN,EAAoB,QAAQ,WAAW,CAAC,EAAEQ,EAAiB,EAAQE,GAAiEZ,EAAqBC,EAA6BO,GAAc,CAAC,OAAO,YAAY,SAASN,EAAoB,QAAQ,WAAW,CAAC,EAAEQ,EAAiB,EAAQG,GAA4Db,EAAqBC,EAA6BH,EAAO,CAAC,OAAO,YAAY,SAASI,EAAoB,QAAQ,WAAW,CAAC,EAAEC,CAAU,EAAQW,GAAkBrB,EAASsB,EAAY,EAAQC,GAA+BvB,EAASwB,EAAyB,EAAQC,GAAYzB,EAAS0B,EAAM,EAAQC,GAAuBnB,EAA6BkB,GAAO,CAAC,OAAO,YAAY,SAASE,GAAW,QAAQ,WAAW,CAAC,EAAQC,GAA4DtB,EAAqBC,EAA6BH,EAAO,CAAC,OAAO,YAAY,SAASI,EAAoB,QAAQ,WAAW,CAAC,EAAEC,CAAU,EAAQoB,GAAiB9B,EAAS+B,EAAW,EAAQC,GAAkBhC,EAASiC,EAAY,EAAQC,GAAalC,EAASmC,EAAO,EAAQC,GAA2D7B,EAAqBC,EAA6BH,EAAO,CAAC,OAAO,YAAY,SAASI,EAAoB,QAAQ,WAAW,CAAC,EAAEC,CAAU,EAAQ2B,GAA4D9B,EAAqBC,EAA6BH,EAAO,CAAC,OAAO,YAAY,SAASI,EAAoB,QAAQ,WAAW,CAAC,EAAEC,CAAU,EAAQ4B,GAA2D/B,EAAqBC,EAA6BH,EAAO,CAAC,OAAO,YAAY,SAASI,EAAoB,QAAQ,WAAW,CAAC,EAAEC,CAAU,EAAQ6B,GAAqBvC,EAASwC,EAAe,EAAQC,GAA4DlC,EAAqBC,EAA6BH,EAAO,CAAC,OAAO,YAAY,SAASI,EAAoB,QAAQ,WAAW,CAAC,EAAEC,CAAU,EAAQgC,GAAe1C,EAAS2C,EAAS,EAAQC,GAAY5C,EAAS6C,EAAM,EAAQC,GAAY,CAAC,UAAU,8CAA8C,UAAU,4CAA4C,UAAU,sBAAsB,UAAU,8CAA8C,UAAU,oBAAoB,EAAQC,GAAU,IAAI,OAAO,SAAW,IAAkBC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,iBAAiB,EAAQC,GAAmB,CAACC,EAAEC,IAAI,oBAAoBA,CAAC,GAASC,GAAY,CAAC,OAAO,IAAI,MAAM,EAAE,SAAS,IAAI,KAAK,QAAQ,EAAQC,GAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,KAAK,MAAM,EAAE,MAAM,EAAE,WAAWD,EAAW,EAAQE,GAAO,CAACC,EAAEC,IAAY,OAAOD,GAAI,UAAU,OAAOC,GAAI,SAASD,EAAE,YAAY,IAAIC,EAAE,YAAY,EAAED,IAAIC,EAAUC,GAAU,CAAC,CAAC,MAAAC,CAAK,IAAoBC,GAAoB,EAAqB,KAAyBC,EAAK,QAAQ,CAAC,wBAAwB,CAAC,OAAOF,CAAK,EAAE,yBAAyB,EAAE,CAAC,EAAUG,GAAwB,CAAC,eAAe,YAAY,WAAW,YAAY,QAAQ,YAAY,MAAM,YAAY,OAAO,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,QAAQL,GAAwBK,EAAM,OAAO,GAAGA,EAAM,SAAS,WAAW,GAAUC,GAA6BC,GAAW,SAASF,EAAMG,EAAI,CAAC,IAAMC,EAAYC,EAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,GAAM,EAAO,CAAC,aAAAC,EAAa,UAAAC,EAAS,EAAEC,GAAc,EAAQC,EAAkBC,GAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,GAAGC,EAAS,EAAEtB,GAASI,CAAK,EAAQmB,GAAU,IAAI,CAAC,IAAMC,EAASA,GAAiB,OAAUX,CAAY,EAAE,GAAGW,EAAS,OAAO,CAAC,IAAIC,EAAU,SAAS,cAAc,qBAAqB,EAAKA,EAAWA,EAAU,aAAa,UAAUD,EAAS,MAAM,GAAQC,EAAU,SAAS,cAAc,MAAM,EAAEA,EAAU,aAAa,OAAO,QAAQ,EAAEA,EAAU,aAAa,UAAUD,EAAS,MAAM,EAAE,SAAS,KAAK,YAAYC,CAAS,EAAG,CAAC,EAAE,CAAC,OAAUZ,CAAY,CAAC,EAAQa,GAAmB,IAAI,CAAC,IAAMF,EAASA,GAAiB,OAAUX,CAAY,EAAE,SAAS,MAAMW,EAAS,OAAO,GAAMA,EAAS,UAAU,SAAS,cAAc,uBAAuB,GAAG,aAAa,UAAUA,EAAS,QAAQ,CAAG,EAAE,CAAC,OAAUX,CAAY,CAAC,EAAE,GAAK,CAACc,EAAYC,EAAmB,EAAEC,GAA8BR,EAAQtC,GAAY,EAAK,EAAQ+C,GAAe,OAA8MC,GAAkBC,EAAG/C,GAAkB,GAA/M,CAAakC,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,EAAS,CAAuE,EAAQc,EAAWxB,EAAO,IAAI,EAAQyB,GAAUC,GAAkB,WAAW,EAAEC,GAA0BvB,CAAY,EAAE,IAAMwB,GAAOC,GAAU,EAAQC,EAAY,IAASvD,GAAU,EAAiB2C,IAAc,YAAtB,GAAmEa,EAAa,IAAQ,CAACxD,GAAU,GAAiB2C,IAAc,YAA6Cc,GAAa,IAASzD,GAAU,EAAiB2C,IAAc,YAAtB,GAAmEe,GAAa,IAAS1D,GAAU,EAAiB,EAAC,YAAY,YAAY,YAAY,WAAW,EAAE,SAAS2C,CAAW,EAA9E,GAAiHgB,EAAa,IAAQ,CAAC3D,GAAU,GAAiB2C,IAAc,YAA6CiB,EAAWT,GAAkB,WAAW,EAAQU,EAAWpC,EAAO,IAAI,EAAQqC,EAAQtD,GAAOqB,GAAc,GAAG,SAAS,EAAQkC,EAAa,IAAQ,CAAC/D,GAAU,GAAiB2C,IAAc,YAA6CqB,GAAa,IAAShE,GAAU,EAAiB,EAAC,YAAY,WAAW,EAAE,SAAS2C,CAAW,EAAtD,GAAmF,OAAAsB,GAAiB,CAAC,CAAC,EAAsBnD,EAAKoD,GAA0B,SAAS,CAAC,MAAM,CAAC,iBAAiB,YAAY,kBAAAhE,EAAiB,EAAE,SAAsBiE,EAAMC,EAAY,CAAC,GAAGhC,GAAUT,EAAgB,SAAS,CAAcb,EAAKH,GAAU,CAAC,MAAM,+CAA+C,CAAC,EAAewD,EAAME,EAAO,IAAI,CAAC,GAAG/B,GAAU,UAAUU,EAAGD,GAAkB,gBAAgBZ,CAAS,EAAE,IAAIT,EAAW,MAAM,CAAC,GAAGQ,CAAK,EAAE,SAAS,CAAcpB,EAAKwD,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAQ,EAAE,EAAE,SAAsBxD,EAAKyD,EAAU,CAAC,UAAU,0BAA0B,GAAG,SAAS,aAAa,GAAK,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,kBAAkBpE,GAAmB,SAAsBW,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,kBAAkB,CAAC,CAAC,OAAO,EAAE,IAAIM,EAAK,OAAO,WAAW,CAAC,EAAE,QAAQ,WAAW,EAAE,UAAU,CAAC,kBAAkB,CAAC,CAAC,OAAO,EAAE,IAAIA,EAAK,OAAO,WAAW,CAAC,EAAE,QAAQ,WAAW,EAAE,UAAU,CAAC,kBAAkB,CAAC,CAAC,OAAO,EAAE,IAAIA,EAAK,OAAO,WAAW,CAAC,EAAE,QAAQ,WAAW,EAAE,UAAU,CAAC,kBAAkB,CAAC,CAAC,OAAO,EAAE,IAAIA,EAAK,OAAO,WAAW,CAAC,EAAE,QAAQ,WAAW,CAAC,EAAE,SAAsBnC,EAAK3D,GAAsC,CAAC,sBAAsB,GAAM,kBAAkB,CAAC,CAAC,OAAO,EAAE,IAAI8F,EAAK,OAAO,WAAW,CAAC,EAAE,oBAAoB,EAAE,qCAAqC,GAAK,UAAU,yCAAyC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAekB,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,eAAe,GAAGjB,GAAU,IAAID,EAAK,SAAS,CAAcnC,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,SAAsBqD,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,uBAAuB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,cAAc,GAAK,SAAS,CAAcrD,EAAK2D,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,QAAQ,gBAAgB,GAAG,eAAe,GAAG,IAAI,oWAAoW,mBAAmB,EAAI,CAAC,EAAe3D,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,SAAS+B,EAAkB,KAAK7C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsBR,EAAM,KAAK,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,MAAM,uBAAuB,OAAO,0BAA0B,OAAO,sBAAsB,iBAAiB,EAAE,SAAS,CAAC,eAA4BrD,EAAK,OAAO,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,KAAK,EAAE,SAAS,UAAU,CAAC,EAAE,cAAc,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,eAAe,cAAc,CAAC,CAAC,EAAE,SAAsBA,EAAK8D,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,KAAK7C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsB7D,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,MAAM,uBAAuB,OAAO,0BAA0B,OAAO,sBAAsB,oEAAoE,EAAE,SAAS,0CAA0C,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,cAAc,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqD,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcrD,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,SAAS+B,EAAkB,KAAK7C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsB7D,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,0DAA0D,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,OAAO,CAAC,EAAE,UAAU,CAAC,SAAS4D,EAAkB,KAAK7C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsB7D,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,0DAA0D,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,OAAO,CAAC,EAAE,UAAU,CAAC,SAAS4D,EAAkB,KAAK7C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsB7D,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,0DAA0D,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,OAAO,CAAC,EAAE,UAAU,CAAC,SAAS4D,EAAkB,KAAK7C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsB7D,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uCAAuC,uBAAuB,mEAAmE,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,OAAO,0BAA0B,OAAO,sBAAsB,oEAAoE,EAAE,SAAS,0DAA0D,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK8D,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,KAAK7C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsB7D,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uCAAuC,uBAAuB,mEAAmE,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,OAAO,0BAA0B,OAAO,sBAAsB,0EAA0E,EAAE,SAAS,0DAA0D,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,2BAA2B,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,SAAS+B,EAAkB,KAAK7C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsB7D,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,0EAA0E,EAAE,SAAS,6HAA6H,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK8D,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,KAAK7C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsB7D,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,6HAA6H,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqD,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcrD,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,eAAeX,GAAmB,OAAO,OAAO,8BAA8B,CAAC,EAAE,SAAsBlB,EAAKwD,EAA0B,CAAC,OAAO,GAAG,SAAsBxD,EAAKyD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBzD,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAKvD,GAA4D,CAAC,UAAU,GAAM,UAAU,OAAO,UAAU,OAAO,UAAU,sBAAsB,UAAU,GAAM,OAAO,OAAO,UAAU,eAAe,UAAUmH,EAAkB,KAAK7C,CAAY,GAAG,sBAAsB,GAAG,YAAY,UAAU,GAAM,SAAS,YAAY,UAAU,0BAA0B,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAef,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAK+D,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASC,GAA4BhE,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,eAAeX,GAAmB,OAAO,OAAO,8BAA8B,CAAC,EAAE,SAAsBlB,EAAKwD,EAA0B,CAAC,OAAO,GAAG,SAAsBxD,EAAKyD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBzD,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUmC,EAAc,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAc,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAc,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAc,CAAC,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,WAAW,CAAC,EAAE,SAAsBhE,EAAKlD,GAA4D,CAAC,UAAU,GAAM,UAAU,OAAO,UAAU,oBAAoB,UAAU,gCAAgC,UAAU,GAAM,OAAO,OAAO,UAAU,eAAe,UAAU8G,EAAkB,KAAK7C,CAAY,GAAG,aAAa,GAAG,YAAY,UAAU,GAAK,SAAS,YAAY,UAAUiD,EAAc,CAAC,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEvB,EAAY,GAAgBY,EAAM,MAAM,CAAC,UAAU,8BAA8B,SAAS,CAACX,EAAa,GAAgB1C,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,MAAM,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,MAAM,eAAeX,GAAmB,OAAO,OAAO,mCAAmC,IAAI,wFAAwF,OAAO,qKAAqK,CAAC,CAAC,EAAE,SAAsBlB,EAAKiE,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,MAAM,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,IAAI,wFAAwF,OAAO,qKAAqK,EAAE,UAAU,4DAA4D,mBAAmB,YAAY,CAAC,CAAC,CAAC,EAAEtB,GAAa,GAAgB3C,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,KAAK,MAAM,eAAeX,GAAmB,OAAO,OAAO,sCAAsC,IAAI,0FAA0F,OAAO,sQAAsQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,KAAK,MAAM,eAAeA,GAAmB,OAAO,OAAO,qCAAqC,IAAI,0FAA0F,OAAO,sQAAsQ,CAAC,CAAC,EAAE,SAAsBlB,EAAKiE,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,KAAK,MAAM,eAAe/C,GAAmB,OAAO,OAAO,sCAAsC,IAAI,0FAA0F,OAAO,sQAAsQ,EAAE,UAAU,8BAA8B,mBAAmB,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAemC,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAcrD,EAAKiE,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,IAAI,WAAW,KAAK,MAAM/C,GAAmB,OAAO,QAAQ,IAAI,sEAAsE,OAAO,gWAAgW,EAAE,UAAU,iBAAiB,mBAAmB,SAAS,CAAC,EAAelB,EAAKiE,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,IAAI,WAAW,KAAK,MAAM/C,GAAmB,OAAO,QAAQ,IAAI,sEAAsE,OAAO,gWAAgW,EAAE,UAAU,iBAAiB,mBAAmB,UAAU,MAAM,CAAC,OAAO,GAAG,CAAC,CAAC,EAAemC,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcrD,EAAKwD,EAA0B,CAAC,OAAO,GAAG,SAAsBxD,EAAKyD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBzD,EAAKhD,GAAK,CAAC,UAAU,sEAAsE,UAAU,qBAAqB,OAAO,OAAO,GAAG,YAAY,UAAU,0CAA0C,SAAS,YAAY,UAAU,CAAC,YAAY,sEAAsE,YAAY,QAAQ,YAAY,EAAE,EAAE,UAAU4G,EAAkB,KAAK7C,CAAY,GAAG,UAAU,UAAU,sEAAsE,UAAU,cAAc,QAAQ,YAAY,MAAM,OAAO,UAAU,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAef,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,SAAS+B,EAAkB,MAAM7C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsBR,EAAM,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,CAAC,YAAyBrD,EAAK,OAAO,CAAC,MAAM,CAAC,sBAAsB,qEAAqE,EAAE,SAAS,SAAS,CAAC,EAAE,aAA0BA,EAAK,OAAO,CAAC,MAAM,CAAC,sBAAsB,qEAAqE,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK8D,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAM7C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsBR,EAAM,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,CAAC,YAAyBrD,EAAK,OAAO,CAAC,MAAM,CAAC,sBAAsB,qEAAqE,EAAE,SAAS,SAAS,CAAC,EAAE,aAA0BA,EAAK,OAAO,CAAC,MAAM,CAAC,sBAAsB,qEAAqE,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,SAAS+B,EAAkB,MAAM7C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsB7D,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,iKAAiK,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK8D,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAM7C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsB7D,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,iKAAiK,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK2D,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,QAAQ,gBAAgB,EAAE,eAAe,KAAK,IAAI,saAAsa,mBAAmB,EAAI,CAAC,EAAe3D,EAAK2D,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,QAAQ,gBAAgB,EAAE,eAAe,KAAK,IAAI,saAAsa,mBAAmB,EAAI,CAAC,EAAeN,EAAM,MAAM,CAAC,UAAU,gBAAgB,uBAAuB,GAAK,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,uBAAuB,GAAK,SAAS,CAAcA,EAAME,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,OAAO,WAAW9D,GAAU,SAAS,CAAc4D,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcrD,EAAK2D,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,QAAQ,gBAAgB,GAAG,eAAe,GAAG,IAAI,ogCAAogC,mBAAmB,EAAI,CAAC,EAAeN,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcrD,EAAK8D,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAM7C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsB7D,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,qBAAqB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK8D,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAM7C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsB7D,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,4EAA4E,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAK+D,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASG,GAA6BlE,EAAKwD,EAA0B,CAAC,OAAO,GAAG,SAAsBxD,EAAKyD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBzD,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUqC,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsBlE,EAAK7C,GAAkE,CAAC,UAAU,sEAAsE,UAAU,sEAAsE,UAAU+G,EAAe,CAAC,EAAE,UAAU,sEAAsE,UAAU,CAAC,kBAAkB,EAAE,YAAY,sEAAsE,gBAAgB,EAAE,iBAAiB,EAAE,YAAY,QAAQ,eAAe,CAAC,EAAE,UAAU,aAAa,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,GAAM,UAAUN,EAAkB,MAAM7C,CAAY,GAAG,WAAW,UAAU,sEAAsE,UAAU,gCAAgC,UAAU,GAAK,MAAM,OAAO,UAAU,aAAa,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAesC,EAAME,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,OAAO,WAAW9D,GAAU,SAAS,CAAc4D,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcrD,EAAK2D,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,QAAQ,gBAAgB,GAAG,eAAe,GAAG,IAAI,koEAAkoE,mBAAmB,EAAI,CAAC,EAAeN,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcrD,EAAK8D,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAM7C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsB7D,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,YAAY,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK8D,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAM7C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsB7D,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,wGAAmG,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAK+D,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASI,GAA6BnE,EAAKwD,EAA0B,CAAC,OAAO,GAAG,SAAsBxD,EAAKyD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBzD,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUsC,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsBnE,EAAK3C,GAAkE,CAAC,UAAU,sEAAsE,UAAU,sEAAsE,UAAU8G,EAAe,CAAC,EAAE,UAAU,sEAAsE,UAAU,CAAC,kBAAkB,EAAE,YAAY,sEAAsE,gBAAgB,EAAE,iBAAiB,EAAE,YAAY,QAAQ,eAAe,CAAC,EAAE,UAAU,aAAa,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,GAAM,UAAUP,EAAkB,MAAM7C,CAAY,GAAG,iBAAiB,UAAU,sEAAsE,UAAU,sCAAsC,UAAU,GAAK,MAAM,OAAO,UAAU,aAAa,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAesC,EAAME,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,OAAO,WAAW9D,GAAU,SAAS,CAAc4D,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcrD,EAAK2D,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,QAAQ,gBAAgB,GAAG,eAAe,GAAG,IAAI,m9EAAm9E,mBAAmB,EAAI,CAAC,EAAeN,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcrD,EAAK8D,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAM7C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsB7D,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK8D,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAM7C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsB7D,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,4FAA4F,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKwD,EAA0B,CAAC,OAAO,GAAG,SAAsBxD,EAAKyD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBzD,EAAK1C,GAAiE,CAAC,UAAU,sEAAsE,UAAU,sEAAsE,UAAU,cAAc,UAAU,sEAAsE,UAAU,CAAC,kBAAkB,EAAE,YAAY,sEAAsE,gBAAgB,EAAE,iBAAiB,EAAE,YAAY,QAAQ,eAAe,CAAC,EAAE,UAAU,aAAa,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,GAAM,UAAUsG,EAAkB,MAAM7C,CAAY,GAAG,cAAc,UAAU,sEAAsE,UAAU,mCAAmC,UAAU,GAAK,MAAM,OAAO,UAAU,aAAa,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE6B,GAAa,GAAgB5C,EAAK2D,EAAI,CAAC,UAAU,0EAA0E,mBAAmB,UAAU,KAAK,QAAQ,gBAAgB,IAAI,eAAe,IAAI,IAAI,mnBAAmnB,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe3D,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,OAAOX,GAAmB,OAAO,OAAO,eAAe,CAAC,EAAE,SAAsBlB,EAAKwD,EAA0B,CAAC,OAAO,GAAG,SAAsBxD,EAAKyD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBzD,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAKzC,GAA4D,CAAC,UAAU,GAAM,UAAU,OAAO,UAAU,OAAO,UAAU,sBAAsB,UAAU,GAAM,OAAO,OAAO,UAAU,eAAe,UAAUqG,EAAkB,MAAM7C,CAAY,GAAG,cAAc,GAAG,YAAY,UAAU,GAAM,SAAS,YAAY,UAAU,0BAA0B,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAesC,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,SAAS,CAAcrD,EAAK2D,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,QAAQ,gBAAgB,IAAI,eAAe,KAAK,IAAI,4zYAA4zY,mBAAmB,EAAI,CAAC,EAAeN,EAAM,MAAM,CAAC,UAAU,eAAe,mBAAmB,UAAU,SAAS,CAAcrD,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBqD,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,cAAc,GAAK,SAAS,CAAcrD,EAAK2D,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,QAAQ,gBAAgB,GAAG,eAAe,GAAG,IAAI,ijCAAijC,mBAAmB,EAAI,CAAC,EAAe3D,EAAK8D,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAM7C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsB7D,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,MAAM,uBAAuB,OAAO,0BAA0B,OAAO,sBAAsB,kBAAkB,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,cAAc,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKwD,EAA0B,CAAC,SAAsBxD,EAAKyD,EAAU,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBzD,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,OAAO,SAAS,EAAE,CAAC,EAAE,SAAsB7B,EAAKvC,GAAa,CAAC,MAAM,SAAS,oBAAoB,UAAU,KAAK,oBAAoB,SAAS,GAAG,UAAU,SAAS,OAAO,OAAO,mBAAmB,mBAAmB,GAAG,YAAY,SAAS,YAAY,cAAc,KAAK,WAAW,KAAK,SAASmG,EAAkB,MAAM7C,CAAY,GAAG,wBAAwB,QAAQ6C,EAAkB,MAAM7C,CAAY,GAAG,kBAAkB,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,kBAAkB,OAAO,OAAO,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAef,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,SAAS+B,EAAkB,MAAM7C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsB7D,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,yJAAyJ,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK8D,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAM7C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsB7D,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,yJAAyJ,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKwD,EAA0B,CAAC,SAAsBxD,EAAKyD,EAAU,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBzD,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,YAAY,CAAC,UAAU,EAAE,YAAY,GAAK,UAAU,EAAE,UAAU,EAAE,SAAS,EAAK,CAAC,CAAC,EAAE,SAAsB7B,EAAKlC,GAAuB,CAAC,UAAU,SAAS,UAAU,OAAO,YAAY,CAAC,UAAU,EAAE,YAAY,GAAK,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,GAAG,OAAO,OAAO,YAAY,EAAE,GAAG,YAAY,SAAS,YAAY,QAAQ,GAAG,cAAc,GAAG,YAAY,GAAG,eAAe,GAAK,aAAa,GAAG,WAAW,GAAG,cAAc,CAAC,WAAW,GAAK,UAAU,EAAI,EAAE,MAAM,CAAckC,EAAKwD,EAA0B,CAAC,OAAO,IAAI,MAAM,SAAS,SAAsBxD,EAAKyD,EAAU,CAAC,UAAU,0BAA0B,gBAAgB,GAAK,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBzD,EAAKrC,GAA0B,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,IAAI,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqC,EAAK2D,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,QAAQ,gBAAgB,EAAE,eAAe,KAAK,IAAI,oZAAoZ,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe3D,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,SAAsBqD,EAAM,MAAM,CAAC,UAAU,iBAAiB,cAAc,GAAK,SAAS,CAAcrD,EAAK2D,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,QAAQ,gBAAgB,IAAI,eAAe,IAAI,IAAI,qeAAqe,mBAAmB,EAAI,CAAC,EAAeN,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAACZ,EAAY,GAAgBzC,EAAK2D,EAAI,CAAC,UAAU,8BAA8B,mBAAmB,UAAU,KAAK,QAAQ,gBAAgB,GAAG,eAAe,GAAG,IAAI,oZAAoZ,mBAAmB,EAAI,CAAC,EAAeN,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcrD,EAAK8D,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAM7C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsB7D,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,+BAA+B,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAE6C,EAAa,GAAgB7C,EAAK2D,EAAI,CAAC,UAAU,2EAA2E,mBAAmB,UAAU,KAAK,QAAQ,gBAAgB,GAAG,eAAe,GAAG,IAAI,oZAAoZ,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe3D,EAAK8D,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAM7C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsB7D,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,6CAA6C,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,WAAWX,GAAmB,OAAO,OAAO,8BAA8B,CAAC,EAAE,SAAsBlB,EAAKwD,EAA0B,CAAC,OAAO,GAAG,SAAsBxD,EAAKyD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBzD,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAKhC,GAA4D,CAAC,UAAU,GAAM,UAAU,OAAO,UAAU,cAAc,UAAU,2BAA2B,UAAU,GAAK,OAAO,OAAO,UAAU,eAAe,UAAU4F,EAAkB,MAAM7C,CAAY,GAAG,cAAc,GAAG,YAAY,UAAU,GAAK,SAAS,YAAY,UAAU,qCAAqC,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAesC,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,GAAGP,EAAW,IAAIC,EAAK,SAAS,CAAcM,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcrD,EAAKwD,EAA0B,CAAC,OAAO,GAAG,SAAsBxD,EAAKyD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBzD,EAAKhD,GAAK,CAAC,UAAU,sEAAsE,UAAU,qBAAqB,OAAO,OAAO,GAAG,YAAY,UAAU,0CAA0C,SAAS,YAAY,UAAU,CAAC,YAAY,sEAAsE,YAAY,QAAQ,YAAY,EAAE,EAAE,UAAU4G,EAAkB,MAAM7C,CAAY,GAAG,WAAW,UAAU,sEAAsE,UAAU,iBAAiB,QAAQ,YAAY,MAAM,OAAO,UAAU,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAef,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,SAAS+B,EAAkB,MAAM7C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsBR,EAAM,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,CAAC,kCAA+CrD,EAAK,OAAO,CAAC,MAAM,CAAC,sBAAsB,qEAAqE,EAAE,SAAS,kBAAkB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK8D,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAM7C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsBR,EAAM,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,CAAC,6BAA0CrD,EAAK,KAAK,CAAC,CAAC,EAAE,uBAAuB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAW6D,EAAS,CAAC,SAAsB7D,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,sIAAiI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK8D,EAAS,CAAC,sBAAsB,GAAK,SAAsB9D,EAAW6D,EAAS,CAAC,SAAsB7D,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,sIAAiI,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,OAAOX,GAAmB,OAAO,OAAO,mBAAmB,EAAE,UAAU,CAAC,MAAM,OAAOA,GAAmB,OAAO,OAAO,WAAW,EAAE,UAAU,CAAC,MAAM,OAAOA,GAAmB,OAAO,OAAO,kBAAkB,EAAE,UAAU,CAAC,MAAM,OAAOA,GAAmB,OAAO,OAAO,WAAW,CAAC,EAAE,SAAsBlB,EAAKwD,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAOtC,GAAmB,OAAO,OAAO,oBAAoB,SAAsBlB,EAAKyD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBzD,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAK9B,GAAY,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,SAAS,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAemF,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAcrD,EAAKwD,EAA0B,CAAC,OAAO,GAAG,SAAsBxD,EAAKyD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBzD,EAAKhD,GAAK,CAAC,UAAU,sEAAsE,UAAU,qBAAqB,OAAO,OAAO,GAAG,YAAY,UAAU,0CAA0C,SAAS,YAAY,UAAU,CAAC,YAAY,sEAAsE,YAAY,QAAQ,YAAY,EAAE,EAAE,UAAU4G,EAAkB,MAAM7C,CAAY,GAAG,aAAa,UAAU,sEAAsE,UAAU,oBAAoB,QAAQ,YAAY,MAAM,OAAO,UAAU,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAesC,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcrD,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,SAAS+B,EAAkB,MAAM7C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsBR,EAAM,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,CAAC,SAAsBrD,EAAK,OAAO,CAAC,MAAM,CAAC,sBAAsB,qEAAqE,EAAE,SAAS,SAAS,CAAC,EAAE,+CAA+C,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK8D,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAM7C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsBR,EAAM,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,CAAC,SAAsBrD,EAAK,OAAO,CAAC,MAAM,CAAC,sBAAsB,qEAAqE,EAAE,SAAS,SAAS,CAAC,EAAE,+CAA+C,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,SAAS+B,EAAkB,MAAM7C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsB7D,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,0EAA0E,EAAE,SAAS,qHAAqH,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK8D,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAM7C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsB7D,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,0EAA0E,EAAE,SAAS,qHAAqH,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqD,EAAM,MAAM,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,aAAa,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,cAAc,GAAK,SAAS,CAACZ,EAAY,GAAgBzC,EAAK8D,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAM7C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsB7D,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,mBAAmB,CAAC,CAAC,CAAC,EAAE,UAAU,8BAA8B,MAAM,CAAC,OAAO,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAEyC,EAAY,GAAgBzC,EAAK2D,EAAI,CAAC,UAAU,+BAA+B,mBAAmB,UAAU,KAAK,QAAQ,gBAAgB,GAAG,eAAe,IAAI,IAAI,q5RAAq5R,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeN,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcrD,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,cAAc,EAAI,CAAC,EAAE,SAAsBwB,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAACZ,EAAY,GAAgBzC,EAAK2D,EAAI,CAAC,UAAU,+BAA+B,KAAK,QAAQ,gBAAgB,GAAG,eAAe,GAAG,IAAI,ygBAAygB,mBAAmB,EAAI,CAAC,EAAe3D,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,SAAS+B,EAAkB,MAAM7C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsB7D,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,OAAO,0BAA0B,OAAO,sBAAsB,oEAAoE,EAAE,SAAS,kBAAkB,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,cAAc,CAAC,CAAC,EAAE,SAAsBA,EAAK8D,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAM7C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsB7D,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,kBAAkB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,cAAc,EAAI,CAAC,EAAE,SAAsBwB,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAACZ,EAAY,GAAgBzC,EAAK2D,EAAI,CAAC,UAAU,8BAA8B,mBAAmB,UAAU,KAAK,QAAQ,gBAAgB,GAAG,eAAe,GAAG,IAAI,geAAge,mBAAmB,EAAI,CAAC,EAAe3D,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,SAAS+B,EAAkB,MAAM7C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsB7D,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,OAAO,0BAA0B,OAAO,sBAAsB,oEAAoE,EAAE,SAAS,2BAA2B,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,cAAc,CAAC,CAAC,EAAE,SAAsBA,EAAK8D,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAM7C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsB7D,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,2BAA2B,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,cAAc,EAAI,CAAC,EAAE,SAAsBwB,EAAM,MAAM,CAAC,UAAU,eAAe,SAAS,CAACZ,EAAY,GAAgBzC,EAAK2D,EAAI,CAAC,UAAU,+BAA+B,mBAAmB,UAAU,KAAK,QAAQ,gBAAgB,GAAG,eAAe,GAAG,IAAI,kdAAkd,mBAAmB,EAAI,CAAC,EAAe3D,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,SAAS+B,EAAkB,MAAM7C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsB7D,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,OAAO,0BAA0B,OAAO,sBAAsB,oEAAoE,EAAE,SAAS,oBAAoB,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,cAAc,CAAC,CAAC,EAAE,SAAsBA,EAAK8D,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAM7C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsB7D,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,oBAAoB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,cAAc,EAAI,CAAC,EAAE,SAAsBwB,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAACZ,EAAY,GAAgBzC,EAAK2D,EAAI,CAAC,UAAU,8BAA8B,mBAAmB,UAAU,KAAK,QAAQ,gBAAgB,GAAG,eAAe,GAAG,IAAI,6iBAA6iB,mBAAmB,EAAI,CAAC,EAAe3D,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,SAAS+B,EAAkB,MAAM7C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsB7D,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,OAAO,0BAA0B,OAAO,sBAAsB,oEAAoE,EAAE,SAAS,wBAAwB,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,cAAc,CAAC,CAAC,EAAE,SAAsBA,EAAK8D,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAM7C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsB7D,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,wBAAwB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,cAAc,EAAI,CAAC,EAAE,SAAsBwB,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAACZ,EAAY,GAAgBzC,EAAK2D,EAAI,CAAC,UAAU,8BAA8B,mBAAmB,UAAU,KAAK,QAAQ,gBAAgB,GAAG,eAAe,GAAG,IAAI,y7CAAy7C,mBAAmB,EAAI,CAAC,EAAe3D,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,SAAS+B,EAAkB,MAAM7C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsB7D,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,OAAO,0BAA0B,OAAO,sBAAsB,oEAAoE,EAAE,SAAS,2BAA2B,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,cAAc,CAAC,CAAC,EAAE,SAAsBA,EAAK8D,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAM7C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsB7D,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,2BAA2B,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,cAAc,EAAI,CAAC,EAAE,SAAsBwB,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAACZ,EAAY,GAAgBzC,EAAK2D,EAAI,CAAC,UAAU,8BAA8B,mBAAmB,UAAU,KAAK,QAAQ,gBAAgB,GAAG,eAAe,GAAG,IAAI,geAAge,mBAAmB,EAAI,CAAC,EAAe3D,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,SAAS+B,EAAkB,MAAM7C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsB7D,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,OAAO,0BAA0B,OAAO,sBAAsB,oEAAoE,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,cAAc,CAAC,CAAC,EAAE,SAAsBA,EAAK8D,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAM7C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsB7D,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,gBAAgB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,cAAc,EAAI,CAAC,EAAE,SAAsBwB,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAACZ,EAAY,GAAgBzC,EAAK2D,EAAI,CAAC,UAAU,8BAA8B,mBAAmB,UAAU,KAAK,QAAQ,gBAAgB,GAAG,eAAe,GAAG,IAAI,+jBAA+jB,mBAAmB,EAAI,CAAC,EAAe3D,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,SAAS+B,EAAkB,MAAM7C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsB7D,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,OAAO,0BAA0B,OAAO,sBAAsB,oEAAoE,EAAE,SAAS,wBAAwB,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,cAAc,CAAC,CAAC,EAAE,SAAsBA,EAAK8D,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAM7C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsB7D,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,wBAAwB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,cAAc,EAAI,CAAC,EAAE,SAAsBwB,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAACZ,EAAY,GAAgBzC,EAAK2D,EAAI,CAAC,UAAU,8BAA8B,mBAAmB,UAAU,KAAK,QAAQ,gBAAgB,GAAG,eAAe,GAAG,IAAI,okBAAokB,mBAAmB,EAAI,CAAC,EAAe3D,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,SAAS+B,EAAkB,MAAM7C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsB7D,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,OAAO,0BAA0B,OAAO,sBAAsB,oEAAoE,EAAE,SAAS,sBAAsB,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,cAAc,CAAC,CAAC,EAAE,SAAsBA,EAAK8D,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAM7C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsB7D,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,sBAAsB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqD,EAAM,MAAM,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,aAAa,SAAS,CAAcrD,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAK2D,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,QAAQ,gBAAgB,GAAG,eAAe,IAAI,IAAI,2hCAA2hC,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeN,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcrD,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,cAAc,EAAI,CAAC,EAAE,SAAsB7B,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAK2D,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,QAAQ,gBAAgB,GAAG,eAAe,GAAG,IAAI,ooBAAooB,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe3D,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,cAAc,EAAI,CAAC,EAAE,SAAsB7B,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAK2D,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,QAAQ,gBAAgB,GAAG,eAAe,GAAG,IAAI,ooBAAooB,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe3D,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,cAAc,EAAI,CAAC,EAAE,SAAsB7B,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAK2D,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,QAAQ,gBAAgB,GAAG,eAAe,GAAG,IAAI,ooBAAooB,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe3D,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,cAAc,EAAI,CAAC,EAAE,SAAsB7B,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAK2D,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,QAAQ,gBAAgB,GAAG,eAAe,GAAG,IAAI,ooBAAooB,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe3D,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,cAAc,EAAI,CAAC,EAAE,SAAsB7B,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAK2D,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,QAAQ,gBAAgB,GAAG,eAAe,GAAG,IAAI,ooBAAooB,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe3D,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,cAAc,EAAI,CAAC,EAAE,SAAsB7B,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAK2D,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,QAAQ,gBAAgB,GAAG,eAAe,GAAG,IAAI,ooBAAooB,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe3D,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,cAAc,EAAI,CAAC,EAAE,SAAsB7B,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAK2D,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,QAAQ,gBAAgB,GAAG,eAAe,GAAG,IAAI,ooBAAooB,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe3D,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,cAAc,EAAI,CAAC,EAAE,SAAsB7B,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAK2D,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,QAAQ,gBAAgB,GAAG,eAAe,GAAG,IAAI,ooBAAooB,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAElB,EAAY,GAAgBzC,EAAK,MAAM,CAAC,UAAU,8BAA8B,CAAC,CAAC,CAAC,CAAC,EAAeqD,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcrD,EAAK,MAAM,CAAC,UAAU,eAAe,cAAc,GAAK,SAAsBA,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,SAAS+B,EAAkB,MAAM7C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsB7D,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uCAAuC,uBAAuB,mEAAmE,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,oEAAoE,EAAE,SAAS,YAAY,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,2BAA2B,CAAC,CAAC,EAAE,SAAsBA,EAAK8D,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAM7C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsB7D,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,YAAY,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqD,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcrD,EAAK,MAAM,CAAC,UAAU,iBAAiB,cAAc,GAAK,SAAsBA,EAAK2D,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,QAAQ,gBAAgB,GAAG,eAAe,GAAG,IAAI,yjBAAyjB,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe3D,EAAK,MAAM,CAAC,UAAU,gBAAgB,cAAc,GAAK,SAAsBA,EAAK2D,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,QAAQ,gBAAgB,GAAG,eAAe,GAAG,IAAI,yjBAAyjB,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe3D,EAAK,MAAM,CAAC,UAAU,gBAAgB,cAAc,GAAK,SAAsBA,EAAK2D,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,QAAQ,gBAAgB,GAAG,eAAe,GAAG,IAAI,4sBAA4sB,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe3D,EAAK,MAAM,CAAC,UAAU,gBAAgB,cAAc,GAAK,SAAsBA,EAAK2D,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,QAAQ,gBAAgB,GAAG,eAAe,GAAG,IAAI,4sBAA4sB,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe3D,EAAK,MAAM,CAAC,UAAU,iBAAiB,cAAc,GAAK,SAAsBA,EAAK2D,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,QAAQ,gBAAgB,GAAG,eAAe,GAAG,IAAI,4sBAA4sB,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe3D,EAAK,MAAM,CAAC,UAAU,iBAAiB,cAAc,GAAK,SAAsBA,EAAK2D,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,QAAQ,gBAAgB,GAAG,eAAe,GAAG,IAAI,4sBAA4sB,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe3D,EAAK,MAAM,CAAC,UAAU,iBAAiB,cAAc,GAAK,SAAsBA,EAAK2D,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,QAAQ,gBAAgB,GAAG,eAAe,GAAG,IAAI,4sBAA4sB,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe3D,EAAK,MAAM,CAAC,UAAU,iBAAiB,cAAc,GAAK,SAAsBA,EAAK2D,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,QAAQ,gBAAgB,GAAG,eAAe,GAAG,IAAI,4sBAA4sB,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeN,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcrD,EAAK,MAAM,CAAC,UAAU,iBAAiB,cAAc,GAAK,SAAsBA,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,SAAS+B,EAAkB,MAAM7C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsB7D,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uCAAuC,uBAAuB,mEAAmE,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,oEAAoE,EAAE,SAAS,qBAAqB,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,2BAA2B,CAAC,CAAC,EAAE,SAAsBA,EAAK8D,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAM7C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsB7D,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,qBAAqB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqD,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcrD,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,cAAc,EAAI,CAAC,EAAE,SAAsB7B,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAK2D,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,QAAQ,gBAAgB,GAAG,eAAe,GAAG,IAAI,4sBAA4sB,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe3D,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,cAAc,EAAI,CAAC,EAAE,SAAsB7B,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAK2D,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,QAAQ,gBAAgB,GAAG,eAAe,GAAG,IAAI,4sBAA4sB,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe3D,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,cAAc,EAAI,CAAC,EAAE,SAAsB7B,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAK2D,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,QAAQ,gBAAgB,GAAG,eAAe,GAAG,IAAI,4sBAA4sB,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe3D,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,cAAc,EAAI,CAAC,EAAE,SAAsB7B,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAK2D,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,QAAQ,gBAAgB,GAAG,eAAe,GAAG,IAAI,yjBAAyjB,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe3D,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,cAAc,EAAI,CAAC,EAAE,SAAsB7B,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAK2D,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,QAAQ,gBAAgB,GAAG,eAAe,GAAG,IAAI,yjBAAyjB,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe3D,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,cAAc,EAAI,CAAC,EAAE,SAAsB7B,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAK2D,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,QAAQ,gBAAgB,GAAG,eAAe,GAAG,IAAI,yjBAAyjB,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe3D,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,cAAc,EAAI,CAAC,EAAE,SAAsB7B,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAK2D,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,QAAQ,gBAAgB,GAAG,eAAe,GAAG,IAAI,yjBAAyjB,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe3D,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,cAAc,EAAI,CAAC,EAAE,SAAsB7B,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAK2D,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,QAAQ,gBAAgB,GAAG,eAAe,GAAG,IAAI,yjBAAyjB,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeN,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAcrD,EAAKiE,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,IAAI,WAAW,KAAK,MAAM/C,GAAmB,OAAO,QAAQ,IAAI,sEAAsE,OAAO,gWAAgW,EAAE,UAAU,gBAAgB,mBAAmB,SAAS,CAAC,EAAelB,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBqD,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAcrD,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAKwD,EAA0B,CAAC,OAAO,GAAG,SAAsBxD,EAAKyD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBzD,EAAKhD,GAAK,CAAC,UAAU,sEAAsE,UAAU,qBAAqB,OAAO,OAAO,GAAG,YAAY,UAAU,0CAA0C,SAAS,YAAY,UAAU,CAAC,YAAY,sEAAsE,YAAY,QAAQ,YAAY,EAAE,EAAE,UAAU4G,EAAkB,MAAM7C,CAAY,GAAG,UAAU,UAAU,sEAAsE,UAAU,iBAAiB,QAAQ,YAAY,MAAM,OAAO,UAAU,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAef,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,eAAeX,GAAmB,OAAO,OAAO,oCAAoC,EAAE,UAAU,CAAC,MAAM,eAAeA,GAAmB,OAAO,OAAO,mCAAmC,EAAE,UAAU,CAAC,MAAM,eAAeA,GAAmB,OAAO,OAAO,mCAAmC,EAAE,UAAU,CAAC,MAAM,WAAWA,GAAmB,OAAO,OAAO,oBAAoB,CAAC,EAAE,SAAsBlB,EAAKwD,EAA0B,CAAC,OAAO,KAAK,MAAM,eAAetC,GAAmB,OAAO,OAAO,qCAAqC,SAAsBlB,EAAKyD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBzD,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAK5B,GAAa,CAAC,UAAU,iCAAiC,UAAU,+BAA+B,OAAO,OAAO,UAAU,2BAA2B,GAAG,YAAY,UAAU,mCAAmC,SAAS,YAAY,UAAU,gCAAgC,UAAU,0BAA0B,UAAU,4BAA4B,UAAU,oCAAoC,MAAM,CAAC,SAAS,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,oCAAoC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE4E,GAAsBK,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcrD,EAAKwD,EAA0B,CAAC,SAAsBxD,EAAKyD,EAAU,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBzD,EAAK1B,GAAQ,CAAC,aAAa,GAAG,iBAAiB,GAAG,kBAAkB,GAAG,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,MAAM,GAAM,SAAS,YAAY,KAAK,MAAM,WAAW,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,UAAU,iBAAiB,cAAc,GAAG,eAAe,GAAG,IAAI,8CAA8C,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+E,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcrD,EAAK8D,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAM7C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsBR,EAAM,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,CAAC,YAAyBrD,EAAK,OAAO,CAAC,MAAM,CAAC,sBAAsB,qEAAqE,EAAE,SAAS,eAAe,CAAC,EAAE,oBAAoB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK8D,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAM7C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsB7D,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,4GAA4G,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBqD,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcrD,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,WAAWX,GAAmB,OAAO,OAAO,wBAAwB,CAAC,EAAE,SAAsBlB,EAAKwD,EAA0B,CAAC,OAAO,GAAG,SAAsBxD,EAAKyD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBzD,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAKzB,GAA2D,CAAC,UAAU,GAAK,UAAU,SAAS,UAAU,OAAO,UAAU,4BAA4B,UAAU,GAAM,OAAO,OAAO,UAAU,eAAe,UAAUqF,EAAkB,MAAM7C,CAAY,GAAG,gBAAgB,GAAG,YAAY,UAAU,GAAM,SAAS,YAAY,UAAU,6CAA6C,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAef,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,WAAWX,GAAmB,OAAO,OAAO,wBAAwB,CAAC,EAAE,SAAsBlB,EAAKwD,EAA0B,CAAC,OAAO,GAAG,SAAsBxD,EAAKyD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBzD,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAKxB,GAA4D,CAAC,UAAU,GAAK,UAAU,aAAa,UAAU,oBAAoB,UAAU,+BAA+B,UAAU,GAAK,OAAO,OAAO,UAAU,eAAe,UAAUoF,EAAkB,MAAM7C,CAAY,GAAG,eAAe,GAAG,YAAY,UAAU,GAAM,SAAS,YAAY,UAAU,sFAAsF,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAef,EAAK2D,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,QAAQ,gBAAgB,EAAE,eAAe,KAAK,IAAI,saAAsa,mBAAmB,EAAI,CAAC,EAAe3D,EAAK2D,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,QAAQ,gBAAgB,EAAE,eAAe,KAAK,IAAI,saAAsa,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAEX,GAAsBK,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,SAAS,CAAcrD,EAAK2D,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,QAAQ,gBAAgB,IAAI,eAAe,KAAK,IAAI,ghSAAghS,mBAAmB,EAAI,CAAC,EAAe3D,EAAK2D,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,QAAQ,gBAAgB,GAAG,eAAe,KAAK,IAAI,k/RAAk/R,mBAAmB,EAAI,CAAC,EAAEV,EAAa,GAAgBjD,EAAK2D,EAAI,CAAC,UAAU,yEAAyE,mBAAmB,UAAU,KAAK,QAAQ,gBAAgB,IAAI,eAAe,KAAK,IAAI,ghSAAghS,mBAAmB,EAAI,CAAC,EAAEV,EAAa,GAAgBjD,EAAK2D,EAAI,CAAC,UAAU,yEAAyE,mBAAmB,UAAU,KAAK,QAAQ,gBAAgB,GAAG,eAAe,KAAK,IAAI,k/RAAk/R,mBAAmB,EAAI,CAAC,EAAEd,EAAa,GAAgB7C,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,OAAOX,GAAmB,OAAO,OAAO,mBAAmB,IAAI,uEAAuE,OAAO,kcAAkc,CAAC,CAAC,EAAE,SAAsBmC,EAAMY,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,IAAI,uEAAuE,OAAO,kcAAkc,EAAE,UAAU,0EAA0E,cAAc,GAAK,SAAS,CAAcZ,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcrD,EAAKiE,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,MAAM,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,yFAAyF,OAAO,uKAAuK,EAAE,UAAU,iBAAiB,mBAAmB,YAAY,CAAC,EAAejE,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBqD,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcrD,EAAK8D,EAAS,CAAC,sBAAsB,GAAK,SAAsB9D,EAAW6D,EAAS,CAAC,SAAsB7D,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,4BAA4B,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK8D,EAAS,CAAC,sBAAsB,GAAK,SAAsB9D,EAAW6D,EAAS,CAAC,SAAsB7D,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,oEAAoE,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,WAAWX,GAAmB,OAAO,OAAO,+BAA+B,CAAC,EAAE,SAAsBlB,EAAKwD,EAA0B,CAAC,OAAO,GAAG,SAAsBxD,EAAKyD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBzD,EAAKxD,EAAO,CAAC,UAAU,GAAM,UAAU,OAAO,UAAU,OAAO,UAAU,GAAG,UAAU,GAAM,OAAO,OAAO,UAAU,eAAe,UAAU,8BAA8B,GAAG,YAAY,UAAU,GAAM,SAAS,YAAY,UAAU,gCAAgC,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewD,EAAKiE,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,KAAK,MAAM,QAAQ,IAAI,yFAAyF,OAAO,mQAAmQ,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEvB,EAAa,GAAgB1C,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,OAAOX,GAAmB,OAAO,OAAO,mBAAmB,IAAI,uEAAuE,OAAO,kcAAkc,CAAC,CAAC,EAAE,SAAsBmC,EAAMY,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,IAAI,uEAAuE,OAAO,kcAAkc,EAAE,UAAU,2EAA2E,cAAc,GAAK,SAAS,CAAcZ,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcrD,EAAKiE,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,MAAM,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,yFAAyF,OAAO,uKAAuK,EAAE,UAAU,iBAAiB,mBAAmB,YAAY,CAAC,EAAejE,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBqD,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcrD,EAAK8D,EAAS,CAAC,sBAAsB,GAAK,SAAsB9D,EAAW6D,EAAS,CAAC,SAAsB7D,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,4BAA4B,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK8D,EAAS,CAAC,sBAAsB,GAAK,SAAsB9D,EAAW6D,EAAS,CAAC,SAAsB7D,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,oEAAoE,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAKwD,EAA0B,CAAC,OAAO,GAAG,SAAsBxD,EAAKyD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBzD,EAAKxD,EAAO,CAAC,UAAU,GAAM,UAAU,OAAO,UAAU,OAAO,UAAU,GAAG,UAAU,GAAM,OAAO,OAAO,UAAU,eAAe,UAAU,8BAA8B,GAAG,YAAY,UAAU,GAAM,SAAS,YAAY,UAAU,gCAAgC,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewD,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,KAAK,MAAM,aAAa,IAAI,yFAAyF,OAAO,mQAAmQ,CAAC,CAAC,EAAE,SAAsB7B,EAAKiE,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,KAAK,IAAI,yFAAyF,OAAO,mQAAmQ,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEf,GAAa,GAAgBlD,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,OAAOX,GAAmB,OAAO,OAAO,oBAAoB,IAAI,uEAAuE,OAAO,kcAAkc,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,OAAOA,GAAmB,OAAO,OAAO,oBAAoB,IAAI,uEAAuE,OAAO,kcAAkc,CAAC,CAAC,EAAE,SAAsBmC,EAAMY,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,OAAO/C,GAAmB,OAAO,OAAO,oBAAoB,IAAI,uEAAuE,OAAO,kcAAkc,EAAE,UAAU,6CAA6C,cAAc,GAAK,SAAS,CAAcmC,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcrD,EAAKiE,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,MAAM,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,yFAAyF,OAAO,uKAAuK,EAAE,UAAU,iBAAiB,mBAAmB,YAAY,CAAC,EAAejE,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBqD,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcrD,EAAK8D,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAM7C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsB7D,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,4BAA4B,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK8D,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAM7C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsB7D,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,oEAAoE,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKwD,EAA0B,CAAC,OAAO,GAAG,SAAsBxD,EAAKyD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBzD,EAAKvB,GAA2D,CAAC,UAAU,GAAM,UAAU,OAAO,UAAU,OAAO,UAAU,6BAA6B,UAAU,GAAK,OAAO,OAAO,UAAU,eAAe,UAAUmF,EAAkB,MAAM7C,CAAY,GAAG,8BAA8B,GAAG,YAAY,UAAU,GAAM,SAAS,YAAY,UAAU,gCAAgC,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAef,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,KAAK,MAAM,aAAa,IAAI,yFAAyF,OAAO,mQAAmQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,KAAK,MAAM,aAAa,IAAI,yFAAyF,OAAO,mQAAmQ,CAAC,CAAC,EAAE,SAAsB7B,EAAKiE,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,KAAK,MAAM,aAAa,IAAI,yFAAyF,OAAO,mQAAmQ,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEf,GAAa,GAAgBlD,EAAK,MAAM,CAAC,UAAU,6CAA6C,mBAAmB,eAAe,SAAsBA,EAAK2D,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,QAAQ,gBAAgB,IAAI,eAAe,IAAI,IAAI,m/WAAm/W,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeN,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,SAAS,CAAcrD,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAsBqD,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcrD,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGX,GAAmB,GAAG,GAAG,GAAG,OAAO,GAAG,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,EAAE,SAAsBlB,EAAKwD,EAA0B,CAAC,OAAO,GAAG,SAAsBxD,EAAKyD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBzD,EAAKhD,GAAK,CAAC,UAAU,sEAAsE,UAAU,qBAAqB,OAAO,OAAO,GAAG,YAAY,UAAU,0CAA0C,SAAS,YAAY,UAAU,CAAC,YAAY,sEAAsE,YAAY,QAAQ,YAAY,EAAE,EAAE,UAAU4G,EAAkB,MAAM7C,CAAY,GAAG,eAAe,UAAU,sEAAsE,UAAU,QAAQ,QAAQ,YAAY,MAAM,OAAO,UAAU,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAef,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,SAAS+B,EAAkB,MAAM7C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsBR,EAAM,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,0EAA0E,EAAE,SAAS,CAAC,kBAA+BrD,EAAK,OAAO,CAAC,MAAM,CAAC,sBAAsB,qEAAqE,EAAE,SAAS,kBAAkB,CAAC,EAAE,8BAA8B,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK8D,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAM7C,CAAY,GAAgBf,EAAW6D,EAAS,CAAC,SAAsBR,EAAM,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,0EAA0E,EAAE,SAAS,CAAC,kBAA+BrD,EAAK,OAAO,CAAC,MAAM,CAAC,sBAAsB,qEAAqE,EAAE,SAAS,kBAAkB,CAAC,EAAE,8BAA8B,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,QAAQX,GAAmB,OAAO,OAAO,WAAW,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,WAAW,GAAGA,GAAmB,GAAG,GAAG,GAAG,OAAO,GAAG,GAAG,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,UAAU,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,UAAU,CAAC,EAAE,SAAsBlB,EAAKwD,EAA0B,CAAC,OAAO,IAAI,MAAMtC,GAAmB,OAAO,QAAQ,SAAsBlB,EAAKyD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBzD,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAKrB,GAAgB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqB,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAK+D,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASK,GAA6BpE,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGX,GAAmB,GAAG,GAAG,GAAG,OAAO,GAAG,IAAI,CAAC,EAAE,UAAU,CAAC,MAAM,OAAOA,GAAmB,OAAO,OAAO,eAAe,CAAC,EAAE,SAAsBlB,EAAKwD,EAA0B,CAAC,OAAO,GAAG,SAAsBxD,EAAKyD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBzD,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUuC,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,WAAW,CAAC,EAAE,SAAsBpE,EAAKpB,GAA4D,CAAC,UAAU,GAAM,UAAU,OAAO,UAAU,iBAAiB,UAAU,4BAA4B,UAAU,GAAM,OAAO,OAAO,UAAU,eAAe,UAAUgF,EAAkB,MAAM7C,CAAY,GAAG,kBAAkB,GAAG,YAAY,UAAU,GAAK,SAAS,YAAY,UAAUqD,EAAe,CAAC,EAAE,MAAM,CAAC,OAAO,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAepE,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,cAAc,SAAsBA,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,QAAQX,GAAmB,OAAO,OAAO,WAAW,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,WAAW,GAAGA,GAAmB,GAAG,GAAG,GAAG,OAAO,GAAG,CAAC,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,UAAU,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,UAAU,CAAC,EAAE,SAAsBlB,EAAKwD,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAQtC,GAAmB,OAAO,OAAO,YAAY,SAAsBlB,EAAKyD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBzD,EAAKlB,GAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU8E,EAAkB,MAAM7C,CAAY,GAAgBsC,EAAYQ,EAAS,CAAC,SAAS,CAAc7D,EAAK,IAAI,CAAC,SAAS,qjDAAyhD,CAAC,EAAeA,EAAK,IAAI,CAAC,SAAS,+GAA+G,CAAC,EAAeA,EAAK,IAAI,CAAC,SAAS,mCAAmC,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGX,GAAmB,GAAG,GAAG,GAAG,MAAM,CAAC,EAAE,SAAsBlB,EAAKwD,EAA0B,CAAC,OAAO,IAAI,MAAMtC,GAAmB,OAAO,QAAQ,SAAsBlB,EAAKyD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBzD,EAAK0D,EAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAKhB,GAAO,CAAC,UAAU,eAAe,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,GAAK,UAAU,4BAA4B,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegB,EAAK,MAAM,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQqE,GAAI,CAAC,kFAAkF,gFAAgF,+SAA+S,mKAAmK,oRAAoR,mTAAmT,kSAAkS,4SAA4S,mwBAAmwB,yMAAyM,mMAAmM,6RAA6R,mRAAmR,2dAA2d,6cAA6c,wRAAwR,0TAA0T,qHAAqH,iqBAAiqB,4RAA4R,kMAAkM,+LAA+L,+VAA+V,wUAAwU,2UAA2U,gRAAgR,kVAAkV,2JAA2J,+JAA+J,kSAAkS,4UAA4U,+xBAA+xB,mUAAmU,8NAA8N,kXAAkX,sUAAsU,ySAAyS,iNAAiN,4QAA4Q,6ZAA6Z,+OAA+O,8QAA8Q,2SAA2S,sRAAsR,iwBAAiwB,gOAAgO,yGAAyG,6FAA6F,+LAA+L,wRAAwR,quBAAquB,gMAAgM,4QAA4Q,mRAAmR,yJAAyJ,wRAAwR,uRAAuR,0JAA0J,8TAA8T,+QAA+Q,wTAAwT,2HAA2H,yUAAyU,8PAA8P,mRAAmR,0OAA0O,unBAAunB,+QAA+Q,ifAAif,+PAA+P,8MAA8M,8QAA8Q,sXAAsX,6WAA6W,iTAAiT,wZAAwZ,wTAAwT,oTAAoT,sqBAAsqB,+SAA+S,0KAA0K,wSAAwS,waAAwa,goBAAgoB,2YAA2Y,8UAA8U,+SAA+S,6QAA6Q,kdAAkd,kRAAkR,6QAA6Q,4cAA4c,qVAAqV,yiBAAyiB,4eAA4e,4cAA4c,yQAAyQ,8YAA8Y,kTAAkT,mYAAmY,wUAAwU,iSAAiS,iRAAiR,2HAA2H,oSAAoS,2GAA2G,0RAA0R,uTAAuT,qTAAqT,4bAA4b,iNAAiN,qNAAqN,gNAAgN,mNAAmN,mwBAAmwB,kSAAkS,6NAA6N,gRAAgR,gRAAgR,yYAAyY,4QAA4Q,2GAA2G,+NAA+N,2vBAA2vB,uSAAuS,8SAA8S,6SAA6S,6QAA6Q,sNAAsN,6vBAA6vB,wSAAwS,8LAA8L,gRAAgR,mNAAmN,yYAAyY,4KAA4K,4WAA4W,8PAA8P,uTAAuT,+QAA+Q,yGAAyG,+WAA+W,GAAeA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,gcAAgc,6JAA6J,yKAAyK,qHAAqH,gyUAAgyU,2hHAA2hH,usGAAusG,y6EAAy6E,EAarh5QC,GAAgBC,GAAQhE,GAAU8D,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,OAAOA,GAAgB,aAAa,CAAC,OAAO,OAAO,MAAM,IAAI,EAAEG,GAASH,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,IAAI,0GAA0G,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,IAAI,0GAA0G,OAAO,KAAK,EAAE,CAAC,OAAO,oBAAoB,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,IAAI,0GAA0G,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,uEAAuE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,uEAAuE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGpI,GAAoB,GAAGK,GAAY,GAAGQ,GAAU,GAAGE,GAAmB,GAAGO,GAAkB,GAAGE,GAA+B,GAAGE,GAAY,GAAGK,GAAiB,GAAGE,GAAkB,GAAGE,GAAa,GAAGK,GAAqB,GAAGG,GAAe,GAAGE,GAAY,GAAG2F,GAAoCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,EAC/oJ,IAAMC,GAAqB,CAAC,QAAU,CAAC,MAAQ,CAAC,KAAO,SAAS,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,QAAU,CAAC,KAAO,iBAAiB,KAAO,kBAAkB,MAAQ,CAAC,EAAE,YAAc,CAAC,sBAAwB,IAAI,sBAAwB,SAAS,uBAAyB,GAAG,qBAAuB,sHAA0I,kBAAoB,OAAO,qBAAuB,OAAO,yBAA2B,QAAQ,qBAAuB,OAAO,oCAAsC,4OAA0R,6BAA+B,OAAO,4BAA8B,OAAO,yBAA2B,MAAM,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC",
  "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", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "business", "height", "hover", "id", "image", "link", "name1", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "Vz9no7KiI", "lYXr9v7pK", "CByXvhyO9", "fKm3kbwmC", "yBz2HDdAq", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnterqm179k", "args", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "Link", "RichText", "SVG", "css", "FrameruUaE2pdtI", "withCSS", "uUaE2pdtI_default", "addPropertyControls", "ControlType", "addFonts", "CarouselTestimonialFonts", "getFonts", "uUaE2pdtI_default", "serializationHash", "variantClassNames", "transition1", "addImageAlt", "image", "alt", "equals", "a", "b", "convertFromBoolean", "value", "activeLocale", "convertFromBoolean1", "convertFromBoolean2", "convertFromBoolean3", "convertFromBoolean4", "convertFromBoolean5", "toString", "convertFromBoolean6", "convertFromBoolean7", "convertFromBoolean8", "convertFromBoolean9", "convertFromBoolean10", "convertFromBoolean11", "convertFromBoolean12", "convertFromBoolean13", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "u", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "SmartComponentScopedContainer", "uUaE2pdtI_default", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "resolvedLinks7", "resolvedLinks8", "resolvedLinks9", "resolvedLinks10", "resolvedLinks11", "resolvedLinks12", "css", "FramerbCsGAafEr", "withCSS", "bCsGAafEr_default", "addFonts", "CarouselTestimonialFonts", "css", "withScroll", "Component", "props", "u", "p", "valuesByLocaleId", "LazyValue", "getLocalizedValue", "key", "locale", "values", "value", "preload", "promises", "promise", "usePreloadLocalizedValues", "preloadPromise", "NavigationMainFonts", "getFonts", "o8rDZNrrz_default", "NavigationMainWithVariantAppearEffect", "withVariantAppearEffect", "ButtonFonts", "S0o_QUjUS_default", "ButtonWithTrackingOnClick12m2w0tWithMappedReactProps1v1ipky", "withMappedReactProps", "withCodeBoundaryForOverrides", "withTrackingOnClick", "S0o_QUjUS_exports", "ButtonWithTrackingOnClick1dzcoqbWithMappedReactProps1v1ipky", "PillFonts", "saC79ZTbF_default", "LinkIconRightFonts", "WedZWJNhL_default", "LinkIconRightWithTrackingOnClick1n1ulubWithMappedReactPropsgcfxvs", "WedZWJNhL_exports", "LinkIconRightWithTrackingOnClick1nsk2hfWithMappedReactPropsgcfxvs", "LinkIconRightWithTrackingOnClicklt80quWithMappedReactPropsgcfxvs", "ButtonWithTrackingOnClick1w0pab3WithMappedReactProps1v1ipky", "CompanyCountFonts", "CompanyCount", "CarouselTestimonialsGroupFonts", "bCsGAafEr_default", "TickerFonts", "Ticker", "TickerWithScrolle81uhw", "withScroll", "ButtonWithTrackingOnClick12hqig2WithMappedReactProps1v1ipky", "FeatureListFonts", "dwlt17cjo_default", "PricingCardsFonts", "ksjaeGtj9_default", "YouTubeFonts", "Youtube", "ButtonWithTrackingOnClick2hk9rdWithMappedReactProps1v1ipky", "ButtonWithTrackingOnClick1dkovp5WithMappedReactProps1v1ipky", "ButtonWithTrackingOnClick219wvoWithMappedReactProps1v1ipky", "MCPTestimonialsFonts", "BPAaHkAJG_default", "ButtonWithTrackingOnClick1801w79WithMappedReactProps1v1ipky", "ViewTermsFonts", "zwkcB99Nk_default", "FooterFonts", "HCNZjGSfT_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "transition1", "animation", "equals", "a", "b", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "ref1", "elementId", "useRouteElementId", "usePreloadLocalizedValues", "router", "useRouter", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "elementId1", "ref2", "visible", "isDisplayed5", "isDisplayed6", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "PropertyOverrides2", "SVG", "getLocalizedValue", "x", "RichText", "ResolveLinks", "resolvedLinks", "Image2", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "css", "Framerk3sz8CTXO", "withCSS", "k3sz8CTXO_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
