{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/zEmAposrjympIK2ybAcQ/Video.js", "ssg:https://framerusercontent.com/modules/1vk3rHQYhdhpTsVqaxqJ/LRs3YXKKidFJ2xn3wfZB/O1Zy8sRTa.js", "ssg:https://framerusercontent.com/modules/yfIvFmyc1gQtINeGQaj6/e1YYm5L0fmFTaEzkEqLw/ZUR2dPXQc.js", "ssg:https://framer.com/m/framer/utils.js@^0.9.0", "ssg:https://framerusercontent.com/modules/5YK6PNtMFapOt0urlpOw/Ei1ChxtXE1ShiwRH0LyU/Examples_2.js", "ssg:https://framerusercontent.com/modules/XYLyxjzuLrE5vY7cTJLC/DNQ1rGzDpq8Ztc5LDQ28/GWUUJNwuq.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const isPlayingRef=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>=video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;isPlayingRef.current=true;video.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();isPlayingRef.current=false;},[]);return{play,pause,setProgress,isPlaying:isPlayingRef};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}/**\n * The Video component has some effects that sync the video element with props\n * like `startTime`, `progress`, etc. React calls these effects whenever these\n * props change. However, it also calls them on the first mount, and this is\n * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n * the video was hydrated, the initial `useEffect` call will reset the video\n * state. To avoid this, we use this flag.\n */let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing:playingProp,muted,playsinline,controls,progress,objectFit,backgroundColor,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,posterEnabled,startTime:startTimeProp,volume,loop}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);const isCloseToViewport=isOnCanvas?false:useInView(videoRef,{margin:\"100px\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress,isPlaying}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges){isMountedAndReadyForProgressChanges=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>onEnd===null||onEnd===void 0?void 0:onEnd(e),autoPlay:autoplayBehavior===\"on-mount\",preload:isPlaying.current?\"auto\":autoplayBehavior!==\"on-mount\"&&posterEnabled&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";Video.defaultProps={srcType:\"URL\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",srcFile:\"\",posterEnabled:false,controls:false,playing:true,loop:true,muted:true,playsinline:true,restartOnEnter:false,objectFit:\"cover\",backgroundColor:\"rgba(0,0,0,0)\",radius:0,volume:25,startTime:0};function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",placeholder:\"../example.mp4\",hidden(props){return props.srcType===\"Upload\";}},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\",description:\"We recommend adding a poster. [Learn more](http://framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"112\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (63f9d4a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Hero}from\"https://framerusercontent.com/modules/hKjtTuWGYB451ckw6eTN/rQJeCcsGr1fSnWO0FT2G/Hero.js\";const HeroFonts=getFonts(Hero);const enabledGestures={cJ0Bz3js_:{hover:true},XMk6mP7QG:{hover:true}};const cycleOrder=[\"XMk6mP7QG\",\"cJ0Bz3js_\"];const serializationHash=\"framer-SIZox\";const variantClassNames={cJ0Bz3js_:\"framer-v-1pdroi6\",XMk6mP7QG:\"framer-v-rax113\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?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={\"Variant 1\":\"XMk6mP7QG\",Phone:\"cJ0Bz3js_\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"XMk6mP7QG\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"XMk6mP7QG\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:\"https://discord.gg/KKck4zrFED\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-rax113\",className,classNames)} framer-12qgfbu`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"XMk6mP7QG\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{background:\"linear-gradient(151deg, rgb(42, 59, 238) -333%, rgb(89, 102, 242) 376%)\",borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30,boxShadow:\"0px 0.3621759214656777px NaNpx -1.25px rgba(0, 0, 0, 0.125), 0px 3px NaNpx -2.5px rgba(0, 0, 0, 0.125), 0px 0.6021873017743928px NaNpx -1.25px rgba(0, 0, 0, 0.10798), 0px 2.288533303243457px NaNpx -2.5px rgba(0, 0, 0, 0.09534), 0px 10px NaNpx -3.75px rgba(0, 0, 0, 0.0375)\",...style},variants:{\"cJ0Bz3js_-hover\":{background:\"linear-gradient(151deg, rgb(52, 69, 250) -333%, rgb(89, 102, 242) 376%)\"},\"XMk6mP7QG-hover\":{background:\"linear-gradient(151deg, rgb(52, 69, 250) -333%, rgb(89, 102, 242) 376%)\"}},...addPropertyOverrides({\"cJ0Bz3js_-hover\":{\"data-framer-name\":undefined},\"XMk6mP7QG-hover\":{\"data-framer-name\":undefined},cJ0Bz3js_:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-6swbzv\",\"data-framer-name\":\"DIscord icon\",layoutDependency:layoutDependency,layoutId:\"OcpXK3XZm\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-c4iwnz\",\"data-framer-name\":\"Vector\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"AZRsFPjWO\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 21\"><g transform=\"translate(0 0)\" id=\"ss12205744922_1\"></g><g><defs><path d=\"M 23.719 1.759 C 21.879 0.925 19.937 0.334 17.942 0 C 17.669 0.483 17.422 0.98 17.202 1.488 C 15.077 1.172 12.916 1.172 10.791 1.488 C 10.571 0.98 10.324 0.483 10.051 0 C 8.055 0.337 6.112 0.929 4.27 1.763 C 0.614 7.116 -0.377 12.335 0.119 17.48 C 2.26 19.046 4.656 20.236 7.204 21 C 7.777 20.236 8.285 19.427 8.721 18.579 C 7.893 18.273 7.093 17.895 6.332 17.45 C 6.532 17.306 6.728 17.158 6.917 17.014 C 9.133 18.045 11.551 18.58 14 18.58 C 16.448 18.58 18.867 18.045 21.082 17.014 C 21.274 17.169 21.47 17.317 21.668 17.45 C 20.905 17.895 20.104 18.274 19.274 18.581 C 19.71 19.428 20.218 20.238 20.792 21 C 23.341 20.239 25.74 19.049 27.881 17.483 C 28.462 11.516 26.888 6.344 23.719 1.759 Z M 9.349 14.316 C 7.968 14.316 6.827 13.076 6.827 11.55 C 6.827 10.025 7.928 8.774 9.344 8.774 C 10.76 8.774 11.892 10.025 11.868 11.55 C 11.844 13.076 10.756 14.316 9.349 14.316 Z M 18.651 14.316 C 17.268 14.316 16.132 13.076 16.132 11.55 C 16.132 10.025 17.233 8.774 18.651 8.774 C 20.069 8.774 21.193 10.025 21.168 11.55 C 21.144 13.076 20.058 14.316 18.651 14.316 Z\" id=\"a1026z\"></path><filter id=\"a1028z\" x=\"-35.6%\" y=\"-52.1%\" width=\"170.8%\" height=\"203.8%\" filterUnits=\"objectBoundingBox\"><feGaussianBlur stdDeviation=\"5\" in=\"SourceAlpha\" result=\"a1030z\"></feGaussianBlur><feOffset dx=\"0\" dy=\"1\" in=\"a1030z\" result=\"a1031z\"></feOffset><feComposite in=\"a1031z\" in2=\"SourceAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\" result=\"a1032z\"></feComposite><feColorMatrix color-interpolation-filters=\"sRGB\" values=\"0 0 0 0 1   0 0 0 0 1   0 0 0 0 1  0 0 0 1 0\" type=\"matrix\" in=\"a1032z\" result=\"a1033z\"></feColorMatrix></filter></defs><use xlink:href=\"#a1026z\" fill=\"rgb(255, 255, 255)\" clip-path=\"url(#a1027z)\"></use><use fill=\"black\" fill-opacity=\"1\" filter=\"url(#a1028z)\" xlink:href=\"#a1026z\"></use></g></svg>',svgContentId:12205744922,withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gjuvys\",\"data-framer-name\":\"Frame 37815\",layoutDependency:layoutDependency,layoutId:\"W4oocJ_gw\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"IBM Plex Mono\", monospace',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Say hello on Discord\"})}),className:\"framer-arxi1q\",\"data-framer-name\":\"Say hello on Discord\",fonts:[\"GF;IBM Plex Mono-regular\"],layoutDependency:layoutDependency,layoutId:\"YPWlBOeLn\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.88},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({cJ0Bz3js_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggTW9uby01MDA=\",\"--framer-font-family\":'\"IBM Plex Mono\", monospace',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Say hello on Discord\"})}),fonts:[\"GF;IBM Plex Mono-500\"]}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-12sosdu-container\",layoutDependency:layoutDependency,layoutId:\"bYoxNkCS8-container\",children:/*#__PURE__*/_jsx(Hero,{color:\"rgb(206, 206, 207)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"ChevronRight\",id:\"bYoxNkCS8\",layoutId:\"bYoxNkCS8\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-SIZox.framer-12qgfbu, .framer-SIZox .framer-12qgfbu { display: block; }\",\".framer-SIZox.framer-rax113 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: center; overflow: visible; padding: 14px 40px 14px 30px; position: relative; text-decoration: none; width: min-content; }\",\".framer-SIZox .framer-6swbzv { flex: none; height: 22px; mix-blend-mode: screen; overflow: hidden; position: relative; width: 28px; }\",\".framer-SIZox .framer-c4iwnz { flex: none; height: 21px; left: calc(50.00000000000002% - 28px / 2); position: absolute; top: calc(50.00000000000002% - 21px / 2); width: 28px; }\",\".framer-SIZox .framer-gjuvys { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 9px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 278px; }\",\".framer-SIZox .framer-arxi1q { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-SIZox .framer-12sosdu-container { bottom: 0px; flex: none; position: absolute; right: 12px; top: 1px; width: 20px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-SIZox.framer-rax113, .framer-SIZox .framer-gjuvys { gap: 0px; } .framer-SIZox.framer-rax113 > * { margin: 0px; margin-left: calc(18px / 2); margin-right: calc(18px / 2); } .framer-SIZox.framer-rax113 > :first-child, .framer-SIZox .framer-gjuvys > :first-child { margin-left: 0px; } .framer-SIZox.framer-rax113 > :last-child, .framer-SIZox .framer-gjuvys > :last-child { margin-right: 0px; } .framer-SIZox .framer-gjuvys > * { margin: 0px; margin-left: calc(9px / 2); margin-right: calc(9px / 2); } }\",\".framer-SIZox.framer-v-1pdroi6.framer-rax113 { gap: 14px; width: 394px; }\",\".framer-SIZox.framer-v-1pdroi6 .framer-gjuvys { gap: 4px; width: min-content; }\",\".framer-SIZox.framer-v-1pdroi6 .framer-arxi1q { white-space: pre; width: auto; }\",\".framer-SIZox.framer-v-1pdroi6 .framer-12sosdu-container { bottom: unset; height: 25px; position: relative; right: unset; top: unset; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-SIZox.framer-v-1pdroi6.framer-rax113, .framer-SIZox.framer-v-1pdroi6 .framer-gjuvys { gap: 0px; } .framer-SIZox.framer-v-1pdroi6.framer-rax113 > * { margin: 0px; margin-left: calc(14px / 2); margin-right: calc(14px / 2); } .framer-SIZox.framer-v-1pdroi6.framer-rax113 > :first-child, .framer-SIZox.framer-v-1pdroi6 .framer-gjuvys > :first-child { margin-left: 0px; } .framer-SIZox.framer-v-1pdroi6.framer-rax113 > :last-child, .framer-SIZox.framer-v-1pdroi6 .framer-gjuvys > :last-child { margin-right: 0px; } .framer-SIZox.framer-v-1pdroi6 .framer-gjuvys > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } }\",\".framer-SIZox.framer-v-rax113.hover .framer-12sosdu-container { right: 7px; }\",\".framer-SIZox.framer-v-1pdroi6.hover .framer-gjuvys { gap: 7px; }\",\".framer-SIZox.framer-v-1pdroi6.hover .framer-12sosdu-container { bottom: unset; right: unset; top: unset; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-SIZox.framer-v-1pdroi6.hover .framer-gjuvys { gap: 0px; } .framer-SIZox.framer-v-1pdroi6.hover .framer-gjuvys > * { margin: 0px; margin-left: calc(7px / 2); margin-right: calc(7px / 2); } .framer-SIZox.framer-v-1pdroi6.hover .framer-gjuvys > :first-child { margin-left: 0px; } .framer-SIZox.framer-v-1pdroi6.hover .framer-gjuvys > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 58\n * @framerIntrinsicWidth 394\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"cJ0Bz3js_\":{\"layout\":[\"fixed\",\"auto\"]},\"Hzz9iX36X\":{\"layout\":[\"auto\",\"auto\"]},\"UYQp6KaQ8\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerO1Zy8sRTa=withCSS(Component,css,\"framer-SIZox\");export default FramerO1Zy8sRTa;FramerO1Zy8sRTa.displayName=\"Discord Button\";FramerO1Zy8sRTa.defaultProps={height:58,width:394};addPropertyControls(FramerO1Zy8sRTa,{variant:{options:[\"XMk6mP7QG\",\"cJ0Bz3js_\"],optionTitles:[\"Variant 1\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerO1Zy8sRTa,[{explicitInter:true,fonts:[{family:\"IBM Plex Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/ibmplexmono/v19/-F63fjptAgt5VM-kVkqdyU8n5i0g1l9kn-s.woff2\",weight:\"400\"},{family:\"IBM Plex Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/ibmplexmono/v19/-F6qfjptAgt5VM-kVkqdyU8n3twJ8lJPg-IUDNg.woff2\",weight:\"500\"}]},...HeroFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerO1Zy8sRTa\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"cJ0Bz3js_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Hzz9iX36X\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"UYQp6KaQ8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"58\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"394\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./O1Zy8sRTa.map", "// Generated by Framer (63f9d4a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Hero}from\"https://framerusercontent.com/modules/hKjtTuWGYB451ckw6eTN/bbq95ZQZ142lE2fXscHd/Hero.js\";const HeroFonts=getFonts(Hero);const enabledGestures={aGIyWCF6B:{hover:true}};const serializationHash=\"framer-Tc1e1\";const variantClassNames={aGIyWCF6B:\"framer-v-gtxc9d\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"aGIyWCF6B\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"fyxHY82ZH\"},openInNewTab:true,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-gtxc9d\",className,classNames)} framer-1g0pn2q`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"aGIyWCF6B\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"aGIyWCF6B-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yoho2l\",layoutDependency:layoutDependency,layoutId:\"FRHSoyRT6\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"IBM Plex Mono\", monospace',\"--framer-font-size\":\"17px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.8))\"},children:\"Privacy Policy\"})}),className:\"framer-11wpxt2\",\"data-framer-name\":\"Free? What\u2019s the catch?\",fonts:[\"GF;IBM Plex Mono-regular\"],layoutDependency:layoutDependency,layoutId:\"RXNXUt9XA\",style:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.8)\",\"--framer-paragraph-spacing\":\"0px\"},variants:{\"aGIyWCF6B-hover\":{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.9)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"aGIyWCF6B-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"IBM Plex Mono\", monospace',\"--framer-font-size\":\"17px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.9))\"},children:\"Privacy Policy\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-7i48tt\",layoutDependency:layoutDependency,layoutId:\"WW7SOLliw\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-wzyru1-container\",layoutDependency:layoutDependency,layoutId:\"yO4PW4rs0-container\",children:/*#__PURE__*/_jsx(Hero,{color:\"rgba(255, 255, 255, 0.8)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"ChevronRight\",id:\"yO4PW4rs0\",layoutId:\"yO4PW4rs0\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"IBM Plex Mono\", monospace',\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.8))\"},children:\"(tldr; we never sell your data) \"})}),className:\"framer-37qrow\",\"data-framer-name\":\"Free? What\u2019s the catch?\",fonts:[\"GF;IBM Plex Mono-regular\"],layoutDependency:layoutDependency,layoutId:\"j89pWsTKB\",style:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.8)\",\"--framer-paragraph-spacing\":\"0px\",opacity:.65},verticalAlignment:\"top\",withExternalLayout:true})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Tc1e1.framer-1g0pn2q, .framer-Tc1e1 .framer-1g0pn2q { display: block; }\",\".framer-Tc1e1.framer-gtxc9d { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 3px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-Tc1e1 .framer-1yoho2l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-Tc1e1 .framer-11wpxt2, .framer-Tc1e1 .framer-37qrow { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Tc1e1 .framer-7i48tt { flex: none; height: 14px; overflow: visible; position: relative; width: 16px; }\",\".framer-Tc1e1 .framer-wzyru1-container { bottom: -1px; flex: none; left: calc(50.00000000000002% - 15px / 2); position: absolute; top: 3px; width: 15px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Tc1e1.framer-gtxc9d, .framer-Tc1e1 .framer-1yoho2l { gap: 0px; } .framer-Tc1e1.framer-gtxc9d > * { margin: 0px; margin-bottom: calc(3px / 2); margin-top: calc(3px / 2); } .framer-Tc1e1.framer-gtxc9d > :first-child { margin-top: 0px; } .framer-Tc1e1.framer-gtxc9d > :last-child { margin-bottom: 0px; } .framer-Tc1e1 .framer-1yoho2l > * { margin: 0px; margin-left: calc(2px / 2); margin-right: calc(2px / 2); } .framer-Tc1e1 .framer-1yoho2l > :first-child { margin-left: 0px; } .framer-Tc1e1 .framer-1yoho2l > :last-child { margin-right: 0px; } }\",\".framer-Tc1e1.framer-v-gtxc9d.hover .framer-1yoho2l { gap: 5px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Tc1e1.framer-v-gtxc9d.hover .framer-1yoho2l { gap: 0px; } .framer-Tc1e1.framer-v-gtxc9d.hover .framer-1yoho2l > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-Tc1e1.framer-v-gtxc9d.hover .framer-1yoho2l > :first-child { margin-left: 0px; } .framer-Tc1e1.framer-v-gtxc9d.hover .framer-1yoho2l > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 41.5\n * @framerIntrinsicWidth 249.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"tpWxIRvfg\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerZUR2dPXQc=withCSS(Component,css,\"framer-Tc1e1\");export default FramerZUR2dPXQc;FramerZUR2dPXQc.displayName=\"Privacy Policy button\";FramerZUR2dPXQc.defaultProps={height:41.5,width:249.5};addFonts(FramerZUR2dPXQc,[{explicitInter:true,fonts:[{family:\"IBM Plex Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/ibmplexmono/v19/-F63fjptAgt5VM-kVkqdyU8n5i0g1l9kn-s.woff2\",weight:\"400\"}]},...HeroFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZUR2dPXQc\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"tpWxIRvfg\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"41.5\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"249.5\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ZUR2dPXQc.map", "export const centerContent = {\n    display: \"flex\",\n    justifyContent: \"center\",\n    alignItems: \"center\"\n};\nexport const autoSizingText = {\n    width: \"max-content\",\n    wordBreak: \"break-word\",\n    overflowWrap: \"break-word\",\n    overflow: \"hidden\",\n    whiteSpace: \"pre-wrap\",\n    flexShrink: 0\n};\nexport const defaultContainerStyles = {\n    ...centerContent,\n    overflow: \"hidden\"\n};\nexport const containerStyles = defaultContainerStyles;\nexport const randomColor = ()=>\"#\" + Math.floor(Math.random() * 16777215).toString(16)\n;\n\nexport const __FramerMetadata__ = {\"exports\":{\"centerContent\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"autoSizingText\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultContainerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"randomColor\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./Utils.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";import{randomColor}from\"https://framer.com/m/framer/utils.js@^0.9.0\";// Learn more: https://www.framer.com/docs/guides/overrides/\nconst useStore=createStore({background:\"#0099FF\"});export function withBounce(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,animate:{y:[-5,5,-5]},transition:{duration:2,repeat:Infinity,ease:\"easeInOut\"}});};}export function withRotate(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,animate:{rotate:90},transition:{duration:2}});};}export function withHover(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,whileHover:{scale:1.05}});};}export function withRandomColor(Component){return props=>{const[store,setStore]=useStore();return /*#__PURE__*/_jsx(Component,{...props,animate:{background:store.background},onClick:()=>{setStore({background:randomColor()});}});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withRotate\":{\"type\":\"reactHoc\",\"name\":\"withRotate\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withBounce\":{\"type\":\"reactHoc\",\"name\":\"withBounce\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withRandomColor\":{\"type\":\"reactHoc\",\"name\":\"withRandomColor\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withHover\":{\"type\":\"reactHoc\",\"name\":\"withHover\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Examples_2.map", "// Generated by Framer (b2780b5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,ResolveLinks,RichText,SVG,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useRouteElementId,useRouter,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/zEmAposrjympIK2ybAcQ/Video.js\";import CopilotFooter from\"#framer/local/canvasComponent/e3hrQQrQM/e3hrQQrQM.js\";import DiscordButton from\"#framer/local/canvasComponent/O1Zy8sRTa/O1Zy8sRTa.js\";import CopilotNavBar from\"#framer/local/canvasComponent/pIbknAxpY/pIbknAxpY.js\";import CopilotSiteLink from\"#framer/local/canvasComponent/Vw73PXnnr/Vw73PXnnr.js\";import PrivacyPolicyButton from\"#framer/local/canvasComponent/ZUR2dPXQc/ZUR2dPXQc.js\";import{withBounce}from\"#framer/local/codeFile/bS66Ell/Examples_2.js\";import metadataProvider from\"#framer/local/webPageMetadata/GWUUJNwuq/GWUUJNwuq.js\";const CopilotNavBarFonts=getFonts(CopilotNavBar);const MotionDivWithBounce=withBounce(motion.div);const MotionDivWithFX=withFX(motion.div);const VideoFonts=getFonts(Video);const CopilotSiteLinkFonts=getFonts(CopilotSiteLink);const PrivacyPolicyButtonFonts=getFonts(PrivacyPolicyButton);const DiscordButtonFonts=getFonts(DiscordButton);const CopilotFooterFonts=getFonts(CopilotFooter);const breakpoints={ffOVdLseq:\"(min-width: 810px) and (max-width: 1199px)\",gb08IE0VK:\"(min-width: 480px) and (max-width: 809px)\",sTpCFPTvZ:\"(min-width: 1200px)\",vqvAi04c7:\"(max-width: 479px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-9lf5d\";const variantClassNames={ffOVdLseq:\"framer-v-1f21lp9\",gb08IE0VK:\"framer-v-1ift2b9\",sTpCFPTvZ:\"framer-v-1baj3rk\",vqvAi04c7:\"framer-v-11mojgf\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition1={bounce:.2,delay:0,duration:4,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const transition3={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation3={opacity:.8,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,x:0,y:80};const transition4={bounce:.1,delay:0,duration:1,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const transition5={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.05,skewX:0,skewY:0,transition:transition5};const transformTemplate3=(_,t)=>`translateY(-50%) ${t}`;const metadata=metadataProvider();const humanReadableVariantMap={\"Tablet\u2013phone\":\"gb08IE0VK\",Desktop:\"sTpCFPTvZ\",Phone:\"vqvAi04c7\",Tablet:\"ffOVdLseq\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"sTpCFPTvZ\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-9lf5d`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-9lf5d`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const elementId=useRouteElementId(\"xAS1YU7dW\");const ref2=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if([\"gb08IE0VK\",\"vqvAi04c7\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"vqvAi04c7\")return true;return false;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"vqvAi04c7\")return false;return true;};const elementId1=useRouteElementId(\"rz0abntqy\");const ref3=React.useRef(null);const elementId2=useRouteElementId(\"vJCJBgBdp\");const ref4=React.useRef(null);const router=useRouter();const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"ffOVdLseq\")return true;return false;};const isDisplayed4=()=>{if(!isBrowser())return true;if([\"ffOVdLseq\",\"gb08IE0VK\",\"vqvAi04c7\"].includes(baseVariant))return false;return true;};const isDisplayed5=()=>{if(!isBrowser())return true;if(baseVariant===\"ffOVdLseq\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"sTpCFPTvZ\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1baj3rk\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fzlxhx-container\",layoutScroll:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vqvAi04c7:{variant:\"TptwxO2J5\"}},children:/*#__PURE__*/_jsx(CopilotNavBar,{height:\"100%\",id:\"o2_2UEytE\",layoutId:\"o2_2UEytE\",style:{width:\"100%\"},variant:\"ukUY1pR41\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gb08IE0VK:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(0),pixelHeight:701,pixelWidth:1200,positionX:\"center\",positionY:\"center\",sizes:\"100vw\",src:\"https://framerusercontent.com/images/Xr5nelJ47xvFPsTBF4LGKWSp7Q.png\",srcSet:\"https://framerusercontent.com/images/Xr5nelJ47xvFPsTBF4LGKWSp7Q.png?scale-down-to=512 512w,https://framerusercontent.com/images/Xr5nelJ47xvFPsTBF4LGKWSp7Q.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Xr5nelJ47xvFPsTBF4LGKWSp7Q.png 1200w\"}},vqvAi04c7:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(0),pixelHeight:701,pixelWidth:1200,positionX:\"center\",positionY:\"center\",sizes:\"100vw\",src:\"https://framerusercontent.com/images/Xr5nelJ47xvFPsTBF4LGKWSp7Q.png\",srcSet:\"https://framerusercontent.com/images/Xr5nelJ47xvFPsTBF4LGKWSp7Q.png?scale-down-to=512 512w,https://framerusercontent.com/images/Xr5nelJ47xvFPsTBF4LGKWSp7Q.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Xr5nelJ47xvFPsTBF4LGKWSp7Q.png 1200w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:701,pixelWidth:1200,positionX:\"center\",positionY:\"center\",sizes:\"100vw\",src:\"https://framerusercontent.com/images/Xr5nelJ47xvFPsTBF4LGKWSp7Q.png\",srcSet:\"https://framerusercontent.com/images/Xr5nelJ47xvFPsTBF4LGKWSp7Q.png?scale-down-to=512 512w,https://framerusercontent.com/images/Xr5nelJ47xvFPsTBF4LGKWSp7Q.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Xr5nelJ47xvFPsTBF4LGKWSp7Q.png 1200w\"},className:\"framer-uj4pne\",\"data-framer-name\":\"Container - header\",id:elementId,name:\"Container - header\",ref:ref2,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dhx8dy\",\"data-framer-name\":\"Main\",name:\"Main\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-q01pt3\",\"data-framer-name\":\"background-cards\",name:\"background-cards\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gb08IE0VK:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:468,intrinsicWidth:688.5,loading:getLoadingLazyAtYPosition(-135),pixelHeight:936,pixelWidth:1377,positionX:\"center\",positionY:\"bottom\",sizes:\"1280px\",src:\"https://framerusercontent.com/images/gyVbEt6sENAo5QXBINs24O8eRJA.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/gyVbEt6sENAo5QXBINs24O8eRJA.png?scale-down-to=512 512w,https://framerusercontent.com/images/gyVbEt6sENAo5QXBINs24O8eRJA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gyVbEt6sENAo5QXBINs24O8eRJA.png 1377w\"}},vqvAi04c7:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:468,intrinsicWidth:688.5,loading:getLoadingLazyAtYPosition(-135),pixelHeight:936,pixelWidth:1377,positionX:\"center\",positionY:\"bottom\",sizes:\"1280px\",src:\"https://framerusercontent.com/images/gyVbEt6sENAo5QXBINs24O8eRJA.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/gyVbEt6sENAo5QXBINs24O8eRJA.png?scale-down-to=512 512w,https://framerusercontent.com/images/gyVbEt6sENAo5QXBINs24O8eRJA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gyVbEt6sENAo5QXBINs24O8eRJA.png 1377w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:468,intrinsicWidth:688.5,pixelHeight:936,pixelWidth:1377,positionX:\"center\",positionY:\"bottom\",sizes:\"1280px\",src:\"https://framerusercontent.com/images/gyVbEt6sENAo5QXBINs24O8eRJA.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/gyVbEt6sENAo5QXBINs24O8eRJA.png?scale-down-to=512 512w,https://framerusercontent.com/images/gyVbEt6sENAo5QXBINs24O8eRJA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gyVbEt6sENAo5QXBINs24O8eRJA.png 1377w\"},className:\"framer-w6uo1k\",\"data-framer-name\":\"Background-cards\",name:\"Background-cards\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ggjsae\",\"data-framer-name\":\"background-gradient\",name:\"background-gradient\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-9drmld\",\"data-framer-name\":\"Blk gradient overlay\",name:\"Blk gradient overlay\"})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ogn27q hidden-1baj3rk hidden-1f21lp9\",\"data-framer-name\":\"background-gradient\",name:\"background-gradient\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1s1vn2s\",\"data-framer-name\":\"Blk gradient overlay\",name:\"Blk gradient overlay\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lnghg6\",\"data-framer-name\":\"3 cards\",name:\"3 cards\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gb08IE0VK:{transformTemplate:transformTemplate1},vqvAi04c7:{transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15kdmhm\",\"data-framer-name\":\"jacksfilms card\",name:\"jacksfilms card\",style:{rotate:-7},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1m60i4a\",\"data-framer-name\":\"Frame 37715\",name:\"Frame 37715\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gb08IE0VK:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(155.99970929052756),src:\"https://framerusercontent.com/images/Pmt3p1vSAKgYDWNLOX1JNovXKio.png\"}},vqvAi04c7:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(109.9997092905275),src:\"https://framerusercontent.com/images/Pmt3p1vSAKgYDWNLOX1JNovXKio.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/Pmt3p1vSAKgYDWNLOX1JNovXKio.png\"},className:\"framer-1tjqfiy\",\"data-framer-name\":\"image\",name:\"image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-39l7qj\",\"data-framer-name\":\"Frame 37750\",name:\"Frame 37750\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-fbn1mv\",\"data-framer-name\":\"Frame 37749\",name:\"Frame 37749\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"9.743718147277832px\",\"--framer-line-height\":\"150%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItQmxhY2s=\",\"--framer-font-family\":'\"Inter-Black\", \"Inter\", sans-serif',\"--framer-font-size\":\"9.74px\",\"--framer-font-weight\":\"900\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Business Insider\"})})}),className:\"framer-1g4oqyt\",\"data-framer-name\":\"Business Insider\",fonts:[\"Inter-Black\"],name:\"Business Insider\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"9.743718147277832px\",\"--framer-line-height\":\"150%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXI=\",\"--framer-font-family\":'\"Inter\"',\"--framer-font-size\":\"9.74px\",\"--framer-text-color\":\"rgba(158, 158, 158, 1)\"},children:\"@BusinessInsider\"})})}),className:\"framer-o29zm9\",\"data-framer-name\":\"@BusinessInsider\",fonts:[\"Inter\"],name:\"@BusinessInsider\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vqvAi04c7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Jacksfilms\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\"},children:\" \"}),\"strongly\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 215, 3)\"},children:\" \"}),\"considering moving\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 215, 3)\"},children:\" \"}),\"after\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 215, 3)\"},children:\" getting doxxed\"}),\". \"]})}),fonts:[\"Inter-SemiBold\",\"Inter-Bold\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"16px\",\"--framer-line-height\":\"150%\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXI=\",\"--framer-font-family\":'\"Inter\"',\"--framer-font-size\":\"16px\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Jacksfilms\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter-SemiBold\", \"Inter\", sans-serif',\"--framer-font-size\":\"16px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXI=\",\"--framer-font-family\":'\"Inter\"',\"--framer-font-size\":\"16px\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"strongly\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter-Bold\", \"Inter\", sans-serif',\"--framer-font-size\":\"16px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgba(255, 215, 3, 1)\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXI=\",\"--framer-font-family\":'\"Inter\"',\"--framer-font-size\":\"16px\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"considering moving\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter-Bold\", \"Inter\", sans-serif',\"--framer-font-size\":\"16px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgba(255, 215, 3, 1)\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXI=\",\"--framer-font-family\":'\"Inter\"',\"--framer-font-size\":\"16px\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"after\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter-Bold\", \"Inter\", sans-serif',\"--framer-font-size\":\"16px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgba(255, 215, 3, 1)\"},children:\" getting doxxed\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXI=\",\"--framer-font-family\":'\"Inter\"',\"--framer-font-size\":\"16px\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\". \"})]})}),className:\"framer-1tbx8h6\",\"data-framer-name\":\"Jacksfilms strongly considering moving after getting doxxed.\",fonts:[\"Inter\",\"Inter-SemiBold\",\"Inter-Bold\"],name:\"Jacksfilms strongly considering moving after getting doxxed.\",verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5mb6ej hidden-1baj3rk hidden-1f21lp9 hidden-1ift2b9\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vqvAi04c7:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(260.9268447580568),sizes:\"110.5px\",src:\"https://framerusercontent.com/images/aleQrbKbIaPU3RkxD6xsXX5TEg.png\",srcSet:\"https://framerusercontent.com/images/aleQrbKbIaPU3RkxD6xsXX5TEg.png?scale-down-to=512 512w,https://framerusercontent.com/images/aleQrbKbIaPU3RkxD6xsXX5TEg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/aleQrbKbIaPU3RkxD6xsXX5TEg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/aleQrbKbIaPU3RkxD6xsXX5TEg.png 2880w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/aleQrbKbIaPU3RkxD6xsXX5TEg.png\",srcSet:\"https://framerusercontent.com/images/aleQrbKbIaPU3RkxD6xsXX5TEg.png?scale-down-to=512 512w,https://framerusercontent.com/images/aleQrbKbIaPU3RkxD6xsXX5TEg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/aleQrbKbIaPU3RkxD6xsXX5TEg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/aleQrbKbIaPU3RkxD6xsXX5TEg.png 2880w\"},className:\"framer-mc163b\",\"data-framer-name\":\"image\",name:\"image\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vqvAi04c7:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(260.9268447580568),sizes:\"110.5px\",src:\"https://framerusercontent.com/images/aleQrbKbIaPU3RkxD6xsXX5TEg.png\",srcSet:\"https://framerusercontent.com/images/aleQrbKbIaPU3RkxD6xsXX5TEg.png?scale-down-to=512 512w,https://framerusercontent.com/images/aleQrbKbIaPU3RkxD6xsXX5TEg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/aleQrbKbIaPU3RkxD6xsXX5TEg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/aleQrbKbIaPU3RkxD6xsXX5TEg.png 2880w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/aleQrbKbIaPU3RkxD6xsXX5TEg.png\",srcSet:\"https://framerusercontent.com/images/aleQrbKbIaPU3RkxD6xsXX5TEg.png?scale-down-to=512 512w,https://framerusercontent.com/images/aleQrbKbIaPU3RkxD6xsXX5TEg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/aleQrbKbIaPU3RkxD6xsXX5TEg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/aleQrbKbIaPU3RkxD6xsXX5TEg.png 2880w\"},className:\"framer-1r1vj4d\",\"data-framer-name\":\"image\",name:\"image\"})})]}),isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wgp7o9 hidden-11mojgf\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ffOVdLseq:{background:{alt:\"\",fit:\"fill\",sizes:\"240.13px\",src:\"https://framerusercontent.com/images/aleQrbKbIaPU3RkxD6xsXX5TEg.png\",srcSet:\"https://framerusercontent.com/images/aleQrbKbIaPU3RkxD6xsXX5TEg.png?scale-down-to=512 512w,https://framerusercontent.com/images/aleQrbKbIaPU3RkxD6xsXX5TEg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/aleQrbKbIaPU3RkxD6xsXX5TEg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/aleQrbKbIaPU3RkxD6xsXX5TEg.png 2880w\"}},gb08IE0VK:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(330.42684475805686),sizes:\"248px\",src:\"https://framerusercontent.com/images/aleQrbKbIaPU3RkxD6xsXX5TEg.png\",srcSet:\"https://framerusercontent.com/images/aleQrbKbIaPU3RkxD6xsXX5TEg.png?scale-down-to=512 512w,https://framerusercontent.com/images/aleQrbKbIaPU3RkxD6xsXX5TEg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/aleQrbKbIaPU3RkxD6xsXX5TEg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/aleQrbKbIaPU3RkxD6xsXX5TEg.png 2880w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"294.9314px\",src:\"https://framerusercontent.com/images/aleQrbKbIaPU3RkxD6xsXX5TEg.png\",srcSet:\"https://framerusercontent.com/images/aleQrbKbIaPU3RkxD6xsXX5TEg.png?scale-down-to=512 512w,https://framerusercontent.com/images/aleQrbKbIaPU3RkxD6xsXX5TEg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/aleQrbKbIaPU3RkxD6xsXX5TEg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/aleQrbKbIaPU3RkxD6xsXX5TEg.png 2880w\"},className:\"framer-1f8hzzs\",\"data-framer-name\":\"image\",name:\"image\"})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gb08IE0VK:{transformTemplate:transformTemplate1},vqvAi04c7:{transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hh4rjn\",\"data-framer-name\":\"josephcox card\",name:\"josephcox card\",style:{rotate:11},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nxohpp\",\"data-framer-name\":\"Frame 37715\",name:\"Frame 37715\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gb08IE0VK:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(280.99928343294687),src:\"https://framerusercontent.com/images/yO9ppgkcV4Uhd4t21QNRT8NAMY.png\"}},vqvAi04c7:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(222.99928343294687),src:\"https://framerusercontent.com/images/yO9ppgkcV4Uhd4t21QNRT8NAMY.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/yO9ppgkcV4Uhd4t21QNRT8NAMY.png\"},className:\"framer-akm4j0\",\"data-framer-name\":\"image 2\",name:\"image 2\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11s9wsk\",\"data-framer-name\":\"Frame 37801\",name:\"Frame 37801\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qsfo3\",\"data-framer-name\":\"Frame 37800\",name:\"Frame 37800\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQmxhY2s=\",\"--framer-font-size\":\"9.74px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Joseph Cox\"})}),className:\"framer-1bwl09e\",\"data-framer-name\":\"Truthout\",fonts:[\"Inter-Black\"],name:\"Truthout\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-qjh07n\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:12,name:\"Group\",style:{rotate:-7},svg:'<svg width=\"12\" height=\"12\" viewBox=\"0 0 12 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M11.1078 6.35448C11.1391 6.00833 11.0736 5.65995 10.9182 5.34857C10.7633 5.0378 10.5246 4.7756 10.229 4.59222C10.3864 4.28213 10.4531 3.93421 10.4236 3.58793C10.3938 3.24104 10.2672 2.9098 10.0592 2.63119C9.83635 2.36382 9.54426 2.16407 9.214 2.0535C8.88415 1.94405 8.53029 1.92763 8.19201 2.00835C8.08331 1.6776 7.88467 1.38385 7.61811 1.16059C7.35156 0.937327 7.02814 0.79182 6.6836 0.742377C6.33752 0.710621 5.99026 0.775666 5.67942 0.931128C5.36858 1.08659 5.10792 1.32598 4.92614 1.62181C4.61552 1.46428 4.26666 1.39646 3.91918 1.42681C3.57183 1.4561 3.24005 1.58255 2.96084 1.79104C2.69347 2.01393 2.49413 2.30714 2.38522 2.63706C2.27578 2.96691 2.26095 3.32096 2.34228 3.65877C2.01146 3.768 1.71718 3.96658 1.49291 4.23247C1.26865 4.49837 1.12254 4.82226 1.0715 5.16661C1.04128 5.51342 1.10727 5.86187 1.2632 6.1733C1.4192 6.48421 1.65893 6.74653 1.95517 6.92944C1.79723 7.23893 1.729 7.58666 1.75841 7.93294C1.78777 8.27977 1.91268 8.61082 2.1201 8.8899C2.34311 9.1562 2.63579 9.35548 2.96558 9.46546C3.29531 9.57597 3.64923 9.59186 3.98732 9.51274C4.09661 9.84302 4.29532 10.1362 4.56181 10.36C4.82784 10.5832 5.15185 10.7283 5.49573 10.7787C5.84228 10.8111 6.19067 10.7456 6.50198 10.5907C6.81329 10.4359 7.07508 10.1961 7.25793 9.90038C7.5654 10.0662 7.91536 10.1385 8.26391 10.1083C8.61192 10.078 8.94373 9.94665 9.21849 9.73005C9.49324 9.51345 9.69892 9.22153 9.80968 8.88967C9.92045 8.5578 9.93185 8.20064 9.84186 7.86289C10.1721 7.7536 10.4654 7.55489 10.6892 7.2884C10.9123 7.02237 11.0574 6.69836 11.1078 6.35448ZM5.13171 7.73216L3.51705 5.68459L4.28991 5.07096L5.26554 6.30854L7.91851 4.02632L8.55915 4.77692L5.13171 7.73216Z\" fill=\"#1D9BF0\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"9.74px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(158, 158, 158)\"},children:\"@josephfcox\"})}),className:\"framer-15x9tjc\",\"data-framer-name\":\"@truthout\",fonts:[\"Inter\"],name:\"@truthout\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vqvAi04c7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Someone put facial recognition on Meta's glasses to\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 215, 3)\"},children:\" instantly dox strangers\"}),\".\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Someone put facial recognition on Meta's glasses to\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 215, 3)\"},children:\" instantly dox strangers\"}),\".\"]})}),className:\"framer-iydrzl\",\"data-framer-name\":\"Someone put facial recognition on Meta\u2019s glasses to instantly dox strangers.\",fonts:[\"Inter-Bold\"],name:\"Someone put facial recognition on Meta\u2019s glasses to instantly dox strangers.\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ffOVdLseq:{background:{alt:\"\",fit:\"fill\",sizes:\"252px\",src:\"https://framerusercontent.com/images/oCFJIwaDjASUGGwcnOi8b7SfIK8.png\",srcSet:\"https://framerusercontent.com/images/oCFJIwaDjASUGGwcnOi8b7SfIK8.png?scale-down-to=512 512w,https://framerusercontent.com/images/oCFJIwaDjASUGGwcnOi8b7SfIK8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/oCFJIwaDjASUGGwcnOi8b7SfIK8.png 1200w\"}},gb08IE0VK:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(454.92641890047616),sizes:\"276px\",src:\"https://framerusercontent.com/images/oCFJIwaDjASUGGwcnOi8b7SfIK8.png\",srcSet:\"https://framerusercontent.com/images/oCFJIwaDjASUGGwcnOi8b7SfIK8.png?scale-down-to=512 512w,https://framerusercontent.com/images/oCFJIwaDjASUGGwcnOi8b7SfIK8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/oCFJIwaDjASUGGwcnOi8b7SfIK8.png 1200w\"}},vqvAi04c7:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(373.92641890047616),sizes:\"256px\",src:\"https://framerusercontent.com/images/oCFJIwaDjASUGGwcnOi8b7SfIK8.png\",srcSet:\"https://framerusercontent.com/images/oCFJIwaDjASUGGwcnOi8b7SfIK8.png?scale-down-to=512 512w,https://framerusercontent.com/images/oCFJIwaDjASUGGwcnOi8b7SfIK8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/oCFJIwaDjASUGGwcnOi8b7SfIK8.png 1200w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"321.5px\",src:\"https://framerusercontent.com/images/oCFJIwaDjASUGGwcnOi8b7SfIK8.png\",srcSet:\"https://framerusercontent.com/images/oCFJIwaDjASUGGwcnOi8b7SfIK8.png?scale-down-to=512 512w,https://framerusercontent.com/images/oCFJIwaDjASUGGwcnOi8b7SfIK8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/oCFJIwaDjASUGGwcnOi8b7SfIK8.png 1200w\"},className:\"framer-1qnlgxz\",\"data-framer-name\":\"image 16\",name:\"image 16\"})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gb08IE0VK:{style:{rotate:18},transformTemplate:transformTemplate1},vqvAi04c7:{style:{rotate:15},transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ob8tdr\",\"data-framer-name\":\"truthout card\",name:\"truthout card\",style:{rotate:-6},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gkaaf4\",\"data-framer-name\":\"Frame 37715\",name:\"Frame 37715\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gb08IE0VK:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(75.99809113417791),src:\"https://framerusercontent.com/images/RY9HQP7n0rJXOKxxS102hu3tmf4.png\"}},vqvAi04c7:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(7.998671058205559),src:\"https://framerusercontent.com/images/RY9HQP7n0rJXOKxxS102hu3tmf4.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/RY9HQP7n0rJXOKxxS102hu3tmf4.png\"},className:\"framer-19p8ufw\",\"data-framer-name\":\"image\",name:\"image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18c7jqf\",\"data-framer-name\":\"Frame 37801\",name:\"Frame 37801\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11qxd66\",\"data-framer-name\":\"Frame 37800\",name:\"Frame 37800\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"9.743718147277832px\",\"--framer-line-height\":\"150%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItQmxhY2s=\",\"--framer-font-family\":'\"Inter-Black\", \"Inter\", sans-serif',\"--framer-font-size\":\"9.74px\",\"--framer-font-weight\":\"900\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Truthout\"})})}),className:\"framer-1qk4hi4\",\"data-framer-name\":\"Truthout\",fonts:[\"Inter-Black\"],name:\"Truthout\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ylguj\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:12,name:\"Group\",style:{rotate:-7},svg:'<svg width=\"12\" height=\"12\" viewBox=\"0 0 12 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M11.1078 6.35448C11.1391 6.00833 11.0736 5.65995 10.9182 5.34857C10.7633 5.0378 10.5246 4.7756 10.229 4.59222C10.3864 4.28213 10.4531 3.93421 10.4236 3.58793C10.3938 3.24104 10.2672 2.9098 10.0592 2.63119C9.83635 2.36382 9.54426 2.16407 9.214 2.0535C8.88415 1.94405 8.53029 1.92763 8.19201 2.00835C8.08331 1.6776 7.88467 1.38385 7.61811 1.16059C7.35156 0.937327 7.02814 0.79182 6.6836 0.742377C6.33752 0.710621 5.99026 0.775666 5.67942 0.931128C5.36858 1.08659 5.10792 1.32598 4.92614 1.62181C4.61552 1.46428 4.26666 1.39646 3.91918 1.42681C3.57183 1.4561 3.24005 1.58255 2.96084 1.79104C2.69347 2.01393 2.49413 2.30714 2.38522 2.63706C2.27578 2.96691 2.26095 3.32096 2.34228 3.65877C2.01146 3.768 1.71718 3.96658 1.49291 4.23247C1.26865 4.49837 1.12254 4.82226 1.0715 5.16661C1.04128 5.51342 1.10727 5.86187 1.2632 6.1733C1.4192 6.48421 1.65893 6.74653 1.95517 6.92944C1.79723 7.23893 1.729 7.58666 1.75841 7.93294C1.78777 8.27977 1.91268 8.61082 2.1201 8.8899C2.34311 9.1562 2.63579 9.35548 2.96558 9.46546C3.29531 9.57597 3.64923 9.59186 3.98732 9.51274C4.09661 9.84302 4.29532 10.1362 4.56181 10.36C4.82784 10.5832 5.15185 10.7283 5.49573 10.7787C5.84228 10.8111 6.19067 10.7456 6.50198 10.5907C6.81329 10.4359 7.07508 10.1961 7.25793 9.90038C7.5654 10.0662 7.91536 10.1385 8.26391 10.1083C8.61192 10.078 8.94373 9.94665 9.21849 9.73005C9.49324 9.51345 9.69892 9.22153 9.80968 8.88967C9.92045 8.5578 9.93185 8.20064 9.84186 7.86289C10.1721 7.7536 10.4654 7.55489 10.6892 7.2884C10.9123 7.02237 11.0574 6.69836 11.1078 6.35448ZM5.13171 7.73216L3.51705 5.68459L4.28991 5.07096L5.26554 6.30854L7.91851 4.02632L8.55915 4.77692L5.13171 7.73216Z\" fill=\"#1D9BF0\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"9.743718147277832px\",\"--framer-line-height\":\"150%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXI=\",\"--framer-font-family\":'\"Inter\"',\"--framer-font-size\":\"9.74px\",\"--framer-text-color\":\"rgba(158, 158, 158, 1)\"},children:\"@truthout\"})})}),className:\"framer-1nri91c\",\"data-framer-name\":\"@truthout\",fonts:[\"Inter\"],name:\"@truthout\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vqvAi04c7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Reproductive health workers face \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 215, 3)\"},children:\"constant doxxing threats\"}),\".\"]})}),fonts:[\"Inter-Bold\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"16px\",\"--framer-line-height\":\"150%\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXI=\",\"--framer-font-family\":'\"Inter\"',\"--framer-font-size\":\"16px\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Reproductive health workers face \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter-Bold\", \"Inter\", sans-serif',\"--framer-font-size\":\"16px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgba(255, 215, 3, 1)\"},children:\"constant doxxing threats\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXI=\",\"--framer-font-family\":'\"Inter\"',\"--framer-font-size\":\"16px\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\".\"})]})}),className:\"framer-6ofwvo\",\"data-framer-name\":\"Reproductive health workers face constant doxxing threats.\",fonts:[\"Inter\",\"Inter-Bold\"],name:\"Reproductive health workers face constant doxxing threats.\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ffOVdLseq:{background:{alt:\"\",fit:\"fill\",sizes:\"251px\",src:\"https://framerusercontent.com/images/VAeaFESQDRbLDpsmNijdFISrWMg.png\",srcSet:\"https://framerusercontent.com/images/VAeaFESQDRbLDpsmNijdFISrWMg.png?scale-down-to=512 512w,https://framerusercontent.com/images/VAeaFESQDRbLDpsmNijdFISrWMg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/VAeaFESQDRbLDpsmNijdFISrWMg.png 1536w\"}},gb08IE0VK:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(249.9252266017072),sizes:\"276px\",src:\"https://framerusercontent.com/images/VAeaFESQDRbLDpsmNijdFISrWMg.png\",srcSet:\"https://framerusercontent.com/images/VAeaFESQDRbLDpsmNijdFISrWMg.png?scale-down-to=512 512w,https://framerusercontent.com/images/VAeaFESQDRbLDpsmNijdFISrWMg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/VAeaFESQDRbLDpsmNijdFISrWMg.png 1536w\"}},vqvAi04c7:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(158.92580652573486),sizes:\"254px\",src:\"https://framerusercontent.com/images/VAeaFESQDRbLDpsmNijdFISrWMg.png\",srcSet:\"https://framerusercontent.com/images/VAeaFESQDRbLDpsmNijdFISrWMg.png?scale-down-to=512 512w,https://framerusercontent.com/images/VAeaFESQDRbLDpsmNijdFISrWMg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/VAeaFESQDRbLDpsmNijdFISrWMg.png 1536w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"296px\",src:\"https://framerusercontent.com/images/VAeaFESQDRbLDpsmNijdFISrWMg.png\",srcSet:\"https://framerusercontent.com/images/VAeaFESQDRbLDpsmNijdFISrWMg.png?scale-down-to=512 512w,https://framerusercontent.com/images/VAeaFESQDRbLDpsmNijdFISrWMg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/VAeaFESQDRbLDpsmNijdFISrWMg.png 1536w\"},className:\"framer-105v5xb\",\"data-framer-name\":\"image\",name:\"image\"})})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1frll6a\",\"data-framer-name\":\"CTA content frame\",name:\"CTA content frame\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h5nwra\",\"data-framer-name\":\"CTA content\",name:\"CTA content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vqvAi04c7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QXJjaGl2byBCbGFjay1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo Black\", \"Archivo Black Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"It\u2019s dangerous to go alone\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"40px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7QXJjaGl2byBCbGFjay1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo Black\"',\"--framer-font-size\":\"40px\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"It\u2019s dangerous to go alone\"})})}),className:\"framer-grs0jk\",\"data-framer-name\":\"It\u2019s dangerous to go alone\",fonts:[\"GF;Archivo Black-regular\"],name:\"It\u2019s dangerous to go alone\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"26px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggTW9uby1pdGFsaWM=\",\"--framer-font-family\":'\"IBM Plex Mono\"',\"--framer-font-size\":\"26px\",\"--framer-font-style\":\"italic\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Take this!\"})})}),className:\"framer-193h3gw\",\"data-framer-name\":\"Take this!\",fonts:[\"GF;IBM Plex Mono-italic\"],name:\"Take this!\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(MotionDivWithBounce,{className:\"framer-74mtl6\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1h44fbi\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vhdkbl\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1c68ix0\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-12kqzek\"}),/*#__PURE__*/_jsx(Link,{href:{hash:\":vJCJBgBdp\",webPageId:\"GWUUJNwuq\"},nodeId:\"aLjiYRpum\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-65q0zg framer-ql30bb\",\"data-framer-name\":\"Down-arrow\",fill:\"black\",intrinsicHeight:42,intrinsicWidth:42,name:\"Down-arrow\",svg:'<svg width=\"42\" height=\"42\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M20.719 41.438c-2.858 0-5.539-.542-8.044-1.626a20.79 20.79 0 0 1-6.602-4.448 21.386 21.386 0 0 1-4.468-6.601C.535 26.256 0 23.575 0 20.718c0-2.858.535-5.539 1.605-8.044a21.072 21.072 0 0 1 4.468-6.602 20.789 20.789 0 0 1 6.602-4.448C15.18.542 17.861 0 20.719 0c2.857 0 5.538.542 8.043 1.625a20.79 20.79 0 0 1 6.602 4.448c1.896 1.896 4.449 6.602 4.449 6.602s1.624 5.186 1.624 8.044c0 2.857-.541 5.538-1.624 8.043a21.095 21.095 0 0 1-4.449 6.602 20.79 20.79 0 0 1-6.601 4.449c-2.506 1.083-5.187 1.624-8.044 1.624Zm.02-10.157c.217 0 .42-.04.61-.122a2.17 2.17 0 0 0 .609-.426l6.906-6.663a1.78 1.78 0 0 0 .366-.508 1.44 1.44 0 0 0 .122-.609c0-.42-.15-.765-.447-1.036-.285-.284-.643-.426-1.077-.426-.474 0-.853.169-1.137.507L23.5 25.37l-1.198 1.3.122-3.148v-11.74c0-.448-.17-.827-.508-1.138a1.605 1.605 0 0 0-1.178-.488c-.447 0-.84.163-1.178.488-.325.311-.488.69-.488 1.137v11.74l.122 3.15-1.218-1.3-3.19-3.373c-.27-.338-.656-.507-1.157-.507-.434 0-.793.142-1.077.426-.284.271-.426.616-.426 1.036 0 .23.04.434.121.61.095.175.224.345.386.507l6.886 6.663c.217.203.42.345.61.426.19.082.392.122.61.122Z\" fill=\"#5A28E9\"/><path d=\"M21.348 31.16a1.53 1.53 0 0 1-.609.121c-.217 0-.42-.04-.61-.122a2.187 2.187 0 0 1-.609-.426l-6.886-6.663a2.194 2.194 0 0 1-.386-.508 1.44 1.44 0 0 1-.121-.609c0-.42.142-.765.426-1.036.284-.284.643-.426 1.077-.426.5 0 .887.169 1.157.507l3.19 3.372 1.218 1.3-.122-3.148v-11.74c0-.448.163-.827.488-1.138a1.65 1.65 0 0 1 1.178-.488c.46 0 .853.163 1.178.488.339.311.508.69.508 1.137v11.74l-.122 3.15 1.199-1.3 3.189-3.373c.284-.338.663-.507 1.137-.507.434 0 .792.142 1.077.426.298.271.447.616.447 1.036 0 .23-.041.434-.122.61a1.78 1.78 0 0 1-.366.507l-6.906 6.663a2.18 2.18 0 0 1-.61.426Z\" fill=\"#fff\"/></svg>',transformTemplate:transformTemplate2,withExternalLayout:true})})]})]})})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gb08IE0VK:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(1e3),pixelHeight:1182,pixelWidth:1176,positionX:\"center\",positionY:\"center\",sizes:\"100vw\",src:\"https://framerusercontent.com/images/kB89EcKhcbXKmIgBg0XFUwVBfk.png\",srcSet:\"https://framerusercontent.com/images/kB89EcKhcbXKmIgBg0XFUwVBfk.png?scale-down-to=1024 1018w,https://framerusercontent.com/images/kB89EcKhcbXKmIgBg0XFUwVBfk.png 1176w\"}},vqvAi04c7:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(1e3),pixelHeight:1182,pixelWidth:1176,positionX:\"center\",positionY:\"center\",sizes:\"100vw\",src:\"https://framerusercontent.com/images/kB89EcKhcbXKmIgBg0XFUwVBfk.png\",srcSet:\"https://framerusercontent.com/images/kB89EcKhcbXKmIgBg0XFUwVBfk.png?scale-down-to=1024 1018w,https://framerusercontent.com/images/kB89EcKhcbXKmIgBg0XFUwVBfk.png 1176w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:1182,pixelWidth:1176,positionX:\"center\",positionY:\"center\",sizes:\"100vw\",src:\"https://framerusercontent.com/images/kB89EcKhcbXKmIgBg0XFUwVBfk.png\",srcSet:\"https://framerusercontent.com/images/kB89EcKhcbXKmIgBg0XFUwVBfk.png?scale-down-to=1024 1018w,https://framerusercontent.com/images/kB89EcKhcbXKmIgBg0XFUwVBfk.png 1176w\"},className:\"framer-ypk9rp\",\"data-framer-name\":\"Container - video + cta\",id:elementId1,name:\"Container - video + cta\",ref:ref3,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-13g7ipo\",\"data-framer-name\":\"Bird swoop frame\",name:\"Bird swoop frame\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1f3oqsc\",\"data-framer-name\":\"Bird swoop\",fill:\"black\",intrinsicHeight:446,intrinsicWidth:442,name:\"Bird swoop\",svg:'<svg width=\"442\" height=\"446\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M1 107.498c1.008 25.468 347.293 43.501 372 91.379 4 14.622-6.601 28.461-10.51 31.252-2.785 1.988-8.969 6.126-14.197-.064-4.581-6.399-3.003-17.034 6.263-24.459 6.679-5.351 16.446-7.869 24.831-6.287 17.112 3.227 26.099 21.18 27.303 38.718 2.401 34.962-29.234 72.96-41.19 80.96\" stroke=\"url(#a)\" stroke-width=\"2\" stroke-linecap=\"round\"/><g filter=\"url(#b)\" fill=\"#FFD703\"><path d=\"M352.053 331.5c-1.203 4.898-1.191 5.998 2.602 6.369l3.756-13.756c-5.605 3.902-5.266 2.938-6.358 7.387Z\"/><path d=\"M358.819 338.312c-3.274 3.568-8.62 4.707-11.94 2.546l13.123-16.317c3.32 2.161-3.401 8.99-1.183 13.771Zm-16.068 8.36c-1.717 1.655-1.442 4.122.616 5.51 2.057 1.388 4.726.551 6.443-1.104l-7.059-4.406Z\"/><path d=\"M342.715 346.734c1.631-1.674 4.649-1.962 6.739-.644s1.967 3.332.335 5.006l-7.074-4.362Z\"/><path d=\"M354.846 344.571c3.848-4.046 6.421-7.881 2.558-10.466l-13.933 14.652c3.863 2.585 5.042-3.755 11.375-4.186Z\"/><path d=\"M358.021 345.611c5.759-3.187 4.697-4.666 9.15-9.254l-22.437 12.602c2.158 2.856 4.785-3.311 13.287-3.348Z\"/><path d=\"M354.008 341.862c5.758-3.18 3.795-6.022 13.784-5.322l-10.114 6.376-12.128 5.921c-.542-.715 2.7-3.794 8.458-6.975Z\"/><path d=\"M346.405 335.244c4.888-2.412 5.27-3.463 9.954-1.033l-7.85 13.391c-4.683-2.429-5.625-7.962-2.104-12.358Z\"/><path d=\"M341.343 337.83c-.724-4.732 2.699-19.015 4.046-8.46l1.858 3.4 1.857 3.399-.546 5.169-.547 5.17c-4.366.848-5.944-3.946-6.668-8.678Zm6.663 17.038-3.994-4.162 5.205-1.639-1.211 5.801Z\"/></g><defs><linearGradient id=\"a\" x1=\"373.722\" y1=\"333.462\" x2=\"396.425\" y2=\"143.288\" gradientUnits=\"userSpaceOnUse\"><stop offset=\".002\" stop-color=\"#FFA977\"/><stop offset=\".5\" stop-color=\"#FF85DA\" stop-opacity=\".7\"/><stop offset=\"1\" stop-color=\"#7D77FF\" stop-opacity=\"0\"/></linearGradient><filter id=\"b\" x=\"315.183\" y=\"303.049\" width=\"78.67\" height=\"82.879\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"><feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/><feColorMatrix in=\"SourceAlpha\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/><feMorphology radius=\"3.939\" in=\"SourceAlpha\" result=\"effect1_dropShadow_2704_6917\"/><feOffset dy=\"5\"/><feGaussianBlur stdDeviation=\"15\"/><feColorMatrix values=\"0 0 0 0 0.641516 0 0 0 0 0.688214 0 0 0 0 0.104495 0 0 0 0.2 0\"/><feBlend mode=\"multiply\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_2704_6917\"/><feBlend in=\"SourceGraphic\" in2=\"effect1_dropShadow_2704_6917\" result=\"shape\"/></filter></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref3,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-gq6hix\",\"data-framer-name\":\"particles\",id:elementId2,name:\"particles\",ref:ref4,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ffOVdLseq:{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"calc(100vw + 201px)\",src:\"https://framerusercontent.com/images/wpZ0n0Cd415IAqEMK1ZU70rqSo.png\",srcSet:\"https://framerusercontent.com/images/wpZ0n0Cd415IAqEMK1ZU70rqSo.png?scale-down-to=512 512w,https://framerusercontent.com/images/wpZ0n0Cd415IAqEMK1ZU70rqSo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wpZ0n0Cd415IAqEMK1ZU70rqSo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/wpZ0n0Cd415IAqEMK1ZU70rqSo.png 3210w\"}},gb08IE0VK:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(1403.5),positionX:\"center\",positionY:\"center\",sizes:\"calc(100vw + 350px)\",src:\"https://framerusercontent.com/images/wpZ0n0Cd415IAqEMK1ZU70rqSo.png\",srcSet:\"https://framerusercontent.com/images/wpZ0n0Cd415IAqEMK1ZU70rqSo.png?scale-down-to=512 512w,https://framerusercontent.com/images/wpZ0n0Cd415IAqEMK1ZU70rqSo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wpZ0n0Cd415IAqEMK1ZU70rqSo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/wpZ0n0Cd415IAqEMK1ZU70rqSo.png 3210w\"}},vqvAi04c7:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(1503.5),positionX:\"center\",positionY:\"center\",sizes:\"calc(100vw + 340px)\",src:\"https://framerusercontent.com/images/wpZ0n0Cd415IAqEMK1ZU70rqSo.png\",srcSet:\"https://framerusercontent.com/images/wpZ0n0Cd415IAqEMK1ZU70rqSo.png?scale-down-to=512 512w,https://framerusercontent.com/images/wpZ0n0Cd415IAqEMK1ZU70rqSo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wpZ0n0Cd415IAqEMK1ZU70rqSo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/wpZ0n0Cd415IAqEMK1ZU70rqSo.png 3210w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"calc(100vw - 130px)\",src:\"https://framerusercontent.com/images/wpZ0n0Cd415IAqEMK1ZU70rqSo.png\",srcSet:\"https://framerusercontent.com/images/wpZ0n0Cd415IAqEMK1ZU70rqSo.png?scale-down-to=512 512w,https://framerusercontent.com/images/wpZ0n0Cd415IAqEMK1ZU70rqSo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wpZ0n0Cd415IAqEMK1ZU70rqSo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/wpZ0n0Cd415IAqEMK1ZU70rqSo.png 3210w\"},className:\"framer-1c2ty94\",\"data-framer-name\":\"Particles-1069180036 8\",name:\"Particles-1069180036 8\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ffOVdLseq:{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"calc(100vw - 105px)\",src:\"https://framerusercontent.com/images/Y01pwoRzPCegsiwMZW2Aswd5k.png\",srcSet:\"https://framerusercontent.com/images/Y01pwoRzPCegsiwMZW2Aswd5k.png?scale-down-to=512 512w,https://framerusercontent.com/images/Y01pwoRzPCegsiwMZW2Aswd5k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Y01pwoRzPCegsiwMZW2Aswd5k.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Y01pwoRzPCegsiwMZW2Aswd5k.png 3640w\"}},gb08IE0VK:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(1301.0039953673813),positionX:\"center\",positionY:\"center\",sizes:\"calc(100vw + 45px)\",src:\"https://framerusercontent.com/images/Y01pwoRzPCegsiwMZW2Aswd5k.png\",srcSet:\"https://framerusercontent.com/images/Y01pwoRzPCegsiwMZW2Aswd5k.png?scale-down-to=512 512w,https://framerusercontent.com/images/Y01pwoRzPCegsiwMZW2Aswd5k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Y01pwoRzPCegsiwMZW2Aswd5k.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Y01pwoRzPCegsiwMZW2Aswd5k.png 3640w\"}},vqvAi04c7:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(1417.4960021972656),positionX:\"center\",positionY:\"center\",sizes:\"calc(100vw + 129px)\",src:\"https://framerusercontent.com/images/Y01pwoRzPCegsiwMZW2Aswd5k.png\",srcSet:\"https://framerusercontent.com/images/Y01pwoRzPCegsiwMZW2Aswd5k.png?scale-down-to=512 512w,https://framerusercontent.com/images/Y01pwoRzPCegsiwMZW2Aswd5k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Y01pwoRzPCegsiwMZW2Aswd5k.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Y01pwoRzPCegsiwMZW2Aswd5k.png 3640w\"},style:{rotate:90}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"calc(100vw - 163px)\",src:\"https://framerusercontent.com/images/Y01pwoRzPCegsiwMZW2Aswd5k.png\",srcSet:\"https://framerusercontent.com/images/Y01pwoRzPCegsiwMZW2Aswd5k.png?scale-down-to=512 512w,https://framerusercontent.com/images/Y01pwoRzPCegsiwMZW2Aswd5k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Y01pwoRzPCegsiwMZW2Aswd5k.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Y01pwoRzPCegsiwMZW2Aswd5k.png 3640w\"},className:\"framer-1ib2ctp\",\"data-framer-name\":\"Particles-1069180036 4\",name:\"Particles-1069180036 4\",style:{rotate:88}})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ovc2q5\",\"data-framer-name\":\"Header Text\",name:\"Header Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"48px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7QXJjaGl2by05MDA=\",\"--framer-font-family\":'\"Archivo\"',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"900\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Kanary Copilot\"})})}),className:\"framer-h6ww8l\",\"data-framer-name\":\"Kanary Copilot\",fonts:[\"GF;Archivo-900\"],name:\"Kanary Copilot\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"IBM Plex Mono\", monospace',\"--framer-font-size\":\"26px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"The \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggTW9uby1pdGFsaWM=\",\"--framer-font-style\":\"italic\",\"--framer-text-color\":\"rgb(255, 215, 3)\"},children:\"fast and free\"}),\" way to fight doxxing and digital stalking.\"]})}),className:\"framer-adybk2\",\"data-framer-name\":\"The fast and free way to fight doxxing and digital stalking.\",fonts:[\"GF;IBM Plex Mono-regular\",\"GF;IBM Plex Mono-italic\"],name:\"The fast and free way to fight doxxing and digital stalking.\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref3,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-khyfjh\",\"data-framer-name\":\"Phone + Video\",name:\"Phone + Video\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-70x566-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:20,bottomLeftRadius:20,bottomRightRadius:20,controls:false,height:\"100%\",id:\"o_tQ7V1nI\",isMixedBorderRadius:false,layoutId:\"o_tQ7V1nI\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/vILKcHN6LlZFcrR8eywIGHVZw00.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:20,topRightRadius:20,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gb08IE0VK:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:838.5,intrinsicWidth:426,loading:getLoadingLazyAtYPosition(1610),pixelHeight:1557,pixelWidth:852,sizes:\"300px\",src:\"https://framerusercontent.com/images/JpT3EFyjhAvX87YDS1Fi19RQ8bg.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/JpT3EFyjhAvX87YDS1Fi19RQ8bg.png?scale-down-to=1024 560w,https://framerusercontent.com/images/JpT3EFyjhAvX87YDS1Fi19RQ8bg.png 852w\"}},vqvAi04c7:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:838.5,intrinsicWidth:426,loading:getLoadingLazyAtYPosition(1610),pixelHeight:1557,pixelWidth:852,sizes:\"300px\",src:\"https://framerusercontent.com/images/JpT3EFyjhAvX87YDS1Fi19RQ8bg.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/JpT3EFyjhAvX87YDS1Fi19RQ8bg.png?scale-down-to=1024 560w,https://framerusercontent.com/images/JpT3EFyjhAvX87YDS1Fi19RQ8bg.png 852w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:838.5,intrinsicWidth:426,pixelHeight:1557,pixelWidth:852,sizes:\"300px\",src:\"https://framerusercontent.com/images/JpT3EFyjhAvX87YDS1Fi19RQ8bg.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/JpT3EFyjhAvX87YDS1Fi19RQ8bg.png?scale-down-to=1024 560w,https://framerusercontent.com/images/JpT3EFyjhAvX87YDS1Fi19RQ8bg.png 852w\"},className:\"framer-18xdini\",\"data-framer-name\":\"IPhone 15 Pro - Black Titanium - Portrait\",name:\"IPhone 15 Pro - Black Titanium - Portrait\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ti6r29\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ggejrd\",\"data-framer-name\":\"Bird swoop frame\",name:\"Bird swoop frame\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1bmaalk\",\"data-framer-name\":\"bird swoop\",fill:\"black\",intrinsicHeight:458,intrinsicWidth:267,name:\"bird swoop\",style:{rotate:-10},svg:'<svg width=\"267\" height=\"458\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M265.5 43.5C18 77 83.528 232.247 90.602 246.166c5.846 11.502 17.181 23.858 21.083 26.658 2.781 1.995 8.955 6.146 14.197-.032 4.597-6.389 3.042-17.027-6.207-24.473-6.666-5.366-16.428-7.907-24.816-6.344-17.12 3.189-23.164 20.819-27.391 38.656-5.554 23.431-.758 57.49 25.358 92.909\" stroke=\"url(#a)\" stroke-width=\"2\" stroke-linecap=\"round\"/><g filter=\"url(#b)\" fill=\"#FFD703\"><path d=\"M110.979 403.067c1.377 4.852 1.404 5.952-2.373 6.458l-4.244-13.613c5.74 3.699 5.367 2.748 6.617 7.155Z\"/><path d=\"M104.46 410.118c3.399 3.449 8.783 4.397 12.023 2.119l-13.696-15.839c-3.24 2.278 3.72 8.863 1.673 13.72Zm16.356 7.782c1.775 1.593 1.587 4.068-.42 5.528-2.006 1.46-4.702.72-6.477-.873l6.897-4.655Z\"/><path d=\"M120.854 417.955c-1.69-1.614-4.716-1.794-6.758-.403-2.042 1.392-1.846 3.4-.156 5.015l6.914-4.612Z\"/><path d=\"M108.653 416.226c-3.989-3.906-6.697-7.647-2.929-10.368l14.446 14.146c-3.768 2.722-5.172-3.573-11.517-3.778Z\"/><path d=\"M105.518 417.379c-5.869-2.979-4.861-4.495-9.475-8.921l22.872 11.794c-2.054 2.931-4.9-3.138-13.397-2.873Z\"/><path d=\"M109.395 413.491c-5.868-2.973-4.008-5.882-13.965-4.828l10.334 6.012 12.332 5.486c.516-.735-2.833-3.696-8.701-6.67Z\"/><path d=\"M116.757 406.609c-4.971-2.236-5.391-3.273-9.984-.678l8.322 13.103c4.593-2.594 5.338-8.157 1.662-12.425Z\"/><path d=\"M121.908 409.01c.555-4.755-3.375-18.907-4.345-8.31l-1.735 3.463-1.736 3.463.73 5.147.731 5.147c4.393.692 5.8-4.155 6.355-8.91Zm-6.052 17.266 3.843-4.302-5.26-1.452 1.417 5.754Z\"/></g><defs><linearGradient id=\"a\" x1=\"100.228\" y1=\"376.502\" x2=\"77.958\" y2=\"186.276\" gradientUnits=\"userSpaceOnUse\"><stop offset=\".002\" stop-color=\"#FFA977\"/><stop offset=\".5\" stop-color=\"#FF85DA\" stop-opacity=\".7\"/><stop offset=\"1\" stop-color=\"#7D77FF\" stop-opacity=\".64\"/></linearGradient><filter id=\"b\" x=\"69.369\" y=\"374.853\" width=\"78.725\" height=\"82.481\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"><feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/><feColorMatrix in=\"SourceAlpha\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/><feMorphology radius=\"3.939\" in=\"SourceAlpha\" result=\"effect1_dropShadow_2648_4456\"/><feOffset dy=\"5\"/><feGaussianBlur stdDeviation=\"15\"/><feColorMatrix values=\"0 0 0 0 0.641516 0 0 0 0 0.688214 0 0 0 0 0.104495 0 0 0 0.2 0\"/><feBlend mode=\"multiply\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_2648_4456\"/><feBlend in=\"SourceGraphic\" in2=\"effect1_dropShadow_2648_4456\" result=\"shape\"/></filter></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1j7lucg\",\"data-framer-name\":\"CTA section\",name:\"CTA section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4carep\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"IBM Plex Mono\", monospace',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Online safety actions \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggTW9uby1pdGFsaWM=\",\"--framer-font-style\":\"italic\",\"--framer-text-color\":\"rgb(255, 215, 3)\"},children:\"automated\"}),\" from the privacy of your device.\"]})}),className:\"framer-1mfet6x\",\"data-framer-name\":\"Online safety actions automated from the privacy of your device.\",fonts:[\"GF;IBM Plex Mono-regular\",\"GF;IBM Plex Mono-italic\"],name:\"Online safety actions automated from the privacy of your device.\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:\"https://apps.apple.com/us/app/kanary-copilot/id6553147966\",nodeId:\"RNwLrAjJB\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-ctulvr framer-ql30bb\",whileHover:animation5,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1i7lgng\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-m9wf0f\",\"data-framer-name\":\"Download on_the_App_Store_Badge_US-UK_RGB_blk_092917\",fill:\"black\",intrinsicHeight:40,intrinsicWidth:120,name:\"Download on_the_App_Store_Badge_US-UK_RGB_blk_092917\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"119.664\" height=\"40\"><path d=\"M110.135 0H9.535c-.367 0-.73 0-1.095.002-.306.002-.61.008-.919.013A13.215 13.215 0 0 0 5.517.19a6.665 6.665 0 0 0-1.9.627 6.438 6.438 0 0 0-1.62 1.18A6.258 6.258 0 0 0 .82 3.617 6.601 6.601 0 0 0 .195 5.52a12.993 12.993 0 0 0-.179 2.002c-.01.307-.01.615-.015.921V31.56c.005.31.006.61.015.921a12.992 12.992 0 0 0 .18 2.002 6.588 6.588 0 0 0 .624 1.905A6.208 6.208 0 0 0 1.998 38a6.274 6.274 0 0 0 1.618 1.179 6.7 6.7 0 0 0 1.901.63 13.455 13.455 0 0 0 2.004.177c.31.007.613.011.919.011.366.002.728.002 1.095.002h100.6c.36 0 .724 0 1.084-.002.304 0 .617-.004.922-.01a13.279 13.279 0 0 0 2-.178 6.804 6.804 0 0 0 1.908-.63A6.277 6.277 0 0 0 117.666 38a6.395 6.395 0 0 0 1.182-1.614 6.604 6.604 0 0 0 .619-1.905 13.506 13.506 0 0 0 .185-2.002c.004-.31.004-.61.004-.921.008-.364.008-.725.008-1.094V9.536c0-.366 0-.73-.008-1.092 0-.306 0-.614-.004-.92a13.507 13.507 0 0 0-.185-2.003 6.618 6.618 0 0 0-.62-1.903 6.466 6.466 0 0 0-2.798-2.8 6.768 6.768 0 0 0-1.908-.627 13.044 13.044 0 0 0-2-.176c-.305-.005-.618-.011-.922-.013-.36-.002-.725-.002-1.084-.002Z\" style=\"fill:#a6a6a6\"/><path d=\"M8.445 39.125c-.305 0-.602-.004-.904-.01a12.687 12.687 0 0 1-1.87-.164 5.884 5.884 0 0 1-1.656-.548 5.406 5.406 0 0 1-1.397-1.016 5.32 5.32 0 0 1-1.02-1.397 5.722 5.722 0 0 1-.544-1.657 12.414 12.414 0 0 1-.166-1.875c-.007-.21-.015-.913-.015-.913v-23.1s.009-.692.015-.895a12.37 12.37 0 0 1 .165-1.872 5.755 5.755 0 0 1 .544-1.662 5.373 5.373 0 0 1 1.015-1.398 5.565 5.565 0 0 1 1.402-1.023 5.823 5.823 0 0 1 1.653-.544A12.586 12.586 0 0 1 7.543.887l.902-.012h102.769l.913.013a12.385 12.385 0 0 1 1.858.162 5.938 5.938 0 0 1 1.671.548 5.594 5.594 0 0 1 2.415 2.42 5.763 5.763 0 0 1 .535 1.649 12.995 12.995 0 0 1 .174 1.887c.003.283.003.588.003.89.008.375.008.732.008 1.092v20.929c0 .363 0 .718-.008 1.075 0 .325 0 .623-.004.93a12.731 12.731 0 0 1-.17 1.853 5.739 5.739 0 0 1-.54 1.67 5.48 5.48 0 0 1-1.016 1.386 5.413 5.413 0 0 1-1.4 1.022 5.862 5.862 0 0 1-1.668.55 12.542 12.542 0 0 1-1.869.163c-.293.007-.6.011-.897.011l-1.084.002Z\"/><g data-name=\"&lt;Group&gt;\"><g data-name=\"&lt;Group&gt;\"><path data-name=\"&lt;Path&gt;\" d=\"M24.769 20.3a4.949 4.949 0 0 1 2.356-4.151 5.066 5.066 0 0 0-3.99-2.158c-1.68-.176-3.308 1.005-4.164 1.005-.872 0-2.19-.988-3.608-.958a5.315 5.315 0 0 0-4.473 2.728c-1.934 3.348-.491 8.269 1.361 10.976.927 1.325 2.01 2.805 3.428 2.753 1.387-.058 1.905-.885 3.58-.885 1.658 0 2.144.885 3.59.852 1.489-.025 2.426-1.332 3.32-2.67a10.962 10.962 0 0 0 1.52-3.092 4.782 4.782 0 0 1-2.92-4.4Zm-2.732-8.09a4.872 4.872 0 0 0 1.115-3.49 4.957 4.957 0 0 0-3.208 1.66 4.636 4.636 0 0 0-1.144 3.36 4.1 4.1 0 0 0 3.237-1.53Z\" style=\"fill:#fff\"/></g><path d=\"M42.302 27.14H37.57l-1.137 3.356h-2.005l4.484-12.418h2.083l4.483 12.418h-2.039Zm-4.243-1.55h3.752l-1.85-5.446h-.051Zm17.101.38c0 2.813-1.506 4.62-3.779 4.62a3.07 3.07 0 0 1-2.848-1.583h-.043v4.484h-1.86V21.442h1.8v1.506h.033a3.212 3.212 0 0 1 2.883-1.6c2.298 0 3.813 1.816 3.813 4.622Zm-1.91 0c0-1.833-.948-3.038-2.393-3.038-1.42 0-2.375 1.23-2.375 3.038 0 1.824.955 3.046 2.375 3.046 1.445 0 2.393-1.197 2.393-3.046Zm11.875 0c0 2.813-1.506 4.62-3.779 4.62a3.07 3.07 0 0 1-2.848-1.583h-.043v4.484h-1.859V21.442h1.799v1.506h.034a3.212 3.212 0 0 1 2.883-1.6c2.298 0 3.813 1.816 3.813 4.622Zm-1.91 0c0-1.833-.948-3.038-2.393-3.038-1.42 0-2.375 1.23-2.375 3.038 0 1.824.955 3.046 2.375 3.046 1.445 0 2.392-1.197 2.392-3.046Zm8.495 1.066c.138 1.232 1.334 2.04 2.97 2.04 1.566 0 2.693-.808 2.693-1.919 0-.964-.68-1.54-2.29-1.936l-1.609-.388c-2.28-.55-3.339-1.617-3.339-3.348 0-2.142 1.867-3.614 4.519-3.614 2.624 0 4.423 1.472 4.483 3.614h-1.876c-.112-1.239-1.136-1.987-2.634-1.987s-2.521.757-2.521 1.858c0 .878.654 1.395 2.255 1.79l1.368.336c2.548.603 3.606 1.626 3.606 3.443 0 2.323-1.85 3.778-4.793 3.778-2.754 0-4.614-1.42-4.734-3.667ZM83.346 19.3v2.142h1.722v1.472h-1.722v4.991c0 .776.345 1.137 1.102 1.137a5.808 5.808 0 0 0 .611-.043v1.463a5.104 5.104 0 0 1-1.032.086c-1.833 0-2.548-.689-2.548-2.445v-5.189h-1.316v-1.472h1.316V19.3Zm2.719 6.67c0-2.849 1.678-4.639 4.294-4.639 2.625 0 4.295 1.79 4.295 4.639 0 2.856-1.661 4.638-4.295 4.638-2.633 0-4.294-1.782-4.294-4.638Zm6.695 0c0-1.954-.895-3.108-2.401-3.108s-2.4 1.162-2.4 3.108c0 1.962.894 3.106 2.4 3.106s2.401-1.144 2.401-3.106Zm3.426-4.528h1.773v1.541h.043a2.16 2.16 0 0 1 2.177-1.635 2.866 2.866 0 0 1 .637.069v1.738a2.598 2.598 0 0 0-.835-.112 1.873 1.873 0 0 0-1.937 2.083v5.37h-1.858Zm13.198 6.395c-.25 1.643-1.85 2.771-3.898 2.771-2.634 0-4.269-1.764-4.269-4.595 0-2.84 1.644-4.682 4.19-4.682 2.506 0 4.08 1.72 4.08 4.466v.637h-6.394v.112a2.358 2.358 0 0 0 2.436 2.564 2.048 2.048 0 0 0 2.09-1.273Zm-6.282-2.702h4.526a2.177 2.177 0 0 0-2.22-2.298 2.292 2.292 0 0 0-2.306 2.298Z\" style=\"fill:#fff\"/></g><path d=\"M37.826 8.731a2.64 2.64 0 0 1 2.808 2.965c0 1.906-1.03 3.002-2.808 3.002h-2.155V8.73Zm-1.228 5.123h1.125a1.876 1.876 0 0 0 1.967-2.146 1.881 1.881 0 0 0-1.967-2.134h-1.125Zm5.082-1.41a2.133 2.133 0 1 1 4.248 0 2.134 2.134 0 1 1-4.247 0Zm3.334 0c0-.976-.439-1.547-1.208-1.547-.773 0-1.207.571-1.207 1.547 0 .984.434 1.55 1.207 1.55.77 0 1.208-.57 1.208-1.55Zm6.559 2.254h-.922l-.93-3.317h-.07l-.927 3.317h-.913l-1.242-4.503h.902l.806 3.436h.067l.926-3.436h.852l.926 3.436h.07l.803-3.436h.889Zm2.281-4.503h.855v.715h.066a1.348 1.348 0 0 1 1.344-.802 1.465 1.465 0 0 1 1.559 1.675v2.915h-.889v-2.692c0-.724-.314-1.084-.972-1.084a1.033 1.033 0 0 0-1.075 1.141v2.635h-.888Zm5.24-1.758h.888v6.26h-.888Zm2.124 4.007a2.133 2.133 0 1 1 4.247 0 2.134 2.134 0 1 1-4.247 0Zm3.333 0c0-.976-.439-1.547-1.208-1.547-.773 0-1.207.571-1.207 1.547 0 .984.434 1.55 1.207 1.55.77 0 1.208-.57 1.208-1.55Zm1.849.98c0-.81.604-1.278 1.676-1.344l1.22-.07v-.389c0-.475-.315-.744-.922-.744-.497 0-.84.182-.939.5h-.86c.09-.773.818-1.27 1.84-1.27 1.128 0 1.765.563 1.765 1.514v3.077h-.855v-.633h-.07a1.515 1.515 0 0 1-1.353.707 1.36 1.36 0 0 1-1.501-1.348Zm2.895-.384v-.377l-1.1.07c-.62.042-.9.253-.9.65 0 .405.351.64.834.64a1.062 1.062 0 0 0 1.166-.983Zm2.053-.596c0-1.423.732-2.324 1.87-2.324a1.484 1.484 0 0 1 1.38.79h.067V8.437h.888v6.26h-.851v-.71h-.07a1.563 1.563 0 0 1-1.415.785c-1.145 0-1.869-.901-1.869-2.328Zm.918 0c0 .955.45 1.53 1.203 1.53.75 0 1.212-.583 1.212-1.526 0-.938-.468-1.53-1.212-1.53-.748 0-1.203.58-1.203 1.526Zm6.964 0a2.133 2.133 0 1 1 4.247 0 2.134 2.134 0 1 1-4.247 0Zm3.333 0c0-.976-.438-1.547-1.208-1.547-.772 0-1.207.571-1.207 1.547 0 .984.435 1.55 1.207 1.55.77 0 1.208-.57 1.208-1.55Zm2.107-2.249h.855v.715h.066a1.348 1.348 0 0 1 1.344-.802 1.465 1.465 0 0 1 1.559 1.675v2.915h-.889v-2.692c0-.724-.314-1.084-.972-1.084a1.033 1.033 0 0 0-1.075 1.141v2.635h-.889Zm8.845-1.121v1.141h.976v.749h-.976v2.315c0 .472.194.679.637.679a2.967 2.967 0 0 0 .339-.021v.74a2.916 2.916 0 0 1-.484.046c-.988 0-1.381-.348-1.381-1.216v-2.543h-.715v-.749h.715V9.074Zm2.19-.637h.88v2.481h.07a1.386 1.386 0 0 1 1.374-.806 1.483 1.483 0 0 1 1.55 1.679v2.907h-.889V12.01c0-.72-.335-1.084-.963-1.084a1.052 1.052 0 0 0-1.134 1.142v2.63h-.888Zm9.056 5.045a1.828 1.828 0 0 1-1.95 1.303 2.045 2.045 0 0 1-2.081-2.325 2.077 2.077 0 0 1 2.076-2.352c1.253 0 2.009.856 2.009 2.27v.31h-3.18v.05a1.19 1.19 0 0 0 1.2 1.29 1.08 1.08 0 0 0 1.07-.546Zm-3.126-1.451h2.275a1.086 1.086 0 0 0-1.109-1.167 1.152 1.152 0 0 0-1.166 1.167Z\" style=\"fill:#fff\" data-name=\"&lt;Group&gt;\"/></svg>',withExternalLayout:true})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"WJHrjxGic\"},implicitPathVariables:undefined},{href:{webPageId:\"WJHrjxGic\"},implicitPathVariables:undefined},{href:{webPageId:\"WJHrjxGic\"},implicitPathVariables:undefined},{href:{webPageId:\"WJHrjxGic\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gb08IE0VK:{y:2450.5},vqvAi04c7:{y:2450.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,children:/*#__PURE__*/_jsx(Container,{className:\"framer-dmi2lz-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ffOVdLseq:{XFRI8z_ME:resolvedLinks[1]},gb08IE0VK:{XFRI8z_ME:resolvedLinks[2]},vqvAi04c7:{XFRI8z_ME:resolvedLinks[3]}},children:/*#__PURE__*/_jsx(CopilotSiteLink,{height:\"100%\",id:\"ROFPa7VxL\",layoutId:\"ROFPa7VxL\",nrAqAVBXj:\"Join the Android waitlist\",UIrnIKQ0w:true,width:\"100%\",XFRI8z_ME:resolvedLinks[0]})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gb08IE0VK:{y:2490.5},vqvAi04c7:{y:2490.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:41,children:/*#__PURE__*/_jsx(Container,{className:\"framer-w336q4-container\",children:/*#__PURE__*/_jsx(PrivacyPolicyButton,{height:\"100%\",id:\"JAk54E8Hk\",layoutId:\"JAk54E8Hk\",width:\"100%\"})})})})]})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rbjl9w\",\"data-framer-name\":\"Container - series\",name:\"Container - series\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13z464j\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16lp4bf\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1707u1d\",\"data-framer-name\":\"Header Text\",name:\"Header Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7QXJjaGl2by05MDA=\",\"--framer-font-family\":'\"Archivo\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"900\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Go \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 215, 3)\"},children:\"big\"}),\". \",/*#__PURE__*/_jsx(\"br\",{}),\"Stay strong.\"]})}),className:\"framer-1efw3k7\",\"data-framer-name\":\"Kanary Copilot\",fonts:[\"GF;Archivo-900\"],name:\"Kanary Copilot\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"IBM Plex Mono\", monospace',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Series are tailored to help you take the right actions at the right time.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"IBM Plex Mono\", monospace',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"So you can keep shining.\"})]}),className:\"framer-1rpmu6e\",\"data-framer-name\":\"The fast and free way to fight doxxing and digital stalking.\",fonts:[\"GF;IBM Plex Mono-regular\"],name:\"The fast and free way to fight doxxing and digital stalking.\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16kpy7h\",\"data-framer-name\":\"three\",name:\"three\",children:[isDisplayed3()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-3zixwk hidden-1baj3rk hidden-1ift2b9 hidden-11mojgf\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:164,intrinsicWidth:186,name:\"Graphic\",svg:'<svg width=\"186\" height=\"164\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g filter=\"url(#a)\"><path d=\"M125.701 111.834a2.001 2.001 0 0 0 2.633-1.035l7.186-16.504a2 2 0 1 0-3.667-1.597l-6.388 14.67-14.669-6.388a2 2 0 0 0-1.598 3.667l16.503 7.187Zm-72.964-63.32a2 2 0 1 0-.474 3.972l.474-3.972Zm1.604 4.231a2 2 0 1 0 .517-3.966l-.517 3.966Zm13.158-1.795a2 2 0 0 0-.865 3.905l.865-3.905Zm3.158 4.88a2 2 0 0 0 1.022-3.868l-1.022 3.867Zm13.267.342a2 2 0 1 0-1.601 3.665l1.602-3.665Zm2.1 5.418a2 2 0 1 0 1.823-3.56l-1.823 3.56Zm12.788 3.474a2 2 0 0 0-2.481 3.138l2.48-3.138Zm.64 5.774a2 2 0 0 0 2.677-2.973l-2.677 2.973Zm11.512 6.537a2 2 0 1 0-3.146 2.47l3.146-2.47Zm-.68 5.777a2 2 0 0 0 3.263-2.314l-3.263 2.314Zm10.039 8.642a2 2 0 0 0-3.516 1.907l3.516-1.907Zm-1.597 5.589a2 2 0 1 0 3.576-1.793l-3.576 1.793Zm8.836 9.886a2 2 0 1 0-3.706 1.505l3.706-1.505Zm-75.3-54.783c.699.083 1.391.17 2.079.26l.517-3.967c-.703-.092-1.41-.18-2.12-.265l-.475 3.972Zm14.372 2.369c1.363.302 2.704.626 4.023.975l1.022-3.868a105.81 105.81 0 0 0-4.18-1.012l-.865 3.905Zm15.689 4.982a67.103 67.103 0 0 1 3.701 1.753l1.823-3.56a71.092 71.092 0 0 0-3.922-1.858l-1.602 3.665Zm14.008 8.365a63.61 63.61 0 0 1 3.121 2.636l2.677-2.973a67.887 67.887 0 0 0-3.317-2.8l-2.481 3.137Zm11.487 11.643a84.557 84.557 0 0 1 2.466 3.307l3.263-2.314a88.251 88.251 0 0 0-2.583-3.463l-3.146 2.47Zm8.989 13.856a128.924 128.924 0 0 1 1.919 3.682l3.576-1.793a134.23 134.23 0 0 0-1.979-3.796l-3.516 1.907Zm7.049 15.073c.262.645.523 1.298.783 1.958l3.722-1.464c-.265-.674-.531-1.34-.799-1.999l-3.706 1.505Z\" fill=\"#34A853\"/></g><defs><filter id=\"a\" x=\".5\" y=\".5\" width=\"185.188\" height=\"163.5\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"><feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/><feColorMatrix in=\"SourceAlpha\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/><feOffset dy=\"2\"/><feGaussianBlur stdDeviation=\"25\"/><feComposite in2=\"hardAlpha\" operator=\"out\"/><feColorMatrix values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0\"/><feBlend in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_4174_12203\"/><feColorMatrix in=\"SourceAlpha\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/><feOffset dy=\"2\"/><feGaussianBlur stdDeviation=\"8\"/><feComposite in2=\"hardAlpha\" operator=\"out\"/><feColorMatrix values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0\"/><feBlend in2=\"effect1_dropShadow_4174_12203\" result=\"effect2_dropShadow_4174_12203\"/><feColorMatrix in=\"SourceAlpha\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/><feOffset/><feGaussianBlur stdDeviation=\"15\"/><feComposite in2=\"hardAlpha\" operator=\"out\"/><feColorMatrix values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0\"/><feBlend in2=\"effect2_dropShadow_4174_12203\" result=\"effect3_dropShadow_4174_12203\"/><feBlend in=\"SourceGraphic\" in2=\"effect3_dropShadow_4174_12203\" result=\"shape\"/></filter></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-130jn2i\",\"data-framer-name\":\"Left\",name:\"Left\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-xk9487\",\"data-framer-name\":\"glow\",name:\"glow\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15yp3li\",\"data-border\":true,\"data-framer-name\":\"profile\",name:\"profile\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gb08IE0VK:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(3369),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/DFjt9CrVXM8ojbFpCdLDc6eHaB0.png\"}},vqvAi04c7:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(3369),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/DFjt9CrVXM8ojbFpCdLDc6eHaB0.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/DFjt9CrVXM8ojbFpCdLDc6eHaB0.png\"},className:\"framer-1iuaz09\",\"data-framer-name\":\"output\",name:\"output\"})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-x2ytz2\",\"data-framer-name\":\"Frame 37921\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:73,intrinsicWidth:227,name:\"Frame 37921\",svg:'<svg width=\"227\" height=\"73\" viewBox=\"0 0 227 73\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M7.42406 4C9.18406 4 10.6307 4.36 11.7641 5.08C12.8974 5.78667 13.4774 6.84 13.5041 8.24V8.48H9.36406V8.4C9.36406 8 9.2174 7.66667 8.92406 7.4C8.63073 7.13333 8.18406 7 7.58406 7C6.9974 7 6.54406 7.08667 6.22406 7.26C5.9174 7.43333 5.76406 7.64667 5.76406 7.9C5.76406 8.26 5.9774 8.52667 6.40406 8.7C6.83073 8.87333 7.5174 9.05333 8.46406 9.24C9.57073 9.46667 10.4774 9.70667 11.1841 9.96C11.9041 10.2 12.5307 10.6 13.0641 11.16C13.5974 11.72 13.8707 12.48 13.8841 13.44C13.8841 15.0667 13.3307 16.2733 12.2241 17.06C11.1307 17.8467 9.66406 18.24 7.82406 18.24C5.6774 18.24 4.00406 17.88 2.80406 17.16C1.6174 16.44 1.02406 15.1667 1.02406 13.34H5.20406C5.20406 14.0333 5.38406 14.5 5.74406 14.74C6.10406 14.9667 6.66406 15.08 7.42406 15.08C7.98406 15.08 8.44406 15.02 8.80406 14.9C9.1774 14.78 9.36406 14.5333 9.36406 14.16C9.36406 13.8267 9.1574 13.58 8.74406 13.42C8.34406 13.2467 7.68406 13.0667 6.76406 12.88C5.64406 12.64 4.7174 12.3933 3.98406 12.14C3.25073 11.8733 2.61073 11.44 2.06406 10.84C1.5174 10.24 1.24406 9.42667 1.24406 8.4C1.24406 6.89333 1.82406 5.78667 2.98406 5.08C4.1574 4.36 5.6374 4 7.42406 4ZM22.8377 7.44V10.14H20.5977V14.16C20.5977 14.64 20.6777 14.9933 20.8377 15.22C20.9977 15.4333 21.291 15.54 21.7177 15.54H22.8377V17.88C22.5177 17.9867 22.1043 18.0733 21.5977 18.14C21.091 18.2067 20.651 18.24 20.2777 18.24C19.1043 18.24 18.1977 18.0267 17.5577 17.6C16.931 17.1733 16.6177 16.4467 16.6177 15.42V10.14H15.1377V7.44H16.7777L17.6377 4.24H20.5977V7.44H22.8377ZM31.1044 7.18C31.411 7.18 31.6844 7.22 31.9244 7.3C32.1644 7.36667 32.2844 7.40667 32.2844 7.42V10.76H31.0044C30.1777 10.76 29.5777 10.9733 29.2044 11.4C28.8444 11.8267 28.6644 12.46 28.6644 13.3V18H24.6844V7.44H27.9444L28.2044 9.04C28.4444 8.42667 28.8244 7.96667 29.3444 7.66C29.8644 7.34 30.451 7.18 31.1044 7.18ZM39.3436 7.2C41.2769 7.2 42.7503 7.65333 43.7636 8.56C44.7903 9.46667 45.3036 10.8533 45.3036 12.72V13.4H37.3836C37.3836 14.16 37.5503 14.7333 37.8836 15.12C38.2303 15.5067 38.7703 15.7 39.5036 15.7C40.1703 15.7 40.6569 15.56 40.9636 15.28C41.2836 15 41.4436 14.6267 41.4436 14.16H45.3036C45.3036 15.44 44.8169 16.44 43.8436 17.16C42.8703 17.88 41.4503 18.24 39.5836 18.24C37.6236 18.24 36.1036 17.7867 35.0236 16.88C33.9436 15.96 33.4036 14.5733 33.4036 12.72C33.4036 10.9067 33.9303 9.53333 34.9836 8.6C36.0369 7.66667 37.4903 7.2 39.3436 7.2ZM39.5036 9.74C38.2503 9.74 37.5503 10.3333 37.4036 11.52H41.2836C41.2836 10.9733 41.1236 10.54 40.8036 10.22C40.4969 9.9 40.0636 9.74 39.5036 9.74ZM52.4434 7.2C54.0568 7.2 55.3701 7.47333 56.3834 8.02C57.3968 8.55333 57.9034 9.42667 57.9034 10.64V14.76C57.9034 14.9867 57.9568 15.1733 58.0634 15.32C58.1701 15.4667 58.3301 15.54 58.5434 15.54H59.2634V17.84C59.2234 17.8667 59.1168 17.9133 58.9434 17.98C58.7834 18.0333 58.5501 18.0867 58.2434 18.14C57.9368 18.2067 57.5834 18.24 57.1834 18.24C56.4101 18.24 55.7701 18.1267 55.2634 17.9C54.7701 17.66 54.4301 17.3333 54.2434 16.92C53.7368 17.32 53.1701 17.64 52.5434 17.88C51.9168 18.12 51.1834 18.24 50.3434 18.24C47.8634 18.24 46.6234 17.2533 46.6234 15.28C46.6234 14.2533 46.8968 13.4733 47.4434 12.94C48.0034 12.3933 48.8034 12.02 49.8434 11.82C50.8834 11.62 52.2434 11.52 53.9234 11.52V11C53.9234 10.5867 53.7768 10.2733 53.4834 10.06C53.2034 9.84667 52.8368 9.74 52.3834 9.74C51.9701 9.74 51.6101 9.81333 51.3034 9.96C51.0101 10.1067 50.8634 10.34 50.8634 10.66V10.74H46.9434C46.9301 10.6733 46.9234 10.58 46.9234 10.46C46.9234 9.46 47.3968 8.66667 48.3434 8.08C49.3034 7.49333 50.6701 7.2 52.4434 7.2ZM53.9234 13.4C52.7901 13.4 51.9501 13.5267 51.4034 13.78C50.8701 14.02 50.6034 14.3467 50.6034 14.76C50.6034 15.4267 51.0568 15.76 51.9634 15.76C52.4834 15.76 52.9368 15.62 53.3234 15.34C53.7234 15.06 53.9234 14.7133 53.9234 14.3V13.4ZM74.5833 7.2C75.7833 7.2 76.6833 7.54667 77.2833 8.24C77.8833 8.92 78.1833 9.89333 78.1833 11.16V18H74.2033V11.64C74.2033 11.1867 74.0899 10.8267 73.8633 10.56C73.6499 10.28 73.3433 10.14 72.9433 10.14C72.4766 10.14 72.0966 10.3 71.8033 10.62C71.5099 10.94 71.3633 11.3333 71.3633 11.8V18H67.3833V11.64C67.3833 11.1867 67.2699 10.8267 67.0433 10.56C66.8299 10.28 66.5233 10.14 66.1233 10.14C65.6566 10.14 65.2766 10.3 64.9833 10.62C64.6899 10.94 64.5433 11.3333 64.5433 11.8V18H60.5633V7.44H63.8233L64.0833 9.02C64.4833 8.46 65.0099 8.02 65.6633 7.7C66.3299 7.36667 67.0299 7.2 67.7633 7.2C69.3499 7.2 70.4166 7.80667 70.9633 9.02C71.3766 8.46 71.9033 8.02 72.5433 7.7C73.1966 7.36667 73.8766 7.2 74.5833 7.2ZM88.2433 18L87.9033 16.5C87.1299 17.66 86.0099 18.24 84.5433 18.24C83.1166 18.24 82.0166 17.7733 81.2433 16.84C80.4699 15.9067 80.0833 14.5267 80.0833 12.7C80.0833 10.8867 80.4699 9.52 81.2433 8.6C82.0166 7.66667 83.1166 7.2 84.5433 7.2C85.7566 7.2 86.7433 7.60667 87.5033 8.42V3.5H91.4833V18H88.2433ZM85.7833 10.14C84.6366 10.14 84.0633 10.8267 84.0633 12.2V13.26C84.0633 14.62 84.6366 15.3 85.7833 15.3C86.3699 15.3 86.8099 15.0933 87.1033 14.68C87.3966 14.2667 87.5433 13.7267 87.5433 13.06V12.4C87.5433 11.7333 87.3966 11.1933 87.1033 10.78C86.8099 10.3533 86.3699 10.14 85.7833 10.14ZM100.323 7.18C100.63 7.18 100.903 7.22 101.143 7.3C101.383 7.36667 101.503 7.40667 101.503 7.42V10.76H100.223C99.3965 10.76 98.7965 10.9733 98.4231 11.4C98.0631 11.8267 97.8831 12.46 97.8831 13.3V18H93.9031V7.44H97.1631L97.4231 9.04C97.6631 8.42667 98.0431 7.96667 98.5631 7.66C99.0831 7.34 99.6698 7.18 100.323 7.18ZM108.562 7.2C110.496 7.2 111.969 7.65333 112.982 8.56C114.009 9.46667 114.522 10.8533 114.522 12.72V13.4H106.602C106.602 14.16 106.769 14.7333 107.102 15.12C107.449 15.5067 107.989 15.7 108.722 15.7C109.389 15.7 109.876 15.56 110.182 15.28C110.502 15 110.662 14.6267 110.662 14.16H114.522C114.522 15.44 114.036 16.44 113.062 17.16C112.089 17.88 110.669 18.24 108.802 18.24C106.842 18.24 105.322 17.7867 104.242 16.88C103.162 15.96 102.622 14.5733 102.622 12.72C102.622 10.9067 103.149 9.53333 104.202 8.6C105.256 7.66667 106.709 7.2 108.562 7.2ZM108.722 9.74C107.469 9.74 106.769 10.3333 106.622 11.52H110.502C110.502 10.9733 110.342 10.54 110.022 10.22C109.716 9.9 109.282 9.74 108.722 9.74ZM121.662 7.2C123.276 7.2 124.589 7.47333 125.602 8.02C126.616 8.55333 127.122 9.42667 127.122 10.64V14.76C127.122 14.9867 127.176 15.1733 127.282 15.32C127.389 15.4667 127.549 15.54 127.762 15.54H128.482V17.84C128.442 17.8667 128.336 17.9133 128.162 17.98C128.002 18.0333 127.769 18.0867 127.462 18.14C127.156 18.2067 126.802 18.24 126.402 18.24C125.629 18.24 124.989 18.1267 124.482 17.9C123.989 17.66 123.649 17.3333 123.462 16.92C122.956 17.32 122.389 17.64 121.762 17.88C121.136 18.12 120.402 18.24 119.562 18.24C117.082 18.24 115.842 17.2533 115.842 15.28C115.842 14.2533 116.116 13.4733 116.662 12.94C117.222 12.3933 118.022 12.02 119.062 11.82C120.102 11.62 121.462 11.52 123.142 11.52V11C123.142 10.5867 122.996 10.2733 122.702 10.06C122.422 9.84667 122.056 9.74 121.602 9.74C121.189 9.74 120.829 9.81333 120.522 9.96C120.229 10.1067 120.082 10.34 120.082 10.66V10.74H116.162C116.149 10.6733 116.142 10.58 116.142 10.46C116.142 9.46 116.616 8.66667 117.562 8.08C118.522 7.49333 119.889 7.2 121.662 7.2ZM123.142 13.4C122.009 13.4 121.169 13.5267 120.622 13.78C120.089 14.02 119.822 14.3467 119.822 14.76C119.822 15.4267 120.276 15.76 121.182 15.76C121.702 15.76 122.156 15.62 122.542 15.34C122.942 15.06 123.142 14.7133 123.142 14.3V13.4ZM143.802 7.2C145.002 7.2 145.902 7.54667 146.502 8.24C147.102 8.92 147.402 9.89333 147.402 11.16V18H143.422V11.64C143.422 11.1867 143.309 10.8267 143.082 10.56C142.869 10.28 142.562 10.14 142.162 10.14C141.695 10.14 141.315 10.3 141.022 10.62C140.729 10.94 140.582 11.3333 140.582 11.8V18H136.602V11.64C136.602 11.1867 136.489 10.8267 136.262 10.56C136.049 10.28 135.742 10.14 135.342 10.14C134.875 10.14 134.495 10.3 134.202 10.62C133.909 10.94 133.762 11.3333 133.762 11.8V18H129.782V7.44H133.042L133.302 9.02C133.702 8.46 134.229 8.02 134.882 7.7C135.549 7.36667 136.249 7.2 136.982 7.2C138.569 7.2 139.635 7.80667 140.182 9.02C140.595 8.46 141.122 8.02 141.762 7.7C142.415 7.36667 143.095 7.2 143.802 7.2Z\" fill=\"white\"/>\\n<path d=\"M158.703 17.6328C158.005 17.6328 157.49 17.4661 157.156 17.1328C156.823 16.7995 156.656 16.2839 156.656 15.5859V13.8984C156.656 13.7422 156.604 13.6094 156.5 13.5L155.305 12.2969C154.81 11.8073 154.562 11.3281 154.562 10.8594C154.562 10.3906 154.81 9.90885 155.305 9.41406L156.5 8.21094C156.604 8.10156 156.656 7.97135 156.656 7.82031V6.125C156.656 5.42188 156.823 4.90625 157.156 4.57812C157.49 4.24479 158.005 4.07812 158.703 4.07812H160.398C160.555 4.07812 160.685 4.02604 160.789 3.92188L161.992 2.72656C162.487 2.23177 162.969 1.98438 163.438 1.98438C163.906 1.97917 164.385 2.22656 164.875 2.72656L166.078 3.92188C166.188 4.02604 166.32 4.07812 166.477 4.07812H168.164C168.867 4.07812 169.383 4.2474 169.711 4.58594C170.044 4.91927 170.211 5.43229 170.211 6.125V7.82031C170.211 7.97135 170.266 8.10156 170.375 8.21094L171.57 9.41406C172.06 9.90885 172.305 10.3906 172.305 10.8594C172.31 11.3281 172.065 11.8073 171.57 12.2969L170.375 13.5C170.266 13.6094 170.211 13.7422 170.211 13.8984V15.5859C170.211 16.2891 170.044 16.8047 169.711 17.1328C169.378 17.4661 168.862 17.6328 168.164 17.6328H166.477C166.32 17.6328 166.188 17.6875 166.078 17.7969L164.875 18.9922C164.385 19.4818 163.906 19.7266 163.438 19.7266C162.969 19.7318 162.487 19.487 161.992 18.9922L160.789 17.7969C160.685 17.6875 160.555 17.6328 160.398 17.6328H158.703ZM162.562 14.6719C162.698 14.6719 162.82 14.6406 162.93 14.5781C163.039 14.5156 163.135 14.4219 163.219 14.2969L166.891 8.50781C166.938 8.42969 166.982 8.34635 167.023 8.25781C167.065 8.16927 167.086 8.08073 167.086 7.99219C167.086 7.8099 167.018 7.66667 166.883 7.5625C166.747 7.45312 166.596 7.39844 166.43 7.39844C166.201 7.39844 166.013 7.51823 165.867 7.75781L162.531 13.1172L160.945 11.0703C160.846 10.9401 160.75 10.8516 160.656 10.8047C160.568 10.7578 160.466 10.7344 160.352 10.7344C160.174 10.7344 160.026 10.7995 159.906 10.9297C159.786 11.0547 159.727 11.2057 159.727 11.3828C159.727 11.4714 159.742 11.5599 159.773 11.6484C159.81 11.7318 159.857 11.8125 159.914 11.8906L161.875 14.2969C161.979 14.4323 162.086 14.5286 162.195 14.5859C162.305 14.6432 162.427 14.6719 162.562 14.6719Z\" fill=\"#63E6E2\"/>\\n<path d=\"M6.85406 43.695H5.27906C4.44906 43.695 3.74406 43.565 3.16406 43.305C2.58406 43.045 2.11406 42.655 1.75406 42.135C1.39406 41.615 1.13406 40.965 0.974063 40.185C0.814063 39.395 0.734063 38.475 0.734063 37.425C0.734063 36.285 0.819063 35.33 0.989063 34.56C1.16906 33.78 1.42406 33.155 1.75406 32.685C2.09406 32.205 2.50906 31.865 2.99906 31.665C3.48906 31.455 4.04906 31.35 4.67906 31.35C5.32906 31.35 5.88906 31.445 6.35906 31.635C6.83906 31.825 7.23406 32.09 7.54406 32.43C7.85406 32.76 8.08406 33.15 8.23406 33.6C8.38406 34.05 8.45906 34.535 8.45906 35.055V40.635H6.85406V39.72H6.74906C6.63906 40.09 6.46406 40.365 6.22406 40.545C5.98406 40.725 5.68906 40.815 5.33906 40.815C4.74906 40.815 4.28906 40.56 3.95906 40.05C3.63906 39.53 3.47906 38.71 3.47906 37.59C3.47906 36.47 3.63906 35.655 3.95906 35.145C4.28906 34.625 4.74906 34.365 5.33906 34.365C5.68906 34.365 5.98406 34.455 6.22406 34.635C6.46406 34.815 6.63906 35.09 6.74906 35.46H6.85406V35.055C6.85406 34.635 6.80406 34.28 6.70406 33.99C6.60406 33.7 6.45906 33.465 6.26906 33.285C6.08906 33.105 5.86906 32.975 5.60906 32.895C5.35906 32.815 5.07906 32.775 4.76906 32.775C4.39906 32.775 4.06906 32.835 3.77906 32.955C3.48906 33.075 3.23906 33.28 3.02906 33.57C2.82906 33.86 2.67406 34.255 2.56406 34.755C2.46406 35.255 2.41406 35.88 2.41406 36.63V38.565C2.41406 39.145 2.46406 39.665 2.56406 40.125C2.67406 40.585 2.84406 40.975 3.07406 41.295C3.30406 41.605 3.59906 41.84 3.95906 42C4.31906 42.17 4.75906 42.255 5.27906 42.255H6.85406V43.695ZM5.99906 39.525C6.27906 39.525 6.48906 39.445 6.62906 39.285C6.77906 39.125 6.85406 38.91 6.85406 38.64V36.54C6.85406 36.27 6.77906 36.055 6.62906 35.895C6.48906 35.735 6.27906 35.655 5.99906 35.655C5.72906 35.655 5.51906 35.755 5.36906 35.955C5.22906 36.155 5.15906 36.535 5.15906 37.095V38.085C5.15906 38.645 5.22906 39.025 5.36906 39.225C5.51906 39.425 5.72906 39.525 5.99906 39.525ZM13.5682 42.18C12.7082 42.18 11.9582 42.05 11.3182 41.79C10.6882 41.53 10.2132 41.175 9.8932 40.725L11.1382 39.57C11.4382 39.9 11.7882 40.16 12.1882 40.35C12.5982 40.53 13.0632 40.62 13.5832 40.62C14.0232 40.62 14.3682 40.555 14.6182 40.425C14.8682 40.285 14.9932 40.075 14.9932 39.795C14.9932 39.575 14.9082 39.425 14.7382 39.345C14.5682 39.255 14.3332 39.185 14.0332 39.135L12.7882 38.94C12.4382 38.89 12.1132 38.815 11.8132 38.715C11.5132 38.605 11.2532 38.46 11.0332 38.28C10.8132 38.1 10.6382 37.88 10.5082 37.62C10.3782 37.36 10.3132 37.045 10.3132 36.675C10.3132 35.865 10.6232 35.23 11.2432 34.77C11.8632 34.31 12.7332 34.08 13.8532 34.08C14.6132 34.08 15.2582 34.185 15.7882 34.395C16.3282 34.595 16.7582 34.885 17.0782 35.265L15.9682 36.525C15.7382 36.275 15.4432 36.065 15.0832 35.895C14.7232 35.725 14.2882 35.64 13.7782 35.64C12.9182 35.64 12.4882 35.9 12.4882 36.42C12.4882 36.65 12.5732 36.81 12.7432 36.9C12.9132 36.98 13.1482 37.045 13.4482 37.095L14.6782 37.29C15.0282 37.34 15.3532 37.42 15.6532 37.53C15.9532 37.63 16.2132 37.77 16.4332 37.95C16.6632 38.13 16.8432 38.35 16.9732 38.61C17.1032 38.87 17.1682 39.185 17.1682 39.555C17.1682 40.365 16.8532 41.005 16.2232 41.475C15.6032 41.945 14.7182 42.18 13.5682 42.18ZM23.2523 42C22.4523 42 21.8573 41.79 21.4673 41.37C21.0773 40.95 20.8823 40.415 20.8823 39.765V35.985H18.7823V34.26H20.1473C20.4773 34.26 20.7123 34.195 20.8523 34.065C20.9923 33.935 21.0623 33.695 21.0623 33.345V31.53H23.1023V34.26H26.1173V35.985H23.1023V40.275H26.1173V42H23.2523ZM28.2565 40.275H30.0415V35.985H28.2565V34.26H32.2615V36.45H32.3665C32.4365 36.17 32.5315 35.9 32.6515 35.64C32.7815 35.37 32.9415 35.135 33.1315 34.935C33.3315 34.725 33.5715 34.56 33.8515 34.44C34.1315 34.32 34.4615 34.26 34.8415 34.26H35.5765V36.3H33.9265C33.3765 36.3 32.9615 36.465 32.6815 36.795C32.4015 37.115 32.2615 37.51 32.2615 37.98V40.275H34.8115V42H28.2565V40.275ZM40.8506 42.18C39.5506 42.18 38.5656 41.82 37.8956 41.1C37.2256 40.38 36.8906 39.4 36.8906 38.16C36.8906 37.53 36.9756 36.965 37.1456 36.465C37.3256 35.955 37.5756 35.525 37.8956 35.175C38.2256 34.815 38.6206 34.545 39.0806 34.365C39.5506 34.175 40.0756 34.08 40.6556 34.08C41.2356 34.08 41.7556 34.175 42.2156 34.365C42.6756 34.545 43.0656 34.805 43.3856 35.145C43.7056 35.485 43.9506 35.9 44.1206 36.39C44.3006 36.87 44.3906 37.41 44.3906 38.01V38.67H39.0956V38.805C39.0956 39.305 39.2506 39.71 39.5606 40.02C39.8706 40.32 40.3256 40.47 40.9256 40.47C41.3856 40.47 41.7806 40.385 42.1106 40.215C42.4406 40.035 42.7256 39.8 42.9656 39.51L44.1656 40.815C43.8656 41.185 43.4456 41.505 42.9056 41.775C42.3656 42.045 41.6806 42.18 40.8506 42.18ZM40.6706 35.67C40.1906 35.67 39.8056 35.82 39.5156 36.12C39.2356 36.41 39.0956 36.805 39.0956 37.305V37.425H42.2156V37.305C42.2156 36.795 42.0756 36.395 41.7956 36.105C41.5256 35.815 41.1506 35.67 40.6706 35.67ZM52.4398 42C51.9798 42 51.6098 41.885 51.3298 41.655C51.0498 41.415 50.8848 41.075 50.8348 40.635H50.7598C50.6198 41.145 50.3398 41.53 49.9198 41.79C49.5098 42.05 49.0048 42.18 48.4048 42.18C47.6548 42.18 47.0498 41.98 46.5898 41.58C46.1398 41.17 45.9148 40.6 45.9148 39.87C45.9148 39.06 46.2098 38.46 46.7998 38.07C47.3898 37.68 48.2548 37.485 49.3948 37.485H50.6398V37.095C50.6398 36.635 50.5298 36.29 50.3098 36.06C50.0998 35.82 49.7398 35.7 49.2298 35.7C48.7598 35.7 48.3798 35.79 48.0898 35.97C47.7998 36.15 47.5498 36.385 47.3398 36.675L46.1248 35.595C46.3848 35.155 46.7898 34.795 47.3398 34.515C47.8998 34.225 48.6148 34.08 49.4848 34.08C50.5448 34.08 51.3698 34.325 51.9598 34.815C52.5598 35.295 52.8598 36.025 52.8598 37.005V40.395H53.7148V42H52.4398ZM49.2448 40.725C49.6348 40.725 49.9648 40.63 50.2348 40.44C50.5048 40.25 50.6398 39.975 50.6398 39.615V38.685H49.4548C48.5448 38.685 48.0898 38.99 48.0898 39.6V39.9C48.0898 40.17 48.1948 40.375 48.4048 40.515C48.6148 40.655 48.8948 40.725 49.2448 40.725ZM54.5789 42V34.26H56.3639V35.4H56.4689C56.5889 35.04 56.7589 34.73 56.9789 34.47C57.2089 34.21 57.5289 34.08 57.9389 34.08C58.6889 34.08 59.1489 34.52 59.3189 35.4H59.4089C59.4689 35.22 59.5439 35.05 59.6339 34.89C59.7239 34.73 59.8339 34.59 59.9639 34.47C60.0939 34.35 60.2489 34.255 60.4289 34.185C60.6089 34.115 60.8189 34.08 61.0589 34.08C62.1389 34.08 62.6789 34.875 62.6789 36.465V42H60.8939V36.69C60.8939 36.33 60.8289 36.08 60.6989 35.94C60.5789 35.79 60.4189 35.715 60.2189 35.715C60.0289 35.715 59.8639 35.78 59.7239 35.91C59.5939 36.03 59.5289 36.22 59.5289 36.48V42H57.7289V36.69C57.7289 36.33 57.6689 36.08 57.5489 35.94C57.4389 35.79 57.2839 35.715 57.0839 35.715C56.8839 35.715 56.7139 35.78 56.5739 35.91C56.4339 36.03 56.3639 36.22 56.3639 36.48V42H54.5789ZM71.448 42H63.918V39.945L67.218 37.2C67.788 36.71 68.198 36.285 68.448 35.925C68.698 35.565 68.823 35.185 68.823 34.785V34.635C68.823 34.195 68.693 33.865 68.433 33.645C68.173 33.415 67.823 33.3 67.383 33.3C66.883 33.3 66.498 33.445 66.228 33.735C65.958 34.025 65.768 34.37 65.658 34.77L63.693 34.02C63.813 33.66 63.978 33.32 64.188 33C64.398 32.67 64.663 32.385 64.983 32.145C65.313 31.905 65.693 31.715 66.123 31.575C66.553 31.425 67.048 31.35 67.608 31.35C68.178 31.35 68.688 31.43 69.138 31.59C69.588 31.75 69.968 31.97 70.278 32.25C70.588 32.53 70.823 32.865 70.983 33.255C71.143 33.635 71.223 34.05 71.223 34.5C71.223 34.94 71.148 35.345 70.998 35.715C70.858 36.075 70.658 36.415 70.398 36.735C70.148 37.055 69.848 37.365 69.498 37.665C69.158 37.965 68.793 38.265 68.403 38.565L66.408 40.11H71.448V42ZM78.0122 40.59H77.9072C77.7072 41.06 77.4272 41.445 77.0672 41.745C76.7172 42.035 76.2322 42.18 75.6122 42.18C75.1822 42.18 74.7872 42.1 74.4272 41.94C74.0772 41.78 73.7722 41.535 73.5122 41.205C73.2622 40.875 73.0622 40.455 72.9122 39.945C72.7722 39.435 72.7022 38.83 72.7022 38.13C72.7022 37.43 72.7722 36.825 72.9122 36.315C73.0622 35.805 73.2622 35.385 73.5122 35.055C73.7722 34.725 74.0772 34.48 74.4272 34.32C74.7872 34.16 75.1822 34.08 75.6122 34.08C75.9222 34.08 76.1972 34.12 76.4372 34.2C76.6772 34.28 76.8872 34.39 77.0672 34.53C77.2572 34.67 77.4172 34.84 77.5472 35.04C77.6872 35.23 77.8072 35.44 77.9072 35.67H78.0122V30.9H80.2322V42H78.0122V40.59ZM76.5722 40.455C76.9622 40.455 77.2972 40.36 77.5772 40.17C77.8672 39.98 78.0122 39.68 78.0122 39.27V36.99C78.0122 36.58 77.8672 36.28 77.5772 36.09C77.2972 35.9 76.9622 35.805 76.5722 35.805C76.0722 35.805 75.6872 35.96 75.4172 36.27C75.1472 36.57 75.0122 36.99 75.0122 37.53V38.73C75.0122 39.27 75.1472 39.695 75.4172 40.005C75.6872 40.305 76.0722 40.455 76.5722 40.455ZM82.2213 40.275H84.0063V35.985H82.2213V34.26H86.2263V36.45H86.3313C86.4013 36.17 86.4963 35.9 86.6163 35.64C86.7463 35.37 86.9063 35.135 87.0963 34.935C87.2963 34.725 87.5363 34.56 87.8163 34.44C88.0963 34.32 88.4263 34.26 88.8063 34.26H89.5413V36.3H87.8913C87.3413 36.3 86.9263 36.465 86.6463 36.795C86.3663 37.115 86.2263 37.51 86.2263 37.98V40.275H88.7763V42H82.2213V40.275ZM94.8155 42.18C93.5155 42.18 92.5305 41.82 91.8605 41.1C91.1905 40.38 90.8555 39.4 90.8555 38.16C90.8555 37.53 90.9405 36.965 91.1105 36.465C91.2905 35.955 91.5405 35.525 91.8605 35.175C92.1905 34.815 92.5855 34.545 93.0455 34.365C93.5155 34.175 94.0405 34.08 94.6205 34.08C95.2005 34.08 95.7205 34.175 96.1805 34.365C96.6405 34.545 97.0305 34.805 97.3505 35.145C97.6705 35.485 97.9155 35.9 98.0855 36.39C98.2655 36.87 98.3555 37.41 98.3555 38.01V38.67H93.0605V38.805C93.0605 39.305 93.2155 39.71 93.5255 40.02C93.8355 40.32 94.2905 40.47 94.8905 40.47C95.3505 40.47 95.7455 40.385 96.0755 40.215C96.4055 40.035 96.6905 39.8 96.9305 39.51L98.1305 40.815C97.8305 41.185 97.4105 41.505 96.8705 41.775C96.3305 42.045 95.6455 42.18 94.8155 42.18ZM94.6355 35.67C94.1555 35.67 93.7705 35.82 93.4805 36.12C93.2005 36.41 93.0605 36.805 93.0605 37.305V37.425H96.1805V37.305C96.1805 36.795 96.0405 36.395 95.7605 36.105C95.4905 35.815 95.1155 35.67 94.6355 35.67ZM106.405 42C105.945 42 105.575 41.885 105.295 41.655C105.015 41.415 104.85 41.075 104.8 40.635H104.725C104.585 41.145 104.305 41.53 103.885 41.79C103.475 42.05 102.97 42.18 102.37 42.18C101.62 42.18 101.015 41.98 100.555 41.58C100.105 41.17 99.8796 40.6 99.8796 39.87C99.8796 39.06 100.175 38.46 100.765 38.07C101.355 37.68 102.22 37.485 103.36 37.485H104.605V37.095C104.605 36.635 104.495 36.29 104.275 36.06C104.065 35.82 103.705 35.7 103.195 35.7C102.725 35.7 102.345 35.79 102.055 35.97C101.765 36.15 101.515 36.385 101.305 36.675L100.09 35.595C100.35 35.155 100.755 34.795 101.305 34.515C101.865 34.225 102.58 34.08 103.45 34.08C104.51 34.08 105.335 34.325 105.925 34.815C106.525 35.295 106.825 36.025 106.825 37.005V40.395H107.68V42H106.405ZM103.21 40.725C103.6 40.725 103.93 40.63 104.2 40.44C104.47 40.25 104.605 39.975 104.605 39.615V38.685H103.42C102.51 38.685 102.055 38.99 102.055 39.6V39.9C102.055 40.17 102.16 40.375 102.37 40.515C102.58 40.655 102.86 40.725 103.21 40.725ZM108.544 42V34.26H110.329V35.4H110.434C110.554 35.04 110.724 34.73 110.944 34.47C111.174 34.21 111.494 34.08 111.904 34.08C112.654 34.08 113.114 34.52 113.284 35.4H113.374C113.434 35.22 113.509 35.05 113.599 34.89C113.689 34.73 113.799 34.59 113.929 34.47C114.059 34.35 114.214 34.255 114.394 34.185C114.574 34.115 114.784 34.08 115.024 34.08C116.104 34.08 116.644 34.875 116.644 36.465V42H114.859V36.69C114.859 36.33 114.794 36.08 114.664 35.94C114.544 35.79 114.384 35.715 114.184 35.715C113.994 35.715 113.829 35.78 113.689 35.91C113.559 36.03 113.494 36.22 113.494 36.48V42H111.694V36.69C111.694 36.33 111.634 36.08 111.514 35.94C111.404 35.79 111.249 35.715 111.049 35.715C110.849 35.715 110.679 35.78 110.539 35.91C110.399 36.03 110.329 36.22 110.329 36.48V42H108.544ZM127.634 38.985C127.004 38.985 126.539 38.845 126.239 38.565C125.949 38.285 125.804 37.905 125.804 37.425V37.005C125.804 36.525 125.949 36.145 126.239 35.865C126.539 35.585 127.004 35.445 127.634 35.445C128.264 35.445 128.724 35.585 129.014 35.865C129.314 36.145 129.464 36.525 129.464 37.005V37.425C129.464 37.905 129.314 38.285 129.014 38.565C128.724 38.845 128.264 38.985 127.634 38.985ZM142.232 35.97C142.962 35.97 143.507 35.81 143.867 35.49C144.237 35.16 144.422 34.74 144.422 34.23V34.125C144.422 33.565 144.242 33.145 143.882 32.865C143.532 32.585 143.072 32.445 142.502 32.445C141.942 32.445 141.487 32.57 141.137 32.82C140.797 33.06 140.517 33.38 140.297 33.78L139.352 33.06C139.482 32.85 139.642 32.645 139.832 32.445C140.022 32.235 140.242 32.05 140.492 31.89C140.752 31.73 141.047 31.6 141.377 31.5C141.717 31.4 142.102 31.35 142.532 31.35C142.982 31.35 143.402 31.41 143.792 31.53C144.182 31.64 144.522 31.81 144.812 32.04C145.102 32.26 145.327 32.535 145.487 32.865C145.657 33.195 145.742 33.57 145.742 33.99C145.742 34.33 145.687 34.635 145.577 34.905C145.477 35.175 145.332 35.41 145.142 35.61C144.962 35.81 144.747 35.98 144.497 36.12C144.247 36.26 143.982 36.365 143.702 36.435V36.495C143.992 36.555 144.272 36.655 144.542 36.795C144.812 36.925 145.052 37.1 145.262 37.32C145.472 37.53 145.637 37.79 145.757 38.1C145.887 38.4 145.952 38.745 145.952 39.135C145.952 39.585 145.862 40 145.682 40.38C145.512 40.75 145.267 41.07 144.947 41.34C144.637 41.6 144.257 41.805 143.807 41.955C143.367 42.105 142.877 42.18 142.337 42.18C141.877 42.18 141.467 42.13 141.107 42.03C140.757 41.93 140.442 41.795 140.162 41.625C139.892 41.455 139.652 41.265 139.442 41.055C139.242 40.845 139.062 40.625 138.902 40.395L139.847 39.675C139.987 39.885 140.132 40.075 140.282 40.245C140.432 40.415 140.602 40.565 140.792 40.695C140.992 40.815 141.217 40.91 141.467 40.98C141.717 41.05 142.007 41.085 142.337 41.085C143.077 41.085 143.642 40.915 144.032 40.575C144.432 40.235 144.632 39.75 144.632 39.12V39C144.632 38.38 144.437 37.9 144.047 37.56C143.667 37.22 143.092 37.05 142.322 37.05H141.077V35.97H142.232ZM151.676 42.18C151.036 42.18 150.486 42.06 150.026 41.82C149.566 41.57 149.186 41.215 148.886 40.755C148.586 40.295 148.366 39.73 148.226 39.06C148.086 38.39 148.016 37.625 148.016 36.765C148.016 35.915 148.086 35.155 148.226 34.485C148.366 33.805 148.586 33.235 148.886 32.775C149.186 32.315 149.566 31.965 150.026 31.725C150.486 31.475 151.036 31.35 151.676 31.35C152.316 31.35 152.866 31.475 153.326 31.725C153.786 31.965 154.166 32.315 154.466 32.775C154.766 33.235 154.986 33.805 155.126 34.485C155.266 35.155 155.336 35.915 155.336 36.765C155.336 37.625 155.266 38.39 155.126 39.06C154.986 39.73 154.766 40.295 154.466 40.755C154.166 41.215 153.786 41.57 153.326 41.82C152.866 42.06 152.316 42.18 151.676 42.18ZM151.676 41.085C152.096 41.085 152.456 41.005 152.756 40.845C153.056 40.675 153.296 40.44 153.476 40.14C153.666 39.84 153.806 39.48 153.896 39.06C153.986 38.63 154.031 38.15 154.031 37.62V35.91C154.031 35.39 153.986 34.915 153.896 34.485C153.806 34.055 153.666 33.69 153.476 33.39C153.296 33.09 153.056 32.86 152.756 32.7C152.456 32.53 152.096 32.445 151.676 32.445C151.256 32.445 150.896 32.53 150.596 32.7C150.296 32.86 150.051 33.09 149.861 33.39C149.681 33.69 149.546 34.055 149.456 34.485C149.366 34.915 149.321 35.39 149.321 35.91V37.62C149.321 38.15 149.366 38.63 149.456 39.06C149.546 39.48 149.681 39.84 149.861 40.14C150.051 40.44 150.296 40.675 150.596 40.845C150.896 41.005 151.256 41.085 151.676 41.085ZM151.676 37.65C151.326 37.65 151.081 37.58 150.941 37.44C150.811 37.3 150.746 37.13 150.746 36.93V36.6C150.746 36.4 150.811 36.23 150.941 36.09C151.081 35.95 151.326 35.88 151.676 35.88C152.026 35.88 152.266 35.95 152.396 36.09C152.536 36.23 152.606 36.4 152.606 36.6V36.93C152.606 37.13 152.536 37.3 152.396 37.44C152.266 37.58 152.026 37.65 151.676 37.65ZM160.22 35.97C160.95 35.97 161.495 35.81 161.855 35.49C162.225 35.16 162.41 34.74 162.41 34.23V34.125C162.41 33.565 162.23 33.145 161.87 32.865C161.52 32.585 161.06 32.445 160.49 32.445C159.93 32.445 159.475 32.57 159.125 32.82C158.785 33.06 158.505 33.38 158.285 33.78L157.34 33.06C157.47 32.85 157.63 32.645 157.82 32.445C158.01 32.235 158.23 32.05 158.48 31.89C158.74 31.73 159.035 31.6 159.365 31.5C159.705 31.4 160.09 31.35 160.52 31.35C160.97 31.35 161.39 31.41 161.78 31.53C162.17 31.64 162.51 31.81 162.8 32.04C163.09 32.26 163.315 32.535 163.475 32.865C163.645 33.195 163.73 33.57 163.73 33.99C163.73 34.33 163.675 34.635 163.565 34.905C163.465 35.175 163.32 35.41 163.13 35.61C162.95 35.81 162.735 35.98 162.485 36.12C162.235 36.26 161.97 36.365 161.69 36.435V36.495C161.98 36.555 162.26 36.655 162.53 36.795C162.8 36.925 163.04 37.1 163.25 37.32C163.46 37.53 163.625 37.79 163.745 38.1C163.875 38.4 163.94 38.745 163.94 39.135C163.94 39.585 163.85 40 163.67 40.38C163.5 40.75 163.255 41.07 162.935 41.34C162.625 41.6 162.245 41.805 161.795 41.955C161.355 42.105 160.865 42.18 160.325 42.18C159.865 42.18 159.455 42.13 159.095 42.03C158.745 41.93 158.43 41.795 158.15 41.625C157.88 41.455 157.64 41.265 157.43 41.055C157.23 40.845 157.05 40.625 156.89 40.395L157.835 39.675C157.975 39.885 158.12 40.075 158.27 40.245C158.42 40.415 158.59 40.565 158.78 40.695C158.98 40.815 159.205 40.91 159.455 40.98C159.705 41.05 159.995 41.085 160.325 41.085C161.065 41.085 161.63 40.915 162.02 40.575C162.42 40.235 162.62 39.75 162.62 39.12V39C162.62 38.38 162.425 37.9 162.035 37.56C161.655 37.22 161.08 37.05 160.31 37.05H159.065V35.97H160.22ZM169.019 39.96H170.954L169.229 44.115H168.224L169.019 39.96ZM182.198 35.37C182.198 36.15 182.078 36.885 181.838 37.575C181.608 38.255 181.308 38.88 180.938 39.45C180.568 40.01 180.158 40.51 179.708 40.95C179.268 41.38 178.833 41.73 178.403 42H176.783C177.353 41.59 177.858 41.19 178.298 40.8C178.748 40.41 179.143 40.005 179.483 39.585C179.823 39.155 180.108 38.7 180.338 38.22C180.568 37.73 180.758 37.18 180.908 36.57L180.833 36.54C180.573 36.97 180.238 37.33 179.828 37.62C179.428 37.9 178.903 38.04 178.253 38.04C177.793 38.04 177.368 37.965 176.978 37.815C176.598 37.665 176.268 37.45 175.988 37.17C175.718 36.89 175.503 36.555 175.343 36.165C175.193 35.765 175.118 35.315 175.118 34.815C175.118 34.305 175.198 33.84 175.358 33.42C175.528 32.99 175.768 32.625 176.078 32.325C176.388 32.015 176.758 31.775 177.188 31.605C177.628 31.435 178.113 31.35 178.643 31.35C179.193 31.35 179.688 31.445 180.128 31.635C180.568 31.815 180.938 32.08 181.238 32.43C181.548 32.77 181.783 33.19 181.943 33.69C182.113 34.19 182.198 34.75 182.198 35.37ZM178.658 37.005C179.378 37.005 179.933 36.81 180.323 36.42C180.723 36.03 180.923 35.48 180.923 34.77V34.65C180.923 33.94 180.723 33.39 180.323 33C179.933 32.61 179.378 32.415 178.658 32.415C177.938 32.415 177.378 32.61 176.978 33C176.588 33.39 176.393 33.94 176.393 34.65V34.77C176.393 35.48 176.588 36.03 176.978 36.42C177.378 36.81 177.938 37.005 178.658 37.005ZM185.747 42L189.842 32.61H185.252V34.56H184.127V31.53H191.117V32.64L187.097 42H185.747ZM193.421 42V40.905H196.421V32.46H196.316L193.676 34.92L192.941 34.125L195.716 31.53H197.681V40.905H200.441V42H193.421Z\" fill=\"#C6FF81\" fill-opacity=\"0.7\"/>\\n<path d=\"M7.37906 69L6.49406 66.015H2.81906L1.93406 69H0.629063L3.83906 58.53H5.50406L8.71406 69H7.37906ZM4.72406 59.865H4.58906L3.11906 64.92H6.19406L4.72406 59.865ZM10.6282 69V61.26H11.8282V62.52H11.8882C11.9682 62.33 12.0682 62.15 12.1882 61.98C12.3082 61.8 12.4532 61.645 12.6232 61.515C12.8032 61.385 13.0132 61.28 13.2532 61.2C13.4932 61.12 13.7732 61.08 14.0932 61.08C14.9032 61.08 15.5532 61.34 16.0432 61.86C16.5332 62.37 16.7782 63.095 16.7782 64.035V69H15.5782V64.245C15.5782 63.535 15.4232 63.01 15.1132 62.67C14.8032 62.32 14.3482 62.145 13.7482 62.145C13.5082 62.145 13.2732 62.175 13.0432 62.235C12.8132 62.295 12.6082 62.385 12.4282 62.505C12.2482 62.625 12.1032 62.78 11.9932 62.97C11.8832 63.16 11.8282 63.38 11.8282 63.63V69H10.6282ZM23.1323 59.55C22.7823 59.55 22.5373 59.48 22.3973 59.34C22.2573 59.19 22.1873 59.005 22.1873 58.785V58.545C22.1873 58.325 22.2573 58.145 22.3973 58.005C22.5373 57.855 22.7823 57.78 23.1323 57.78C23.4823 57.78 23.7273 57.855 23.8673 58.005C24.0073 58.145 24.0773 58.325 24.0773 58.545V58.785C24.0773 59.005 24.0073 59.19 23.8673 59.34C23.7273 59.48 23.4823 59.55 23.1323 59.55ZM19.7423 67.98H22.5323V62.28H19.7423V61.26H23.7323V67.98H26.3423V69H19.7423V67.98ZM27.9565 69V61.26H29.0665V62.16H29.1265C29.2465 61.86 29.4165 61.605 29.6365 61.395C29.8565 61.185 30.1815 61.08 30.6115 61.08C31.0615 61.08 31.3965 61.195 31.6165 61.425C31.8365 61.645 31.9715 61.935 32.0215 62.295H32.0665C32.2065 61.945 32.4065 61.655 32.6665 61.425C32.9265 61.195 33.2865 61.08 33.7465 61.08C34.3765 61.08 34.7965 61.3 35.0065 61.74C35.2265 62.18 35.3365 62.81 35.3365 63.63V69H34.2265V63.825C34.2265 63.165 34.1565 62.71 34.0165 62.46C33.8865 62.2 33.6415 62.07 33.2815 62.07C32.9615 62.07 32.7015 62.175 32.5015 62.385C32.3015 62.585 32.2015 62.895 32.2015 63.315V69H31.0915V63.825C31.0915 63.165 31.0215 62.71 30.8815 62.46C30.7515 62.2 30.5115 62.07 30.1615 62.07C29.8415 62.07 29.5765 62.175 29.3665 62.385C29.1665 62.585 29.0665 62.895 29.0665 63.315V69H27.9565ZM40.7756 69.18C40.2156 69.18 39.7106 69.085 39.2606 68.895C38.8206 68.705 38.4406 68.435 38.1206 68.085C37.8106 67.725 37.5706 67.3 37.4006 66.81C37.2306 66.31 37.1456 65.755 37.1456 65.145C37.1456 64.525 37.2306 63.965 37.4006 63.465C37.5806 62.965 37.8256 62.54 38.1356 62.19C38.4456 61.83 38.8156 61.555 39.2456 61.365C39.6856 61.175 40.1706 61.08 40.7006 61.08C41.2206 61.08 41.6906 61.175 42.1106 61.365C42.5406 61.555 42.9056 61.82 43.2056 62.16C43.5056 62.49 43.7356 62.885 43.8956 63.345C44.0556 63.805 44.1356 64.31 44.1356 64.86V65.43H38.4056V65.79C38.4056 66.13 38.4606 66.445 38.5706 66.735C38.6806 67.025 38.8356 67.275 39.0356 67.485C39.2456 67.695 39.4956 67.86 39.7856 67.98C40.0856 68.09 40.4156 68.145 40.7756 68.145C41.2956 68.145 41.7456 68.025 42.1256 67.785C42.5056 67.545 42.7956 67.215 42.9956 66.795L43.8806 67.395C43.6506 67.915 43.2656 68.345 42.7256 68.685C42.1956 69.015 41.5456 69.18 40.7756 69.18ZM40.7006 62.07C40.3706 62.07 40.0656 62.13 39.7856 62.25C39.5056 62.37 39.2606 62.535 39.0506 62.745C38.8506 62.955 38.6906 63.205 38.5706 63.495C38.4606 63.775 38.4056 64.085 38.4056 64.425V64.53H42.8456V64.365C42.8456 64.025 42.7906 63.715 42.6806 63.435C42.5806 63.155 42.4356 62.915 42.2456 62.715C42.0656 62.505 41.8406 62.345 41.5706 62.235C41.3106 62.125 41.0206 62.07 40.7006 62.07ZM56.4539 65.07V63.81H60.8039V65.07H56.4539ZM79.3172 58.53V66.285C79.3172 66.725 79.2422 67.125 79.0922 67.485C78.9422 67.845 78.7272 68.15 78.4472 68.4C78.1772 68.65 77.8522 68.845 77.4722 68.985C77.0922 69.115 76.6772 69.18 76.2272 69.18C75.4272 69.18 74.7672 68.975 74.2472 68.565C73.7272 68.145 73.3872 67.56 73.2272 66.81L74.4272 66.555C74.4772 66.765 74.5422 66.965 74.6222 67.155C74.7122 67.335 74.8272 67.495 74.9672 67.635C75.1172 67.765 75.2972 67.87 75.5072 67.95C75.7172 68.03 75.9672 68.07 76.2572 68.07C76.8272 68.07 77.2672 67.91 77.5772 67.59C77.8972 67.26 78.0572 66.75 78.0572 66.06V59.625H74.2772V58.53H79.3172ZM87.4413 67.74H87.3813C87.3013 67.93 87.2013 68.115 87.0813 68.295C86.9613 68.465 86.8113 68.615 86.6313 68.745C86.4613 68.875 86.2563 68.98 86.0163 69.06C85.7763 69.14 85.4963 69.18 85.1763 69.18C84.3663 69.18 83.7163 68.925 83.2263 68.415C82.7363 67.895 82.4913 67.165 82.4913 66.225V61.26H83.6913V66.015C83.6913 66.725 83.8463 67.255 84.1563 67.605C84.4663 67.945 84.9213 68.115 85.5213 68.115C85.7613 68.115 85.9963 68.085 86.2263 68.025C86.4563 67.965 86.6613 67.875 86.8413 67.755C87.0213 67.635 87.1663 67.485 87.2763 67.305C87.3863 67.115 87.4413 66.89 87.4413 66.63V61.26H88.6413V69H87.4413V67.74ZM94.6955 69.18C93.8855 69.18 93.1855 69.045 92.5955 68.775C92.0155 68.495 91.5205 68.125 91.1105 67.665L91.9205 66.96C92.2905 67.35 92.6955 67.65 93.1355 67.86C93.5755 68.07 94.1055 68.175 94.7255 68.175C95.3255 68.175 95.8155 68.07 96.1955 67.86C96.5855 67.64 96.7805 67.3 96.7805 66.84C96.7805 66.64 96.7405 66.475 96.6605 66.345C96.5905 66.205 96.4905 66.095 96.3605 66.015C96.2305 65.935 96.0855 65.875 95.9255 65.835C95.7655 65.785 95.5955 65.745 95.4155 65.715L94.2005 65.535C93.9305 65.495 93.6355 65.44 93.3155 65.37C93.0055 65.3 92.7205 65.19 92.4605 65.04C92.2005 64.88 91.9805 64.67 91.8005 64.41C91.6305 64.15 91.5455 63.81 91.5455 63.39C91.5455 63 91.6205 62.665 91.7705 62.385C91.9305 62.095 92.1505 61.855 92.4305 61.665C92.7105 61.465 93.0405 61.32 93.4205 61.23C93.8005 61.13 94.2155 61.08 94.6655 61.08C95.3655 61.08 95.9705 61.19 96.4805 61.41C97.0005 61.63 97.4455 61.935 97.8155 62.325L97.0355 63.06C96.9455 62.95 96.8305 62.84 96.6905 62.73C96.5605 62.61 96.3955 62.505 96.1955 62.415C96.0055 62.315 95.7805 62.235 95.5205 62.175C95.2605 62.115 94.9605 62.085 94.6205 62.085C94.0105 62.085 93.5405 62.19 93.2105 62.4C92.8905 62.61 92.7305 62.915 92.7305 63.315C92.7305 63.515 92.7655 63.685 92.8355 63.825C92.9155 63.955 93.0205 64.06 93.1505 64.14C93.2805 64.22 93.4255 64.285 93.5855 64.335C93.7555 64.375 93.9255 64.41 94.0955 64.44L95.3105 64.62C95.5905 64.66 95.8855 64.715 96.1955 64.785C96.5055 64.855 96.7905 64.97 97.0505 65.13C97.3105 65.28 97.5255 65.485 97.6955 65.745C97.8755 66.005 97.9655 66.345 97.9655 66.765C97.9655 67.535 97.6655 68.13 97.0655 68.55C96.4755 68.97 95.6855 69.18 94.6955 69.18ZM103.975 69C103.385 69 102.95 68.835 102.67 68.505C102.4 68.175 102.265 67.75 102.265 67.23V62.28H99.6846V61.26H101.605C101.865 61.26 102.045 61.21 102.145 61.11C102.255 61 102.31 60.815 102.31 60.555V58.53H103.465V61.26H106.99V62.28H103.465V67.98H106.99V69H103.975ZM121.933 69.18C120.653 69.18 119.698 68.715 119.068 67.785C118.448 66.855 118.138 65.515 118.138 63.765C118.138 62.015 118.448 60.675 119.068 59.745C119.698 58.815 120.653 58.35 121.933 58.35C122.413 58.35 122.828 58.415 123.178 58.545C123.528 58.675 123.828 58.85 124.078 59.07C124.328 59.29 124.538 59.54 124.708 59.82C124.878 60.09 125.028 60.365 125.158 60.645L124.078 61.14C123.988 60.91 123.883 60.695 123.763 60.495C123.643 60.285 123.498 60.105 123.328 59.955C123.168 59.795 122.973 59.67 122.743 59.58C122.523 59.49 122.253 59.445 121.933 59.445C121.103 59.445 120.483 59.76 120.073 60.39C119.673 61.02 119.473 61.86 119.473 62.91V64.62C119.473 65.67 119.673 66.51 120.073 67.14C120.483 67.77 121.103 68.085 121.933 68.085C122.253 68.085 122.523 68.04 122.743 67.95C122.973 67.86 123.168 67.74 123.328 67.59C123.498 67.43 123.643 67.25 123.763 67.05C123.883 66.84 123.988 66.62 124.078 66.39L125.158 66.885C125.028 67.175 124.878 67.455 124.708 67.725C124.538 67.995 124.328 68.24 124.078 68.46C123.828 68.68 123.528 68.855 123.178 68.985C122.828 69.115 122.413 69.18 121.933 69.18ZM127.552 57.9H128.752V62.52H128.812C128.892 62.33 128.992 62.15 129.112 61.98C129.232 61.8 129.377 61.645 129.547 61.515C129.727 61.385 129.937 61.28 130.177 61.2C130.417 61.12 130.697 61.08 131.017 61.08C131.827 61.08 132.477 61.34 132.967 61.86C133.457 62.37 133.702 63.095 133.702 64.035V69H132.502V64.245C132.502 63.535 132.347 63.01 132.037 62.67C131.727 62.32 131.272 62.145 130.672 62.145C130.432 62.145 130.197 62.175 129.967 62.235C129.737 62.295 129.532 62.385 129.352 62.505C129.172 62.625 129.027 62.78 128.917 62.97C128.807 63.16 128.752 63.38 128.752 63.63V69H127.552V57.9ZM142.501 69C142.031 69 141.696 68.88 141.496 68.64C141.296 68.4 141.171 68.1 141.121 67.74H141.046C140.876 68.19 140.601 68.545 140.221 68.805C139.851 69.055 139.351 69.18 138.721 69.18C137.911 69.18 137.266 68.97 136.786 68.55C136.306 68.13 136.066 67.555 136.066 66.825C136.066 66.105 136.326 65.55 136.846 65.16C137.376 64.77 138.226 64.575 139.396 64.575H141.046V63.81C141.046 63.24 140.886 62.815 140.566 62.535C140.246 62.245 139.791 62.1 139.201 62.1C138.681 62.1 138.256 62.205 137.926 62.415C137.596 62.615 137.331 62.89 137.131 63.24L136.321 62.64C136.421 62.44 136.556 62.245 136.726 62.055C136.896 61.865 137.106 61.7 137.356 61.56C137.606 61.41 137.891 61.295 138.211 61.215C138.531 61.125 138.886 61.08 139.276 61.08C140.186 61.08 140.906 61.31 141.436 61.77C141.976 62.23 142.246 62.87 142.246 63.69V67.95H143.326V69H142.501ZM138.931 68.175C139.241 68.175 139.521 68.14 139.771 68.07C140.031 67.99 140.256 67.89 140.446 67.77C140.636 67.64 140.781 67.49 140.881 67.32C140.991 67.14 141.046 66.95 141.046 66.75V65.475H139.396C138.676 65.475 138.151 65.575 137.821 65.775C137.491 65.975 137.326 66.265 137.326 66.645V66.96C137.326 67.36 137.466 67.665 137.746 67.875C138.036 68.075 138.431 68.175 138.931 68.175ZM148.945 69C148.355 69 147.92 68.835 147.64 68.505C147.37 68.175 147.235 67.75 147.235 67.23V62.28H144.655V61.26H146.575C146.835 61.26 147.015 61.21 147.115 61.11C147.225 61 147.28 60.815 147.28 60.555V58.53H148.435V61.26H151.96V62.28H148.435V67.98H151.96V69H148.945ZM157.939 69C157.349 69 156.914 68.835 156.634 68.505C156.364 68.175 156.229 67.75 156.229 67.23V62.28H153.649V61.26H155.569C155.829 61.26 156.009 61.21 156.109 61.11C156.219 61 156.274 60.815 156.274 60.555V58.53H157.429V61.26H160.954V62.28H157.429V67.98H160.954V69H157.939ZM167.039 59.55C166.689 59.55 166.444 59.48 166.304 59.34C166.164 59.19 166.094 59.005 166.094 58.785V58.545C166.094 58.325 166.164 58.145 166.304 58.005C166.444 57.855 166.689 57.78 167.039 57.78C167.389 57.78 167.634 57.855 167.774 58.005C167.914 58.145 167.984 58.325 167.984 58.545V58.785C167.984 59.005 167.914 59.19 167.774 59.34C167.634 59.48 167.389 59.55 167.039 59.55ZM163.649 67.98H166.439V62.28H163.649V61.26H167.639V67.98H170.249V69H163.649V67.98ZM172.523 69V61.26H173.723V62.52H173.783C173.863 62.33 173.963 62.15 174.083 61.98C174.203 61.8 174.348 61.645 174.518 61.515C174.698 61.385 174.908 61.28 175.148 61.2C175.388 61.12 175.668 61.08 175.988 61.08C176.798 61.08 177.448 61.34 177.938 61.86C178.428 62.37 178.673 63.095 178.673 64.035V69H177.473V64.245C177.473 63.535 177.318 63.01 177.008 62.67C176.698 62.32 176.243 62.145 175.643 62.145C175.403 62.145 175.168 62.175 174.938 62.235C174.708 62.295 174.503 62.385 174.323 62.505C174.143 62.625 173.998 62.78 173.888 62.97C173.778 63.16 173.723 63.38 173.723 63.63V69H172.523ZM188.462 69.885C188.462 70.665 188.137 71.24 187.487 71.61C186.837 71.99 185.862 72.18 184.562 72.18C183.312 72.18 182.412 72.015 181.862 71.685C181.322 71.355 181.052 70.88 181.052 70.26C181.052 69.84 181.162 69.515 181.382 69.285C181.602 69.055 181.912 68.885 182.312 68.775V68.595C182.092 68.485 181.922 68.345 181.802 68.175C181.682 68.005 181.622 67.79 181.622 67.53C181.622 67.13 181.752 66.83 182.012 66.63C182.282 66.43 182.617 66.28 183.017 66.18V66.12C182.537 65.91 182.162 65.6 181.892 65.19C181.632 64.78 181.502 64.3 181.502 63.75C181.502 63.36 181.572 63 181.712 62.67C181.852 62.34 182.052 62.06 182.312 61.83C182.582 61.59 182.902 61.405 183.272 61.275C183.642 61.145 184.052 61.08 184.502 61.08C185.082 61.08 185.592 61.185 186.032 61.395V61.26C186.032 60.96 186.102 60.71 186.242 60.51C186.382 60.31 186.622 60.21 186.962 60.21H188.387V61.26H186.647V61.785C186.927 62.025 187.142 62.31 187.292 62.64C187.442 62.97 187.517 63.34 187.517 63.75C187.517 64.14 187.442 64.5 187.292 64.83C187.152 65.16 186.952 65.445 186.692 65.685C186.432 65.915 186.112 66.095 185.732 66.225C185.362 66.355 184.952 66.42 184.502 66.42C184.372 66.42 184.247 66.415 184.127 66.405C184.007 66.395 183.887 66.38 183.767 66.36C183.647 66.38 183.522 66.415 183.392 66.465C183.262 66.505 183.142 66.565 183.032 66.645C182.922 66.715 182.832 66.8 182.762 66.9C182.692 67 182.657 67.115 182.657 67.245C182.657 67.475 182.772 67.63 183.002 67.71C183.232 67.78 183.532 67.815 183.902 67.815H185.612C186.612 67.815 187.337 68.005 187.787 68.385C188.237 68.755 188.462 69.255 188.462 69.885ZM187.337 69.945C187.337 69.635 187.212 69.385 186.962 69.195C186.712 69.015 186.277 68.925 185.657 68.925H182.972C182.452 69.135 182.192 69.485 182.192 69.975C182.192 70.315 182.327 70.605 182.597 70.845C182.867 71.095 183.317 71.22 183.947 71.22H185.117C185.817 71.22 186.362 71.11 186.752 70.89C187.142 70.68 187.337 70.365 187.337 69.945ZM184.502 65.49C185.102 65.49 185.542 65.35 185.822 65.07C186.112 64.79 186.257 64.42 186.257 63.96V63.525C186.257 63.065 186.112 62.7 185.822 62.43C185.542 62.15 185.102 62.01 184.502 62.01C183.902 62.01 183.462 62.15 183.182 62.43C182.902 62.7 182.762 63.065 182.762 63.525V63.96C182.762 64.42 182.902 64.79 183.182 65.07C183.462 65.35 183.902 65.49 184.502 65.49Z\" fill=\"#E6E6FD\" fill-opacity=\"0.73\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qcncvj\",\"data-framer-name\":\"bubbles\",name:\"bubbles\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1s989ji\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-yql1mo\",\"data-border\":true,\"data-framer-name\":\"hit front page\",name:\"hit front page\",style:{rotate:-2.5},transformTemplate:transformTemplate2,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggTW9uby03MDA=\",\"--framer-font-family\":'\"IBM Plex Mono\", monospace',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"\uD83D\uDD25\"})}),className:\"framer-qk2h6o\",\"data-framer-name\":\"\uD83D\uDD25\",fonts:[\"GF;IBM Plex Mono-700\"],name:\"\uD83D\uDD25\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggTW9uby01MDA=\",\"--framer-font-family\":'\"IBM Plex Mono\", monospace',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(0, 0, 0, 0.75)\"},children:\"Hit front page of Twitch!\"})}),className:\"framer-1nb8ava\",\"data-framer-name\":\"Hit front page of Twitch!\",fonts:[\"GF;IBM Plex Mono-500\"],name:\"Hit front page of Twitch!\",verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-owt9lj\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6ofnrr\",\"data-border\":true,\"data-framer-name\":\"dms blowing up\",name:\"dms blowing up\",style:{rotate:2.5},transformTemplate:transformTemplate2,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggTW9uby03MDA=\",\"--framer-font-family\":'\"IBM Plex Mono\", monospace',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"\uD83D\uDC7F\"})}),className:\"framer-14ivcpy\",\"data-framer-name\":\"\uD83D\uDC7F\",fonts:[\"GF;IBM Plex Mono-700\"],name:\"\uD83D\uDC7F\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggTW9uby01MDA=\",\"--framer-font-family\":'\"IBM Plex Mono\", monospace',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(0, 0, 0, 0.75)\"},children:\"DMs blowing up\u2026\"})}),className:\"framer-te6c8t\",\"data-framer-name\":\"DMs blowing up\u2026\",fonts:[\"GF;IBM Plex Mono-500\"],name:\"DMs blowing up\u2026\",verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1d0fvh6\",\"data-framer-name\":\"overwhelmed\",name:\"overwhelmed\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e6vl26\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-up3x3b\",\"data-framer-name\":\"Star 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:63,intrinsicWidth:191,name:\"Star 1\",svg:'<svg width=\"191\" height=\"63\" viewBox=\"-1 -1 191 63\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M93.0118 4.13914L92.8022 4.10664L92.5975 4.16202L79.8268 7.61606L64.275 6.93422L64.0295 6.92346L63.8071 7.02763L54.9468 11.1767L38.4964 11.909L38.0899 11.9271L37.8116 12.2238L33.7801 16.5213L18.1722 18.573L17.1077 18.713L17.3228 19.7649L18.0358 23.2516L5.26644 26.2783L2.98631 26.8187L4.9541 28.0911L9.33797 30.9256L1.00391 34.2885L-1.71784 35.3868L1.10827 36.1788L9.76187 38.6039L5.71668 41.9038L3.90091 43.385L6.22668 43.6712L19.2516 45.2737L18.9267 48.8178L18.8287 49.887L19.9022 49.9089L35.6411 50.2301L40.1211 54.0576L40.4305 54.3219L40.8365 54.2952L57.2675 53.2121L66.5307 56.3606L66.7633 56.4396L67.006 56.4019L82.3882 54.0123L95.4616 56.0395L95.6712 56.072L95.8759 56.0166L108.647 52.5626L124.198 53.2444L124.444 53.2552L124.666 53.151L133.527 49.002L149.977 48.2697L150.383 48.2516L150.662 47.9548L154.693 43.6574L170.301 41.6056L171.366 41.4657L171.151 40.4138L170.438 36.927L183.207 33.9004L185.487 33.3599L183.519 32.0876L179.135 29.253L187.469 25.8901L190.191 24.7918L187.365 23.9998L178.712 21.5748L182.757 18.2749L184.572 16.7936L182.247 16.5075L169.222 14.9049L169.547 11.3608L169.645 10.2917L168.571 10.2698L152.832 9.94858L148.352 6.12102L148.043 5.85673L147.637 5.88349L131.206 6.96654L121.943 3.81806L121.71 3.739L121.467 3.77671L106.085 6.16638L93.0118 4.13914Z\" fill=\"#FF375F\" stroke=\"white\" stroke-width=\"2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggTW9uby03MDA=\",\"--framer-font-family\":'\"IBM Plex Mono\", monospace',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"\uD83D\uDE16\"})}),className:\"framer-ecsdba\",\"data-framer-name\":\"\uD83D\uDE16\",fonts:[\"GF;IBM Plex Mono-700\"],name:\"\uD83D\uDE16\",style:{rotate:-3},transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggTW9uby03MDA=\",\"--framer-font-family\":'\"IBM Plex Mono\", monospace',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(0, 0, 0, 0.75)\"},children:\"Big Yikes.\"})}),className:\"framer-149mg6l\",\"data-framer-name\":\"Overwhelmed.\",fonts:[\"GF;IBM Plex Mono-700\"],name:\"Overwhelmed.\",style:{rotate:-3},transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true})]})})]}),isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fjzg50 hidden-1baj3rk hidden-1ift2b9 hidden-11mojgf\",\"data-border\":true,\"data-framer-name\":\"Rectangle 2018\",name:\"Rectangle 2018\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1w88f0g\",\"data-framer-name\":\"center\",name:\"center\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kffvbc\",\"data-framer-name\":\"bubbles\",name:\"bubbles\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gb08IE0VK:{style:{rotate:1}},vqvAi04c7:{style:{rotate:1}}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1a6rp8\",\"data-border\":true,\"data-framer-name\":\"Frame 37930\",name:\"Frame 37930\",style:{rotate:2},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-y3azas\",\"data-framer-name\":\"Frame 37929\",name:\"Frame 37929\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggTW9uby01MDA=\",\"--framer-font-family\":'\"IBM Plex Mono\", monospace',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Let's get to work!\"})}),className:\"framer-1ruhlwz\",\"data-framer-name\":\"I\u2019ve got your back!\",fonts:[\"GF;IBM Plex Mono-500\"],name:\"I\u2019ve got your back!\",verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gb08IE0VK:{transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-hc1iv9\",\"data-border\":true,\"data-framer-name\":\"Frame 37932\",name:\"Frame 37932\",style:{rotate:-1},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ah0m5z\",\"data-framer-name\":\"Frame 37929\",name:\"Frame 37929\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggTW9uby01MDA=\",\"--framer-font-family\":'\"IBM Plex Mono\", monospace',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Google Home Address Removal starting in 3\u20262\u20261\u2026\"})}),className:\"framer-1vy2gld\",\"data-framer-name\":\"I recommend these series to help keep you safe.\",fonts:[\"GF;IBM Plex Mono-500\"],name:\"I recommend these series to help keep you safe.\",verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-64pq5z\",\"data-framer-name\":\"glow\",name:\"glow\"})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gb08IE0VK:{style:{rotate:-17}},vqvAi04c7:{style:{rotate:-18}}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-hxw2o0\",\"data-framer-name\":\"bird\",name:\"bird\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ffOVdLseq:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 32 36\"><g transform=\"translate(3.92 0.446)\" id=\"ss9858520548_1\"><path d=\"M 6.745 27.037 C 8.173 23.487 11.191 21.406 13.485 22.39 L 8.314 35.247 C 6.02 34.263 5.317 30.587 6.745 27.037 Z\" fill=\"rgb(255,214,0)\"></path><path d=\"M 14.945 28.176 C 14.598 24.393 12.087 21.544 9.336 21.812 L 10.594 35.512 C 13.344 35.243 15.292 31.959 14.945 28.176 Z\" fill=\"rgb(255,214,0)\"></path><path d=\"M 3.768 11.335 C 3.41 7.817 5.883 4.666 9.29 4.297 C 12.698 3.928 15.75 6.48 16.107 9.998 Z\" fill=\"rgb(255,214,0)\"></path><path d=\"M 3.768 11.323 C 4.12 14.788 7.167 17.298 10.574 16.929 C 13.982 16.56 16.459 13.451 16.107 9.986 Z\" fill=\"rgb(255,214,0)\"></path><path d=\"M 18.387 8.532 L 13.331 7.845 L 14.856 12.331 Z\" fill=\"rgb(255,214,0)\"></path><path d=\"M 5.904 7.527 C 5.978 11.694 3.454 15.08 0.266 15.09 L 0 0 C 3.187 -0.01 5.831 3.36 5.904 7.527 Z\" transform=\"translate(11.632 13.363) rotate(-28 2.953 7.545)\" fill=\"rgb(255,214,0)\"></path><path d=\"M 3.999 20.923 C 4.118 26.357 8.076 30.746 12.84 30.728 L 12.41 11.051 C 7.646 11.07 3.881 15.49 3.999 20.923 Z\" fill=\"rgb(255,214,0)\"></path><path d=\"M 1.866 17.711 C -1.096 21.511 -0.414 27.029 3.079 29.846 L 6.197 21.205 L 13.804 16.086 C 10.172 13.184 4.828 13.912 1.866 17.711 Z\" fill=\"rgb(255,214,0)\"></path><path d=\"M 10.589 9.548 C 10.884 10.154 10.527 9.578 11.191 9.259 C 11.855 8.94 13.29 8.999 12.995 8.393 C 12.701 7.786 11.923 7.553 11.259 7.872 C 10.595 8.191 10.295 8.941 10.589 9.548 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 22.245 2.047 L 23.274 0\" fill=\"transparent\" stroke-width=\"1.33\" stroke=\"rgba(255,255,255,0.6)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 24.766 4.344 L 26.672 3.06\" fill=\"transparent\" stroke-width=\"1.33\" stroke=\"rgba(255,255,255,0.6)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 25.39 7.85 L 27.662 7.484\" fill=\"transparent\" stroke-width=\"1.33\" stroke=\"rgba(255,255,255,0.6)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></g></svg>',svgContentId:9858520548}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1dj7qwy\",\"data-framer-name\":\"Group 1460\",layout:\"position\",name:\"Group 1460\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 38 43\"><g transform=\"translate(4.655 0.533)\" id=\"ss10320011331_1\"><path d=\"M 8.01 32.294 C 9.705 28.053 13.289 25.568 16.014 26.744 L 9.873 42.101 C 7.148 40.925 6.314 36.535 8.01 32.294 Z\" fill=\"rgb(255,214,0)\"></path><path d=\"M 17.747 33.654 C 17.335 29.136 14.353 25.733 11.087 26.054 L 12.58 42.417 C 15.846 42.096 18.16 38.173 17.747 33.654 Z\" fill=\"rgb(255,214,0)\"></path><path d=\"M 4.474 13.539 C 4.05 9.337 6.986 5.573 11.032 5.132 C 15.079 4.691 18.703 7.74 19.127 11.942 Z\" fill=\"rgb(255,214,0)\"></path><path d=\"M 4.474 13.525 C 4.892 17.664 8.511 20.662 12.557 20.221 C 16.603 19.78 19.545 16.067 19.127 11.928 Z\" fill=\"rgb(255,214,0)\"></path><path d=\"M 21.835 10.191 L 15.831 9.371 L 17.642 14.729 Z\" fill=\"rgb(255,214,0)\"></path><path d=\"M 6.999 8.962 C 7.074 13.932 4.063 17.979 0.273 18 L 0 0 C 3.79 -0.021 6.923 3.991 6.999 8.962 Z\" transform=\"translate(13.832 15.976) rotate(-28 3.5 9)\" fill=\"rgb(255,214,0)\"></path><path d=\"M 4.749 24.991 C 4.89 31.481 9.59 36.725 15.247 36.703 L 14.737 13.2 C 9.08 13.222 4.608 18.501 4.749 24.991 Z\" fill=\"rgb(255,214,0)\"></path><path d=\"M 2.216 21.155 C -1.301 25.694 -0.492 32.285 3.656 35.65 L 7.359 25.328 L 16.392 19.214 C 12.08 15.748 5.733 16.617 2.216 21.155 Z\" fill=\"rgb(255,214,0)\"></path><path d=\"M 12.575 11.404 C 12.925 12.129 12.5 11.44 13.289 11.059 C 14.078 10.678 15.782 10.749 15.432 10.025 C 15.082 9.3 14.159 9.022 13.37 9.403 C 12.581 9.784 12.225 10.68 12.575 11.404 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 26.416 2.445 L 27.638 0\" fill=\"transparent\" stroke-width=\"1.58509\" stroke=\"rgba(255,255,255,0.6)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 29.41 5.189 L 31.673 3.655\" fill=\"transparent\" stroke-width=\"1.58509\" stroke=\"rgba(255,255,255,0.6)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 30.15 9.376 L 32.849 8.939\" fill=\"transparent\" stroke-width=\"1.58509\" stroke=\"rgba(255,255,255,0.6)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></g></svg>',svgContentId:10320011331,withExternalLayout:true})})})}),isDisplayed4()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-yio1zb hidden-1f21lp9 hidden-1ift2b9 hidden-11mojgf\",\"data-framer-name\":\"desktop arrow\",fill:\"black\",intrinsicHeight:163,intrinsicWidth:525,name:\"desktop arrow\",svg:'<svg width=\"525\" height=\"163\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g filter=\"url(#a)\"><path d=\"M474.939 55.492a2 2 0 0 0-1.447-2.43l-17.448-4.425a2 2 0 1 0-.983 3.877l15.509 3.933-3.933 15.51a2 2 0 1 0 3.877.982l4.425-17.447Zm-421.978 7.82a2 2 0 0 0-1.922 3.508l1.922-3.508Zm-.171 4.454a2 2 0 1 0 1.883-3.529l-1.883 3.53Zm12.64 1.81a2 2 0 0 0-1.681 3.63l1.68-3.63Zm2.076 5.332a2 2 0 0 0 1.622-3.656l-1.622 3.656Zm12.705.974a2 2 0 0 0-1.466 3.722l1.466-3.722Zm2.334 5.192a2 2 0 1 0 1.42-3.74l-1.42 3.74Zm12.797.35a2 2 0 0 0-1.29 3.787l1.29-3.787Zm2.552 5.072a2 2 0 1 0 1.249-3.8l-1.25 3.8Zm12.771-.203a2 2 0 0 0-1.136 3.835l1.136-3.835Zm2.765 4.971a2 2 0 0 0 1.1-3.846l-1.1 3.846Zm12.764-.68a2 2 0 1 0-.997 3.874l.997-3.874Zm2.978 4.879a2 2 0 1 0 .963-3.883l-.963 3.883Zm12.732-1.119a2 2 0 1 0-.867 3.905l.867-3.905Zm3.064 4.762a2 2 0 0 0 .836-3.912l-.836 3.912Zm12.692-1.526a2 2 0 0 0-.743 3.931l.743-3.93Zm3.242 4.668a2 2 0 1 0 .713-3.936l-.713 3.936Zm12.635-1.915a2 2 0 1 0-.624 3.951l.624-3.951Zm3.402 4.571a2 2 0 0 0 .594-3.956l-.594 3.956Zm12.564-2.294a2 2 0 1 0-.506 3.967l.506-3.967Zm3.55 4.469a2 2 0 1 0 .476-3.971l-.476 3.971Zm12.483-2.665a2 2 0 1 0-.389 3.981l.389-3.981Zm3.654 4.361a1.999 1.999 0 1 0 .36-3.983l-.36 3.983Zm12.426-3.028a2 2 0 0 0-.272 3.991l.272-3.991Zm3.76 4.251a2 2 0 0 0 .242-3.993l-.242 3.993Zm12.328-3.394a2 2 0 0 0-.153 3.997l.153-3.997Zm3.892 4.137a2 2 0 1 0 .124-3.998l-.124 3.998Zm12.218-3.76a2 2 0 0 0-.033 4l.033-4Zm4.021 4.019a2 2 0 1 0 .003-4l-.003 4Zm12.096-4.13a2 2 0 1 0 .089 3.999l-.089-3.999Zm4.146 3.893a2 2 0 0 0-.12-3.998l.12 3.998Zm11.959-4.504a2 2 0 1 0 .215 3.994l-.215-3.994Zm4.27 3.76a2 2 0 0 0-.247-3.993l.247 3.993Zm11.806-4.884a2 2 0 0 0 .344 3.985l-.344-3.985Zm4.392 3.619a2 2 0 1 0-.377-3.983l.377 3.983Zm11.638-5.271a2 2 0 1 0 .476 3.971l-.476-3.971Zm4.511 3.469a2 2 0 1 0-.51-3.967l.51 3.967Zm11.45-5.665a2 2 0 0 0 .614 3.953l-.614-3.953Zm4.63 3.31a2 2 0 1 0-.649-3.947l.649 3.947Zm11.241-6.066a2 2 0 0 0 .756 3.928l-.756-3.928Zm4.748 3.141a2 2 0 0 0-.792-3.921l.792 3.921Zm11.009-6.476a2 2 0 0 0 .902 3.897l-.902-3.897Zm4.862 2.961a2 2 0 1 0-.939-3.888l.939 3.888Zm10.754-6.891a2 2 0 1 0 1.052 3.859l-1.052-3.86Zm4.974 2.769a2 2 0 0 0-1.091-3.849l1.091 3.849Zm10.47-7.313a2 2 0 0 0 1.207 3.813l-1.207-3.813Zm5.082 2.565a2 2 0 0 0-1.246-3.8l1.246 3.8Zm10.16-7.739a2 2 0 0 0 1.365 3.76l-1.365-3.76Zm5.184 2.35a2 2 0 0 0-1.406-3.745l1.406 3.745Zm9.82-8.168a2 2 0 0 0 1.527 3.697l-1.527-3.697Zm5.28 2.122a2 2 0 0 0-1.568-3.68l1.568 3.68Zm9.449-8.596a2 2 0 0 0 1.692 3.624l-1.692-3.624Zm5.37 1.882a2 2 0 0 0-1.734-3.605l1.734 3.605Zm9.045-9.021a2 2 0 1 0 1.859 3.542l-1.859-3.542Zm5.451 1.63a2 2 0 1 0-1.901-3.52l1.901 3.52Zm8.609-9.44a2 2 0 0 0 2.026 3.45l-2.026-3.45ZM51.039 66.82c.577.316 1.16.631 1.75.946l1.884-3.529c-.578-.308-1.148-.617-1.712-.925l-1.922 3.508Zm12.71 6.385a259.05 259.05 0 0 0 3.757 1.703l1.622-3.656a249.998 249.998 0 0 1-3.698-1.676l-1.681 3.63Zm14.996 6.399c1.25.493 2.518.983 3.8 1.47l1.42-3.74c-1.267-.48-2.519-.965-3.754-1.452l-1.466 3.722Zm15.308 5.607c1.267.432 2.548.86 3.84 1.285l1.25-3.8c-1.28-.42-2.546-.844-3.8-1.272l-1.29 3.787Zm15.476 4.917c1.29.382 2.59.761 3.901 1.136l1.1-3.846a425.745 425.745 0 0 1-3.865-1.125l-1.136 3.835Zm15.668 4.33c1.316.339 2.641.674 3.975 1.005l.963-3.883c-1.322-.328-2.636-.66-3.941-.996l-.997 3.874Zm15.84 3.791c1.303.29 2.614.575 3.931.857l.836-3.912a500.96 500.96 0 0 1-3.9-.85l-.867 3.905Zm15.88 3.262c1.322.25 2.651.496 3.985.737l.713-3.936a526.24 526.24 0 0 1-3.955-.732l-.743 3.931Zm15.996 2.773c1.337.211 2.679.417 4.026.62l.594-3.956c-1.337-.201-2.67-.406-3.996-.615l-.624 3.951Zm16.084 2.293c1.347.172 2.699.34 4.056.502l.476-3.971a614.865 614.865 0 0 1-4.026-.498l-.506 3.967Zm16.15 1.818c1.344.132 2.692.258 4.043.38l.36-3.983c-1.342-.122-2.68-.247-4.014-.378l-.389 3.981Zm16.197 1.343a580.9 580.9 0 0 0 4.032.26l.242-3.993a517.195 517.195 0 0 1-4.002-.258l-.272 3.991Zm16.207.863c1.346.052 2.694.099 4.045.14l.124-3.998c-1.341-.041-2.68-.088-4.016-.139l-.153 3.997Zm16.23.38c1.349.012 2.701.018 4.054.019l.003-4a490.071 490.071 0 0 1-4.024-.019l-.033 4Zm16.239-.112c1.35-.03 2.703-.065 4.057-.106l-.12-3.998c-1.344.04-2.686.075-4.026.105l.089 3.999Zm16.231-.616c1.35-.073 2.702-.151 4.055-.234l-.247-3.993c-1.342.083-2.683.161-4.023.233l.215 3.994Zm16.205-1.133c1.349-.117 2.698-.239 4.048-.366l-.377-3.983c-1.339.127-2.677.248-4.015.364l.344 3.985Zm16.162-1.666a462.8 462.8 0 0 0 4.035-.502l-.51-3.967c-1.334.172-2.668.338-4.001.498l.476 3.971Zm16.099-2.214c1.339-.208 2.678-.422 4.016-.643l-.649-3.947c-1.327.219-2.654.431-3.981.637l.614 3.953Zm16.013-2.781c1.331-.256 2.661-.519 3.992-.787l-.792-3.921c-1.318.266-2.637.526-3.956.78l.756 3.928Zm15.903-3.366c1.321-.305 2.641-.617 3.96-.936l-.939-3.888a412.01 412.01 0 0 1-3.923.927l.902 3.897Zm15.766-3.968c1.308-.357 2.615-.72 3.922-1.09l-1.091-3.849c-1.293.367-2.588.726-3.883 1.08l1.052 3.859Zm15.599-4.59c1.293-.409 2.585-.825 3.875-1.248l-1.246-3.8c-1.277.418-2.556.83-3.836 1.235l1.207 3.813Zm15.4-5.227c1.275-.463 2.548-.933 3.819-1.41l-1.406-3.745c-1.257.472-2.517.937-3.778 1.395l1.365 3.76Zm15.166-5.88a370.13 370.13 0 0 0 3.753-1.576l-1.568-3.68a357.23 357.23 0 0 1-3.712 1.558l1.527 3.697Zm14.894-6.547a353.798 353.798 0 0 0 3.678-1.743l-1.734-3.605a342.343 342.343 0 0 1-3.636 1.723l1.692 3.624Zm14.582-7.222c1.2-.63 2.397-1.267 3.592-1.912l-1.901-3.52a335.67 335.67 0 0 1-3.55 1.89l1.859 3.542Zm14.227-7.902c.586-.344 1.172-.69 1.756-1.038l-2.046-3.438c-.578.345-1.156.687-1.736 1.027l2.026 3.449Z\" fill=\"#34A853\"/></g><defs><filter id=\"a\" x=\"0\" y=\".574\" width=\"525\" height=\"162.426\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"><feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/><feColorMatrix in=\"SourceAlpha\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/><feOffset dy=\"2\"/><feGaussianBlur stdDeviation=\"25\"/><feComposite in2=\"hardAlpha\" operator=\"out\"/><feColorMatrix values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0\"/><feBlend in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_4173_11583\"/><feColorMatrix in=\"SourceAlpha\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/><feOffset dy=\"2\"/><feGaussianBlur stdDeviation=\"8\"/><feComposite in2=\"hardAlpha\" operator=\"out\"/><feColorMatrix values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0\"/><feBlend in2=\"effect1_dropShadow_4173_11583\" result=\"effect2_dropShadow_4173_11583\"/><feColorMatrix in=\"SourceAlpha\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/><feOffset/><feGaussianBlur stdDeviation=\"15\"/><feComposite in2=\"hardAlpha\" operator=\"out\"/><feColorMatrix values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0\"/><feBlend in2=\"effect2_dropShadow_4173_11583\" result=\"effect3_dropShadow_4173_11583\"/><feBlend in=\"SourceGraphic\" in2=\"effect3_dropShadow_4173_11583\" result=\"shape\"/></filter></defs></svg>',withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-66cstu hidden-1baj3rk hidden-1f21lp9\",\"data-framer-name\":\"mobile arrow\",fill:\"black\",intrinsicHeight:459,intrinsicWidth:359,name:\"mobile arrow\",svg:'<svg width=\"359\" height=\"459\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g filter=\"url(#a)\"><path d=\"M63.59 405.914a2 2 0 0 0 2.828 0l12.728-12.728a2 2 0 0 0-2.829-2.828l-11.313 11.314-11.314-11.314a2 2 0 1 0-2.829 2.829l12.729 12.727ZM306.499 204h-2 2ZM67.029 402.529a2 2 0 1 0-3.998-.106l3.999.106Zm-2.68-12.228a2 2 0 1 0 3.926.765l-3.926-.765Zm4.766-2.973a2 2 0 0 0-3.875-.99l3.875.99Zm.149-12.491a2 2 0 0 0 3.649 1.639l-3.649-1.639Zm5.32-1.823a2 2 0 1 0-3.553-1.837l3.553 1.837Zm2.85-12.17a2 2 0 1 0 3.235 2.352l-3.235-2.352Zm5.586-.731a2 2 0 0 0-3.126-2.496l3.126 2.496Zm4.977-11.46a2 2 0 1 0 2.81 2.847l-2.81-2.847Zm5.625.163a2 2 0 1 0-2.712-2.941l2.712 2.941Zm6.516-10.701a2 2 0 1 0 2.443 3.167l-2.443-3.167Zm5.563.821a2 2 0 1 0-2.364-3.226l2.364 3.226Zm7.539-9.99a2 2 0 0 0 2.154 3.37l-2.154-3.37Zm5.476 1.29a2 2 0 0 0-2.093-3.409l2.093 3.409Zm8.255-9.426a2 2 0 0 0 1.933 3.502l-1.933-3.502Zm5.409 1.612a2 2 0 1 0-1.887-3.526l1.887 3.526Zm8.734-8.977a2 2 0 1 0 1.77 3.587l-1.77-3.587Zm5.294 1.869a2 2 0 1 0-1.737-3.603l1.737 3.603Zm9.068-8.65a2 2 0 1 0 1.653 3.643l-1.653-3.643Zm5.252 2.023a2 2 0 0 0-1.63-3.653l1.63 3.653Zm9.282-8.419a2 2 0 1 0 1.576 3.676l-1.576-3.676Zm5.216 2.124a2 2 0 1 0-1.562-3.682l1.562 3.682Zm9.4-8.278a2 2 0 0 0 1.534 3.694l-1.534-3.694Zm5.193 2.178a2 2 0 0 0-1.529-3.697l1.529 3.697Zm9.451-8.229a2 2 0 1 0 1.527 3.697l-1.527-3.697Zm5.189 2.183a2 2 0 0 0-1.53-3.696l1.53 3.696Zm9.421-8.267a2.001 2.001 0 0 0 1.555 3.686l-1.555-3.686Zm5.19 2.145a2 2 0 1 0-1.567-3.68l1.567 3.68Zm9.297-8.396a2 2 0 1 0 1.622 3.656l-1.622-3.656Zm5.264 2.026a2 2 0 0 0-1.646-3.646l1.646 3.646Zm9.075-8.645a2.001 2.001 0 0 0 1.74 3.602l-1.74-3.602Zm5.316 1.852a2 2 0 1 0-1.777-3.583l1.777 3.583Zm8.681-9.022a2 2 0 0 0 1.92 3.509l-1.92-3.509Zm5.393 1.572a2 2 0 0 0-1.978-3.477l1.978 3.477Zm8.078-9.597a2 2 0 0 0 2.191 3.347l-2.191-3.347Zm5.517 1.109a2 2 0 1 0-2.276-3.289l2.276 3.289Zm6.978-10.339a2 2 0 0 0 2.584 3.053l-2.584-3.053Zm5.651.35a2 2 0 1 0-2.708-2.944l2.708 2.944Zm5.197-11.345a1.999 1.999 0 1 0 3.126 2.495l-3.126-2.495Zm5.572-.774a1.999 1.999 0 1 0-3.277-2.292l3.277 2.292Zm2.196-12.275a2 2 0 1 0 3.709 1.498l-3.709-1.498Zm5.087-2.376a2 2 0 1 0-3.822-1.179l3.822 1.179Zm-1.913-12.329a2 2 0 1 0 3.997.166l-3.997-.166Zm3.997-4.061a2 2 0 0 0-3.997.163l3.997-.163Zm-5.908-11.228a2 2 0 0 0 3.831-1.153l-3.831 1.153Zm2.46-5.112a2 2 0 1 0-3.724 1.46l3.724-1.46Zm-9.153-8.843a2 2 0 0 0 3.331-2.215l-3.331 2.215Zm.929-5.604a2 2 0 1 0-3.196 2.405l3.196-2.405Zm-10.973-6.487a2 2 0 0 0 2.836-2.822l-2.836 2.822Zm-.101-5.67a2 2 0 0 0-2.736 2.919l2.736-2.919Zm-11.789-4.867a2 2 0 1 0 2.494-3.127l-2.494 3.127Zm-.725-5.644a2 2 0 0 0-2.434 3.175l2.434-3.175Zm-12.125-3.916a2 2 0 1 0 2.302-3.271l-2.302 3.271Zm-1.022-5.588a2.002 2.002 0 0 0-2.783.509 2.002 2.002 0 0 0 .509 2.783l2.274-3.292Zm-12.27-3.491a2 2 0 1 0 2.229-3.322l-2.229 3.322Zm-1.12-5.566a2 2 0 0 0-2.226 3.323l2.226-3.323Zm-12.275-3.459a2 2 0 0 0 2.259-3.302l-2.259 3.302Zm-1.05-5.582a2 2 0 0 0-2.282 3.286l2.282-3.286Zm-12.174-3.807a2 2 0 1 0 2.39-3.208l-2.39 3.208Zm-.797-5.62a2 2 0 1 0-2.439 3.171l2.439-3.171Zm-11.908-4.561a2 2 0 1 0 2.631-3.013l-2.631 3.013Zm-.339-5.674a2 2 0 0 0-2.709 2.943l2.709-2.943Zm-11.349-5.797a2 2 0 0 0 2.988-2.66l-2.988 2.66Zm.423-5.66a2 2 0 1 0-3.094 2.535l3.094-2.535Zm-10.248-7.573a2 2 0 1 0 3.432-2.054l-3.432 2.054Zm1.517-5.47a2 2 0 0 0-3.544 1.855l3.544-1.855Zm-8.27-9.663a2 2 0 0 0 3.83-1.155l-3.83 1.155Zm2.827-4.93a2 2 0 0 0-3.898.897l3.898-.898Zm-5.483-11.45a2 2 0 0 0 3.998-.125l-3.998.125ZM67.003 404.5c0-.661.01-1.318.027-1.971l-3.999-.106a78.15 78.15 0 0 0-.027 2.077h4Zm1.272-13.434c.246-1.262.526-2.508.84-3.738l-3.875-.99a70.35 70.35 0 0 0-.891 3.963l3.926.765Zm4.638-14.59a69.534 69.534 0 0 1 1.671-3.462l-3.553-1.837a73.825 73.825 0 0 0-1.767 3.66l3.649 1.639Zm7.756-13.28a85.963 85.963 0 0 1 2.35-3.083l-3.125-2.496a89.406 89.406 0 0 0-2.46 3.227l3.235 2.352ZM90.807 351.5a115.4 115.4 0 0 1 2.815-2.684l-2.712-2.941c-.992.915-1.963 1.841-2.913 2.778l2.81 2.847Zm11.774-10.218c1.024-.79 2.064-1.571 3.12-2.346l-2.364-3.226a158.83 158.83 0 0 0-3.199 2.405l2.443 3.167Zm12.813-8.966c1.095-.7 2.202-1.393 3.322-2.08l-2.093-3.409a220.642 220.642 0 0 0-3.383 2.119l2.154 3.37Zm13.51-8.004c1.15-.635 2.309-1.265 3.476-1.89l-1.887-3.526a308.15 308.15 0 0 0-3.522 1.914l1.933 3.502Zm13.98-7.28a427.345 427.345 0 0 1 3.524-1.718l-1.737-3.603a434.569 434.569 0 0 0-3.557 1.734l1.77 3.587Zm14.245-6.725a566.522 566.522 0 0 1 3.599-1.62l-1.63-3.653a670.514 670.514 0 0 0-3.622 1.63l1.653 3.643Zm14.457-6.363a1205.84 1205.84 0 0 1 3.64-1.552l-1.562-3.682c-1.22.517-2.438 1.036-3.654 1.558l1.576 3.676Zm14.574-6.136c1.22-.507 2.439-1.012 3.659-1.516l-1.529-3.697c-1.221.505-2.442 1.011-3.664 1.519l1.534 3.694Zm14.637-6.048 3.662-1.514-1.53-3.696-3.659 1.513 1.527 3.697Zm14.638-6.095c1.216-.513 2.428-1.027 3.635-1.541l-1.567-3.68c-1.203.512-2.411 1.024-3.623 1.535l1.555 3.686Zm14.554-6.281a627.5 627.5 0 0 0 3.642-1.63l-1.646-3.646a619.207 619.207 0 0 1-3.618 1.62l1.622 3.656Zm14.457-6.673a350.39 350.39 0 0 0 3.576-1.75l-1.777-3.583c-1.169.58-2.349 1.157-3.539 1.731l1.74 3.602Zm14.177-7.263c1.172-.641 2.33-1.287 3.473-1.937l-1.978-3.477a235.961 235.961 0 0 1-3.415 1.905l1.92 3.509Zm13.742-8.187a156.56 156.56 0 0 0 3.326-2.238l-2.276-3.289a148.58 148.58 0 0 1-3.241 2.18l2.191 3.347Zm12.888-9.524a98.863 98.863 0 0 0 3.067-2.703l-2.708-2.944a95.45 95.45 0 0 1-2.943 2.594l2.584 3.053Zm11.39-11.553a64.01 64.01 0 0 0 2.446-3.269l-3.277-2.292a61.105 61.105 0 0 1-2.295 3.066l3.126 2.495Zm8.351-14.046a48.422 48.422 0 0 0 1.378-3.874l-3.822-1.179a44.562 44.562 0 0 1-1.265 3.555l3.709 1.498Zm3.462-16.037c.028-.695.043-1.396.043-2.101h-4c0 .65-.013 1.295-.04 1.935l3.997.166Zm.043-2.101c0-.714-.014-1.423-.043-2.126l-3.997.163c.027.649.04 1.303.04 1.963h4Zm-2.12-14.507a51.52 51.52 0 0 0-1.371-3.959l-3.724 1.46c.47 1.199.893 2.416 1.264 3.652l3.831-1.153Zm-7.193-15.017a71.154 71.154 0 0 0-2.402-3.389l-3.196 2.405a66.822 66.822 0 0 1 2.267 3.199l3.331-2.215Zm-10.539-12.698a120.351 120.351 0 0 0-2.937-2.848l-2.736 2.919c.971.91 1.917 1.826 2.837 2.751l2.836-2.822Zm-12.232-10.842a216.225 216.225 0 0 0-3.219-2.517l-2.434 3.175a211.02 211.02 0 0 1 3.159 2.469l2.494-3.127Zm-13.042-9.704a522.841 522.841 0 0 0-3.324-2.317l-2.274 3.292c1.107.764 2.206 1.529 3.296 2.296l2.302-3.271Zm-13.365-9.13-3.349-2.244-2.226 3.323 3.346 2.243 2.229-3.322Zm-13.365-9.005a535.737 535.737 0 0 1-3.309-2.28l-2.282 3.286c1.107.769 2.219 1.534 3.332 2.296l2.259-3.302Zm-13.093-9.295a255.508 255.508 0 0 1-3.187-2.412l-2.439 3.171c1.07.822 2.149 1.639 3.236 2.449l2.39-3.208Zm-12.464-9.986a149.954 149.954 0 0 1-2.97-2.661l-2.709 2.943c1 .921 2.016 1.831 3.048 2.731l2.631-3.013Zm-11.331-11.117c-.88-.99-1.736-1.99-2.565-3.001l-3.094 2.535a100.255 100.255 0 0 0 2.671 3.125l2.988-2.66Zm-9.381-12.628a68.777 68.777 0 0 1-1.915-3.416l-3.544 1.855a72.429 72.429 0 0 0 2.027 3.615l3.432-2.054Zm-6.355-14.234a58.472 58.472 0 0 1-1.003-3.776l-3.898.898a62.644 62.644 0 0 0 1.071 4.033l3.83-1.155Zm-2.488-15.35a65.32 65.32 0 0 1-.031-1.987h-4c0 .709.011 1.413.033 2.112l3.998-.125Z\" fill=\"#34A853\"/></g><defs><filter id=\"a\" x=\".277\" y=\".5\" width=\"358.223\" height=\"458\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"><feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/><feColorMatrix in=\"SourceAlpha\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/><feOffset dy=\"2\"/><feGaussianBlur stdDeviation=\"25\"/><feComposite in2=\"hardAlpha\" operator=\"out\"/><feColorMatrix values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0\"/><feBlend in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_4036_12503\"/><feColorMatrix in=\"SourceAlpha\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/><feOffset dy=\"2\"/><feGaussianBlur stdDeviation=\"8\"/><feComposite in2=\"hardAlpha\" operator=\"out\"/><feColorMatrix values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0\"/><feBlend in2=\"effect1_dropShadow_4036_12503\" result=\"effect2_dropShadow_4036_12503\"/><feColorMatrix in=\"SourceAlpha\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/><feOffset/><feGaussianBlur stdDeviation=\"15\"/><feComposite in2=\"hardAlpha\" operator=\"out\"/><feColorMatrix values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0\"/><feBlend in2=\"effect2_dropShadow_4036_12503\" result=\"effect3_dropShadow_4036_12503\"/><feBlend in=\"SourceGraphic\" in2=\"effect3_dropShadow_4036_12503\" result=\"shape\"/></filter></defs></svg>',withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-omj8gr hidden-1baj3rk hidden-1ift2b9 hidden-11mojgf\",\"data-border\":true,\"data-framer-name\":\"Rectangle 2018\",name:\"Rectangle 2018\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2q97p9\",\"data-framer-name\":\"right\",name:\"right\",children:[isDisplayed3()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-rw4npv hidden-1baj3rk hidden-1ift2b9 hidden-11mojgf\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:164,intrinsicWidth:186,name:\"Graphic\",style:{rotate:105},svg:'<svg width=\"186\" height=\"164\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g filter=\"url(#a)\"><path d=\"M125.701 111.834a2.001 2.001 0 0 0 2.633-1.035l7.186-16.504a2 2 0 1 0-3.667-1.597l-6.388 14.67-14.669-6.388a2 2 0 0 0-1.598 3.667l16.503 7.187Zm-72.964-63.32a2 2 0 1 0-.474 3.972l.474-3.972Zm1.604 4.231a2 2 0 1 0 .517-3.966l-.517 3.966Zm13.158-1.795a2 2 0 0 0-.865 3.905l.865-3.905Zm3.158 4.88a2 2 0 0 0 1.022-3.868l-1.022 3.867Zm13.267.342a2 2 0 1 0-1.601 3.665l1.602-3.665Zm2.1 5.418a2 2 0 1 0 1.823-3.56l-1.823 3.56Zm12.788 3.474a2 2 0 0 0-2.481 3.138l2.48-3.138Zm.64 5.774a2 2 0 0 0 2.677-2.973l-2.677 2.973Zm11.512 6.537a2 2 0 1 0-3.146 2.47l3.146-2.47Zm-.68 5.777a2 2 0 0 0 3.263-2.314l-3.263 2.314Zm10.039 8.642a2 2 0 0 0-3.516 1.907l3.516-1.907Zm-1.597 5.589a2 2 0 1 0 3.576-1.793l-3.576 1.793Zm8.836 9.886a2 2 0 1 0-3.706 1.505l3.706-1.505Zm-75.3-54.783c.699.083 1.391.17 2.079.26l.517-3.967c-.703-.092-1.41-.18-2.12-.265l-.475 3.972Zm14.372 2.369c1.363.302 2.704.626 4.023.975l1.022-3.868a105.81 105.81 0 0 0-4.18-1.012l-.865 3.905Zm15.689 4.982a67.103 67.103 0 0 1 3.701 1.753l1.823-3.56a71.092 71.092 0 0 0-3.922-1.858l-1.602 3.665Zm14.008 8.365a63.61 63.61 0 0 1 3.121 2.636l2.677-2.973a67.887 67.887 0 0 0-3.317-2.8l-2.481 3.137Zm11.487 11.643a84.557 84.557 0 0 1 2.466 3.307l3.263-2.314a88.251 88.251 0 0 0-2.583-3.463l-3.146 2.47Zm8.989 13.856a128.924 128.924 0 0 1 1.919 3.682l3.576-1.793a134.23 134.23 0 0 0-1.979-3.796l-3.516 1.907Zm7.049 15.073c.262.645.523 1.298.783 1.958l3.722-1.464c-.265-.674-.531-1.34-.799-1.999l-3.706 1.505Z\" fill=\"#34A853\"/></g><defs><filter id=\"a\" x=\".5\" y=\".5\" width=\"185.188\" height=\"163.5\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"><feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/><feColorMatrix in=\"SourceAlpha\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/><feOffset dy=\"2\"/><feGaussianBlur stdDeviation=\"25\"/><feComposite in2=\"hardAlpha\" operator=\"out\"/><feColorMatrix values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0\"/><feBlend in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_4174_12203\"/><feColorMatrix in=\"SourceAlpha\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/><feOffset dy=\"2\"/><feGaussianBlur stdDeviation=\"8\"/><feComposite in2=\"hardAlpha\" operator=\"out\"/><feColorMatrix values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0\"/><feBlend in2=\"effect1_dropShadow_4174_12203\" result=\"effect2_dropShadow_4174_12203\"/><feColorMatrix in=\"SourceAlpha\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/><feOffset/><feGaussianBlur stdDeviation=\"15\"/><feComposite in2=\"hardAlpha\" operator=\"out\"/><feColorMatrix values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0\"/><feBlend in2=\"effect2_dropShadow_4174_12203\" result=\"effect3_dropShadow_4174_12203\"/><feBlend in=\"SourceGraphic\" in2=\"effect3_dropShadow_4174_12203\" result=\"shape\"/></filter></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gb08IE0VK:{style:{scale:1.1}}},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1f0wj3k\",children:[isDisplayed5()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1xh5csj hidden-1f21lp9\",\"data-framer-name\":\"Rectangle 2004\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:297,intrinsicWidth:377,name:\"Rectangle 2004\",svg:'<svg width=\"377\" height=\"297\" viewBox=\"0 0 377 297\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M16.6369 296.156C16.3924 296.124 16.1681 296.295 16.1333 296.538C14.8587 296.34 13.6285 296.007 12.4573 295.556C12.5487 295.327 12.4397 295.067 12.2119 294.973C10.7854 294.381 9.45356 293.607 8.24578 292.679C8.05019 292.528 7.77044 292.564 7.6182 292.757C6.62935 291.957 5.72692 291.055 4.92711 290.066C5.1203 289.914 5.15561 289.634 5.00531 289.438C4.07718 288.23 3.30277 286.899 2.71121 285.472C2.61674 285.244 2.35673 285.135 2.1284 285.227C1.67694 284.055 1.34441 282.825 1.14561 281.551C1.38909 281.516 1.55995 281.292 1.52805 281.047C1.43019 280.297 1.37969 279.532 1.37969 278.754V276.045C1.37969 275.796 1.17822 275.595 0.929688 275.595V271.076C1.17822 271.076 1.37969 270.875 1.37969 270.626V265.207C1.37969 264.959 1.17822 264.757 0.929688 264.757V260.239C1.17822 260.239 1.37969 260.037 1.37969 259.789V254.37C1.37969 254.121 1.17822 253.92 0.929688 253.92V249.401C1.17822 249.401 1.37969 249.2 1.37969 248.951V243.532C1.37969 243.284 1.17822 243.082 0.929688 243.082V238.564C1.17822 238.564 1.37969 238.362 1.37969 238.114V232.695C1.37969 232.446 1.17822 232.245 0.929688 232.245V227.726C1.17822 227.726 1.37969 227.525 1.37969 227.276V221.857C1.37969 221.609 1.17822 221.407 0.929688 221.407V216.889C1.17822 216.889 1.37969 216.687 1.37969 216.439V211.02C1.37969 210.771 1.17822 210.57 0.929688 210.57V206.051C1.17822 206.051 1.37969 205.85 1.37969 205.601V200.182C1.37969 199.934 1.17822 199.732 0.929688 199.732V195.214C1.17822 195.214 1.37969 195.012 1.37969 194.764V189.345C1.37969 189.096 1.17822 188.895 0.929688 188.895V184.376C1.17822 184.376 1.37969 184.175 1.37969 183.926V178.507C1.37969 178.259 1.17822 178.057 0.929688 178.057V173.539C1.17822 173.539 1.37969 173.337 1.37969 173.089V167.67C1.37969 167.421 1.17822 167.22 0.929688 167.22V162.701C1.17822 162.701 1.37969 162.5 1.37969 162.251V156.832C1.37969 156.584 1.17822 156.382 0.929688 156.382V151.864C1.17822 151.864 1.37969 151.662 1.37969 151.414V145.995C1.37969 145.746 1.17822 145.545 0.929688 145.545V141.026C1.17822 141.026 1.37969 140.825 1.37969 140.576V135.157C1.37969 134.909 1.17822 134.707 0.929688 134.707V130.189C1.17822 130.189 1.37969 129.987 1.37969 129.739V124.32C1.37969 124.071 1.17822 123.87 0.929688 123.87V119.351C1.17822 119.351 1.37969 119.15 1.37969 118.901V113.482C1.37969 113.234 1.17822 113.032 0.929688 113.032V108.514C1.17822 108.514 1.37969 108.312 1.37969 108.064V102.645C1.37969 102.396 1.17822 102.195 0.929688 102.195V97.6762C1.17822 97.6762 1.37969 97.4747 1.37969 97.2262V91.8075C1.37969 91.559 1.17822 91.3575 0.929688 91.3575V86.8387C1.17822 86.8387 1.37969 86.6373 1.37969 86.3887V80.97C1.37969 80.7214 1.17822 80.52 0.929688 80.52V76.0012C1.17822 76.0012 1.37969 75.7998 1.37969 75.5512V70.1325C1.37969 69.884 1.17822 69.6825 0.929688 69.6825V65.1637C1.17822 65.1637 1.37969 64.9623 1.37969 64.7137V59.295C1.37969 59.0465 1.17822 58.845 0.929688 58.845V54.3262C1.17822 54.3262 1.37969 54.1248 1.37969 53.8762V48.4575C1.37969 48.209 1.17822 48.0075 0.929688 48.0075V43.4888C1.17822 43.4888 1.37969 43.2873 1.37969 43.0388V37.62C1.37969 37.3715 1.17822 37.17 0.929688 37.17V32.6512C1.17822 32.6512 1.37969 32.4498 1.37969 32.2013V26.7825C1.37969 26.534 1.17822 26.3325 0.929688 26.3325V21.8138C1.17822 21.8138 1.37969 21.6123 1.37969 21.3638V18.6543C1.37969 17.877 1.43019 17.1118 1.52805 16.3616C1.55995 16.117 1.38909 15.8927 1.14561 15.8579C1.34441 14.5834 1.67695 13.3531 2.12841 12.1819C2.35673 12.2733 2.61674 12.1643 2.71121 11.9365C3.30277 10.51 4.07717 9.17819 5.00531 7.9704C5.15561 7.77481 5.1203 7.49506 4.92711 7.34282C5.72692 6.35397 6.62935 5.45154 7.6182 4.65174C7.77044 4.84492 8.05019 4.88023 8.24577 4.72993C9.45356 3.80179 10.7853 3.02739 12.2119 2.43583C12.4397 2.34135 12.5487 2.08134 12.4573 1.85302C13.6285 1.40156 14.8587 1.06902 16.1333 0.870221C16.1681 1.1137 16.3923 1.28456 16.6369 1.25266C17.3871 1.1548 18.1524 1.1043 18.9297 1.1043H21.666C21.9145 1.1043 22.116 0.902825 22.116 0.654297H26.6886C26.6886 0.902825 26.89 1.1043 27.1386 1.1043H32.6111C32.8597 1.1043 33.0611 0.902825 33.0611 0.654297H37.6337C37.6337 0.902825 37.8352 1.1043 38.0837 1.1043H43.5563C43.8048 1.1043 44.0063 0.902825 44.0063 0.654297H48.5789C48.5789 0.902825 48.7803 1.1043 49.0289 1.1043H54.5015C54.75 1.1043 54.9515 0.902825 54.9515 0.654297H59.524C59.524 0.902825 59.7255 1.1043 59.974 1.1043H65.4466C65.6952 1.1043 65.8966 0.902825 65.8966 0.654297H70.4692C70.4692 0.902825 70.6707 1.1043 70.9192 1.1043H76.3918C76.6403 1.1043 76.8418 0.902825 76.8418 0.654297H81.4144C81.4144 0.902825 81.6158 1.1043 81.8644 1.1043H87.3369C87.5855 1.1043 87.7869 0.902825 87.7869 0.654297H92.3595C92.3595 0.902825 92.561 1.1043 92.8095 1.1043H98.2821C98.5306 1.1043 98.7321 0.902825 98.7321 0.654297H103.305C103.305 0.902825 103.506 1.1043 103.755 1.1043H109.227C109.476 1.1043 109.677 0.902825 109.677 0.654297H114.25C114.25 0.902825 114.451 1.1043 114.7 1.1043H120.172C120.421 1.1043 120.622 0.902825 120.622 0.654297H125.195C125.195 0.902825 125.396 1.1043 125.645 1.1043H131.118C131.366 1.1043 131.568 0.902825 131.568 0.654297H136.14C136.14 0.902825 136.342 1.1043 136.59 1.1043H142.063C142.311 1.1043 142.513 0.902825 142.513 0.654297H147.085C147.085 0.902825 147.287 1.1043 147.535 1.1043H153.008C153.256 1.1043 153.458 0.902825 153.458 0.654297H158.03C158.03 0.902825 158.232 1.1043 158.48 1.1043H163.953C164.202 1.1043 164.403 0.902825 164.403 0.654297H168.976C168.976 0.902825 169.177 1.1043 169.426 1.1043H174.898C175.147 1.1043 175.348 0.902825 175.348 0.654297H179.921C179.921 0.902825 180.122 1.1043 180.371 1.1043H185.843C186.092 1.1043 186.293 0.902825 186.293 0.654297H190.866C190.866 0.902825 191.067 1.1043 191.316 1.1043H196.789C197.037 1.1043 197.239 0.902825 197.239 0.654297H201.811C201.811 0.902825 202.013 1.1043 202.261 1.1043H207.734C207.982 1.1043 208.184 0.902825 208.184 0.654297H212.756C212.756 0.902825 212.958 1.1043 213.206 1.1043H218.679C218.927 1.1043 219.129 0.902825 219.129 0.654297H223.701C223.701 0.902825 223.903 1.1043 224.151 1.1043H229.624C229.873 1.1043 230.074 0.902825 230.074 0.654297H234.647C234.647 0.902825 234.848 1.1043 235.097 1.1043H240.569C240.818 1.1043 241.019 0.902825 241.019 0.654297H245.592C245.592 0.902825 245.793 1.1043 246.042 1.1043H251.514C251.763 1.1043 251.964 0.902825 251.964 0.654297H256.537C256.537 0.902825 256.738 1.1043 256.987 1.1043H262.46C262.708 1.1043 262.91 0.902825 262.91 0.654297H267.482C267.482 0.902825 267.684 1.1043 267.932 1.1043H273.405C273.653 1.1043 273.855 0.902825 273.855 0.654297H278.427C278.427 0.902825 278.629 1.1043 278.877 1.1043H284.35C284.598 1.1043 284.8 0.902825 284.8 0.654297H289.372C289.372 0.902825 289.574 1.1043 289.822 1.1043H295.295C295.544 1.1043 295.745 0.902825 295.745 0.654297H300.318C300.318 0.902825 300.519 1.1043 300.768 1.1043H306.24C306.489 1.1043 306.69 0.902825 306.69 0.654297H311.263C311.263 0.902825 311.464 1.1043 311.713 1.1043H317.185C317.434 1.1043 317.635 0.902825 317.635 0.654297H322.208C322.208 0.902825 322.409 1.1043 322.658 1.1043H328.131C328.379 1.1043 328.581 0.902825 328.581 0.654297H333.153C333.153 0.902825 333.355 1.1043 333.603 1.1043H339.076C339.324 1.1043 339.526 0.902825 339.526 0.654297H344.098C344.098 0.902825 344.3 1.1043 344.548 1.1043H350.021C350.27 1.1043 350.471 0.902825 350.471 0.654297H355.044C355.044 0.902825 355.245 1.1043 355.494 1.1043H358.23C359.007 1.1043 359.772 1.1548 360.522 1.25266C360.767 1.28456 360.991 1.1137 361.026 0.870219C362.301 1.06902 363.531 1.40156 364.702 1.85302C364.611 2.08134 364.72 2.34135 364.947 2.43582C366.374 3.02738 367.706 3.80178 368.914 4.72992C369.109 4.88022 369.389 4.84491 369.541 4.65173C370.53 5.45153 371.432 6.35396 372.232 7.34281C372.039 7.49505 372.004 7.7748 372.154 7.97038C373.082 9.17817 373.857 10.51 374.448 11.9365C374.543 12.1643 374.803 12.2733 375.031 12.1819C375.482 13.3531 375.815 14.5833 376.014 15.8579C375.77 15.8927 375.599 16.117 375.631 16.3615C375.729 17.1117 375.78 17.877 375.78 18.6543V21.3637C375.78 21.6122 375.981 21.8137 376.23 21.8137V26.3324C375.981 26.3324 375.78 26.5339 375.78 26.7824V32.2012C375.78 32.4497 375.981 32.6512 376.23 32.6512V37.1699C375.981 37.1699 375.78 37.3714 375.78 37.6199V43.0387C375.78 43.2872 375.981 43.4887 376.23 43.4887V48.0074C375.981 48.0074 375.78 48.2089 375.78 48.4574V53.8762C375.78 54.1247 375.981 54.3262 376.23 54.3262V58.8449C375.981 58.8449 375.78 59.0464 375.78 59.2949V64.7137C375.78 64.9622 375.981 65.1637 376.23 65.1637V69.6824C375.981 69.6824 375.78 69.8839 375.78 70.1324V75.5512C375.78 75.7997 375.981 76.0012 376.23 76.0012V80.5199C375.981 80.5199 375.78 80.7214 375.78 80.9699V86.3886C375.78 86.6372 375.981 86.8386 376.23 86.8386V91.3574C375.981 91.3574 375.78 91.5589 375.78 91.8074V97.2261C375.78 97.4747 375.981 97.6761 376.23 97.6761V102.195C375.981 102.195 375.78 102.396 375.78 102.645V108.064C375.78 108.312 375.981 108.514 376.23 108.514V113.032C375.981 113.032 375.78 113.234 375.78 113.482V118.901C375.78 119.15 375.981 119.351 376.23 119.351V123.87C375.981 123.87 375.78 124.071 375.78 124.32V129.739C375.78 129.987 375.981 130.189 376.23 130.189V134.707C375.981 134.707 375.78 134.909 375.78 135.157V140.576C375.78 140.825 375.981 141.026 376.23 141.026V145.545C375.981 145.545 375.78 145.746 375.78 145.995V151.414C375.78 151.662 375.981 151.864 376.23 151.864V156.382C375.981 156.382 375.78 156.584 375.78 156.832V162.251C375.78 162.5 375.981 162.701 376.23 162.701V167.22C375.981 167.22 375.78 167.421 375.78 167.67V173.089C375.78 173.337 375.981 173.539 376.23 173.539V178.057C375.981 178.057 375.78 178.259 375.78 178.507V183.926C375.78 184.175 375.981 184.376 376.23 184.376V188.895C375.981 188.895 375.78 189.096 375.78 189.345V194.764C375.78 195.012 375.981 195.214 376.23 195.214V199.732C375.981 199.732 375.78 199.934 375.78 200.182V205.601C375.78 205.85 375.981 206.051 376.23 206.051V210.57C375.981 210.57 375.78 210.771 375.78 211.02V216.439C375.78 216.687 375.981 216.889 376.23 216.889V221.407C375.981 221.407 375.78 221.609 375.78 221.857V227.276C375.78 227.525 375.981 227.726 376.23 227.726V232.245C375.981 232.245 375.78 232.446 375.78 232.695V238.114C375.78 238.362 375.981 238.564 376.23 238.564V243.082C375.981 243.082 375.78 243.284 375.78 243.532V248.951C375.78 249.2 375.981 249.401 376.23 249.401V253.92C375.981 253.92 375.78 254.121 375.78 254.37V259.789C375.78 260.037 375.981 260.239 376.23 260.239V264.757C375.981 264.757 375.78 264.959 375.78 265.207V270.626C375.78 270.875 375.981 271.076 376.23 271.076V275.595C375.981 275.595 375.78 275.796 375.78 276.045V278.754C375.78 279.532 375.729 280.297 375.631 281.047C375.599 281.292 375.77 281.516 376.014 281.551C375.815 282.825 375.482 284.055 375.031 285.227C374.803 285.135 374.543 285.244 374.448 285.472C373.857 286.899 373.082 288.23 372.154 289.438C372.004 289.634 372.039 289.914 372.232 290.066C371.432 291.055 370.53 291.957 369.541 292.757C369.389 292.564 369.109 292.528 368.914 292.679C367.706 293.607 366.374 294.381 364.947 294.973C364.72 295.067 364.611 295.327 364.702 295.556C363.531 296.007 362.301 296.34 361.026 296.538C360.991 296.295 360.767 296.124 360.522 296.156C359.772 296.254 359.007 296.304 358.23 296.304H355.493C355.245 296.304 355.043 296.506 355.043 296.754H350.471C350.471 296.506 350.269 296.304 350.021 296.304H344.548C344.3 296.304 344.098 296.506 344.098 296.754H339.526C339.526 296.506 339.324 296.304 339.076 296.304H333.603C333.355 296.304 333.153 296.506 333.153 296.754H328.581C328.581 296.506 328.379 296.304 328.13 296.304H322.658C322.409 296.304 322.208 296.506 322.208 296.754H317.635C317.635 296.506 317.434 296.304 317.185 296.304H311.713C311.464 296.304 311.263 296.506 311.263 296.754H306.69C306.69 296.506 306.489 296.304 306.24 296.304H300.768C300.519 296.304 300.318 296.506 300.318 296.754H295.745C295.745 296.506 295.544 296.304 295.295 296.304H289.822C289.574 296.304 289.372 296.506 289.372 296.754H284.8C284.8 296.506 284.598 296.304 284.35 296.304H278.877C278.629 296.304 278.427 296.506 278.427 296.754H273.855C273.855 296.506 273.653 296.304 273.405 296.304H267.932C267.684 296.304 267.482 296.506 267.482 296.754H262.91C262.91 296.506 262.708 296.304 262.46 296.304H256.987C256.738 296.304 256.537 296.506 256.537 296.754H251.964C251.964 296.506 251.763 296.304 251.514 296.304H246.042C245.793 296.304 245.592 296.506 245.592 296.754H241.019C241.019 296.506 240.818 296.304 240.569 296.304H235.097C234.848 296.304 234.647 296.506 234.647 296.754H230.074C230.074 296.506 229.873 296.304 229.624 296.304H224.151C223.903 296.304 223.701 296.506 223.701 296.754H219.129C219.129 296.506 218.927 296.304 218.679 296.304H213.206C212.958 296.304 212.756 296.506 212.756 296.754H208.184C208.184 296.506 207.982 296.304 207.734 296.304H202.261C202.013 296.304 201.811 296.506 201.811 296.754H197.239C197.239 296.506 197.037 296.304 196.789 296.304H191.316C191.067 296.304 190.866 296.506 190.866 296.754H186.293C186.293 296.506 186.092 296.304 185.843 296.304H180.371C180.122 296.304 179.921 296.506 179.921 296.754H175.348C175.348 296.506 175.147 296.304 174.898 296.304H169.426C169.177 296.304 168.976 296.506 168.976 296.754H164.403C164.403 296.506 164.202 296.304 163.953 296.304H158.48C158.232 296.304 158.031 296.506 158.031 296.754H153.458C153.458 296.506 153.256 296.304 153.008 296.304H147.535C147.287 296.304 147.085 296.506 147.085 296.754H142.513C142.513 296.506 142.311 296.304 142.063 296.304H136.59C136.342 296.304 136.14 296.506 136.14 296.754H131.568C131.568 296.506 131.366 296.304 131.118 296.304H125.645C125.397 296.304 125.195 296.506 125.195 296.754H120.622C120.622 296.506 120.421 296.304 120.172 296.304H114.7C114.451 296.304 114.25 296.506 114.25 296.754H109.677C109.677 296.506 109.476 296.304 109.227 296.304H103.755C103.506 296.304 103.305 296.506 103.305 296.754H98.7321C98.7321 296.506 98.5306 296.304 98.2821 296.304H92.8095C92.561 296.304 92.3595 296.506 92.3595 296.754H87.7869C87.7869 296.506 87.5855 296.304 87.3369 296.304H81.8643C81.6158 296.304 81.4143 296.506 81.4143 296.754H76.8417C76.8417 296.506 76.6403 296.304 76.3917 296.304H70.9191C70.6706 296.304 70.4691 296.506 70.4691 296.754H65.8965C65.8965 296.506 65.6951 296.304 65.4465 296.304H59.9739C59.7254 296.304 59.5239 296.506 59.5239 296.754H54.9514C54.9514 296.506 54.7499 296.304 54.5014 296.304H49.0288C48.7802 296.304 48.5788 296.506 48.5788 296.754H44.0062C44.0062 296.506 43.8047 296.304 43.5562 296.304H38.0836C37.835 296.304 37.6336 296.506 37.6336 296.754H33.061C33.061 296.506 32.8595 296.304 32.611 296.304H27.1384C26.8898 296.304 26.6884 296.506 26.6884 296.754H22.1158C22.1158 296.506 21.9143 296.304 21.6658 296.304H18.9297C18.1524 296.304 17.3871 296.254 16.6369 296.156Z\" stroke=\"white\" stroke-opacity=\"0.3\" stroke-width=\"0.9\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"5.4 5.4\" style=\"mix-blend-mode:plus-lighter\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jrhps8\",\"data-framer-name\":\"glow\",name:\"glow\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gb08IE0VK:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:402.5,intrinsicWidth:466,loading:getLoadingLazyAtYPosition(3415.5),pixelHeight:805,pixelWidth:932,sizes:\"300px\",src:\"https://framerusercontent.com/images/1759csiEpXCQUbIfaNHcnCynEaQ.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/1759csiEpXCQUbIfaNHcnCynEaQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/1759csiEpXCQUbIfaNHcnCynEaQ.png 932w\"}},vqvAi04c7:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:402.5,intrinsicWidth:466,loading:getLoadingLazyAtYPosition(3341.9864864864867),pixelHeight:805,pixelWidth:932,sizes:\"300px\",src:\"https://framerusercontent.com/images/1759csiEpXCQUbIfaNHcnCynEaQ.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/1759csiEpXCQUbIfaNHcnCynEaQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/1759csiEpXCQUbIfaNHcnCynEaQ.png 932w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:402.5,intrinsicWidth:466,pixelHeight:805,pixelWidth:932,sizes:\"300px\",src:\"https://framerusercontent.com/images/1759csiEpXCQUbIfaNHcnCynEaQ.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/1759csiEpXCQUbIfaNHcnCynEaQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/1759csiEpXCQUbIfaNHcnCynEaQ.png 932w\"},className:\"framer-15fqi1x\",\"data-framer-name\":\"Card3\",name:\"Card3\",style:{rotate:-10}})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gb08IE0VK:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:398,intrinsicWidth:468,loading:getLoadingLazyAtYPosition(3308.5),pixelHeight:796,pixelWidth:936,sizes:\"300px\",src:\"https://framerusercontent.com/images/qDjvlHGxBK6GpkE78HHs5xDLpNc.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/qDjvlHGxBK6GpkE78HHs5xDLpNc.png?scale-down-to=512 512w,https://framerusercontent.com/images/qDjvlHGxBK6GpkE78HHs5xDLpNc.png 936w\"}},vqvAi04c7:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:398,intrinsicWidth:468,loading:getLoadingLazyAtYPosition(3310.202702702703),pixelHeight:796,pixelWidth:936,sizes:\"300px\",src:\"https://framerusercontent.com/images/qDjvlHGxBK6GpkE78HHs5xDLpNc.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/qDjvlHGxBK6GpkE78HHs5xDLpNc.png?scale-down-to=512 512w,https://framerusercontent.com/images/qDjvlHGxBK6GpkE78HHs5xDLpNc.png 936w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:398,intrinsicWidth:468,pixelHeight:796,pixelWidth:936,sizes:\"300px\",src:\"https://framerusercontent.com/images/qDjvlHGxBK6GpkE78HHs5xDLpNc.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/qDjvlHGxBK6GpkE78HHs5xDLpNc.png?scale-down-to=512 512w,https://framerusercontent.com/images/qDjvlHGxBK6GpkE78HHs5xDLpNc.png 936w\"},className:\"framer-uuxpmt\",\"data-framer-name\":\"Card2\",name:\"Card2\",style:{rotate:7}})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gb08IE0VK:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:395,intrinsicWidth:465,loading:getLoadingLazyAtYPosition(3248),pixelHeight:790,pixelWidth:930,sizes:\"300px\",src:\"https://framerusercontent.com/images/DR3doWyWnBAESvwiInQMtUBtmUU.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/DR3doWyWnBAESvwiInQMtUBtmUU.png?scale-down-to=512 512w,https://framerusercontent.com/images/DR3doWyWnBAESvwiInQMtUBtmUU.png 930w\"}},vqvAi04c7:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:395,intrinsicWidth:465,loading:getLoadingLazyAtYPosition(3273.3783783783783),pixelHeight:790,pixelWidth:930,sizes:\"300px\",src:\"https://framerusercontent.com/images/DR3doWyWnBAESvwiInQMtUBtmUU.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/DR3doWyWnBAESvwiInQMtUBtmUU.png?scale-down-to=512 512w,https://framerusercontent.com/images/DR3doWyWnBAESvwiInQMtUBtmUU.png 930w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:395,intrinsicWidth:465,pixelHeight:790,pixelWidth:930,sizes:\"300px\",src:\"https://framerusercontent.com/images/DR3doWyWnBAESvwiInQMtUBtmUU.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/DR3doWyWnBAESvwiInQMtUBtmUU.png?scale-down-to=512 512w,https://framerusercontent.com/images/DR3doWyWnBAESvwiInQMtUBtmUU.png 930w\"},className:\"framer-14ia3in\",\"data-framer-name\":\"Card1\",name:\"Card1\",style:{rotate:-8}})})]})}),isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-11tbol2 hidden-1baj3rk hidden-1ift2b9 hidden-11mojgf\",\"data-border\":true,\"data-framer-name\":\"Rectangle 2018\",name:\"Rectangle 2018\"})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gb08IE0VK:{background:{alt:\"\",backgroundSize:.1,fit:\"tile\",intrinsicHeight:1080,intrinsicWidth:1920,loading:getLoadingLazyAtYPosition(2752.450845337128),pixelHeight:4078,pixelWidth:7250,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/oXPTq8u8yYIN3tnoBEU3pOBzi0g.png\"},style:{rotate:90},transformTemplate:transformTemplate3},vqvAi04c7:{background:{alt:\"\",backgroundSize:.1,fit:\"tile\",intrinsicHeight:1080,intrinsicWidth:1920,loading:getLoadingLazyAtYPosition(2527.456969997637),pixelHeight:4078,pixelWidth:7250,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/oXPTq8u8yYIN3tnoBEU3pOBzi0g.png\"},style:{rotate:90},transformTemplate:undefined}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",backgroundSize:.1,fit:\"tile\",intrinsicHeight:1080,intrinsicWidth:1920,pixelHeight:4078,pixelWidth:7250,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/oXPTq8u8yYIN3tnoBEU3pOBzi0g.png\"},className:\"framer-cazrpo\",\"data-framer-name\":\"Stars\",name:\"Stars\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gb08IE0VK:{background:{alt:\"\",backgroundSize:.1,fit:\"tile\",intrinsicHeight:1080,intrinsicWidth:1920,loading:getLoadingLazyAtYPosition(2752.450845337128),pixelHeight:4078,pixelWidth:7250,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/oXPTq8u8yYIN3tnoBEU3pOBzi0g.png\"},style:{rotate:90},transformTemplate:transformTemplate3},vqvAi04c7:{background:{alt:\"\",backgroundSize:.1,fit:\"tile\",intrinsicHeight:1080,intrinsicWidth:1920,loading:getLoadingLazyAtYPosition(2527.456969997637),pixelHeight:4078,pixelWidth:7250,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/oXPTq8u8yYIN3tnoBEU3pOBzi0g.png\"},style:{rotate:90},transformTemplate:undefined}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",backgroundSize:.1,fit:\"tile\",intrinsicHeight:1080,intrinsicWidth:1920,pixelHeight:4078,pixelWidth:7250,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/oXPTq8u8yYIN3tnoBEU3pOBzi0g.png\"},className:\"framer-4n5t3f\",\"data-framer-name\":\"Stars\",name:\"Stars\",transformTemplate:transformTemplate1})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gb08IE0VK:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(3609.5),pixelHeight:1254,pixelWidth:1200,sizes:\"100vw\",src:\"https://framerusercontent.com/images/AZ5vl5FVBU0vj0kpVrSh8T0VM4.png\",srcSet:\"https://framerusercontent.com/images/AZ5vl5FVBU0vj0kpVrSh8T0VM4.png?scale-down-to=1024 979w,https://framerusercontent.com/images/AZ5vl5FVBU0vj0kpVrSh8T0VM4.png 1200w\"}},vqvAi04c7:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(3629.5),pixelHeight:1254,pixelWidth:1200,sizes:\"100vw\",src:\"https://framerusercontent.com/images/AZ5vl5FVBU0vj0kpVrSh8T0VM4.png\",srcSet:\"https://framerusercontent.com/images/AZ5vl5FVBU0vj0kpVrSh8T0VM4.png?scale-down-to=1024 979w,https://framerusercontent.com/images/AZ5vl5FVBU0vj0kpVrSh8T0VM4.png 1200w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1254,pixelWidth:1200,sizes:\"100vw\",src:\"https://framerusercontent.com/images/AZ5vl5FVBU0vj0kpVrSh8T0VM4.png\",srcSet:\"https://framerusercontent.com/images/AZ5vl5FVBU0vj0kpVrSh8T0VM4.png?scale-down-to=1024 979w,https://framerusercontent.com/images/AZ5vl5FVBU0vj0kpVrSh8T0VM4.png 1200w\"},className:\"framer-yo8a17\",\"data-framer-name\":\"Container - meet team + cta\",name:\"Container - meet team + cta\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dm2b00\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rhlpnf\",\"data-framer-name\":\"Meet the Team\",name:\"Meet the Team\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-n8bula\",\"data-framer-name\":\"Team image\",name:\"Team image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gb08IE0VK:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(3759.5),pixelHeight:870,pixelWidth:870,positionX:\"center\",positionY:\"center\",sizes:\"290px\",src:\"https://framerusercontent.com/images/ScNssichikvcUnTGFWxY8ZfBSc.jpg\",srcSet:\"https://framerusercontent.com/images/ScNssichikvcUnTGFWxY8ZfBSc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ScNssichikvcUnTGFWxY8ZfBSc.jpg 870w\"}},vqvAi04c7:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(3779.5),pixelHeight:870,pixelWidth:870,positionX:\"center\",positionY:\"center\",sizes:\"290px\",src:\"https://framerusercontent.com/images/wZUt8Ki62Jm9Wlu2ljVwfA29mx0.jpg\",srcSet:\"https://framerusercontent.com/images/wZUt8Ki62Jm9Wlu2ljVwfA29mx0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/wZUt8Ki62Jm9Wlu2ljVwfA29mx0.jpg 870w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:870,pixelWidth:870,positionX:\"center\",positionY:\"center\",sizes:\"290px\",src:\"https://framerusercontent.com/images/wZUt8Ki62Jm9Wlu2ljVwfA29mx0.jpg\",srcSet:\"https://framerusercontent.com/images/wZUt8Ki62Jm9Wlu2ljVwfA29mx0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/wZUt8Ki62Jm9Wlu2ljVwfA29mx0.jpg 870w\"},className:\"framer-1963jpm\",\"data-framer-name\":\"Group 1368\",name:\"Group 1368\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h9q9fx\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dw05hu\",\"data-framer-name\":\"Text\",name:\"Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gb08IE0VK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QXJjaGl2byBCbGFjay1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo Black\", \"Archivo Black Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Meet your guides\"})})},vqvAi04c7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QXJjaGl2byBCbGFjay1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo Black\", \"Archivo Black Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Meet your guides\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QXJjaGl2byBCbGFjay1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo Black\", \"Archivo Black Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Meet your guides\"})}),className:\"framer-lp9bmr\",\"data-framer-name\":\"Meet your guides\",fonts:[\"GF;Archivo Black-regular\"],name:\"Meet your guides\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gb08IE0VK:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"IBM Plex Mono\", monospace',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"We\u2019re a small team who launched a data removal service in 2020, now loved by over 20,000 people.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"IBM Plex Mono\", monospace',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"IBM Plex Mono\", monospace',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Copilot is our next adventure!\"})]})},vqvAi04c7:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"IBM Plex Mono\", monospace',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"We\u2019re a small team who launched a data removal service in 2020, now loved by over 20,000 people.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"IBM Plex Mono\", monospace',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"IBM Plex Mono\", monospace',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Copilot is our next adventure!\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"IBM Plex Mono\", monospace',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"We\u2019re a small team who launched a data removal service in 2020, now loved by over 20,000 people.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"IBM Plex Mono\", monospace',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"IBM Plex Mono\", monospace',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Copilot is our next adventure!\"})]}),className:\"framer-kjqts6\",\"data-framer-name\":\"We\u2019re a small team who launched a data removal service in 2020, now loved by over 20,000 people. Copilot is our next adventure!\",fonts:[\"GF;IBM Plex Mono-regular\"],name:\"We\u2019re a small team who launched a data removal service in 2020, now loved by over 20,000 people. Copilot is our next adventure!\",verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gb08IE0VK:{y:4829.5},vqvAi04c7:{width:\"calc(min(100vw, 960px) - 62px)\",y:4849.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:58,children:/*#__PURE__*/_jsx(Container,{className:\"framer-33f7br-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ffOVdLseq:{style:{width:\"100%\"}},vqvAi04c7:{style:{width:\"100%\"},variant:\"cJ0Bz3js_\"}},children:/*#__PURE__*/_jsx(DiscordButton,{height:\"100%\",id:\"FRz_Rz6Ov\",layoutId:\"FRz_Rz6Ov\",variant:\"XMk6mP7QG\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2i2pft\",\"data-framer-name\":\"Final CTA\",name:\"Final CTA\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-f31rzj\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gb08IE0VK:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(5067.5),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/mR3XfxIWF30OodgiZqAqXsCmBvw.png\"}},vqvAi04c7:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(5087.5),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/mR3XfxIWF30OodgiZqAqXsCmBvw.png\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/mR3XfxIWF30OodgiZqAqXsCmBvw.png\"},className:\"framer-13vtu1f\",\"data-framer-name\":\"icon\",name:\"icon\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-4mqpjf\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:87,intrinsicWidth:77,name:\"Vector\",svg:'<svg width=\"77\" height=\"87\" viewBox=\"-1 -1 77 87\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_ii_2648_4646)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M63.0886 5.24239C78.8954 21.1079 78.8578 46.7328 62.9763 62.5523C51.3097 74.173 34.3306 77.2773 19.8258 71.865C18.8543 71.5025 17.7522 71.7099 17.0176 72.4417L6.52803 82.8902C5.53188 83.8825 3.89894 83.8924 3.07987 82.7495C-1.1874 76.7957 -0.638556 68.4713 4.7264 63.1274C4.92421 62.9303 5.12611 62.7399 5.33182 62.5558L5.32822 62.5523L40.9466 27.0734C39.5469 25.651 38.4772 24.0267 37.7376 22.2958L31.5405 17.841C31.1863 17.5863 31.1863 17.0592 31.5405 16.8046L36.8309 13.0016C37.4321 10.1574 38.8414 7.44888 41.0584 5.2404C47.1425 -0.819717 57.0066 -0.819717 63.0904 5.2404L63.0886 5.24239Z\" fill=\"#FED500\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_ii_2648_4646\" x=\"0.244141\" y=\"0.695312\" width=\"74.6715\" height=\"83.4403\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset/>\\n<feGaussianBlur stdDeviation=\"12.7644\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 1 0 0 0 0 0.916634 0 0 0 0 0.916634 0 0 0 0.05 0\"/>\\n<feBlend mode=\"plus-lighter\" in2=\"shape\" result=\"effect1_innerShadow_2648_4646\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"0.510574\"/>\\n<feGaussianBlur stdDeviation=\"3.19109\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.05 0\"/>\\n<feBlend mode=\"plus-lighter\" in2=\"effect1_innerShadow_2648_4646\" result=\"effect2_innerShadow_2648_4646\"/>\\n</filter>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ddrsvs\",\"data-framer-name\":\"Mask group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:85,intrinsicWidth:75,name:\"Mask group\",svg:'<svg width=\"75\" height=\"85\" viewBox=\"0 0 75 85\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"mask0_2648_4647\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"75\" height=\"84\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M63.1122 5.19794C78.9244 21.0719 78.8868 46.7106 62.9999 62.5384C51.3291 74.1655 34.344 77.2714 19.8341 71.856C18.8625 71.4934 17.7603 71.7009 17.0257 72.4328L6.5317 82.8877C5.53551 83.8802 3.90232 83.8901 3.08319 82.7471C-1.18597 76.79 -0.637071 68.4608 4.72989 63.1139C4.92778 62.9166 5.12975 62.7261 5.33552 62.542L5.33193 62.5384L40.9626 27.0406C39.5624 25.6175 38.4923 23.9923 37.7525 22.2605L31.5528 17.803C31.1986 17.5483 31.1986 17.0213 31.5528 16.7666L36.8454 12.9613C37.4469 10.1156 38.8567 7.40561 41.0744 5.19595C47.1606 -0.867401 57.0281 -0.867401 63.114 5.19595L63.1122 5.19794Z\" fill=\"#FED500\"/>\\n</mask>\\n<g mask=\"url(#mask0_2648_4647)\">\\n</g>\\n<mask id=\"mask1_2648_4647\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"75\" height=\"84\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M63.1122 5.19794C78.9244 21.0719 78.8868 46.7106 62.9999 62.5384C51.3291 74.1655 34.344 77.2714 19.8341 71.856C18.8625 71.4934 17.7603 71.7009 17.0257 72.4328L6.5317 82.8877C5.53551 83.8802 3.90232 83.8901 3.08319 82.7471C-1.18597 76.79 -0.637071 68.4608 4.72989 63.1139C4.92778 62.9166 5.12975 62.7261 5.33552 62.542L5.33193 62.5384L40.9626 27.0406C39.5624 25.6175 38.4923 23.9923 37.7525 22.2605L31.5528 17.803C31.1986 17.5483 31.1986 17.0213 31.5528 16.7666L36.8454 12.9613C37.4469 10.1156 38.8567 7.40561 41.0744 5.19595C47.1606 -0.867401 57.0281 -0.867401 63.114 5.19595L63.1122 5.19794Z\" fill=\"#FED500\"/>\\n</mask>\\n<g mask=\"url(#mask1_2648_4647)\">\\n<g opacity=\"0.4\" filter=\"url(#filter0_d_2648_4647)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M243.261 60.0121C243.261 -17.8883 180.11 -81.0391 102.21 -81.0391H-16.1714C-94.0719 -81.0391 -157.223 -17.8883 -157.223 60.0121C-157.223 137.913 -94.0719 201.063 -16.1714 201.063H102.21C180.11 201.063 243.261 137.913 243.261 60.0121ZM71.4099 86.7063C102.706 61.6653 102.781 21.103 71.6331 -4.01154C71.6321 -4.01234 71.632 -4.01384 71.633 -4.01466C71.634 -4.01547 71.6339 -4.01696 71.6329 -4.01775C59.6438 -13.6092 40.2064 -13.6087 28.2176 -4.01623C27.3715 -3.3392 26.5851 -2.63247 25.8584 -1.90025C20.4799 3.51912 16.167 10.4172 9.55492 14.2353C8.88184 14.624 8.88184 15.5955 9.55492 15.9842L20.0572 22.0486C21.1135 22.6585 21.9094 23.4803 22.5648 24.5089C24.793 28.0057 24.9436 32.9879 21.7061 35.5783L-42.1905 86.7036C-42.1923 86.705 -42.1923 86.7077 -42.1905 86.7091C-42.1887 86.7105 -42.1888 86.7133 -42.1906 86.7146C-42.5947 87.0052 -42.9913 87.3057 -43.38 87.6168C-54.2931 96.3486 -55.0938 110.107 -45.7821 119.577C-44.4574 120.924 -42.3318 120.903 -40.8566 119.722L-18.4909 101.827C-17.4154 100.966 -15.9776 100.719 -14.6629 101.13C14.1458 110.133 48.1401 105.325 71.4099 86.7063Z\" fill=\"white\"/>\\n</g>\\n<g filter=\"url(#filter1_d_2648_4647)\">\\n<path d=\"M129.492 51.9025C119.355 70.5846 110.068 77.6173 106.338 53.5893C97.498 -3.36597 50.2719 -13.195 99.9462 -42.4271C100.568 -42.793 101.194 -43.1616 101.823 -43.5331C146.38 -69.8309 154.169 6.42717 129.492 51.9025Z\" fill=\"white\"/>\\n</g>\\n<path opacity=\"0.5\" d=\"M-93.3724 68.1416C-112.895 76.5479 -124.542 76.3277 -112.607 55.1425C-84.3174 4.92566 -115.34 -32.0131 -58.2286 -24.2487C-57.5138 -24.1515 -56.7942 -24.0542 -56.0699 -23.9566C-4.7935 -17.0524 -45.8515 47.6793 -93.3724 68.1416Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_d_2648_4647\" x=\"-189.134\" y=\"-112.439\" width=\"464.305\" height=\"345.923\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"0.510574\"/>\\n<feGaussianBlur stdDeviation=\"15.9554\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0\"/>\\n<feBlend mode=\"plus-lighter\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_2648_4647\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_2648_4647\" result=\"shape\"/>\\n</filter>\\n<filter id=\"filter1_d_2648_4647\" x=\"45.6504\" y=\"-80.3144\" width=\"129.592\" height=\"181.666\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"0.510574\"/>\\n<feGaussianBlur stdDeviation=\"15.9554\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0\"/>\\n<feBlend mode=\"plus-lighter\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_2648_4647\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_2648_4647\" result=\"shape\"/>\\n</filter>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ak1bpn\",\"data-framer-name\":\"CTA text\",name:\"CTA text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QXJjaGl2byBCbGFjay1yZWd1bGFy\",\"--framer-font-family\":'\"Archivo Black\", \"Archivo Black Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Kanary Copilot\"})}),className:\"framer-sx54uh\",\"data-framer-name\":\"Kanary Copilot\",fonts:[\"GF;Archivo Black-regular\"],name:\"Kanary Copilot\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SUJNIFBsZXggTW9uby1yZWd1bGFy\",\"--framer-font-family\":'\"IBM Plex Mono\", monospace',\"--framer-font-size\":\"26px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.9)\"},children:\"Free. Available now.\"})}),className:\"framer-eyxyx9\",\"data-framer-name\":\"Free. Pre-order now.\",fonts:[\"GF;IBM Plex Mono-regular\"],name:\"Free. Pre-order now.\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10i47t9\",children:/*#__PURE__*/_jsx(Link,{href:\"https://apps.apple.com/us/app/kanary-copilot/id6553147966\",nodeId:\"dngw0BIhS\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-ppib19 framer-ql30bb\",whileHover:animation5,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1ra55ph\",\"data-framer-name\":\"Download on_the_App_Store_Badge_US-UK_RGB_blk_092917\",fill:\"black\",intrinsicHeight:40,intrinsicWidth:120,name:\"Download on_the_App_Store_Badge_US-UK_RGB_blk_092917\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"119.664\" height=\"40\"><path d=\"M110.135 0H9.535c-.367 0-.73 0-1.095.002-.306.002-.61.008-.919.013A13.215 13.215 0 0 0 5.517.19a6.665 6.665 0 0 0-1.9.627 6.438 6.438 0 0 0-1.62 1.18A6.258 6.258 0 0 0 .82 3.617 6.601 6.601 0 0 0 .195 5.52a12.993 12.993 0 0 0-.179 2.002c-.01.307-.01.615-.015.921V31.56c.005.31.006.61.015.921a12.992 12.992 0 0 0 .18 2.002 6.588 6.588 0 0 0 .624 1.905A6.208 6.208 0 0 0 1.998 38a6.274 6.274 0 0 0 1.618 1.179 6.7 6.7 0 0 0 1.901.63 13.455 13.455 0 0 0 2.004.177c.31.007.613.011.919.011.366.002.728.002 1.095.002h100.6c.36 0 .724 0 1.084-.002.304 0 .617-.004.922-.01a13.279 13.279 0 0 0 2-.178 6.804 6.804 0 0 0 1.908-.63A6.277 6.277 0 0 0 117.666 38a6.395 6.395 0 0 0 1.182-1.614 6.604 6.604 0 0 0 .619-1.905 13.506 13.506 0 0 0 .185-2.002c.004-.31.004-.61.004-.921.008-.364.008-.725.008-1.094V9.536c0-.366 0-.73-.008-1.092 0-.306 0-.614-.004-.92a13.507 13.507 0 0 0-.185-2.003 6.618 6.618 0 0 0-.62-1.903 6.466 6.466 0 0 0-2.798-2.8 6.768 6.768 0 0 0-1.908-.627 13.044 13.044 0 0 0-2-.176c-.305-.005-.618-.011-.922-.013-.36-.002-.725-.002-1.084-.002Z\" style=\"fill:#a6a6a6\"/><path d=\"M8.445 39.125c-.305 0-.602-.004-.904-.01a12.687 12.687 0 0 1-1.87-.164 5.884 5.884 0 0 1-1.656-.548 5.406 5.406 0 0 1-1.397-1.016 5.32 5.32 0 0 1-1.02-1.397 5.722 5.722 0 0 1-.544-1.657 12.414 12.414 0 0 1-.166-1.875c-.007-.21-.015-.913-.015-.913v-23.1s.009-.692.015-.895a12.37 12.37 0 0 1 .165-1.872 5.755 5.755 0 0 1 .544-1.662 5.373 5.373 0 0 1 1.015-1.398 5.565 5.565 0 0 1 1.402-1.023 5.823 5.823 0 0 1 1.653-.544A12.586 12.586 0 0 1 7.543.887l.902-.012h102.769l.913.013a12.385 12.385 0 0 1 1.858.162 5.938 5.938 0 0 1 1.671.548 5.594 5.594 0 0 1 2.415 2.42 5.763 5.763 0 0 1 .535 1.649 12.995 12.995 0 0 1 .174 1.887c.003.283.003.588.003.89.008.375.008.732.008 1.092v20.929c0 .363 0 .718-.008 1.075 0 .325 0 .623-.004.93a12.731 12.731 0 0 1-.17 1.853 5.739 5.739 0 0 1-.54 1.67 5.48 5.48 0 0 1-1.016 1.386 5.413 5.413 0 0 1-1.4 1.022 5.862 5.862 0 0 1-1.668.55 12.542 12.542 0 0 1-1.869.163c-.293.007-.6.011-.897.011l-1.084.002Z\"/><g data-name=\"&lt;Group&gt;\"><g data-name=\"&lt;Group&gt;\"><path data-name=\"&lt;Path&gt;\" d=\"M24.769 20.3a4.949 4.949 0 0 1 2.356-4.151 5.066 5.066 0 0 0-3.99-2.158c-1.68-.176-3.308 1.005-4.164 1.005-.872 0-2.19-.988-3.608-.958a5.315 5.315 0 0 0-4.473 2.728c-1.934 3.348-.491 8.269 1.361 10.976.927 1.325 2.01 2.805 3.428 2.753 1.387-.058 1.905-.885 3.58-.885 1.658 0 2.144.885 3.59.852 1.489-.025 2.426-1.332 3.32-2.67a10.962 10.962 0 0 0 1.52-3.092 4.782 4.782 0 0 1-2.92-4.4Zm-2.732-8.09a4.872 4.872 0 0 0 1.115-3.49 4.957 4.957 0 0 0-3.208 1.66 4.636 4.636 0 0 0-1.144 3.36 4.1 4.1 0 0 0 3.237-1.53Z\" style=\"fill:#fff\"/></g><path d=\"M42.302 27.14H37.57l-1.137 3.356h-2.005l4.484-12.418h2.083l4.483 12.418h-2.039Zm-4.243-1.55h3.752l-1.85-5.446h-.051Zm17.101.38c0 2.813-1.506 4.62-3.779 4.62a3.07 3.07 0 0 1-2.848-1.583h-.043v4.484h-1.86V21.442h1.8v1.506h.033a3.212 3.212 0 0 1 2.883-1.6c2.298 0 3.813 1.816 3.813 4.622Zm-1.91 0c0-1.833-.948-3.038-2.393-3.038-1.42 0-2.375 1.23-2.375 3.038 0 1.824.955 3.046 2.375 3.046 1.445 0 2.393-1.197 2.393-3.046Zm11.875 0c0 2.813-1.506 4.62-3.779 4.62a3.07 3.07 0 0 1-2.848-1.583h-.043v4.484h-1.859V21.442h1.799v1.506h.034a3.212 3.212 0 0 1 2.883-1.6c2.298 0 3.813 1.816 3.813 4.622Zm-1.91 0c0-1.833-.948-3.038-2.393-3.038-1.42 0-2.375 1.23-2.375 3.038 0 1.824.955 3.046 2.375 3.046 1.445 0 2.392-1.197 2.392-3.046Zm8.495 1.066c.138 1.232 1.334 2.04 2.97 2.04 1.566 0 2.693-.808 2.693-1.919 0-.964-.68-1.54-2.29-1.936l-1.609-.388c-2.28-.55-3.339-1.617-3.339-3.348 0-2.142 1.867-3.614 4.519-3.614 2.624 0 4.423 1.472 4.483 3.614h-1.876c-.112-1.239-1.136-1.987-2.634-1.987s-2.521.757-2.521 1.858c0 .878.654 1.395 2.255 1.79l1.368.336c2.548.603 3.606 1.626 3.606 3.443 0 2.323-1.85 3.778-4.793 3.778-2.754 0-4.614-1.42-4.734-3.667ZM83.346 19.3v2.142h1.722v1.472h-1.722v4.991c0 .776.345 1.137 1.102 1.137a5.808 5.808 0 0 0 .611-.043v1.463a5.104 5.104 0 0 1-1.032.086c-1.833 0-2.548-.689-2.548-2.445v-5.189h-1.316v-1.472h1.316V19.3Zm2.719 6.67c0-2.849 1.678-4.639 4.294-4.639 2.625 0 4.295 1.79 4.295 4.639 0 2.856-1.661 4.638-4.295 4.638-2.633 0-4.294-1.782-4.294-4.638Zm6.695 0c0-1.954-.895-3.108-2.401-3.108s-2.4 1.162-2.4 3.108c0 1.962.894 3.106 2.4 3.106s2.401-1.144 2.401-3.106Zm3.426-4.528h1.773v1.541h.043a2.16 2.16 0 0 1 2.177-1.635 2.866 2.866 0 0 1 .637.069v1.738a2.598 2.598 0 0 0-.835-.112 1.873 1.873 0 0 0-1.937 2.083v5.37h-1.858Zm13.198 6.395c-.25 1.643-1.85 2.771-3.898 2.771-2.634 0-4.269-1.764-4.269-4.595 0-2.84 1.644-4.682 4.19-4.682 2.506 0 4.08 1.72 4.08 4.466v.637h-6.394v.112a2.358 2.358 0 0 0 2.436 2.564 2.048 2.048 0 0 0 2.09-1.273Zm-6.282-2.702h4.526a2.177 2.177 0 0 0-2.22-2.298 2.292 2.292 0 0 0-2.306 2.298Z\" style=\"fill:#fff\"/></g><path d=\"M37.826 8.731a2.64 2.64 0 0 1 2.808 2.965c0 1.906-1.03 3.002-2.808 3.002h-2.155V8.73Zm-1.228 5.123h1.125a1.876 1.876 0 0 0 1.967-2.146 1.881 1.881 0 0 0-1.967-2.134h-1.125Zm5.082-1.41a2.133 2.133 0 1 1 4.248 0 2.134 2.134 0 1 1-4.247 0Zm3.334 0c0-.976-.439-1.547-1.208-1.547-.773 0-1.207.571-1.207 1.547 0 .984.434 1.55 1.207 1.55.77 0 1.208-.57 1.208-1.55Zm6.559 2.254h-.922l-.93-3.317h-.07l-.927 3.317h-.913l-1.242-4.503h.902l.806 3.436h.067l.926-3.436h.852l.926 3.436h.07l.803-3.436h.889Zm2.281-4.503h.855v.715h.066a1.348 1.348 0 0 1 1.344-.802 1.465 1.465 0 0 1 1.559 1.675v2.915h-.889v-2.692c0-.724-.314-1.084-.972-1.084a1.033 1.033 0 0 0-1.075 1.141v2.635h-.888Zm5.24-1.758h.888v6.26h-.888Zm2.124 4.007a2.133 2.133 0 1 1 4.247 0 2.134 2.134 0 1 1-4.247 0Zm3.333 0c0-.976-.439-1.547-1.208-1.547-.773 0-1.207.571-1.207 1.547 0 .984.434 1.55 1.207 1.55.77 0 1.208-.57 1.208-1.55Zm1.849.98c0-.81.604-1.278 1.676-1.344l1.22-.07v-.389c0-.475-.315-.744-.922-.744-.497 0-.84.182-.939.5h-.86c.09-.773.818-1.27 1.84-1.27 1.128 0 1.765.563 1.765 1.514v3.077h-.855v-.633h-.07a1.515 1.515 0 0 1-1.353.707 1.36 1.36 0 0 1-1.501-1.348Zm2.895-.384v-.377l-1.1.07c-.62.042-.9.253-.9.65 0 .405.351.64.834.64a1.062 1.062 0 0 0 1.166-.983Zm2.053-.596c0-1.423.732-2.324 1.87-2.324a1.484 1.484 0 0 1 1.38.79h.067V8.437h.888v6.26h-.851v-.71h-.07a1.563 1.563 0 0 1-1.415.785c-1.145 0-1.869-.901-1.869-2.328Zm.918 0c0 .955.45 1.53 1.203 1.53.75 0 1.212-.583 1.212-1.526 0-.938-.468-1.53-1.212-1.53-.748 0-1.203.58-1.203 1.526Zm6.964 0a2.133 2.133 0 1 1 4.247 0 2.134 2.134 0 1 1-4.247 0Zm3.333 0c0-.976-.438-1.547-1.208-1.547-.772 0-1.207.571-1.207 1.547 0 .984.435 1.55 1.207 1.55.77 0 1.208-.57 1.208-1.55Zm2.107-2.249h.855v.715h.066a1.348 1.348 0 0 1 1.344-.802 1.465 1.465 0 0 1 1.559 1.675v2.915h-.889v-2.692c0-.724-.314-1.084-.972-1.084a1.033 1.033 0 0 0-1.075 1.141v2.635h-.889Zm8.845-1.121v1.141h.976v.749h-.976v2.315c0 .472.194.679.637.679a2.967 2.967 0 0 0 .339-.021v.74a2.916 2.916 0 0 1-.484.046c-.988 0-1.381-.348-1.381-1.216v-2.543h-.715v-.749h.715V9.074Zm2.19-.637h.88v2.481h.07a1.386 1.386 0 0 1 1.374-.806 1.483 1.483 0 0 1 1.55 1.679v2.907h-.889V12.01c0-.72-.335-1.084-.963-1.084a1.052 1.052 0 0 0-1.134 1.142v2.63h-.888Zm9.056 5.045a1.828 1.828 0 0 1-1.95 1.303 2.045 2.045 0 0 1-2.081-2.325 2.077 2.077 0 0 1 2.076-2.352c1.253 0 2.009.856 2.009 2.27v.31h-3.18v.05a1.19 1.19 0 0 0 1.2 1.29 1.08 1.08 0 0 0 1.07-.546Zm-3.126-1.451h2.275a1.086 1.086 0 0 0-1.109-1.167 1.152 1.152 0 0 0-1.166 1.167Z\" style=\"fill:#fff\" data-name=\"&lt;Group&gt;\"/></svg>',withExternalLayout:true})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-j8u9z\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"WJHrjxGic\"},implicitPathVariables:undefined},{href:{webPageId:\"WJHrjxGic\"},implicitPathVariables:undefined},{href:{webPageId:\"WJHrjxGic\"},implicitPathVariables:undefined},{href:{webPageId:\"WJHrjxGic\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gb08IE0VK:{y:5423.899996948242},vqvAi04c7:{y:5443.899996948242}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ojhiyk-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ffOVdLseq:{XFRI8z_ME:resolvedLinks1[1]},gb08IE0VK:{XFRI8z_ME:resolvedLinks1[2]},vqvAi04c7:{XFRI8z_ME:resolvedLinks1[3]}},children:/*#__PURE__*/_jsx(CopilotSiteLink,{height:\"100%\",id:\"RjDI8sl4a\",layoutId:\"RjDI8sl4a\",nrAqAVBXj:\"Join the Android waitlist\",UIrnIKQ0w:true,width:\"100%\",XFRI8z_ME:resolvedLinks1[0]})})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-131fs98\",\"data-framer-name\":\"Links\",name:\"Links\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-482duo\",\"data-framer-name\":\"Bird swoop frame\",name:\"Bird swoop frame\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1ofw18l\",\"data-framer-name\":\"bird\",fill:\"black\",intrinsicHeight:285,intrinsicWidth:197,name:\"bird\",style:{rotate:15},svg:'<svg width=\"197\" height=\"285\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M121.925 1c1.008 25.467.224 57.618-6.882 71.52-5.872 11.49-17.235 23.82-21.144 26.61-2.784 1.989-8.969 6.126-14.196-.064-4.582-6.399-3.004-17.033 6.262-24.458 6.679-5.351 16.446-7.87 24.831-6.288 17.113 3.228 23.117 20.872 27.303 38.718 5.5 23.444.627 57.492-25.57 92.851\" stroke=\"url(#a)\" stroke-width=\"2\" stroke-linecap=\"round\"/><g filter=\"url(#b)\" fill=\"#FFD703\"><path d=\"M93.14 229.713c-1.113 4.919-1.08 6.019 2.718 6.321l3.505-13.822c-5.532 4.003-5.211 3.033-6.222 7.501Z\"/><path d=\"M100.03 236.4c-3.21 3.626-8.534 4.863-11.892 2.763l12.824-16.553c3.359 2.1-3.237 9.05-.932 13.79Zm-15.914 8.651c-1.686 1.687-1.366 4.148.717 5.498 2.082 1.35 4.734.465 6.421-1.221l-7.138-4.277Z\"/><path d=\"M84.082 245.112c1.6-1.703 4.612-2.046 6.726-.766 2.114 1.28 2.027 3.296.426 4.999l-7.152-4.233Z\"/><path d=\"M96.171 242.729c3.774-4.115 6.277-7.997 2.368-10.511l-13.665 14.903c3.91 2.515 4.973-3.846 11.297-4.392Z\"/><path d=\"M99.364 243.713c5.701-3.29 4.612-4.749 8.981-9.418l-22.204 13.008c2.21 2.816 4.724-3.398 13.223-3.59Z\"/><path d=\"M95.284 240.042c5.699-3.285 3.685-6.09 13.685-5.572l-9.996 6.559-12.019 6.141c-.555-.706 2.63-3.843 8.33-7.128Z\"/><path d=\"M87.562 233.559c4.843-2.5 5.207-3.558 9.933-1.214l-7.605 13.532c-4.727-2.344-5.769-7.859-2.328-12.318Z\"/><path d=\"M82.548 236.241c-.81-4.718 2.352-19.06 3.891-8.531l1.92 3.364 1.919 3.365-.453 5.179-.452 5.178c-4.35.928-6.015-3.836-6.825-8.555Zm6.972 16.908-4.07-4.089 5.175-1.733-1.105 5.822Z\"/></g><defs><linearGradient id=\"a\" x1=\"105.13\" y1=\"202.29\" x2=\"127.834\" y2=\"12.116\" gradientUnits=\"userSpaceOnUse\"><stop offset=\".002\" stop-color=\"#FFA977\"/><stop offset=\".5\" stop-color=\"#FF85DA\" stop-opacity=\".7\"/><stop offset=\"1\" stop-color=\"#7D77FF\" stop-opacity=\"0\"/></linearGradient><filter id=\"b\" x=\"56.356\" y=\"201.15\" width=\"78.673\" height=\"83.059\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"><feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/><feColorMatrix in=\"SourceAlpha\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/><feMorphology radius=\"3.939\" in=\"SourceAlpha\" result=\"effect1_dropShadow_2648_4851\"/><feOffset dy=\"5\"/><feGaussianBlur stdDeviation=\"15\"/><feColorMatrix values=\"0 0 0 0 0.641516 0 0 0 0 0.688214 0 0 0 0 0.104495 0 0 0 0.2 0\"/><feBlend mode=\"multiply\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_2648_4851\"/><feBlend in=\"SourceGraphic\" in2=\"effect1_dropShadow_2648_4851\" result=\"shape\"/></filter></defs></svg>',withExternalLayout:true})})]})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gb08IE0VK:{y:5550.899996948242},vqvAi04c7:{y:5570.899996948242}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:528,width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1a8ze3u-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ffOVdLseq:{variant:\"d9Ha79f5B\"},gb08IE0VK:{variant:\"sxp3c6tw0\"},vqvAi04c7:{variant:\"JsTVmmU96\"}},children:/*#__PURE__*/_jsx(CopilotFooter,{height:\"100%\",id:\"DgfXQW_R4\",layoutId:\"DgfXQW_R4\",style:{width:\"100%\"},variant:\"jHyul5ton\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-9lf5d { background: rgb(33, 10, 81); }`,\".framer-9lf5d.framer-ql30bb, .framer-9lf5d .framer-ql30bb { display: block; }\",\".framer-9lf5d.framer-1baj3rk { align-content: center; align-items: center; background-color: #210a51; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-9lf5d .framer-1fzlxhx-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\",\".framer-9lf5d .framer-uj4pne { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 100vh; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-9lf5d .framer-1dhx8dy { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100vh; justify-content: center; min-height: 100vh; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-9lf5d .framer-q01pt3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100vh; justify-content: center; left: 50%; overflow: visible; padding: 0px; position: absolute; top: -200px; transform: translateX(-50%); width: min-content; z-index: 1; }\",\".framer-9lf5d .framer-w6uo1k { aspect-ratio: 1.4711538461538463 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 870px); overflow: visible; position: relative; width: 1280px; z-index: 0; }\",\".framer-9lf5d .framer-1ggjsae { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100vh; justify-content: center; left: 49%; min-width: 1280px; overflow: visible; padding: 0px; position: absolute; top: -148px; transform: translateX(-50%); width: min-content; z-index: 1; }\",\".framer-9lf5d .framer-9drmld { background: linear-gradient(180deg, #000000 -31%, rgba(0, 0, 0, 0.14128) 85.87217171169014%, rgba(0, 0, 0, 0) 100%); flex: none; height: 623px; left: calc(51.40625000000002% - 1200px / 2); overflow: hidden; position: absolute; top: 28px; width: 1200px; z-index: 1; }\",\".framer-9lf5d .framer-1ogn27q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 30vh; justify-content: center; left: 49%; min-width: 1280px; overflow: visible; padding: 0px; position: absolute; top: -100px; transform: translateX(-50%); width: min-content; z-index: 2; }\",\".framer-9lf5d .framer-1s1vn2s { background: linear-gradient(180deg, #000000 -31%, rgba(0, 0, 0, 0.14128) 85.87217171169014%, rgba(0, 0, 0, 0) 100%); flex: none; height: 300px; left: calc(51.40625000000002% - 1200px / 2); opacity: 0.8; overflow: hidden; position: absolute; top: 28px; width: 1200px; z-index: 1; }\",\".framer-9lf5d .framer-1lnghg6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 18px; height: 100vh; justify-content: center; left: 50%; overflow: visible; padding: 0px; position: absolute; top: -50px; transform: translateX(-50%); width: min-content; z-index: 1; }\",\".framer-9lf5d .framer-15kdmhm, .framer-9lf5d .framer-1ob8tdr { -webkit-backdrop-filter: blur(100px); align-content: flex-start; align-items: flex-start; backdrop-filter: blur(100px); background-color: rgba(46, 41, 58, 0.8); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px -4px 40px 0px rgba(0, 0, 0, 0.25), 0px -2px 20px 0px rgba(0, 0, 0, 0.4000000059604645); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 12px; position: relative; width: 320px; }\",\".framer-9lf5d .framer-1m60i4a, .framer-9lf5d .framer-1nxohpp, .framer-9lf5d .framer-gkaaf4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 3px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-9lf5d .framer-1tjqfiy, .framer-9lf5d .framer-akm4j0, .framer-9lf5d .framer-19p8ufw { aspect-ratio: 1 / 1; border-bottom-left-radius: 70px; border-bottom-right-radius: 70px; border-top-left-radius: 70px; border-top-right-radius: 70px; flex: none; height: var(--framer-aspect-ratio-supported, 30px); position: relative; width: 30px; }\",\".framer-9lf5d .framer-39l7qj, .framer-9lf5d .framer-11s9wsk, .framer-9lf5d .framer-18c7jqf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-9lf5d .framer-fbn1mv, .framer-9lf5d .framer-qsfo3, .framer-9lf5d .framer-11qxd66 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 3px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-9lf5d .framer-1g4oqyt, .framer-9lf5d .framer-o29zm9, .framer-9lf5d .framer-1bwl09e, .framer-9lf5d .framer-15x9tjc, .framer-9lf5d .framer-1qk4hi4, .framer-9lf5d .framer-1nri91c, .framer-9lf5d .framer-1nb8ava, .framer-9lf5d .framer-te6c8t, .framer-9lf5d .framer-1ruhlwz, .framer-9lf5d .framer-lp9bmr, .framer-9lf5d .framer-sx54uh, .framer-9lf5d .framer-eyxyx9 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-9lf5d .framer-1tbx8h6, .framer-9lf5d .framer-iydrzl, .framer-9lf5d .framer-6ofwvo, .framer-9lf5d .framer-h6ww8l, .framer-9lf5d .framer-1efw3k7, .framer-9lf5d .framer-kjqts6 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-9lf5d .framer-5mb6ej { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 88px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 92%; }\",\".framer-9lf5d .framer-mc163b, .framer-9lf5d .framer-1r1vj4d { border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-9lf5d .framer-1wgp7o9 { flex: none; height: 158px; overflow: hidden; position: relative; width: 100%; }\",\".framer-9lf5d .framer-1f8hzzs { border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; flex: none; height: 164px; left: 0px; position: absolute; top: 0px; width: 100%; }\",\".framer-9lf5d .framer-1hh4rjn { -webkit-backdrop-filter: blur(100px); align-content: flex-start; align-items: flex-start; backdrop-filter: blur(100px); background-color: rgba(46, 41, 58, 0.8); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px -4px 40px 0px rgba(0, 0, 0, 0.25), 0px -2px 20px 0px rgba(0, 0, 0, 0.4000000059604645); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 12px; position: relative; width: 346px; z-index: 1; }\",\".framer-9lf5d .framer-qjh07n, .framer-9lf5d .framer-ylguj { flex: none; height: 12px; position: relative; width: 12px; }\",\".framer-9lf5d .framer-1qnlgxz { border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; flex: none; height: 190px; position: relative; width: 100%; }\",\".framer-9lf5d .framer-105v5xb { border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; flex: none; height: 164px; position: relative; width: 100%; }\",\".framer-9lf5d .framer-1frll6a { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 40vh; justify-content: center; left: calc(50.00000000000002% - 1200px / 2); overflow: visible; padding: 0px; position: absolute; width: 1200px; z-index: 1; }\",\".framer-9lf5d .framer-1h5nwra { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-end; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 50%; transform: translate(-50%, -50%); width: min-content; z-index: 10; }\",\".framer-9lf5d .framer-grs0jk { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; text-shadow: 0px 1px 10px rgba(0, 0, 0, 0.25); white-space: pre-wrap; width: 368px; word-break: break-word; word-wrap: break-word; }\",\".framer-9lf5d .framer-193h3gw { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; text-shadow: 0px 1px 10px rgba(0, 0, 0, 0.25); white-space: pre-wrap; width: 417px; word-break: break-word; word-wrap: break-word; }\",\".framer-9lf5d .framer-74mtl6 { flex: none; height: 43px; overflow: visible; position: relative; width: 43px; }\",\".framer-9lf5d .framer-1h44fbi { -webkit-filter: blur(82px); background-color: #422bce; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; filter: blur(82px); flex: none; height: 31px; left: calc(48.837209302325604% - 32px / 2); overflow: hidden; position: absolute; top: calc(48.837209302325604% - 31px / 2); width: 32px; will-change: var(--framer-will-change-override, transform); }\",\".framer-9lf5d .framer-1vhdkbl { -webkit-filter: blur(54px); background-color: #422bce; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; filter: blur(54px); flex: none; height: 31px; left: calc(48.837209302325604% - 32px / 2); overflow: hidden; position: absolute; top: calc(48.837209302325604% - 31px / 2); width: 32px; will-change: var(--framer-will-change-override, transform); }\",\".framer-9lf5d .framer-1c68ix0 { -webkit-filter: blur(32px); background-color: #422bce; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; filter: blur(32px); flex: none; height: 31px; left: calc(48.837209302325604% - 32px / 2); overflow: hidden; position: absolute; top: calc(48.837209302325604% - 31px / 2); width: 32px; will-change: var(--framer-will-change-override, transform); }\",\".framer-9lf5d .framer-12kqzek { -webkit-filter: blur(12px); background-color: #422bce; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; filter: blur(12px); flex: none; height: 31px; left: calc(48.837209302325604% - 32px / 2); overflow: hidden; position: absolute; top: calc(48.837209302325604% - 31px / 2); width: 32px; will-change: var(--framer-will-change-override, transform); }\",\".framer-9lf5d .framer-65q0zg { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 42px); left: 49%; position: absolute; text-decoration: none; top: 49%; transform: translate(-50%, -50%); width: 42px; }\",\".framer-9lf5d .framer-ypk9rp { 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: 80px 0px 120px 0px; position: relative; width: 100%; }\",\".framer-9lf5d .framer-13g7ipo { flex: none; height: 576px; left: 480px; overflow: visible; position: absolute; right: 137px; top: -240px; }\",\".framer-9lf5d .framer-1f3oqsc { aspect-ratio: 0.9910313901345291 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 446px); position: absolute; right: 0px; top: 0px; width: 442px; }\",\".framer-9lf5d .framer-gq6hix { flex: none; height: 356px; left: 0px; overflow: visible; position: absolute; right: 0px; top: 40px; z-index: 0; }\",\".framer-9lf5d .framer-1c2ty94 { flex: none; height: 340px; left: 288px; overflow: visible; position: absolute; right: -158px; top: calc(153.08988764044946% - 340px / 2); z-index: 1; }\",\".framer-9lf5d .framer-1ib2ctp { flex: none; height: 308px; left: 109px; overflow: hidden; position: absolute; right: 54px; top: 363px; z-index: 1; }\",\".framer-9lf5d .framer-1ovc2q5, .framer-9lf5d .framer-1707u1d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 540px; overflow: hidden; padding: 0px 30px 40px 30px; position: relative; width: 100%; z-index: 7; }\",\".framer-9lf5d .framer-adybk2 { --framer-paragraph-spacing: 0px; --framer-text-wrap: balance; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-9lf5d .framer-khyfjh { flex: none; height: 549px; overflow: visible; position: relative; width: 301px; z-index: 5; }\",\".framer-9lf5d .framer-70x566-container { aspect-ratio: 0.5017035775127768 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 500px); left: 25px; position: absolute; right: 25px; top: 25px; }\",\".framer-9lf5d .framer-18xdini { aspect-ratio: 0.5472061657032755 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 548px); left: 0px; overflow: visible; position: absolute; right: 1px; top: 0px; }\",\".framer-9lf5d .framer-ti6r29 { background-color: rgba(255, 255, 255, 0.01); border-bottom-left-radius: 44px; border-bottom-right-radius: 44px; border-top-left-radius: 44px; border-top-right-radius: 44px; box-shadow: 0px 0.6021873017743928px 1.8065619053231785px 0px rgba(0, 0, 0, 0.02), 0px 2.288533303243457px 6.8655999097303715px 0px rgba(0, 0, 0, 0.05721), 0px 10px 30px 0px rgba(0, 0, 0, 0.25), 0px 0px 0px 0px rgba(0, 0, 0, 0.03018), 0px 0px 0px 0px rgba(0, 0, 0, 0.25); flex: none; height: 512px; left: calc(50.00000000000002% - 264px / 2); overflow: hidden; position: absolute; top: calc(50.18248175182484% - 512px / 2); width: 264px; will-change: var(--framer-will-change-override, transform); z-index: -1; }\",\".framer-9lf5d .framer-1ggejrd { bottom: -172px; flex: none; height: 480px; left: -84px; overflow: visible; position: absolute; width: 314px; }\",\".framer-9lf5d .framer-1bmaalk { flex: none; height: 458px; left: 34px; position: absolute; right: 14px; top: calc(45.83333333333336% - 458px / 2); z-index: 1; }\",\".framer-9lf5d .framer-1j7lucg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 5; }\",\".framer-9lf5d .framer-4carep { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 20px 0px; position: relative; width: 1px; }\",\".framer-9lf5d .framer-1mfet6x { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 400px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-9lf5d .framer-ctulvr { 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: 20px 0px 0px 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-9lf5d .framer-1i7lgng { flex: none; height: 82px; overflow: hidden; position: relative; width: 245px; }\",\".framer-9lf5d .framer-m9wf0f { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-9lf5d .framer-dmi2lz-container, .framer-9lf5d .framer-w336q4-container, .framer-9lf5d .framer-1ojhiyk-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-9lf5d .framer-1rbjl9w { align-content: center; align-items: center; background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 48.74894425675676%); 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-9lf5d .framer-13z464j { 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: 80px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-9lf5d .framer-16lp4bf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px 0px 80px 0px; position: relative; width: 100%; z-index: 3; }\",\".framer-9lf5d .framer-1rpmu6e { --framer-paragraph-spacing: 16px; --framer-text-wrap: balance; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-9lf5d .framer-16kpy7h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1160px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-9lf5d .framer-3zixwk { flex: none; height: 87px; left: calc(58.61182519280208% - 99px / 2); position: absolute; top: calc(52.03761755485896% - 87px / 2); width: 99px; z-index: 1; }\",\".framer-9lf5d .framer-130jn2i, .framer-9lf5d .framer-2q97p9 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 319px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-9lf5d .framer-xk9487 { -webkit-filter: blur(100px); background-color: #4c67ff; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; filter: blur(100px); flex: none; height: 248px; left: calc(50.31766200762391% - 220px / 2); position: absolute; top: 6px; width: 220px; z-index: 0; }\",\".framer-9lf5d .framer-15yp3li { --border-bottom-width: 2px; --border-color: #ffffff; --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; align-content: flex-start; align-items: flex-start; background-color: #1f192d; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; left: 50%; overflow: visible; padding: 16px; position: absolute; top: 4px; transform: translateX(-50%); width: 348px; z-index: 1; }\",\".framer-9lf5d .framer-1iuaz09 { flex: none; height: 75px; position: relative; width: 79px; }\",\".framer-9lf5d .framer-x2ytz2 { flex: none; height: 73px; position: relative; width: 227px; }\",\".framer-9lf5d .framer-1qcncvj { align-content: center; align-items: center; bottom: 7px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 1px; height: min-content; justify-content: center; left: 0px; min-height: 184px; overflow: visible; padding: 0px; position: absolute; right: 0px; z-index: 10; }\",\".framer-9lf5d .framer-1s989ji { bottom: 146px; flex: none; left: -31px; overflow: visible; position: absolute; right: 139px; top: -21px; }\",\".framer-9lf5d .framer-yql1mo { --border-bottom-width: 2px; --border-color: #ffffff; --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; align-content: center; align-items: center; background-color: #30d158; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; box-shadow: 0px 2px 50px 0px rgba(0, 0, 0, 0.2), 0px 2px 16px 0px rgba(0, 0, 0, 0.10000000149011612), 0px 0px 30px 0px rgba(0, 0, 0, 0.10000000149011612); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; left: 50%; overflow: visible; padding: 10px 16px 10px 16px; position: absolute; top: 51%; transform: translate(-50%, -50%); width: min-content; z-index: 0; }\",\".framer-9lf5d .framer-qk2h6o, .framer-9lf5d .framer-14ivcpy { --framer-paragraph-spacing: 7.474349498748779px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-9lf5d .framer-owt9lj { bottom: 108px; flex: none; left: 47px; overflow: visible; position: absolute; right: 115px; top: 36px; z-index: 1; }\",\".framer-9lf5d .framer-6ofnrr { --border-bottom-width: 2px; --border-color: #ffffff; --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; align-content: center; align-items: center; background-color: #ff9f0a; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; box-shadow: 0px 2px 50px 0px rgba(0, 0, 0, 0.2), 0px 2px 16px 0px rgba(0, 0, 0, 0.10000000149011612), 0px 0px 30px 0px rgba(0, 0, 0, 0.10000000149011612); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; left: 71%; overflow: visible; padding: 10px 16px 10px 16px; position: absolute; top: 35%; transform: translate(-50%, -50%); width: min-content; }\",\".framer-9lf5d .framer-1d0fvh6 { bottom: 138px; flex: none; left: 117px; overflow: visible; position: absolute; right: -30px; top: -14px; z-index: 1; }\",\".framer-9lf5d .framer-1e6vl26 { flex: none; height: 64px; left: calc(67.2354948805461% - 172px / 2); overflow: hidden; position: absolute; top: calc(51.66666666666669% - 64px / 2); width: 172px; }\",\".framer-9lf5d .framer-up3x3b { -webkit-filter: drop-shadow(0px -1px 5px rgba(115, 48, 0, 0.28)); filter: drop-shadow(0px -1px 5px rgba(115, 48, 0, 0.28)); flex: none; height: 63px; left: 0px; position: absolute; right: 0px; top: calc(50.00000000000002% - 63px / 2); }\",\".framer-9lf5d .framer-ecsdba { --framer-paragraph-spacing: 7.474349498748779px; flex: none; height: auto; left: 21%; position: absolute; top: 55%; transform: translate(-50%, -50%); white-space: pre-wrap; width: 23px; word-break: break-word; word-wrap: break-word; }\",\".framer-9lf5d .framer-149mg6l { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 55%; position: absolute; top: 48%; transform: translate(-50%, -50%); white-space: pre-wrap; width: 85px; word-break: break-word; word-wrap: break-word; }\",\".framer-9lf5d .framer-1fjzg50 { --border-bottom-width: 3px; --border-color: rgba(245, 240, 255, 0.2); --border-left-width: 3px; --border-right-width: 3px; --border-style: dashed; --border-top-width: 3px; border-bottom-left-radius: 5000px; border-bottom-right-radius: 5000px; border-top-left-radius: 5000px; border-top-right-radius: 5000px; flex: none; height: 280px; left: calc(48.84615384615387% - 280px / 2); opacity: 0.5; position: absolute; top: calc(31.132075471698133% - 280px / 2); width: 280px; z-index: 0; }\",\".framer-9lf5d .framer-1w88f0g { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 29px; height: min-content; justify-content: center; min-height: 319px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-9lf5d .framer-1kffvbc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; left: 0px; overflow: visible; padding: 0px; position: absolute; right: 0px; top: 50px; z-index: 1; }\",\".framer-9lf5d .framer-1a6rp8, .framer-9lf5d .framer-hc1iv9 { --border-bottom-width: 2px; --border-color: #ffffff; --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; align-content: flex-start; align-items: flex-start; background-color: #5a28e9; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 2px 50px 0px rgba(0, 0, 0, 0.2), 0px 2px 16px 0px rgba(0, 0, 0, 0.10000000149011612), 0px 0px 30px 0px rgba(0, 0, 0, 0.10000000149011612); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 12px 16px 12px 16px; position: relative; width: min-content; }\",\".framer-9lf5d .framer-y3azas, .framer-9lf5d .framer-1ah0m5z { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-9lf5d .framer-1vy2gld { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 233px; word-break: break-word; word-wrap: break-word; }\",\".framer-9lf5d .framer-64pq5z { -webkit-filter: blur(100px); background-color: #4c67ff; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; filter: blur(100px); flex: none; height: 187px; left: calc(49.210526315789494% - 166px / 2); position: absolute; top: calc(65.98984771573606% - 187px / 2); width: 166px; z-index: 0; }\",\".framer-9lf5d .framer-hxw2o0 { bottom: 95px; flex: none; height: 58px; left: 151px; overflow: hidden; position: absolute; width: 39px; z-index: 9; }\",\".framer-9lf5d .framer-1dj7qwy { flex: none; height: 43px; left: 0px; position: absolute; top: 1px; width: 38px; }\",\".framer-9lf5d .framer-yio1zb { aspect-ratio: 3.2208588957055215 / 1; bottom: 65px; flex: none; height: var(--framer-aspect-ratio-supported, 132px); left: -42px; position: absolute; right: -5px; z-index: 1; }\",\".framer-9lf5d .framer-66cstu { aspect-ratio: 0.7821350762527233 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 459px); left: 51%; position: absolute; top: -149px; transform: translateX(-50%); width: 359px; z-index: 0; }\",\".framer-9lf5d .framer-omj8gr { --border-bottom-width: 3px; --border-color: rgba(245, 240, 255, 0.2); --border-left-width: 3px; --border-right-width: 3px; --border-style: dashed; --border-top-width: 3px; border-bottom-left-radius: 5000px; border-bottom-right-radius: 5000px; border-top-left-radius: 5000px; border-top-right-radius: 5000px; flex: none; height: 205px; left: calc(46.52956298200516% - 205px / 2); opacity: 0.5; position: absolute; top: 10px; width: 205px; z-index: 0; }\",\".framer-9lf5d .framer-rw4npv { flex: none; height: 87px; left: 288px; position: absolute; top: -64px; width: 99px; z-index: 1; }\",\".framer-9lf5d .framer-1f0wj3k { bottom: -40px; flex: none; left: -50px; overflow: visible; position: absolute; right: -50px; top: -122px; z-index: 1; }\",\".framer-9lf5d .framer-1xh5csj { flex: none; height: 297px; left: calc(52.1829521829522% - 377px / 2); position: absolute; top: calc(49.688149688149714% - 297px / 2); width: 377px; }\",\".framer-9lf5d .framer-1jrhps8 { -webkit-filter: blur(100px); background-color: #4c67ff; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; filter: blur(100px); flex: none; height: 248px; left: 103px; position: absolute; top: 83px; width: 220px; z-index: 0; }\",\".framer-9lf5d .framer-15fqi1x { bottom: 35px; flex: none; height: 259px; left: 11px; overflow: visible; position: absolute; width: 300px; z-index: 1; }\",\".framer-9lf5d .framer-uuxpmt { flex: none; height: 255px; left: 186px; overflow: visible; position: absolute; top: calc(47.193347193347215% - 255px / 2); width: 300px; z-index: 1; }\",\".framer-9lf5d .framer-14ia3in { flex: none; height: 255px; left: 22px; overflow: visible; position: absolute; top: 31px; width: 300px; z-index: 1; }\",\".framer-9lf5d .framer-11tbol2 { --border-bottom-width: 3px; --border-color: rgba(245, 240, 255, 0.2); --border-left-width: 3px; --border-right-width: 3px; --border-style: dashed; --border-top-width: 3px; border-bottom-left-radius: 5000px; border-bottom-right-radius: 5000px; border-top-left-radius: 5000px; border-top-right-radius: 5000px; flex: none; height: 339px; left: calc(46.01542416452445% - 339px / 2); opacity: 0.5; position: absolute; top: -40px; width: 339px; z-index: 0; }\",\".framer-9lf5d .framer-cazrpo { aspect-ratio: 1.7777777777777777 / 1; bottom: 33px; flex: none; height: var(--framer-aspect-ratio-supported, 633px); left: 49%; mix-blend-mode: screen; overflow: visible; position: absolute; transform: translateX(-50%); width: 1124px; z-index: 0; }\",\".framer-9lf5d .framer-4n5t3f { aspect-ratio: 1.7777777777777777 / 1; bottom: 33px; flex: none; height: var(--framer-aspect-ratio-supported, 633px); left: 49%; mix-blend-mode: screen; opacity: 0.5; overflow: visible; position: absolute; transform: translateX(-50%); width: 1124px; z-index: 0; }\",\".framer-9lf5d .framer-yo8a17 { 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-9lf5d .framer-dm2b00 { align-content: center; align-items: center; background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 150px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-9lf5d .framer-rhlpnf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 960px; overflow: visible; padding: 0px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-9lf5d .framer-n8bula { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 290px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-9lf5d .framer-1963jpm { border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; box-shadow: 0px 0.6021873017743928px 0.6021873017743928px -0.6666666666666666px rgba(0, 0, 0, 0.1), 0px 2.288533303243457px 2.288533303243457px -1.3333333333333333px rgba(0, 0, 0, 0.11144), 0px 10px 10px -2px rgba(0, 0, 0, 0.15); flex: none; height: 290px; position: relative; width: 290px; }\",\".framer-9lf5d .framer-h9q9fx { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: auto; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-9lf5d .framer-dw05hu { 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-9lf5d .framer-33f7br-container { flex: none; height: auto; position: relative; width: auto; z-index: 1; }\",\".framer-9lf5d .framer-2i2pft { align-content: center; align-items: center; background: radial-gradient(64% 71% at 50% 77.2%, rgba(66, 43, 206, 0.6) 0%, rgba(65, 43, 207, 0) 100%); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-9lf5d .framer-f31rzj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 27px; height: min-content; justify-content: center; max-width: 1100px; overflow: visible; padding: 170px 0px 0px 0px; position: relative; width: 100%; z-index: 4; }\",\".framer-9lf5d .framer-13vtu1f { aspect-ratio: 1 / 1; border-bottom-left-radius: 23px; border-bottom-right-radius: 23px; border-top-left-radius: 23px; border-top-right-radius: 23px; box-shadow: 0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.18), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.15889), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.0625), 0px 0.6021873017743928px 3.010936508871964px -1.1666666666666665px rgba(0, 0, 0, 0.16898), 0px 2.288533303243457px 11.442666516217285px -2.333333333333333px rgba(0, 0, 0, 0.15211), 0px 10px 50px -3.5px rgba(0, 0, 0, 0.075); flex: none; height: var(--framer-aspect-ratio-supported, 104px); overflow: hidden; position: relative; width: 104px; will-change: var(--framer-will-change-override, transform); }\",\".framer-9lf5d .framer-4mqpjf { flex: none; height: 87px; left: calc(49.50085307176859% - 77px / 2); position: absolute; top: calc(49.60657363881567% - 87px / 2); width: 77px; }\",\".framer-9lf5d .framer-ddrsvs { flex: none; height: 85px; left: 14px; position: absolute; top: 9px; width: 75px; }\",\".framer-9lf5d .framer-ak1bpn { 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 15px 0px 15px; position: relative; width: 100%; }\",\".framer-9lf5d .framer-10i47t9 { flex: none; height: 82px; overflow: visible; position: relative; width: 245px; }\",\".framer-9lf5d .framer-ppib19 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 82px; justify-content: center; left: 0px; overflow: visible; padding: 0px; position: absolute; text-decoration: none; top: 0px; width: 100%; }\",\".framer-9lf5d .framer-1ra55ph { flex: none; height: 82px; left: calc(49.79591836734696% - 245px / 2); position: absolute; top: calc(50.00000000000002% - 82px / 2); width: 245px; z-index: 1; }\",\".framer-9lf5d .framer-j8u9z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-9lf5d .framer-131fs98 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; min-height: 21px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-9lf5d .framer-482duo { flex: none; height: 432px; left: 799px; overflow: visible; position: absolute; right: 53px; top: -155px; }\",\".framer-9lf5d .framer-1ofw18l { bottom: 74px; flex: none; position: absolute; right: 0px; top: 74px; width: 197px; }\",\".framer-9lf5d .framer-1a8ze3u-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-9lf5d.framer-1baj3rk, .framer-9lf5d .framer-uj4pne, .framer-9lf5d .framer-1dhx8dy, .framer-9lf5d .framer-q01pt3, .framer-9lf5d .framer-1ggjsae, .framer-9lf5d .framer-1ogn27q, .framer-9lf5d .framer-1lnghg6, .framer-9lf5d .framer-15kdmhm, .framer-9lf5d .framer-1m60i4a, .framer-9lf5d .framer-39l7qj, .framer-9lf5d .framer-fbn1mv, .framer-9lf5d .framer-5mb6ej, .framer-9lf5d .framer-1hh4rjn, .framer-9lf5d .framer-1nxohpp, .framer-9lf5d .framer-11s9wsk, .framer-9lf5d .framer-qsfo3, .framer-9lf5d .framer-1ob8tdr, .framer-9lf5d .framer-gkaaf4, .framer-9lf5d .framer-18c7jqf, .framer-9lf5d .framer-11qxd66, .framer-9lf5d .framer-1frll6a, .framer-9lf5d .framer-1h5nwra, .framer-9lf5d .framer-ypk9rp, .framer-9lf5d .framer-1ovc2q5, .framer-9lf5d .framer-1j7lucg, .framer-9lf5d .framer-4carep, .framer-9lf5d .framer-ctulvr, .framer-9lf5d .framer-1rbjl9w, .framer-9lf5d .framer-13z464j, .framer-9lf5d .framer-16lp4bf, .framer-9lf5d .framer-1707u1d, .framer-9lf5d .framer-16kpy7h, .framer-9lf5d .framer-130jn2i, .framer-9lf5d .framer-15yp3li, .framer-9lf5d .framer-1qcncvj, .framer-9lf5d .framer-yql1mo, .framer-9lf5d .framer-6ofnrr, .framer-9lf5d .framer-1w88f0g, .framer-9lf5d .framer-1kffvbc, .framer-9lf5d .framer-1a6rp8, .framer-9lf5d .framer-y3azas, .framer-9lf5d .framer-hc1iv9, .framer-9lf5d .framer-1ah0m5z, .framer-9lf5d .framer-2q97p9, .framer-9lf5d .framer-yo8a17, .framer-9lf5d .framer-dm2b00, .framer-9lf5d .framer-rhlpnf, .framer-9lf5d .framer-n8bula, .framer-9lf5d .framer-h9q9fx, .framer-9lf5d .framer-dw05hu, .framer-9lf5d .framer-2i2pft, .framer-9lf5d .framer-f31rzj, .framer-9lf5d .framer-ak1bpn, .framer-9lf5d .framer-ppib19, .framer-9lf5d .framer-j8u9z, .framer-9lf5d .framer-131fs98 { gap: 0px; } .framer-9lf5d.framer-1baj3rk > *, .framer-9lf5d .framer-1dhx8dy > *, .framer-9lf5d .framer-39l7qj > *, .framer-9lf5d .framer-11s9wsk > *, .framer-9lf5d .framer-18c7jqf > *, .framer-9lf5d .framer-1kffvbc > *, .framer-9lf5d .framer-1a6rp8 > *, .framer-9lf5d .framer-hc1iv9 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-9lf5d.framer-1baj3rk > :first-child, .framer-9lf5d .framer-1dhx8dy > :first-child, .framer-9lf5d .framer-15kdmhm > :first-child, .framer-9lf5d .framer-39l7qj > :first-child, .framer-9lf5d .framer-1hh4rjn > :first-child, .framer-9lf5d .framer-11s9wsk > :first-child, .framer-9lf5d .framer-1ob8tdr > :first-child, .framer-9lf5d .framer-18c7jqf > :first-child, .framer-9lf5d .framer-1frll6a > :first-child, .framer-9lf5d .framer-1h5nwra > :first-child, .framer-9lf5d .framer-ypk9rp > :first-child, .framer-9lf5d .framer-1ovc2q5 > :first-child, .framer-9lf5d .framer-4carep > :first-child, .framer-9lf5d .framer-1rbjl9w > :first-child, .framer-9lf5d .framer-13z464j > :first-child, .framer-9lf5d .framer-16lp4bf > :first-child, .framer-9lf5d .framer-1707u1d > :first-child, .framer-9lf5d .framer-130jn2i > :first-child, .framer-9lf5d .framer-1qcncvj > :first-child, .framer-9lf5d .framer-1w88f0g > :first-child, .framer-9lf5d .framer-1kffvbc > :first-child, .framer-9lf5d .framer-1a6rp8 > :first-child, .framer-9lf5d .framer-y3azas > :first-child, .framer-9lf5d .framer-hc1iv9 > :first-child, .framer-9lf5d .framer-1ah0m5z > :first-child, .framer-9lf5d .framer-2q97p9 > :first-child, .framer-9lf5d .framer-yo8a17 > :first-child, .framer-9lf5d .framer-dm2b00 > :first-child, .framer-9lf5d .framer-h9q9fx > :first-child, .framer-9lf5d .framer-dw05hu > :first-child, .framer-9lf5d .framer-f31rzj > :first-child, .framer-9lf5d .framer-ak1bpn > :first-child, .framer-9lf5d .framer-ppib19 > :first-child, .framer-9lf5d .framer-131fs98 > :first-child { margin-top: 0px; } .framer-9lf5d.framer-1baj3rk > :last-child, .framer-9lf5d .framer-1dhx8dy > :last-child, .framer-9lf5d .framer-15kdmhm > :last-child, .framer-9lf5d .framer-39l7qj > :last-child, .framer-9lf5d .framer-1hh4rjn > :last-child, .framer-9lf5d .framer-11s9wsk > :last-child, .framer-9lf5d .framer-1ob8tdr > :last-child, .framer-9lf5d .framer-18c7jqf > :last-child, .framer-9lf5d .framer-1frll6a > :last-child, .framer-9lf5d .framer-1h5nwra > :last-child, .framer-9lf5d .framer-ypk9rp > :last-child, .framer-9lf5d .framer-1ovc2q5 > :last-child, .framer-9lf5d .framer-4carep > :last-child, .framer-9lf5d .framer-1rbjl9w > :last-child, .framer-9lf5d .framer-13z464j > :last-child, .framer-9lf5d .framer-16lp4bf > :last-child, .framer-9lf5d .framer-1707u1d > :last-child, .framer-9lf5d .framer-130jn2i > :last-child, .framer-9lf5d .framer-1qcncvj > :last-child, .framer-9lf5d .framer-1w88f0g > :last-child, .framer-9lf5d .framer-1kffvbc > :last-child, .framer-9lf5d .framer-1a6rp8 > :last-child, .framer-9lf5d .framer-y3azas > :last-child, .framer-9lf5d .framer-hc1iv9 > :last-child, .framer-9lf5d .framer-1ah0m5z > :last-child, .framer-9lf5d .framer-2q97p9 > :last-child, .framer-9lf5d .framer-yo8a17 > :last-child, .framer-9lf5d .framer-dm2b00 > :last-child, .framer-9lf5d .framer-h9q9fx > :last-child, .framer-9lf5d .framer-dw05hu > :last-child, .framer-9lf5d .framer-f31rzj > :last-child, .framer-9lf5d .framer-ak1bpn > :last-child, .framer-9lf5d .framer-ppib19 > :last-child, .framer-9lf5d .framer-131fs98 > :last-child { margin-bottom: 0px; } .framer-9lf5d .framer-uj4pne > *, .framer-9lf5d .framer-q01pt3 > *, .framer-9lf5d .framer-1ggjsae > *, .framer-9lf5d .framer-1ogn27q > *, .framer-9lf5d .framer-5mb6ej > *, .framer-9lf5d .framer-ctulvr > *, .framer-9lf5d .framer-16kpy7h > *, .framer-9lf5d .framer-15yp3li > *, .framer-9lf5d .framer-n8bula > *, .framer-9lf5d .framer-2i2pft > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-9lf5d .framer-uj4pne > :first-child, .framer-9lf5d .framer-q01pt3 > :first-child, .framer-9lf5d .framer-1ggjsae > :first-child, .framer-9lf5d .framer-1ogn27q > :first-child, .framer-9lf5d .framer-1lnghg6 > :first-child, .framer-9lf5d .framer-1m60i4a > :first-child, .framer-9lf5d .framer-fbn1mv > :first-child, .framer-9lf5d .framer-5mb6ej > :first-child, .framer-9lf5d .framer-1nxohpp > :first-child, .framer-9lf5d .framer-qsfo3 > :first-child, .framer-9lf5d .framer-gkaaf4 > :first-child, .framer-9lf5d .framer-11qxd66 > :first-child, .framer-9lf5d .framer-1j7lucg > :first-child, .framer-9lf5d .framer-ctulvr > :first-child, .framer-9lf5d .framer-16kpy7h > :first-child, .framer-9lf5d .framer-15yp3li > :first-child, .framer-9lf5d .framer-yql1mo > :first-child, .framer-9lf5d .framer-6ofnrr > :first-child, .framer-9lf5d .framer-rhlpnf > :first-child, .framer-9lf5d .framer-n8bula > :first-child, .framer-9lf5d .framer-2i2pft > :first-child, .framer-9lf5d .framer-j8u9z > :first-child { margin-left: 0px; } .framer-9lf5d .framer-uj4pne > :last-child, .framer-9lf5d .framer-q01pt3 > :last-child, .framer-9lf5d .framer-1ggjsae > :last-child, .framer-9lf5d .framer-1ogn27q > :last-child, .framer-9lf5d .framer-1lnghg6 > :last-child, .framer-9lf5d .framer-1m60i4a > :last-child, .framer-9lf5d .framer-fbn1mv > :last-child, .framer-9lf5d .framer-5mb6ej > :last-child, .framer-9lf5d .framer-1nxohpp > :last-child, .framer-9lf5d .framer-qsfo3 > :last-child, .framer-9lf5d .framer-gkaaf4 > :last-child, .framer-9lf5d .framer-11qxd66 > :last-child, .framer-9lf5d .framer-1j7lucg > :last-child, .framer-9lf5d .framer-ctulvr > :last-child, .framer-9lf5d .framer-16kpy7h > :last-child, .framer-9lf5d .framer-15yp3li > :last-child, .framer-9lf5d .framer-yql1mo > :last-child, .framer-9lf5d .framer-6ofnrr > :last-child, .framer-9lf5d .framer-rhlpnf > :last-child, .framer-9lf5d .framer-n8bula > :last-child, .framer-9lf5d .framer-2i2pft > :last-child, .framer-9lf5d .framer-j8u9z > :last-child { margin-right: 0px; } .framer-9lf5d .framer-1lnghg6 > * { margin: 0px; margin-left: calc(18px / 2); margin-right: calc(18px / 2); } .framer-9lf5d .framer-15kdmhm > *, .framer-9lf5d .framer-1hh4rjn > *, .framer-9lf5d .framer-1ob8tdr > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-9lf5d .framer-1m60i4a > *, .framer-9lf5d .framer-fbn1mv > *, .framer-9lf5d .framer-1nxohpp > *, .framer-9lf5d .framer-qsfo3 > *, .framer-9lf5d .framer-gkaaf4 > *, .framer-9lf5d .framer-11qxd66 > * { margin: 0px; margin-left: calc(3px / 2); margin-right: calc(3px / 2); } .framer-9lf5d .framer-1frll6a > *, .framer-9lf5d .framer-ypk9rp > *, .framer-9lf5d .framer-1ovc2q5 > *, .framer-9lf5d .framer-1rbjl9w > *, .framer-9lf5d .framer-13z464j > *, .framer-9lf5d .framer-1707u1d > *, .framer-9lf5d .framer-130jn2i > *, .framer-9lf5d .framer-2q97p9 > *, .framer-9lf5d .framer-yo8a17 > *, .framer-9lf5d .framer-dm2b00 > *, .framer-9lf5d .framer-dw05hu > *, .framer-9lf5d .framer-ak1bpn > *, .framer-9lf5d .framer-ppib19 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-9lf5d .framer-1h5nwra > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-9lf5d .framer-1j7lucg > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-9lf5d .framer-4carep > *, .framer-9lf5d .framer-131fs98 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-9lf5d .framer-16lp4bf > *, .framer-9lf5d .framer-h9q9fx > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-9lf5d .framer-1qcncvj > * { margin: 0px; margin-bottom: calc(1px / 2); margin-top: calc(1px / 2); } .framer-9lf5d .framer-yql1mo > *, .framer-9lf5d .framer-6ofnrr > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-9lf5d .framer-1w88f0g > * { margin: 0px; margin-bottom: calc(29px / 2); margin-top: calc(29px / 2); } .framer-9lf5d .framer-y3azas > *, .framer-9lf5d .framer-1ah0m5z > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-9lf5d .framer-rhlpnf > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-9lf5d .framer-f31rzj > * { margin: 0px; margin-bottom: calc(27px / 2); margin-top: calc(27px / 2); } .framer-9lf5d .framer-j8u9z > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } }\",`@media (min-width: 810px) and (max-width: 1199px) { .${metadata.bodyClassName}-framer-9lf5d { background: rgb(33, 10, 81); } .framer-9lf5d.framer-1baj3rk { width: 810px; } .framer-9lf5d .framer-1lnghg6 { gap: 0px; left: calc(50.00000000000002% - 100% / 2); transform: unset; width: 100%; } .framer-9lf5d .framer-15kdmhm { order: 0; width: 265px; } .framer-9lf5d .framer-1wgp7o9 { height: 135px; } .framer-9lf5d .framer-1hh4rjn { order: 1; width: 276px; z-index: 0; } .framer-9lf5d .framer-1qnlgxz { height: 156px; } .framer-9lf5d .framer-1ob8tdr { order: 2; width: 275px; } .framer-9lf5d .framer-105v5xb { height: 145px; } .framer-9lf5d .framer-1f3oqsc { right: -70px; top: -20px; } .framer-9lf5d .framer-gq6hix { left: -130px; right: 130px; top: 50px; } .framer-9lf5d .framer-1c2ty94 { bottom: -389px; height: 420px; left: 228px; right: -429px; top: unset; } .framer-9lf5d .framer-1ib2ctp { height: 385px; left: 208px; right: -103px; top: 252px; } .framer-9lf5d .framer-1rbjl9w { background: linear-gradient(180deg, #0f0030 0%, rgb(42, 0, 117) 100%); } .framer-9lf5d .framer-16lp4bf { height: 1000px; justify-content: flex-start; padding: 0px 16px 200px 16px; } .framer-9lf5d .framer-16kpy7h { gap: 0px; min-height: 319px; } .framer-9lf5d .framer-3zixwk { order: 0; } .framer-9lf5d .framer-130jn2i { flex: none; left: 35%; min-height: 318px; order: 1; position: absolute; top: 53%; transform: translate(-50%, -50%); width: 260px; z-index: 5; } .framer-9lf5d .framer-xk9487 { height: 192px; left: calc(50.38461538461541% - 220px / 2); } .framer-9lf5d .framer-15yp3li { left: -44px; right: -44px; top: -6px; transform: unset; width: unset; } .framer-9lf5d .framer-1qcncvj { bottom: unset; left: 54%; right: unset; top: 69%; transform: translate(-50%, -50%); width: 260px; } .framer-9lf5d .framer-yql1mo { left: 90%; top: 17%; } .framer-9lf5d .framer-6ofnrr { left: 81%; top: -12%; } .framer-9lf5d .framer-1d0fvh6 { bottom: 80px; left: 68px; right: 19px; top: 44px; z-index: 10; } .framer-9lf5d .framer-1w88f0g { flex: none; left: 77%; min-height: 318px; order: 2; position: absolute; top: 97%; transform: translate(-50%, -50%); width: 778px; z-index: 1; } .framer-9lf5d .framer-1kffvbc { left: 48%; right: unset; top: 34%; transform: translate(-50%, -50%); width: min-content; } .framer-9lf5d .framer-1a6rp8, .framer-9lf5d .framer-hc1iv9 { z-index: 1; } .framer-9lf5d .framer-64pq5z { left: calc(44.905660377358515% - 209px / 2); width: 209px; } .framer-9lf5d .framer-hxw2o0 { bottom: unset; left: calc(47.49034749034751% - 40px / 2); top: calc(61.53846153846156% - 58px / 2); width: 40px; } .framer-9lf5d .framer-1dj7qwy { height: 36px; left: calc(45.00000000000002% - 32px / 2); top: calc(41.37931034482761% - 36px / 2); width: 32px; } .framer-9lf5d .framer-2q97p9 { flex: none; left: 43%; min-height: 319px; order: 3; position: absolute; top: 178%; transform: translate(-50%, -50%); width: 389px; z-index: 1; } .framer-9lf5d .framer-1jrhps8 { left: 83px; top: calc(53.374870197300126% - 248px / 2); } .framer-9lf5d .framer-h9q9fx { padding: 0px 16px 0px 16px; } .framer-9lf5d .framer-lp9bmr { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-9lf5d .framer-33f7br-container { width: 100%; } .framer-9lf5d .framer-482duo { left: 789px; right: 21px; } .framer-9lf5d .framer-1ofw18l { bottom: unset; height: 284px; right: -88px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-9lf5d .framer-1lnghg6, .framer-9lf5d .framer-16kpy7h { gap: 0px; } .framer-9lf5d .framer-1lnghg6 > *, .framer-9lf5d .framer-16kpy7h > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-9lf5d .framer-1lnghg6 > :first-child, .framer-9lf5d .framer-16kpy7h > :first-child { margin-left: 0px; } .framer-9lf5d .framer-1lnghg6 > :last-child, .framer-9lf5d .framer-16kpy7h > :last-child { margin-right: 0px; } }}`,`@media (min-width: 480px) and (max-width: 809px) { .${metadata.bodyClassName}-framer-9lf5d { background: rgb(33, 10, 81); } .framer-9lf5d.framer-1baj3rk { width: 480px; } .framer-9lf5d .framer-1dhx8dy { padding: 0px 0px 30px 0px; } .framer-9lf5d .framer-q01pt3, .framer-9lf5d .framer-1bwl09e, .framer-9lf5d .framer-1vy2gld { order: 0; } .framer-9lf5d .framer-1ggjsae { order: 2; } .framer-9lf5d .framer-1ogn27q, .framer-9lf5d .framer-qjh07n { order: 1; } .framer-9lf5d .framer-1lnghg6 { left: calc(50.00000000000002% - 100% / 2); order: 3; transform: unset; width: 100%; } .framer-9lf5d .framer-15kdmhm { left: 26%; position: absolute; top: 194px; transform: translateX(-50%); width: 272px; z-index: 2; } .framer-9lf5d .framer-1wgp7o9 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 115px; justify-content: center; padding: 0px; } .framer-9lf5d .framer-1f8hzzs { flex: 1 0 0px; height: 114px; left: unset; position: relative; top: unset; width: 1px; } .framer-9lf5d .framer-1hh4rjn { left: 52%; position: absolute; top: 319px; transform: translateX(-50%); width: 300px; z-index: 2; } .framer-9lf5d .framer-1qnlgxz, .framer-9lf5d .framer-105v5xb { height: 125px; } .framer-9lf5d .framer-1ob8tdr { left: 71%; position: absolute; top: 114px; transform: translateX(-50%); width: 300px; z-index: 1; } .framer-9lf5d .framer-1frll6a { order: 4; } .framer-9lf5d .framer-1f3oqsc { right: -70px; top: -40px; } .framer-9lf5d .framer-1c2ty94 { height: 387px; left: -11px; right: -339px; top: calc(156.4606741573034% - 387px / 2); } .framer-9lf5d .framer-1ib2ctp { height: 343px; left: -2px; right: -43px; top: 261px; } .framer-9lf5d .framer-16lp4bf { padding: 0px 16px 80px 16px; } .framer-9lf5d .framer-16kpy7h { flex-direction: column; gap: 50px; } .framer-9lf5d .framer-130jn2i, .framer-9lf5d .framer-1w88f0g, .framer-9lf5d .framer-2q97p9 { flex: none; width: 100%; } .framer-9lf5d .framer-1qcncvj { bottom: -5px; } .framer-9lf5d .framer-1s989ji { bottom: unset; height: 59px; left: calc(46.65178571428574% - 340px / 2); right: unset; top: calc(2.7173913043478484% - 59px / 2); width: 340px; } .framer-9lf5d .framer-yql1mo { z-index: 1; } .framer-9lf5d .framer-owt9lj { bottom: unset; height: 40px; left: calc(38.83928571428574% - 286px / 2); right: unset; top: calc(39.67391304347828% - 40px / 2); width: 286px; } .framer-9lf5d .framer-6ofnrr { left: 64%; } .framer-9lf5d .framer-1d0fvh6 { bottom: unset; height: 60px; left: calc(35.044642857142875% - 361px / 2); right: unset; top: calc(70.10869565217394% - 60px / 2); width: 361px; } .framer-9lf5d .framer-1kffvbc { left: 47%; min-height: 98px; order: 0; right: unset; top: 48%; transform: translate(-50%, -50%); width: 380px; } .framer-9lf5d .framer-1a6rp8 { left: 120px; position: absolute; top: 13px; z-index: 1; } .framer-9lf5d .framer-hc1iv9 { border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; left: 48%; position: absolute; top: -52px; transform: translateX(-50%); z-index: 0; } .framer-9lf5d .framer-64pq5z { left: calc(51.84210526315791% - 166px / 2); top: calc(14.285714285714308% - 187px / 2); } .framer-9lf5d .framer-hxw2o0 { bottom: unset; left: calc(47.76785714285717% - 39px / 2); order: 1; top: calc(63.42229199372059% - 58px / 2); z-index: 1; } .framer-9lf5d .framer-1dj7qwy { top: 0px; } .framer-9lf5d .framer-66cstu { aspect-ratio: unset; height: 459px; left: calc(51.33928571428573% - 359px / 2); order: 2; top: calc(43.95604395604398% - 459px / 2); transform: unset; } .framer-9lf5d .framer-1f0wj3k { bottom: unset; height: 481px; left: calc(50.00000000000002% - 549px / 2); right: unset; top: calc(49.607535321821054% - 481px / 2); width: 549px; } .framer-9lf5d .framer-1xh5csj { height: 335px; left: calc(50.27322404371587% - 377px / 2); top: calc(51.76715176715179% - 335px / 2); } .framer-9lf5d .framer-1jrhps8 { left: calc(46.08378870673955% - 220px / 2); top: calc(47.193347193347215% - 248px / 2); } .framer-9lf5d .framer-15fqi1x { bottom: 16px; left: 50px; } .framer-9lf5d .framer-uuxpmt { left: 217px; } .framer-9lf5d .framer-14ia3in { left: 32px; top: 39px; } .framer-9lf5d .framer-cazrpo, .framer-9lf5d .framer-4n5t3f { bottom: unset; height: var(--framer-aspect-ratio-supported, 804px); left: -425px; right: -524px; top: 51%; transform: translateY(-50%); width: unset; } .framer-9lf5d .framer-rhlpnf { flex-direction: column; padding: 0px 15px 0px 15px; } .framer-9lf5d .framer-n8bula { width: 100%; } .framer-9lf5d .framer-h9q9fx { align-content: center; align-items: center; align-self: unset; flex: none; height: min-content; padding: 0px 16px 0px 16px; width: 100%; } .framer-9lf5d .framer-lp9bmr { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-9lf5d .framer-13vtu1f { height: var(--framer-aspect-ratio-supported, 105px); } .framer-9lf5d .framer-j8u9z { flex-direction: column; } .framer-9lf5d .framer-482duo { left: unset; right: -319px; width: 348px; } .framer-9lf5d .framer-1ofw18l { bottom: unset; height: 284px; right: 230px; width: 196px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-9lf5d .framer-1wgp7o9, .framer-9lf5d .framer-16kpy7h, .framer-9lf5d .framer-rhlpnf, .framer-9lf5d .framer-j8u9z { gap: 0px; } .framer-9lf5d .framer-1wgp7o9 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-9lf5d .framer-1wgp7o9 > :first-child { margin-left: 0px; } .framer-9lf5d .framer-1wgp7o9 > :last-child { margin-right: 0px; } .framer-9lf5d .framer-16kpy7h > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-9lf5d .framer-16kpy7h > :first-child, .framer-9lf5d .framer-rhlpnf > :first-child, .framer-9lf5d .framer-j8u9z > :first-child { margin-top: 0px; } .framer-9lf5d .framer-16kpy7h > :last-child, .framer-9lf5d .framer-rhlpnf > :last-child, .framer-9lf5d .framer-j8u9z > :last-child { margin-bottom: 0px; } .framer-9lf5d .framer-rhlpnf > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-9lf5d .framer-j8u9z > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }}`,`@media (max-width: 479px) { .${metadata.bodyClassName}-framer-9lf5d { background: rgb(33, 10, 81); } .framer-9lf5d.framer-1baj3rk { width: 390px; } .framer-9lf5d .framer-uj4pne, .framer-9lf5d .framer-j8u9z { flex-direction: column; } .framer-9lf5d .framer-1dhx8dy { flex: none; padding: 0px 0px 30px 0px; width: 100%; } .framer-9lf5d .framer-1lnghg6 { min-width: 1006px; } .framer-9lf5d .framer-15kdmhm { gap: 8px; left: 44%; order: 1; position: absolute; top: 148px; transform: translateX(-50%); width: 275px; z-index: 2; } .framer-9lf5d .framer-1hh4rjn { gap: 8px; left: 55%; order: 0; position: absolute; top: 261px; transform: translateX(-50%); width: 280px; z-index: 3; } .framer-9lf5d .framer-1qnlgxz { height: 113px; } .framer-9lf5d .framer-1ob8tdr { gap: 8px; left: 55%; order: 2; position: absolute; top: 46px; transform: translateX(-50%); width: 278px; z-index: 1; } .framer-9lf5d .framer-105v5xb { height: 119px; } .framer-9lf5d .framer-1frll6a { align-content: flex-start; align-items: flex-start; gap: 0px; justify-content: flex-start; } .framer-9lf5d .framer-1h5nwra { gap: 10px; justify-content: flex-start; padding: 0px 0px 90px 0px; } .framer-9lf5d .framer-1f3oqsc { height: var(--framer-aspect-ratio-supported, 340px); right: 70px; top: 53px; width: 337px; } .framer-9lf5d .framer-1c2ty94 { height: 335px; left: -19px; right: -321px; top: calc(177.24719101123597% - 335px / 2); } .framer-9lf5d .framer-1ib2ctp { height: 311px; left: -29px; right: -100px; top: 377px; } .framer-9lf5d .framer-1ovc2q5, .framer-9lf5d .framer-1707u1d { padding: 0px 15px 40px 15px; width: 85%; } .framer-9lf5d .framer-adybk2, .framer-9lf5d .framer-1rpmu6e { --framer-text-wrap: unset; } .framer-9lf5d .framer-1bmaalk { height: 259px; left: 46px; right: 117px; top: calc(60.20833333333335% - 259px / 2); } .framer-9lf5d .framer-4carep { padding: 0px 15px 20px 15px; } .framer-9lf5d .framer-1mfet6x { width: 340px; } .framer-9lf5d .framer-16lp4bf { padding: 0px 16px 80px 16px; } .framer-9lf5d .framer-16kpy7h { flex-direction: column; gap: 60px; } .framer-9lf5d .framer-130jn2i, .framer-9lf5d .framer-1w88f0g, .framer-9lf5d .framer-2q97p9 { flex: none; width: 100%; } .framer-9lf5d .framer-1qcncvj { bottom: -11px; } .framer-9lf5d .framer-1s989ji { bottom: unset; height: 59px; left: calc(48.882681564245836% - 250px / 2); right: unset; top: calc(-0.543478260869543% - 59px / 2); width: 250px; } .framer-9lf5d .framer-owt9lj { bottom: 99px; top: 45px; } .framer-9lf5d .framer-6ofnrr { left: 70%; } .framer-9lf5d .framer-1d0fvh6 { bottom: 34px; left: -13px; right: 100px; top: 90px; } .framer-9lf5d .framer-up3x3b { left: calc(50.00000000000002% - 172px / 2); right: unset; width: 172px; } .framer-9lf5d .framer-1kffvbc { left: 61%; min-height: 98px; right: unset; top: 40%; transform: translate(-50%, -50%); width: 380px; } .framer-9lf5d .framer-1a6rp8 { bottom: 23px; left: 72px; position: absolute; z-index: 1; } .framer-9lf5d .framer-hc1iv9 { border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; left: -10px; position: absolute; top: -32px; z-index: 0; } .framer-9lf5d .framer-64pq5z { left: calc(41.315789473684234% - 166px / 2); top: calc(34.69387755102043% - 187px / 2); } .framer-9lf5d .framer-hxw2o0 { bottom: 97px; left: 124px; z-index: 1; } .framer-9lf5d .framer-66cstu { aspect-ratio: unset; height: 459px; left: calc(51.39664804469276% - 359px / 2); top: calc(40.188383045525924% - 459px / 2); transform: unset; } .framer-9lf5d .framer-1xh5csj { left: calc(50.10893246187366% - 352px / 2); width: 352px; } .framer-9lf5d .framer-15fqi1x { bottom: unset; left: calc(35.07625272331157% - 300px / 2); top: calc(76.29937629937632% - 259px / 2); } .framer-9lf5d .framer-uuxpmt { left: calc(66.66666666666669% - 300px / 2); top: calc(55.50935550935553% - 255px / 2); } .framer-9lf5d .framer-14ia3in { left: calc(37.47276688453161% - 300px / 2); top: calc(32.848232848232875% - 255px / 2); } .framer-9lf5d .framer-cazrpo { bottom: 345px; height: var(--framer-aspect-ratio-supported, 757px); left: -460px; right: -495px; transform: unset; width: unset; } .framer-9lf5d .framer-4n5t3f { bottom: 345px; height: var(--framer-aspect-ratio-supported, 757px); left: -459px; right: -496px; transform: unset; width: unset; } .framer-9lf5d .framer-rhlpnf { flex-direction: column; padding: 0px 15px 0px 15px; } .framer-9lf5d .framer-n8bula, .framer-9lf5d .framer-33f7br-container { width: 100%; } .framer-9lf5d .framer-h9q9fx { align-self: unset; flex: none; height: min-content; padding: 0px 16px 0px 16px; width: 100%; } .framer-9lf5d .framer-lp9bmr { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-9lf5d .framer-f31rzj { order: 0; } .framer-9lf5d .framer-482duo { left: unset; order: 1; right: -409px; width: 348px; } .framer-9lf5d .framer-1ofw18l { bottom: unset; height: 206px; right: 379px; top: 132px; width: 143px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-9lf5d .framer-uj4pne, .framer-9lf5d .framer-15kdmhm, .framer-9lf5d .framer-1hh4rjn, .framer-9lf5d .framer-1ob8tdr, .framer-9lf5d .framer-1frll6a, .framer-9lf5d .framer-1h5nwra, .framer-9lf5d .framer-16kpy7h, .framer-9lf5d .framer-rhlpnf, .framer-9lf5d .framer-j8u9z { gap: 0px; } .framer-9lf5d .framer-uj4pne > *, .framer-9lf5d .framer-1h5nwra > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-9lf5d .framer-uj4pne > :first-child, .framer-9lf5d .framer-15kdmhm > :first-child, .framer-9lf5d .framer-1hh4rjn > :first-child, .framer-9lf5d .framer-1ob8tdr > :first-child, .framer-9lf5d .framer-1frll6a > :first-child, .framer-9lf5d .framer-1h5nwra > :first-child, .framer-9lf5d .framer-16kpy7h > :first-child, .framer-9lf5d .framer-rhlpnf > :first-child, .framer-9lf5d .framer-j8u9z > :first-child { margin-top: 0px; } .framer-9lf5d .framer-uj4pne > :last-child, .framer-9lf5d .framer-15kdmhm > :last-child, .framer-9lf5d .framer-1hh4rjn > :last-child, .framer-9lf5d .framer-1ob8tdr > :last-child, .framer-9lf5d .framer-1frll6a > :last-child, .framer-9lf5d .framer-1h5nwra > :last-child, .framer-9lf5d .framer-16kpy7h > :last-child, .framer-9lf5d .framer-rhlpnf > :last-child, .framer-9lf5d .framer-j8u9z > :last-child { margin-bottom: 0px; } .framer-9lf5d .framer-15kdmhm > *, .framer-9lf5d .framer-1hh4rjn > *, .framer-9lf5d .framer-1ob8tdr > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-9lf5d .framer-1frll6a > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-9lf5d .framer-16kpy7h > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-9lf5d .framer-rhlpnf > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-9lf5d .framer-j8u9z > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }}`,'.framer-9lf5d[data-border=\"true\"]::after, .framer-9lf5d [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 4556\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ffOVdLseq\":{\"layout\":[\"fixed\",\"auto\"]},\"gb08IE0VK\":{\"layout\":[\"fixed\",\"auto\"]},\"vqvAi04c7\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerGWUUJNwuq=withCSS(Component,css,\"framer-9lf5d\");export default FramerGWUUJNwuq;FramerGWUUJNwuq.displayName=\"New\";FramerGWUUJNwuq.defaultProps={height:4556,width:1200};addFonts(FramerGWUUJNwuq,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/mkY5Sgyq51ik0AMrSBwhm9DJg.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/X5hj6qzcHUYv7h1390c8Rhm6550.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/gQhNpS3tN86g8RcVKYUUaKt2oMQ.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cugnVhSraaRyANCaUtI5FV17wk.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/5HcVoGak8k5agFJSaKa4floXVu0.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/jn4BtSPLlS0NDp1KiFAtFKiiY0o.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/P2Bw01CtL0b9wqygO0sSVogWbo.woff2\",weight:\"900\"},{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:\"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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.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/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Archivo Black\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/archivoblack/v21/HTxqL289NzCGg4MzN6KJ7eW6OY6P_x7yx3A.woff2\",weight:\"400\"},{family:\"IBM Plex Mono\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/ibmplexmono/v19/-F6pfjptAgt5VM-kVkqdyU8n1ioq131hj-sNFQ.woff2\",weight:\"400\"},{family:\"Archivo\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/archivo/v19/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTnTRp9R1oJ0vyVQ.woff2\",weight:\"900\"},{family:\"IBM Plex Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/ibmplexmono/v19/-F63fjptAgt5VM-kVkqdyU8n5i0g1l9kn-s.woff2\",weight:\"400\"},{family:\"IBM Plex Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/ibmplexmono/v19/-F6qfjptAgt5VM-kVkqdyU8n3pQP8lJPg-IUDNg.woff2\",weight:\"700\"},{family:\"IBM Plex Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/ibmplexmono/v19/-F6qfjptAgt5VM-kVkqdyU8n3twJ8lJPg-IUDNg.woff2\",weight:\"500\"}]},...CopilotNavBarFonts,...VideoFonts,...CopilotSiteLinkFonts,...PrivacyPolicyButtonFonts,...DiscordButtonFonts,...CopilotFooterFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerGWUUJNwuq\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"4556\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicWidth\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ffOVdLseq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gb08IE0VK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vqvAi04c7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "mwBAA2Z,IAAIA,IAAe,SAASA,EAAc,CAACA,EAAc,KAAQ,OAAOA,EAAc,QAAW,UAAUA,EAAc,MAAS,QAAQA,EAAc,KAAQ,OAAOA,EAAc,UAAa,YAAa,GAAGA,KAAgBA,GAAc,CAAC,EAAE,EAAE,IAAIC,IAAS,SAASA,EAAQ,CAACA,EAAQ,MAAS,SAASA,EAAQ,IAAO,KAAM,GAAGA,KAAUA,GAAQ,CAAC,EAAE,EACtvB,SAASC,GAASC,EAAM,CAAC,GAAK,CAAC,MAAAC,EAAM,OAAAC,EAAO,QAAAC,EAAQ,SAAAC,EAAS,YAAAC,EAAY,WAAAC,EAAW,GAAAC,EAAG,SAAAC,EAAS,GAAGC,CAAI,EAAET,EAAM,OAAOS,CAAK,CAQjH,SAASC,GAAMV,EAAM,CAAC,IAAMW,EAASZ,GAASC,CAAK,EAAE,OAAoBY,EAAKC,GAAU,CAAC,GAAGF,CAAQ,CAAC,CAAE,CAAC,SAASG,GAAoBC,EAAS,CAAC,IAAMC,EAA4BC,GAA+B,EAAQC,EAAeC,EAAO,EAAK,EAAQC,EAAaD,EAAO,EAAK,EAAQE,EAAYC,GAAYC,GAAa,CAAC,GAAG,CAACR,EAAS,QAAQ,OAAO,IAAMS,GAAaD,IAAc,EAAE,KAAKA,GAAaR,EAAS,QAAQ,SAAeU,EAAa,KAAK,IAAIV,EAAS,QAAQ,YAAYS,CAAW,EAAE,GAAMT,EAAS,QAAQ,SAAS,GAAG,CAACU,IAAcV,EAAS,QAAQ,YAAYS,EAAa,EAAE,CAAC,CAAC,EAAQE,EAAKJ,GAAY,IAAI,CAAC,IAAMK,EAAMZ,EAAS,QAAQ,GAAG,CAACY,EAAM,OAAOA,EAAM,QAAQ,OACtjB,EAAhHA,EAAM,YAAY,GAAGA,EAAM,WAAW,CAACA,EAAM,QAAQ,CAACA,EAAM,OAAOA,EAAM,YAAYA,EAAM,oBAAiCA,GAAO,CAACT,EAAe,SAASF,IAA6BE,EAAe,QAAQ,GAAKE,EAAa,QAAQ,GAAKO,EAAM,KAAK,EAAE,MAAMC,GAAG,CAAC,CAAC,EACvR,QAAQ,IAAIV,EAAe,QAAQ,EAAK,EAAG,EAAE,CAAC,CAAC,EAAQW,EAAMP,GAAY,IAAI,CAAI,CAACP,EAAS,SAASG,EAAe,UAAeH,EAAS,QAAQ,MAAM,EAAEK,EAAa,QAAQ,GAAM,EAAE,CAAC,CAAC,EAAE,MAAM,CAAC,KAAAM,EAAK,MAAAG,EAAM,YAAAR,EAAY,UAAUD,CAAY,CAAE,CAAC,SAASU,GAAoB,CAAC,YAAAC,EAAY,MAAAC,EAAM,KAAAC,EAAK,YAAAC,EAAY,SAAAC,CAAQ,EAAE,CAAC,GAAK,CAACC,CAAkB,EAAEC,GAAS,IAAIN,CAAW,EAAO,CAACO,EAAsBC,CAAwB,EAAEF,GAAS,EAAK,EAAKN,IAAcK,GAAoB,CAACE,GAAuBC,EAAyB,EAAI,EAAG,IAAMC,EAE7hBJ,GAAoBJ,GAAOC,GAAMC,GAAa,CAACC,GAQ/C,CAACG,EAA0BG,EAAS,OAAGD,EAAaC,EAAS,cAAsBL,EAAmBK,EAAS,WAAgBA,EAAS,cAAqBA,CAAS,CAOnK,IAAIC,GAAoC,GAAY7B,GAAuB8B,GAAK,SAAoB3C,EAAM,CAAC,GAAK,CAAC,QAAA4C,EAAQ,QAAAC,EAAQ,OAAAC,EAAO,QAAQf,EAAY,MAAAC,EAAM,YAAAE,EAAY,SAAAC,EAAS,SAAAY,EAAS,UAAAC,EAAU,gBAAAC,GAAgB,SAAAC,EAAS,QAAAC,EAAQ,OAAAC,EAAO,MAAAC,EAAM,QAAAC,EAAQ,aAAAC,EAAa,aAAAC,EAAa,YAAAC,EAAY,UAAAC,EAAU,OAAAC,EAAO,cAAAC,GAAc,UAAUC,EAAc,OAAAC,EAAO,KAAA7B,EAAI,EAAEjC,EAAYe,EAASI,EAAO,EAAQ4C,GAASC,GAAmB,EAAQC,EAAiB9C,EAAO,IAAI,EAAQ+C,EAAgB/C,EAAO,IAAI,EAAQgD,EAAWC,GAAc,EAAQC,GAAaC,GAAUtE,CAAK,EAGnjBuE,EAAiBJ,EAAW,cAAcrC,GAAoB,CAAC,YAAAC,EAAY,MAAAC,EAAM,KAAAC,GAAK,YAAAC,EAAY,SAAAC,CAAQ,CAAC,EAAQqC,GAAaL,EAAW,GAAKM,GAAU1D,CAAQ,EAAQ2D,GAAkBP,EAAW,GAAMM,GAAU1D,EAAS,CAAC,OAAO,QAAQ,KAAK,EAAI,CAAC,EAC1P4D,EAAUd,IAAgB,IAAI,KAAKA,EAAmB,CAAC,KAAAnC,GAAK,MAAAG,GAAM,YAAAR,GAAY,UAAAuD,EAAS,EAAE9D,GAAoBC,CAAQ,EAC3H8D,EAAU,IAAI,CAAIV,IAAqBpC,EAAYL,GAAK,EAAOG,GAAM,EAAE,EAAE,CAACE,CAAW,CAAC,EACtF8C,EAAU,IAAI,CAAIV,GAAqBI,IAAmB,gBAAwBC,GAAa9C,GAAK,EAAOG,GAAM,EAAE,EAAE,CAAC0C,EAAiBC,EAAY,CAAC,EAEpJK,EAAU,IAAI,CAAC,GAAG,CAACnC,GAAoC,CAACA,GAAoC,GAAK,OAAQ,IAAMoC,EAAiBC,GAAchC,CAAQ,EAAEA,EAAS,IAAI,GAAGA,GAA4C,GAAG,IAAI1B,IAK1NyD,GAAoE,KAOpEH,GAA+C,GAAG,GAAG,CAAE,EAAE,CAACA,EAAU9B,EAAQC,EAAOC,CAAQ,CAAC,EAC7F8B,EAAU,IAAI,CAAC,GAAIE,GAAchC,CAAQ,EAAS,OAAOA,EAAS,GAAG,SAASiC,GAAO3D,GAAY2D,CAAK,CAAC,CAAE,EAAE,CAACjC,CAAQ,CAAC,EACrHkC,GAAW,IAAI,CAAIhB,EAAiB,UAAU,MAAelD,EAAS,UACnE,CAACmD,GAAiBjC,IAAM,CAACgC,EAAiB,UAAQvC,GAAK,CAAG,CAAC,EAC9DwD,GAAU,IAAI,CAAInE,EAAS,UAASmD,EAAgB,QAAQnD,EAAS,QAAQ,MAAMkD,EAAiB,QAAQlD,EAAS,QAAQ,OAAOc,GAAM,EAAG,CAAC,EAAE,IAAMsD,GAAIC,EAAQ,IAAI,CAAC,IAAIC,EAAS,GASpL,GAAGzC,IAAU,MAAM,OAAOE,EAAOuC,EAAS,GAAGzC,IAAU,SAAS,OAAOC,EAAQwC,CAAS,EAAE,CAACzC,EAAQC,EAAQC,EAAO6B,CAAS,CAAC,EAC5HE,EAAU,IAAI,CAAId,IAAUhD,EAAS,SAASwD,IAAmB,YAAY,WAAW,IAAI7C,GAAK,EAAE,EAAE,CAAG,EAAE,CAAC,CAAC,EAC5GmD,EAAU,IAAI,CAAI9D,EAAS,SAAS,CAACiB,IAAMjB,EAAS,QAAQ,QAAQ+C,GAAsC,GAAG,IAAI,EAAE,CAACA,CAAM,CAAC,EAC3H,IAAMwB,GAAY,IAAI,CAAC,IAAM3D,EAAMZ,EAAS,QAAYY,IAAgBA,EAAM,YAAY,IAAIgD,EAAU,GAAEtD,IAAasD,GAA+C,GAAG,GAAG,EAAKJ,IAAmB,YAAW7C,GAAK,EAAE,EAAE,OAAoBd,EAAK,QAAQ,CAAC,QAAA0C,EAAQ,aAAAC,EAAa,aAAAC,EAAa,YAAAC,EAAY,UAAAC,EAAU,IAAIyB,GAAI,KAAKlD,GAAK,IAAIlB,EAAS,SAASa,GAA6CsB,IAAStB,CAAC,EAAE,QAAQA,GAA2CuB,IAAQvB,CAAC,EAAE,OAAOA,GAAyCwB,IAAOxB,CAAC,EAAE,QAAQA,GAAuCyB,IAAMzB,CAAC,EAAE,SAAS2C,IAAmB,WAAW,QAAQK,GAAU,QAAQ,OAAOL,IAAmB,YAAYX,IAAe,CAACc,GAAkB,OAC5sB,WAAW,OAAOd,GAAcD,EAAO,OAAU,aAAa2B,GAAY,SAASnD,EAAS,MAAMgC,EAAW,GAAKnC,EAAM,YAAYE,EAAY,MAAM,CAAC,OAASoB,EAAQ,UAAU,OAAO,MAAM,OAAO,OAAO,OAAO,aAAAe,GAAa,QAAQ,QAAQ,UAAUrB,EAAU,gBAAgBC,GAAgB,eAAe,SAAS,CAAC,CAAC,CAAE,CAAC,EAAEvC,GAAM,YAAY,QAAQA,GAAM,aAAa,CAAC,QAAQ,MAAM,OAAO,oHAAoH,QAAQ,GAAG,cAAc,GAAM,SAAS,GAAM,QAAQ,GAAK,KAAK,GAAK,MAAM,GAAK,YAAY,GAAK,eAAe,GAAM,UAAU,QAAQ,gBAAgB,gBAAgB,OAAO,EAAE,OAAO,GAAG,UAAU,CAAC,EAAE,SAAS6E,GAAsBP,EAAM,CAAC,OAAOA,EAAM,OAAO,CAAC,EAAE,YAAY,EAAEA,EAAM,MAAM,CAAC,CAAE,CAAQ,SAASQ,GAAUR,EAAM,CAA0E,OAA5DA,EAAM,MAAM,0CAA0C,GAAG,CAAC,GAAgB,IAAIO,EAAqB,EAAE,KAAK,GAAG,CAAE,CAAC,IAAME,GAAiB,CAAC,QAAQ,OAAO,UAAU,aAAa,MAAM,EAAEC,GAAoBhF,GAAM,CAAC,QAAQ,CAAC,KAAKiF,EAAY,KAAK,wBAAwB,GAAK,MAAM,SAAS,QAAQ,CAAC,MAAM,QAAQ,CAAC,EAAE,OAAO,CAAC,KAAKA,EAAY,OAAO,MAAM,MAAM,YAAY,iBAAiB,OAAO3F,EAAM,CAAC,OAAOA,EAAM,UAAU,QAAS,CAAC,EAAE,QAAQ,CAAC,KAAK2F,EAAY,KAAK,MAAM,OAAO,iBAAiB,CAAC,MAAM,MAAM,EAAE,OAAO3F,EAAM,CAAC,OAAOA,EAAM,UAAU,KAAM,CAAC,EAAE,QAAQ,CAAC,KAAK2F,EAAY,QAAQ,MAAM,UAAU,aAAa,MAAM,cAAc,IAAI,EAAE,cAAc,CAAC,KAAKA,EAAY,QAAQ,MAAM,SAAS,aAAa,MAAM,cAAc,KAAK,YAAY,kHAAkH,EAAE,OAAO,CAAC,KAAKA,EAAY,MAAM,MAAM,IAAI,OAAO,CAAC,CAAC,cAAA/B,CAAa,IAAI,CAACA,CAAa,EAAE,gBAAgB,CAAC,KAAK+B,EAAY,MAAM,MAAM,YAAY,EAAE,GAAGC,GAAoB,UAAU,CAAC,MAAM,aAAa,KAAKD,EAAY,OAAO,IAAI,EAAE,IAAI,IAAI,KAAK,GAAG,KAAK,GAAG,EAAE,KAAK,CAAC,KAAKA,EAAY,QAAQ,MAAM,OAAO,aAAa,MAAM,cAAc,IAAI,EAAE,UAAU,CAAC,KAAKA,EAAY,KAAK,MAAM,MAAM,QAAQF,GAAiB,aAAaA,GAAiB,IAAID,EAAS,CAAC,EAM7mE,SAAS,CAAC,KAAKG,EAAY,QAAQ,MAAM,WAAW,aAAa,OAAO,cAAc,MAAM,EAAE,MAAM,CAAC,KAAKA,EAAY,QAAQ,MAAM,QAAQ,aAAa,MAAM,cAAc,IAAI,EAAE,OAAO,CAAC,KAAKA,EAAY,OAAO,IAAI,IAAI,IAAI,EAAE,KAAK,IAAI,OAAO,CAAC,CAAC,MAAA3D,CAAK,IAAIA,CAAK,EAAE,MAAM,CAAC,KAAK2D,EAAY,YAAY,EAAE,SAAS,CAAC,KAAKA,EAAY,YAAY,EAAE,QAAQ,CAAC,KAAKA,EAAY,YAAY,EAAE,OAAO,CAAC,KAAKA,EAAY,YAAY,EAAE,GAAGE,EAAa,CAAC,ECtEO,IAAMC,GAAUC,EAASC,EAAI,EAAQC,GAAgB,CAAC,UAAU,CAAC,MAAM,EAAI,EAAE,UAAU,CAAC,MAAM,EAAI,CAAC,EAAQC,GAAW,CAAC,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,iBAAiB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,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,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,CAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,YAAY,YAAY,MAAM,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAuCC,EAAK,MAAM,CAAC,GAAGF,EAAM,SAASE,GAAMD,EAAuCN,GAAwBK,EAAM,OAAO,KAAK,MAAMC,IAAyC,OAAOA,EAAuCD,EAAM,WAAW,MAAME,IAAO,OAAOA,EAAK,WAAW,CAAE,EAAQC,GAAuB,CAACH,EAAMtB,IAAesB,EAAM,iBAAwBtB,EAAS,KAAK,GAAG,EAAEsB,EAAM,iBAAwBtB,EAAS,KAAK,GAAG,EAAU0B,GAA6BC,EAAW,SAASL,EAAMM,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAhC,EAAQ,GAAGiC,CAAS,EAAEjB,GAASI,CAAK,EAAO,CAAC,YAAAc,EAAY,WAAAC,EAAW,oBAAAC,GAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAA3C,CAAQ,EAAE4C,GAAgB,CAAC,WAAAjD,GAAW,eAAe,YAAY,gBAAAD,GAAgB,QAAAQ,EAAQ,kBAAAL,EAAiB,CAAC,EAAQgD,EAAiBpB,GAAuBH,EAAMtB,CAAQ,EAAQ8C,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,EAAM,EAAQC,EAAsB,CAAC,EAAQC,GAAkBC,GAAqB,EAAE,OAAoBvC,EAAKwC,EAAY,CAAC,GAAGnB,GAA4Cc,EAAgB,SAAsBnC,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBU,EAAKyC,EAAK,CAAC,KAAK,gCAAgC,SAAsBC,EAAMxC,EAAO,EAAE,CAAC,GAAGoB,EAAU,GAAGI,EAAgB,UAAU,GAAGiB,EAAG5D,GAAkB,GAAGsD,EAAsB,gBAAgBjB,EAAUI,CAAU,mBAAmB,mBAAmB,YAAY,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIjB,GAA6BkB,EAAK,MAAM,CAAC,WAAW,0EAA0E,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,mRAAmR,GAAGd,CAAK,EAAE,SAAS,CAAC,kBAAkB,CAAC,WAAW,yEAAyE,EAAE,kBAAkB,CAAC,WAAW,yEAAyE,CAAC,EAAE,GAAGlC,GAAqB,CAAC,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,UAAU,CAAC,mBAAmB,OAAO,CAAC,EAAEsC,EAAYI,CAAc,EAAE,SAAS,CAAc3B,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,iBAAiB8B,EAAiB,SAAS,YAAY,SAAsBhC,EAAK4C,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,OAAO,WAAW,iBAAiBZ,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,47DAA47D,aAAa,YAAY,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeU,EAAMxC,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,cAAc,iBAAiB8B,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAK6C,EAAS,CAAC,sBAAsB,GAAK,SAAsB7C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,6BAA6B,qBAAqB,OAAO,uBAAuB,OAAO,0BAA0B,OAAO,sBAAsB,6CAA6C,EAAE,SAAS,sBAAsB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,uBAAuB,MAAM,CAAC,0BAA0B,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,GAAG,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAG/C,GAAqB,CAAC,UAAU,CAAC,SAAsBe,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,6BAA6B,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,OAAO,0BAA0B,OAAO,sBAAsB,6CAA6C,EAAE,SAAS,sBAAsB,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,sBAAsB,CAAC,CAAC,EAAEqB,EAAYI,CAAc,CAAC,CAAC,EAAe3B,EAAK8C,EAA0B,CAAC,SAAsB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKpB,GAAK,CAAC,MAAM,qBAAqB,OAAO,OAAO,WAAW,OAAO,cAAc,eAAe,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQmE,GAAI,CAAC,kFAAkF,kFAAkF,+TAA+T,wIAAwI,mLAAmL,iRAAiR,oKAAoK,2IAA2I,6kBAA6kB,4EAA4E,kFAAkF,mFAAmF,0IAA0I,qtBAAqtB,gFAAgF,oEAAoE,8GAA8G,wcAAwc,EAQxzXC,GAAgBC,GAAQpC,GAAUkC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,iBAAiBA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,GAAG,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,YAAY,OAAO,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,IAAI,wFAAwF,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,IAAI,4FAA4F,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGtE,EAAS,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECRnX,IAAM4E,GAAUC,EAASC,EAAI,EAAQC,GAAgB,CAAC,UAAU,CAAC,MAAM,EAAI,CAAC,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,iBAAiB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,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,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,CAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,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,EAAMrB,IAAeqB,EAAM,iBAAwBrB,EAAS,KAAK,GAAG,EAAEqB,EAAM,iBAAwBrB,EAAS,KAAK,GAAG,EAAUuB,GAA6BC,EAAW,SAASH,EAAMI,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAA7B,EAAQ,GAAG8B,CAAS,EAAEf,GAASI,CAAK,EAAO,CAAC,YAAAY,EAAY,WAAAC,EAAW,oBAAAC,GAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAAxC,CAAQ,EAAEyC,GAAgB,CAAC,eAAe,YAAY,gBAAA9C,GAAgB,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ6C,EAAiBpB,GAAuBD,EAAMrB,CAAQ,EAAQ2C,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,EAAM,EAAQC,EAAsB,CAAC,EAAQC,GAAkBC,GAAqB,EAAE,OAAoBpC,EAAKqC,EAAY,CAAC,GAAGnB,GAA4Cc,EAAgB,SAAsBhC,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBU,EAAKsC,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,aAAa,GAAK,SAAsBC,EAAMrC,EAAO,EAAE,CAAC,GAAGiB,EAAU,GAAGI,EAAgB,UAAU,GAAGiB,EAAGzD,GAAkB,GAAGmD,EAAsB,gBAAgBjB,EAAUI,CAAU,mBAAmB,mBAAmB,YAAY,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIjB,GAA6BkB,EAAK,MAAM,CAAC,GAAGd,CAAK,EAAE,GAAG/B,GAAqB,CAAC,kBAAkB,CAAC,mBAAmB,MAAS,CAAC,EAAEmC,EAAYI,CAAc,EAAE,SAAS,CAAce,EAAMrC,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB2B,EAAiB,SAAS,YAAY,SAAS,CAAc7B,EAAKyC,EAAS,CAAC,sBAAsB,GAAK,SAAsBzC,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,6BAA6B,qBAAqB,OAAO,0BAA0B,SAAS,sBAAsB,mDAAmD,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,+BAA0B,MAAM,CAAC,0BAA0B,EAAE,iBAAiB2B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,2BAA2B,6BAA6B,KAAK,EAAE,SAAS,CAAC,kBAAkB,CAAC,qBAAqB,0BAA0B,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAG5C,GAAqB,CAAC,kBAAkB,CAAC,SAAsBe,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,6BAA6B,qBAAqB,OAAO,0BAA0B,SAAS,sBAAsB,mDAAmD,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEkB,EAAYI,CAAc,CAAC,CAAC,EAAexB,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB2B,EAAiB,SAAS,YAAY,SAAsB7B,EAAK0C,EAA0B,CAAC,SAAsB1C,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB2B,EAAiB,SAAS,sBAAsB,SAAsB7B,EAAKnB,GAAK,CAAC,MAAM,2BAA2B,OAAO,OAAO,WAAW,OAAO,cAAc,eAAe,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAemB,EAAKyC,EAAS,CAAC,sBAAsB,GAAK,SAAsBzC,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,6BAA6B,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,mDAAmD,EAAE,SAAS,kCAAkC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,+BAA0B,MAAM,CAAC,0BAA0B,EAAE,iBAAiB2B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,2BAA2B,6BAA6B,MAAM,QAAQ,GAAG,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQc,GAAI,CAAC,kFAAkF,kFAAkF,qTAAqT,mRAAmR,+IAA+I,iHAAiH,6JAA6J,0nBAA0nB,oEAAoE,wcAAwc,EAQrqPC,GAAgBC,GAAQnC,GAAUiC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,wBAAwBA,GAAgB,aAAa,CAAC,OAAO,KAAK,MAAM,KAAK,EAAEG,GAASH,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,IAAI,wFAAwF,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGjE,EAAS,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECT3c,IAAMqE,GAAgB,CACzB,QAAS,OACT,eAAgB,SAChB,WAAY,QAChB,EASO,IAAMC,GAAyB,CAClC,GAAGC,GACH,SAAU,QACd,ECfA,IAAMC,GAASC,GAAY,CAAC,WAAW,SAAS,CAAC,EAAS,SAASC,GAAWC,EAAU,CAAC,OAAOC,GAA4BC,EAAKF,EAAU,CAAC,GAAGC,EAAM,QAAQ,CAAC,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,EAAE,WAAW,CAAC,SAAS,EAAE,OAAO,IAAS,KAAK,WAAW,CAAC,CAAC,CAAI,CCAu1B,IAAME,GAAmBC,EAASC,EAAa,EAAQC,GAAoBC,GAAWC,EAAO,GAAG,EAAQC,GAAgBC,GAAOF,EAAO,GAAG,EAAQG,GAAWP,EAASQ,EAAK,EAAQC,GAAqBT,EAASU,EAAe,EAAQC,GAAyBX,EAASY,EAAmB,EAAQC,GAAmBb,EAASc,EAAa,EAAQC,GAAmBf,EAASgB,EAAa,EAAQC,GAAY,CAAC,UAAU,6CAA6C,UAAU,4CAA4C,UAAU,sBAAsB,UAAU,oBAAoB,EAAQC,GAAU,IAAI,OAAO,SAAW,IAAkBC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,EAAQC,EAAmB,CAACC,EAAEC,IAAI,oBAAoBA,IAAUC,GAAmB,CAACF,EAAEC,IAAI,yBAAyBA,IAAUE,GAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,EAAQC,GAAY,CAAC,OAAO,GAAG,MAAM,EAAE,SAAS,EAAE,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAY,CAAC,OAAO,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAW,CAAC,QAAQ,GAAG,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,GAAG,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAY,CAAC,OAAO,GAAG,MAAM,EAAE,SAAS,EAAE,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAY,CAAC,OAAO,IAAI,MAAM,EAAE,SAAS,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,KAAK,MAAM,EAAE,MAAM,EAAE,WAAWD,EAAW,EAAQE,GAAmB,CAACd,EAAEC,IAAI,oBAAoBA,IAAUc,GAASA,GAAiB,EAAQC,GAAwB,CAAC,oBAAe,YAAY,QAAQ,YAAY,MAAM,YAAY,OAAO,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAuCC,EAAK,MAAM,CAAC,GAAGF,EAAM,SAASE,GAAMD,EAAuCN,GAAwBK,EAAM,OAAO,KAAK,MAAMC,IAAyC,OAAOA,EAAuCD,EAAM,WAAW,MAAME,IAAO,OAAOA,EAAK,WAAW,CAAE,EAAQC,GAA6BC,EAAW,SAASJ,EAAMK,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,GAAGC,CAAS,EAAEjB,GAASI,CAAK,EAAQc,EAAU,IAAI,CAAC,IAAMC,EAAUrB,GAAiB,OAAUY,CAAY,EAAE,GAAGS,EAAU,OAAO,CAAC,IAAIC,EAAU,SAAS,cAAc,qBAAqB,EAAKA,EAAWA,EAAU,aAAa,UAAUD,EAAU,MAAM,GAAQC,EAAU,SAAS,cAAc,MAAM,EAAEA,EAAU,aAAa,OAAO,QAAQ,EAAEA,EAAU,aAAa,UAAUD,EAAU,MAAM,EAAE,SAAS,KAAK,YAAYC,CAAS,GAAI,EAAE,CAAC,OAAUV,CAAY,CAAC,EAAQW,GAAmB,IAAI,CAAC,IAAMF,EAAUrB,GAAiB,OAAUY,CAAY,EAAqC,GAAnC,SAAS,MAAMS,EAAU,OAAO,GAAMA,EAAU,SAAS,CAAC,IAAIG,GAAyBA,EAAwB,SAAS,cAAc,uBAAuB,KAAK,MAAMA,IAA0B,QAAcA,EAAwB,aAAa,UAAUH,EAAU,QAAQ,EAAG,IAAMI,EAAQJ,EAAU,cAAc,GAAGI,EAAQ,CAAC,IAAMC,GAAK,SAAS,KAAKA,GAAK,UAAU,QAAQC,GAAGA,EAAE,WAAW,cAAc,GAAGD,GAAK,UAAU,OAAOC,CAAC,CAAC,EAAED,GAAK,UAAU,IAAI,GAAGL,EAAU,4BAA4B,EAAG,MAAM,IAAI,CAAII,GAAQ,SAAS,KAAK,UAAU,OAAO,GAAGJ,EAAU,4BAA4B,CAAE,CAAE,EAAE,CAAC,OAAUT,CAAY,CAAC,EAAE,GAAK,CAACgB,EAAYC,CAAmB,EAAEC,GAA8BZ,EAAQtC,GAAY,EAAK,EAAQmD,GAAe,OAAgBC,EAAWC,EAAO,IAAI,EAAQC,EAAUC,GAAkB,WAAW,EAAQC,EAAWH,EAAO,IAAI,EAAQI,EAAY,IAAQ,IAACxD,GAAU,GAAiB,CAAC,YAAY,WAAW,EAAE,SAAS+C,CAAW,GAAmCU,EAAa,IAAQ,CAACzD,GAAU,GAAiB+C,IAAc,YAA6CW,EAAa,IAAS1D,GAAU,EAAiB+C,IAAc,YAAtB,GAAmEY,EAAWL,GAAkB,WAAW,EAAQM,EAAWR,EAAO,IAAI,EAAQS,EAAWP,GAAkB,WAAW,EAAQQ,EAAWV,EAAO,IAAI,EAAQW,GAAOC,GAAU,EAAQC,EAAa,IAAQ,CAACjE,GAAU,GAAiB+C,IAAc,YAA6CmB,EAAa,IAASlE,GAAU,EAAiB,EAAC,YAAY,YAAY,WAAW,EAAE,SAAS+C,CAAW,EAAlE,GAAqGoB,GAAa,IAASnE,GAAU,EAAiB+C,IAAc,YAAtB,GAAmEqB,EAAsBC,EAAM,EAAQC,GAAsB,CAAC,EAAE,OAAAC,GAAiB,CAAC,CAAC,EAAsBC,EAAKC,GAA0B,SAAS,CAAC,MAAM,CAAC,iBAAiB,YAAY,kBAAAvE,EAAiB,EAAE,SAAsBwE,EAAMC,EAAY,CAAC,GAAGvC,GAA4CgC,EAAgB,SAAS,CAAcM,EAAMxF,EAAO,IAAI,CAAC,GAAGoD,EAAU,UAAUsC,EAAG3E,GAAkB,GAAGqE,GAAsB,iBAAiBnC,CAAS,EAAE,IAAIL,GAA6BqB,EAAK,MAAM,CAAC,GAAGjB,CAAK,EAAE,SAAS,CAAcsC,EAAKK,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAQ,EAAE,EAAE,SAAsBL,EAAKM,EAAU,CAAC,UAAU,2BAA2B,aAAa,GAAK,SAAsBN,EAAKO,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsByB,EAAKzF,GAAc,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeyF,EAAKO,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,QAAQiC,EAA0B,CAAC,EAAE,YAAY,IAAI,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,mQAAmQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,QAAQA,EAA0B,CAAC,EAAE,YAAY,IAAI,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,mQAAmQ,CAAC,CAAC,EAAE,SAAsBR,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,YAAY,IAAI,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,mQAAmQ,EAAE,UAAU,gBAAgB,mBAAmB,qBAAqB,GAAG5B,EAAU,KAAK,qBAAqB,IAAIE,EAAK,SAAsBmB,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,KAAK,OAAO,SAAS,CAAcF,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,mBAAmB,KAAK,mBAAmB,SAAsBA,EAAKO,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,MAAM,QAAQiC,EAA0B,IAAI,EAAE,YAAY,IAAI,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,SAAS,IAAI,0FAA0F,OAAO,sQAAsQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,MAAM,QAAQA,EAA0B,IAAI,EAAE,YAAY,IAAI,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,SAAS,IAAI,0FAA0F,OAAO,sQAAsQ,CAAC,CAAC,EAAE,SAAsBR,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,MAAM,YAAY,IAAI,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,SAAS,IAAI,0FAA0F,OAAO,sQAAsQ,EAAE,UAAU,gBAAgB,mBAAmB,mBAAmB,KAAK,kBAAkB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeT,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,sBAAsB,KAAK,sBAAsB,SAAsBA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,uBAAuB,KAAK,sBAAsB,CAAC,CAAC,CAAC,EAAEhB,EAAY,GAAgBgB,EAAK,MAAM,CAAC,UAAU,+CAA+C,mBAAmB,sBAAsB,KAAK,sBAAsB,SAAsBA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,uBAAuB,KAAK,sBAAsB,CAAC,CAAC,CAAC,EAAeE,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,UAAU,SAAS,CAAcF,EAAKO,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,kBAAkB5C,CAAkB,EAAE,UAAU,CAAC,kBAAkBA,CAAkB,CAAC,EAAE,SAAsBuE,EAAMxF,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,kBAAkB,KAAK,kBAAkB,MAAM,CAAC,OAAO,EAAE,EAAE,SAAS,CAAcwF,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,cAAc,KAAK,cAAc,SAAS,CAAcF,EAAKO,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQiC,EAA0B,kBAAkB,EAAE,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQA,EAA0B,iBAAiB,EAAE,IAAI,sEAAsE,CAAC,CAAC,EAAE,SAAsBR,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,sEAAsE,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,EAAeP,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,cAAc,KAAK,cAAc,SAAS,CAAcF,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,cAAc,KAAK,cAAc,SAAsBA,EAAKU,EAAS,CAAC,sBAAsB,GAAK,SAAsBV,EAAWW,EAAS,CAAC,SAAsBX,EAAK,IAAI,CAAC,MAAM,CAAC,qBAAqB,sBAAsB,uBAAuB,MAAM,EAAE,SAAsBA,EAAK,OAAO,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,qCAAqC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,wBAAwB,EAAE,SAAS,kBAAkB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,mBAAmB,MAAM,CAAC,aAAa,EAAE,KAAK,mBAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKU,EAAS,CAAC,sBAAsB,GAAK,SAAsBV,EAAWW,EAAS,CAAC,SAAsBX,EAAK,IAAI,CAAC,MAAM,CAAC,qBAAqB,sBAAsB,uBAAuB,MAAM,EAAE,SAAsBA,EAAK,OAAO,CAAC,MAAM,CAAC,kBAAkB,WAAW,uBAAuB,UAAU,qBAAqB,SAAS,sBAAsB,wBAAwB,EAAE,SAAS,kBAAkB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,mBAAmB,MAAM,CAAC,OAAO,EAAE,KAAK,mBAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKO,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsByB,EAAWW,EAAS,CAAC,SAAsBT,EAAM,IAAI,CAAC,MAAM,CAAC,qBAAqB,OAAO,uBAAuB,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,CAAC,aAA0BF,EAAK,OAAO,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,2CAA2C,uBAAuB,KAAK,EAAE,SAAS,GAAG,CAAC,EAAE,WAAwBA,EAAK,OAAO,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,uBAAuB,MAAM,sBAAsB,kBAAkB,EAAE,SAAS,GAAG,CAAC,EAAE,qBAAkCA,EAAK,OAAO,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,uBAAuB,MAAM,sBAAsB,kBAAkB,EAAE,SAAS,GAAG,CAAC,EAAE,QAAqBA,EAAK,OAAO,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,uBAAuB,MAAM,sBAAsB,kBAAkB,EAAE,SAAS,iBAAiB,CAAC,EAAE,IAAI,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,iBAAiB,YAAY,CAAC,CAAC,EAAE,SAAsBA,EAAKU,EAAS,CAAC,sBAAsB,GAAK,SAAsBV,EAAWW,EAAS,CAAC,SAAsBT,EAAM,IAAI,CAAC,MAAM,CAAC,qBAAqB,OAAO,uBAAuB,MAAM,EAAE,SAAS,CAAcF,EAAK,OAAO,CAAC,MAAM,CAAC,kBAAkB,WAAW,uBAAuB,UAAU,qBAAqB,OAAO,sBAAsB,wBAAwB,EAAE,SAAS,YAAY,CAAC,EAAeA,EAAK,OAAO,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,wCAAwC,qBAAqB,OAAO,uBAAuB,MAAM,sBAAsB,wBAAwB,EAAE,SAAS,GAAG,CAAC,EAAeA,EAAK,OAAO,CAAC,MAAM,CAAC,kBAAkB,WAAW,uBAAuB,UAAU,qBAAqB,OAAO,sBAAsB,wBAAwB,EAAE,SAAS,UAAU,CAAC,EAAeA,EAAK,OAAO,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,oCAAoC,qBAAqB,OAAO,uBAAuB,MAAM,sBAAsB,sBAAsB,EAAE,SAAS,GAAG,CAAC,EAAeA,EAAK,OAAO,CAAC,MAAM,CAAC,kBAAkB,WAAW,uBAAuB,UAAU,qBAAqB,OAAO,sBAAsB,wBAAwB,EAAE,SAAS,oBAAoB,CAAC,EAAeA,EAAK,OAAO,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,oCAAoC,qBAAqB,OAAO,uBAAuB,MAAM,sBAAsB,sBAAsB,EAAE,SAAS,GAAG,CAAC,EAAeA,EAAK,OAAO,CAAC,MAAM,CAAC,kBAAkB,WAAW,uBAAuB,UAAU,qBAAqB,OAAO,sBAAsB,wBAAwB,EAAE,SAAS,OAAO,CAAC,EAAeA,EAAK,OAAO,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,oCAAoC,qBAAqB,OAAO,uBAAuB,MAAM,sBAAsB,sBAAsB,EAAE,SAAS,iBAAiB,CAAC,EAAeA,EAAK,OAAO,CAAC,MAAM,CAAC,kBAAkB,WAAW,uBAAuB,UAAU,qBAAqB,OAAO,sBAAsB,wBAAwB,EAAE,SAAS,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,+DAA+D,MAAM,CAAC,QAAQ,iBAAiB,YAAY,EAAE,KAAK,+DAA+D,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAEf,EAAa,GAAgBiB,EAAM,MAAM,CAAC,UAAU,6DAA6D,SAAS,CAAcF,EAAKO,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQiC,EAA0B,iBAAiB,EAAE,MAAM,UAAU,IAAI,sEAAsE,OAAO,gWAAgW,CAAC,CAAC,EAAE,SAAsBR,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,sEAAsE,OAAO,gWAAgW,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,EAAeT,EAAKO,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQiC,EAA0B,iBAAiB,EAAE,MAAM,UAAU,IAAI,sEAAsE,OAAO,gWAAgW,CAAC,CAAC,EAAE,SAAsBR,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,sEAAsE,OAAO,gWAAgW,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEvB,EAAa,GAAgBc,EAAK,MAAM,CAAC,UAAU,gCAAgC,SAAsBA,EAAKO,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,WAAW,IAAI,sEAAsE,OAAO,gWAAgW,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQiC,EAA0B,kBAAkB,EAAE,MAAM,QAAQ,IAAI,sEAAsE,OAAO,gWAAgW,CAAC,CAAC,EAAE,SAAsBR,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,aAAa,IAAI,sEAAsE,OAAO,gWAAgW,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeT,EAAKO,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,kBAAkB5C,CAAkB,EAAE,UAAU,CAAC,kBAAkBA,CAAkB,CAAC,EAAE,SAAsBuE,EAAMxF,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,iBAAiB,KAAK,iBAAiB,MAAM,CAAC,OAAO,EAAE,EAAE,SAAS,CAAcwF,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,cAAc,KAAK,cAAc,SAAS,CAAcF,EAAKO,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQiC,EAA0B,kBAAkB,EAAE,IAAI,qEAAqE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQA,EAA0B,kBAAkB,EAAE,IAAI,qEAAqE,CAAC,CAAC,EAAE,SAAsBR,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,SAAS,CAAC,CAAC,CAAC,EAAeP,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,cAAc,KAAK,cAAc,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,eAAe,mBAAmB,cAAc,KAAK,cAAc,SAAS,CAAcF,EAAKU,EAAS,CAAC,sBAAsB,GAAK,SAAsBV,EAAWW,EAAS,CAAC,SAAsBX,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,qBAAqB,SAAS,uBAAuB,MAAM,uBAAuB,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,YAAY,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,WAAW,MAAM,CAAC,aAAa,EAAE,KAAK,WAAW,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKY,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,KAAK,QAAQ,MAAM,CAAC,OAAO,EAAE,EAAE,IAAI;AAAA;AAAA;AAAA,EAAovD,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeZ,EAAKU,EAAS,CAAC,sBAAsB,GAAK,SAAsBV,EAAWW,EAAS,CAAC,SAAsBX,EAAK,IAAI,CAAC,MAAM,CAAC,qBAAqB,SAAS,uBAAuB,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,YAAY,MAAM,CAAC,OAAO,EAAE,KAAK,YAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKO,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsByB,EAAWW,EAAS,CAAC,SAAsBT,EAAM,IAAI,CAAC,MAAM,CAAC,qBAAqB,OAAO,uBAAuB,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,CAAC,sDAAmEF,EAAK,OAAO,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,uBAAuB,MAAM,sBAAsB,kBAAkB,EAAE,SAAS,0BAA0B,CAAC,EAAE,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKU,EAAS,CAAC,sBAAsB,GAAK,SAAsBV,EAAWW,EAAS,CAAC,SAAsBT,EAAM,IAAI,CAAC,MAAM,CAAC,uBAAuB,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,CAAC,sDAAmEF,EAAK,OAAO,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,uBAAuB,MAAM,sBAAsB,kBAAkB,EAAE,SAAS,0BAA0B,CAAC,EAAE,GAAG,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,oFAA+E,MAAM,CAAC,YAAY,EAAE,KAAK,oFAA+E,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKO,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,QAAQ,IAAI,uEAAuE,OAAO,sQAAsQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQiC,EAA0B,kBAAkB,EAAE,MAAM,QAAQ,IAAI,uEAAuE,OAAO,sQAAsQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQA,EAA0B,kBAAkB,EAAE,MAAM,QAAQ,IAAI,uEAAuE,OAAO,sQAAsQ,CAAC,CAAC,EAAE,SAAsBR,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,UAAU,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,UAAU,iBAAiB,mBAAmB,WAAW,KAAK,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeT,EAAKO,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,CAAC,OAAO,EAAE,EAAE,kBAAkB5C,CAAkB,EAAE,UAAU,CAAC,MAAM,CAAC,OAAO,EAAE,EAAE,kBAAkBA,CAAkB,CAAC,EAAE,SAAsBuE,EAAMxF,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,KAAK,gBAAgB,MAAM,CAAC,OAAO,EAAE,EAAE,SAAS,CAAcwF,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,cAAc,KAAK,cAAc,SAAS,CAAcF,EAAKO,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQiC,EAA0B,iBAAiB,EAAE,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQA,EAA0B,iBAAiB,EAAE,IAAI,sEAAsE,CAAC,CAAC,EAAE,SAAsBR,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,IAAI,sEAAsE,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,EAAeP,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,cAAc,KAAK,cAAc,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,cAAc,KAAK,cAAc,SAAS,CAAcF,EAAKU,EAAS,CAAC,sBAAsB,GAAK,SAAsBV,EAAWW,EAAS,CAAC,SAAsBX,EAAK,IAAI,CAAC,MAAM,CAAC,qBAAqB,sBAAsB,uBAAuB,MAAM,EAAE,SAAsBA,EAAK,OAAO,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,qCAAqC,qBAAqB,SAAS,uBAAuB,MAAM,sBAAsB,wBAAwB,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,WAAW,MAAM,CAAC,aAAa,EAAE,KAAK,WAAW,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKY,EAAI,CAAC,UAAU,eAAe,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,KAAK,QAAQ,MAAM,CAAC,OAAO,EAAE,EAAE,IAAI;AAAA;AAAA;AAAA,EAAovD,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeZ,EAAKU,EAAS,CAAC,sBAAsB,GAAK,SAAsBV,EAAWW,EAAS,CAAC,SAAsBX,EAAK,IAAI,CAAC,MAAM,CAAC,qBAAqB,sBAAsB,uBAAuB,MAAM,EAAE,SAAsBA,EAAK,OAAO,CAAC,MAAM,CAAC,kBAAkB,WAAW,uBAAuB,UAAU,qBAAqB,SAAS,sBAAsB,wBAAwB,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,YAAY,MAAM,CAAC,OAAO,EAAE,KAAK,YAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKO,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsByB,EAAWW,EAAS,CAAC,SAAsBT,EAAM,IAAI,CAAC,MAAM,CAAC,qBAAqB,OAAO,uBAAuB,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,CAAC,oCAAiDF,EAAK,OAAO,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,uBAAuB,MAAM,sBAAsB,kBAAkB,EAAE,SAAS,0BAA0B,CAAC,EAAE,GAAG,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,YAAY,CAAC,CAAC,EAAE,SAAsBA,EAAKU,EAAS,CAAC,sBAAsB,GAAK,SAAsBV,EAAWW,EAAS,CAAC,SAAsBT,EAAM,IAAI,CAAC,MAAM,CAAC,qBAAqB,OAAO,uBAAuB,MAAM,EAAE,SAAS,CAAcF,EAAK,OAAO,CAAC,MAAM,CAAC,kBAAkB,WAAW,uBAAuB,UAAU,qBAAqB,OAAO,sBAAsB,wBAAwB,EAAE,SAAS,mCAAmC,CAAC,EAAeA,EAAK,OAAO,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,oCAAoC,qBAAqB,OAAO,uBAAuB,MAAM,sBAAsB,sBAAsB,EAAE,SAAS,0BAA0B,CAAC,EAAeA,EAAK,OAAO,CAAC,MAAM,CAAC,kBAAkB,WAAW,uBAAuB,UAAU,qBAAqB,OAAO,sBAAsB,wBAAwB,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,6DAA6D,MAAM,CAAC,QAAQ,YAAY,EAAE,KAAK,6DAA6D,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKO,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,QAAQ,IAAI,uEAAuE,OAAO,sQAAsQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQiC,EAA0B,iBAAiB,EAAE,MAAM,QAAQ,IAAI,uEAAuE,OAAO,sQAAsQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQA,EAA0B,kBAAkB,EAAE,MAAM,QAAQ,IAAI,uEAAuE,OAAO,sQAAsQ,CAAC,CAAC,EAAE,SAAsBR,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,QAAQ,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeT,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,oBAAoB,KAAK,oBAAoB,SAAsBE,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,cAAc,KAAK,cAAc,SAAS,CAAcF,EAAKO,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsByB,EAAWW,EAAS,CAAC,SAAsBX,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,2DAA2D,qBAAqB,OAAO,0BAA0B,SAAS,sBAAsB,oBAAoB,EAAE,SAAS,iCAA4B,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKU,EAAS,CAAC,sBAAsB,GAAK,SAAsBV,EAAWW,EAAS,CAAC,SAAsBX,EAAK,IAAI,CAAC,MAAM,CAAC,qBAAqB,OAAO,0BAA0B,QAAQ,EAAE,SAAsBA,EAAK,OAAO,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,kBAAkB,qBAAqB,OAAO,sBAAsB,wBAAwB,EAAE,SAAS,iCAA4B,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,kCAA6B,MAAM,CAAC,0BAA0B,EAAE,KAAK,kCAA6B,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKU,EAAS,CAAC,sBAAsB,GAAK,SAAsBV,EAAWW,EAAS,CAAC,SAAsBX,EAAK,IAAI,CAAC,MAAM,CAAC,qBAAqB,OAAO,0BAA0B,QAAQ,EAAE,SAAsBA,EAAK,OAAO,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,kBAAkB,qBAAqB,OAAO,sBAAsB,SAAS,sBAAsB,wBAAwB,EAAE,SAAS,YAAY,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,aAAa,MAAM,CAAC,yBAAyB,EAAE,KAAK,aAAa,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeE,EAAM1F,GAAoB,CAAC,UAAU,gBAAgB,SAAS,CAAcwF,EAAKtF,EAAO,IAAI,CAAC,UAAU,gBAAgB,CAAC,EAAesF,EAAKtF,EAAO,IAAI,CAAC,UAAU,gBAAgB,CAAC,EAAesF,EAAKtF,EAAO,IAAI,CAAC,UAAU,gBAAgB,CAAC,EAAesF,EAAKtF,EAAO,IAAI,CAAC,UAAU,gBAAgB,CAAC,EAAesF,EAAKa,EAAK,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,OAAO,YAAY,aAAa,GAAM,aAAa,GAAK,SAAsBb,EAAKY,EAAI,CAAC,GAAG,IAAI,UAAU,8BAA8B,mBAAmB,aAAa,KAAK,QAAQ,gBAAgB,GAAG,eAAe,GAAG,KAAK,aAAa,IAAI,kxDAAkxD,kBAAkB9E,GAAmB,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAekE,EAAKO,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,QAAQiC,EAA0B,GAAG,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,wKAAwK,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,QAAQA,EAA0B,GAAG,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,wKAAwK,CAAC,CAAC,EAAE,SAAsBN,EAAMO,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,wKAAwK,EAAE,UAAU,gBAAgB,mBAAmB,0BAA0B,GAAGtB,EAAW,KAAK,0BAA0B,IAAIC,EAAK,SAAS,CAAcY,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,mBAAmB,KAAK,mBAAmB,SAAsBA,EAAKY,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,KAAK,QAAQ,gBAAgB,IAAI,eAAe,IAAI,KAAK,aAAa,IAAI,++EAA++E,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeV,EAAMvF,GAAgB,CAAC,kBAAkB,CAAC,WAAWqB,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAU,eAAeE,GAAW,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,IAAImD,EAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,mBAAmB,YAAY,GAAGC,EAAW,KAAK,YAAY,IAAIC,EAAK,SAAS,CAAcU,EAAKO,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,UAAU,SAAS,UAAU,SAAS,MAAM,sBAAsB,IAAI,sEAAsE,OAAO,gWAAgW,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,QAAQiC,EAA0B,MAAM,EAAE,UAAU,SAAS,UAAU,SAAS,MAAM,sBAAsB,IAAI,sEAAsE,OAAO,gWAAgW,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,QAAQA,EAA0B,MAAM,EAAE,UAAU,SAAS,UAAU,SAAS,MAAM,sBAAsB,IAAI,sEAAsE,OAAO,gWAAgW,CAAC,CAAC,EAAE,SAAsBR,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,UAAU,SAAS,UAAU,SAAS,MAAM,sBAAsB,IAAI,sEAAsE,OAAO,gWAAgW,EAAE,UAAU,iBAAiB,mBAAmB,yBAAyB,KAAK,wBAAwB,CAAC,CAAC,CAAC,EAAeT,EAAKO,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,UAAU,SAAS,UAAU,SAAS,MAAM,sBAAsB,IAAI,qEAAqE,OAAO,4VAA4V,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,QAAQiC,EAA0B,kBAAkB,EAAE,UAAU,SAAS,UAAU,SAAS,MAAM,qBAAqB,IAAI,qEAAqE,OAAO,4VAA4V,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,QAAQA,EAA0B,kBAAkB,EAAE,UAAU,SAAS,UAAU,SAAS,MAAM,sBAAsB,IAAI,qEAAqE,OAAO,4VAA4V,EAAE,MAAM,CAAC,OAAO,EAAE,CAAC,CAAC,EAAE,SAAsBR,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,UAAU,SAAS,UAAU,SAAS,MAAM,sBAAsB,IAAI,qEAAqE,OAAO,4VAA4V,EAAE,UAAU,iBAAiB,mBAAmB,yBAAyB,KAAK,yBAAyB,MAAM,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeP,EAAMvF,GAAgB,CAAC,kBAAkB,CAAC,WAAWuB,EAAW,EAAE,sBAAsB,GAAK,gBAAgBH,GAAU,eAAeK,GAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,mBAAmB,cAAc,KAAK,cAAc,SAAS,CAAc4D,EAAKU,EAAS,CAAC,sBAAsB,GAAK,SAAsBV,EAAWW,EAAS,CAAC,SAAsBX,EAAK,IAAI,CAAC,MAAM,CAAC,qBAAqB,OAAO,0BAA0B,QAAQ,EAAE,SAAsBA,EAAK,OAAO,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,YAAY,qBAAqB,OAAO,uBAAuB,MAAM,sBAAsB,wBAAwB,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,iBAAiB,MAAM,CAAC,gBAAgB,EAAE,KAAK,iBAAiB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKU,EAAS,CAAC,sBAAsB,GAAK,SAAsBV,EAAWW,EAAS,CAAC,SAAsBT,EAAM,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,6BAA6B,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,oBAAoB,EAAE,SAAS,CAAC,OAAoBF,EAAK,OAAO,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,sBAAsB,SAAS,sBAAsB,kBAAkB,EAAE,SAAS,eAAe,CAAC,EAAE,6CAA6C,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,+DAA+D,MAAM,CAAC,2BAA2B,yBAAyB,EAAE,KAAK,+DAA+D,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeE,EAAMvF,GAAgB,CAAC,kBAAkB,CAAC,WAAW2B,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAW,eAAeE,GAAW,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,IAAI6C,EAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,mBAAmB,gBAAgB,KAAK,gBAAgB,SAAS,CAAcY,EAAKK,EAA0B,CAAC,SAAsBL,EAAKM,EAAU,CAAC,UAAU,0BAA0B,SAAsBN,EAAKlF,GAAM,CAAC,gBAAgB,mBAAmB,aAAa,GAAG,iBAAiB,GAAG,kBAAkB,GAAG,SAAS,GAAM,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,SAAS,YAAY,KAAK,GAAK,MAAM,GAAK,UAAU,QAAQ,QAAQ,GAAK,cAAc,GAAM,QAAQ,uEAAuE,QAAQ,SAAS,OAAO,oHAAoH,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,cAAc,GAAG,eAAe,GAAG,OAAO,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAekF,EAAKO,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,MAAM,eAAe,IAAI,QAAQiC,EAA0B,IAAI,EAAE,YAAY,KAAK,WAAW,IAAI,MAAM,QAAQ,IAAI,0FAA0F,OAAO,wKAAwK,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,MAAM,eAAe,IAAI,QAAQA,EAA0B,IAAI,EAAE,YAAY,KAAK,WAAW,IAAI,MAAM,QAAQ,IAAI,0FAA0F,OAAO,wKAAwK,CAAC,CAAC,EAAE,SAAsBR,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,MAAM,eAAe,IAAI,YAAY,KAAK,WAAW,IAAI,MAAM,QAAQ,IAAI,0FAA0F,OAAO,wKAAwK,EAAE,UAAU,iBAAiB,mBAAmB,4CAA4C,KAAK,4CAA4C,SAAsBT,EAAK,MAAM,CAAC,UAAU,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,mBAAmB,KAAK,mBAAmB,SAAsBA,EAAKY,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,KAAK,QAAQ,gBAAgB,IAAI,eAAe,IAAI,KAAK,aAAa,MAAM,CAAC,OAAO,GAAG,EAAE,IAAI,y/EAAy/E,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeZ,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,cAAc,KAAK,cAAc,SAAsBE,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcF,EAAKU,EAAS,CAAC,sBAAsB,GAAK,SAAsBV,EAAWW,EAAS,CAAC,SAAsBT,EAAM,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,6BAA6B,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,oBAAoB,EAAE,SAAS,CAAC,yBAAsCF,EAAK,OAAO,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,sBAAsB,SAAS,sBAAsB,kBAAkB,EAAE,SAAS,WAAW,CAAC,EAAE,mCAAmC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,mEAAmE,MAAM,CAAC,2BAA2B,yBAAyB,EAAE,KAAK,mEAAmE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKa,EAAK,CAAC,KAAK,4DAA4D,OAAO,YAAY,SAAsBb,EAAKtF,EAAO,EAAE,CAAC,UAAU,8BAA8B,WAAW+B,GAAW,SAAsBuD,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKY,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,uDAAuD,KAAK,QAAQ,gBAAgB,GAAG,eAAe,IAAI,KAAK,uDAAuD,IAAI,6rOAA6rO,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeZ,EAAKc,GAAa,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,CAAC,EAAE,SAASC,GAA4Bf,EAAKO,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,MAAM,EAAE,UAAU,CAAC,EAAE,MAAM,CAAC,EAAE,SAAsByB,EAAKK,EAA0B,CAAC,OAAO,GAAG,SAAsBL,EAAKM,EAAU,CAAC,UAAU,0BAA0B,SAAsBN,EAAKO,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUwC,EAAc,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAc,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAc,CAAC,CAAC,CAAC,EAAE,SAAsBf,EAAKhF,GAAgB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,4BAA4B,UAAU,GAAK,MAAM,OAAO,UAAU+F,EAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAef,EAAKO,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,MAAM,EAAE,UAAU,CAAC,EAAE,MAAM,CAAC,EAAE,SAAsByB,EAAKK,EAA0B,CAAC,OAAO,GAAG,SAAsBL,EAAKM,EAAU,CAAC,UAAU,0BAA0B,SAAsBN,EAAK9E,GAAoB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe8E,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,qBAAqB,KAAK,qBAAqB,SAAsBE,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,UAAU,SAAS,CAAcA,EAAMvF,GAAgB,CAAC,kBAAkB,CAAC,WAAWuB,EAAW,EAAE,sBAAsB,GAAK,gBAAgBH,GAAU,eAAeK,GAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,mBAAmB,cAAc,KAAK,cAAc,SAAS,CAAc4D,EAAKU,EAAS,CAAC,sBAAsB,GAAK,SAAsBV,EAAWW,EAAS,CAAC,SAAsBT,EAAM,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,wBAAwB,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,oBAAoB,EAAE,SAAS,CAAC,MAAmBF,EAAK,OAAO,CAAC,MAAM,CAAC,sBAAsB,kBAAkB,EAAE,SAAS,KAAK,CAAC,EAAE,KAAkBA,EAAK,KAAK,CAAC,CAAC,EAAE,cAAc,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,iBAAiB,MAAM,CAAC,gBAAgB,EAAE,KAAK,iBAAiB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKU,EAAS,CAAC,sBAAsB,GAAK,SAAsBR,EAAYS,EAAS,CAAC,SAAS,CAAcX,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,6BAA6B,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,oBAAoB,EAAE,SAAS,2EAA2E,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,6BAA6B,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,oBAAoB,EAAE,SAAS,0BAA0B,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,+DAA+D,MAAM,CAAC,0BAA0B,EAAE,KAAK,+DAA+D,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeE,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,QAAQ,SAAS,CAACT,EAAa,GAAgBO,EAAKY,EAAI,CAAC,UAAU,6DAA6D,mBAAmB,UAAU,KAAK,QAAQ,gBAAgB,IAAI,eAAe,IAAI,KAAK,UAAU,IAAI,81FAA81F,mBAAmB,EAAI,CAAC,EAAeV,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,KAAK,OAAO,SAAS,CAAcF,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,KAAK,MAAM,CAAC,EAAeE,EAAM,MAAM,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,UAAU,KAAK,UAAU,SAAS,CAAcF,EAAKO,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQiC,EAA0B,IAAI,EAAE,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQA,EAA0B,IAAI,EAAE,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,CAAC,EAAE,SAAsBR,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,iBAAiB,mBAAmB,SAAS,KAAK,QAAQ,CAAC,CAAC,CAAC,EAAeT,EAAKY,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,cAAc,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,IAAI,KAAK,cAAc,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAmuyC,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeV,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,UAAU,SAAS,CAAcF,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBE,EAAMxF,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,iBAAiB,KAAK,iBAAiB,MAAM,CAAC,OAAO,IAAI,EAAE,kBAAkBoB,GAAmB,SAAS,CAAckE,EAAKU,EAAS,CAAC,sBAAsB,GAAK,SAAsBV,EAAWW,EAAS,CAAC,SAAsBX,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,6BAA6B,qBAAqB,OAAO,uBAAuB,MAAM,sBAAsB,oBAAoB,EAAE,SAAS,WAAI,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,YAAK,MAAM,CAAC,sBAAsB,EAAE,KAAK,YAAK,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKU,EAAS,CAAC,sBAAsB,GAAK,SAAsBV,EAAWW,EAAS,CAAC,SAAsBX,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,6BAA6B,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,qBAAqB,EAAE,SAAS,2BAA2B,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,4BAA4B,MAAM,CAAC,sBAAsB,EAAE,KAAK,4BAA4B,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBE,EAAMxF,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,iBAAiB,KAAK,iBAAiB,MAAM,CAAC,OAAO,GAAG,EAAE,kBAAkBoB,GAAmB,SAAS,CAAckE,EAAKU,EAAS,CAAC,sBAAsB,GAAK,SAAsBV,EAAWW,EAAS,CAAC,SAAsBX,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,6BAA6B,qBAAqB,OAAO,uBAAuB,MAAM,sBAAsB,oBAAoB,EAAE,SAAS,WAAI,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,YAAK,MAAM,CAAC,sBAAsB,EAAE,KAAK,YAAK,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKU,EAAS,CAAC,sBAAsB,GAAK,SAAsBV,EAAWW,EAAS,CAAC,SAAsBX,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,6BAA6B,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,qBAAqB,EAAE,SAAS,sBAAiB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,uBAAkB,MAAM,CAAC,sBAAsB,EAAE,KAAK,uBAAkB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,cAAc,KAAK,cAAc,SAAsBE,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcF,EAAKY,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,IAAI,KAAK,SAAS,IAAI;AAAA;AAAA;AAAA,EAA+6C,mBAAmB,EAAI,CAAC,EAAeZ,EAAKU,EAAS,CAAC,sBAAsB,GAAK,SAAsBV,EAAWW,EAAS,CAAC,SAAsBX,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,6BAA6B,qBAAqB,OAAO,uBAAuB,MAAM,sBAAsB,oBAAoB,EAAE,SAAS,WAAI,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,YAAK,MAAM,CAAC,sBAAsB,EAAE,KAAK,YAAK,MAAM,CAAC,OAAO,EAAE,EAAE,kBAAkBlE,GAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAekE,EAAKU,EAAS,CAAC,sBAAsB,GAAK,SAAsBV,EAAWW,EAAS,CAAC,SAAsBX,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,6BAA6B,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,qBAAqB,EAAE,SAAS,YAAY,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,eAAe,MAAM,CAAC,sBAAsB,EAAE,KAAK,eAAe,MAAM,CAAC,OAAO,EAAE,EAAE,kBAAkBlE,GAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE2D,EAAa,GAAgBO,EAAK,MAAM,CAAC,UAAU,8DAA8D,cAAc,GAAK,mBAAmB,iBAAiB,KAAK,gBAAgB,CAAC,CAAC,CAAC,CAAC,EAAeE,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,KAAK,SAAS,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,UAAU,SAAS,CAAcF,EAAKO,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,EAAE,UAAU,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,SAAsByB,EAAKtF,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,cAAc,KAAK,cAAc,MAAM,CAAC,OAAO,CAAC,EAAE,SAAsBsF,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,cAAc,KAAK,cAAc,SAAsBA,EAAKU,EAAS,CAAC,sBAAsB,GAAK,SAAsBV,EAAWW,EAAS,CAAC,SAAsBX,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,6BAA6B,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,oBAAoB,EAAE,SAAS,oBAAoB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,2BAAsB,MAAM,CAAC,sBAAsB,EAAE,KAAK,2BAAsB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKO,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,kBAAkB5C,CAAkB,CAAC,EAAE,SAAsBqE,EAAKtF,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,cAAc,KAAK,cAAc,MAAM,CAAC,OAAO,EAAE,EAAE,SAAsBsF,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,cAAc,KAAK,cAAc,SAAsBA,EAAKU,EAAS,CAAC,sBAAsB,GAAK,SAAsBV,EAAWW,EAAS,CAAC,SAAsBX,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,6BAA6B,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,oBAAoB,EAAE,SAAS,+DAAgD,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,kDAAkD,MAAM,CAAC,sBAAsB,EAAE,KAAK,kDAAkD,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,KAAK,MAAM,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKO,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,CAAC,OAAO,GAAG,CAAC,EAAE,UAAU,CAAC,MAAM,CAAC,OAAO,GAAG,CAAC,CAAC,EAAE,SAAsByB,EAAKtF,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,KAAK,OAAO,SAAsBsF,EAAKO,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,IAAI,ghEAAghE,aAAa,UAAU,CAAC,EAAE,SAAsByB,EAAKY,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,OAAO,WAAW,KAAK,aAAa,QAAQ,EAAE,IAAI,ulEAAulE,aAAa,YAAY,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAElB,EAAa,GAAgBM,EAAKY,EAAI,CAAC,UAAU,6DAA6D,mBAAmB,gBAAgB,KAAK,QAAQ,gBAAgB,IAAI,eAAe,IAAI,KAAK,gBAAgB,IAAI,+sNAA+sN,mBAAmB,EAAI,CAAC,EAAE5B,EAAY,GAAgBgB,EAAKY,EAAI,CAAC,UAAU,8CAA8C,mBAAmB,eAAe,KAAK,QAAQ,gBAAgB,IAAI,eAAe,IAAI,KAAK,eAAe,IAAI,ivQAAivQ,mBAAmB,EAAI,CAAC,EAAEnB,EAAa,GAAgBO,EAAK,MAAM,CAAC,UAAU,6DAA6D,cAAc,GAAK,mBAAmB,iBAAiB,KAAK,gBAAgB,CAAC,CAAC,CAAC,CAAC,EAAeE,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,QAAQ,SAAS,CAACT,EAAa,GAAgBO,EAAKY,EAAI,CAAC,UAAU,6DAA6D,mBAAmB,UAAU,KAAK,QAAQ,gBAAgB,IAAI,eAAe,IAAI,KAAK,UAAU,MAAM,CAAC,OAAO,GAAG,EAAE,IAAI,81FAA81F,mBAAmB,EAAI,CAAC,EAAeZ,EAAKO,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,CAAC,MAAM,GAAG,CAAC,CAAC,EAAE,SAAsB2B,EAAMxF,EAAO,IAAI,CAAC,UAAU,iBAAiB,SAAS,CAACiF,GAAa,GAAgBK,EAAKY,EAAI,CAAC,UAAU,gCAAgC,mBAAmB,iBAAiB,KAAK,gBAAgB,gBAAgB,IAAI,eAAe,IAAI,KAAK,iBAAiB,IAAI;AAAA;AAAA;AAAA,EAAold,mBAAmB,EAAI,CAAC,EAAeZ,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,KAAK,MAAM,CAAC,EAAeA,EAAKO,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,MAAM,eAAe,IAAI,QAAQiC,EAA0B,MAAM,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,yFAAyF,OAAO,uKAAuK,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,MAAM,eAAe,IAAI,QAAQA,EAA0B,kBAAkB,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,yFAAyF,OAAO,uKAAuK,CAAC,CAAC,EAAE,SAAsBR,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,MAAM,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,yFAAyF,OAAO,uKAAuK,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,QAAQ,MAAM,CAAC,OAAO,GAAG,CAAC,CAAC,CAAC,CAAC,EAAeT,EAAKO,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQiC,EAA0B,MAAM,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,yFAAyF,OAAO,uKAAuK,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQA,EAA0B,iBAAiB,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,yFAAyF,OAAO,uKAAuK,CAAC,CAAC,EAAE,SAAsBR,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,yFAAyF,OAAO,uKAAuK,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,QAAQ,MAAM,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeT,EAAKO,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQiC,EAA0B,IAAI,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,yFAAyF,OAAO,uKAAuK,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQA,EAA0B,kBAAkB,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,yFAAyF,OAAO,uKAAuK,CAAC,CAAC,EAAE,SAAsBR,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,yFAAyF,OAAO,uKAAuK,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,QAAQ,MAAM,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEhB,EAAa,GAAgBO,EAAK,MAAM,CAAC,UAAU,8DAA8D,cAAc,GAAK,mBAAmB,iBAAiB,KAAK,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKO,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,eAAe,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQiC,EAA0B,iBAAiB,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,MAAM,CAAC,OAAO,EAAE,EAAE,kBAAkB9D,EAAkB,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,eAAe,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQ8D,EAA0B,iBAAiB,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,MAAM,CAAC,OAAO,EAAE,EAAE,kBAAkB,MAAS,CAAC,EAAE,SAAsBR,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,eAAe,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,QAAQ,kBAAkB9E,CAAkB,CAAC,CAAC,CAAC,EAAeqE,EAAKO,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,eAAe,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQiC,EAA0B,iBAAiB,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,MAAM,CAAC,OAAO,EAAE,EAAE,kBAAkB9D,EAAkB,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,eAAe,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQ8D,EAA0B,iBAAiB,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,MAAM,CAAC,OAAO,EAAE,EAAE,kBAAkB,MAAS,CAAC,EAAE,SAAsBR,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,eAAe,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,QAAQ,kBAAkB9E,CAAkB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqE,EAAKO,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQiC,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,sEAAsE,OAAO,uKAAuK,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQA,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,sEAAsE,OAAO,uKAAuK,CAAC,CAAC,EAAE,SAAsBR,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,sEAAsE,OAAO,uKAAuK,EAAE,UAAU,gBAAgB,mBAAmB,8BAA8B,KAAK,8BAA8B,SAAsBP,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,gBAAgB,KAAK,gBAAgB,SAAS,CAAcF,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,KAAK,aAAa,SAAsBA,EAAKO,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQiC,EAA0B,MAAM,EAAE,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,qKAAqK,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQA,EAA0B,MAAM,EAAE,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,uEAAuE,OAAO,uKAAuK,CAAC,CAAC,EAAE,SAAsBR,EAAKS,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,uEAAuE,OAAO,uKAAuK,EAAE,UAAU,iBAAiB,mBAAmB,aAAa,KAAK,YAAY,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeP,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,UAAU,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,KAAK,OAAO,SAAS,CAAcF,EAAKO,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsByB,EAAWW,EAAS,CAAC,SAAsBX,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,2DAA2D,qBAAqB,OAAO,0BAA0B,SAAS,sBAAsB,oBAAoB,EAAE,SAAS,kBAAkB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWW,EAAS,CAAC,SAAsBX,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,2DAA2D,qBAAqB,OAAO,0BAA0B,SAAS,sBAAsB,oBAAoB,EAAE,SAAS,kBAAkB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKU,EAAS,CAAC,sBAAsB,GAAK,SAAsBV,EAAWW,EAAS,CAAC,SAAsBX,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,2DAA2D,qBAAqB,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,kBAAkB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,mBAAmB,MAAM,CAAC,0BAA0B,EAAE,KAAK,mBAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKO,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB2B,EAAYS,EAAS,CAAC,SAAS,CAAcX,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,6BAA6B,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,oBAAoB,EAAE,SAAS,uGAAkG,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,6BAA6B,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,oBAAoB,EAAE,SAAsBA,EAAK,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,6BAA6B,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,oBAAoB,EAAE,SAAS,gCAAgC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBE,EAAYS,EAAS,CAAC,SAAS,CAAcX,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,6BAA6B,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,oBAAoB,EAAE,SAAS,uGAAkG,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,6BAA6B,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,oBAAoB,EAAE,SAAsBA,EAAK,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,6BAA6B,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,oBAAoB,EAAE,SAAS,gCAAgC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKU,EAAS,CAAC,sBAAsB,GAAK,SAAsBR,EAAYS,EAAS,CAAC,SAAS,CAAcX,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,6BAA6B,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,oBAAoB,EAAE,SAAS,uGAAkG,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,6BAA6B,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,oBAAoB,EAAE,SAAsBA,EAAK,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,6BAA6B,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,oBAAoB,EAAE,SAAS,gCAAgC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,uIAAkI,MAAM,CAAC,0BAA0B,EAAE,KAAK,uIAAkI,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKO,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,MAAM,EAAE,UAAU,CAAC,MAAM,iCAAiC,EAAE,MAAM,CAAC,EAAE,SAAsByB,EAAKK,EAA0B,CAAC,OAAO,GAAG,SAAsBL,EAAKM,EAAU,CAAC,UAAU,0BAA0B,SAAsBN,EAAKO,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,CAAC,MAAM,MAAM,CAAC,EAAE,UAAU,CAAC,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,WAAW,CAAC,EAAE,SAAsByB,EAAK5E,GAAc,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe8E,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,KAAK,YAAY,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,KAAK,YAAY,SAAS,CAAcF,EAAKO,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,QAAQiC,EAA0B,MAAM,EAAE,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,QAAQA,EAA0B,MAAM,EAAE,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,CAAC,EAAE,SAAsBN,EAAMO,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,KAAK,OAAO,SAAS,CAAcT,EAAKY,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,KAAK,SAAS,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAo+D,mBAAmB,EAAI,CAAC,EAAeZ,EAAKY,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,KAAK,aAAa,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA84J,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeV,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,KAAK,WAAW,SAAS,CAAcF,EAAKU,EAAS,CAAC,sBAAsB,GAAK,SAAsBV,EAAWW,EAAS,CAAC,SAAsBX,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,2DAA2D,qBAAqB,OAAO,0BAA0B,SAAS,sBAAsB,oBAAoB,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,iBAAiB,MAAM,CAAC,0BAA0B,EAAE,KAAK,iBAAiB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKU,EAAS,CAAC,sBAAsB,GAAK,SAAsBV,EAAWW,EAAS,CAAC,SAAsBX,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,6BAA6B,qBAAqB,OAAO,0BAA0B,SAAS,sBAAsB,0BAA0B,EAAE,SAAS,sBAAsB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,uBAAuB,MAAM,CAAC,0BAA0B,EAAE,KAAK,uBAAuB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKa,EAAK,CAAC,KAAK,4DAA4D,OAAO,YAAY,SAAsBb,EAAKtF,EAAO,EAAE,CAAC,UAAU,8BAA8B,WAAW+B,GAAW,SAAsBuD,EAAKY,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,uDAAuD,KAAK,QAAQ,gBAAgB,GAAG,eAAe,IAAI,KAAK,uDAAuD,IAAI,6rOAA6rO,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeZ,EAAK,MAAM,CAAC,UAAU,eAAe,SAAsBA,EAAKc,GAAa,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,CAAC,EAAE,SAASE,GAA6BhB,EAAKO,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,iBAAiB,EAAE,UAAU,CAAC,EAAE,iBAAiB,CAAC,EAAE,SAAsByB,EAAKK,EAA0B,CAAC,OAAO,GAAG,SAAsBL,EAAKM,EAAU,CAAC,UAAU,2BAA2B,SAAsBN,EAAKO,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUyC,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsBhB,EAAKhF,GAAgB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,4BAA4B,UAAU,GAAK,MAAM,OAAO,UAAUgG,EAAe,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehB,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,mBAAmB,KAAK,mBAAmB,SAAsBA,EAAKY,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,KAAK,QAAQ,gBAAgB,IAAI,eAAe,IAAI,KAAK,OAAO,MAAM,CAAC,OAAO,EAAE,EAAE,IAAI,k+EAAk+E,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeZ,EAAKO,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,iBAAiB,EAAE,UAAU,CAAC,EAAE,iBAAiB,CAAC,EAAE,SAAsByB,EAAKK,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,SAAsBL,EAAKM,EAAU,CAAC,UAAU,2BAA2B,SAAsBN,EAAKO,EAAkB,CAAC,WAAWhC,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsByB,EAAK1E,GAAc,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe0E,EAAK,MAAM,CAAC,UAAUI,EAAG3E,GAAkB,GAAGqE,EAAqB,EAAE,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQmB,GAAI,CAAC,kFAAkF,IAAItE,GAAS,8DAA8D,gFAAgF,mSAAmS,qKAAqK,gSAAgS,2SAA2S,+UAA+U,4MAA4M,mWAAmW,4SAA4S,kWAAkW,2TAA2T,+UAA+U,mpBAAmpB,6VAA6V,uVAAuV,4VAA4V,mVAAmV,keAAke,6VAA6V,oQAAoQ,+PAA+P,kHAAkH,qPAAqP,goBAAgoB,2HAA2H,gOAAgO,gOAAgO,kVAAkV,8VAA8V,qPAAqP,sPAAsP,iHAAiH,2cAA2c,2cAA2c,2cAA2c,2cAA2c,uOAAuO,+RAA+R,8IAA8I,mMAAmM,mJAAmJ,0LAA0L,uJAAuJ,4VAA4V,kOAAkO,+HAA+H,4MAA4M,mNAAmN,+sBAA+sB,iJAAiJ,mKAAmK,yRAAyR,mSAAmS,wNAAwN,gTAAgT,kHAAkH,iHAAiH,yLAAyL,kXAAkX,8RAA8R,6TAA6T,oOAAoO,iSAAiS,+LAA+L,oUAAoU,mXAAmX,+oBAA+oB,+FAA+F,+FAA+F,uUAAuU,6IAA6I,0zBAA0zB,gMAAgM,sJAAsJ,8yBAA8yB,yJAAyJ,uMAAuM,8QAA8Q,4QAA4Q,6PAA6P,ugBAAugB,sSAAsS,iTAAiT,gyBAAgyB,iUAAiU,uMAAuM,qZAAqZ,uJAAuJ,oHAAoH,kNAAkN,6OAA6O,qeAAqe,mIAAmI,0JAA0J,wLAAwL,sVAAsV,0JAA0J,wLAAwL,uJAAuJ,ueAAue,0RAA0R,wSAAwS,gRAAgR,gXAAgX,qTAAqT,8QAA8Q,ucAAuc,wSAAwS,uRAAuR,oHAAoH,mYAAmY,6TAA6T,yxBAAyxB,mLAAmL,oHAAoH,6RAA6R,mHAAmH,qTAAqT,kMAAkM,yQAAyQ,kSAAkS,4IAA4I,uHAAuH,yGAAyG,23TAA23T,wDAAwDA,GAAS,ivHAAivH,uDAAuDA,GAAS,qgMAAqgM,gCAAgCA,GAAS,wtNAAwtN,+bAA+b,EAS5/qQuE,GAAgBC,GAAQ/D,GAAU6D,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,MAAMA,GAAgB,aAAa,CAAC,OAAO,KAAK,MAAM,IAAI,EAAEG,GAASH,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,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,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,uGAAuG,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,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,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,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,uEAAuE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,uEAAuE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,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,cAAc,IAAI,uEAAuE,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,uEAAuE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,IAAI,yFAAyF,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,IAAI,2FAA2F,OAAO,KAAK,EAAE,CAAC,OAAO,UAAU,OAAO,SAAS,MAAM,SAAS,IAAI,+GAA+G,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,IAAI,wFAAwF,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,IAAI,4FAA4F,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,IAAI,4FAA4F,OAAO,KAAK,CAAC,CAAC,EAAE,GAAG7G,GAAmB,GAAGQ,GAAW,GAAGE,GAAqB,GAAGE,GAAyB,GAAGE,GAAmB,GAAGE,EAAkB,EAAE,CAAC,6BAA6B,EAAI,CAAC,EACt/O,IAAMiG,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,6BAA+B,OAAO,yBAA2B,OAAO,yBAA2B,QAAQ,sBAAwB,OAAO,uBAAyB,GAAG,qBAAuB,OAAO,oCAAsC,mMAAyO,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC",
  "names": ["ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "isPlayingRef", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "progress", "objectFit", "backgroundColor", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "posterEnabled", "startTimeProp", "volume", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "isPlaying", "ue", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "handleReady", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "HeroFonts", "getFonts", "Icon", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "SVG", "RichText2", "ComponentViewportProvider", "css", "FramerO1Zy8sRTa", "withCSS", "O1Zy8sRTa_default", "addPropertyControls", "ControlType", "addFonts", "HeroFonts", "getFonts", "Icon", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "RichText2", "ComponentViewportProvider", "css", "FramerZUR2dPXQc", "withCSS", "ZUR2dPXQc_default", "addFonts", "centerContent", "defaultContainerStyles", "centerContent", "useStore", "createStore", "withBounce", "Component", "props", "p", "CopilotNavBarFonts", "getFonts", "pIbknAxpY_default", "MotionDivWithBounce", "withBounce", "motion", "MotionDivWithFX", "withFX", "VideoFonts", "Video", "CopilotSiteLinkFonts", "Vw73PXnnr_default", "PrivacyPolicyButtonFonts", "ZUR2dPXQc_default", "DiscordButtonFonts", "O1Zy8sRTa_default", "CopilotFooterFonts", "e3hrQQrQM_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "transformTemplate2", "animation", "transition1", "animation1", "transition2", "transition3", "animation2", "animation3", "transition4", "animation4", "transition5", "animation5", "transformTemplate3", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "ref1", "pe", "elementId", "useRouteElementId", "ref2", "isDisplayed", "isDisplayed1", "isDisplayed2", "elementId1", "ref3", "elementId2", "ref4", "router", "useRouter", "isDisplayed3", "isDisplayed4", "isDisplayed5", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "cx", "ComponentViewportProvider", "Container", "PropertyOverrides2", "getLoadingLazyAtYPosition", "Image2", "RichText2", "x", "SVG", "Link", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "css", "FramerGWUUJNwuq", "withCSS", "GWUUJNwuq_default", "addFonts", "__FramerMetadata__"]
}
