{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js", "ssg:https://framerusercontent.com/modules/gJGNoa0g83XlHOtktKA9/KoT0BivTyBlxZ4PAxP03/Fsga4O7rX.js", "ssg:https://framerusercontent.com/modules/pdzSmnIVqzepghEzKyEC/BlZTfJt9dHfdTia98Vbx/ENSCE2bCW.js", "ssg:https://framerusercontent.com/modules/CbppYOoSWkEcmIx8OmxY/6C1amMTn4sGWLIyTqmXS/lZhZ8Mtyd.js", "ssg:https://framerusercontent.com/modules/zQQPYKOywm4Ecqm3mB5R/iHKK9ngQOR6RdHSUuG72/xtNFB9S4S-0.js", "ssg:https://framerusercontent.com/modules/zQQPYKOywm4Ecqm3mB5R/iHKK9ngQOR6RdHSUuG72/xtNFB9S4S-1.js", "ssg:https://framerusercontent.com/modules/zQQPYKOywm4Ecqm3mB5R/iHKK9ngQOR6RdHSUuG72/xtNFB9S4S.js", "ssg:https://framerusercontent.com/modules/zuwpCRTW8XAYTcgQgiu2/qNvuKWpx4NYnGENMYI9o/Aft1wM2t6.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget,RenderTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius,useRenderTarget}from\"https://framerusercontent.com/modules/G4IfyjvwmaeSBpdb4TWu/OIjZRBmWDcIE2B6qgG1j/index.js\";// https://framer.com/m/framer/default-utils.js@^0.45.0\nimport{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={}));const defaultVideo=\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\";// 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;}const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{// default props\nsrcType=\"URL\",srcUrl,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:startTimeProp=0,poster,playing:playingProp,progress,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const renderTarget=useRenderTarget();const isStaticRenderer=isOnCanvas||renderTarget===RenderTarget.export;const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isStaticRenderer won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isStaticRenderer?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isStaticRenderer?true:useInView(videoRef);const isCloseToViewport=isStaticRenderer?false:useInView(videoRef,{margin:\"10%\",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(isStaticRenderer)return;if(autoplayBehavior===\"on-viewport\")return;if(playingProp)play();else pause();},[autoplayBehavior,playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isStaticRenderer)return;// this also explicitly retries playing for videos that play on-mount, which could fail if they're not muted for example\nif(isInViewport&&playingProp&&autoplayBehavior!==\"no-autoplay\")play();if(autoplayBehavior!==\"on-viewport\")return;pause();},[autoplayBehavior,isInViewport,playingProp]);useEffect(()=>{if(!isOnCanvas||poster||posterEnabled||startTime||!videoRef.current)return;// forces a poster to show up when the video is in an iframe; this is needed when `poster` changes\nvideoRef.current.currentTime=.01;},[posterEnabled,poster,startTime]);/**\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     */const isMountedAndReadyForProgressChanges=useRef(false);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges.current){isMountedAndReadyForProgressChanges.current=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(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??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??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//     !isStaticRenderer\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??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??0)*.01);if(// when the component updates (e.g. only srcFile/url changes), and the video was already playing, keep playing\nisPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport)play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked?.(e),onPause:e=>onPause?.(e),onPlay:e=>onPlay?.(e),onEnded:e=>onEnd?.(e),autoPlay:isPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport,preload:isPlaying.current?\"auto\":isStaticRenderer&&!poster?\"metadata\":autoplayBehavior!==\"on-mount\"&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled&&!srcFile&&srcUrl===defaultVideo?\"https://framerusercontent.com/images/5ILRvlYXf72kHSVHqpa3snGzjU.jpg\":posterEnabled&&poster?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isStaticRenderer?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\";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\",defaultValue:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.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\"},...borderRadiusControl,posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\"Image\",hidden:({posterEnabled})=>!posterEnabled,description:\"We recommend adding a poster. [Learn more](https://www.framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0)\"},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\",defaultValue:false},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted,defaultValue:25},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\":{\"framerIntrinsicHeight\":\"112\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (98479f1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/vZPn7FgfqFna08DI6BpU/FcuKjVz7evtuXzqUBmk1/dvYVeJqth.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/5msw6PmhfMm6XDbmMrkU/fY2F3Ytak1TDPyk6UCYV/h7Lc_ZGUK.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/OChSWVdMuvBiWBUdeDHB/omP58atESplGDIZpaG3G/i93HATAJe.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/jkbUjgPEFQBtrx7RiMk2/U7hASCcGNsf7P36GyHxN/YWMdTKgmY.js\";import IconCheck from\"https://framerusercontent.com/modules/tXdyjOsvbw8aiGLcnWKg/hSUntRvq7tl43K89lybk/p5jICut9Q.js\";import Button from\"https://framerusercontent.com/modules/kklqbXoMf38KMoiC8Qpd/tBjyXDYycWx3qs89mj2e/R995Zcnxh.js\";const ButtonFonts=getFonts(Button);const IconCheckFonts=getFonts(IconCheck);const cycleOrder=[\"Dx6BsI_Q1\",\"CPUsssHbJ\",\"epiv3onlw\",\"uBjrCnQ8M\"];const serializationHash=\"framer-jx5K4\";const variantClassNames={CPUsssHbJ:\"framer-v-adiaua\",Dx6BsI_Q1:\"framer-v-2iyvfy\",epiv3onlw:\"framer-v-1w8x0kv\",uBjrCnQ8M:\"framer-v-8u3rgq\"};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 transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;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\":\"Dx6BsI_Q1\",\"Variant 2\":\"CPUsssHbJ\",\"Variant 4\":\"uBjrCnQ8M\",Mobile:\"epiv3onlw\"};const getProps=({gap,gap2,height,id,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2;return{...props,E49RLY6C0:(_ref=gap!==null&&gap!==void 0?gap:props.E49RLY6C0)!==null&&_ref!==void 0?_ref:56,KuusTJ0sU:(_ref1=gap2!==null&&gap2!==void 0?gap2:props.KuusTJ0sU)!==null&&_ref1!==void 0?_ref1:20,variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"Dx6BsI_Q1\"};};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,E49RLY6C0,KuusTJ0sU,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Dx6BsI_Q1\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap8i5y0c=activeVariantCallback(async(...args)=>{setVariant(\"Dx6BsI_Q1\");});const onTap1entni1=activeVariantCallback(async(...args)=>{setVariant(\"epiv3onlw\");});const onTap7w21m6=activeVariantCallback(async(...args)=>{setVariant(\"CPUsssHbJ\");});const onTapnqd3rj=activeVariantCallback(async(...args)=>{setVariant(\"uBjrCnQ8M\");});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-2iyvfy\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"Dx6BsI_Q1\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--3ly452\":E49RLY6C0,...style},...addPropertyOverrides({CPUsssHbJ:{\"data-framer-name\":\"Variant 2\"},epiv3onlw:{\"data-framer-name\":\"Mobile\"},uBjrCnQ8M:{\"data-framer-name\":\"Variant 4\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-25z0fw\",\"data-framer-name\":\"Tabs\",layoutDependency:layoutDependency,layoutId:\"MUYlL6GCp\",style:{backgroundColor:\"var(--token-506ebaec-17d6-4442-baff-32ed785b3c6d, rgb(248, 248, 248))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1sthndu\",\"data-framer-name\":\"Item\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"xjWVksa5t\",onTap:onTap8i5y0c,style:{backgroundColor:\"var(--token-9d545637-9e26-4f9c-af66-03174423df8e, rgb(13, 147, 99))\",borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40},variants:{CPUsssHbJ:{backgroundColor:\"var(--token-0535866b-02aa-4464-9e16-a40d1d3fda79, rgba(255, 255, 255, 0))\"},uBjrCnQ8M:{backgroundColor:\"var(--token-0535866b-02aa-4464-9e16-a40d1d3fda79, rgba(255, 255, 255, 0))\"}},...addPropertyOverrides({epiv3onlw:{onTap:onTap1entni1},uBjrCnQ8M:{onTap:onTap1entni1}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-wfzzf8\",\"data-styles-preset\":\"h7Lc_ZGUK\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-efed5123-b78e-47fe-9a43-9eea948dc0d7, rgb(255, 255, 255)))\"},children:\"Yearly\"})}),className:\"framer-1rf1mn1\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"KvxRbSEZK\",style:{\"--extracted-r6o4lv\":\"var(--token-efed5123-b78e-47fe-9a43-9eea948dc0d7, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"14px\"},variants:{CPUsssHbJ:{\"--extracted-r6o4lv\":\"var(--token-c2089e58-cd65-41a0-a849-cb633e0b15b3, rgba(0, 20, 14, 0.64))\"},uBjrCnQ8M:{\"--extracted-r6o4lv\":\"var(--token-c2089e58-cd65-41a0-a849-cb633e0b15b3, rgba(0, 20, 14, 0.64))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({CPUsssHbJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-wfzzf8\",\"data-styles-preset\":\"h7Lc_ZGUK\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c2089e58-cd65-41a0-a849-cb633e0b15b3, rgba(0, 20, 14, 0.64)))\"},children:\"Yearly\"})})},uBjrCnQ8M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-wfzzf8\",\"data-styles-preset\":\"h7Lc_ZGUK\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c2089e58-cd65-41a0-a849-cb633e0b15b3, rgba(0, 20, 14, 0.64)))\"},children:\"Yearly\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-upwned\",\"data-framer-name\":\"Badge\",layoutDependency:layoutDependency,layoutId:\"dWrjIk1bg\",style:{backgroundColor:\"rgb(236, 252, 242)\",borderBottomLeftRadius:9999,borderBottomRightRadius:9999,borderTopLeftRadius:9999,borderTopRightRadius:9999},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ytx30g\",\"data-styles-preset\":\"dvYVeJqth\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9d545637-9e26-4f9c-af66-03174423df8e, rgb(13, 147, 99)))\"},children:\"Save 20%\"})}),className:\"framer-do9jn6\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Mp6J_LQtx\",style:{\"--extracted-r6o4lv\":\"var(--token-9d545637-9e26-4f9c-af66-03174423df8e, rgb(13, 147, 99))\",\"--framer-paragraph-spacing\":\"12px\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-e2gdsc\",\"data-framer-name\":\"Item\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"TS9Q5euDM\",onTap:onTap7w21m6,style:{backgroundColor:\"var(--token-0535866b-02aa-4464-9e16-a40d1d3fda79, rgba(255, 255, 255, 0))\",borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40},variants:{CPUsssHbJ:{backgroundColor:\"var(--token-9d545637-9e26-4f9c-af66-03174423df8e, rgb(13, 147, 99))\"},uBjrCnQ8M:{backgroundColor:\"var(--token-9d545637-9e26-4f9c-af66-03174423df8e, rgb(13, 147, 99))\"}},...addPropertyOverrides({epiv3onlw:{onTap:onTapnqd3rj},uBjrCnQ8M:{onTap:onTapnqd3rj}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-wfzzf8\",\"data-styles-preset\":\"h7Lc_ZGUK\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c2089e58-cd65-41a0-a849-cb633e0b15b3, rgba(0, 20, 14, 0.64)))\"},children:\"Monthly\"})}),className:\"framer-vqjnmu\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ggL7UN6C_\",style:{\"--extracted-r6o4lv\":\"var(--token-c2089e58-cd65-41a0-a849-cb633e0b15b3, rgba(0, 20, 14, 0.64))\",\"--framer-paragraph-spacing\":\"14px\"},variants:{CPUsssHbJ:{\"--extracted-r6o4lv\":\"var(--token-efed5123-b78e-47fe-9a43-9eea948dc0d7, rgb(255, 255, 255))\"},uBjrCnQ8M:{\"--extracted-r6o4lv\":\"var(--token-efed5123-b78e-47fe-9a43-9eea948dc0d7, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({CPUsssHbJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-wfzzf8\",\"data-styles-preset\":\"h7Lc_ZGUK\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-efed5123-b78e-47fe-9a43-9eea948dc0d7, rgb(255, 255, 255)))\"},children:\"Monthly\"})})},uBjrCnQ8M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-wfzzf8\",\"data-styles-preset\":\"h7Lc_ZGUK\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-efed5123-b78e-47fe-9a43-9eea948dc0d7, rgb(255, 255, 255)))\"},children:\"Monthly\"})})}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1orl1rj\",\"data-framer-name\":\"Cards\",layoutDependency:layoutDependency,layoutId:\"rN1Vmn7d3\",style:{\"--11osmcs\":KuusTJ0sU},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1huu1m1\",\"data-border\":true,\"data-framer-name\":\"Pricing card\",layoutDependency:layoutDependency,layoutId:\"wnOdyUKIU\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-0535866b-02aa-4464-9e16-a40d1d3fda79, rgba(255, 255, 255, 0))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-6f467800-909b-49fd-8136-bb211b4f51da, rgb(248, 248, 248))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19rqfi0\",\"data-border\":true,\"data-framer-name\":\"Header\",layoutDependency:layoutDependency,layoutId:\"qIDTrj91L\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-67e5d58f-b25b-48d6-b7e7-c024343849c8, rgba(0, 26, 17, 0.1))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-g1fs29\",\"data-framer-name\":\"Frame 120\",layoutDependency:layoutDependency,layoutId:\"klzZF6Udu\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1oyy2tt\",\"data-framer-name\":\"Frame 120\",layoutDependency:layoutDependency,layoutId:\"YkYzj81k0\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-94v6p1\",\"data-styles-preset\":\"YWMdTKgmY\",children:\"Free\"})}),className:\"framer-1mmpd90\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"tQbJlm3V1\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11zyihg\",\"data-framer-name\":\"Price\",layoutDependency:layoutDependency,layoutId:\"EfAsufPI2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-styles-preset-94v6p1\",\"data-styles-preset\":\"YWMdTKgmY\",children:\"$0\"})}),className:\"framer-13vyotq\",\"data-framer-name\":\"Free\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"HoW6UKHvL\",style:{\"--framer-paragraph-spacing\":\"30px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-zoczfg\",\"data-styles-preset\":\"i93HATAJe\",children:\"USD/year\"})}),className:\"framer-1lxt1ge\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"OqiU_IzBO\",style:{\"--framer-paragraph-spacing\":\"14px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({CPUsssHbJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-zoczfg\",\"data-styles-preset\":\"i93HATAJe\",children:\"USD/month\"})})},uBjrCnQ8M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-zoczfg\",\"data-styles-preset\":\"i93HATAJe\",children:\"USD/month\"})})}},baseVariant,gestureVariant)})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,width:`calc(max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px) / 3, 284px) - 48px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||588)-0-1190.9)/2+42.5+56)+0+0+0+0+24+62.4,...addPropertyOverrides({epiv3onlw:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1507.5)-0-3198.2000000000003)/2+42.5+0)+0+0+0+0+24+62.4},uBjrCnQ8M:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1507.5)-0-3198.2000000000003)/2+42.5+0)+0+0+0+0+24+62.4}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-uxsas9-container\",layoutDependency:layoutDependency,layoutId:\"IAM9u9Zau-container\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"IAM9u9Zau\",layoutId:\"IAM9u9Zau\",P61kCuCLD:\"Get started\",style:{width:\"100%\"},takJc4EZF:\"var(--token-9d545637-9e26-4f9c-af66-03174423df8e, rgb(0, 101, 67))\",uEAGpm37o:\"https://app.txyz.ai/\",variant:\"d8gYUCxMR\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ns7m26\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"xBolcB8VR\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xcw8mf\",\"data-framer-name\":\"Frame 6504\",layoutDependency:layoutDependency,layoutId:\"giglgiHhP\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||588)-0-1190.9)/2+42.5+56)+0+0+0+152.4+24+0+0,...addPropertyOverrides({epiv3onlw:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1507.5)-0-3198.2000000000003)/2+42.5+0)+0+0+0+152.4+24+0+0},uBjrCnQ8M:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1507.5)-0-3198.2000000000003)/2+42.5+0)+0+0+0+152.4+24+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-16qc41l-container\",layoutDependency:layoutDependency,layoutId:\"xhQM4Kwcj-container\",children:/*#__PURE__*/_jsx(IconCheck,{height:\"100%\",id:\"xhQM4Kwcj\",layoutId:\"xhQM4Kwcj\",style:{height:\"100%\"},variant:\"jlUsmUovQ\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ytx30g\",\"data-styles-preset\":\"dvYVeJqth\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c403a29a-e9da-4cc0-9f7b-e781595d6449, rgba(0, 26, 17, 0.8)))\"},children:\"AI assistance for reading, problem solving and more\"})}),className:\"framer-lkp75t\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"fq6HOn2VH\",style:{\"--extracted-r6o4lv\":\"var(--token-c403a29a-e9da-4cc0-9f7b-e781595d6449, rgba(0, 26, 17, 0.8))\",\"--framer-paragraph-spacing\":\"16px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-tb9d0\",\"data-framer-name\":\"Frame 6505\",layoutDependency:layoutDependency,layoutId:\"Dka0PBNTY\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||588)-0-1190.9)/2+42.5+56)+0+0+0+152.4+24+113.5+0,...addPropertyOverrides({epiv3onlw:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1507.5)-0-3198.2000000000003)/2+42.5+0)+0+0+0+152.4+24+113.5+0},uBjrCnQ8M:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1507.5)-0-3198.2000000000003)/2+42.5+0)+0+0+0+152.4+24+113.5+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1n6k7id-container\",layoutDependency:layoutDependency,layoutId:\"Lm10Srlfs-container\",children:/*#__PURE__*/_jsx(IconCheck,{height:\"100%\",id:\"Lm10Srlfs\",layoutId:\"Lm10Srlfs\",style:{height:\"100%\"},variant:\"jlUsmUovQ\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ytx30g\",\"data-styles-preset\":\"dvYVeJqth\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c403a29a-e9da-4cc0-9f7b-e781595d6449, rgba(0, 26, 17, 0.8)))\"},children:\"Essential TXYZ agentic workflow with quality optimization\"})}),className:\"framer-ssrxfm\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"U89Fe2GaV\",style:{\"--extracted-r6o4lv\":\"var(--token-c403a29a-e9da-4cc0-9f7b-e781595d6449, rgba(0, 26, 17, 0.8))\",\"--framer-paragraph-spacing\":\"16px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pqwxsf\",\"data-framer-name\":\"Frame 6506\",layoutDependency:layoutDependency,layoutId:\"BataxxTi1\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||588)-0-1190.9)/2+42.5+56)+0+0+0+152.4+24+227+0,...addPropertyOverrides({epiv3onlw:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1507.5)-0-3198.2000000000003)/2+42.5+0)+0+0+0+152.4+24+227+0},uBjrCnQ8M:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1507.5)-0-3198.2000000000003)/2+42.5+0)+0+0+0+152.4+24+227+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ng6jxi-container\",layoutDependency:layoutDependency,layoutId:\"r2F5epPDc-container\",children:/*#__PURE__*/_jsx(IconCheck,{height:\"100%\",id:\"r2F5epPDc\",layoutId:\"r2F5epPDc\",style:{height:\"100%\"},variant:\"jlUsmUovQ\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ytx30g\",\"data-styles-preset\":\"dvYVeJqth\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c403a29a-e9da-4cc0-9f7b-e781595d6449, rgba(0, 26, 17, 0.8)))\"},children:\"Basic file upload and analysis (up to 100 pages)\"})}),className:\"framer-195zjwr\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"wIbbN8MXK\",style:{\"--extracted-r6o4lv\":\"var(--token-c403a29a-e9da-4cc0-9f7b-e781595d6449, rgba(0, 26, 17, 0.8))\",\"--framer-paragraph-spacing\":\"16px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gw6c5e\",\"data-framer-name\":\"Frame 6507\",layoutDependency:layoutDependency,layoutId:\"EB5KY1Ll8\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||588)-0-1190.9)/2+42.5+56)+0+0+0+152.4+24+340.5+0,...addPropertyOverrides({epiv3onlw:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1507.5)-0-3198.2000000000003)/2+42.5+0)+0+0+0+152.4+24+340.5+0},uBjrCnQ8M:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1507.5)-0-3198.2000000000003)/2+42.5+0)+0+0+0+152.4+24+340.5+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1usxx3l-container\",layoutDependency:layoutDependency,layoutId:\"teySxBXEw-container\",children:/*#__PURE__*/_jsx(IconCheck,{height:\"100%\",id:\"teySxBXEw\",layoutId:\"teySxBXEw\",style:{height:\"100%\"},variant:\"jlUsmUovQ\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ytx30g\",\"data-styles-preset\":\"dvYVeJqth\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c403a29a-e9da-4cc0-9f7b-e781595d6449, rgba(0, 26, 17, 0.8)))\"},children:\"Starter access to Library\"})}),className:\"framer-1f18zen\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"qb0_7tnna\",style:{\"--extracted-r6o4lv\":\"var(--token-c403a29a-e9da-4cc0-9f7b-e781595d6449, rgba(0, 26, 17, 0.8))\",\"--framer-paragraph-spacing\":\"16px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hern01\",\"data-framer-name\":\"Frame 6508\",layoutDependency:layoutDependency,layoutId:\"BGxRe9UsZ\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||588)-0-1190.9)/2+42.5+56)+0+0+0+152.4+24+454+0,...addPropertyOverrides({epiv3onlw:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1507.5)-0-3198.2000000000003)/2+42.5+0)+0+0+0+152.4+24+454+0},uBjrCnQ8M:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1507.5)-0-3198.2000000000003)/2+42.5+0)+0+0+0+152.4+24+454+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-h49lk8-container\",layoutDependency:layoutDependency,layoutId:\"nWFIRdLH3-container\",children:/*#__PURE__*/_jsx(IconCheck,{height:\"100%\",id:\"nWFIRdLH3\",layoutId:\"nWFIRdLH3\",style:{height:\"100%\"},variant:\"jlUsmUovQ\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ytx30g\",\"data-styles-preset\":\"dvYVeJqth\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c403a29a-e9da-4cc0-9f7b-e781595d6449, rgba(0, 26, 17, 0.8)))\"},children:\"Basic TXYZ writing agent assistance\"})}),className:\"framer-1k4tulq\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"GQ_BU9MaE\",style:{\"--extracted-r6o4lv\":\"var(--token-c403a29a-e9da-4cc0-9f7b-e781595d6449, rgba(0, 26, 17, 0.8))\",\"--framer-paragraph-spacing\":\"16px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xlu0m2\",\"data-framer-name\":\"Frame 6509\",layoutDependency:layoutDependency,layoutId:\"Tbdbgtlsl\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||588)-0-1190.9)/2+42.5+56)+0+0+0+152.4+24+567.5+0,...addPropertyOverrides({epiv3onlw:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1507.5)-0-3198.2000000000003)/2+42.5+0)+0+0+0+152.4+24+567.5+0},uBjrCnQ8M:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1507.5)-0-3198.2000000000003)/2+42.5+0)+0+0+0+152.4+24+567.5+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-glabep-container\",layoutDependency:layoutDependency,layoutId:\"LVyQho8UN-container\",children:/*#__PURE__*/_jsx(IconCheck,{height:\"100%\",id:\"LVyQho8UN\",layoutId:\"LVyQho8UN\",style:{height:\"100%\"},variant:\"jlUsmUovQ\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ytx30g\",\"data-styles-preset\":\"dvYVeJqth\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c403a29a-e9da-4cc0-9f7b-e781595d6449, rgba(0, 26, 17, 0.8)))\"},children:\"Create up to 5 writing Pages\"})}),className:\"framer-1ryqz96\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"NLSTbRHdt\",style:{\"--extracted-r6o4lv\":\"var(--token-c403a29a-e9da-4cc0-9f7b-e781595d6449, rgba(0, 26, 17, 0.8))\",\"--framer-paragraph-spacing\":\"16px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xfjstd\",\"data-framer-name\":\"Frame 6510\",layoutDependency:layoutDependency,layoutId:\"EDLPLCU3l\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||588)-0-1190.9)/2+42.5+56)+0+0+0+152.4+24+681+0,...addPropertyOverrides({epiv3onlw:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1507.5)-0-3198.2000000000003)/2+42.5+0)+0+0+0+152.4+24+681+0},uBjrCnQ8M:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1507.5)-0-3198.2000000000003)/2+42.5+0)+0+0+0+152.4+24+681+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-6h489u-container\",layoutDependency:layoutDependency,layoutId:\"oRK7WzNmm-container\",children:/*#__PURE__*/_jsx(IconCheck,{height:\"100%\",id:\"oRK7WzNmm\",layoutId:\"oRK7WzNmm\",style:{height:\"100%\"},variant:\"jlUsmUovQ\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ytx30g\",\"data-styles-preset\":\"dvYVeJqth\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c403a29a-e9da-4cc0-9f7b-e781595d6449, rgba(0, 26, 17, 0.8)))\"},children:\"30-day Pages history retention\"})}),className:\"framer-ukcse8\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"aU97whg8g\",style:{\"--extracted-r6o4lv\":\"var(--token-c403a29a-e9da-4cc0-9f7b-e781595d6449, rgba(0, 26, 17, 0.8))\",\"--framer-paragraph-spacing\":\"16px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-v1lz9z\",\"data-border\":true,\"data-framer-name\":\"Pricing card\",layoutDependency:layoutDependency,layoutId:\"PeegM6auA\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-ac00e674-7edc-4395-a064-a979eb00a1c9, rgb(13, 147, 99))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-6f467800-909b-49fd-8136-bb211b4f51da, rgb(248, 248, 248))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:0,borderTopRightRadius:0},variants:{epiv3onlw:{\"--border-color\":\"var(--token-9d545637-9e26-4f9c-af66-03174423df8e, rgb(13, 147, 99))\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderTopLeftRadius:20,borderTopRightRadius:20},uBjrCnQ8M:{\"--border-color\":\"var(--token-9d545637-9e26-4f9c-af66-03174423df8e, rgb(13, 147, 99))\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderTopLeftRadius:20,borderTopRightRadius:20}},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-10uzjzm\",\"data-border\":true,\"data-framer-name\":\"Banner\",layoutDependency:layoutDependency,layoutId:\"f0sScxFuQ\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-67e5d58f-b25b-48d6-b7e7-c024343849c8, rgba(0, 26, 17, 0.1))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-9d545637-9e26-4f9c-af66-03174423df8e, rgb(13, 147, 99))\",borderTopLeftRadius:20,borderTopRightRadius:20},transformTemplate:transformTemplate1,...addPropertyOverrides({epiv3onlw:{transformTemplate:undefined},uBjrCnQ8M:{transformTemplate:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ytx30g\",\"data-styles-preset\":\"dvYVeJqth\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-efed5123-b78e-47fe-9a43-9eea948dc0d7, rgb(255, 255, 255)))\"},children:\"Most Popular\"})}),className:\"framer-b6shz\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"RJelGvZXQ\",style:{\"--extracted-r6o4lv\":\"var(--token-efed5123-b78e-47fe-9a43-9eea948dc0d7, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fl01g6\",\"data-border\":true,\"data-framer-name\":\"Header\",layoutDependency:layoutDependency,layoutId:\"rdwl5IAP3\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-67e5d58f-b25b-48d6-b7e7-c024343849c8, rgba(0, 26, 17, 0.1))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\"},variants:{epiv3onlw:{backgroundColor:\"var(--token-6f467800-909b-49fd-8136-bb211b4f51da, rgb(248, 248, 248))\"},uBjrCnQ8M:{backgroundColor:\"var(--token-6f467800-909b-49fd-8136-bb211b4f51da, rgb(248, 248, 248))\"}},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-k2apk9\",\"data-framer-name\":\"Frame 120\",layoutDependency:layoutDependency,layoutId:\"EC9zt7p59\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1j0ql3z\",\"data-framer-name\":\"Frame 120\",layoutDependency:layoutDependency,layoutId:\"d_Wh_TYy0\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1j3ljyi\",\"data-framer-name\":\"Pro\",layoutDependency:layoutDependency,layoutId:\"X50tnH4nf\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-qdq75b\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:33,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"amVT05ERG\",svg:'<svg width=\"20\" height=\"33\" viewBox=\"0 0 20 33\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect x=\"12.875\" y=\"13.2988\" width=\"9.05097\" height=\"9.05097\" transform=\"rotate(135 12.875 13.2988)\" fill=\"#FEBF00\"/>\\n<path d=\"M6.4796 13.299L0.0796889 13.2991L6.47969 6.89912L6.4796 13.299Z\" fill=\"white\" fill-opacity=\"0.7\"/>\\n<path d=\"M6.47353 13.2996L12.8734 13.2995L6.47344 19.6995L6.47353 13.2996Z\" fill=\"#925D0E\" fill-opacity=\"0.57\"/>\\n<rect x=\"12.875\" y=\"26.0996\" width=\"9.05097\" height=\"9.05097\" transform=\"rotate(135 12.875 26.0996)\" fill=\"#FEBF00\"/>\\n<path d=\"M6.4796 26.0998L0.0796889 26.0999L6.47969 19.6999L6.4796 26.0998Z\" fill=\"white\" fill-opacity=\"0.7\"/>\\n<path d=\"M6.47353 26.1004L12.8734 26.1003L6.47344 32.5003L6.47353 26.1004Z\" fill=\"#925D0E\" fill-opacity=\"0.57\"/>\\n<rect x=\"19.2734\" y=\"19.6992\" width=\"9.05097\" height=\"9.05097\" transform=\"rotate(135 19.2734 19.6992)\" fill=\"#FEBF00\"/>\\n<path d=\"M12.878 19.6994L6.47813 19.6995L12.8781 13.2995L12.878 19.6994Z\" fill=\"white\" fill-opacity=\"0.7\"/>\\n<path d=\"M12.872 19.7L19.2719 19.6999L12.8719 26.0999L12.872 19.7Z\" fill=\"#925D0E\" fill-opacity=\"0.57\"/>\\n<rect x=\"19.2734\" y=\"6.89941\" width=\"9.05097\" height=\"9.05097\" transform=\"rotate(135 19.2734 6.89941)\" fill=\"#FEBF00\"/>\\n<path d=\"M12.878 6.89962L6.47813 6.89971L12.8781 0.499707L12.878 6.89962Z\" fill=\"white\" fill-opacity=\"0.7\"/>\\n<path d=\"M12.872 6.90019L19.2719 6.9001L12.8719 13.3001L12.872 6.90019Z\" fill=\"#925D0E\" fill-opacity=\"0.57\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-94v6p1\",\"data-styles-preset\":\"YWMdTKgmY\",children:\"Pro\"})}),className:\"framer-nsua8c\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"j21FtOAHB\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1abezzm\",\"data-framer-name\":\"Price\",layoutDependency:layoutDependency,layoutId:\"CivZO8oyn\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-styles-preset-94v6p1\",\"data-styles-preset\":\"YWMdTKgmY\",children:\"$96\"})}),className:\"framer-62gxvg\",\"data-framer-name\":\"Pro\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"NaIGvopz2\",style:{\"--framer-paragraph-spacing\":\"30px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({CPUsssHbJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-styles-preset-94v6p1\",\"data-styles-preset\":\"YWMdTKgmY\",children:\"$10\"})})},uBjrCnQ8M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-styles-preset-94v6p1\",\"data-styles-preset\":\"YWMdTKgmY\",children:\"$10\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-zoczfg\",\"data-styles-preset\":\"i93HATAJe\",children:\"USD/year\"})}),className:\"framer-15f4g3i\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"KCzKEZm9p\",style:{\"--framer-paragraph-spacing\":\"14px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({CPUsssHbJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-zoczfg\",\"data-styles-preset\":\"i93HATAJe\",children:\"USD/month\"})})},uBjrCnQ8M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-zoczfg\",\"data-styles-preset\":\"i93HATAJe\",children:\"USD/month\"})})}},baseVariant,gestureVariant)})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,width:`calc(max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px) / 3, 284px) - 48px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||588)-0-1190.9)/2+42.5+56)+0+0+0+0+24+62.4,...addPropertyOverrides({epiv3onlw:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1507.5)-0-3198.2000000000003)/2+42.5+0)+0+978.9+0+105.5+24+62.4},uBjrCnQ8M:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1507.5)-0-3198.2000000000003)/2+42.5+0)+0+978.9+0+105.5+24+62.4}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tf0n7j-container\",layoutDependency:layoutDependency,layoutId:\"DQmrh1d5f-container\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"DQmrh1d5f\",layoutId:\"DQmrh1d5f\",P61kCuCLD:\"Get started\",style:{width:\"100%\"},takJc4EZF:\"var(--token-9d545637-9e26-4f9c-af66-03174423df8e, rgb(0, 101, 67))\",uEAGpm37o:\"https://app.txyz.ai/\",variant:\"d8gYUCxMR\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1246vdp\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"uN1fjIYCR\",style:{backgroundColor:\"rgba(0, 0, 0, 0)\"},variants:{epiv3onlw:{backgroundColor:\"var(--token-6f467800-909b-49fd-8136-bb211b4f51da, rgb(248, 248, 248))\"},uBjrCnQ8M:{backgroundColor:\"var(--token-6f467800-909b-49fd-8136-bb211b4f51da, rgb(248, 248, 248))\"}},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ytx30g\",\"data-styles-preset\":\"dvYVeJqth\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c2089e58-cd65-41a0-a849-cb633e0b15b3, rgba(0, 20, 14, 0.64)))\"},children:\"Everything in Free and\u2026\"})}),className:\"framer-g4owhg\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"eiCdJcUlb\",style:{\"--extracted-r6o4lv\":\"var(--token-c2089e58-cd65-41a0-a849-cb633e0b15b3, rgba(0, 20, 14, 0.64))\",\"--framer-paragraph-spacing\":\"16px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-szb6f1\",\"data-framer-name\":\"Frame 6505\",layoutDependency:layoutDependency,layoutId:\"oB3UY7zVB\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||588)-0-1190.9)/2+42.5+56)+0+0+0+152.4+24+113.5+0,...addPropertyOverrides({epiv3onlw:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1507.5)-0-3198.2000000000003)/2+42.5+0)+0+978.9+0+257.9+24+113.5+0},uBjrCnQ8M:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1507.5)-0-3198.2000000000003)/2+42.5+0)+0+978.9+0+257.9+24+113.5+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-3z65oe-container\",layoutDependency:layoutDependency,layoutId:\"ecCGnhOLG-container\",children:/*#__PURE__*/_jsx(IconCheck,{height:\"100%\",id:\"ecCGnhOLG\",layoutId:\"ecCGnhOLG\",style:{height:\"100%\"},variant:\"jlUsmUovQ\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ytx30g\",\"data-styles-preset\":\"dvYVeJqth\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c403a29a-e9da-4cc0-9f7b-e781595d6449, rgba(0, 26, 17, 0.8)))\"},children:\"Increased usage limits\"})}),className:\"framer-intdmw\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Z8pLIj55R\",style:{\"--extracted-r6o4lv\":\"var(--token-c403a29a-e9da-4cc0-9f7b-e781595d6449, rgba(0, 26, 17, 0.8))\",\"--framer-paragraph-spacing\":\"16px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ldv5w1\",\"data-framer-name\":\"Frame 6506\",layoutDependency:layoutDependency,layoutId:\"zK6CEv5sU\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||588)-0-1190.9)/2+42.5+56)+0+0+0+152.4+24+227+0,...addPropertyOverrides({epiv3onlw:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1507.5)-0-3198.2000000000003)/2+42.5+0)+0+978.9+0+257.9+24+227+0},uBjrCnQ8M:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1507.5)-0-3198.2000000000003)/2+42.5+0)+0+978.9+0+257.9+24+227+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-lb5k8q-container\",layoutDependency:layoutDependency,layoutId:\"IyHatcKpr-container\",children:/*#__PURE__*/_jsx(IconCheck,{height:\"100%\",id:\"IyHatcKpr\",layoutId:\"IyHatcKpr\",style:{height:\"100%\"},variant:\"jlUsmUovQ\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ytx30g\",\"data-styles-preset\":\"dvYVeJqth\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c403a29a-e9da-4cc0-9f7b-e781595d6449, rgba(0, 26, 17, 0.8)))\"},children:\"Extended file upload and analysis (up to 100 pages)\"})}),className:\"framer-fxmurp\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"oFNiMlcF_\",style:{\"--extracted-r6o4lv\":\"var(--token-c403a29a-e9da-4cc0-9f7b-e781595d6449, rgba(0, 26, 17, 0.8))\",\"--framer-paragraph-spacing\":\"16px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1sfus4q\",\"data-framer-name\":\"Frame 6507\",layoutDependency:layoutDependency,layoutId:\"oMiEk3XEn\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||588)-0-1190.9)/2+42.5+56)+0+0+0+152.4+24+340.5+0,...addPropertyOverrides({epiv3onlw:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1507.5)-0-3198.2000000000003)/2+42.5+0)+0+978.9+0+257.9+24+340.5+0},uBjrCnQ8M:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1507.5)-0-3198.2000000000003)/2+42.5+0)+0+978.9+0+257.9+24+340.5+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1v7k3yc-container\",layoutDependency:layoutDependency,layoutId:\"W9RRFc0QM-container\",children:/*#__PURE__*/_jsx(IconCheck,{height:\"100%\",id:\"W9RRFc0QM\",layoutId:\"W9RRFc0QM\",style:{height:\"100%\"},variant:\"jlUsmUovQ\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ytx30g\",\"data-styles-preset\":\"dvYVeJqth\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c403a29a-e9da-4cc0-9f7b-e781595d6449, rgba(0, 26, 17, 0.8)))\"},children:\"Complete Library access\"})}),className:\"framer-1i9kjog\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"VVsCkIv7o\",style:{\"--extracted-r6o4lv\":\"var(--token-c403a29a-e9da-4cc0-9f7b-e781595d6449, rgba(0, 26, 17, 0.8))\",\"--framer-paragraph-spacing\":\"16px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-swakm9\",\"data-framer-name\":\"Frame 6508\",layoutDependency:layoutDependency,layoutId:\"glAIesuKd\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||588)-0-1190.9)/2+42.5+56)+0+0+0+152.4+24+454+0,...addPropertyOverrides({epiv3onlw:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1507.5)-0-3198.2000000000003)/2+42.5+0)+0+978.9+0+257.9+24+454+0},uBjrCnQ8M:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1507.5)-0-3198.2000000000003)/2+42.5+0)+0+978.9+0+257.9+24+454+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ssced7-container\",layoutDependency:layoutDependency,layoutId:\"NCqRUFng6-container\",children:/*#__PURE__*/_jsx(IconCheck,{height:\"100%\",id:\"NCqRUFng6\",layoutId:\"NCqRUFng6\",style:{height:\"100%\"},variant:\"jlUsmUovQ\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ytx30g\",\"data-styles-preset\":\"dvYVeJqth\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c403a29a-e9da-4cc0-9f7b-e781595d6449, rgba(0, 26, 17, 0.8)))\"},children:\"Enhanced access to TXYZ writing agents\"})}),className:\"framer-p3lkla\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"DxreCcIcb\",style:{\"--extracted-r6o4lv\":\"var(--token-c403a29a-e9da-4cc0-9f7b-e781595d6449, rgba(0, 26, 17, 0.8))\",\"--framer-paragraph-spacing\":\"16px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-i17w3d\",\"data-framer-name\":\"Frame 6509\",layoutDependency:layoutDependency,layoutId:\"AE7Rtxr0Z\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||588)-0-1190.9)/2+42.5+56)+0+0+0+152.4+24+567.5+0,...addPropertyOverrides({epiv3onlw:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1507.5)-0-3198.2000000000003)/2+42.5+0)+0+978.9+0+257.9+24+567.5+0},uBjrCnQ8M:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1507.5)-0-3198.2000000000003)/2+42.5+0)+0+978.9+0+257.9+24+567.5+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-u630jr-container\",layoutDependency:layoutDependency,layoutId:\"vmYl9kDYd-container\",children:/*#__PURE__*/_jsx(IconCheck,{height:\"100%\",id:\"vmYl9kDYd\",layoutId:\"vmYl9kDYd\",style:{height:\"100%\"},variant:\"jlUsmUovQ\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ytx30g\",\"data-styles-preset\":\"dvYVeJqth\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c403a29a-e9da-4cc0-9f7b-e781595d6449, rgba(0, 26, 17, 0.8)))\"},children:\"Full writing Pages access\"})}),className:\"framer-x1bhad\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"lgE6P3e06\",style:{\"--extracted-r6o4lv\":\"var(--token-c403a29a-e9da-4cc0-9f7b-e781595d6449, rgba(0, 26, 17, 0.8))\",\"--framer-paragraph-spacing\":\"16px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bfh3ow\",\"data-framer-name\":\"Frame 6509\",layoutDependency:layoutDependency,layoutId:\"pP0NW_jF6\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||588)-0-1190.9)/2+42.5+56)+0+0+0+152.4+24+681+0,...addPropertyOverrides({epiv3onlw:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1507.5)-0-3198.2000000000003)/2+42.5+0)+0+978.9+0+257.9+24+681+0},uBjrCnQ8M:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1507.5)-0-3198.2000000000003)/2+42.5+0)+0+978.9+0+257.9+24+681+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1adxvns-container\",layoutDependency:layoutDependency,layoutId:\"WsDcDVw6T-container\",children:/*#__PURE__*/_jsx(IconCheck,{height:\"100%\",id:\"WsDcDVw6T\",layoutId:\"WsDcDVw6T\",style:{height:\"100%\"},variant:\"jlUsmUovQ\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ytx30g\",\"data-styles-preset\":\"dvYVeJqth\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c403a29a-e9da-4cc0-9f7b-e781595d6449, rgba(0, 26, 17, 0.8)))\"},children:\"90-day Pages history retention\"})}),className:\"framer-1r9sx6g\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"IbEAHbNq0\",style:{\"--extracted-r6o4lv\":\"var(--token-c403a29a-e9da-4cc0-9f7b-e781595d6449, rgba(0, 26, 17, 0.8))\",\"--framer-paragraph-spacing\":\"16px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qj8ilc\",\"data-border\":true,\"data-framer-name\":\"Pricing card\",layoutDependency:layoutDependency,layoutId:\"Z4_TQLi3h\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-0535866b-02aa-4464-9e16-a40d1d3fda79, rgba(255, 255, 255, 0))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-6f467800-909b-49fd-8136-bb211b4f51da, rgb(248, 248, 248))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1n7hne\",\"data-border\":true,\"data-framer-name\":\"Header\",layoutDependency:layoutDependency,layoutId:\"NM_6huiOb\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-67e5d58f-b25b-48d6-b7e7-c024343849c8, rgba(0, 26, 17, 0.1))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-u8auyx\",\"data-framer-name\":\"Frame 120\",layoutDependency:layoutDependency,layoutId:\"hcLkHAQhB\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rqvqx9\",\"data-framer-name\":\"Frame 120\",layoutDependency:layoutDependency,layoutId:\"fR5RW1y9k\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-j6w8px\",\"data-framer-name\":\"Ultra\",layoutDependency:layoutDependency,layoutId:\"kvr0HzV9y\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-pk76nu\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:33,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"Ge_LJ9LBX\",svg:'<svg width=\"20\" height=\"33\" viewBox=\"0 0 20 33\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect x=\"13.5469\" y=\"13.2988\" width=\"9.05097\" height=\"9.05097\" transform=\"rotate(135 13.5469 13.2988)\" fill=\"url(#paint0_linear_5294_16889)\"/>\\n<path d=\"M7.15147 13.299L0.751564 13.2991L7.15156 6.89912L7.15147 13.299Z\" fill=\"white\" fill-opacity=\"0.71\"/>\\n<path d=\"M7.1454 13.2996L13.5453 13.2995L7.14531 19.6995L7.1454 13.2996Z\" fill=\"black\" fill-opacity=\"0.36\"/>\\n<rect x=\"13.5469\" y=\"26.0996\" width=\"9.05097\" height=\"9.05097\" transform=\"rotate(135 13.5469 26.0996)\" fill=\"url(#paint1_linear_5294_16889)\"/>\\n<path d=\"M7.15147 26.0998L0.751564 26.0999L7.15156 19.6999L7.15147 26.0998Z\" fill=\"white\" fill-opacity=\"0.71\"/>\\n<path d=\"M7.1454 26.1004L13.5453 26.1003L7.14531 32.5003L7.1454 26.1004Z\" fill=\"black\" fill-opacity=\"0.36\"/>\\n<rect x=\"19.9453\" y=\"19.6992\" width=\"9.05097\" height=\"9.05097\" transform=\"rotate(135 19.9453 19.6992)\" fill=\"url(#paint2_linear_5294_16889)\"/>\\n<path d=\"M13.5499 19.6994L7.15 19.6995L13.55 13.2995L13.5499 19.6994Z\" fill=\"white\" fill-opacity=\"0.71\"/>\\n<path d=\"M13.5438 19.7L19.9437 19.6999L13.5437 26.0999L13.5438 19.7Z\" fill=\"black\" fill-opacity=\"0.36\"/>\\n<rect x=\"19.9453\" y=\"6.89941\" width=\"9.05097\" height=\"9.05097\" transform=\"rotate(135 19.9453 6.89941)\" fill=\"url(#paint3_linear_5294_16889)\"/>\\n<path d=\"M13.5499 6.89962L7.15 6.89971L13.55 0.499707L13.5499 6.89962Z\" fill=\"white\" fill-opacity=\"0.71\"/>\\n<path d=\"M13.5438 6.90019L19.9437 6.9001L13.5437 13.3001L13.5438 6.90019Z\" fill=\"black\" fill-opacity=\"0.36\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_5294_16889\" x1=\"13.5469\" y1=\"17.8243\" x2=\"22.5978\" y2=\"17.8243\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#09784C\"/>\\n<stop offset=\"1\" stop-color=\"#5CD951\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_5294_16889\" x1=\"13.5469\" y1=\"30.6251\" x2=\"22.5978\" y2=\"30.6251\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#09784C\"/>\\n<stop offset=\"1\" stop-color=\"#5CD951\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_5294_16889\" x1=\"19.9453\" y1=\"24.2247\" x2=\"28.9963\" y2=\"24.2247\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#09784C\"/>\\n<stop offset=\"1\" stop-color=\"#5CD951\"/>\\n</linearGradient>\\n<linearGradient id=\"paint3_linear_5294_16889\" x1=\"19.9453\" y1=\"11.4249\" x2=\"28.9963\" y2=\"11.4249\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#09784C\"/>\\n<stop offset=\"1\" stop-color=\"#5CD951\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-94v6p1\",\"data-styles-preset\":\"YWMdTKgmY\",children:\"Ultra\"})}),className:\"framer-1xvqbx0\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"o1ThKOOOY\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xfzrrb\",\"data-framer-name\":\"Price\",layoutDependency:layoutDependency,layoutId:\"ugW_HfD98\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-styles-preset-94v6p1\",\"data-styles-preset\":\"YWMdTKgmY\",children:\"$288\"})}),className:\"framer-1kch99i\",\"data-framer-name\":\"Ultra\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Yzhg0YRYL\",style:{\"--framer-paragraph-spacing\":\"30px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({CPUsssHbJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-styles-preset-94v6p1\",\"data-styles-preset\":\"YWMdTKgmY\",children:\"$30\"})})},uBjrCnQ8M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-styles-preset-94v6p1\",\"data-styles-preset\":\"YWMdTKgmY\",children:\"$30\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-zoczfg\",\"data-styles-preset\":\"i93HATAJe\",children:\"USD/year\"})}),className:\"framer-12ex6fo\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ItxdEqhWv\",style:{\"--framer-paragraph-spacing\":\"14px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({CPUsssHbJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-zoczfg\",\"data-styles-preset\":\"i93HATAJe\",children:\"USD/month\"})})},uBjrCnQ8M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-zoczfg\",\"data-styles-preset\":\"i93HATAJe\",children:\"USD/month\"})})}},baseVariant,gestureVariant)})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,width:`calc(max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px) / 3, 284px) - 48px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||588)-0-1190.9)/2+42.5+56)+0+0+0+0+24+62.4,...addPropertyOverrides({epiv3onlw:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1507.5)-0-3198.2000000000003)/2+42.5+0)+0+2063.3+0+0+24+62.4},uBjrCnQ8M:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1507.5)-0-3198.2000000000003)/2+42.5+0)+0+2063.3+0+0+24+62.4}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-al6to9-container\",layoutDependency:layoutDependency,layoutId:\"xBqIZjFSe-container\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"xBqIZjFSe\",layoutId:\"xBqIZjFSe\",P61kCuCLD:\"Get started\",style:{width:\"100%\"},takJc4EZF:\"var(--token-9d545637-9e26-4f9c-af66-03174423df8e, rgb(0, 101, 67))\",uEAGpm37o:\"https://app.txyz.ai/\",variant:\"d8gYUCxMR\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4sk2l9\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"osvUxMu1c\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ytx30g\",\"data-styles-preset\":\"dvYVeJqth\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c2089e58-cd65-41a0-a849-cb633e0b15b3, rgba(0, 20, 14, 0.64)))\"},children:\"Everything in Pro and\u2026\"})}),className:\"framer-1mxwfq8\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"acq_rmF8B\",style:{\"--extracted-r6o4lv\":\"var(--token-c2089e58-cd65-41a0-a849-cb633e0b15b3, rgba(0, 20, 14, 0.64))\",\"--framer-paragraph-spacing\":\"16px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1frdsmh\",\"data-framer-name\":\"Frame 6505\",layoutDependency:layoutDependency,layoutId:\"sp012TygI\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||588)-0-1190.9)/2+42.5+56)+0+0+0+152.4+24+113.5+0,...addPropertyOverrides({epiv3onlw:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1507.5)-0-3198.2000000000003)/2+42.5+0)+0+2063.3+0+152.4+24+113.5+0},uBjrCnQ8M:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1507.5)-0-3198.2000000000003)/2+42.5+0)+0+2063.3+0+152.4+24+113.5+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-vt75et-container\",layoutDependency:layoutDependency,layoutId:\"mpJS0tTba-container\",children:/*#__PURE__*/_jsx(IconCheck,{height:\"100%\",id:\"mpJS0tTba\",layoutId:\"mpJS0tTba\",style:{height:\"100%\"},variant:\"jlUsmUovQ\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ytx30g\",\"data-styles-preset\":\"dvYVeJqth\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c403a29a-e9da-4cc0-9f7b-e781595d6449, rgba(0, 26, 17, 0.8)))\"},children:\"Maximum usage allowance\"})}),className:\"framer-5itxc3\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"rOMSsE49k\",style:{\"--extracted-r6o4lv\":\"var(--token-c403a29a-e9da-4cc0-9f7b-e781595d6449, rgba(0, 26, 17, 0.8))\",\"--framer-paragraph-spacing\":\"16px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zvjxgp\",\"data-framer-name\":\"Frame 6505\",layoutDependency:layoutDependency,layoutId:\"U3xJHiO2s\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||588)-0-1190.9)/2+42.5+56)+0+0+0+152.4+24+227+0,...addPropertyOverrides({epiv3onlw:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1507.5)-0-3198.2000000000003)/2+42.5+0)+0+2063.3+0+152.4+24+227+0},uBjrCnQ8M:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1507.5)-0-3198.2000000000003)/2+42.5+0)+0+2063.3+0+152.4+24+227+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-11zo9t6-container\",layoutDependency:layoutDependency,layoutId:\"nLbq8oPD5-container\",children:/*#__PURE__*/_jsx(IconCheck,{height:\"100%\",id:\"nLbq8oPD5\",layoutId:\"nLbq8oPD5\",style:{height:\"100%\"},variant:\"jlUsmUovQ\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ytx30g\",\"data-styles-preset\":\"dvYVeJqth\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c403a29a-e9da-4cc0-9f7b-e781595d6449, rgba(0, 26, 17, 0.8)))\"},children:\"State-of-the-art model\"})}),className:\"framer-tgjgtu\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"lOCU5IP02\",style:{\"--extracted-r6o4lv\":\"var(--token-c403a29a-e9da-4cc0-9f7b-e781595d6449, rgba(0, 26, 17, 0.8))\",\"--framer-paragraph-spacing\":\"16px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1t477s8\",\"data-framer-name\":\"Frame 6506\",layoutDependency:layoutDependency,layoutId:\"sO0nuyNfy\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||588)-0-1190.9)/2+42.5+56)+0+0+0+152.4+24+340.5+0,...addPropertyOverrides({epiv3onlw:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1507.5)-0-3198.2000000000003)/2+42.5+0)+0+2063.3+0+152.4+24+340.5+0},uBjrCnQ8M:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1507.5)-0-3198.2000000000003)/2+42.5+0)+0+2063.3+0+152.4+24+340.5+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vtb4p9-container\",layoutDependency:layoutDependency,layoutId:\"i7mPcbQM_-container\",children:/*#__PURE__*/_jsx(IconCheck,{height:\"100%\",id:\"i7mPcbQM_\",layoutId:\"i7mPcbQM_\",style:{height:\"100%\"},variant:\"jlUsmUovQ\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ytx30g\",\"data-styles-preset\":\"dvYVeJqth\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c403a29a-e9da-4cc0-9f7b-e781595d6449, rgba(0, 26, 17, 0.8)))\"},children:\"Extended file upload and analysis (up to 300 pages)\"})}),className:\"framer-n29p1i\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"tGdFSVO8l\",style:{\"--extracted-r6o4lv\":\"var(--token-c403a29a-e9da-4cc0-9f7b-e781595d6449, rgba(0, 26, 17, 0.8))\",\"--framer-paragraph-spacing\":\"16px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5a8x7v\",\"data-framer-name\":\"Frame 6507\",layoutDependency:layoutDependency,layoutId:\"f4lozua_U\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||588)-0-1190.9)/2+42.5+56)+0+0+0+152.4+24+454+0,...addPropertyOverrides({epiv3onlw:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1507.5)-0-3198.2000000000003)/2+42.5+0)+0+2063.3+0+152.4+24+454+0},uBjrCnQ8M:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1507.5)-0-3198.2000000000003)/2+42.5+0)+0+2063.3+0+152.4+24+454+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1y2avz1-container\",layoutDependency:layoutDependency,layoutId:\"ne27iVtGr-container\",children:/*#__PURE__*/_jsx(IconCheck,{height:\"100%\",id:\"ne27iVtGr\",layoutId:\"ne27iVtGr\",style:{height:\"100%\"},variant:\"jlUsmUovQ\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ytx30g\",\"data-styles-preset\":\"dvYVeJqth\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c403a29a-e9da-4cc0-9f7b-e781595d6449, rgba(0, 26, 17, 0.8)))\"},children:\"3x longer context window for deeper analysis\"})}),className:\"framer-1ome0s3\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"xisgevhBx\",style:{\"--extracted-r6o4lv\":\"var(--token-c403a29a-e9da-4cc0-9f7b-e781595d6449, rgba(0, 26, 17, 0.8))\",\"--framer-paragraph-spacing\":\"16px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-u3ue3u\",\"data-framer-name\":\"Frame 6508\",layoutDependency:layoutDependency,layoutId:\"PLwtl4V3R\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||588)-0-1190.9)/2+42.5+56)+0+0+0+152.4+24+567.5+0,...addPropertyOverrides({epiv3onlw:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1507.5)-0-3198.2000000000003)/2+42.5+0)+0+2063.3+0+152.4+24+567.5+0},uBjrCnQ8M:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1507.5)-0-3198.2000000000003)/2+42.5+0)+0+2063.3+0+152.4+24+567.5+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-9feroh-container\",layoutDependency:layoutDependency,layoutId:\"EjohmeylJ-container\",children:/*#__PURE__*/_jsx(IconCheck,{height:\"100%\",id:\"EjohmeylJ\",layoutId:\"EjohmeylJ\",style:{height:\"100%\"},variant:\"jlUsmUovQ\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ytx30g\",\"data-styles-preset\":\"dvYVeJqth\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c403a29a-e9da-4cc0-9f7b-e781595d6449, rgba(0, 26, 17, 0.8)))\"},children:\"Premium TXYZ agentic workflow with advanced optimization\"})}),className:\"framer-10v83yp\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Q3Yy4wwWD\",style:{\"--extracted-r6o4lv\":\"var(--token-c403a29a-e9da-4cc0-9f7b-e781595d6449, rgba(0, 26, 17, 0.8))\",\"--framer-paragraph-spacing\":\"16px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-px4tyl\",\"data-framer-name\":\"Frame 6508\",layoutDependency:layoutDependency,layoutId:\"NphKKpty1\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||588)-0-1190.9)/2+42.5+56)+0+0+0+152.4+24+681+0,...addPropertyOverrides({epiv3onlw:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1507.5)-0-3198.2000000000003)/2+42.5+0)+0+2063.3+0+152.4+24+681+0},uBjrCnQ8M:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1507.5)-0-3198.2000000000003)/2+42.5+0)+0+2063.3+0+152.4+24+681+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-5oibwq-container\",layoutDependency:layoutDependency,layoutId:\"AntILf55F-container\",children:/*#__PURE__*/_jsx(IconCheck,{height:\"100%\",id:\"AntILf55F\",layoutId:\"AntILf55F\",style:{height:\"100%\"},variant:\"jlUsmUovQ\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ytx30g\",\"data-styles-preset\":\"dvYVeJqth\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c403a29a-e9da-4cc0-9f7b-e781595d6449, rgba(0, 26, 17, 0.8)))\"},children:\"Complete suite of TXYZ writing agents and tools\"})}),className:\"framer-76kxkm\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Xocaz1Cy8\",style:{\"--extracted-r6o4lv\":\"var(--token-c403a29a-e9da-4cc0-9f7b-e781595d6449, rgba(0, 26, 17, 0.8))\",\"--framer-paragraph-spacing\":\"16px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-198vyk0\",\"data-framer-name\":\"Frame 6508\",layoutDependency:layoutDependency,layoutId:\"s7YmUL5Xc\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||588)-0-1190.9)/2+42.5+56)+0+0+0+152.4+24+794.5+0,...addPropertyOverrides({epiv3onlw:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1507.5)-0-3198.2000000000003)/2+42.5+0)+0+2063.3+0+152.4+24+794.5+0},uBjrCnQ8M:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1507.5)-0-3198.2000000000003)/2+42.5+0)+0+2063.3+0+152.4+24+794.5+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-7vabgf-container\",layoutDependency:layoutDependency,layoutId:\"QdH53Jsn4-container\",children:/*#__PURE__*/_jsx(IconCheck,{height:\"100%\",id:\"QdH53Jsn4\",layoutId:\"QdH53Jsn4\",style:{height:\"100%\"},variant:\"jlUsmUovQ\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ytx30g\",\"data-styles-preset\":\"dvYVeJqth\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c403a29a-e9da-4cc0-9f7b-e781595d6449, rgba(0, 26, 17, 0.8)))\"},children:\"Full Pages history access\"})}),className:\"framer-1gc4d4f\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"TzjYANc6a\",style:{\"--extracted-r6o4lv\":\"var(--token-c403a29a-e9da-4cc0-9f7b-e781595d6449, rgba(0, 26, 17, 0.8))\",\"--framer-paragraph-spacing\":\"16px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-jx5K4.framer-ctn47r, .framer-jx5K4 .framer-ctn47r { display: block; }\",\".framer-jx5K4.framer-2iyvfy { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1360px; }\",\".framer-jx5K4 .framer-25z0fw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 4px; position: relative; width: min-content; }\",\".framer-jx5K4 .framer-1sthndu { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 6px 8px 6px 12px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-jx5K4 .framer-1rf1mn1, .framer-jx5K4 .framer-do9jn6, .framer-jx5K4 .framer-vqjnmu, .framer-jx5K4 .framer-1mmpd90, .framer-jx5K4 .framer-13vyotq, .framer-jx5K4 .framer-1lxt1ge, .framer-jx5K4 .framer-nsua8c, .framer-jx5K4 .framer-62gxvg, .framer-jx5K4 .framer-15f4g3i, .framer-jx5K4 .framer-1xvqbx0, .framer-jx5K4 .framer-1kch99i, .framer-jx5K4 .framer-12ex6fo { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-jx5K4 .framer-upwned { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 8px 0px 8px; position: relative; width: min-content; }\",\".framer-jx5K4 .framer-e2gdsc { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 6px 12px 6px 12px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-jx5K4 .framer-1orl1rj { display: grid; flex: none; gap: 20px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(284px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-jx5K4 .framer-1huu1m1, .framer-jx5K4 .framer-1qj8ilc { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-jx5K4 .framer-19rqfi0, .framer-jx5K4 .framer-fl01g6, .framer-jx5K4 .framer-1n7hne { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 24px; position: relative; width: 100%; }\",\".framer-jx5K4 .framer-g1fs29, .framer-jx5K4 .framer-k2apk9, .framer-jx5K4 .framer-u8auyx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-jx5K4 .framer-1oyy2tt { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-jx5K4 .framer-11zyihg, .framer-jx5K4 .framer-1abezzm, .framer-jx5K4 .framer-1xfzrrb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 8px 0px 8px 0px; position: relative; width: min-content; }\",\".framer-jx5K4 .framer-uxsas9-container, .framer-jx5K4 .framer-1tf0n7j-container, .framer-jx5K4 .framer-al6to9-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-jx5K4 .framer-1ns7m26, .framer-jx5K4 .framer-1246vdp, .framer-jx5K4 .framer-4sk2l9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 24px; position: relative; width: 100%; }\",\".framer-jx5K4 .framer-xcw8mf, .framer-jx5K4 .framer-tb9d0, .framer-jx5K4 .framer-1pqwxsf, .framer-jx5K4 .framer-gw6c5e, .framer-jx5K4 .framer-1hern01, .framer-jx5K4 .framer-1xlu0m2, .framer-jx5K4 .framer-xfjstd, .framer-jx5K4 .framer-szb6f1, .framer-jx5K4 .framer-1ldv5w1, .framer-jx5K4 .framer-1sfus4q, .framer-jx5K4 .framer-swakm9, .framer-jx5K4 .framer-i17w3d, .framer-jx5K4 .framer-bfh3ow, .framer-jx5K4 .framer-1frdsmh, .framer-jx5K4 .framer-zvjxgp, .framer-jx5K4 .framer-1t477s8, .framer-jx5K4 .framer-5a8x7v, .framer-jx5K4 .framer-u3ue3u, .framer-jx5K4 .framer-px4tyl, .framer-jx5K4 .framer-198vyk0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-jx5K4 .framer-16qc41l-container, .framer-jx5K4 .framer-1n6k7id-container, .framer-jx5K4 .framer-ng6jxi-container, .framer-jx5K4 .framer-1usxx3l-container, .framer-jx5K4 .framer-h49lk8-container, .framer-jx5K4 .framer-glabep-container, .framer-jx5K4 .framer-6h489u-container, .framer-jx5K4 .framer-3z65oe-container, .framer-jx5K4 .framer-lb5k8q-container, .framer-jx5K4 .framer-1v7k3yc-container, .framer-jx5K4 .framer-1ssced7-container, .framer-jx5K4 .framer-u630jr-container, .framer-jx5K4 .framer-1adxvns-container, .framer-jx5K4 .framer-vt75et-container, .framer-jx5K4 .framer-11zo9t6-container, .framer-jx5K4 .framer-1vtb4p9-container, .framer-jx5K4 .framer-1y2avz1-container, .framer-jx5K4 .framer-9feroh-container, .framer-jx5K4 .framer-5oibwq-container, .framer-jx5K4 .framer-7vabgf-container { flex: none; height: 21px; position: relative; width: auto; }\",\".framer-jx5K4 .framer-lkp75t, .framer-jx5K4 .framer-ssrxfm, .framer-jx5K4 .framer-195zjwr, .framer-jx5K4 .framer-1f18zen, .framer-jx5K4 .framer-1k4tulq, .framer-jx5K4 .framer-1ryqz96, .framer-jx5K4 .framer-ukcse8, .framer-jx5K4 .framer-intdmw, .framer-jx5K4 .framer-fxmurp, .framer-jx5K4 .framer-1i9kjog, .framer-jx5K4 .framer-p3lkla, .framer-jx5K4 .framer-x1bhad, .framer-jx5K4 .framer-1r9sx6g, .framer-jx5K4 .framer-5itxc3, .framer-jx5K4 .framer-tgjgtu, .framer-jx5K4 .framer-n29p1i, .framer-jx5K4 .framer-1ome0s3, .framer-jx5K4 .framer-10v83yp, .framer-jx5K4 .framer-76kxkm, .framer-jx5K4 .framer-1gc4d4f { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-jx5K4 .framer-v1lz9z { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: flex-start; justify-self: start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-jx5K4 .framer-10uzjzm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; left: 50%; overflow: visible; padding: 4px 0px 4px 0px; position: absolute; top: -27px; width: 100%; z-index: 1; }\",\".framer-jx5K4 .framer-b6shz, .framer-jx5K4 .framer-g4owhg, .framer-jx5K4 .framer-1mxwfq8 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-jx5K4 .framer-1j0ql3z, .framer-jx5K4 .framer-1rqvqx9 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-jx5K4 .framer-1j3ljyi, .framer-jx5K4 .framer-j6w8px { flex: none; height: 32px; overflow: visible; position: relative; width: 32px; }\",\".framer-jx5K4 .framer-qdq75b, .framer-jx5K4 .framer-pk76nu { flex: none; height: 33px; left: 6px; position: absolute; top: -1px; width: 20px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-jx5K4.framer-2iyvfy, .framer-jx5K4 .framer-25z0fw, .framer-jx5K4 .framer-1sthndu, .framer-jx5K4 .framer-upwned, .framer-jx5K4 .framer-e2gdsc, .framer-jx5K4 .framer-1huu1m1, .framer-jx5K4 .framer-19rqfi0, .framer-jx5K4 .framer-1oyy2tt, .framer-jx5K4 .framer-11zyihg, .framer-jx5K4 .framer-1ns7m26, .framer-jx5K4 .framer-xcw8mf, .framer-jx5K4 .framer-tb9d0, .framer-jx5K4 .framer-1pqwxsf, .framer-jx5K4 .framer-gw6c5e, .framer-jx5K4 .framer-1hern01, .framer-jx5K4 .framer-1xlu0m2, .framer-jx5K4 .framer-xfjstd, .framer-jx5K4 .framer-v1lz9z, .framer-jx5K4 .framer-10uzjzm, .framer-jx5K4 .framer-fl01g6, .framer-jx5K4 .framer-1j0ql3z, .framer-jx5K4 .framer-1abezzm, .framer-jx5K4 .framer-1246vdp, .framer-jx5K4 .framer-szb6f1, .framer-jx5K4 .framer-1ldv5w1, .framer-jx5K4 .framer-1sfus4q, .framer-jx5K4 .framer-swakm9, .framer-jx5K4 .framer-i17w3d, .framer-jx5K4 .framer-bfh3ow, .framer-jx5K4 .framer-1qj8ilc, .framer-jx5K4 .framer-1n7hne, .framer-jx5K4 .framer-1rqvqx9, .framer-jx5K4 .framer-1xfzrrb, .framer-jx5K4 .framer-4sk2l9, .framer-jx5K4 .framer-1frdsmh, .framer-jx5K4 .framer-zvjxgp, .framer-jx5K4 .framer-1t477s8, .framer-jx5K4 .framer-5a8x7v, .framer-jx5K4 .framer-u3ue3u, .framer-jx5K4 .framer-px4tyl, .framer-jx5K4 .framer-198vyk0 { gap: 0px; } .framer-jx5K4.framer-2iyvfy > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-jx5K4.framer-2iyvfy > :first-child, .framer-jx5K4 .framer-1huu1m1 > :first-child, .framer-jx5K4 .framer-19rqfi0 > :first-child, .framer-jx5K4 .framer-1ns7m26 > :first-child, .framer-jx5K4 .framer-v1lz9z > :first-child, .framer-jx5K4 .framer-10uzjzm > :first-child, .framer-jx5K4 .framer-fl01g6 > :first-child, .framer-jx5K4 .framer-1246vdp > :first-child, .framer-jx5K4 .framer-1qj8ilc > :first-child, .framer-jx5K4 .framer-1n7hne > :first-child, .framer-jx5K4 .framer-4sk2l9 > :first-child { margin-top: 0px; } .framer-jx5K4.framer-2iyvfy > :last-child, .framer-jx5K4 .framer-1huu1m1 > :last-child, .framer-jx5K4 .framer-19rqfi0 > :last-child, .framer-jx5K4 .framer-1ns7m26 > :last-child, .framer-jx5K4 .framer-v1lz9z > :last-child, .framer-jx5K4 .framer-10uzjzm > :last-child, .framer-jx5K4 .framer-fl01g6 > :last-child, .framer-jx5K4 .framer-1246vdp > :last-child, .framer-jx5K4 .framer-1qj8ilc > :last-child, .framer-jx5K4 .framer-1n7hne > :last-child, .framer-jx5K4 .framer-4sk2l9 > :last-child { margin-bottom: 0px; } .framer-jx5K4 .framer-25z0fw > *, .framer-jx5K4 .framer-11zyihg > *, .framer-jx5K4 .framer-1abezzm > *, .framer-jx5K4 .framer-1xfzrrb > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-jx5K4 .framer-25z0fw > :first-child, .framer-jx5K4 .framer-1sthndu > :first-child, .framer-jx5K4 .framer-upwned > :first-child, .framer-jx5K4 .framer-e2gdsc > :first-child, .framer-jx5K4 .framer-1oyy2tt > :first-child, .framer-jx5K4 .framer-11zyihg > :first-child, .framer-jx5K4 .framer-xcw8mf > :first-child, .framer-jx5K4 .framer-tb9d0 > :first-child, .framer-jx5K4 .framer-1pqwxsf > :first-child, .framer-jx5K4 .framer-gw6c5e > :first-child, .framer-jx5K4 .framer-1hern01 > :first-child, .framer-jx5K4 .framer-1xlu0m2 > :first-child, .framer-jx5K4 .framer-xfjstd > :first-child, .framer-jx5K4 .framer-1j0ql3z > :first-child, .framer-jx5K4 .framer-1abezzm > :first-child, .framer-jx5K4 .framer-szb6f1 > :first-child, .framer-jx5K4 .framer-1ldv5w1 > :first-child, .framer-jx5K4 .framer-1sfus4q > :first-child, .framer-jx5K4 .framer-swakm9 > :first-child, .framer-jx5K4 .framer-i17w3d > :first-child, .framer-jx5K4 .framer-bfh3ow > :first-child, .framer-jx5K4 .framer-1rqvqx9 > :first-child, .framer-jx5K4 .framer-1xfzrrb > :first-child, .framer-jx5K4 .framer-1frdsmh > :first-child, .framer-jx5K4 .framer-zvjxgp > :first-child, .framer-jx5K4 .framer-1t477s8 > :first-child, .framer-jx5K4 .framer-5a8x7v > :first-child, .framer-jx5K4 .framer-u3ue3u > :first-child, .framer-jx5K4 .framer-px4tyl > :first-child, .framer-jx5K4 .framer-198vyk0 > :first-child { margin-left: 0px; } .framer-jx5K4 .framer-25z0fw > :last-child, .framer-jx5K4 .framer-1sthndu > :last-child, .framer-jx5K4 .framer-upwned > :last-child, .framer-jx5K4 .framer-e2gdsc > :last-child, .framer-jx5K4 .framer-1oyy2tt > :last-child, .framer-jx5K4 .framer-11zyihg > :last-child, .framer-jx5K4 .framer-xcw8mf > :last-child, .framer-jx5K4 .framer-tb9d0 > :last-child, .framer-jx5K4 .framer-1pqwxsf > :last-child, .framer-jx5K4 .framer-gw6c5e > :last-child, .framer-jx5K4 .framer-1hern01 > :last-child, .framer-jx5K4 .framer-1xlu0m2 > :last-child, .framer-jx5K4 .framer-xfjstd > :last-child, .framer-jx5K4 .framer-1j0ql3z > :last-child, .framer-jx5K4 .framer-1abezzm > :last-child, .framer-jx5K4 .framer-szb6f1 > :last-child, .framer-jx5K4 .framer-1ldv5w1 > :last-child, .framer-jx5K4 .framer-1sfus4q > :last-child, .framer-jx5K4 .framer-swakm9 > :last-child, .framer-jx5K4 .framer-i17w3d > :last-child, .framer-jx5K4 .framer-bfh3ow > :last-child, .framer-jx5K4 .framer-1rqvqx9 > :last-child, .framer-jx5K4 .framer-1xfzrrb > :last-child, .framer-jx5K4 .framer-1frdsmh > :last-child, .framer-jx5K4 .framer-zvjxgp > :last-child, .framer-jx5K4 .framer-1t477s8 > :last-child, .framer-jx5K4 .framer-5a8x7v > :last-child, .framer-jx5K4 .framer-u3ue3u > :last-child, .framer-jx5K4 .framer-px4tyl > :last-child, .framer-jx5K4 .framer-198vyk0 > :last-child { margin-right: 0px; } .framer-jx5K4 .framer-1sthndu > *, .framer-jx5K4 .framer-e2gdsc > *, .framer-jx5K4 .framer-xcw8mf > *, .framer-jx5K4 .framer-tb9d0 > *, .framer-jx5K4 .framer-1pqwxsf > *, .framer-jx5K4 .framer-gw6c5e > *, .framer-jx5K4 .framer-1hern01 > *, .framer-jx5K4 .framer-1xlu0m2 > *, .framer-jx5K4 .framer-xfjstd > *, .framer-jx5K4 .framer-1j0ql3z > *, .framer-jx5K4 .framer-szb6f1 > *, .framer-jx5K4 .framer-1ldv5w1 > *, .framer-jx5K4 .framer-1sfus4q > *, .framer-jx5K4 .framer-swakm9 > *, .framer-jx5K4 .framer-i17w3d > *, .framer-jx5K4 .framer-bfh3ow > *, .framer-jx5K4 .framer-1rqvqx9 > *, .framer-jx5K4 .framer-1frdsmh > *, .framer-jx5K4 .framer-zvjxgp > *, .framer-jx5K4 .framer-1t477s8 > *, .framer-jx5K4 .framer-5a8x7v > *, .framer-jx5K4 .framer-u3ue3u > *, .framer-jx5K4 .framer-px4tyl > *, .framer-jx5K4 .framer-198vyk0 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-jx5K4 .framer-upwned > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-jx5K4 .framer-1huu1m1 > *, .framer-jx5K4 .framer-v1lz9z > *, .framer-jx5K4 .framer-1qj8ilc > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-jx5K4 .framer-19rqfi0 > *, .framer-jx5K4 .framer-10uzjzm > *, .framer-jx5K4 .framer-fl01g6 > *, .framer-jx5K4 .framer-1n7hne > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-jx5K4 .framer-1oyy2tt > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-jx5K4 .framer-1ns7m26 > *, .framer-jx5K4 .framer-1246vdp > *, .framer-jx5K4 .framer-4sk2l9 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",\".framer-jx5K4.framer-v-1w8x0kv.framer-2iyvfy, .framer-jx5K4.framer-v-8u3rgq.framer-2iyvfy { gap: calc(max(0, var(--3ly452)) * 1px); width: 894px; }\",\".framer-jx5K4.framer-v-1w8x0kv .framer-1orl1rj, .framer-jx5K4.framer-v-8u3rgq .framer-1orl1rj { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: calc(max(0, var(--11osmcs)) * 1px); justify-content: flex-start; }\",\".framer-jx5K4.framer-v-1w8x0kv .framer-1huu1m1, .framer-jx5K4.framer-v-1w8x0kv .framer-1qj8ilc, .framer-jx5K4.framer-v-8u3rgq .framer-1huu1m1, .framer-jx5K4.framer-v-8u3rgq .framer-1qj8ilc { align-self: unset; height: min-content; }\",\".framer-jx5K4.framer-v-1w8x0kv .framer-v1lz9z, .framer-jx5K4.framer-v-8u3rgq .framer-v1lz9z { align-self: unset; height: min-content; overflow: hidden; will-change: var(--framer-will-change-override, transform); }\",\".framer-jx5K4.framer-v-1w8x0kv .framer-10uzjzm, .framer-jx5K4.framer-v-8u3rgq .framer-10uzjzm { left: unset; position: relative; top: unset; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-jx5K4.framer-v-1w8x0kv.framer-2iyvfy, .framer-jx5K4.framer-v-1w8x0kv .framer-1orl1rj { gap: 0px; } .framer-jx5K4.framer-v-1w8x0kv.framer-2iyvfy > * { margin: 0px; margin-bottom: calc(calc(max(0, var(--3ly452)) * 1px) / 2); margin-top: calc(calc(max(0, var(--3ly452)) * 1px) / 2); } .framer-jx5K4.framer-v-1w8x0kv.framer-2iyvfy > :first-child, .framer-jx5K4.framer-v-1w8x0kv .framer-1orl1rj > :first-child { margin-top: 0px; } .framer-jx5K4.framer-v-1w8x0kv.framer-2iyvfy > :last-child, .framer-jx5K4.framer-v-1w8x0kv .framer-1orl1rj > :last-child { margin-bottom: 0px; } .framer-jx5K4.framer-v-1w8x0kv .framer-1orl1rj > * { margin: 0px; margin-bottom: calc(calc(max(0, var(--11osmcs)) * 1px) / 2); margin-top: calc(calc(max(0, var(--11osmcs)) * 1px) / 2); } }\",\".framer-jx5K4.framer-v-8u3rgq .framer-fl01g6, .framer-jx5K4.framer-v-8u3rgq .framer-1246vdp { overflow: hidden; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-jx5K4.framer-v-8u3rgq.framer-2iyvfy, .framer-jx5K4.framer-v-8u3rgq .framer-1orl1rj { gap: 0px; } .framer-jx5K4.framer-v-8u3rgq.framer-2iyvfy > * { margin: 0px; margin-bottom: calc(calc(max(0, var(--3ly452)) * 1px) / 2); margin-top: calc(calc(max(0, var(--3ly452)) * 1px) / 2); } .framer-jx5K4.framer-v-8u3rgq.framer-2iyvfy > :first-child, .framer-jx5K4.framer-v-8u3rgq .framer-1orl1rj > :first-child { margin-top: 0px; } .framer-jx5K4.framer-v-8u3rgq.framer-2iyvfy > :last-child, .framer-jx5K4.framer-v-8u3rgq .framer-1orl1rj > :last-child { margin-bottom: 0px; } .framer-jx5K4.framer-v-8u3rgq .framer-1orl1rj > * { margin: 0px; margin-bottom: calc(calc(max(0, var(--11osmcs)) * 1px) / 2); margin-top: calc(calc(max(0, var(--11osmcs)) * 1px) / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,'.framer-jx5K4[data-border=\"true\"]::after, .framer-jx5K4 [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 588\n * @framerIntrinsicWidth 1360\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"CPUsssHbJ\":{\"layout\":[\"fixed\",\"auto\"]},\"epiv3onlw\":{\"layout\":[\"fixed\",\"auto\"]},\"uBjrCnQ8M\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"E49RLY6C0\":\"gap\",\"KuusTJ0sU\":\"gap2\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerFsga4O7rX=withCSS(Component,css,\"framer-jx5K4\");export default FramerFsga4O7rX;FramerFsga4O7rX.displayName=\"Pricing no width\";FramerFsga4O7rX.defaultProps={height:588,width:1360};addPropertyControls(FramerFsga4O7rX,{variant:{options:[\"Dx6BsI_Q1\",\"CPUsssHbJ\",\"epiv3onlw\",\"uBjrCnQ8M\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Mobile\",\"Variant 4\"],title:\"Variant\",type:ControlType.Enum},E49RLY6C0:{defaultValue:56,min:0,title:\"Gap\",type:ControlType.Number},KuusTJ0sU:{defaultValue:20,min:0,title:\"Gap 2\",type:ControlType.Number}});addFonts(FramerFsga4O7rX,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...ButtonFonts,...IconCheckFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerFsga4O7rX\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"E49RLY6C0\\\":\\\"gap\\\",\\\"KuusTJ0sU\\\":\\\"gap2\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"588\",\"framerIntrinsicWidth\":\"1360\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CPUsssHbJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"epiv3onlw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"uBjrCnQ8M\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Fsga4O7rX.map", "// Generated by Framer (92d6359)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/uaTApnUk13RUfAvfPDXx/TTF11rD9w4o3Hj3Hg5Hz/K3JFQRv14.js\";const enabledGestures={gZJRVk3FB:{hover:true}};const serializationHash=\"framer-ML6Sc\";const variantClassNames={gZJRVk3FB:\"framer-v-12qlpnv\"};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 transition2={bounce:.2,delay:0,duration:.3,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:\"gZJRVk3FB\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];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(motion.button,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-12qlpnv\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"gZJRVk3FB\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-efed5123-b78e-47fe-9a43-9eea948dc0d7, rgb(255, 255, 255))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,...style},variants:{\"gZJRVk3FB-hover\":{backgroundColor:\"var(--token-e2437e9e-3e4f-4ab7-962a-c781cb0bde7f, rgb(0, 26, 17))\"}},...addPropertyOverrides({\"gZJRVk3FB-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Transition,{value:transition2,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1vtx2c4\",\"data-styles-preset\":\"K3JFQRv14\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e2437e9e-3e4f-4ab7-962a-c781cb0bde7f, rgb(0, 26, 17)))\"},children:\"Learn More\"})}),className:\"framer-jq4q0d\",\"data-framer-name\":\"Log in\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"EkLleM4cp\",style:{\"--extracted-r6o4lv\":\"var(--token-e2437e9e-3e4f-4ab7-962a-c781cb0bde7f, rgb(0, 26, 17))\"},variants:{\"gZJRVk3FB-hover\":{\"--extracted-r6o4lv\":\"var(--token-efed5123-b78e-47fe-9a43-9eea948dc0d7, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"gZJRVk3FB-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1vtx2c4\",\"data-styles-preset\":\"K3JFQRv14\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-efed5123-b78e-47fe-9a43-9eea948dc0d7, rgb(255, 255, 255)))\"},children:\"Learn More\"})})}},baseVariant,gestureVariant)})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ML6Sc.framer-1v4tmhb, .framer-ML6Sc .framer-1v4tmhb { display: block; }\",\".framer-ML6Sc.framer-12qlpnv { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 10px 32px 10px 32px; position: relative; width: min-content; }\",\".framer-ML6Sc .framer-jq4q0d { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ML6Sc.framer-12qlpnv { gap: 0px; } .framer-ML6Sc.framer-12qlpnv > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-ML6Sc.framer-12qlpnv > :first-child { margin-left: 0px; } .framer-ML6Sc.framer-12qlpnv > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 42\n * @framerIntrinsicWidth 150\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"QTAEjxWFJ\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerENSCE2bCW=withCSS(Component,css,\"framer-ML6Sc\");export default FramerENSCE2bCW;FramerENSCE2bCW.displayName=\"Button/Dud\";FramerENSCE2bCW.defaultProps={height:42,width:150};addFonts(FramerENSCE2bCW,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerENSCE2bCW\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"150\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"QTAEjxWFJ\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"42\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ENSCE2bCW.map", "// Generated by Framer (92d6359)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/2vSzSMyBJiiVL4pcD2ZQ/W3SGlZ4Mfl4vQwA50a07/BsYwiyj6u.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/jVlvMbW6jIbfjzO6VKvW/L753Iutzakmwt9oCZQ7h/IGjVpBT29.js\";import ButtonDud from\"https://framerusercontent.com/modules/pdzSmnIVqzepghEzKyEC/BlZTfJt9dHfdTia98Vbx/ENSCE2bCW.js\";const ButtonDudFonts=getFonts(ButtonDud);const enabledGestures={ArhKheuxd:{hover:true},ft4U0Sc8g:{hover:true},z5UUgdEQe:{hover:true},zCR6BwxKm:{hover:true}};const cycleOrder=[\"ft4U0Sc8g\",\"ArhKheuxd\",\"zCR6BwxKm\",\"z5UUgdEQe\"];const serializationHash=\"framer-DU8Ca\";const variantClassNames={ArhKheuxd:\"framer-v-15swxsn\",ft4U0Sc8g:\"framer-v-18ayjf3\",z5UUgdEQe:\"framer-v-1bprg9a\",zCR6BwxKm:\"framer-v-1q08qct\"};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:0,delay:0,duration:.3,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\":\"ft4U0Sc8g\",\"Variant 2\":\"ArhKheuxd\",\"Variant 3\":\"zCR6BwxKm\",\"Variant 4\":\"z5UUgdEQe\"};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:\"ft4U0Sc8g\"};};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:\"ft4U0Sc8g\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];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:\"sakIY49ga\"},nodeId:\"ft4U0Sc8g\",openInNewTab:false,...addPropertyOverrides({ArhKheuxd:{href:{webPageId:\"Qht4GoSjX\"}},z5UUgdEQe:{href:{webPageId:\"x_oOMHqVb\"}},zCR6BwxKm:{href:{webPageId:\"t3zvq51hK\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,background:{alt:\"\",positionX:\"center\",positionY:\"center\"},className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-18ayjf3\",className,classNames)} framer-1cdh88c`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"ft4U0Sc8g\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,...style},...addPropertyOverrides({\"ArhKheuxd-hover\":{\"data-framer-name\":undefined},\"ft4U0Sc8g-hover\":{\"data-framer-name\":undefined},\"z5UUgdEQe-hover\":{\"data-framer-name\":undefined},\"zCR6BwxKm-hover\":{\"data-framer-name\":undefined},ArhKheuxd:{\"data-framer-name\":\"Variant 2\"},z5UUgdEQe:{\"data-framer-name\":\"Variant 4\"},zCR6BwxKm:{\"data-framer-name\":\"Variant 3\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9mbgt7\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"tcq9nf1SC\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1o11dkj\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"eKxyYXMge\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-dz5lr3\",\"data-styles-preset\":\"BsYwiyj6u\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-efed5123-b78e-47fe-9a43-9eea948dc0d7, rgb(255, 255, 255)))\"},children:\"Searching\"})}),className:\"framer-yecb7n\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"rBLKN7qBA\",style:{\"--extracted-1of0zx5\":\"var(--token-efed5123-b78e-47fe-9a43-9eea948dc0d7, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ArhKheuxd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-dz5lr3\",\"data-styles-preset\":\"BsYwiyj6u\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-efed5123-b78e-47fe-9a43-9eea948dc0d7, rgb(255, 255, 255)))\"},children:\"Reading\"})})},z5UUgdEQe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-dz5lr3\",\"data-styles-preset\":\"BsYwiyj6u\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-efed5123-b78e-47fe-9a43-9eea948dc0d7, rgb(255, 255, 255)))\"},children:\"API\"})})},zCR6BwxKm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-dz5lr3\",\"data-styles-preset\":\"BsYwiyj6u\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-efed5123-b78e-47fe-9a43-9eea948dc0d7, rgb(255, 255, 255)))\"},children:\"Writing\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1b9c0mk\",\"data-styles-preset\":\"IGjVpBT29\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2ffcc541-0341-40c4-a5fd-e6567ca95ae5, rgba(255, 255, 255, 0.8)))\"},children:\"Redefines Knowledge Discovery\"})}),className:\"framer-1didz5g\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"OmHetCjSx\",style:{\"--extracted-r6o4lv\":\"var(--token-2ffcc541-0341-40c4-a5fd-e6567ca95ae5, rgba(255, 255, 255, 0.8))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ArhKheuxd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1b9c0mk\",\"data-styles-preset\":\"IGjVpBT29\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2ffcc541-0341-40c4-a5fd-e6567ca95ae5, rgba(255, 255, 255, 0.8)))\"},children:\"Revolutionizes Knowledge Work\"})})},z5UUgdEQe:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1b9c0mk\",\"data-styles-preset\":\"IGjVpBT29\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2ffcc541-0341-40c4-a5fd-e6567ca95ae5, rgba(255, 255, 255, 0.8)))\"},children:\"Empowers Businesses with AI\"})})},zCR6BwxKm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1b9c0mk\",\"data-styles-preset\":\"IGjVpBT29\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2ffcc541-0341-40c4-a5fd-e6567ca95ae5, rgba(255, 255, 255, 0.8)))\"},children:\"Streamlines Knowledge Workflow\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||670)-208.5+0+190.5,...addPropertyOverrides({\"ArhKheuxd-hover\":{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||670)-272.5+0+190.5},\"ft4U0Sc8g-hover\":{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||670)-272.5+0+190.5},\"z5UUgdEQe-hover\":{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||670)-272.5+0+190.5},\"zCR6BwxKm-hover\":{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||670)-272.5+0+190.5}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-17fii3j-container\",layoutDependency:layoutDependency,layoutId:\"s8buWKDbs-container\",style:{opacity:0},variants:{\"ArhKheuxd-hover\":{opacity:1},\"ft4U0Sc8g-hover\":{opacity:1},\"z5UUgdEQe-hover\":{opacity:1},\"zCR6BwxKm-hover\":{opacity:1}},children:/*#__PURE__*/_jsx(ButtonDud,{height:\"100%\",id:\"s8buWKDbs\",layoutId:\"s8buWKDbs\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qlwxiv\",\"data-framer-name\":\"Overlay\",layoutDependency:layoutDependency,layoutId:\"PcmetwI0q\",style:{background:\"linear-gradient(180deg, rgba(42, 133, 225, 0) 0%, rgb(42, 133, 225) 100%)\"},variants:{ArhKheuxd:{background:\"linear-gradient(180deg, rgba(255, 175, 114, 0) 0%, rgb(255, 175, 114) 100%)\"},z5UUgdEQe:{background:\"linear-gradient(180deg, rgba(76, 44, 172, 0) 0%, rgb(76, 44, 172) 100%)\"},zCR6BwxKm:{background:\"linear-gradient(180deg, rgba(0, 78, 212, 0) 0%, rgb(0, 78, 212) 100%)\"}}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:660,intrinsicWidth:660,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||670)-(0+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||670)*1)),pixelHeight:1340,pixelWidth:1340,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/Byvoq46lAYFK7DiZ9bvjgBzOXs.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/Byvoq46lAYFK7DiZ9bvjgBzOXs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Byvoq46lAYFK7DiZ9bvjgBzOXs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Byvoq46lAYFK7DiZ9bvjgBzOXs.jpg 1340w\"},className:\"framer-1yvlp6y\",\"data-framer-name\":\"Cover\",layoutDependency:layoutDependency,layoutId:\"TiLu6maHw\",style:{scale:1},variants:{\"ArhKheuxd-hover\":{scale:1.05},\"ft4U0Sc8g-hover\":{scale:1.05},\"z5UUgdEQe-hover\":{scale:1.05},\"zCR6BwxKm-hover\":{scale:1.05}},...addPropertyOverrides({ArhKheuxd:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:660,intrinsicWidth:660,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||670)-(0+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||670)*1)),pixelHeight:1340,pixelWidth:1340,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/LBGEY8Eh5wjdX0B8tfdQLKV7AM.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/LBGEY8Eh5wjdX0B8tfdQLKV7AM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/LBGEY8Eh5wjdX0B8tfdQLKV7AM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/LBGEY8Eh5wjdX0B8tfdQLKV7AM.jpg 1340w\"}},z5UUgdEQe:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:660,intrinsicWidth:660,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||670)-(0+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||670)*1)),pixelHeight:1340,pixelWidth:1340,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/iZNIWV5snshinS8vqpFOGToKqlI.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/iZNIWV5snshinS8vqpFOGToKqlI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/iZNIWV5snshinS8vqpFOGToKqlI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/iZNIWV5snshinS8vqpFOGToKqlI.jpg 1340w\"}},zCR6BwxKm:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:660,intrinsicWidth:660,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||670)-(0+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||670)*1)),pixelHeight:1340,pixelWidth:1340,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/ujJ5ibEp6iPP0llvj8tFKaQxhY.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/ujJ5ibEp6iPP0llvj8tFKaQxhY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ujJ5ibEp6iPP0llvj8tFKaQxhY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ujJ5ibEp6iPP0llvj8tFKaQxhY.jpg 1340w\"}}},baseVariant,gestureVariant)})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-DU8Ca.framer-1cdh88c, .framer-DU8Ca .framer-1cdh88c { display: block; }\",\".framer-DU8Ca.framer-18ayjf3 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 670px; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 670px; will-change: var(--framer-will-change-override, transform); }\",\".framer-DU8Ca .framer-9mbgt7 { align-content: center; align-items: center; bottom: -24px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; width: 100%; z-index: 2; }\",\".framer-DU8Ca .framer-1o11dkj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-DU8Ca .framer-yecb7n { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-DU8Ca .framer-1didz5g { --framer-text-wrap-override: balance; flex: none; height: auto; position: relative; width: 100%; }\",\".framer-DU8Ca .framer-17fii3j-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-DU8Ca .framer-1qlwxiv { bottom: 0px; flex: none; height: 40%; left: 0px; overflow: hidden; position: absolute; width: 100%; z-index: 1; }\",\".framer-DU8Ca .framer-1yvlp6y { bottom: 0px; flex: none; height: 100%; left: 0px; overflow: visible; position: absolute; width: 100%; z-index: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-DU8Ca.framer-18ayjf3, .framer-DU8Ca .framer-9mbgt7, .framer-DU8Ca .framer-1o11dkj { gap: 0px; } .framer-DU8Ca.framer-18ayjf3 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-DU8Ca.framer-18ayjf3 > :first-child, .framer-DU8Ca .framer-9mbgt7 > :first-child, .framer-DU8Ca .framer-1o11dkj > :first-child { margin-top: 0px; } .framer-DU8Ca.framer-18ayjf3 > :last-child, .framer-DU8Ca .framer-9mbgt7 > :last-child, .framer-DU8Ca .framer-1o11dkj > :last-child { margin-bottom: 0px; } .framer-DU8Ca .framer-9mbgt7 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-DU8Ca .framer-1o11dkj > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }\",\".framer-DU8Ca.framer-v-15swxsn.framer-18ayjf3, .framer-DU8Ca.framer-v-1q08qct.framer-18ayjf3, .framer-DU8Ca.framer-v-1bprg9a.framer-18ayjf3, .framer-DU8Ca.framer-v-18ayjf3.hover.framer-18ayjf3 { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 670px); }\",\".framer-DU8Ca.framer-v-18ayjf3.hover .framer-9mbgt7, .framer-DU8Ca.framer-v-15swxsn.hover .framer-9mbgt7, .framer-DU8Ca.framer-v-1q08qct.hover .framer-9mbgt7, .framer-DU8Ca.framer-v-1bprg9a.hover .framer-9mbgt7 { bottom: 40px; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 670\n * @framerIntrinsicWidth 670\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"ArhKheuxd\":{\"layout\":[\"fixed\",\"fixed\"]},\"zCR6BwxKm\":{\"layout\":[\"fixed\",\"fixed\"]},\"z5UUgdEQe\":{\"layout\":[\"fixed\",\"fixed\"]},\"pwgdSEneN\":{\"layout\":[\"fixed\",\"fixed\"]},\"QrYIHW_eU\":{\"layout\":[\"fixed\",\"fixed\"]},\"QR7gunH_M\":{\"layout\":[\"fixed\",\"fixed\"]},\"NamNkL8xx\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerlZhZ8Mtyd=withCSS(Component,css,\"framer-DU8Ca\");export default FramerlZhZ8Mtyd;FramerlZhZ8Mtyd.displayName=\"Home/Product Card\";FramerlZhZ8Mtyd.defaultProps={height:670,width:670};addPropertyControls(FramerlZhZ8Mtyd,{variant:{options:[\"ft4U0Sc8g\",\"ArhKheuxd\",\"zCR6BwxKm\",\"z5UUgdEQe\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Variant 4\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerlZhZ8Mtyd,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...ButtonDudFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerlZhZ8Mtyd\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"670\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"670\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ArhKheuxd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"zCR6BwxKm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"z5UUgdEQe\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"pwgdSEneN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"QrYIHW_eU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"QR7gunH_M\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"NamNkL8xx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./lZhZ8Mtyd.map", "var t,e,r,n=Object.create,i=Object.defineProperty,a=Object.getOwnPropertyDescriptor,s=Object.getOwnPropertyNames,o=Object.getPrototypeOf,l=Object.prototype.hasOwnProperty,u=(t,e)=>function(){return e||(0,t[s(t)[0]])((e={exports:{}}).exports,e),e.exports;},f=(t,e,r,n)=>{if(e&&\"object\"==typeof e||\"function\"==typeof e)for(let o of s(e))l.call(t,o)||o===r||i(t,o,{get:()=>e[o],enumerable:!(n=a(e,o))||n.enumerable});return t;},h=(t,e,r)=>(r=null!=t?n(o(t)):{},f(// If the importer is in node compatibility mode or this is not an ESM\n    // file that has been converted to a CommonJS file using a Babel-\n    // compatible transform (i.e. \"__esModule\" has not been set), then set\n    // \"default\" to the CommonJS \"module.exports\" for node compatibility.\n    !e&&t&&t.__esModule?r:i(r,\"default\",{value:t,enumerable:!0}),t)),c=u({\"../../../node_modules/dataloader/index.js\"(t,e){var r,n=/* @__PURE__ */function(){function t(t,e){if(\"function\"!=typeof t)throw TypeError(\"DataLoader must be constructed with a function which accepts Array<key> and returns Promise<Array<value>>, but got: \"+t+\".\");this._batchLoadFn=t,this._maxBatchSize=function(t){if(!(!t||!1!==t.batch))return 1;var e=t&&t.maxBatchSize;if(void 0===e)return 1/0;if(\"number\"!=typeof e||e<1)throw TypeError(\"maxBatchSize must be a positive number: \"+e);return e;}(e),this._batchScheduleFn=function(t){var e=t&&t.batchScheduleFn;if(void 0===e)return i;if(\"function\"!=typeof e)throw TypeError(\"batchScheduleFn must be a function: \"+e);return e;}(e),this._cacheKeyFn=function(t){var e=t&&t.cacheKeyFn;if(void 0===e)return function(t){return t;};if(\"function\"!=typeof e)throw TypeError(\"cacheKeyFn must be a function: \"+e);return e;}(e),this._cacheMap=function(t){if(!(!t||!1!==t.cache))return null;var e=t&&t.cacheMap;if(void 0===e)return /* @__PURE__ */new Map;if(null!==e){var r=[\"get\",\"set\",\"delete\",\"clear\"].filter(function(t){return e&&\"function\"!=typeof e[t];});if(0!==r.length)throw TypeError(\"Custom cacheMap missing methods: \"+r.join(\", \"));}return e;}(e),this._batch=null,this.name=e&&e.name?e.name:null;}var e=t.prototype;return e.load=function(t){if(null==t)throw TypeError(\"The loader.load() function must be called with a value, but got: \"+String(t)+\".\");var e=function(t){var e=t._batch;if(null!==e&&!e.hasDispatched&&e.keys.length<t._maxBatchSize)return e;var r={hasDispatched:!1,keys:[],callbacks:[]};return t._batch=r,t._batchScheduleFn(function(){(function(t,e){var r;if(e.hasDispatched=!0,0===e.keys.length){s(e);return;}try{r=t._batchLoadFn(e.keys);}catch(r){return a(t,e,TypeError(\"DataLoader must be constructed with a function which accepts Array<key> and returns Promise<Array<value>>, but the function errored synchronously: \"+String(r)+\".\"));}if(!r||\"function\"!=typeof r.then)return a(t,e,TypeError(\"DataLoader must be constructed with a function which accepts Array<key> and returns Promise<Array<value>>, but the function did not return a Promise: \"+String(r)+\".\"));r.then(function(t){if(!o(t))throw TypeError(\"DataLoader must be constructed with a function which accepts Array<key> and returns Promise<Array<value>>, but the function did not return a Promise of an Array: \"+String(t)+\".\");if(t.length!==e.keys.length)throw TypeError(\"DataLoader must be constructed with a function which accepts Array<key> and returns Promise<Array<value>>, but the function did not return a Promise of an Array of the same length as the Array of keys.\\n\\nKeys:\\n\"+String(e.keys)+\"\\n\\nValues:\\n\"+String(t));s(e);for(var r=0;r<e.callbacks.length;r++){var n=t[r];n instanceof Error?e.callbacks[r].reject(n):e.callbacks[r].resolve(n);}}).catch(function(r){a(t,e,r);});})(t,r);}),r;}(this),r=this._cacheMap,n=this._cacheKeyFn(t);if(r){var i=r.get(n);if(i){var l=e.cacheHits||(e.cacheHits=[]);return new Promise(function(t){l.push(function(){t(i);});});}}e.keys.push(t);var u=new Promise(function(t,r){e.callbacks.push({resolve:t,reject:r});});return r&&r.set(n,u),u;},e.loadMany=function(t){if(!o(t))throw TypeError(\"The loader.loadMany() function must be called with Array<key> but got: \"+t+\".\");for(var e=[],r=0;r<t.length;r++)e.push(this.load(t[r]).catch(function(t){return t;}));return Promise.all(e);},e.clear=function(t){var e=this._cacheMap;if(e){var r=this._cacheKeyFn(t);e.delete(r);}return this;},e.clearAll=function(){var t=this._cacheMap;return t&&t.clear(),this;},e.prime=function(t,e){var r=this._cacheMap;if(r){var n,i=this._cacheKeyFn(t);void 0===r.get(i)&&(e instanceof Error?(n=Promise.reject(e)).catch(function(){}):n=Promise.resolve(e),r.set(i,n));}return this;},t;}(),i=\"object\"==typeof process&&\"function\"==typeof process.nextTick?function(t){r||(r=Promise.resolve()),r.then(function(){process.nextTick(t);});}:\"function\"==typeof setImmediate?function(t){setImmediate(t);}:function(t){setTimeout(t);};function a(t,e,r){s(e);for(var n=0;n<e.keys.length;n++)t.clear(e.keys[n]),e.callbacks[n].reject(r);}function s(t){if(t.cacheHits)for(var e=0;e<t.cacheHits.length;e++)t.cacheHits[e]();}function o(t){return\"object\"==typeof t&&null!==t&&\"number\"==typeof t.length&&(0===t.length||t.length>0&&Object.prototype.hasOwnProperty.call(t,t.length-1));}e.exports=n;}}),p=u({\"../../../node_modules/splaytree/dist/splay.js\"(t,e){var r;r=function(){var t=function(t,e){this.next=null,this.key=t,this.data=e,this.left=null,this.right=null;};function e(t,e){return t>e?1:t<e?-1:0;}function r(e,r,n){for(var i=new t(null,null),a=i,s=i;;){var o=n(e,r.key);if(o<0){if(null===r.left)break;if(0>n(e,r.left.key)){var l=r.left;if(r.left=l.right,l.right=r,null===(r=l).left)break;}s.left=r,s=r,r=r.left;}else if(o>0){if(null===r.right)break;if(n(e,r.right.key)>0){var l=r.right;if(r.right=l.left,l.left=r,null===(r=l).right)break;}a.right=r,a=r,r=r.right;}else break;}return a.right=r.left,s.left=r.right,r.left=i.right,r.right=i.left,r;}function n(e,n,i,a){var s=new t(e,n);if(null===i)return s.left=s.right=null,s;i=r(e,i,a);var o=a(e,i.key);return o<0?(s.left=i.left,s.right=i,i.left=null):o>=0&&(s.right=i.right,s.left=i,i.right=null),s;}function i(t,e,n){var i=null,a=null;if(e){e=r(t,e,n);var s=n(e.key,t);0===s?(i=e.left,a=e.right):s<0?(a=e.right,e.right=null,i=e):(i=e.left,e.left=null,a=e);}return{left:i,right:a};}return /** @class */function(){function a(t){void 0===t&&(t=e),this._root=null,this._size=0,this._comparator=t;}return a.prototype.insert=function(t,e){return this._size++,this._root=n(t,e,this._root,this._comparator);},a.prototype.add=function(e,n){var i=new t(e,n);null===this._root&&(i.left=i.right=null,this._size++,this._root=i);var a=this._comparator,s=r(e,this._root,a),o=a(e,s.key);return 0===o?this._root=s:(o<0?(i.left=s.left,i.right=s,s.left=null):o>0&&(i.right=s.right,i.left=s,s.right=null),this._size++,this._root=i),this._root;},a.prototype.remove=function(t){this._root=this._remove(t,this._root,this._comparator);},a.prototype._remove=function(t,e,n){var i;return null===e?null:(e=r(t,e,n),0===n(t,e.key))?(null===e.left?i=e.right:(i=r(t,e.left,n)).right=e.right,this._size--,i):e;},a.prototype.pop=function(){var t=this._root;if(t){for(;t.left;)t=t.left;return this._root=r(t.key,this._root,this._comparator),this._root=this._remove(t.key,this._root,this._comparator),{key:t.key,data:t.data};}return null;},a.prototype.findStatic=function(t){for(var e=this._root,r=this._comparator;e;){var n=r(t,e.key);if(0===n)return e;e=n<0?e.left:e.right;}return null;},a.prototype.find=function(t){return this._root&&(this._root=r(t,this._root,this._comparator),0!==this._comparator(t,this._root.key))?null:this._root;},a.prototype.contains=function(t){for(var e=this._root,r=this._comparator;e;){var n=r(t,e.key);if(0===n)return!0;e=n<0?e.left:e.right;}return!1;},a.prototype.forEach=function(t,e){for(var r=this._root,n=[],i=!1;!i;)null!==r?(n.push(r),r=r.left):0!==n.length?(r=n.pop(),t.call(e,r),r=r.right):i=!0;return this;},a.prototype.range=function(t,e,r,n){for(var i=[],a=this._comparator,s=this._root;0!==i.length||s;)if(s)i.push(s),s=s.left;else{if(a((s=i.pop()).key,e)>0)break;if(a(s.key,t)>=0&&r.call(n,s))return this;s=s.right;}return this;},a.prototype.keys=function(){var t=[];return this.forEach(function(e){var r=e.key;return t.push(r);}),t;},a.prototype.values=function(){var t=[];return this.forEach(function(e){var r=e.data;return t.push(r);}),t;},a.prototype.min=function(){return this._root?this.minNode(this._root).key:null;},a.prototype.max=function(){return this._root?this.maxNode(this._root).key:null;},a.prototype.minNode=function(t){if(void 0===t&&(t=this._root),t)for(;t.left;)t=t.left;return t;},a.prototype.maxNode=function(t){if(void 0===t&&(t=this._root),t)for(;t.right;)t=t.right;return t;},a.prototype.at=function(t){for(var e=this._root,r=!1,n=0,i=[];!r;)if(e)i.push(e),e=e.left;else if(i.length>0){if(e=i.pop(),n===t)return e;n++,e=e.right;}else r=!0;return null;},a.prototype.next=function(t){var e=this._root,r=null;if(t.right){for(r=t.right;r.left;)r=r.left;return r;}for(var n=this._comparator;e;){var i=n(t.key,e.key);if(0===i)break;i<0?(r=e,e=e.left):e=e.right;}return r;},a.prototype.prev=function(t){var e=this._root,r=null;if(null!==t.left){for(r=t.left;r.right;)r=r.right;return r;}for(var n=this._comparator;e;){var i=n(t.key,e.key);if(0===i)break;i<0?e=e.left:(r=e,e=e.right);}return r;},a.prototype.clear=function(){return this._root=null,this._size=0,this;},a.prototype.toList=function(){return function(e){for(var r=e,n=[],i=!1,a=new t(null,null),s=a;!i;)r?(n.push(r),r=r.left):n.length>0?r=(r=s=s.next=n.pop()).right:i=!0;return s.next=null,a.next;}(this._root);},a.prototype.load=function(e,r,n){void 0===r&&(r=[]),void 0===n&&(n=!1);var i=e.length,a=this._comparator;if(n&&function t(e,r,n,i,a){if(!(n>=i)){for(var s=e[n+i>>1],o=n-1,l=i+1;;){do o++;while(0>a(e[o],s))do l--;while(a(e[l],s)>0)if(o>=l)break;var u=e[o];e[o]=e[l],e[l]=u,u=r[o],r[o]=r[l],r[l]=u;}t(e,r,n,l,a),t(e,r,l+1,i,a);}}(e,r,0,i-1,a),null===this._root)this._root=function e(r,n,i,a){var s=a-i;if(s>0){var o=i+Math.floor(s/2),l=r[o],u=n[o],f=new t(l,u);return f.left=e(r,n,i,o),f.right=e(r,n,o+1,a),f;}return null;}(e,r,0,i),this._size=i;else{var s=function(e,r,n){for(var i=new t(null,null),a=i,s=e,o=r;null!==s&&null!==o;)0>n(s.key,o.key)?(a.next=s,s=s.next):(a.next=o,o=o.next),a=a.next;return null!==s?a.next=s:null!==o&&(a.next=o),i.next;}(this.toList(),function(e,r){for(var n=new t(null,null),i=n,a=0;a<e.length;a++)i=i.next=new t(e[a],r[a]);return i.next=null,n.next;}(e,r),a);i=this._size+i,this._root=function t(e,r,n){var i=n-r;if(i>0){var a=r+Math.floor(i/2),s=t(e,r,a),o=e.head;return o.left=s,e.head=e.head.next,o.right=t(e,a+1,n),o;}return null;}({head:s},0,i);}return this;},a.prototype.isEmpty=function(){return null===this._root;},Object.defineProperty(a.prototype,\"size\",{get:function(){return this._size;},enumerable:!0,configurable:!0}),Object.defineProperty(a.prototype,\"root\",{get:function(){return this._root;},enumerable:!0,configurable:!0}),a.prototype.toString=function(t){void 0===t&&(t=function(t){return String(t.key);});var e=[];return function t(e,r,n,i,a){if(e){i(\"\"+r+(n?\"\u2514\u2500\u2500 \":\"\u251C\u2500\u2500 \")+a(e)+\"\\n\");var s=r+(n?\"    \":\"\u2502   \");e.left&&t(e.left,s,!1,i,a),e.right&&t(e.right,s,!0,i,a);}}(this._root,\"\",!0,function(t){return e.push(t);},t),e.join(\"\");},a.prototype.update=function(t,e,a){var s,o,l=this._comparator,u=i(t,this._root,l),f=u.left,h=u.right;0>l(t,e)?h=n(e,a,h,l):f=n(e,a,f,l),this._root=(s=f,null===(o=h)?s:(null===s||((o=r(s.key,o,l)).left=s),o));},a.prototype.split=function(t){return i(t,this._root,this._comparator);},a.prototype[Symbol.iterator]=function(){var t,e,r;return function(t,e){var r,n,i,a,s={label:0,sent:function(){if(1&i[0])throw i[1];return i[1];},trys:[],ops:[]};return a={next:o(0),throw:o(1),return:o(2)},\"function\"==typeof Symbol&&(a[Symbol.iterator]=function(){return this;}),a;function o(a){return function(o){return function(a){if(r)throw TypeError(\"Generator is already executing.\");for(;s;)try{if(r=1,n&&(i=2&a[0]?n.return:a[0]?n.throw||((i=n.return)&&i.call(n),0):n.next)&&!(i=i.call(n,a[1])).done)return i;switch(n=0,i&&(a=[2&a[0],i.value]),a[0]){case 0:case 1:i=a;break;case 4:return s.label++,{value:a[1],done:!1};case 5:s.label++,n=a[1],a=[0];continue;case 7:a=s.ops.pop(),s.trys.pop();continue;default:if(!(i=(i=s.trys).length>0&&i[i.length-1])&&(6===a[0]||2===a[0])){s=0;continue;}if(3===a[0]&&(!i||a[1]>i[0]&&a[1]<i[3])){s.label=a[1];break;}if(6===a[0]&&s.label<i[1]){s.label=i[1],i=a;break;}if(i&&s.label<i[2]){s.label=i[2],s.ops.push(a);break;}i[2]&&s.ops.pop(),s.trys.pop();continue;}a=e.call(t,s);}catch(t){a=[6,t],n=0;}finally{r=i=0;}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:!0};}([a,o]);};}}(this,function(n){switch(n.label){case 0:t=this._root,e=[],r=!1,n.label=1;case 1:if(r)return[3,6];if(!(null!==t))return[3,2];return e.push(t),t=t.left,[3,5];case 2:if(!(0!==e.length))return[3,4];return[4,t=e.pop()];case 3:return n.sent(),t=t.right,[3,5];case 4:r=!0,n.label=5;case 5:return[3,1];case 6:return[2];}});},a;}();},\"object\"==typeof t&&void 0!==e?e.exports=r():\"function\"==typeof define&&define.amd?define(r):t.SplayTree=r();}}),d=u({\"../../../node_modules/whatwg-mimetype/lib/utils.js\"(t){t.removeLeadingAndTrailingHTTPWhitespace=t=>t.replace(/^[ \\t\\n\\r]+/u,\"\").replace(/[ \\t\\n\\r]+$/u,\"\"),t.removeTrailingHTTPWhitespace=t=>t.replace(/[ \\t\\n\\r]+$/u,\"\"),t.isHTTPWhitespaceChar=t=>\" \"===t||\"\t\"===t||\"\\n\"===t||\"\\r\"===t,t.solelyContainsHTTPTokenCodePoints=t=>/^[-!#$%&'*+.^_`|~A-Za-z0-9]*$/u.test(t),t.soleyContainsHTTPQuotedStringTokenCodePoints=t=>/^[\\t\\u0020-\\u007E\\u0080-\\u00FF]*$/u.test(t),t.asciiLowercase=t=>t.replace(/[A-Z]/ug,t=>t.toLowerCase()),t.collectAnHTTPQuotedString=(t,e)=>{let r=\"\";for(e++;;){for(;e<t.length&&'\"'!==t[e]&&\"\\\\\"!==t[e];)r+=t[e],++e;if(e>=t.length)break;let n=t[e];if(++e,\"\\\\\"===n){if(e>=t.length){r+=\"\\\\\";break;}r+=t[e],++e;}else break;}return[r,e];};}}),g=u({\"../../../node_modules/whatwg-mimetype/lib/mime-type-parameters.js\"(t,e){var{asciiLowercase:r,solelyContainsHTTPTokenCodePoints:n,soleyContainsHTTPQuotedStringTokenCodePoints:i}=d();e.exports=class{get size(){return this._map.size;}get(t){return t=r(String(t)),this._map.get(t);}has(t){return t=r(String(t)),this._map.has(t);}set(t,e){if(t=r(String(t)),e=String(e),!n(t))throw Error(`Invalid MIME type parameter name \"${t}\": only HTTP token code points are valid.`);if(!i(e))throw Error(`Invalid MIME type parameter value \"${e}\": only HTTP quoted-string token code points are valid.`);return this._map.set(t,e);}clear(){this._map.clear();}delete(t){return t=r(String(t)),this._map.delete(t);}forEach(t,e){this._map.forEach(t,e);}keys(){return this._map.keys();}values(){return this._map.values();}entries(){return this._map.entries();}[Symbol.iterator](){return this._map[Symbol.iterator]();}constructor(t){this._map=t;}};}}),v=u({\"../../../node_modules/whatwg-mimetype/lib/parser.js\"(t,e){var{removeLeadingAndTrailingHTTPWhitespace:r,removeTrailingHTTPWhitespace:n,isHTTPWhitespaceChar:i,solelyContainsHTTPTokenCodePoints:a,soleyContainsHTTPQuotedStringTokenCodePoints:s,asciiLowercase:o,collectAnHTTPQuotedString:l}=d();e.exports=t=>{t=r(t);let e=0,u=\"\";for(;e<t.length&&\"/\"!==t[e];)u+=t[e],++e;if(0===u.length||!a(u)||e>=t.length)return null;++e;let f=\"\";for(;e<t.length&&\";\"!==t[e];)f+=t[e],++e;if(0===(f=n(f)).length||!a(f))return null;let h={type:o(u),subtype:o(f),parameters:/* @__PURE__ */new Map};for(;e<t.length;){for(++e;i(t[e]);)++e;let r=\"\";for(;e<t.length&&\";\"!==t[e]&&\"=\"!==t[e];)r+=t[e],++e;if(r=o(r),e<t.length){if(\";\"===t[e])continue;++e;}let u=null;if('\"'===t[e])for([u,e]=l(t,e);e<t.length&&\";\"!==t[e];)++e;else{for(u=\"\";e<t.length&&\";\"!==t[e];)u+=t[e],++e;if(\"\"===(u=n(u)))continue;}r.length>0&&a(r)&&s(u)&&!h.parameters.has(r)&&h.parameters.set(r,u);}return h;};}}),y=u({\"../../../node_modules/whatwg-mimetype/lib/serializer.js\"(t,e){var{solelyContainsHTTPTokenCodePoints:r}=d();e.exports=t=>{let e=`${t.type}/${t.subtype}`;if(0===t.parameters.size)return e;for(let[n,i]of t.parameters)e+=\";\"+n+\"=\",r(i)&&0!==i.length||(i=i.replace(/([\"\\\\])/ug,\"\\\\$1\"),i=`\"${i}\"`),e+=i;return e;};}}),m=u({\"../../../node_modules/whatwg-mimetype/lib/mime-type.js\"(t,e){var r=g(),n=v(),i=y(),{asciiLowercase:a,solelyContainsHTTPTokenCodePoints:s}=d();e.exports=class{static parse(t){try{return new this(t);}catch(t){return null;}}get essence(){return`${this.type}/${this.subtype}`;}get type(){return this._type;}set type(t){if(0===(t=a(String(t))).length)throw Error(\"Invalid type: must be a non-empty string\");if(!s(t))throw Error(`Invalid type ${t}: must contain only HTTP token code points`);this._type=t;}get subtype(){return this._subtype;}set subtype(t){if(0===(t=a(String(t))).length)throw Error(\"Invalid subtype: must be a non-empty string\");if(!s(t))throw Error(`Invalid subtype ${t}: must contain only HTTP token code points`);this._subtype=t;}get parameters(){return this._parameters;}toString(){return i(this);}isJavaScript({prohibitParameters:t=!1}={}){switch(this._type){case\"text\":switch(this._subtype){case\"ecmascript\":case\"javascript\":case\"javascript1.0\":case\"javascript1.1\":case\"javascript1.2\":case\"javascript1.3\":case\"javascript1.4\":case\"javascript1.5\":case\"jscript\":case\"livescript\":case\"x-ecmascript\":case\"x-javascript\":return!t||0===this._parameters.size;default:return!1;}case\"application\":switch(this._subtype){case\"ecmascript\":case\"javascript\":case\"x-ecmascript\":case\"x-javascript\":return!t||0===this._parameters.size;default:return!1;}default:return!1;}}isXML(){return\"xml\"===this._subtype&&(\"text\"===this._type||\"application\"===this._type)||this._subtype.endsWith(\"+xml\");}isHTML(){return\"html\"===this._subtype&&\"text\"===this._type;}constructor(t){t=String(t);let e=n(t);if(null===e)throw Error(`Could not parse MIME type string \"${t}\"`);this._type=e.type,this._subtype=e.subtype,this._parameters=new r(e.parameters);}};}}),w=h(c());// src/code-generation/components/cms/bundled/assert.ts\nfunction b(t,...e){if(!t)throw Error(\"Assertion Error\"+(e.length>0?\": \"+e.join(\" \"):\"\"));}function _(t){throw Error(`Unexpected value: ${t}`);}// src/code-generation/components/cms/bundled/BufferReader.ts\nvar k={Uint8:1,Uint16:2,Uint32:4,BigUint64:8,Int8:1,Int16:2,Int32:4,BigInt64:8,Float32:4,Float64:8},I=class{getOffset(){return this.offset;}ensureBufferLength(t){let e=this.buffer.byteLength;if(!(this.offset+t<=e))throw Error(\"Reading out of bounds\");}readUint8(){let t=k.Uint8;this.ensureBufferLength(t);let e=this.view.getUint8(this.offset);return this.offset+=t,e;}readUint16(){let t=k.Uint16;this.ensureBufferLength(t);let e=this.view.getUint16(this.offset);return this.offset+=t,e;}readUint32(){let t=k.Uint32;this.ensureBufferLength(t);let e=this.view.getUint32(this.offset);return this.offset+=t,e;}readUint64(){let t=this.readBigUint64();return Number(t);}readBigUint64(){let t=k.BigUint64;this.ensureBufferLength(t);let e=this.view.getBigUint64(this.offset);return this.offset+=t,e;}readInt8(){let t=k.Int8;this.ensureBufferLength(t);let e=this.view.getInt8(this.offset);return this.offset+=t,e;}readInt16(){let t=k.Int16;this.ensureBufferLength(t);let e=this.view.getInt16(this.offset);return this.offset+=t,e;}readInt32(){let t=k.Int32;this.ensureBufferLength(t);let e=this.view.getInt32(this.offset);return this.offset+=t,e;}readInt64(){let t=this.readBigInt64();return Number(t);}readBigInt64(){let t=k.BigInt64;this.ensureBufferLength(t);let e=this.view.getBigInt64(this.offset);return this.offset+=t,e;}readFloat32(){let t=k.Float32;this.ensureBufferLength(t);let e=this.view.getFloat32(this.offset);return this.offset+=t,e;}readFloat64(){let t=k.Float64;this.ensureBufferLength(t);let e=this.view.getFloat64(this.offset);return this.offset+=t,e;}readBuffer(t){let e=this.offset,r=e+t,n=this.buffer.slice(e,r);return this.offset=r,n;}readString(){let t=this.readUint32(),e=this.readBuffer(t);return this.decoder.decode(e);}readJson(){let t=this.readString();return JSON.parse(t);}constructor(t){this.buffer=t,this.offset=0,this.view=new DataView(this.buffer),this.decoder=new TextDecoder;}};// src/code-generation/components/cms/bundled/DatabaseDictionaryIndex.ts\nimport{ControlType as U}from\"framer\";// src/utils/typeChecks.ts\nfunction S(t){return Number.isFinite(t);}function x(t){return void 0===t;}function E(t){return null===t;}function B(t){return null==t;}// ../../../node_modules/fflate/esm/browser.js\nvar T=Uint8Array,L=Uint16Array,M=Int32Array,A=new T([0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0,/* unused */0,0,/* impossible */0]),C=new T([0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13,/* unused */0,0]),F=new T([16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15]),j=function(t,e){for(var r=new L(31),n=0;n<31;++n)r[n]=e+=1<<t[n-1];for(var i=new M(r[30]),n=1;n<30;++n)for(var a=r[n];a<r[n+1];++a)i[a]=a-r[n]<<5|n;return{b:r,r:i};},P=j(A,2),D=P.b,N=P.r;D[28]=258,N[258]=28;var O=j(C,0),$=O.b,q=O.r,z=new L(32768);for(e=0;e<32768;++e)t=(61680&(t=(52428&(t=(43690&e)>>1|(21845&e)<<1))>>2|(13107&t)<<2))>>4|(3855&t)<<4,z[e]=((65280&t)>>8|(255&t)<<8)>>1;var R=function(t,e,r){for(var n,i=t.length,a=0,s=new L(e);a<i;++a)t[a]&&++s[t[a]-1];var o=new L(e);for(a=1;a<e;++a)o[a]=o[a-1]+s[a-1]<<1;if(r){n=new L(1<<e);var l=15-e;for(a=0;a<i;++a)if(t[a])for(var u=a<<4|t[a],f=e-t[a],h=o[t[a]-1]++<<f,c=h|(1<<f)-1;h<=c;++h)n[z[h]>>l]=u;}else for(a=0,n=new L(i);a<i;++a)t[a]&&(n[a]=z[o[t[a]-1]++]>>15-t[a]);return n;},H=new T(288);for(e=0;e<144;++e)H[e]=8;for(e=144;e<256;++e)H[e]=9;for(e=256;e<280;++e)H[e]=7;for(e=280;e<288;++e)H[e]=8;var J=new T(32);for(e=0;e<32;++e)J[e]=5;var W=/* @__PURE__ */R(H,9,0),G=/* @__PURE__ */R(H,9,1),K=/* @__PURE__ */R(J,5,0),V=/* @__PURE__ */R(J,5,1),X=function(t){for(var e=t[0],r=1;r<t.length;++r)t[r]>e&&(e=t[r]);return e;},Q=function(t,e,r){var n=e/8|0;return(t[n]|t[n+1]<<8)>>(7&e)&r;},Z=function(t,e){var r=e/8|0;return(t[r]|t[r+1]<<8|t[r+2]<<16)>>(7&e);},Y=function(t){return(t+7)/8|0;},tt=function(t,e,r){return(null==e||e<0)&&(e=0),(null==r||r>t.length)&&(r=t.length),new T(t.subarray(e,r));},te=[\"unexpected EOF\",\"invalid block type\",\"invalid length/literal\",\"invalid distance\",\"stream finished\",\"no stream handler\",,\"no callback\",\"invalid UTF-8 data\",\"extra field too long\",\"date not in range 1980-2099\",\"filename too long\",\"stream finishing\",\"invalid zip data\"],tr=function(t,e,r){var n=Error(e||te[t]);if(n.code=t,Error.captureStackTrace&&Error.captureStackTrace(n,tr),!r)throw n;return n;},tn=function(t,e,r,n){var i=t.length,a=n?n.length:0;if(!i||e.f&&!e.l)return r||new T(0);var s=!r,o=s||2!=e.i,l=e.i;s&&(r=new T(3*i));var u=function(t){var e=r.length;if(t>e){var n=new T(Math.max(2*e,t));n.set(r),r=n;}},f=e.f||0,h=e.p||0,c=e.b||0,p=e.l,d=e.d,g=e.m,v=e.n,y=8*i;do{if(!p){f=Q(t,h,1);var m=Q(t,h+1,3);if(h+=3,m){if(1==m)p=G,d=V,g=9,v=5;else if(2==m){var w=Q(t,h,31)+257,b=Q(t,h+10,15)+4,_=w+Q(t,h+5,31)+1;h+=14;for(var k=new T(_),I=new T(19),U=0;U<b;++U)I[F[U]]=Q(t,h+3*U,7);h+=3*b;for(var S=X(I),x=(1<<S)-1,E=R(I,S,1),U=0;U<_;){var B=E[Q(t,h,x)];h+=15&B;var L=B>>4;if(L<16)k[U++]=L;else{var M=0,j=0;for(16==L?(j=3+Q(t,h,3),h+=2,M=k[U-1]):17==L?(j=3+Q(t,h,7),h+=3):18==L&&(j=11+Q(t,h,127),h+=7);j--;)k[U++]=M;}}var P=k.subarray(0,w),N=k.subarray(w);g=X(P),v=X(N),p=R(P,g,1),d=R(N,v,1);}else tr(1);}else{var L=Y(h)+4,O=t[L-4]|t[L-3]<<8,q=L+O;if(q>i){l&&tr(0);break;}o&&u(c+O),r.set(t.subarray(L,q),c),e.b=c+=O,e.p=h=8*q,e.f=f;continue;}if(h>y){l&&tr(0);break;}}o&&u(c+131072);for(var z=(1<<g)-1,H=(1<<v)-1,J=h;;J=h){var M=p[Z(t,h)&z],W=M>>4;if((h+=15&M)>y){l&&tr(0);break;}if(M||tr(2),W<256)r[c++]=W;else if(256==W){J=h,p=null;break;}else{var K=W-254;if(W>264){var U=W-257,te=A[U];K=Q(t,h,(1<<te)-1)+D[U],h+=te;}var tn=d[Z(t,h)&H],ti=tn>>4;tn||tr(3),h+=15&tn;var N=$[ti];if(ti>3){var te=C[ti];N+=Z(t,h)&(1<<te)-1,h+=te;}if(h>y){l&&tr(0);break;}o&&u(c+131072);var ta=c+K;if(c<N){var ts=a-N,to=Math.min(N,ta);for(ts+c<0&&tr(3);c<to;++c)r[c]=n[ts+c];}for(;c<ta;++c)r[c]=r[c-N];}}e.l=p,e.p=J,e.b=c,e.f=f,p&&(f=1,e.m=g,e.d=d,e.n=v);}while(!f)return c!=r.length&&s?tt(r,0,c):r.subarray(0,c);},ti=function(t,e,r){r<<=7&e;var n=e/8|0;t[n]|=r,t[n+1]|=r>>8;},ta=function(t,e,r){r<<=7&e;var n=e/8|0;t[n]|=r,t[n+1]|=r>>8,t[n+2]|=r>>16;},ts=function(t,e){for(var r=[],n=0;n<t.length;++n)t[n]&&r.push({s:n,f:t[n]});var i=r.length,a=r.slice();if(!i)return{t:tp,l:0};if(1==i){var s=new T(r[0].s+1);return s[r[0].s]=1,{t:s,l:1};}r.sort(function(t,e){return t.f-e.f;}),r.push({s:-1,f:25001});var o=r[0],l=r[1],u=0,f=1,h=2;for(r[0]={s:-1,f:o.f+l.f,l:o,r:l};f!=i-1;)o=r[r[u].f<r[h].f?u++:h++],l=r[u!=f&&r[u].f<r[h].f?u++:h++],r[f++]={s:-1,f:o.f+l.f,l:o,r:l};for(var c=a[0].s,n=1;n<i;++n)a[n].s>c&&(c=a[n].s);var p=new L(c+1),d=to(r[f-1],p,0);if(d>e){var n=0,g=0,v=d-e,y=1<<v;for(a.sort(function(t,e){return p[e.s]-p[t.s]||t.f-e.f;});n<i;++n){var m=a[n].s;if(p[m]>e)g+=y-(1<<d-p[m]),p[m]=e;else break;}for(g>>=v;g>0;){var w=a[n].s;p[w]<e?g-=1<<e-p[w]++-1:++n;}for(;n>=0&&g;--n){var b=a[n].s;p[b]==e&&(--p[b],++g);}d=e;}return{t:new T(p),l:d};},to=function(t,e,r){return -1==t.s?Math.max(to(t.l,e,r+1),to(t.r,e,r+1)):e[t.s]=r;},tl=function(t){for(var e=t.length;e&&!t[--e];);for(var r=new L(++e),n=0,i=t[0],a=1,s=function(t){r[n++]=t;},o=1;o<=e;++o)if(t[o]==i&&o!=e)++a;else{if(!i&&a>2){for(;a>138;a-=138)s(32754);a>2&&(s(a>10?a-11<<5|28690:a-3<<5|12305),a=0);}else if(a>3){for(s(i),--a;a>6;a-=6)s(8304);a>2&&(s(a-3<<5|8208),a=0);}for(;a--;)s(i);a=1,i=t[o];}return{c:r.subarray(0,n),n:e};},tu=function(t,e){for(var r=0,n=0;n<e.length;++n)r+=t[n]*e[n];return r;},tf=function(t,e,r){var n=r.length,i=Y(e+2);t[i]=255&n,t[i+1]=n>>8,t[i+2]=255^t[i],t[i+3]=255^t[i+1];for(var a=0;a<n;++a)t[i+a+4]=r[a];return(i+4+n)*8;},th=function(t,e,r,n,i,a,s,o,l,u,f){ti(e,f++,r),++i[256];for(var h,c,p,d,g=ts(i,15),v=g.t,y=g.l,m=ts(a,15),w=m.t,b=m.l,_=tl(v),k=_.c,I=_.n,U=tl(w),S=U.c,x=U.n,E=new L(19),B=0;B<k.length;++B)++E[31&k[B]];for(var B=0;B<S.length;++B)++E[31&S[B]];for(var T=ts(E,7),M=T.t,j=T.l,P=19;P>4&&!M[F[P-1]];--P);var D=u+5<<3,N=tu(i,H)+tu(a,J)+s,O=tu(i,v)+tu(a,w)+s+14+3*P+tu(E,M)+2*E[16]+3*E[17]+7*E[18];if(l>=0&&D<=N&&D<=O)return tf(e,f,t.subarray(l,l+u));if(ti(e,f,1+(O<N)),f+=2,O<N){h=R(v,y,0),c=v,p=R(w,b,0),d=w;var $=R(M,j,0);ti(e,f,I-257),ti(e,f+5,x-1),ti(e,f+10,P-4),f+=14;for(var B=0;B<P;++B)ti(e,f+3*B,M[F[B]]);f+=3*P;for(var q=[k,S],z=0;z<2;++z)for(var G=q[z],B=0;B<G.length;++B){var V=31&G[B];ti(e,f,$[V]),f+=M[V],V>15&&(ti(e,f,G[B]>>5&127),f+=G[B]>>12);}}else h=W,c=H,p=K,d=J;for(var B=0;B<o;++B){var X=n[B];if(X>255){var V=X>>18&31;ta(e,f,h[V+257]),f+=c[V+257],V>7&&(ti(e,f,X>>23&31),f+=A[V]);var Q=31&X;ta(e,f,p[Q]),f+=d[Q],Q>3&&(ta(e,f,X>>5&8191),f+=C[Q]);}else ta(e,f,h[X]),f+=c[X];}return ta(e,f,h[256]),f+c[256];},tc=/* @__PURE__ */new M([65540,131080,131088,131104,262176,1048704,1048832,2114560,2117632]),tp=/* @__PURE__ */new T(0),td=function(t,e,r,n,i,a){var s=a.z||t.length,o=new T(n+s+5*(1+Math.ceil(s/7e3))+i),l=o.subarray(n,o.length-i),u=a.l,f=7&(a.r||0);if(e){f&&(l[0]=a.r>>3);for(var h=tc[e-1],c=h>>13,p=8191&h,d=(1<<r)-1,g=a.p||new L(32768),v=a.h||new L(d+1),y=Math.ceil(r/3),m=2*y,w=function(e){return(t[e]^t[e+1]<<y^t[e+2]<<m)&d;},b=new M(25e3),_=new L(288),k=new L(32),I=0,U=0,S=a.i||0,x=0,E=a.w||0,B=0;S+2<s;++S){var F=w(S),j=32767&S,P=v[F];if(g[j]=P,v[F]=j,E<=S){var D=s-S;if((I>7e3||x>24576)&&(D>423||!u)){f=th(t,l,0,b,_,k,U,x,B,S-B,f),x=I=U=0,B=S;for(var O=0;O<286;++O)_[O]=0;for(var O=0;O<30;++O)k[O]=0;}var $=2,z=0,R=p,H=j-P&32767;if(D>2&&F==w(S-H))for(var J=Math.min(c,D)-1,W=Math.min(32767,S),G=Math.min(258,D);H<=W&&--R&&j!=P;){if(t[S+$]==t[S+$-H]){for(var K=0;K<G&&t[S+K]==t[S+K-H];++K);if(K>$){if($=K,z=H,K>J)break;for(var V=Math.min(H,K-2),X=0,O=0;O<V;++O){var Q=S-H+O&32767,Z=g[Q],te=Q-Z&32767;te>X&&(X=te,P=Q);}}}P=g[j=P],H+=j-P&32767;}if(z){b[x++]=268435456|N[$]<<18|q[z];var tr=31&N[$],tn=31&q[z];U+=A[tr]+C[tn],++_[257+tr],++k[tn],E=S+$,++I;}else b[x++]=t[S],++_[t[S]];}}for(S=Math.max(S,E);S<s;++S)b[x++]=t[S],++_[t[S]];f=th(t,l,u,b,_,k,U,x,B,S-B,f),u||(a.r=7&f|l[f/8|0]<<3,f-=7,a.h=v,a.p=g,a.i=S,a.w=E);}else{for(var S=a.w||0;S<s+u;S+=65535){var ti=S+65535;ti>=s&&(l[f/8|0]=u,ti=s),f=tf(l,f+1,t.subarray(S,ti));}a.i=s;}return tt(o,0,n+Y(f)+i);},tg=function(t,e,r,n,i){if(!i&&(i={l:1},e.dictionary)){var a=e.dictionary.subarray(-32768),s=new T(a.length+t.length);s.set(a),s.set(t,a.length),t=s,i.w=a.length;}return td(t,null==e.level?6:e.level,null==e.mem?i.l?Math.ceil(1.5*Math.max(8,Math.min(13,Math.log(t.length)))):20:12+e.mem,r,n,i);};function tv(t,e){return tg(t,e||{},0,0);}function ty(t,e){return tn(t,{i:2},e&&e.out,e&&e.dictionary);}var tm=\"undefined\"!=typeof TextDecoder&&/* @__PURE__ */new TextDecoder,tw=0;try{tm.decode(tp,{stream:!0}),tw=1;}catch(t){}// src/code-generation/components/cms/bundled/models/DatabaseDictionaryIndexModel.ts\nvar tb=h(p()),t_=1024,tk=1.5,tI=t=>2**t-1,tU=t=>-(2**(t-1)),tS=t=>2**(t-1)-1,tx={Uint8:0,Uint16:0,Uint32:0,Uint64:0,BigUint64:0,Int8:tU(8),Int16:tU(16),Int32:tU(32),Int64:Number.MIN_SAFE_INTEGER,BigInt64:-(BigInt(2)**BigInt(63))},tE={Uint8:tI(8),Uint16:tI(16),Uint32:tI(32),Uint64:Number.MAX_SAFE_INTEGER,BigUint64:BigInt(2)**BigInt(64)-BigInt(1),Int8:tS(8),Int16:tS(16),Int32:tS(32),Int64:Number.MAX_SAFE_INTEGER,BigInt64:BigInt(2)**BigInt(63)-BigInt(1)};function tB(t,e,r,n){b(t>=e,t,\"outside lower bound for\",n),b(t<=r,t,\"outside upper bound for\",n);}var tT=class{getOffset(){return this.offset;}slice(t=0,e=this.offset){return this.buffer.slice(t,e);}subarray(t=0,e=this.offset){return new Uint8Array(this.buffer,t,e);}ensureBufferLength(t){let e=this.buffer.byteLength;if(this.offset+t<=e)return;let r=new ArrayBuffer(Math.ceil(e*tk)+t);tL(this.buffer,r,0),this.buffer=r,this.view=new DataView(r);}writeUint8(t){tB(t,tx.Uint8,tE.Uint8,\"Uint8\");let e=k.Uint8;this.ensureBufferLength(e),this.view.setUint8(this.offset,t),this.offset+=e;}writeUint16(t){tB(t,tx.Uint16,tE.Uint16,\"Uint16\");let e=k.Uint16;this.ensureBufferLength(e),this.view.setUint16(this.offset,t),this.offset+=e;}writeUint32(t){tB(t,tx.Uint32,tE.Uint32,\"Uint32\");let e=k.Uint32;this.ensureBufferLength(e),this.view.setUint32(this.offset,t),this.offset+=e;}writeUint64(t){tB(t,tx.Uint64,tE.Uint64,\"Uint64\");let e=BigInt(t);this.writeBigUint64(e);}writeBigUint64(t){tB(t,tx.BigUint64,tE.BigUint64,\"BigUint64\");let e=k.BigUint64;this.ensureBufferLength(e),this.view.setBigUint64(this.offset,t),this.offset+=e;}writeInt8(t){tB(t,tx.Int8,tE.Int8,\"Int8\");let e=k.Int8;this.ensureBufferLength(e),this.view.setInt8(this.offset,t),this.offset+=e;}writeInt16(t){tB(t,tx.Int16,tE.Int16,\"Int16\");let e=k.Int16;this.ensureBufferLength(e),this.view.setInt16(this.offset,t),this.offset+=e;}writeInt32(t){tB(t,tx.Int32,tE.Int32,\"Int32\");let e=k.Int32;this.ensureBufferLength(e),this.view.setInt32(this.offset,t),this.offset+=e;}writeInt64(t){tB(t,tx.Int64,tE.Int64,\"Int64\");let e=BigInt(t);this.writeBigInt64(e);}writeBigInt64(t){tB(t,tx.BigInt64,tE.BigInt64,\"BigInt64\");let e=k.BigInt64;this.ensureBufferLength(e),this.view.setBigInt64(this.offset,t),this.offset+=e;}writeFloat32(t){let e=k.Float32;this.ensureBufferLength(e),this.view.setFloat32(this.offset,t),this.offset+=e;}writeFloat64(t){let e=k.Float64;this.ensureBufferLength(e),this.view.setFloat64(this.offset,t),this.offset+=e;}writeBuffer(t){let e=t.byteLength;this.ensureBufferLength(e),tL(t,this.buffer,this.offset),this.offset+=e;}encodeString(t){let e=this.encodedStrings.get(t);if(e)return e;let r=this.encoder.encode(t);return this.encodedStrings.set(t,r),r;}writeString(t){let e=this.encodeString(t),r=e.byteLength;this.writeUint32(r),this.writeBuffer(e);}writeJson(t){let e=JSON.stringify(t);this.writeString(e);}constructor(){this.offset=0,this.buffer=new ArrayBuffer(t_),this.view=new DataView(this.buffer),this.encoder=new TextEncoder,this.encodedStrings=/* @__PURE__ */new Map;}};function tL(t,e,r){let n=new Uint8Array(t),i=new Uint8Array(e);i.set(n,r);}// src/code-generation/components/cms/bundled/models/DatabaseItemPointerModel.ts\nvar tM=class{static fromString(t){let[e,r,n]=t.split(\"/\").map(Number);return b(S(e),\"Invalid chunkId\"),b(S(r),\"Invalid offset\"),b(S(n),\"Invalid length\"),new tM(e,r,n);}toString(){return`${this.chunkId}/${this.offset}/${this.length}`;}static read(t){let e=t.readUint16(),r=t.readUint32(),n=t.readUint32();return new tM(e,r,n);}write(t){t.writeUint16(this.chunkId),t.writeUint32(this.offset),t.writeUint32(this.length);}compare(t){return this.chunkId<t.chunkId?-1:this.chunkId>t.chunkId?1:this.offset<t.offset?-1:this.offset>t.offset?1:(b(this.length===t.length),0);}constructor(t,e,r){this.chunkId=t,this.offset=e,this.length=r;}};// src/code-generation/components/cms/bundled/models/DatabaseValueModel.ts\nimport{ControlType as tA}from\"framer\";function tC(t){if(E(t))return 0/* Null */;switch(t.type){case tA.Array:return 1/* Array */;case tA.Boolean:return 2/* Boolean */;case tA.Color:return 3/* Color */;case tA.Date:return 4/* Date */;case tA.Enum:return 5/* Enum */;case tA.File:return 6/* File */;case tA.ResponsiveImage:return 10/* ResponsiveImage */;case tA.Link:return 7/* Link */;case tA.Number:return 8/* Number */;case tA.Object:return 9/* Object */;case tA.RichText:return 11/* RichText */;case tA.String:return 12/* String */;default:_(t);}}(t=>{t.read=function(t){let e=t.readUint8();switch(e){case 0/* Null */:return null;case 1/* Array */:return tF.read(t);case 2/* Boolean */:return tj.read(t);case 3/* Color */:return tP.read(t);case 4/* Date */:return tD.read(t);case 5/* Enum */:return tN.read(t);case 6/* File */:return tO.read(t);case 7/* Link */:return t$.read(t);case 8/* Number */:return tq.read(t);case 9/* Object */:return tz.read(t);case 10/* ResponsiveImage */:return tR.read(t);case 11/* RichText */:return tH.read(t);case 12/* String */:return tJ.read(t);default:_(e);}},t.write=function(t,e){let r=tC(e);if(t.writeUint8(r),!E(e))switch(e.type){case tA.Array:return tF.write(t,e);case tA.Boolean:return tj.write(t,e);case tA.Color:return tP.write(t,e);case tA.Date:return tD.write(t,e);case tA.Enum:return tN.write(t,e);case tA.File:return tO.write(t,e);case tA.Link:return t$.write(t,e);case tA.Number:return tq.write(t,e);case tA.Object:return tz.write(t,e);case tA.ResponsiveImage:return tR.write(t,e);case tA.RichText:return tH.write(t,e);case tA.String:return tJ.write(t,e);default:_(e);}},t.compare=function(t,e,r){let n=tC(t),i=tC(e);if(n<i)return -1;if(n>i)return 1;if(E(t)||E(e))return 0;switch(t.type){case tA.Array:return b(e.type===tA.Array),tF.compare(t,e,r);case tA.Boolean:return b(e.type===tA.Boolean),tj.compare(t,e,r);case tA.Color:return b(e.type===tA.Color),tP.compare(t,e,r);case tA.Date:return b(e.type===tA.Date),tD.compare(t,e,r);case tA.Enum:return b(e.type===tA.Enum),tN.compare(t,e,r);case tA.File:return b(e.type===tA.File),tO.compare(t,e,r);case tA.Link:return b(e.type===tA.Link),t$.compare(t,e,r);case tA.Number:return b(e.type===tA.Number),tq.compare(t,e,r);case tA.Object:return b(e.type===tA.Object),tz.compare(t,e,r);case tA.ResponsiveImage:return b(e.type===tA.ResponsiveImage),tR.compare(t,e,r);case tA.RichText:return b(e.type===tA.RichText),tH.compare(t,e,r);case tA.String:return b(e.type===tA.String),tJ.compare(t,e,r);default:_(t);}};})(r||(r={}));var tF={read(t){let e=t.readUint16(),n=[];for(let i=0;i<e;i++){let e=r.read(t);n.push(e);}return{type:tA.Array,value:n};},write(t,e){for(let n of(t.writeUint16(e.value.length),e.value))r.write(t,n);},compare(t,e,n){let i=t.value.length,a=e.value.length;if(i<a)return -1;if(i>a)return 1;for(let a=0;a<i;a++){let i=t.value[a],s=e.value[a];b(!x(i),\"Left item must exist\"),b(!x(s),\"Right item must exist\");let o=r.compare(i,s,n);if(0!==o)return o;}return 0;}},tj={read:t=>({type:tA.Boolean,value:0!==t.readUint8()}),write(t,e){t.writeUint8(e.value?1:0);},compare:(t,e)=>t.value<e.value?-1:t.value>e.value?1:0},tP={read:t=>({type:tA.Color,value:t.readString()}),write(t,e){t.writeString(e.value);},compare:(t,e)=>t.value<e.value?-1:t.value>e.value?1:0},tD={read(t){let e=t.readInt64(),r=new Date(e);return{type:tA.Date,value:r.toISOString()};},write(t,e){let r=new Date(e.value),n=r.getTime();t.writeInt64(n);},compare(t,e){let r=new Date(t.value),n=new Date(e.value);return r<n?-1:r>n?1:0;}},tN={read:t=>({type:tA.Enum,value:t.readString()}),write(t,e){t.writeString(e.value);},compare:(t,e)=>t.value<e.value?-1:t.value>e.value?1:0},tO={read:t=>({type:tA.File,value:t.readString()}),write(t,e){t.writeString(e.value);},compare:(t,e)=>t.value<e.value?-1:t.value>e.value?1:0},t$={read:t=>({type:tA.Link,value:t.readJson()}),write(t,e){t.writeJson(e.value);},compare(t,e){let r=JSON.stringify(t.value),n=JSON.stringify(e.value);return r<n?-1:r>n?1:0;}},tq={read:t=>({type:tA.Number,value:t.readFloat64()}),write(t,e){t.writeFloat64(e.value);},compare:(t,e)=>t.value<e.value?-1:t.value>e.value?1:0},tz={read(t){let e=t.readUint16(),n={};for(let i=0;i<e;i++){let e=t.readString();n[e]=r.read(t);}return{type:tA.Object,value:n};},write(t,e){let n=Object.entries(e.value);for(let[e,i]of(t.writeUint16(n.length),n))t.writeString(e),r.write(t,i);},compare(t,e,n){let i=Object.keys(t.value).sort(),a=Object.keys(e.value).sort();if(i.length<a.length)return -1;if(i.length>a.length)return 1;for(let s=0;s<i.length;s++){let o=i[s],l=a[s];if(b(!x(o),\"Left key must exist\"),b(!x(l),\"Left key must exist\"),o<l)return -1;if(o>l)return 1;let u=t.value[o],f=e.value[l];b(!x(u),\"Left value must exist\"),b(!x(f),\"Right value must exist\");let h=r.compare(u,f,n);if(0!==h)return h;}return 0;}},tR={read:t=>({type:tA.ResponsiveImage,value:t.readJson()}),write(t,e){t.writeJson(e.value);},compare(t,e){let r=JSON.stringify(t.value),n=JSON.stringify(e.value);return r<n?-1:r>n?1:0;}},tH={read:t=>({type:tA.RichText,value:t.readUint32()}),write(t,e){t.writeUint32(e.value);},compare(t,e){let r=t.value,n=e.value;return r<n?-1:r>n?1:0;}},tJ={read:t=>({type:tA.String,value:t.readString()}),write(t,e){t.writeString(e.value);},compare(t,e,r){let n=t.value,i=e.value;return(0/* CaseInsensitive */===r.type&&(n=t.value.toLowerCase(),i=e.value.toLowerCase()),n<i)?-1:n>i?1:0;}},tW=class{static deserialize(t){let e=ty(t),n=new I(e.buffer),i=n.readJson(),a=n.readUint8(),s=[];for(let t=0;t<a;t++){let t=n.readString();s.push(t);}let o=new tW(s,{collation:i}),l=n.readUint32();for(let t=0;t<l;t++){let t=[];for(let e=0;e<a;e++){let e=r.read(n);t.push(e);}let e=tM.read(n);o.entries.insert({values:t,pointer:e});}return o;}serialize(){let t=new tT;for(let e of(t.writeJson(this.options.collation),t.writeUint8(this.fieldNames.length),this.fieldNames))t.writeString(e);for(let e of(t.writeUint32(this.entries.size),this.entries)){let{values:n,pointer:i}=e.key;for(let e of n)r.write(t,e);i.write(t);}let e=t.subarray();return tv(e);}addItem(t,e){let r=this.fieldNames.map(e=>{var r;return null!=(r=t.getField(e))?r:null;});this.entries.insert({values:r,pointer:e});}constructor(t,e){this.fieldNames=t,this.options=e,this.entries=new tb.default((t,e)=>{let n=t.values,i=e.values;for(let t=0;t<this.fieldNames.length;t++){let e=n[t],a=i[t];b(!x(e),\"Left value must exist\"),b(!x(a),\"Right value must exist\");let s=r.compare(e,a,this.options.collation);if(0!==s)return s;}return t.pointer.compare(e.pointer);});}};// ../../shared/src/murmurHash.ts\nfunction tG(t){let e=3&t.length,r=t.length-e,n=0,i=0;for(;i<r;){let e=255&t.charCodeAt(i)|(255&t.charCodeAt(++i))<<8|(255&t.charCodeAt(++i))<<16|(255&t.charCodeAt(++i))<<24;++i,n^=e=(65535&(e=(e=(65535&e)*3432918353+(((e>>>16)*3432918353&65535)<<16)&4294967295)<<15|e>>>17))*461845907+(((e>>>16)*461845907&65535)<<16)&4294967295,n=n<<13|n>>>19;let r=(65535&n)*5+(((n>>>16)*5&65535)<<16)&4294967295;n=(65535&r)+27492+(((r>>>16)+58964&65535)<<16);}let a=0;return e>=3&&(a^=(255&t.charCodeAt(i+2))<<16),e>=2&&(a^=(255&t.charCodeAt(i+1))<<8),e>=1&&(a^=255&t.charCodeAt(i),n^=a=(65535&(a=(a=(65535&a)*3432918353+(((a>>>16)*3432918353&65535)<<16)&4294967295)<<15|a>>>17))*461845907+(((a>>>16)*461845907&65535)<<16)&4294967295),n^=t.length,n^=n>>>16,n=(65535&n)*2246822507+(((n>>>16)*2246822507&65535)<<16)&4294967295,n^=n>>>13,n=(65535&n)*3266489909+(((n>>>16)*3266489909&65535)<<16)&4294967295,(n^=n>>>16)>>>0;}// src/code-generation/components/cms/bundled/rangeRequest.ts\nvar tK=h(m()),tV=3,tX=250,tQ=[408,// Request Timeout\n429,// Too Many Requests\n500,// Internal Server Error\n502,// Bad Gateway\n503,// Service Unavailable\n504],tZ=async(t,e)=>{var r;let n=0;for(;;){try{let r=await fetch(t,e);if(!tQ.includes(r.status)||++n>tV)return r;}catch(t){if((null==(r=null==e?void 0:e.signal)?void 0:r.aborted)||++n>tV)throw t;}await tY(n);}};async function tY(t){let e=Math.floor(tX*(Math.random()+1)*2**(t-1));await new Promise(t=>{setTimeout(t,e);});}// src/code-generation/components/cms/bundled/rangeRequest.ts\nvar t1=\"\\r\\n\",t0=\"--\";async function t2(t,e){let r=new URL(t),n=en(e);r.searchParams.set(\"rangeHash\",tG(n).toString(16));let i=await tZ(r,{headers:{Range:n}});if(!i.ok)throw Error(`Request failed: ${i.status} ${i.statusText}`);let a=await i.arrayBuffer(),s=new Uint8Array(a);if(200===i.status)return e.map(t=>{if(t.to>s.length)throw Error(\"Missing data\");return s.slice(t.from,t.to);});if(206===i.status){let t=i.headers.get(\"Content-Type\");if(!t)throw Error(\"Missing Content-Type header\");let r=new t8,n=new tK.default(t);if(\"multipart\"===n.type&&\"byteranges\"===n.subtype){let t=n.parameters.get(\"boundary\");if(!t)throw Error(\"Missing boundary parameter\");let e=t5(s,t);for(let{headers:t,body:n}of e){let e=t.get(\"Content-Range\");if(!e)throw Error(\"Missing Content-Range header\");let i=t4(e);if(\"bytes\"!==i.unit)throw Error(\"Unsupported unit\");r.write(i.start,n);}}else{let t=i.headers.get(\"Content-Range\");if(!t)throw Error(\"Missing Content-Range header\");let e=t4(t);if(\"bytes\"!==e.unit)throw Error(\"Unsupported unit\");r.write(e.start,s);}return e.map(t=>r.read(t.from,t.to-t.from));}throw Error(`Unsupported response: ${i.status} ${i.statusText}`);}var t6=new TextEncoder,t3=new TextDecoder;function t5(t,e){let r=t6.encode(t0+e),n=t9(t,r);if(x(n))throw Error(\"Missing parts start\");let i=n+r.length,a=t6.encode(t1+t0+e+t0),s=et(t,a);if(x(s))throw Error(\"Missing parts end\");let o=t6.encode(t1+t0+e),l=t.subarray(i,s),u=t7(l,o);return u.map(t=>{let e=t6.encode(t1+t1),r=t9(t,e);if(x(r))throw Error(\"Missing headers end\");let n=t6.encode(t1),i=t.subarray(0,r),a=t7(i,n),s=new Headers;for(let t of a){let e=t3.decode(t),[r,n]=e.split(\": \",2);r&&n&&s.append(r,n);}let o=r+e.length,l=t.slice(o);return{headers:s,body:l};});}function t4(t){let e=RegExp(\"^(?<unit>\\\\w+) (?<start>\\\\d+)-(?<end>\\\\d+)\\\\/(?<size>\\\\d+|\\\\*)$\",\"u\").exec(t);if(!e||!e.groups)throw Error(\"Invalid Content-Range header\");let{unit:r,start:n,end:i,size:a}=e.groups;return{unit:r,start:Number(n),end:Number(i),size:\"*\"!==a?Number(a):null};}var t8=class{read(t,e){for(let r of this.chunks){if(t<r.start)break;if(t>r.end)continue;if(t+e>r.end)break;let n=t-r.start,i=n+e;return r.data.slice(n,i);}throw Error(\"Missing data\");}write(t,e){let r=t,n=r+e.length,i=0,a=this.chunks.length;for(;i<a;i++){let t=this.chunks[i];if(b(t,\"Missing chunk\"),!(r>t.end)){if(r>t.start){let n=r-t.start,i=t.data.subarray(0,n);e=er(i,e),r=t.start;}break;}}for(;a>i;a--){let t=this.chunks[a-1];if(b(t,\"Missing chunk\"),!(n<t.start)){if(n<t.end){let r=n-t.start,i=t.data.subarray(r);e=er(e,i),n=t.end;}break;}}let s={start:r,end:n,data:e},o=a-i;this.chunks.splice(i,o,s);}constructor(){this.chunks=[];}};function t7(t,e){var r;let n=[];for(;t.length>0;){let i=null!=(r=t9(t,e))?r:t.length,a=t.subarray(0,i);n.push(a),t=t.subarray(i+e.length);}return n;}function t9(t,e){for(let r=0;r<t.length-e.length;r++){let n=t.subarray(r);if(ee(n,e))return r;}}function et(t,e){for(let r=t.length-e.length;r>=0;r--){let n=t.subarray(r);if(ee(n,e))return r;}}function ee(t,e){for(let r=0;r<e.length;r++)if(t[r]!==e[r])return!1;return!0;}function er(t,e){let r=t.length+e.length,n=new Uint8Array(r);return n.set(t,0),n.set(e,t.length),n;}function en(t){b(t.length>0,\"Must have at least one range\");let e=[...t].sort((t,e)=>t.from-e.from),r=[];for(let t of e){let e=r.length-1,n=r[e];n&&t.from<=n.to?r[e]={from:n.from,to:Math.max(n.to,t.to)}:r.push(t);}let n=r.map(t=>`${t.from}-${t.to-1}`);return`bytes=${n.join(\",\")}`;}// src/code-generation/components/cms/bundled/DatabaseDictionaryIndex.ts\nvar ei=class{async loadModel(){let[t]=await t2(this.options.url,[this.options.range]);return b(t,\"Failed to load model\"),tW.deserialize(t);}async getModel(){return null!=this.modelPromise||(this.modelPromise=this.loadModel()),null!=this.model||(this.model=await this.modelPromise),this.model;}async lookupItems(t){var e;b(t.length===this.fields.length,\"Invalid query length\");let r=t[0];b(r,\"Invalid query length\");for(let r=1;r<t.length;r++)b((null==(e=t[r])?void 0:e.type)===\"All\"/* All */,\"Unsupported query\");let n=await this.getModel();switch(r.type){case\"All\"/* All */:return this.queryAll(n);case\"Equals\"/* Equals */:return this.queryEquals(n,r);case\"NotEquals\"/* NotEquals */:return this.queryNotEquals(n,r);case\"LessThan\"/* LessThan */:return this.queryLessThan(n,r);case\"GreaterThan\"/* GreaterThan */:return this.queryGreaterThan(n,r);case\"Contains\"/* Contains */:return this.queryContains(n,r);case\"StartsWith\"/* StartsWith */:return this.queryStartsWith(n,r);case\"EndsWith\"/* EndsWith */:return this.queryEndsWith(n,r);default:_(r);}}findItems(t,e){let r=[];for(let n of t.entries){let t=n.key.values[0];if(b(!x(t),\"Value must exist\"),!e(t))continue;let i={};for(let t=0;t<this.options.fieldNames.length;t++){let e=n.key.values[t],r=this.options.fieldNames[t];b(!x(e),\"Value must exist\"),b(!x(r),\"Field name must exist\"),i[r]=e;}r.push({pointer:n.key.pointer.toString(),data:i});}return r;}queryAll(t){return this.findItems(t,()=>!0);}queryEquals(t,e){return this.findItems(t,t=>0===r.compare(t,e.value,this.collation));}queryNotEquals(t,e){return this.findItems(t,t=>0!==r.compare(t,e.value,this.collation));}queryLessThan(t,e){return this.findItems(t,t=>{let n=r.compare(t,e.value,this.collation);return!B(t)&&(!!e.inclusive&&0===n||n<0);});}queryGreaterThan(t,e){return this.findItems(t,t=>{let n=r.compare(t,e.value,this.collation);return!B(t)&&(!!e.inclusive&&0===n||n>0);});}queryContains(t,e){return this.findItems(t,t=>{var r;if((null==t?void 0:t.type)!==U.String||(null==(r=e.value)?void 0:r.type)!==U.String)return!1;let n=t.value,i=e.value.value;return 0/* CaseInsensitive */===this.collation.type&&(n=n.toLowerCase(),i=i.toLowerCase()),n.includes(i);});}queryStartsWith(t,e){return this.findItems(t,t=>{var r;if((null==t?void 0:t.type)!==U.String||(null==(r=e.value)?void 0:r.type)!==U.String)return!1;let n=t.value,i=e.value.value;return 0/* CaseInsensitive */===this.collation.type&&(n=n.toLowerCase(),i=i.toLowerCase()),n.startsWith(i);});}queryEndsWith(t,e){return this.findItems(t,t=>{var r;if((null==t?void 0:t.type)!==U.String||(null==(r=e.value)?void 0:r.type)!==U.String)return!1;let n=t.value,i=e.value.value;return 0/* CaseInsensitive */===this.collation.type&&(n=n.toLowerCase(),i=i.toLowerCase()),n.endsWith(i);});}constructor(t){this.options=t,this.supportedLookupTypes=[\"All\"/* All */,\"Equals\"/* Equals */,\"NotEquals\"/* NotEquals */,\"LessThan\"/* LessThan */,\"GreaterThan\"/* GreaterThan */,\"Contains\"/* Contains */,\"StartsWith\"/* StartsWith */,\"EndsWith\"/* EndsWith */],this.collation=this.options.collation;let e={},r=[];for(let t of this.options.fieldNames){let n=this.options.collectionSchema[t];b(n,\"Missing definition for field\",t),e[t]=n,r.push({type:\"Identifier\",name:t});}this.schema=e,this.fields=r;}},ea=class{static read(t,e){let n=new ea,i=t.readUint32(),a=t.readBuffer(i),s=ty(new Uint8Array(a),{dictionary:e}),o=new I(s.buffer),l=o.readUint16();for(let t=0;t<l;t++){let t=o.readString(),e=r.read(o);n.setField(t,e);}return n;}writeUncompressed(t){for(let[e,n]of(t.writeUint16(this.fields.size),this.fields))t.writeString(e),r.write(t,n);}write(t,e){let r=new tT;this.writeUncompressed(r);let n=tv(r.subarray(),{dictionary:e});t.writeUint32(n.byteLength),t.writeBuffer(n);}getData(){let t={};for(let[e,r]of this.fields)t[e]=r;return t;}setField(t,e){this.fields.set(t,e);}getField(t){return this.fields.get(t);}constructor(){this.fields=/* @__PURE__ */new Map;}},es=class{scanItems(){return null!=this.itemsPromise||(this.itemsPromise=Promise.all([tZ(this.url),this.getCompressionDictionary()]).then(async([t,e])=>{if(!t.ok)throw Error(`Request failed: ${t.status} ${t.statusText}`);let r=await t.arrayBuffer(),n=new I(r),i=[],a=n.readUint32();for(let t=0;t<a;t++){let t=n.getOffset(),r=ea.read(n,e),a=n.getOffset()-t,s=new tM(this.id,t,a),o=s.toString(),l={pointer:o,data:r.getData()};this.itemLoader.prime(o,l),i.push(l);}return i;})),this.itemsPromise;}resolveItem(t){return this.itemLoader.load(t);}getCompressionDictionary(){let t=this.compressionDictionaryCache.get(this.compressionDictionaryUrl);if(t)return t;let e=tZ(this.compressionDictionaryUrl).then(async t=>{if(!t.ok)throw Error(`Compression dictionary request failed: ${t.status} ${t.statusText}`);let e=await t.arrayBuffer();return new Uint8Array(e);});return this.compressionDictionaryCache.set(this.compressionDictionaryUrl,e),e;}constructor(t,e,r,n){this.id=t,this.url=e,this.compressionDictionaryUrl=r,this.compressionDictionaryCache=n,this.itemLoader=new w.default(async t=>{let e=t.map(t=>{let e=tM.fromString(t);return{from:e.offset,to:e.offset+e.length};}),[r,n]=await Promise.all([t2(this.url,e),this.getCompressionDictionary()]);return r.map((e,r)=>{let i=new I(e.buffer),a=ea.read(i,n),s=t[r];return b(s,\"Missing pointer\"),{pointer:s,data:a.getData()};});});}},eo=class{async scanItems(){let t=await Promise.all(this.chunks.map(async t=>t.scanItems()));return t.flat();}async resolveItems(t){return Promise.all(t.map(t=>{let e=tM.fromString(t),r=this.chunks[e.chunkId];return b(r,\"Missing chunk\"),r.resolveItem(t);}));}compareItems(t,e){let r=tM.fromString(t.pointer),n=tM.fromString(e.pointer);return r.compare(n);}compareValues(t,e,n){return r.compare(t,e,n);}constructor(t){this.options=t,this.schema=this.options.schema,this.indexes=this.options.indexes,this.resolveRichText=this.options.resolveRichText;let e=/* @__PURE__ */new Map;this.chunks=this.options.chunks.map((t,r)=>new es(r,t,this.options.compressionDictionary,e));}};export{eo as DatabaseCollection,ei as DatabaseDictionaryIndex};/*! Bundled license information:\n\nsplaytree/dist/splay.js:\n  (**\n   * splaytree v3.1.2\n   * Fast Splay tree for Node and browser\n   *\n   * @author Alexander Milevski <info@w8r.name>\n   * @license MIT\n   * @preserve\n   *)\n  (*! *****************************************************************************\n      Copyright (c) Microsoft Corporation. All rights reserved.\n      Licensed under the Apache License, Version 2.0 (the \"License\"); you may not use\n      this file except in compliance with the License. You may obtain a copy of the\n      License at http://www.apache.org/licenses/LICENSE-2.0\n  \n      THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n      KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED\n      WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,\n      MERCHANTABLITY OR NON-INFRINGEMENT.\n  \n      See the Apache Version 2.0 License for specific language governing permissions\n      and limitations under the License.\n      ***************************************************************************** *)\n*/\nexport const __FramerMetadata__ = {\"exports\":{\"DatabaseCollection\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"DatabaseDictionaryIndex\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "let e=[];export async function resolveRichText(t){let i=e[t];if(i)return await i();}\nexport const __FramerMetadata__ = {\"exports\":{\"resolveRichText\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (b0998f3)\nimport{addPropertyControls as e,ControlType as t,QueryEngine as l}from\"framer\";import{DatabaseCollection as i}from\"./xtNFB9S4S-0.js\";import{resolveRichText as r}from\"./xtNFB9S4S-1.js\";let a={btcYFCXjF:{isNullable:!0,type:t.Link},gBwfq1LiW:{isNullable:!0,type:t.ResponsiveImage},id:{isNullable:!1,type:t.String},nextItemId:{isNullable:!0,type:t.String},previousItemId:{isNullable:!0,type:t.String},Tq8P52lBw:{isNullable:!0,type:t.String},uJP6yOObb:{isNullable:!0,type:t.String}},n=new l,o={collectionByLocaleId:{default:new i({chunks:[new URL(\"./xtNFB9S4S-chunk-default-0.framercms\",\"https://framerusercontent.com/modules/zQQPYKOywm4Ecqm3mB5R/iHKK9ngQOR6RdHSUuG72/xtNFB9S4S.js\").href],compressionDictionary:new URL(\"./xtNFB9S4S-chunk-default-dict.framercms\",\"https://framerusercontent.com/modules/zQQPYKOywm4Ecqm3mB5R/iHKK9ngQOR6RdHSUuG72/xtNFB9S4S.js\").href,indexes:[],resolveRichText:r,schema:a})},displayName:\"PR Links\"};export default o;e(o,{btcYFCXjF:{title:\"Link\",type:t.Link},uJP6yOObb:{title:\"Slug\",type:t.String},gBwfq1LiW:{title:\"Logo\",type:t.ResponsiveImage},Tq8P52lBw:{defaultValue:\"\",title:\"Press\",type:t.String},previousItemId:{dataIdentifier:\"local-module:collection/xtNFB9S4S:default\",title:\"Previous\",type:t.CollectionReference},nextItemId:{dataIdentifier:\"local-module:collection/xtNFB9S4S:default\",title:\"Next\",type:t.CollectionReference}});export const enumToDisplayNameFunctions={};export const utils={async getSlugByRecordId(e,t){let[l]=await n.query({from:{data:o,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{name:\"uJP6yOObb\",type:\"Identifier\"}],where:{left:{name:\"id\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:e},type:\"BinaryOperation\"}},t);return null==l?void 0:l.uJP6yOObb;},async getRecordIdBySlug(e,t){let[l]=await n.query({from:{data:o,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{name:\"id\",type:\"Identifier\"}],where:{left:{name:\"uJP6yOObb\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:e},type:\"BinaryOperation\"}},t);return null==l?void 0:l.id;}};\nexport const __FramerMetadata__ = {\"exports\":{\"utils\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"enumToDisplayNameFunctions\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"data\",\"name\":\"data\",\"annotations\":{\"framerCollectionId\":\"xtNFB9S4S\",\"framerCollectionUtils\":\"1\",\"framerData\":\"\",\"framerSlug\":\"uJP6yOObb\",\"framerContractVersion\":\"1\",\"framerEnumToDisplayNameUtils\":\"2\",\"framerRecordIdKey\":\"id\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (915daba)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useQueryData,useRouter,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Image1 from\"https://framerusercontent.com/modules/4FYXL5lQz9cgJ2BJkaNV/uQoXZ4NvFasfJqYRTeHn/Image.js\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/6YdWVZhgezRAHPsDckZo/Ticker.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";import PricingNoWidth from\"#framer/local/canvasComponent/Fsga4O7rX/Fsga4O7rX.js\";import HomeProductCard from\"#framer/local/canvasComponent/lZhZ8Mtyd/lZhZ8Mtyd.js\";import Button from\"#framer/local/canvasComponent/R995Zcnxh/R995Zcnxh.js\";import FAQ from\"#framer/local/canvasComponent/RrS1eVuGg/RrS1eVuGg.js\";import Footer from\"#framer/local/canvasComponent/XLa5RMd5Q/XLa5RMd5Q.js\";import Header from\"#framer/local/canvasComponent/Y2A0Oqgcl/Y2A0Oqgcl.js\";import Insights from\"#framer/local/collection/AE4ePfidq/AE4ePfidq.js\";import PRLinks from\"#framer/local/collection/xtNFB9S4S/xtNFB9S4S.js\";import*as sharedStyle2 from\"#framer/local/css/BsYwiyj6u/BsYwiyj6u.js\";import*as sharedStyle4 from\"#framer/local/css/dvYVeJqth/dvYVeJqth.js\";import*as sharedStyle1 from\"#framer/local/css/kfyzjt1T_/kfyzjt1T_.js\";import*as sharedStyle from\"#framer/local/css/SyPTvzPLt/SyPTvzPLt.js\";import*as sharedStyle3 from\"#framer/local/css/VpBXneMYL/VpBXneMYL.js\";import metadataProvider from\"#framer/local/webPageMetadata/Aft1wM2t6/Aft1wM2t6.js\";const HeaderFonts=getFonts(Header);const VideoFonts=getFonts(Video);const ButtonFonts=getFonts(Button);const ImageWithFX=withFX(Image);const TickerFonts=getFonts(Ticker);const MotionDivWithFX=withFX(motion.div);const HomeProductCardFonts=getFonts(HomeProductCard);const PricingNoWidthFonts=getFonts(PricingNoWidth);const Image1Fonts=getFonts(Image1);const FAQFonts=getFonts(FAQ);const FooterFonts=getFonts(Footer);const ContainerWithFX=withFX(Container);const breakpoints={LAW3tRyJf:\"(min-width: 810px) and (max-width: 1199px)\",ojgG63syC:\"(min-width: 1440px)\",SoPTB0VKc:\"(min-width: 1200px) and (max-width: 1439px)\",tPYRiYJwz:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-GjVz8\";const variantClassNames={LAW3tRyJf:\"framer-v-19q0j91\",ojgG63syC:\"framer-v-tr4sd3\",SoPTB0VKc:\"framer-v-e1cuti\",tPYRiYJwz:\"framer-v-1wc1ado\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition1={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation1={opacity:.8,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const toDateString=(value,options={},activeLocale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const display=options.display?options.display:\"date\";const dateOptions={dateStyle:display!==\"time\"?options.dateStyle:undefined,timeStyle:display===\"date\"?undefined:\"short\",timeZone:\"UTC\"};const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;// We add a try block because an invalid language code results in a crash\ntry{return date.toLocaleString(locale,dateOptions);}catch{return date.toLocaleString(fallbackLocale,dateOptions);}};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const transition3={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation2={opacity:.6,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"ojgG63syC\",Laptop:\"SoPTB0VKc\",Phone:\"tPYRiYJwz\",Tablet:\"LAW3tRyJf\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"ojgG63syC\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,v9_N34VBHFWGGNXyYZ,Q2UL00NcqFWGGNXyYZ,yYqLrSMQrFWGGNXyYZ,LmxhcCJEZFWGGNXyYZ,idFWGGNXyYZ,btcYFCXjFYvIsipwCA,gBwfq1LiWYvIsipwCA,Tq8P52lBwYvIsipwCA,uJP6yOObbYvIsipwCA,idYvIsipwCA,btcYFCXjFussJXYFXn,gBwfq1LiWussJXYFXn,Tq8P52lBwussJXYFXn,uJP6yOObbussJXYFXn,idussJXYFXn,btcYFCXjFBl6n9yfLs,gBwfq1LiWBl6n9yfLs,Tq8P52lBwBl6n9yfLs,uJP6yOObbBl6n9yfLs,idBl6n9yfLs,btcYFCXjFVu45AM98Y,gBwfq1LiWVu45AM98Y,Tq8P52lBwVu45AM98Y,uJP6yOObbVu45AM98Y,idVu45AM98Y,btcYFCXjFErdQj9yyk,gBwfq1LiWErdQj9yyk,Tq8P52lBwErdQj9yyk,uJP6yOObbErdQj9yyk,idErdQj9yyk,btcYFCXjFlh3ZxeRIZ,gBwfq1LiWlh3ZxeRIZ,Tq8P52lBwlh3ZxeRIZ,uJP6yOObblh3ZxeRIZ,idlh3ZxeRIZ,btcYFCXjFOeJGuBo0X,gBwfq1LiWOeJGuBo0X,Tq8P52lBwOeJGuBo0X,uJP6yOObbOeJGuBo0X,idOeJGuBo0X,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const activeLocaleCode=useLocaleCode();const router=useRouter();const defaultLayoutId=React.useId();useCustomCursors({});const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"ojgG63syC\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-5d8fb823-3e10-4da0-a8c3-9532d58e9d65, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-tr4sd3\",className),ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tPYRiYJwz:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1360px)`,y:(componentViewport?.y||0)+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:84,width:`min(${componentViewport?.width||\"100vw\"} - 80px, 1360px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-13bo9b7-container\",nodeId:\"XHiZsRo2J\",scopeId:\"Aft1wM2t6\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LAW3tRyJf:{variant:\"LgMRJjQ38\"},tPYRiYJwz:{variant:\"KAfE2JQY6\"}},children:/*#__PURE__*/_jsx(Header,{GMqxx8kNu:\"https://app.txyz.ai/\",height:\"100%\",id:\"XHiZsRo2J\",layoutId:\"XHiZsRo2J\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"M2fySrgfl\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tPYRiYJwz:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+84),pixelHeight:455,pixelWidth:960,sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1360px)`,src:\"https://framerusercontent.com/images/DtbRorD8Ipx8Ib3OmoI8QE14jM.webp\",srcSet:\"https://framerusercontent.com/images/DtbRorD8Ipx8Ib3OmoI8QE14jM.webp?scale-down-to=512 512w,https://framerusercontent.com/images/DtbRorD8Ipx8Ib3OmoI8QE14jM.webp 960w\"}}},children:/*#__PURE__*/_jsxs(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",pixelHeight:455,pixelWidth:960,sizes:`min(${componentViewport?.width||\"100vw\"} - 80px, 1360px)`,src:\"https://framerusercontent.com/images/DtbRorD8Ipx8Ib3OmoI8QE14jM.webp\",srcSet:\"https://framerusercontent.com/images/DtbRorD8Ipx8Ib3OmoI8QE14jM.webp?scale-down-to=512 512w,https://framerusercontent.com/images/DtbRorD8Ipx8Ib3OmoI8QE14jM.webp 960w\"},className:\"framer-4m8m10\",\"data-framer-name\":\"Hero\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-3lvmv6-container\",isModuleExternal:true,nodeId:\"ISLuw4VdI\",scopeId:\"Aft1wM2t6\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"ISLuw4VdI\",isMixedBorderRadius:false,layoutId:\"ISLuw4VdI\",loop:true,muted:true,objectFit:\"cover\",playing:true,poster:\"https://framerusercontent.com/images/DtbRorD8Ipx8Ib3OmoI8QE14jM.webp\",posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/yLpVQ48OvZNBfvxJ1Kkg6CS91A.webm\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-imj8kz\",\"data-framer-name\":\"Slogan\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-ijqwrf\",\"data-styles-preset\":\"SyPTvzPLt\",style:{\"--framer-text-color\":\"var(--token-efed5123-b78e-47fe-9a43-9eea948dc0d7, rgb(255, 255, 255))\"},children:\"Integrate All Paths to Knowledge\"})}),className:\"framer-asblx\",\"data-framer-name\":\"TXYZ Writing Streamlines the Knowledge Workflow\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tPYRiYJwz:{y:(componentViewport?.y||0)+0+84+240+14210854715202004e-30+0+81.60000000000001}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ukz8lq-container\",nodeId:\"pQD4QVOSx\",scopeId:\"Aft1wM2t6\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"pQD4QVOSx\",layoutId:\"pQD4QVOSx\",P61kCuCLD:\"Get Started\",takJc4EZF:\"var(--token-9d545637-9e26-4f9c-af66-03174423df8e, rgb(0, 101, 67))\",uEAGpm37o:\"https://app.txyz.ai/\",variant:\"Pv7zAO18g\",width:\"100%\"})})})})]})]})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-amslq3\",\"data-framer-name\":\"Testimonial\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-81pl8\",\"data-styles-preset\":\"kfyzjt1T_\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4d1bf752-b3a7-4536-9369-f209cdb2db8f, rgb(0, 26, 17))\"},children:\"Trusted by researchers at\"})}),className:\"framer-12gj1zv\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-o7tcog-container\",\"data-framer-name\":\"Clients\",isAuthoredByUser:true,isModuleExternal:true,name:\"Clients\",nodeId:\"MnZihJjlg\",scopeId:\"Aft1wM2t6\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:24,overflow:false},gap:48,height:\"100%\",hoverFactor:1,id:\"MnZihJjlg\",layoutId:\"MnZihJjlg\",name:\"Clients\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mjkuwv\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:21,intrinsicWidth:84,pixelHeight:42,pixelWidth:168,src:\"https://framerusercontent.com/images/OrLF4kewtumOLVj6NtwlWXMSU.svg\"},className:\"framer-udd1ti\",\"data-framer-name\":\"Harvard\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-jgmov1\",\"data-framer-name\":\"MIT\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 78 40\"><g transform=\"translate(0.05 -0.001)\" id=\"ss8770273618_1\"><path d=\"M 0 0.051 L 77.349 0.051 L 77.349 40.051 L 0 40.051 Z\" fill=\"transparent\"></path><path d=\"M 4.218 0.001 L 4.218 40.001 Z M 17.953 0.001 L 17.953 27.23 L 17.953 0 Z M 31.688 0.001 L 31.688 40.001 Z M 45.422 0.001 L 45.422 7.953 Z M 59.398 12.771 L 59.398 40.001 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 4.218 0.001 L 4.218 40.001 M 17.953 0.001 L 17.953 27.23 M 31.688 0 L 31.688 40 M 45.421 0.001 L 45.421 7.954 M 59.397 12.773 L 59.397 40.001\" fill=\"transparent\" stroke-width=\"12.217\" stroke=\"rgb(163,31,52)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 45.423 12.771 L 45.423 40.001 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 45.423 12.771 L 45.423 40.001\" fill=\"transparent\" stroke-width=\"12.217\" stroke=\"rgb(138,139,140)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 55.181 3.977 L 77.351 3.977 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 55.181 3.977 L 77.351 3.977\" fill=\"transparent\" stroke-width=\"11.519\" stroke=\"rgb(163,31,52)\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></g></svg>',svgContentId:8770273618,withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:24,intrinsicWidth:84,pixelHeight:48,pixelWidth:168,src:\"https://framerusercontent.com/images/3X0m0OWPNa2fBPuMzsXXRI9YA.svg\"},className:\"framer-bwvtl0\",\"data-framer-name\":\"Princeton\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-11hvx4v\",\"data-framer-name\":\"IAS\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 197 42\"><g transform=\"translate(0.238 0)\" id=\"ss10552101324_1\"><path d=\"M 0.001 0.239 L 196.001 0.239 L 196.001 42.239 L 0.001 42.239 Z\" fill=\"transparent\"></path><path d=\"M 3.77 6.189 L 0 6.189 L 0 5.483 L 11.764 5.483 L 11.764 6.189 L 7.994 6.189 L 7.994 35.809 L 11.764 35.809 L 11.764 36.515 L 0.002 36.515 L 0.002 35.81 L 3.772 35.81 L 3.772 6.189 Z M 25.525 12.403 L 25.443 12.403 L 21.382 25.76 L 29.791 25.76 L 25.524 12.403 Z M 29.999 26.466 L 21.135 26.466 L 19.436 32.019 C 19.146 32.901 18.816 33.959 18.816 34.708 C 18.816 35.325 19.313 35.81 20.638 35.81 L 22.792 35.81 L 22.792 36.515 L 14.259 36.515 L 14.259 35.81 L 15.585 35.81 C 16.869 35.81 17.407 35.678 18.195 33.21 L 27.099 4.778 L 27.555 4.778 L 37.621 35.81 L 41.059 35.81 L 41.059 36.515 L 28.922 36.515 L 28.922 35.81 L 32.982 35.81 Z M 43.014 25.628 L 43.677 25.628 C 43.677 33.033 47.777 36.515 52.747 36.515 C 56.724 36.515 59.582 33.826 59.582 29.859 C 59.582 25.276 57.345 23.909 52.582 23.115 C 46.079 22.013 43.014 20.867 43.014 13.463 C 43.014 8.437 46.121 4.78 50.76 4.78 C 55.026 4.78 56.641 7.467 58.05 7.467 C 59.002 7.467 59.127 6.367 59.25 5.792 L 59.913 5.792 L 59.913 15.049 L 59.251 15.049 C 58.878 10.024 56.31 5.484 50.76 5.484 C 47.239 5.484 44.753 7.952 44.753 12.007 C 44.753 15.975 46.162 16.856 53.037 18.18 C 59.085 19.325 61.57 21.396 61.57 27.127 C 61.57 32.901 58.588 37.221 52.582 37.221 C 48.44 37.221 46.245 34.928 44.712 34.928 C 43.718 34.928 43.677 36.03 43.677 36.779 L 43.014 36.779 L 43.014 25.63 Z M 81.507 9.463 L 82.157 9.463 L 82.157 17.539 L 81.507 17.539 Z M 71.227 0 L 71.876 0 L 71.876 42 L 71.226 42 L 71.226 0 Z M 90.859 17.54 L 86.079 10.602 L 86.079 17.539 L 85.431 17.539 L 85.431 9.462 L 86.091 9.462 L 90.848 16.305 L 90.848 9.462 L 91.495 9.462 L 91.495 17.539 L 90.859 17.539 Z M 94.382 16.401 L 94.803 15.881 C 95.293 16.474 96.089 17.055 97.181 17.055 C 98.728 17.055 99.172 16.135 99.172 15.445 C 99.172 13.071 94.622 14.305 94.622 11.485 C 94.622 10.165 95.736 9.331 97.112 9.331 C 98.24 9.331 99.103 9.753 99.684 10.467 L 99.251 10.976 C 98.705 10.274 97.931 9.959 97.078 9.959 C 96.066 9.959 95.303 10.577 95.303 11.449 C 95.303 13.519 99.856 12.381 99.856 15.396 C 99.856 16.438 99.206 17.686 97.158 17.686 C 95.907 17.686 94.962 17.139 94.382 16.401 Z M 104.733 17.54 L 104.733 10.092 L 102.253 10.092 L 102.253 9.462 L 107.873 9.462 L 107.873 10.092 L 105.393 10.092 L 105.393 17.539 L 104.733 17.539 Z M 110.635 9.463 L 111.284 9.463 L 111.284 17.539 L 110.635 17.539 Z M 116.528 17.54 L 116.528 10.092 L 114.047 10.092 L 114.047 9.462 L 119.669 9.462 L 119.669 10.092 L 117.188 10.092 L 117.188 17.539 L 116.528 17.539 Z M 122.43 14.44 L 122.43 9.463 L 123.091 9.463 L 123.091 14.427 C 123.091 16.062 123.899 17.055 125.389 17.055 C 126.88 17.055 127.688 16.062 127.688 14.427 L 127.688 9.463 L 128.347 9.463 L 128.347 14.44 C 128.347 16.437 127.347 17.685 125.389 17.685 C 123.444 17.685 122.43 16.425 122.43 14.44 Z M 133.476 17.54 L 133.476 10.092 L 130.995 10.092 L 130.995 9.462 L 136.617 9.462 L 136.617 10.092 L 134.137 10.092 L 134.137 17.539 L 133.476 17.539 Z M 139.333 17.54 L 139.333 9.461 L 144.146 9.461 L 144.146 10.091 L 139.981 10.091 L 139.981 13.083 L 144.067 13.083 L 144.067 13.711 L 139.981 13.711 L 139.981 16.909 L 144.146 16.909 L 144.146 17.539 L 139.333 17.539 Z M 151.537 17.54 L 151.537 9.461 L 156.35 9.461 L 156.35 10.091 L 152.185 10.091 L 152.185 13.083 L 156.27 13.083 L 156.27 13.711 L 152.185 13.711 L 152.185 17.538 L 151.537 17.538 Z M 165.53 13.508 C 165.53 11.46 164.346 9.958 162.526 9.958 C 160.694 9.958 159.523 11.46 159.523 13.508 C 159.523 15.542 160.694 17.055 162.526 17.055 C 164.346 17.055 165.53 15.542 165.53 13.508 Z M 158.84 13.508 C 158.84 11.146 160.296 9.331 162.526 9.331 C 164.745 9.331 166.214 11.146 166.214 13.508 C 166.214 15.868 164.745 17.685 162.526 17.685 C 160.296 17.685 158.84 15.869 158.84 13.508 Z M 173.695 11.824 C 173.695 10.807 173.025 10.092 172.012 10.092 L 169.884 10.092 L 169.884 13.568 L 172.012 13.568 C 173.025 13.568 173.695 12.841 173.695 11.824 Z M 173.684 17.539 L 171.556 14.197 L 169.884 14.197 L 169.884 17.539 L 169.235 17.539 L 169.235 9.463 L 172.068 9.463 C 173.377 9.463 174.379 10.347 174.379 11.824 C 174.379 13.289 173.411 14.101 172.273 14.149 L 174.469 17.539 Z M 84.249 25.187 L 82.452 29.909 L 86.035 29.909 Z M 87.002 32.525 L 86.252 30.539 L 82.235 30.539 L 81.483 32.525 L 80.733 32.525 L 83.838 24.448 L 84.648 24.448 L 87.754 32.525 Z M 95.863 28.492 C 95.863 26.604 94.725 25.078 92.711 25.078 L 90.935 25.078 L 90.935 31.894 L 92.711 31.894 C 94.713 31.894 95.863 30.382 95.863 28.493 Z M 90.287 32.524 L 90.287 24.448 L 92.711 24.448 C 95.067 24.448 96.545 26.276 96.545 28.492 C 96.545 30.733 95.067 32.524 92.711 32.524 Z M 101.685 32.524 L 98.578 24.448 L 99.329 24.448 L 102.095 31.75 L 104.848 24.448 L 105.6 24.448 L 102.493 32.524 Z M 110.227 25.187 L 108.428 29.909 L 112.014 29.909 Z M 112.98 32.525 L 112.229 30.539 L 108.212 30.539 L 107.461 32.525 L 106.711 32.525 L 109.817 24.448 L 110.625 24.448 L 113.732 32.525 Z M 121.693 32.524 L 116.914 25.586 L 116.914 32.524 L 116.265 32.524 L 116.265 24.448 L 116.925 24.448 L 121.681 31.29 L 121.681 24.448 L 122.33 24.448 L 122.33 32.524 Z M 125.354 28.493 C 125.354 26.01 127.049 24.316 129.199 24.316 C 130.405 24.316 131.327 24.885 131.965 25.743 L 131.417 26.12 C 130.915 25.388 130.086 24.949 129.199 24.946 C 127.423 24.946 126.036 26.386 126.036 28.493 C 126.036 30.575 127.423 32.04 129.199 32.04 C 130.087 32.037 130.916 31.597 131.417 30.865 L 131.976 31.229 C 131.293 32.113 130.405 32.669 129.199 32.669 C 127.049 32.669 125.354 30.974 125.354 28.493 Z M 134.692 32.524 L 134.692 24.448 L 139.505 24.448 L 139.505 25.078 L 135.339 25.078 L 135.339 28.068 L 139.425 28.068 L 139.425 28.698 L 135.339 28.698 L 135.339 31.895 L 139.505 31.895 L 139.505 32.525 L 134.692 32.525 Z M 148.104 28.492 C 148.104 26.604 146.966 25.078 144.952 25.078 L 143.178 25.078 L 143.178 31.894 L 144.952 31.894 C 146.954 31.894 148.104 30.382 148.104 28.493 Z M 142.528 32.524 L 142.528 24.448 L 144.952 24.448 C 147.307 24.448 148.787 26.276 148.787 28.492 C 148.787 30.733 147.307 32.524 144.952 32.524 Z M 155.767 31.387 L 156.188 30.865 C 156.677 31.459 157.474 32.04 158.567 32.04 C 160.114 32.04 160.558 31.12 160.558 30.43 C 160.558 28.056 156.006 29.293 156.006 26.471 C 156.006 25.15 157.121 24.316 158.498 24.316 C 159.626 24.316 160.489 24.739 161.07 25.454 L 160.638 25.963 C 160.09 25.26 159.318 24.946 158.465 24.946 C 157.451 24.946 156.689 25.563 156.689 26.434 C 156.689 28.504 161.241 27.367 161.241 30.382 C 161.241 31.422 160.593 32.669 158.544 32.669 C 157.292 32.669 156.348 32.125 155.767 31.387 Z M 166.119 32.524 L 166.119 25.078 L 163.639 25.078 L 163.639 24.448 L 169.259 24.448 L 169.259 25.078 L 166.78 25.078 L 166.78 32.524 Z M 172.022 29.424 L 172.022 24.448 L 172.682 24.448 L 172.682 29.412 C 172.682 31.046 173.489 32.04 174.98 32.04 C 176.47 32.04 177.279 31.046 177.279 29.412 L 177.279 24.448 L 177.939 24.448 L 177.939 29.424 C 177.939 31.423 176.937 32.67 174.98 32.67 C 173.034 32.67 172.022 31.411 172.022 29.424 Z M 186.821 28.492 C 186.821 26.604 185.682 25.078 183.67 25.078 L 181.894 25.078 L 181.894 31.894 L 183.67 31.894 C 185.672 31.894 186.821 30.382 186.821 28.493 Z M 181.245 32.524 L 181.245 24.448 L 183.67 24.448 C 186.025 24.448 187.504 26.276 187.504 28.492 C 187.504 30.733 186.025 32.524 183.67 32.524 Z M 192.325 32.524 L 192.325 29.074 L 189.31 24.448 L 190.095 24.448 L 192.655 28.42 L 195.215 24.448 L 196.001 24.448 L 192.985 29.073 L 192.985 32.524 Z\" fill=\"rgb(35,31,32)\"></path></g></svg>',svgContentId:10552101324,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-2bciov\",\"data-framer-name\":\"Stanford\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 135 44\"><g transform=\"translate(0.29 0.29)\" id=\"ss12683577163_1\"><path d=\"M 0 0 L 134.659 0 L 134.659 44 L 0 44 Z\" fill=\"transparent\"></path><path d=\"M 0.725 35.142 L 0.725 27.592 C 0.791 27.597 0.858 27.606 0.924 27.606 L 8.028 27.606 C 8.093 27.606 8.158 27.6 8.223 27.596 C 8.31 27.318 8.496 27.148 8.745 27.04 C 8.839 26.999 8.939 26.968 9.032 26.923 C 9.075 26.901 9.105 26.854 9.141 26.82 L 9.116 26.777 C 8.978 26.788 8.839 26.806 8.702 26.809 C 8.562 26.812 8.419 26.818 8.284 26.79 C 7.988 26.73 7.824 26.482 7.863 26.184 L 7.888 25.962 L 7.632 25.962 C 7.047 25.962 6.462 25.957 5.878 25.966 C 5.731 25.974 5.589 25.916 5.49 25.807 C 3.965 24.276 2.437 22.748 0.907 21.222 C 0.851 21.165 0.786 21.117 0.725 21.065 L 0.725 6.363 C 0.761 6.339 0.802 6.319 0.833 6.29 C 1.223 5.917 1.612 5.542 2 5.168 C 3.2 4.015 4.4 2.863 5.598 1.708 C 5.858 1.458 6.109 1.2 6.364 0.945 L 21.331 0.945 C 21.381 0.999 21.427 1.055 21.481 1.107 C 21.929 1.537 22.378 1.966 22.825 2.397 L 25.383 4.859 L 26.949 6.371 L 26.949 14.583 L 19.539 14.583 L 19.539 14.73 C 19.512 15.252 19.079 15.528 18.589 15.352 C 18.427 15.292 18.249 15.273 18.074 15.248 C 17.936 15.228 17.794 15.234 17.654 15.216 C 17.261 15.164 16.868 15.106 16.465 15.05 C 16.5 15.095 16.534 15.14 16.57 15.184 C 16.873 15.55 17.273 15.791 17.672 16.034 C 17.797 16.112 17.942 16.152 18.089 16.149 C 19.332 16.144 20.576 16.149 21.818 16.143 C 21.988 16.143 22.105 16.193 22.224 16.313 C 23.743 17.839 25.265 19.362 26.792 20.881 C 26.911 20.989 26.976 21.144 26.97 21.305 C 26.964 25.827 26.966 30.348 26.966 34.87 L 26.966 35.117 C 25.082 36.93 23.2 38.74 21.322 40.549 L 6.385 40.549 C 6.108 40.282 5.838 40.019 5.565 39.759 C 4.048 38.295 2.531 36.832 1.012 35.37 C 0.924 35.285 0.822 35.217 0.725 35.141 Z M 26.321 13.91 L 26.321 13.666 C 26.321 11.409 26.32 9.151 26.324 6.894 C 26.324 6.74 26.274 6.634 26.164 6.529 C 24.514 4.947 22.867 3.361 21.222 1.774 C 21.116 1.662 20.968 1.601 20.814 1.606 C 16.174 1.61 11.533 1.61 6.893 1.606 C 6.746 1.599 6.603 1.654 6.5 1.759 C 6.1 2.152 5.692 2.541 5.287 2.93 L 2.567 5.544 C 2.173 5.924 1.78 6.304 1.388 6.68 L 1.388 6.802 C 1.388 11.398 1.388 15.995 1.386 20.592 C 1.384 20.709 1.433 20.821 1.521 20.899 C 2.941 22.315 4.361 23.734 5.775 25.154 C 5.864 25.252 5.991 25.305 6.123 25.3 C 6.945 25.294 7.766 25.297 8.588 25.298 C 8.651 25.298 8.713 25.304 8.824 25.31 C 8.509 25.605 8.37 25.943 8.276 26.356 C 8.438 26.363 8.559 26.376 8.68 26.369 C 9.288 26.342 9.881 26.169 10.408 25.865 C 10.581 25.764 10.768 25.783 10.938 25.88 C 11.12 25.984 11.166 26.146 11.067 26.332 C 11.023 26.417 10.97 26.498 10.911 26.574 C 10.577 26.986 10.133 27.193 9.618 27.283 C 9.364 27.327 9.114 27.391 8.87 27.473 C 8.708 27.529 8.631 27.659 8.669 27.779 C 8.699 27.871 8.769 27.953 8.836 28.029 C 8.904 28.104 8.99 28.164 9.068 28.231 L 9.043 28.281 L 1.393 28.281 L 1.393 28.52 C 1.391 30.548 1.391 32.576 1.385 34.604 C 1.385 34.759 1.433 34.864 1.542 34.97 C 2.552 35.935 3.559 36.907 4.566 37.877 C 5.206 38.493 5.845 39.109 6.48 39.727 C 6.586 39.839 6.734 39.901 6.888 39.897 C 11.537 39.892 16.184 39.892 20.833 39.897 C 20.972 39.903 21.107 39.849 21.205 39.75 C 21.905 39.07 22.611 38.395 23.315 37.718 C 24.259 36.81 25.201 35.901 26.147 34.996 C 26.265 34.896 26.33 34.747 26.324 34.593 C 26.319 30.256 26.319 25.919 26.324 21.582 C 26.33 21.436 26.272 21.294 26.164 21.195 C 24.753 19.791 23.346 18.383 21.942 16.971 C 21.842 16.863 21.699 16.804 21.552 16.811 C 20.472 16.818 19.391 16.816 18.31 16.813 C 18.223 16.813 18.122 16.814 18.054 16.773 C 17.582 16.482 17.104 16.198 16.654 15.877 C 16.303 15.626 16.034 15.284 15.818 14.909 C 15.713 14.729 15.646 14.532 15.768 14.313 C 15.825 14.323 15.88 14.318 15.923 14.34 C 16.599 14.686 17.333 14.765 18.073 14.807 C 18.31 14.82 18.543 14.843 18.765 14.942 C 18.959 15.03 19.129 14.895 19.091 14.683 C 19.068 14.582 19.025 14.488 18.965 14.404 C 18.855 14.242 18.731 14.092 18.593 13.912 L 26.323 13.912 Z\" fill=\"rgb(154,0,0)\"></path><path d=\"M 26.321 13.91 L 18.592 13.91 C 18.729 14.09 18.854 14.241 18.964 14.402 C 19.024 14.485 19.067 14.58 19.09 14.681 C 19.128 14.891 18.959 15.027 18.764 14.94 C 18.541 14.84 18.309 14.817 18.072 14.804 C 17.332 14.764 16.598 14.684 15.922 14.338 C 15.879 14.316 15.825 14.32 15.768 14.311 C 15.645 14.53 15.712 14.726 15.817 14.906 C 16.033 15.281 16.303 15.624 16.653 15.874 C 17.103 16.195 17.581 16.48 18.053 16.771 C 18.121 16.813 18.223 16.811 18.309 16.811 C 19.389 16.813 20.47 16.815 21.551 16.81 C 21.711 16.81 21.826 16.853 21.941 16.97 C 23.345 18.38 24.752 19.788 26.164 21.192 C 26.272 21.292 26.33 21.433 26.324 21.58 C 26.319 25.917 26.319 30.254 26.324 34.59 C 26.329 34.744 26.263 34.893 26.146 34.993 C 25.2 35.898 24.257 36.808 23.314 37.716 C 22.61 38.393 21.904 39.068 21.204 39.748 C 21.107 39.848 20.971 39.902 20.832 39.895 C 16.183 39.89 11.536 39.89 6.887 39.895 C 6.733 39.899 6.585 39.837 6.479 39.725 C 4.837 38.135 3.191 36.549 1.541 34.967 C 1.436 34.875 1.379 34.741 1.384 34.602 C 1.39 32.574 1.391 30.546 1.393 28.518 L 1.393 28.278 L 9.043 28.278 L 9.068 28.229 C 8.99 28.162 8.905 28.102 8.836 28.026 C 8.764 27.955 8.707 27.87 8.669 27.776 C 8.63 27.657 8.707 27.526 8.869 27.472 C 9.113 27.389 9.365 27.325 9.619 27.281 C 10.132 27.19 10.577 26.983 10.911 26.572 C 10.971 26.498 11.023 26.415 11.067 26.33 C 11.165 26.143 11.12 25.982 10.937 25.878 C 10.767 25.78 10.581 25.762 10.408 25.862 C 9.881 26.167 9.288 26.34 8.68 26.367 C 8.56 26.373 8.438 26.359 8.276 26.354 C 8.371 25.941 8.51 25.604 8.824 25.308 C 8.712 25.303 8.651 25.296 8.588 25.296 C 7.766 25.296 6.945 25.293 6.123 25.298 C 5.991 25.303 5.864 25.25 5.775 25.152 C 4.36 23.731 2.942 22.312 1.521 20.897 C 1.433 20.819 1.383 20.707 1.386 20.589 C 1.389 15.993 1.388 11.396 1.388 6.799 L 1.388 6.679 C 1.778 6.301 2.173 5.921 2.567 5.542 L 5.287 2.928 C 5.693 2.538 6.1 2.151 6.5 1.756 C 6.602 1.65 6.746 1.594 6.893 1.603 C 11.533 1.608 16.175 1.608 20.814 1.603 C 20.968 1.599 21.116 1.66 21.222 1.772 C 22.867 3.359 24.515 4.944 26.165 6.526 C 26.275 6.632 26.325 6.738 26.325 6.892 C 26.32 9.149 26.321 11.407 26.321 13.664 L 26.321 13.909 Z M 11.116 23.22 C 10.901 23.22 10.711 23.232 10.523 23.217 C 10.363 23.203 10.204 23.157 10.045 23.125 C 9.705 23.059 9.371 23.038 9.049 23.207 C 8.983 23.242 8.897 23.239 8.829 23.252 C 8.744 23.125 8.801 23.031 8.844 22.938 C 9.082 22.413 9.508 22.073 10.001 21.818 C 10.548 21.533 11.061 21.198 11.556 20.835 C 11.753 20.692 11.906 20.51 12.003 20.293 C 12.065 20.156 12.097 19.997 12.101 19.846 C 12.108 19.624 11.956 19.543 11.761 19.643 C 11.728 19.66 11.697 19.679 11.667 19.7 C 11.03 20.164 10.327 20.183 9.595 20.006 C 9.57 19.869 9.567 19.845 9.65 19.751 C 9.821 19.557 9.996 19.365 10.237 19.252 C 10.431 19.162 10.629 19.076 10.817 18.976 C 11.012 18.871 11.211 18.767 11.385 18.633 C 11.631 18.442 11.789 18.183 11.848 17.872 C 11.867 17.776 11.884 17.679 11.742 17.602 C 11.656 17.645 11.54 17.68 11.452 17.748 C 11.08 18.036 10.65 18.119 10.198 18.116 C 9.624 18.113 9.14 18.29 8.786 18.767 C 8.714 18.865 8.626 18.965 8.478 18.967 C 8.339 18.859 8.352 18.704 8.37 18.561 C 8.409 18.245 8.457 17.931 8.515 17.619 C 8.658 16.846 9.063 16.262 9.768 15.886 C 10.107 15.706 10.428 15.49 10.752 15.284 C 11.087 15.063 11.377 14.782 11.61 14.455 C 11.71 14.32 11.793 14.165 11.846 14.007 C 11.915 13.801 11.916 13.587 11.73 13.383 C 11.643 13.445 11.562 13.501 11.482 13.56 C 11.357 13.651 11.245 13.78 11.105 13.827 C 10.676 13.969 10.239 14.084 9.778 14.008 C 9.506 13.957 9.225 13.996 8.978 14.12 C 8.952 14.134 8.925 14.146 8.897 14.156 C 8.704 14.222 8.547 14.105 8.577 13.9 C 8.591 13.805 8.628 13.715 8.685 13.638 C 8.768 13.526 8.867 13.423 8.971 13.33 C 9.496 12.857 10.087 12.477 10.698 12.128 C 11.166 11.86 11.654 11.626 12.122 11.358 C 12.28 11.263 12.418 11.138 12.529 10.99 C 12.697 10.774 12.593 10.539 12.32 10.506 C 12.201 10.492 12.074 10.528 11.954 10.554 C 11.81 10.586 11.671 10.657 11.528 10.667 C 11.278 10.684 11.026 10.672 10.774 10.662 C 10.692 10.658 10.611 10.618 10.49 10.582 C 10.554 10.472 10.588 10.382 10.647 10.317 C 10.817 10.127 11.018 9.978 11.253 9.877 C 11.489 9.772 11.727 9.669 11.961 9.56 C 12.164 9.475 12.307 9.291 12.339 9.073 C 12.379 8.827 12.267 8.707 12.022 8.727 C 11.912 8.736 11.801 8.757 11.691 8.754 C 11.592 8.753 11.494 8.729 11.364 8.712 C 11.394 8.603 11.398 8.519 11.436 8.457 C 11.498 8.358 11.576 8.266 11.661 8.184 C 11.973 7.882 12.327 7.646 12.751 7.528 C 12.887 7.49 13.021 7.441 13.056 7.266 C 12.971 7.156 12.849 7.132 12.724 7.119 C 12.57 7.103 12.413 7.102 12.261 7.073 C 12.189 7.06 12.089 7.009 12.071 6.953 C 12.053 6.901 12.11 6.799 12.164 6.753 C 12.316 6.625 12.487 6.519 12.644 6.395 C 12.846 6.235 13.051 6.075 13.235 5.896 C 13.366 5.769 13.349 5.681 13.21 5.56 C 13.11 5.472 13 5.396 12.9 5.308 C 12.83 5.246 12.748 5.184 12.776 5.041 C 12.832 5.026 12.9 4.992 12.968 4.992 C 13.156 4.991 13.278 4.894 13.35 4.736 C 13.416 4.588 13.472 4.434 13.514 4.278 C 13.581 4.036 13.631 3.788 13.693 3.546 C 13.713 3.466 13.717 3.363 13.856 3.354 L 13.912 3.589 C 13.971 3.841 14.019 4.096 14.089 4.344 C 14.157 4.584 14.276 4.781 14.574 4.777 C 14.636 4.777 14.698 4.827 14.758 4.854 C 14.715 5.053 14.563 5.124 14.458 5.233 C 14.276 5.422 14.314 5.628 14.558 5.719 C 14.661 5.757 14.774 5.767 14.883 5.785 C 15.093 5.82 15.139 5.921 15.003 6.085 C 14.92 6.185 14.813 6.269 14.711 6.354 C 14.52 6.512 14.497 6.608 14.654 6.799 C 14.766 6.934 14.904 7.051 15.038 7.164 C 15.168 7.274 15.318 7.36 15.445 7.472 C 15.725 7.719 15.705 7.86 15.381 8.03 C 15.349 8.048 15.316 8.065 15.286 8.087 C 15.203 8.145 15.101 8.19 15.106 8.347 L 15.299 8.456 C 15.664 8.66 15.998 8.904 16.234 9.256 C 16.352 9.431 16.297 9.538 16.086 9.546 C 15.938 9.55 15.79 9.541 15.644 9.519 C 15.374 9.482 15.315 9.642 15.334 9.827 C 15.346 9.921 15.375 10.013 15.419 10.097 C 15.493 10.242 15.627 10.323 15.772 10.388 C 16.09 10.529 16.414 10.656 16.719 10.82 C 16.918 10.926 17.107 11.069 17.262 11.23 C 17.425 11.4 17.354 11.596 17.126 11.65 C 16.974 11.677 16.82 11.684 16.666 11.67 C 16.438 11.658 16.211 11.61 15.984 11.609 C 15.788 11.609 15.591 11.649 15.432 11.776 C 15.431 11.904 15.504 12.021 15.62 12.076 C 15.775 12.161 15.933 12.25 16.1 12.3 C 16.663 12.467 17.159 12.756 17.624 13.102 C 17.729 13.182 17.86 13.223 17.992 13.218 C 18.74 13.214 19.487 13.218 20.235 13.216 C 21.951 13.214 23.669 13.209 25.385 13.206 C 25.457 13.206 25.53 13.2 25.625 13.196 L 25.625 12.921 C 25.625 11.034 25.621 9.146 25.63 7.259 C 25.637 7.083 25.562 6.913 25.428 6.799 C 24.655 6.066 23.89 5.324 23.122 4.586 C 22.387 3.879 21.647 3.176 20.916 2.462 C 20.814 2.357 20.671 2.301 20.525 2.309 C 16.075 2.312 11.628 2.311 7.179 2.311 C 7.149 2.311 7.119 2.314 7.09 2.311 C 6.986 2.299 6.912 2.345 6.837 2.416 C 5.303 3.896 3.767 5.372 2.229 6.846 C 2.134 6.927 2.082 7.047 2.086 7.171 C 2.089 11.538 2.089 15.905 2.086 20.272 C 2.086 20.41 2.128 20.506 2.225 20.602 C 3.513 21.889 4.799 23.178 6.08 24.472 C 6.175 24.573 6.311 24.627 6.45 24.619 C 7.479 24.614 8.508 24.604 9.536 24.622 C 9.924 24.629 10.273 24.541 10.628 24.398 C 11.141 24.19 11.173 23.743 11.134 23.248 C 11.134 23.23 11.107 23.215 11.114 23.224 Z M 19.392 27.14 C 19.237 27.147 19.122 27.161 19.008 27.156 C 18.394 27.123 17.812 26.974 17.277 26.66 C 17.079 26.544 16.877 26.567 16.692 26.696 C 16.546 26.798 16.503 26.949 16.592 27.1 C 16.675 27.238 16.766 27.377 16.877 27.492 C 17.213 27.842 17.639 28.01 18.115 28.08 C 18.333 28.113 18.553 28.16 18.757 28.242 C 19.044 28.356 19.117 28.587 18.975 28.857 C 18.918 28.967 18.836 29.067 18.754 29.16 C 18.548 29.391 18.538 29.6 18.746 29.827 C 18.815 29.902 18.906 29.957 18.991 30.013 C 19.159 30.123 19.334 30.218 19.496 30.334 C 19.746 30.512 19.976 30.723 20.084 31.014 C 20.259 31.484 20.411 31.963 20.554 32.444 C 20.597 32.589 20.592 32.753 20.582 32.907 C 20.572 33.079 20.458 33.159 20.29 33.114 C 20.155 33.078 20.025 33.023 19.904 32.952 C 19.625 32.785 19.361 32.592 19.08 32.428 C 18.732 32.218 18.375 32.025 18.01 31.848 C 17.699 31.704 17.353 31.655 17.014 31.706 C 16.824 31.732 16.63 31.726 16.438 31.737 C 16.065 31.762 15.696 31.644 15.406 31.407 C 15.304 31.325 15.194 31.213 15.054 31.273 C 14.894 31.34 14.926 31.506 14.926 31.643 C 14.923 32.547 14.923 33.449 14.926 34.353 C 14.926 34.678 14.916 35.004 14.942 35.329 C 15.018 36.297 15.412 37.075 16.306 37.545 C 16.683 37.743 17.001 38.018 17.278 38.342 C 17.358 38.436 17.453 38.526 17.557 38.592 C 18.097 38.937 18.683 39.154 19.324 39.184 C 19.754 39.204 20.183 39.19 20.611 39.199 C 20.727 39.201 20.803 39.155 20.881 39.079 C 21.391 38.584 21.904 38.092 22.415 37.599 C 23.439 36.616 24.461 35.63 25.489 34.649 C 25.583 34.566 25.635 34.445 25.629 34.319 C 25.626 30.16 25.626 26.001 25.629 21.842 C 25.633 21.717 25.582 21.597 25.489 21.514 C 24.192 20.226 22.898 18.934 21.606 17.641 C 21.527 17.554 21.414 17.506 21.296 17.511 C 20.541 17.517 19.786 17.514 19.032 17.515 C 18.974 17.515 18.916 17.52 18.842 17.524 C 18.867 17.582 18.882 17.631 18.905 17.676 C 19.109 18.093 19.195 18.544 19.252 18.999 C 19.282 19.247 19.154 19.369 18.91 19.319 C 18.754 19.287 18.605 19.214 18.455 19.154 C 18.339 19.107 18.231 19.042 18.114 18.998 C 17.58 18.803 17.044 18.612 16.51 18.418 C 16.42 18.386 16.33 18.346 16.239 18.323 C 16.089 18.288 15.963 18.344 15.857 18.449 C 15.751 18.553 15.794 18.669 15.838 18.779 C 15.98 19.133 16.201 19.424 16.542 19.607 C 16.705 19.694 16.872 19.777 17.039 19.851 C 17.447 20.032 17.832 20.251 18.159 20.56 C 18.237 20.635 18.314 20.72 18.367 20.815 C 18.467 20.992 18.373 21.121 18.17 21.108 C 18.14 21.105 18.11 21.103 18.083 21.091 C 17.833 20.974 17.577 21.006 17.323 21.067 C 16.967 21.153 16.593 21.114 16.263 20.955 C 16.121 20.891 15.976 20.836 15.828 20.789 C 15.764 20.769 15.691 20.775 15.626 20.769 C 15.568 20.904 15.616 20.997 15.666 21.089 C 15.793 21.327 15.967 21.523 16.189 21.682 C 16.683 22.034 17.189 22.365 17.733 22.639 C 18.578 23.064 19.009 23.795 19.21 24.687 C 19.227 24.764 19.206 24.85 19.2 24.98 C 19.04 24.915 18.908 24.892 18.819 24.819 C 18.586 24.624 18.324 24.566 18.033 24.584 C 17.575 24.625 17.125 24.45 16.815 24.111 C 16.771 24.066 16.7 24.046 16.642 24.015 C 16.42 24.384 16.539 24.897 16.877 25.093 C 16.979 25.152 17.091 25.191 17.199 25.239 C 17.589 25.415 17.984 25.584 18.367 25.773 C 18.537 25.858 18.699 25.971 18.843 26.096 C 19.143 26.356 19.3 26.7 19.392 27.141 Z M 2.109 28.984 C 2.105 29.059 2.1 29.124 2.1 29.189 C 2.097 30.877 2.097 32.564 2.085 34.251 C 2.078 34.428 2.153 34.598 2.289 34.711 C 2.839 35.227 3.381 35.751 3.925 36.274 C 4.895 37.207 5.866 38.14 6.833 39.076 C 6.903 39.152 7.002 39.193 7.105 39.189 C 7.557 39.184 8.008 39.191 8.46 39.186 C 9.028 39.184 9.576 38.972 9.997 38.59 C 10.312 38.313 10.554 37.977 10.765 37.62 C 11.005 37.214 11.298 36.856 11.647 36.542 C 11.811 36.393 11.969 36.236 12.14 36.095 C 12.38 35.897 12.508 35.64 12.59 35.348 C 12.695 34.932 12.746 34.503 12.742 34.074 C 12.756 32.713 12.754 31.351 12.756 29.99 C 12.756 29.92 12.739 29.851 12.731 29.786 C 12.581 29.745 12.486 29.812 12.401 29.877 C 12.267 29.981 12.14 30.095 12.021 30.216 C 11.83 30.412 11.607 30.556 11.345 30.623 C 11.13 30.677 10.913 30.718 10.693 30.746 C 10.429 30.782 10.151 30.758 9.902 30.833 C 9.049 31.089 8.273 31.493 7.645 32.143 C 7.56 32.231 7.472 32.31 7.337 32.268 C 7.207 32.228 7.164 32.115 7.131 31.998 C 7.12 31.956 7.12 31.911 7.117 31.866 C 7.1 31.436 7.504 30.245 7.778 29.916 C 8.069 29.566 8.444 29.335 8.848 29.143 C 8.931 29.103 9.011 29.057 9.091 29.015 L 9.076 28.983 L 2.109 28.983 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 11.116 23.222 C 11.108 23.212 11.134 23.228 11.136 23.245 C 11.174 23.741 11.142 24.188 10.629 24.395 C 10.284 24.544 9.913 24.621 9.537 24.62 C 8.508 24.602 7.48 24.612 6.451 24.617 C 6.312 24.625 6.176 24.571 6.081 24.469 C 4.799 23.176 3.514 21.886 2.226 20.6 C 2.133 20.516 2.082 20.395 2.086 20.27 C 2.09 15.903 2.09 11.536 2.087 7.169 C 2.083 7.044 2.135 6.924 2.23 6.843 C 3.77 5.37 5.306 3.893 6.84 2.414 C 6.914 2.341 6.988 2.297 7.092 2.309 C 7.122 2.312 7.152 2.309 7.182 2.309 C 11.63 2.309 16.078 2.309 20.527 2.307 C 20.684 2.307 20.8 2.345 20.918 2.46 C 21.648 3.174 22.388 3.877 23.124 4.584 C 23.893 5.322 24.658 6.064 25.43 6.798 C 25.568 6.928 25.633 7.059 25.632 7.257 C 25.623 9.144 25.627 11.032 25.627 12.919 L 25.627 13.194 C 25.531 13.199 25.459 13.204 25.387 13.204 C 23.671 13.207 21.954 13.212 20.237 13.214 C 19.489 13.215 18.742 13.212 17.994 13.216 C 17.862 13.22 17.732 13.18 17.626 13.1 C 17.161 12.754 16.665 12.465 16.103 12.298 C 15.935 12.248 15.777 12.158 15.623 12.075 C 15.507 12.02 15.433 11.903 15.434 11.774 C 15.593 11.647 15.789 11.607 15.986 11.607 C 16.214 11.607 16.44 11.655 16.668 11.667 C 16.821 11.677 16.981 11.681 17.128 11.647 C 17.358 11.595 17.427 11.397 17.264 11.228 C 17.105 11.065 16.922 10.926 16.721 10.818 C 16.416 10.654 16.091 10.528 15.774 10.386 C 15.629 10.322 15.495 10.241 15.421 10.096 C 15.377 10.012 15.349 9.92 15.337 9.826 C 15.317 9.64 15.376 9.481 15.646 9.517 C 15.792 9.537 15.941 9.551 16.088 9.544 C 16.3 9.534 16.356 9.429 16.236 9.254 C 16 8.902 15.666 8.658 15.301 8.454 L 15.108 8.344 C 15.105 8.189 15.206 8.144 15.288 8.084 C 15.318 8.063 15.351 8.046 15.383 8.028 C 15.708 7.859 15.727 7.717 15.447 7.469 C 15.32 7.358 15.171 7.272 15.04 7.162 C 14.901 7.052 14.773 6.93 14.656 6.797 C 14.498 6.606 14.522 6.51 14.713 6.352 C 14.815 6.267 14.923 6.185 15.006 6.082 C 15.142 5.919 15.095 5.817 14.886 5.783 C 14.776 5.765 14.663 5.755 14.561 5.717 C 14.317 5.626 14.279 5.42 14.46 5.231 C 14.565 5.121 14.717 5.051 14.76 4.852 C 14.7 4.826 14.638 4.775 14.576 4.775 C 14.278 4.778 14.158 4.582 14.091 4.342 C 14.021 4.094 13.971 3.839 13.914 3.587 C 13.896 3.509 13.877 3.43 13.858 3.352 C 13.718 3.362 13.716 3.463 13.695 3.544 C 13.633 3.788 13.583 4.034 13.516 4.276 C 13.473 4.433 13.418 4.586 13.352 4.734 C 13.28 4.892 13.158 4.989 12.97 4.99 C 12.903 4.99 12.836 5.024 12.778 5.039 C 12.748 5.182 12.83 5.244 12.902 5.306 C 13.002 5.394 13.112 5.47 13.212 5.558 C 13.352 5.679 13.368 5.767 13.237 5.894 C 13.052 6.073 12.847 6.232 12.646 6.394 C 12.489 6.517 12.318 6.622 12.166 6.751 C 12.112 6.797 12.056 6.899 12.073 6.951 C 12.09 7.007 12.191 7.058 12.263 7.071 C 12.415 7.099 12.571 7.101 12.726 7.117 C 12.851 7.13 12.973 7.155 13.058 7.264 C 13.021 7.439 12.888 7.488 12.753 7.526 C 12.328 7.644 11.974 7.88 11.663 8.182 C 11.577 8.264 11.502 8.355 11.438 8.455 C 11.399 8.517 11.395 8.601 11.366 8.71 C 11.496 8.728 11.594 8.751 11.693 8.752 C 11.803 8.753 11.914 8.734 12.024 8.725 C 12.269 8.706 12.381 8.825 12.341 9.071 C 12.309 9.289 12.166 9.473 11.963 9.558 C 11.729 9.667 11.491 9.77 11.255 9.874 C 11.024 9.975 10.817 10.125 10.649 10.314 C 10.589 10.381 10.556 10.47 10.492 10.58 C 10.614 10.615 10.695 10.655 10.776 10.66 C 11.026 10.67 11.28 10.682 11.53 10.665 C 11.673 10.655 11.812 10.585 11.956 10.552 C 12.076 10.525 12.204 10.489 12.322 10.504 C 12.595 10.537 12.698 10.772 12.531 10.988 C 12.42 11.136 12.282 11.261 12.124 11.356 C 11.656 11.624 11.168 11.858 10.7 12.126 C 10.09 12.475 9.498 12.855 8.973 13.328 C 8.867 13.421 8.772 13.524 8.687 13.636 C 8.631 13.713 8.594 13.803 8.579 13.897 C 8.549 14.102 8.706 14.22 8.899 14.154 C 8.927 14.144 8.954 14.132 8.98 14.118 C 9.234 13.988 9.502 13.96 9.78 14.006 C 10.241 14.081 10.678 13.966 11.107 13.825 C 11.247 13.778 11.359 13.649 11.484 13.558 C 11.564 13.499 11.645 13.443 11.732 13.381 C 11.918 13.585 11.917 13.799 11.848 14.005 C 11.794 14.166 11.714 14.317 11.612 14.453 C 11.372 14.774 11.096 15.065 10.755 15.283 C 10.43 15.488 10.109 15.703 9.77 15.884 C 9.065 16.26 8.661 16.844 8.517 17.617 C 8.46 17.93 8.411 18.244 8.372 18.559 C 8.354 18.702 8.342 18.857 8.48 18.965 C 8.628 18.963 8.716 18.863 8.788 18.765 C 9.141 18.289 9.625 18.111 10.2 18.115 C 10.652 18.117 11.081 18.034 11.453 17.746 C 11.543 17.676 11.658 17.642 11.744 17.601 C 11.886 17.677 11.868 17.776 11.85 17.87 C 11.79 18.181 11.632 18.44 11.387 18.63 C 11.213 18.765 11.015 18.87 10.82 18.973 C 10.63 19.074 10.433 19.159 10.24 19.25 C 9.997 19.363 9.824 19.556 9.652 19.75 C 9.57 19.843 9.572 19.865 9.597 20.004 C 10.329 20.181 11.032 20.163 11.669 19.698 C 11.699 19.676 11.731 19.657 11.764 19.641 C 11.958 19.541 12.111 19.622 12.104 19.844 C 12.099 19.994 12.066 20.154 12.006 20.291 C 11.908 20.508 11.755 20.691 11.559 20.833 C 11.063 21.196 10.55 21.531 10.004 21.815 C 9.51 22.071 9.084 22.411 8.846 22.936 C 8.804 23.028 8.746 23.123 8.832 23.25 C 8.899 23.237 8.985 23.24 9.051 23.205 C 9.373 23.035 9.707 23.057 10.047 23.123 C 10.207 23.154 10.365 23.201 10.526 23.215 C 10.713 23.231 10.903 23.218 11.118 23.218 L 11.117 23.222 Z\" fill=\"rgb(154,0,0)\"></path><path d=\"M 19.392 27.142 C 19.299 26.702 19.142 26.358 18.842 26.097 C 18.698 25.97 18.538 25.862 18.367 25.775 C 17.983 25.585 17.588 25.417 17.199 25.24 C 17.091 25.191 16.977 25.153 16.876 25.094 C 16.539 24.898 16.42 24.386 16.642 24.016 C 16.7 24.046 16.772 24.066 16.815 24.112 C 17.147 24.464 17.555 24.616 18.033 24.585 C 18.323 24.567 18.586 24.625 18.819 24.82 C 18.908 24.894 19.04 24.916 19.201 24.982 C 19.206 24.85 19.227 24.765 19.209 24.689 C 19.009 23.797 18.578 23.065 17.733 22.64 C 17.194 22.361 16.678 22.041 16.188 21.683 C 15.97 21.529 15.79 21.325 15.665 21.089 C 15.617 20.999 15.568 20.905 15.625 20.77 C 15.69 20.776 15.765 20.768 15.828 20.79 C 15.976 20.838 16.121 20.892 16.262 20.956 C 16.604 21.112 16.956 21.155 17.322 21.068 C 17.577 21.007 17.832 20.975 18.083 21.093 C 18.109 21.105 18.14 21.107 18.17 21.109 C 18.374 21.122 18.466 20.992 18.367 20.816 C 18.31 20.721 18.24 20.635 18.157 20.561 C 17.831 20.251 17.447 20.034 17.039 19.852 C 16.871 19.777 16.705 19.695 16.542 19.608 C 16.2 19.425 15.98 19.135 15.838 18.78 C 15.794 18.67 15.751 18.555 15.856 18.45 C 15.963 18.345 16.089 18.288 16.238 18.325 C 16.332 18.347 16.42 18.388 16.51 18.42 C 17.045 18.612 17.58 18.803 18.113 19 C 18.231 19.043 18.34 19.108 18.455 19.155 C 18.605 19.215 18.754 19.288 18.91 19.321 C 19.154 19.371 19.282 19.249 19.252 19.001 C 19.196 18.545 19.108 18.095 18.904 17.677 C 18.883 17.632 18.866 17.584 18.843 17.525 C 18.915 17.522 18.973 17.516 19.031 17.516 C 19.787 17.516 20.541 17.518 21.296 17.513 C 21.413 17.509 21.527 17.556 21.606 17.643 C 22.898 18.936 24.192 20.227 25.489 21.515 C 25.585 21.61 25.629 21.705 25.629 21.844 C 25.625 26.003 25.625 30.162 25.629 34.321 C 25.634 34.446 25.583 34.567 25.489 34.65 C 24.462 35.632 23.439 36.616 22.415 37.601 C 21.903 38.094 21.39 38.584 20.881 39.08 C 20.803 39.156 20.727 39.204 20.611 39.2 C 20.183 39.192 19.751 39.206 19.324 39.185 C 18.683 39.155 18.096 38.937 17.557 38.594 C 17.452 38.525 17.358 38.441 17.277 38.344 C 17.007 38.019 16.677 37.748 16.306 37.546 C 15.413 37.075 15.018 36.296 14.942 35.33 C 14.916 35.007 14.925 34.679 14.925 34.353 C 14.923 33.451 14.925 32.548 14.925 31.645 C 14.925 31.507 14.894 31.341 15.053 31.274 C 15.193 31.215 15.304 31.327 15.406 31.407 C 15.709 31.648 16.052 31.76 16.438 31.738 C 16.63 31.728 16.824 31.733 17.014 31.707 C 17.363 31.659 17.7 31.704 18.01 31.85 C 18.377 32.023 18.73 32.226 19.08 32.43 C 19.361 32.593 19.625 32.785 19.904 32.954 C 20.022 33.025 20.156 33.08 20.29 33.115 C 20.458 33.161 20.571 33.082 20.582 32.908 C 20.592 32.755 20.597 32.59 20.554 32.446 C 20.411 31.966 20.259 31.486 20.084 31.015 C 19.975 30.724 19.745 30.513 19.496 30.335 C 19.334 30.219 19.157 30.124 18.991 30.015 C 18.906 29.958 18.814 29.902 18.746 29.829 C 18.538 29.602 18.547 29.392 18.754 29.161 C 18.836 29.068 18.917 28.968 18.974 28.859 C 19.117 28.589 19.044 28.357 18.757 28.243 C 18.55 28.165 18.334 28.111 18.114 28.082 C 17.639 28.012 17.213 27.842 16.876 27.494 C 16.766 27.375 16.671 27.243 16.592 27.101 C 16.503 26.95 16.545 26.799 16.692 26.697 C 16.878 26.568 17.078 26.545 17.277 26.661 C 17.804 26.966 18.398 27.136 19.007 27.157 C 19.121 27.164 19.237 27.149 19.392 27.142 Z M 2.109 28.983 L 9.077 28.983 L 9.092 29.015 C 9.011 29.058 8.932 29.104 8.849 29.143 C 8.446 29.336 8.069 29.567 7.779 29.915 C 7.505 30.245 7.102 31.437 7.119 31.866 C 7.121 31.911 7.121 31.956 7.133 31.999 C 7.165 32.114 7.208 32.226 7.338 32.268 C 7.473 32.31 7.561 32.231 7.646 32.143 C 8.274 31.493 9.05 31.089 9.903 30.833 C 10.153 30.758 10.43 30.783 10.693 30.746 C 10.913 30.717 11.133 30.678 11.346 30.623 C 11.609 30.556 11.831 30.413 12.022 30.216 C 12.14 30.094 12.27 29.981 12.402 29.877 C 12.488 29.811 12.583 29.745 12.732 29.787 C 12.74 29.851 12.758 29.921 12.758 29.99 C 12.756 31.352 12.758 32.714 12.744 34.074 C 12.748 34.504 12.697 34.932 12.591 35.348 C 12.511 35.64 12.382 35.898 12.141 36.095 C 11.97 36.235 11.813 36.392 11.648 36.542 C 11.301 36.854 11.004 37.217 10.767 37.619 C 10.555 37.976 10.313 38.313 9.998 38.59 C 9.577 38.972 9.029 39.184 8.461 39.186 C 8.009 39.192 7.558 39.184 7.107 39.189 C 7.004 39.193 6.904 39.152 6.834 39.077 C 5.867 38.14 4.896 37.207 3.926 36.274 C 3.384 35.749 2.839 35.228 2.29 34.71 C 2.155 34.597 2.079 34.427 2.086 34.251 C 2.098 32.564 2.096 30.877 2.101 29.189 C 2.101 29.124 2.107 29.059 2.11 28.984 L 2.109 28.984 Z M 61.593 20.756 C 58.123 20.756 57.847 18.112 57.847 17.334 C 57.847 16.41 58.057 14.69 60.312 13.864 C 62.566 13.036 63.052 12.939 64.658 12.436 L 64.658 12.047 C 64.658 11.269 64.658 11.123 64.48 10.62 C 64.204 9.728 63.328 9.128 62.112 9.128 C 60.96 9.128 59.972 9.777 59.517 10.733 L 58.868 10.344 C 59.258 8.917 60.733 7.49 63.263 7.49 C 65.015 7.49 66.231 7.993 66.944 9.095 C 67.48 9.987 67.544 11.187 67.544 12.404 C 67.544 13.507 67.48 14.723 67.48 15.712 C 67.48 16.361 67.415 16.993 67.415 17.35 C 67.415 18.242 67.593 18.956 68.307 18.956 C 68.631 18.956 68.696 18.842 68.956 18.68 L 69.345 19.183 C 68.696 20.075 67.918 20.788 66.636 20.788 C 65.647 20.788 64.934 20.285 64.642 19.475 C 64.236 20.042 63.182 20.755 61.592 20.755 Z M 64.658 14.026 C 62.955 14.528 62.338 14.804 61.852 15.063 C 61.074 15.453 60.749 16.166 60.749 17.091 C 60.749 17.804 61.025 18.956 62.679 18.956 C 63.214 18.956 63.993 18.842 64.706 18.356 L 64.706 14.009 L 64.658 14.009 Z M 36.002 20.075 C 36.002 18.793 36.002 17.707 35.888 16.393 L 36.667 16.393 C 36.667 17.22 36.877 17.82 37.267 18.21 C 37.802 18.81 39.083 19.199 40.235 19.199 C 42.651 19.199 43.802 18.274 43.802 16.279 C 43.802 14.577 42.764 13.863 41.337 12.858 L 41.127 12.68 L 39.586 11.642 C 37.446 10.214 36.342 9.112 36.342 6.857 C 36.342 5.755 36.78 2.122 42.116 2.122 C 43.494 2.122 45.246 2.3 46.3 2.446 C 46.3 2.625 46.235 3.436 46.235 4.149 C 46.235 4.976 46.235 5.187 46.3 6.176 L 45.651 6.176 C 45.651 5.284 45.375 4.749 45.002 4.36 C 44.5 3.857 43.364 3.582 42.148 3.582 C 39.294 3.582 38.97 5.009 38.97 6.112 C 38.97 7.603 39.748 8.139 41.435 9.242 L 43.365 10.522 C 45.002 11.625 46.543 12.663 46.543 15.42 C 46.543 20.042 42.197 20.529 40.38 20.529 C 38.71 20.756 37.315 20.512 36.002 20.075 Z M 70.545 8.317 C 71.194 8.382 72.183 8.317 73.14 8.139 C 73.967 7.96 74.242 7.863 74.842 7.603 L 75.118 7.782 L 75.118 8.772 C 75.767 8.268 77.048 7.555 78.864 7.555 C 81.184 7.555 82.675 8.658 83.097 10.587 C 83.211 11.09 83.275 12.225 83.275 12.907 L 83.275 16.653 C 83.275 18.745 83.389 19.361 83.778 19.734 C 83.989 19.912 84.427 20.124 85.059 20.124 L 85.059 20.724 C 84.001 20.653 82.941 20.615 81.881 20.61 C 80.82 20.615 79.76 20.653 78.702 20.723 L 78.702 20.123 C 79.351 20.058 79.74 19.848 79.983 19.685 C 80.373 19.296 80.421 18.583 80.486 16.977 C 80.486 16.474 80.551 15.485 80.551 14.772 C 80.551 13.847 80.551 12.842 80.437 11.852 C 80.259 10.214 79.399 9.436 77.729 9.436 C 76.578 9.436 75.864 9.712 75.313 9.971 L 75.313 16.685 C 75.313 18.777 75.426 19.393 75.816 19.766 C 76.026 19.945 76.529 20.156 77.032 20.156 L 77.032 20.756 C 75.99 20.69 74.946 20.652 73.902 20.642 C 72.199 20.642 71.648 20.707 70.658 20.756 L 70.658 20.123 C 71.194 20.123 71.761 19.913 72.037 19.588 C 72.426 19.15 72.475 18.048 72.475 15.907 L 72.475 12.096 C 72.475 10.49 72.41 9.841 72.199 9.501 C 72.021 9.225 71.599 8.998 70.707 8.998 L 70.707 8.285 L 70.593 8.285 L 70.593 8.317 Z M 86.455 20.042 C 86.989 20.042 87.557 19.864 87.832 19.507 C 88.222 19.069 88.27 17.967 88.27 15.826 L 88.27 9.42 L 86.632 9.42 L 86.632 8.706 C 87.346 8.431 87.946 8.106 88.27 7.814 C 88.27 6.663 88.335 5.219 88.481 4.392 C 88.984 1.75 90.687 0.435 93.59 0.435 C 94.87 0.435 96.055 0.873 96.833 1.473 L 96.898 1.749 L 95.617 3.5 L 95.293 3.5 C 94.855 2.463 94.19 1.862 93.038 1.862 C 92.649 1.862 92.114 1.976 91.758 2.3 C 91.222 2.836 91.108 3.679 91.108 5.333 L 91.108 7.798 L 93.963 7.798 L 93.963 9.404 L 91.108 9.404 L 91.108 16.507 C 91.108 18.21 91.173 19.037 91.384 19.361 C 91.709 19.896 92.876 19.961 93.411 19.961 L 93.411 20.61 C 92.256 20.537 91.099 20.499 89.941 20.496 C 88.335 20.496 87.297 20.561 86.471 20.61 L 86.454 20.042 Z M 101.196 20.853 C 97.304 20.853 94.984 18.437 94.984 14.366 C 94.984 11.187 96.687 7.49 101.471 7.49 C 105.364 7.49 107.683 9.906 107.683 13.977 C 107.683 17.155 105.964 20.853 101.196 20.853 Z M 101.358 8.966 C 100.579 8.966 99.979 9.176 99.542 9.566 C 98.504 10.458 98.001 11.982 98.001 14.236 C 98.001 15.128 98.179 19.41 101.309 19.41 C 102.088 19.41 102.688 19.199 103.126 18.81 C 104.163 17.918 104.666 16.393 104.666 14.139 C 104.65 13.263 104.504 8.966 101.358 8.966 Z M 108.996 8.252 C 109.888 8.317 110.813 8.187 111.802 8.042 C 112.58 7.928 113.083 7.766 113.343 7.603 L 113.553 7.717 L 113.553 8.82 C 114.153 8.22 115.159 7.603 116.521 7.603 C 117.51 7.603 118.159 7.879 118.775 8.382 L 118.775 8.772 L 117.673 10.766 L 117.137 10.766 C 116.813 10.166 116.148 9.614 114.997 9.614 C 114.462 9.614 114.007 9.728 113.618 10.004 L 113.618 16.555 C 113.618 18.258 113.683 19.021 113.894 19.361 C 114.218 19.896 115.321 19.961 115.921 19.896 L 115.921 20.61 C 114.766 20.537 113.609 20.499 112.451 20.496 C 111.234 20.496 109.986 20.496 108.98 20.61 L 108.98 19.961 C 109.694 19.896 110.083 19.751 110.359 19.426 C 110.748 18.988 110.796 17.934 110.796 15.745 L 110.796 12.177 C 110.796 10.571 110.796 9.922 110.521 9.582 C 110.31 9.306 109.872 9.144 109.029 9.144 L 109.029 8.317 Z M 126.998 1.214 C 127.776 1.214 128.749 1.035 130.03 0.824 C 130.744 0.711 131.182 0.549 131.409 0.5 L 131.62 0.614 C 131.506 1.652 131.506 4.036 131.506 5.722 L 131.506 16.166 C 131.506 17.706 131.506 18.696 131.717 19.021 C 131.928 19.296 132.366 19.523 133.209 19.523 L 133.209 20.172 C 132.382 20.172 131.457 20.285 130.468 20.448 C 129.819 20.561 129.317 20.658 129.041 20.772 L 128.717 20.658 L 128.717 19.556 C 127.696 20.347 126.44 20.775 125.149 20.772 C 121.63 20.772 119.375 18.356 119.375 14.561 C 119.375 13.279 119.586 12.144 120.024 11.091 C 121.127 8.771 123.332 7.457 126.122 7.457 C 127.16 7.457 128.052 7.571 128.587 7.668 L 128.587 4.96 C 128.587 3.354 128.587 2.544 128.311 2.154 C 128.133 1.879 127.873 1.765 126.933 1.717 L 126.933 1.197 L 126.998 1.197 Z M 126.543 18.972 C 127.435 18.972 128.035 18.858 128.636 18.469 L 128.636 9.906 C 128.425 9.696 127.646 9.014 126.106 9.014 C 123.641 9.014 122.424 10.717 122.424 14.253 C 122.376 15.728 122.813 18.972 126.543 18.972 Z M 56.582 19.361 C 56.192 19.864 55.203 20.853 53.112 20.853 C 51.116 20.853 50.03 20.14 49.543 18.534 C 49.333 17.934 49.333 16.669 49.333 15.939 C 49.333 13.912 49.333 12.258 49.397 10.328 L 49.397 9.436 L 47.678 9.436 L 47.678 8.933 C 48.327 8.658 48.83 8.398 49.284 8.041 C 50.274 7.263 50.922 6.338 51.651 4.96 L 52.187 4.96 L 52.187 7.814 L 56.533 7.814 L 56.533 9.42 L 52.187 9.42 L 52.187 16.134 C 52.187 18.161 52.576 19.264 54.441 19.264 C 55.333 19.264 55.933 18.988 56.257 18.761 Z M 117.543 31.362 C 117.332 31.362 117.04 31.427 116.894 31.572 C 116.716 31.686 116.716 31.848 116.716 31.962 C 116.716 32.172 116.781 32.352 116.927 32.789 L 118.143 35.968 C 118.321 36.47 118.467 36.86 118.532 37.119 L 120.024 32.773 C 120.202 32.27 120.235 32.173 120.235 31.946 C 120.235 31.832 120.17 31.735 120.057 31.621 C 119.866 31.489 119.64 31.416 119.408 31.411 L 119.408 30.908 C 119.586 30.908 119.943 30.908 120.121 30.973 C 120.3 30.973 120.624 31.038 120.9 31.038 C 121.435 31.038 122.213 30.973 122.538 30.973 L 122.538 31.475 C 122.327 31.54 121.824 31.411 121.386 32.692 L 118.256 41.044 C 117.819 42.26 117.218 43.752 115.078 43.752 C 114.186 43.752 113.586 43.542 113.083 43.103 L 113.083 42.893 L 113.861 41.968 L 114.072 41.968 C 114.283 42.471 114.721 42.682 115.353 42.682 C 116.343 42.682 116.781 41.79 117.446 40.038 L 117.624 39.535 L 114.997 32.675 C 114.997 32.611 114.932 32.497 114.883 32.4 C 114.818 32.221 114.672 31.897 114.672 31.897 C 114.494 31.573 114.234 31.459 113.894 31.459 L 113.894 30.957 C 114.397 31.021 115.272 31.021 115.71 31.021 C 115.986 31.021 116.424 31.021 116.862 30.957 C 117.073 30.957 117.462 30.892 117.64 30.892 L 117.64 31.33 L 117.575 31.33 L 117.575 31.362 Z M 88.416 31.248 C 88.951 31.313 89.568 31.184 90.168 31.07 C 90.671 30.957 90.946 30.892 91.158 30.794 L 91.336 30.859 L 91.336 31.573 C 91.824 31.069 92.498 30.787 93.2 30.794 C 93.85 30.794 94.238 30.973 94.628 31.297 L 94.628 31.573 L 93.978 32.853 L 93.655 32.853 C 93.444 32.465 93.055 32.14 92.276 32.14 C 91.952 32.14 91.676 32.254 91.384 32.416 L 91.384 36.552 C 91.384 37.654 91.449 38.157 91.562 38.368 C 91.773 38.692 92.454 38.757 92.844 38.757 L 92.844 39.195 C 92.309 39.13 91.304 39.13 90.638 39.13 C 89.86 39.13 89.033 39.13 88.433 39.244 L 88.433 38.806 C 88.871 38.806 89.146 38.627 89.325 38.481 C 89.6 38.206 89.6 37.557 89.6 36.114 L 89.6 33.794 C 89.6 32.805 89.6 32.367 89.422 32.157 C 89.308 31.978 88.984 31.881 88.497 31.881 L 88.497 31.281 L 88.417 31.281 L 88.417 31.248 Z M 51.797 39.228 C 49.478 39.228 48.117 38.514 47.613 36.973 C 47.338 36.195 47.338 35.222 47.338 34.443 L 47.338 30.048 C 47.338 28.735 47.273 28.508 47.013 28.297 C 46.9 28.183 46.624 28.086 46.235 28.021 L 46.235 27.583 C 46.77 27.648 47.727 27.697 48.262 27.697 C 49.187 27.697 49.754 27.697 50.354 27.583 L 50.354 28.086 C 49.964 28.086 49.705 28.199 49.462 28.41 C 49.186 28.686 49.186 29.189 49.186 30.616 L 49.186 34.508 C 49.186 36.828 49.397 38.319 51.992 38.319 C 54.636 38.319 54.798 36.779 54.798 34.427 L 54.798 30.146 C 54.798 28.832 54.733 28.605 54.473 28.394 C 54.295 28.281 54.035 28.184 53.695 28.118 L 53.695 27.681 C 54.198 27.681 54.846 27.745 55.511 27.745 C 56.111 27.745 56.728 27.745 57.441 27.632 L 57.441 28.135 C 57.051 28.135 56.792 28.248 56.549 28.459 C 56.273 28.735 56.273 29.237 56.273 30.665 L 56.273 33.973 C 56.273 35.011 56.273 36.179 55.949 37.103 C 55.43 38.513 54.1 39.227 51.798 39.227 Z M 67.48 38.725 C 67.918 38.66 68.193 38.611 68.404 38.4 C 68.68 38.125 68.68 37.476 68.68 36.033 L 68.68 33.713 C 68.68 32.724 68.68 32.221 68.501 32.011 C 68.388 31.832 68.177 31.735 67.577 31.686 L 67.577 31.184 C 67.901 31.248 68.793 31.119 69.442 31.005 C 69.766 30.94 70.091 30.827 70.334 30.729 L 70.512 30.908 C 70.447 31.443 70.447 32.611 70.447 34.151 L 70.447 36.519 C 70.447 37.622 70.512 38.125 70.626 38.335 C 70.804 38.546 71.129 38.725 71.616 38.725 L 71.616 39.114 C 71.177 39.049 70.334 39.049 69.62 39.049 C 68.905 39.052 68.191 39.09 67.48 39.163 Z M 69.507 29.318 C 68.858 29.318 68.469 28.929 68.469 28.329 C 68.469 27.729 68.907 27.291 69.572 27.291 C 70.22 27.291 70.61 27.681 70.61 28.281 C 70.593 28.929 70.156 29.318 69.507 29.318 Z M 102.25 38.725 C 102.688 38.66 102.963 38.611 103.174 38.4 C 103.45 38.125 103.45 37.476 103.45 36.033 L 103.45 33.713 C 103.45 32.724 103.45 32.221 103.272 32.011 C 103.158 31.832 102.947 31.735 102.347 31.686 L 102.347 31.184 C 102.671 31.248 103.563 31.119 104.212 31.005 C 104.536 30.94 104.926 30.827 105.104 30.729 L 105.282 30.908 C 105.218 31.443 105.218 32.611 105.218 34.151 L 105.218 36.519 C 105.218 37.622 105.282 38.125 105.396 38.335 C 105.574 38.546 105.899 38.725 106.385 38.725 L 106.385 39.114 C 105.883 39.049 105.072 39.049 104.358 39.049 C 103.531 39.049 102.655 39.114 102.217 39.163 L 102.217 38.725 Z M 104.277 29.318 C 103.628 29.318 103.239 28.929 103.239 28.329 C 103.239 27.729 103.677 27.291 104.342 27.291 C 104.991 27.291 105.38 27.681 105.38 28.281 C 105.38 28.929 104.926 29.318 104.277 29.318 Z M 95.585 38.838 C 95.585 38.011 95.52 37.135 95.471 36.698 L 96.006 36.698 C 96.006 37.135 96.12 37.525 96.331 37.735 C 96.655 38.125 97.044 38.27 97.758 38.27 L 97.871 38.27 C 98.763 38.27 99.25 37.881 99.25 37.12 C 99.25 36.519 98.86 36.227 98.212 35.838 L 97.06 35.124 C 96.46 34.735 95.747 34.2 95.747 33.032 C 95.747 32.108 96.136 31.394 96.898 31.005 C 97.401 30.729 98.179 30.729 98.536 30.729 C 99.185 30.729 100.142 30.843 100.677 30.94 C 100.612 31.151 100.612 31.719 100.612 31.93 C 100.612 32.108 100.612 32.854 100.677 33.032 L 100.142 33.032 C 100.142 32.708 100.028 32.384 99.817 32.108 C 99.607 31.832 99.104 31.67 98.504 31.67 C 97.676 31.67 97.222 31.994 97.222 32.708 C 97.222 33.243 97.66 33.535 98.05 33.811 L 98.114 33.811 L 99.217 34.459 C 99.931 34.897 100.855 35.449 100.855 36.714 C 100.855 38.854 98.86 39.179 97.725 39.179 C 97.077 39.162 96.363 39.114 95.585 38.839 Z M 112.856 38.303 C 112.58 38.579 111.964 39.227 110.65 39.227 C 109.369 39.227 108.656 38.789 108.396 37.735 C 108.283 37.346 108.283 36.519 108.283 36.097 L 108.283 31.994 L 107.18 31.994 L 107.18 31.67 C 107.544 31.528 107.891 31.349 108.218 31.135 C 108.818 30.632 109.256 30.032 109.758 29.14 L 110.148 29.14 L 110.148 30.957 L 112.888 30.957 L 112.888 31.946 L 110.148 31.946 L 110.148 36.227 C 110.148 37.508 110.359 38.254 111.575 38.254 C 112.11 38.254 112.499 38.076 112.726 37.93 Z M 75.653 30.924 C 75.475 30.924 75.118 30.924 74.875 30.989 C 74.437 30.989 73.983 31.054 73.658 31.054 C 73.058 31.054 72.167 30.989 71.908 30.989 L 71.908 31.492 C 72.021 31.492 72.442 31.427 72.734 31.994 C 72.848 32.205 72.912 32.384 72.945 32.497 C 73.01 32.611 73.059 32.708 73.059 32.773 L 75.702 39.373 L 76.529 39.195 L 79.449 32.708 C 79.449 32.643 79.513 32.594 79.562 32.498 C 79.626 32.432 79.626 32.318 79.837 31.994 C 80.007 31.694 80.32 31.504 80.665 31.492 L 80.665 30.989 C 80.34 30.989 79.627 31.054 79.059 31.054 C 78.783 31.054 78.524 31.054 78.232 30.989 C 78.021 30.989 77.697 30.924 77.453 30.924 L 77.453 31.362 C 77.729 31.362 77.989 31.475 78.103 31.572 C 78.167 31.638 78.28 31.784 78.28 31.897 C 78.28 32.075 78.216 32.221 78.07 32.724 L 76.464 36.616 C 76.399 36.406 76.286 36.081 76.14 35.627 L 75.037 32.708 C 74.859 32.27 74.827 32.108 74.827 31.881 C 74.827 31.767 74.827 31.67 74.94 31.605 C 75.118 31.427 75.378 31.329 75.653 31.329 L 75.653 30.892 Z M 57.684 31.248 C 58.122 31.313 58.722 31.248 59.322 31.135 C 59.698 31.057 60.067 30.949 60.425 30.81 L 60.603 30.924 L 60.603 31.573 C 60.993 31.248 61.885 30.794 62.971 30.794 C 64.463 30.794 65.388 31.508 65.68 32.724 C 65.744 33.049 65.793 33.762 65.793 34.216 L 65.793 36.584 C 65.793 37.897 65.858 38.287 66.117 38.579 C 66.231 38.692 66.555 38.789 66.896 38.789 L 66.896 39.179 C 66.361 39.179 65.404 39.114 64.869 39.114 C 64.09 39.114 63.263 39.179 62.841 39.227 L 62.841 38.838 C 63.231 38.773 63.491 38.66 63.669 38.562 C 63.879 38.352 63.944 37.849 63.993 36.86 L 63.993 35.432 C 63.993 34.832 63.993 34.152 63.928 33.568 C 63.815 32.53 63.279 32.027 62.225 32.027 C 61.512 32.027 61.009 32.205 60.685 32.351 L 60.685 36.665 C 60.685 37.979 60.749 38.368 61.009 38.66 C 61.123 38.773 61.447 38.87 61.787 38.87 L 61.787 39.26 C 61.074 39.081 60.247 39.081 59.695 39.081 C 58.593 39.081 58.268 39.081 57.668 39.195 L 57.668 38.805 C 57.993 38.805 58.382 38.692 58.56 38.481 C 58.771 38.206 58.836 37.492 58.836 36.114 L 58.836 33.794 C 58.836 32.805 58.836 32.367 58.657 32.157 C 58.544 31.978 58.268 31.832 57.733 31.881 L 57.733 31.265 L 57.684 31.265 Z M 84.411 39.228 C 81.946 39.228 80.6 37.8 80.6 35.205 C 80.6 34.768 80.713 30.745 84.443 30.745 C 85.546 30.745 86.535 31.184 86.973 31.962 C 87.476 32.74 87.508 33.502 87.508 34.168 L 87.508 34.67 L 82.4 34.67 C 82.4 35.108 82.465 35.449 82.513 35.708 C 82.789 37.314 83.665 38.076 85.222 38.076 C 86.113 38.076 86.649 37.898 87.152 37.573 L 87.362 37.963 C 86.843 38.693 85.741 39.227 84.411 39.227 Z M 82.432 33.73 L 85.611 33.73 C 85.611 32.74 85.432 31.638 84.005 31.638 C 82.756 31.702 82.497 32.886 82.432 33.73 Z\" fill=\"rgb(154,0,0)\"></path></g></svg>',svgContentId:12683577163,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-9btdm4\",\"data-framer-name\":\"California_Institute_of_Technology\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 132 32\"><g id=\"ss12796219580_1\"><path d=\"M 0 0 L 132 0 L 132 32 L 0 32 Z\" fill=\"transparent\"></path><path d=\"M 112.853 31.138 L 117.98 31.138 L 117.98 20.21 C 117.98 17.604 119.157 14.326 123.024 14.326 C 125.63 14.326 126.806 15.586 126.806 18.529 L 126.806 31.137 L 131.933 31.137 L 131.933 17.06 C 131.933 10.881 127.772 9.368 124.159 9.368 C 121.258 9.368 119.198 10.502 118.064 11.974 L 117.98 11.974 L 117.98 0.374 L 112.853 0.374 Z M 111.256 15.42 C 109.954 12.226 107.432 9.368 102.262 9.368 C 95.37 9.368 91.378 14.158 91.378 20.504 C 91.378 26.851 95.37 31.642 101.883 31.642 C 107.642 31.642 110.079 28.239 111.508 25.127 L 107.137 22.817 C 106.338 24.75 105.036 26.935 101.969 26.935 C 98.396 26.935 96.756 23.826 96.756 20.505 C 96.756 17.185 98.606 14.075 102.262 14.075 C 104.279 14.075 106.086 15.377 106.76 17.48 Z M 73.95 17.773 C 74.497 15.504 76.472 13.571 79.456 13.571 C 82.902 13.571 84.288 16.638 84.288 17.773 Z M 89.668 21.723 C 89.668 14.116 86.558 9.368 79.456 9.368 C 72.563 9.368 68.57 14.158 68.57 20.504 C 68.57 26.851 72.563 31.642 79.456 31.642 C 85.254 31.642 88.323 28.869 89.92 26.431 L 85.592 23.911 C 85.087 24.623 83.49 26.935 79.456 26.935 C 76.682 26.935 74.034 24.877 73.95 21.724 L 89.668 21.724 Z M 58.597 5.242 L 58.597 26.264 C 58.597 29.501 60.026 31.391 64.227 31.391 C 65.826 31.391 67.085 31.139 68.305 30.887 L 68.305 26.684 C 67.548 26.768 66.75 26.936 66.035 26.936 C 64.06 26.936 63.724 26.012 63.724 24.331 L 63.724 13.571 L 68.305 13.571 L 68.305 9.871 L 63.724 9.871 L 63.724 0.109 L 58.597 5.24 Z M 50.006 31.139 L 55.133 31.139 L 55.133 0.374 L 50.006 0.374 L 50.006 31.138 Z M 41.208 23.533 C 41.208 26.264 38.141 27.441 35.744 27.441 C 33.895 27.441 32.424 26.389 32.424 24.792 C 32.424 22.775 34.022 22.229 35.954 21.852 L 38.77 21.262 C 39.695 21.094 40.536 20.842 41.208 20.505 Z M 46.335 16.346 C 46.335 10.294 41.755 9.369 37.173 9.369 C 32.509 9.369 28.095 11.302 28.095 16.303 L 33.223 16.514 C 33.223 14.203 34.19 13.32 37.173 13.32 C 39.4 13.32 41.208 13.908 41.208 16.009 L 41.208 16.639 C 39.906 17.102 37.508 17.522 35.66 17.9 L 33.516 18.32 C 30.366 18.95 27.045 20.801 27.045 24.962 C 27.045 29.079 30.238 31.642 34.273 31.642 C 36.921 31.642 39.233 30.803 41.208 29.206 C 41.208 29.753 41.376 30.635 41.712 31.139 L 47.133 31.139 C 46.84 30.676 46.335 29.752 46.335 27.566 Z M 26.272 9.872 C 24.842 3.61 20.262 0.458 14.252 0.458 C 5.3 0.458 0.065 7.728 0.065 16.176 C 0.065 24.623 4.67 31.894 14.252 31.894 C 20.22 31.894 24.212 28.994 26.608 22.985 L 21.481 20.631 C 20.388 24.119 18.161 26.683 14.251 26.683 C 8.284 26.683 5.804 21.388 5.804 16.176 C 5.804 10.965 8.284 5.67 14.252 5.67 C 17.656 5.67 20.388 7.939 20.85 11.26 Z\" fill=\"rgb(245,132,39)\"></path></g></svg>',svgContentId:12796219580,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-lghtx8\",\"data-framer-name\":\"Yale_University\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 74 32\"><g id=\"ss11191456754_1\"><path d=\"M 0 0 L 73.567 0 L 73.567 32 L 0 32 Z\" fill=\"transparent\"></path><path d=\"M 24.49 6.747 L 17.004 19.419 L 17.004 27.943 C 17.866 29.995 20.044 30.268 22.131 30.359 L 22.131 31.544 L 7.477 31.544 L 7.477 30.36 C 9.564 30.269 12.105 29.95 12.785 28.583 L 12.785 19.784 L 5.163 6.838 C 3.848 4.649 2.578 3.92 0.037 3.738 L 0.037 2.553 L 12.785 2.553 L 12.785 3.738 C 10.381 3.874 9.61 4.331 8.929 4.878 L 16.006 17.185 L 22.947 4.923 C 22.221 4.376 21.269 3.874 18.865 3.738 L 18.865 2.553 L 29.752 2.553 L 29.752 3.738 C 27.302 3.829 25.76 4.649 24.49 6.747 Z M 39.37 31.955 C 36.92 31.955 35.74 30.268 35.65 29.083 C 34.107 30.723 32.111 31.955 30.206 31.955 C 27.756 31.955 25.669 30.45 25.669 27.852 C 25.669 26.576 25.987 25.254 26.622 24.206 L 35.65 20.923 L 35.65 17.55 C 35.65 15.499 34.697 13.539 32.655 13.539 C 31.431 13.539 30.251 15.043 30.16 17.368 L 26.077 18.051 L 26.077 17.596 C 27.438 13.493 31.93 11.898 34.107 11.898 C 38.235 11.898 39.732 14.085 39.687 17.458 L 39.551 27.031 C 39.506 28.901 40.504 29.356 41.411 29.356 C 42.137 29.356 42.863 28.9 43.725 28.034 L 43.725 29.356 C 42.727 30.542 40.958 31.955 39.37 31.955 Z M 30.297 24.525 C 30.115 25.254 29.979 25.892 29.979 26.895 C 29.979 28.262 30.75 29.63 32.247 29.63 C 33.608 29.63 34.379 29.174 35.604 28.217 L 35.65 22.062 C 34.47 22.609 31.567 23.886 30.297 24.524 Z M 44.133 31.545 L 44.133 30.495 C 46.175 30.359 46.764 29.903 47.128 29.128 L 47.128 5.515 C 47.128 3.965 46.901 3.328 43.77 3.054 L 43.77 2.142 L 52.073 0.045 L 52.345 0.821 L 51.029 2.461 L 51.029 29.128 C 51.483 30.04 52.345 30.359 54.205 30.496 L 54.205 31.545 Z M 65.093 31.909 C 60.329 31.909 56.654 28.125 56.654 22.838 C 56.654 16.365 60.601 11.943 66.181 11.943 C 70.673 11.943 73.168 14.496 73.168 18.553 L 73.168 19.373 L 60.918 19.283 C 60.828 19.783 60.782 20.604 60.782 21.607 C 60.782 26.257 63.686 29.311 67.542 29.311 C 69.856 29.311 71.036 28.49 72.85 26.941 L 73.53 27.988 C 70.945 30.359 68.813 31.909 65.092 31.909 Z M 65.501 13.356 C 63.232 13.356 61.645 15.18 61.101 18.051 L 69.085 17.961 C 69.085 15.544 67.588 13.356 65.501 13.356 Z\" fill=\"rgb(0,53,107)\"></path></g></svg>',svgContentId:11191456754,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-107g2s0\",\"data-framer-name\":\"Cornell_University\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 217 36\"><g transform=\"translate(0.437 8.206)\" id=\"ss12697909663_1\"><path d=\"M 0 0.231 L 215.6 0.231 L 215.6 28.231 L 0 28.231 Z\" fill=\"transparent\"></path><path d=\"M 75.609 0 C 75.515 0.009 75.423 0.037 75.339 0.081 C 75.314 0.095 75.283 0.105 75.259 0.117 C 74.455 0.491 73.076 0.801 71.105 1.053 L 71.105 1.823 C 72.213 1.823 72.835 1.856 72.97 1.918 C 73.063 1.95 73.14 2.017 73.185 2.105 C 73.251 2.233 73.3 2.829 73.338 3.903 C 73.39 5.443 73.416 6.985 73.416 8.527 L 73.416 14.094 C 73.369 16.541 73.343 17.824 73.338 17.942 C 73.316 18.398 73.259 18.718 73.16 18.894 C 73.049 19.076 72.865 19.194 72.466 19.214 L 71.186 19.228 L 71.186 20.002 C 73.521 19.926 74.459 19.919 74.66 19.919 C 76.356 19.94 77.535 19.983 77.88 20.002 L 77.88 19.228 C 77.379 19.225 76.878 19.212 76.378 19.187 C 76.262 19.165 76.152 19.118 76.055 19.05 C 75.796 18.838 75.741 18.48 75.729 17.859 C 75.722 17.673 75.691 16.416 75.649 14.089 L 75.679 5.031 C 75.679 5.031 75.801 0.379 75.809 0.226 C 75.812 0.166 75.794 0.107 75.757 0.059 C 75.723 0.018 75.67 0 75.609 0 Z M 83.746 0 C 83.593 0.027 83.34 0.147 83.014 0.273 C 82.184 0.58 80.931 0.839 79.242 1.053 L 79.242 1.823 C 80.35 1.823 80.973 1.856 81.107 1.918 C 81.207 1.954 81.277 2.019 81.322 2.105 C 81.386 2.233 81.437 2.829 81.475 3.903 C 81.527 5.443 81.555 6.985 81.555 8.527 L 81.555 14.095 C 81.507 16.541 81.482 17.825 81.475 17.942 C 81.455 18.398 81.396 18.718 81.296 18.894 C 81.188 19.076 80.999 19.194 80.6 19.214 L 79.323 19.228 L 79.323 20.002 C 81.487 19.928 82.463 19.919 82.797 19.919 C 84.244 19.935 85.387 19.974 86.017 20.002 L 86.017 19.228 C 85.516 19.225 85.015 19.212 84.514 19.187 C 84.398 19.165 84.288 19.118 84.192 19.05 C 83.932 18.838 83.88 18.48 83.866 17.859 C 83.856 17.673 83.831 16.416 83.786 14.089 L 83.816 5.031 C 83.816 5.031 83.936 0.379 83.946 0.226 C 83.95 0.166 83.931 0.107 83.894 0.059 C 83.856 0.019 83.802 -0.003 83.746 0 Z M 10.911 0.535 C 7.626 0.597 5.019 1.525 3.094 3.338 C 1.104 5.216 0.107 7.577 0.107 10.431 C 0.107 12.685 0.711 14.555 1.839 16.166 C 2.963 17.773 4.757 19.146 7.139 19.84 C 8.329 20.19 9.607 20.364 11.006 20.364 C 12.107 20.372 13.206 20.252 14.28 20.007 C 15.283 19.769 16.305 19.384 17.353 18.855 L 17.876 17.602 L 17.648 17.321 C 16.941 17.823 16.23 18.194 15.516 18.429 C 14.372 18.807 13.093 18.966 11.78 18.93 C 9.216 18.866 7.137 18.05 5.55 16.47 C 3.896 14.816 3.07 12.639 3.07 9.927 C 3.078 8.381 3.298 7.095 3.729 6.069 C 4.159 5.046 4.714 4.201 5.391 3.533 C 6.706 2.238 8.339 1.656 10.781 1.59 C 10.846 1.586 10.912 1.585 10.978 1.585 C 14.388 1.585 16.141 2.431 16.323 4.182 L 16.333 5.76 L 17.146 5.76 C 17.187 4.874 17.285 3.992 17.439 3.118 C 17.543 2.623 17.689 2.138 17.876 1.668 C 17.653 1.624 17.044 1.467 16.044 1.203 C 15.209 0.975 14.361 0.797 13.505 0.669 C 12.715 0.562 11.825 0.524 10.911 0.535 Z M 92.025 0.93 L 92.025 1.785 C 93.06 1.799 93.688 1.85 93.907 1.927 C 94.103 1.983 94.275 2.105 94.391 2.272 C 94.493 2.427 94.554 2.932 94.581 3.781 C 94.637 4.969 94.665 6.158 94.664 7.347 L 94.664 13.271 C 94.664 14.999 94.789 16.225 95.04 16.959 C 95.236 17.515 95.598 18.054 96.126 18.591 C 97.182 19.652 99.253 20.364 102.022 20.364 C 104.384 20.364 106.399 19.78 107.634 18.783 C 108.459 18.113 109.024 17.338 109.332 16.461 C 109.64 15.586 109.794 14.045 109.794 11.837 L 109.794 7.347 C 109.823 4.988 109.862 3.72 109.917 3.539 C 109.942 2.851 110.009 2.416 110.114 2.242 C 110.204 2.102 110.355 2 110.579 1.927 C 110.804 1.85 111.432 1.799 112.472 1.785 L 112.472 0.93 C 110.372 0.998 109.002 1.014 108.631 1.008 C 107.972 0.999 107.077 0.973 105.942 0.93 L 105.942 1.785 C 106.972 1.799 107.603 1.85 107.829 1.927 C 108.057 2 108.221 2.115 108.319 2.272 C 108.419 2.427 108.479 2.93 108.497 3.778 C 108.553 4.94 108.581 6.131 108.581 7.344 L 108.581 11.467 C 108.581 13.81 108.419 15.297 108.038 16.169 C 107.653 17.046 106.969 17.765 105.415 18.251 C 104.639 18.497 103.751 18.621 102.752 18.621 C 101.029 18.621 99.585 18.224 98.76 17.617 C 98.235 17.229 97.829 16.701 97.588 16.094 C 97.342 15.481 97.218 14.216 97.218 12.297 L 97.218 7.345 C 97.258 4.987 97.286 3.719 97.298 3.539 C 97.325 2.853 97.394 2.417 97.51 2.239 C 97.586 2.104 97.741 2 97.969 1.927 C 98.197 1.851 98.827 1.8 99.857 1.785 L 99.857 0.931 C 98.374 0.98 96.891 1.006 95.407 1.009 C 94.279 1.002 93.152 0.975 92.025 0.93 Z M 187.683 1.092 C 187.282 1.085 186.895 1.245 186.617 1.534 C 186.321 1.828 186.174 2.184 186.174 2.6 C 186.174 3.01 186.321 3.361 186.616 3.655 C 186.896 3.937 187.277 4.096 187.674 4.096 C 188.071 4.096 188.452 3.937 188.732 3.655 C 189.028 3.361 189.175 3.01 189.175 2.6 C 189.175 2.183 189.031 1.828 188.741 1.534 C 188.466 1.246 188.082 1.085 187.683 1.092 Z M 131.768 1.095 C 131.351 1.095 130.998 1.241 130.702 1.535 C 130.408 1.829 130.262 2.185 130.262 2.601 C 130.262 3.011 130.408 3.362 130.702 3.656 C 130.996 3.95 131.353 4.099 131.768 4.099 C 132.178 4.099 132.528 3.95 132.82 3.656 C 133.107 3.381 133.267 2.999 133.263 2.601 C 133.263 2.184 133.119 1.829 132.829 1.535 C 132.553 1.246 132.168 1.087 131.768 1.095 Z M 196.145 2.88 C 195.573 3.247 194.827 3.59 193.907 3.915 L 193.907 7.994 C 193.396 8.246 192.704 8.53 191.836 8.849 L 191.836 9.411 C 193.19 9.338 193.907 9.331 193.907 9.331 C 193.907 9.331 193.906 15.123 193.888 15.427 C 193.858 16.099 193.836 16.77 193.824 17.442 C 193.87 18.082 193.975 18.551 194.136 18.848 C 194.427 19.398 194.909 19.822 195.491 20.04 C 195.773 20.147 196.154 20.204 196.619 20.204 C 197.381 20.204 197.9 20.143 198.576 19.895 C 198.966 19.537 199.372 19.194 199.789 18.862 L 199.628 18.342 C 199.39 18.429 199.145 18.497 198.896 18.545 C 198.853 18.554 198.798 18.571 198.759 18.573 C 198.53 18.607 198.232 18.623 197.863 18.623 C 197.808 18.618 197.761 18.605 197.71 18.598 C 196.855 18.466 196.576 18.249 196.337 17.882 C 196.208 17.672 196.121 17.439 196.081 17.195 C 196.037 16.931 196.03 16.125 196.056 14.775 L 196.137 9.25 C 198.355 9.237 199.13 9.244 199.67 9.25 L 199.951 8.078 L 199.856 7.994 C 197.969 8.078 197.348 8.087 196.917 8.084 C 196.657 8.079 196.397 8.076 196.137 8.073 C 196.255 5.533 196.363 3.893 196.463 3.148 L 196.145 2.881 Z M 26.495 6.977 C 24.505 6.977 22.875 7.607 21.601 8.882 C 20.331 10.152 19.694 11.79 19.694 13.798 C 19.694 14.913 19.9 15.958 20.31 16.938 C 20.837 18.226 21.822 19.274 23.074 19.88 C 23.794 20.231 24.668 20.407 25.704 20.407 C 27.032 20.407 28.254 20.097 29.36 19.485 C 30.439 18.895 31.33 18.012 31.93 16.938 C 32.535 15.848 32.84 14.649 32.84 13.341 C 32.84 11.465 32.25 9.938 31.072 8.754 C 29.894 7.572 28.368 6.977 26.495 6.977 Z M 65.488 6.977 C 64.031 6.977 62.834 7.438 61.571 8.302 C 61.024 8.677 60.623 9.006 60.363 9.291 C 60.005 9.686 59.686 10.299 59.403 11.128 C 59.123 11.958 58.983 12.888 58.983 13.92 C 58.983 16.559 60.102 18.599 62.008 19.582 C 62.963 20.076 64.034 20.325 65.21 20.325 C 66.294 20.322 67.366 20.091 68.355 19.646 C 68.64 19.521 69.094 19.261 69.708 18.872 L 70.14 17.909 L 69.923 17.679 C 69.126 18.173 68.456 18.494 67.918 18.677 C 66.612 19.124 65.181 19.015 63.957 18.377 C 62.462 17.616 61.574 16.052 61.538 13.469 L 65.839 13.469 C 66.805 13.469 67.77 13.432 68.734 13.36 C 69.315 13.316 69.892 13.237 70.463 13.121 C 70.516 12.763 70.543 12.456 70.543 12.205 C 70.543 10.219 69.823 8.578 68.203 7.662 C 67.395 7.206 66.489 6.977 65.488 6.977 Z M 155.845 6.977 C 154.395 6.977 153.195 7.438 151.928 8.302 C 151.383 8.677 150.979 9.006 150.72 9.291 C 150.362 9.686 150.042 10.299 149.763 11.128 C 149.479 11.958 149.339 12.888 149.339 13.92 C 149.339 16.559 150.459 18.599 152.365 19.582 C 153.322 20.076 154.382 20.325 155.567 20.325 C 156.651 20.322 157.723 20.091 158.712 19.646 C 158.997 19.521 159.449 19.261 160.065 18.872 L 160.497 17.909 L 160.28 17.679 C 159.48 18.164 158.813 18.494 158.275 18.677 C 156.97 19.123 155.54 19.015 154.317 18.377 C 152.824 17.616 151.93 16.052 151.892 13.469 L 156.196 13.469 C 157.16 13.469 158.127 13.432 159.091 13.36 C 159.601 13.328 160.177 13.244 160.82 13.121 C 160.873 12.763 160.9 12.456 160.9 12.205 C 160.9 10.219 160.181 8.578 158.559 7.662 C 157.752 7.206 156.848 6.977 155.845 6.977 Z M 177.734 6.993 C 176.943 7.04 176.201 7.211 175.518 7.533 C 173.929 8.275 173.219 9.516 173.219 10.921 C 173.219 11.887 173.595 12.744 174.185 13.276 C 174.479 13.546 174.873 13.774 175.373 13.961 C 175.705 14.077 176.437 14.263 177.57 14.524 C 178.701 14.782 179.439 14.992 179.783 15.153 C 180.473 15.473 180.846 16.065 180.846 16.812 C 180.846 17.652 180.552 18.31 179.97 18.792 C 179.385 19.274 178.639 19.512 177.729 19.512 C 177.315 19.511 176.902 19.493 176.49 19.459 C 175.92 19.391 175.385 19.15 174.956 18.769 C 174.509 18.364 174.323 17.745 174.232 17.137 C 174.18 16.728 174.153 16.315 174.151 15.902 L 173.383 15.902 C 173.367 17.062 173.346 17.825 173.319 18.192 C 173.243 18.932 173.149 19.402 173.138 19.542 C 173.138 19.605 173.158 19.646 173.194 19.676 C 173.248 19.731 173.622 19.826 174.324 19.966 C 175.593 20.206 176.613 20.325 177.372 20.325 C 179.035 20.325 180.36 19.877 181.35 18.983 C 182.341 18.085 182.837 17.036 182.837 15.832 C 182.837 14.622 182.271 13.731 181.428 13.321 C 181.006 13.119 180.234 12.875 179.115 12.586 L 176.902 12.04 C 176.066 11.789 175.648 11.51 175.373 11.007 C 175.236 10.76 175.167 10.462 175.167 10.111 C 175.167 9.489 175.404 8.949 175.88 8.483 C 176.354 8.021 176.992 7.787 177.762 7.787 C 179.408 7.787 180.291 8.522 180.585 9.003 C 180.683 9.162 180.759 9.346 180.816 9.549 C 180.875 9.754 180.924 10.182 180.969 10.832 L 181.737 10.832 C 181.761 9.816 181.802 8.801 181.86 7.786 C 181.398 7.556 180.798 7.364 180.058 7.207 C 179.295 7.039 178.515 6.967 177.734 6.993 Z M 52.224 7.057 C 51.537 7.045 50.808 7.174 50.03 7.458 L 47.533 9.596 C 47.565 8.374 47.61 7.531 47.613 7.403 C 47.613 7.313 47.596 7.248 47.561 7.205 C 47.524 7.162 47.468 7.138 47.411 7.141 C 47.348 7.141 47.229 7.184 47.049 7.269 C 47.038 7.274 47.028 7.281 47.015 7.285 C 46.176 7.673 44.863 7.992 43.071 8.235 L 43.071 9.005 L 43.173 9.005 C 44.118 9 44.661 9.018 44.796 9.064 C 44.937 9.114 45.036 9.189 45.094 9.287 C 45.151 9.385 45.193 9.698 45.22 10.222 C 45.273 11.04 45.303 11.806 45.303 12.519 C 45.303 12.519 45.246 16.551 45.219 17.944 C 45.193 18.4 45.129 18.715 45.03 18.894 C 44.923 19.075 44.732 19.197 44.354 19.216 L 43.071 19.227 L 43.071 20.001 C 45.627 19.928 46.526 19.917 46.764 19.917 C 48.309 19.935 49.369 19.98 49.752 20.001 L 49.752 19.227 C 48.818 19.211 48.329 19.194 48.273 19.185 C 47.974 19.118 47.847 19 47.778 18.838 C 47.685 18.633 47.631 18.305 47.614 17.858 C 47.585 16.413 47.533 12.46 47.533 12.46 C 47.533 11.475 47.653 10.772 47.889 10.355 C 48.126 9.94 48.522 9.57 49.078 9.247 C 49.637 8.922 50.274 8.754 50.921 8.76 C 52.446 8.76 53.601 9.567 53.905 10.768 C 54.012 11.208 54.064 12.128 54.064 13.538 L 54.064 15.801 C 54.064 16.383 54.012 17.775 53.905 19.973 C 53.905 19.983 53.902 19.993 53.902 20.001 C 55.544 19.928 56.147 19.918 56.342 19.918 C 57.058 19.929 57.772 19.958 58.486 20.001 L 58.486 19.227 L 57.086 19.186 C 56.699 19.134 56.541 18.97 56.456 18.436 C 56.402 18.015 56.376 17.222 56.376 16.056 L 56.376 13.682 C 56.376 11.835 56.345 10.712 56.284 10.308 C 56.069 8.952 55.464 8.092 54.169 7.502 C 53.559 7.22 52.896 7.068 52.224 7.057 Z M 120.822 7.057 C 120.134 7.047 119.408 7.179 118.642 7.458 L 116.148 9.596 C 116.178 8.396 116.225 7.531 116.229 7.403 C 116.229 7.313 116.209 7.248 116.173 7.205 C 116.139 7.162 116.09 7.141 116.026 7.141 C 115.965 7.141 115.847 7.181 115.672 7.266 C 115.67 7.266 115.667 7.27 115.661 7.27 C 114.824 7.665 113.498 7.992 111.686 8.236 L 111.686 9.006 L 111.803 9.006 C 112.735 9.002 113.272 9.019 113.409 9.066 C 113.55 9.116 113.651 9.19 113.71 9.288 C 113.767 9.386 113.808 9.7 113.832 10.223 C 113.885 10.988 113.913 11.754 113.916 12.52 C 113.916 12.52 113.859 16.553 113.832 17.946 C 113.808 18.402 113.746 18.716 113.646 18.895 C 113.539 19.077 113.349 19.198 112.969 19.218 L 111.686 19.228 L 111.686 20.002 C 114.259 19.929 115.153 19.919 115.383 19.919 C 116.377 19.93 117.371 19.958 118.364 20.002 L 118.364 19.229 C 117.431 19.212 116.936 19.196 116.886 19.187 C 116.582 19.119 116.462 19.001 116.391 18.839 C 116.3 18.634 116.247 18.306 116.229 17.859 C 116.203 16.414 116.149 12.461 116.149 12.461 C 116.149 11.476 116.265 10.773 116.502 10.357 C 116.739 9.942 117.138 9.571 117.694 9.249 C 118.252 8.924 118.888 8.756 119.534 8.761 C 121.057 8.761 122.211 9.568 122.518 10.769 C 122.623 11.209 122.679 12.129 122.679 13.539 L 122.679 15.802 C 122.679 16.384 122.623 17.776 122.518 19.978 C 122.518 19.983 122.52 19.994 122.518 20.003 C 124.184 19.93 124.779 19.919 124.959 19.919 C 125.955 19.937 126.751 19.979 127.1 20.003 L 127.1 19.229 L 125.7 19.187 C 125.315 19.135 125.16 18.974 125.071 18.438 C 125.017 18.016 124.99 17.223 124.99 16.058 L 124.99 13.684 C 124.99 11.836 124.958 10.714 124.895 10.31 C 124.683 8.954 124.078 8.093 122.783 7.504 C 122.168 7.22 121.5 7.068 120.822 7.057 Z M 132.845 7.057 C 131.662 7.619 130.209 7.994 128.477 8.19 L 128.477 8.964 C 129.541 8.964 130.14 9 130.281 9.064 C 130.413 9.123 130.518 9.231 130.573 9.365 C 130.662 9.615 130.707 10.408 130.707 11.737 L 130.707 14.095 C 130.653 16.545 130.626 17.823 130.626 17.945 C 130.598 18.401 130.535 18.718 130.437 18.894 C 130.33 19.076 130.139 19.194 129.758 19.214 L 128.477 19.228 L 128.477 20.002 C 130.829 19.927 131.719 19.919 132.013 19.919 C 133.499 19.936 134.757 19.979 135.292 20.002 L 135.292 19.228 C 134.791 19.225 134.29 19.211 133.789 19.187 C 133.673 19.164 133.563 19.117 133.466 19.05 C 133.218 18.849 133.154 18.49 133.14 17.859 C 133.133 17.673 133.104 16.416 133.059 14.089 L 133.059 11.649 C 133.059 10.634 133.086 9.177 133.14 7.272 Z M 188.758 7.057 C 187.57 7.627 186.119 7.994 184.387 8.19 L 184.387 8.964 C 185.451 8.964 186.053 9 186.194 9.064 C 186.326 9.124 186.43 9.232 186.486 9.365 C 186.577 9.615 186.62 10.408 186.62 11.737 L 186.62 14.095 C 186.565 16.545 186.539 17.823 186.539 17.945 C 186.511 18.401 186.446 18.718 186.35 18.894 C 186.238 19.076 186.053 19.194 185.674 19.214 L 184.387 19.228 L 184.387 20.002 C 186.791 19.927 187.666 19.919 187.926 19.919 C 189.485 19.936 190.758 19.983 191.205 20.002 L 191.205 19.228 C 190.704 19.225 190.203 19.211 189.702 19.187 C 189.586 19.165 189.476 19.118 189.379 19.05 C 189.129 18.849 189.07 18.49 189.056 17.858 C 189.049 17.673 189.019 16.416 188.972 14.089 L 188.972 11.648 C 188.972 10.634 189 9.176 189.056 7.272 Z M 41.1 7.08 C 40.272 7.005 39.45 7.274 38.826 7.823 C 38.672 7.958 38.427 8.253 38.091 8.711 C 37.738 9.186 37.369 9.647 36.983 10.094 C 37.006 8.535 37.063 7.534 37.066 7.403 C 37.066 7.313 37.046 7.248 37.011 7.205 C 36.974 7.162 36.92 7.138 36.863 7.141 C 36.801 7.141 36.677 7.184 36.499 7.269 C 36.447 7.295 36.393 7.318 36.339 7.339 C 35.499 7.706 34.229 8.005 32.52 8.235 L 32.52 9.006 L 32.53 9.006 C 33.532 8.997 34.108 9.019 34.252 9.065 C 34.4 9.115 34.502 9.189 34.559 9.287 C 34.617 9.385 34.655 9.699 34.673 10.223 C 34.723 10.988 34.75 11.755 34.751 12.522 C 34.751 12.522 34.751 14.218 34.673 17.836 C 34.644 18.504 34.551 18.879 34.33 19.05 C 34.228 19.117 34.111 19.16 33.99 19.175 C 33.91 19.195 33.369 19.212 32.362 19.228 L 32.362 20.002 C 34.381 19.926 35.524 19.922 35.7 19.919 C 37.763 19.939 39.27 19.984 39.745 20.002 L 39.745 19.228 C 38.56 19.15 37.833 19.068 37.562 18.988 C 37.293 18.902 37.202 18.796 37.134 18.493 C 37.096 18.34 37.076 17.987 37.067 17.433 C 37.023 16.355 36.995 15.277 36.983 14.198 L 36.983 12.814 C 36.983 11.684 37.223 10.831 37.701 10.264 C 38.177 9.694 38.757 9.41 39.441 9.41 C 40.254 9.41 40.756 9.783 41.167 10.635 L 41.771 10.635 C 41.793 9.731 41.871 8.68 42.014 7.486 L 41.936 7.3 C 41.671 7.183 41.389 7.109 41.1 7.08 Z M 171.203 7.08 C 170.362 6.996 169.532 7.302 168.932 7.823 C 168.78 7.958 168.537 8.253 168.197 8.711 C 167.695 9.363 167.31 9.827 167.089 10.094 C 167.121 8.277 167.169 7.534 167.173 7.403 C 167.178 7.333 167.158 7.263 167.117 7.205 C 167.08 7.163 167.026 7.139 166.969 7.141 C 166.786 7.184 166.454 7.342 166.098 7.478 C 165.268 7.781 164.114 8.034 162.627 8.235 L 162.627 9.006 C 163.637 8.997 164.212 9.019 164.358 9.065 C 164.484 9.099 164.593 9.178 164.664 9.287 C 164.721 9.385 164.762 9.699 164.779 10.223 C 164.834 11.04 164.857 11.808 164.857 12.522 C 164.857 12.522 164.86 14.218 164.779 17.836 C 164.754 18.504 164.659 18.879 164.436 19.05 C 164.334 19.117 164.217 19.16 164.096 19.175 C 164.016 19.195 163.47 19.212 162.465 19.228 L 162.465 20.002 C 164.409 19.929 165.551 19.922 165.806 19.919 C 167.653 19.933 169.125 19.979 169.851 20.002 L 169.851 19.228 C 168.666 19.15 167.937 19.068 167.668 18.988 C 167.401 18.901 167.309 18.796 167.239 18.493 C 167.202 18.34 167.18 17.987 167.173 17.433 C 167.13 16.355 167.102 15.277 167.089 14.198 L 167.089 12.814 C 167.089 11.683 167.33 10.831 167.807 10.264 C 168.287 9.698 168.865 9.41 169.547 9.41 C 170.361 9.41 170.866 9.783 171.276 10.635 L 171.877 10.635 C 171.897 9.731 171.976 8.68 172.122 7.486 L 172.041 7.3 C 171.775 7.183 171.492 7.109 171.203 7.08 Z M 135.173 7.422 L 135.173 8.19 C 135.713 8.212 136.041 8.236 136.167 8.274 C 136.472 8.344 136.682 8.526 137.041 9.332 L 140.894 18.284 C 141.033 18.598 141.274 19.209 141.623 20.122 L 143.001 20.122 C 144.331 16.977 145.108 15.161 145.334 14.665 L 146.626 11.92 C 147.467 10.203 147.954 9.243 148.079 9.025 C 148.259 8.703 148.443 8.493 148.625 8.388 C 148.808 8.285 149.179 8.218 149.738 8.19 L 149.738 7.422 C 147.894 7.486 147.043 7.506 146.626 7.497 C 145.949 7.476 145.273 7.451 144.596 7.422 L 144.596 8.19 C 145.53 8.219 146.104 8.292 146.32 8.407 C 146.526 8.517 146.521 8.782 146.439 9.131 C 146.295 9.694 146.009 10.508 145.579 11.57 C 145.18 12.575 144.771 13.576 144.354 14.573 L 143.018 17.605 C 143.015 17.602 143.011 17.593 143.007 17.589 C 142.377 16.114 141.727 14.574 141.727 14.574 L 140.09 10.51 C 139.732 9.628 139.553 9.052 139.553 8.787 C 139.553 8.616 139.638 8.481 139.809 8.383 C 139.978 8.285 140.546 8.22 141.516 8.191 L 141.516 7.424 C 139.636 7.488 138.279 7.507 137.925 7.502 C 137.008 7.484 136.09 7.457 135.173 7.422 Z M 200.944 7.422 L 200.944 8.192 C 201.58 8.266 201.991 8.355 202.174 8.466 C 202.358 8.578 202.529 8.789 202.689 9.117 C 203.094 9.942 203.613 11.142 204.246 12.717 L 206.378 18 C 206.741 18.895 207.085 19.797 207.411 20.706 C 207.033 21.7 206.608 22.675 206.139 23.629 C 205.823 24.249 205.553 24.685 205.323 24.94 C 204.869 25.448 204.331 25.678 203.775 25.678 C 203.59 25.678 203.445 25.662 203.319 25.642 C 203.263 25.632 203.205 25.624 203.16 25.612 C 202.884 25.52 202.679 25.359 202.339 25.068 L 202.013 25.068 L 201.328 27.14 C 201.92 27.464 202.336 27.588 202.929 27.588 C 204.147 27.588 205.186 27.062 205.933 26.078 C 206.305 25.587 206.755 24.766 207.283 23.615 L 210.362 16.366 C 211.724 13.361 212.659 11.343 213.165 10.311 C 213.669 9.28 214.048 8.671 214.298 8.491 C 214.549 8.311 214.9 8.214 215.358 8.193 L 215.492 7.422 C 214.558 7.473 212.768 7.548 210.325 7.422 L 210.325 8.192 C 211.264 8.284 211.804 8.376 211.94 8.474 C 212.168 8.627 212.191 8.879 212.099 9.254 C 211.981 9.667 211.574 10.749 210.874 12.502 C 210.177 14.25 209.689 15.439 209.409 16.062 L 208.7 17.644 C 208.044 16.134 206.565 12.514 206.565 12.514 C 206.2 11.59 205.869 10.653 205.573 9.704 C 205.422 9.262 205.345 8.977 205.345 8.833 C 205.345 8.607 205.461 8.451 205.693 8.365 C 205.829 8.312 206.357 8.257 207.28 8.193 L 207.28 7.422 C 206.138 7.47 204.996 7.496 203.853 7.5 C 202.883 7.496 201.913 7.47 200.944 7.422 Z M 25.947 7.87 C 27.501 7.87 28.833 8.636 29.663 10.72 C 30.079 11.761 30.287 12.998 30.287 14.434 C 30.287 16.161 29.935 17.438 29.24 18.264 C 28.547 19.094 27.678 19.512 26.643 19.512 C 25.834 19.512 25.079 19.245 24.388 18.722 C 23.695 18.192 23.168 17.357 22.801 16.208 C 22.444 15.116 22.259 13.975 22.253 12.825 C 22.253 11.129 22.595 9.878 23.277 9.073 C 23.96 8.271 24.85 7.87 25.947 7.87 Z M 64.92 7.87 C 66.832 7.87 68.072 9.154 68.072 11.995 C 68.072 12.111 68.07 12.28 68.061 12.494 C 67.685 12.54 66.901 12.561 65.711 12.561 L 65.541 12.561 C 64.159 12.532 62.265 12.468 61.541 12.413 C 61.551 10.84 61.863 9.69 62.479 8.961 C 63.098 8.234 63.912 7.87 64.92 7.87 Z M 155.274 7.87 C 157.187 7.87 158.431 9.154 158.431 11.995 C 158.431 12.111 158.424 12.28 158.417 12.494 C 158.041 12.54 157.256 12.561 156.07 12.561 C 155.916 12.561 155.296 12.555 153.317 12.494 C 152.842 12.481 152.367 12.454 151.894 12.414 C 151.905 10.84 152.218 9.69 152.835 8.961 C 153.451 8.234 154.271 7.87 155.274 7.87 Z\" fill=\"rgb(179,27,27)\"></path></g></svg>',svgContentId:12697909663,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1lohbbp\",\"data-framer-name\":\"Oxford\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 150 44\"><path d=\"M 19.25 16.03 C 19.25 15.341 19.028 14.808 18.516 14.496 C 18.206 14.319 17.583 14.252 17.049 14.252 L 13.247 14.252 L 13.247 21.922 L 17.383 21.922 C 18.339 21.922 19.095 22.145 19.161 22.99 L 19.251 22.99 L 19.251 16.03 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 19.25 16.03 C 19.25 15.341 19.028 14.808 18.516 14.496 C 18.206 14.319 17.583 14.252 17.049 14.252 L 13.247 14.252 L 13.247 21.922 L 17.383 21.922 C 18.339 21.922 19.095 22.145 19.161 22.99 L 19.251 22.99 L 19.251 16.03 Z\" fill=\"transparent\" stroke-width=\"0.763\" stroke=\"rgb(0,28,84)\" stroke-miterlimit=\"3.864\" stroke-dasharray=\"\"></path><path d=\"M 19.25 16.03 C 19.25 15.341 19.472 14.808 19.984 14.496 C 20.295 14.319 21.051 14.252 21.562 14.252 L 25.386 14.252 L 25.386 21.922 L 21.23 21.922 C 20.274 21.922 19.384 22.145 19.34 22.99 L 19.251 22.99 L 19.251 16.03 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 19.25 16.03 C 19.25 15.341 19.472 14.808 19.984 14.496 C 20.295 14.319 21.051 14.252 21.562 14.252 L 25.386 14.252 L 25.386 21.922 L 21.23 21.922 C 20.274 21.922 19.384 22.145 19.34 22.99 L 19.251 22.99 L 19.251 16.03 Z\" fill=\"transparent\" stroke-width=\"0.763\" stroke=\"rgb(0,28,84)\" stroke-miterlimit=\"3.864\" stroke-dasharray=\"\"></path><path d=\"M 26.187 14.83 L 26.187 22.945 L 20.317 22.945 L 20.25 23.123 C 20.14 23.367 19.962 23.612 19.317 23.612 C 18.672 23.612 18.494 23.367 18.383 23.122 L 18.316 22.945 L 12.446 22.945 L 12.446 14.83 L 11.913 14.83 L 11.913 15.074 L 11.402 14.919 C 11.34 14.712 11.151 14.568 10.935 14.563 C 10.665 14.565 10.447 14.783 10.445 15.053 C 10.445 15.319 10.668 15.541 10.935 15.541 C 11.048 15.538 11.157 15.5 11.246 15.431 L 11.913 15.631 L 11.913 16.275 L 11.402 16.186 C 11.329 16.006 11.151 15.891 10.957 15.897 C 10.687 15.899 10.469 16.117 10.467 16.387 C 10.467 16.653 10.69 16.875 10.957 16.875 C 11.091 16.871 11.219 16.815 11.313 16.72 L 11.913 16.83 L 11.913 17.498 L 11.402 17.476 C 11.31 17.33 11.152 17.238 10.979 17.231 C 10.71 17.234 10.492 17.452 10.49 17.721 C 10.49 17.987 10.712 18.209 10.98 18.209 C 11.136 18.203 11.282 18.13 11.38 18.009 L 11.913 18.031 L 11.913 18.743 L 11.379 18.765 C 11.291 18.632 11.138 18.556 10.979 18.565 C 10.71 18.568 10.492 18.786 10.49 19.055 C 10.49 19.321 10.712 19.543 10.98 19.543 C 11.144 19.549 11.298 19.464 11.38 19.321 L 11.89 19.299 L 11.89 19.966 L 11.313 20.055 C 11.219 19.959 11.091 19.904 10.957 19.899 C 10.687 19.901 10.469 20.119 10.467 20.389 C 10.467 20.655 10.69 20.877 10.957 20.877 C 11.157 20.877 11.335 20.767 11.402 20.588 L 11.891 20.499 L 11.891 21.144 L 11.246 21.344 C 11.157 21.275 11.048 21.236 10.935 21.233 C 10.665 21.235 10.447 21.453 10.445 21.723 C 10.445 21.989 10.668 22.211 10.935 22.211 C 11.151 22.206 11.339 22.063 11.402 21.856 L 11.891 21.7 L 11.891 22.323 L 11.179 22.633 C 11.101 22.578 11.008 22.547 10.912 22.545 C 10.643 22.548 10.426 22.765 10.423 23.034 C 10.423 23.301 10.646 23.524 10.913 23.524 C 11.148 23.529 11.349 23.356 11.379 23.123 L 11.869 22.9 L 11.869 23.479 L 18.005 23.479 C 18.25 23.901 18.672 24.123 19.317 24.123 C 19.962 24.123 20.384 23.901 20.628 23.479 L 26.698 23.479 L 26.698 14.829 L 26.187 14.829 Z M 15.315 12.14 C 14.092 12.14 13.091 12.34 13.091 12.562 C 13.091 12.806 14.091 12.984 15.315 12.984 C 16.538 12.984 17.538 12.784 17.538 12.562 C 17.538 12.317 16.56 12.139 15.315 12.139 Z M 18.383 9.472 L 17.093 10.383 L 17.071 10.473 L 17.382 10.605 C 17.449 10.628 17.449 10.695 17.404 10.717 L 16.604 11.406 L 16.537 11.406 L 15.959 10.561 C 15.915 10.517 15.937 10.45 16.004 10.45 L 16.382 10.383 L 16.382 10.294 L 15.382 8.894 L 15.226 8.894 L 14.225 10.294 L 14.225 10.384 L 14.603 10.45 C 14.67 10.472 14.692 10.517 14.647 10.561 L 14.069 11.406 L 14.003 11.406 L 13.247 10.716 C 13.225 10.695 13.225 10.65 13.269 10.606 L 13.58 10.472 L 13.558 10.383 L 12.224 9.472 L 12.113 9.516 L 12.891 11.917 C 13.291 11.739 14.203 11.606 15.27 11.606 C 16.337 11.606 17.249 11.739 17.649 11.917 L 18.427 9.517 Z M 19.317 28.192 C 18.094 28.192 17.094 28.392 17.094 28.614 C 17.094 28.859 18.094 29.037 19.317 29.037 C 20.54 29.037 21.54 28.837 21.54 28.614 C 21.518 28.392 20.54 28.192 19.317 28.192 Z M 22.363 25.524 L 21.073 26.436 L 21.073 26.525 L 21.384 26.658 C 21.451 26.68 21.451 26.747 21.407 26.769 L 20.607 27.459 L 20.539 27.459 L 19.961 26.614 C 19.917 26.569 19.939 26.502 20.006 26.502 L 20.384 26.436 L 20.384 26.346 L 19.384 24.946 L 19.228 24.946 L 18.228 26.346 L 18.228 26.436 L 18.605 26.502 C 18.672 26.525 18.695 26.569 18.65 26.614 L 18.072 27.458 L 18.005 27.458 L 17.249 26.769 C 17.227 26.747 17.227 26.68 17.271 26.658 L 17.582 26.525 L 17.582 26.435 L 16.248 25.525 L 16.138 25.569 L 16.915 27.969 C 17.315 27.792 18.227 27.659 19.295 27.659 C 20.362 27.659 21.273 27.792 21.673 27.969 L 22.452 25.569 L 22.362 25.524 Z M 23.274 12.14 C 22.051 12.14 21.051 12.34 21.051 12.562 C 21.051 12.806 22.051 12.984 23.274 12.984 C 24.497 12.984 25.497 12.784 25.497 12.562 C 25.497 12.317 24.497 12.139 23.274 12.139 Z M 26.343 9.472 L 25.053 10.383 L 25.031 10.473 L 25.342 10.605 C 25.409 10.628 25.409 10.695 25.364 10.717 L 24.564 11.406 L 24.497 11.406 L 23.919 10.561 C 23.875 10.517 23.897 10.45 23.964 10.45 L 24.342 10.383 L 24.342 10.294 L 23.342 8.894 L 23.185 8.894 L 22.185 10.294 L 22.185 10.384 L 22.563 10.45 C 22.63 10.472 22.652 10.517 22.607 10.561 L 22.029 11.406 L 21.963 11.406 L 21.207 10.716 C 21.184 10.695 21.184 10.65 21.229 10.606 L 21.54 10.472 L 21.518 10.383 L 20.184 9.472 L 20.073 9.516 L 20.851 11.917 C 21.251 11.739 22.163 11.606 23.23 11.606 C 24.297 11.606 25.209 11.739 25.609 11.917 L 26.387 9.517 Z\" fill=\"rgb(0,28,84)\"></path><path d=\"M 14.314 15.497 C 14.514 15.497 14.692 15.541 14.804 15.652 C 14.892 15.719 14.959 15.852 14.959 16.008 C 14.959 16.43 14.648 16.608 14.247 16.608 L 13.803 16.608 L 13.803 16.542 C 13.936 16.542 13.936 16.519 13.936 16.342 L 13.936 15.763 C 13.936 15.585 13.914 15.563 13.803 15.563 L 13.803 15.497 Z M 14.247 16.319 C 14.247 16.475 14.292 16.497 14.359 16.497 C 14.514 16.497 14.648 16.342 14.648 16.03 C 14.648 15.674 14.47 15.563 14.314 15.563 C 14.27 15.563 14.247 15.563 14.247 15.585 Z M 16.249 16.03 C 16.249 16.386 16.004 16.608 15.671 16.608 C 15.522 16.613 15.378 16.557 15.272 16.451 C 15.167 16.346 15.11 16.202 15.115 16.053 C 15.115 15.786 15.293 15.453 15.693 15.453 C 16.004 15.453 16.249 15.697 16.249 16.031 Z M 15.426 15.986 C 15.426 16.297 15.537 16.52 15.715 16.52 C 15.871 16.52 15.937 16.386 15.937 16.075 C 15.937 15.741 15.827 15.541 15.671 15.541 C 15.537 15.541 15.426 15.697 15.426 15.986 Z M 17.738 15.497 L 17.738 15.563 C 17.605 15.585 17.605 15.585 17.605 15.763 L 17.627 16.319 C 17.627 16.497 17.627 16.519 17.76 16.519 L 17.76 16.586 L 17.227 16.586 L 17.227 16.519 C 17.36 16.497 17.36 16.497 17.36 16.319 L 17.36 15.719 L 17.027 16.564 L 16.937 16.564 L 16.627 15.786 L 16.604 16.164 L 16.604 16.453 C 16.604 16.519 16.649 16.542 16.76 16.542 L 16.76 16.608 L 16.337 16.608 L 16.337 16.542 C 16.427 16.542 16.449 16.519 16.471 16.452 C 16.471 16.408 16.493 16.319 16.493 16.164 L 16.515 15.83 C 16.538 15.608 16.515 15.608 16.382 15.585 L 16.382 15.519 L 16.782 15.519 L 17.072 16.186 L 17.338 15.519 L 17.738 15.519 Z M 18.294 16.32 C 18.294 16.497 18.316 16.52 18.427 16.52 L 18.427 16.586 L 17.872 16.586 L 17.872 16.519 C 17.982 16.519 18.005 16.497 18.005 16.319 L 18.005 15.763 C 18.005 15.585 17.983 15.563 17.872 15.563 L 17.872 15.497 L 18.427 15.497 L 18.427 15.563 C 18.317 15.563 18.294 15.585 18.294 15.763 L 18.294 16.319 Z M 15.56 18.632 L 15.404 18.632 L 14.781 17.832 L 14.781 18.142 C 14.781 18.32 14.781 18.409 14.804 18.476 C 14.804 18.543 14.848 18.565 14.959 18.565 L 14.959 18.632 L 14.537 18.632 L 14.537 18.565 C 14.604 18.565 14.648 18.543 14.67 18.476 C 14.67 18.432 14.693 18.32 14.693 18.143 L 14.693 17.831 C 14.693 17.698 14.693 17.676 14.648 17.631 C 14.626 17.587 14.581 17.587 14.515 17.587 L 14.515 17.52 L 14.893 17.52 L 15.448 18.232 L 15.448 18.009 C 15.448 17.831 15.448 17.742 15.426 17.676 C 15.426 17.609 15.382 17.586 15.271 17.586 L 15.271 17.52 L 15.693 17.52 L 15.693 17.587 C 15.604 17.587 15.56 17.609 15.56 17.676 C 15.56 17.72 15.537 17.831 15.537 18.009 L 15.537 18.632 Z M 16.248 18.632 C 16.137 18.32 15.981 17.92 15.915 17.742 C 15.848 17.609 15.825 17.587 15.737 17.587 L 15.737 17.52 L 16.293 17.52 L 16.293 17.587 L 16.226 17.587 C 16.159 17.587 16.159 17.609 16.182 17.676 C 16.204 17.765 16.337 18.098 16.404 18.276 C 16.448 18.143 16.559 17.809 16.582 17.72 C 16.626 17.609 16.604 17.609 16.537 17.587 L 16.493 17.587 L 16.493 17.52 L 16.893 17.52 L 16.893 17.587 C 16.804 17.609 16.782 17.609 16.715 17.765 C 16.715 17.787 16.493 18.298 16.382 18.632 Z M 17.004 18.276 C 17.049 18.365 17.138 18.565 17.316 18.565 C 17.405 18.565 17.471 18.498 17.471 18.387 C 17.471 18.298 17.405 18.232 17.294 18.187 L 17.271 18.165 C 17.138 18.098 16.982 18.009 16.982 17.831 C 16.982 17.631 17.116 17.476 17.382 17.476 C 17.427 17.476 17.494 17.476 17.538 17.498 C 17.582 17.498 17.605 17.52 17.627 17.52 C 17.627 17.587 17.649 17.676 17.671 17.787 L 17.605 17.809 C 17.56 17.698 17.515 17.587 17.382 17.587 C 17.341 17.586 17.301 17.602 17.271 17.631 C 17.242 17.661 17.226 17.701 17.227 17.742 C 17.227 17.832 17.294 17.876 17.405 17.92 L 17.449 17.942 C 17.605 18.009 17.739 18.098 17.739 18.298 C 17.739 18.498 17.56 18.654 17.316 18.654 C 17.249 18.654 17.182 18.632 17.138 18.632 C 17.093 18.609 17.048 18.609 17.027 18.587 C 17.002 18.491 16.98 18.395 16.96 18.298 Z M 14.803 20.366 C 14.803 20.544 14.825 20.566 14.936 20.566 L 14.936 20.633 L 14.38 20.633 L 14.38 20.566 C 14.491 20.566 14.514 20.544 14.514 20.366 L 14.514 19.81 C 14.514 19.632 14.492 19.61 14.38 19.61 L 14.38 19.543 L 14.936 19.543 L 14.936 19.61 C 14.825 19.61 14.803 19.632 14.803 19.81 Z M 15.47 20.388 C 15.47 20.477 15.47 20.521 15.514 20.544 C 15.537 20.566 15.581 20.566 15.626 20.566 C 15.67 20.566 15.759 20.566 15.781 20.522 C 15.804 20.499 15.848 20.455 15.871 20.344 L 15.937 20.366 C 15.937 20.433 15.893 20.61 15.87 20.655 L 15.025 20.655 L 15.025 20.588 C 15.159 20.588 15.159 20.566 15.159 20.388 L 15.159 19.832 C 15.159 19.654 15.137 19.632 15.025 19.632 L 15.025 19.543 L 15.581 19.543 L 15.581 19.61 C 15.471 19.61 15.448 19.632 15.448 19.81 L 15.448 20.388 Z M 16.426 20.388 C 16.426 20.477 16.426 20.521 16.471 20.544 C 16.493 20.566 16.538 20.566 16.582 20.566 C 16.626 20.566 16.715 20.566 16.738 20.522 C 16.76 20.499 16.804 20.455 16.826 20.344 L 16.893 20.366 C 16.884 20.465 16.861 20.562 16.826 20.655 L 16.004 20.655 L 16.004 20.588 C 16.137 20.588 16.137 20.566 16.137 20.388 L 16.137 19.832 C 16.137 19.654 16.115 19.632 16.004 19.632 L 16.004 19.543 L 16.56 19.543 L 16.56 19.61 C 16.449 19.61 16.426 19.632 16.426 19.81 Z M 17.227 20.655 C 17.116 20.344 16.96 19.943 16.893 19.765 C 16.826 19.632 16.804 19.61 16.715 19.61 L 16.715 19.543 L 17.271 19.543 L 17.271 19.61 L 17.204 19.61 C 17.138 19.61 17.138 19.632 17.16 19.699 C 17.182 19.788 17.316 20.121 17.382 20.299 C 17.427 20.166 17.538 19.832 17.56 19.743 C 17.605 19.633 17.582 19.633 17.516 19.61 L 17.471 19.61 L 17.471 19.543 L 17.871 19.543 L 17.871 19.61 C 17.783 19.632 17.761 19.632 17.694 19.788 C 17.694 19.81 17.471 20.321 17.36 20.655 Z M 21.584 15.497 L 21.584 15.563 C 21.451 15.585 21.451 15.585 21.451 15.763 L 21.473 16.319 C 21.473 16.497 21.473 16.519 21.607 16.519 L 21.607 16.586 L 21.073 16.586 L 21.073 16.519 C 21.206 16.497 21.206 16.497 21.206 16.319 L 21.206 15.719 L 20.873 16.564 L 20.783 16.564 L 20.473 15.786 L 20.45 16.164 L 20.45 16.453 C 20.45 16.519 20.495 16.542 20.606 16.542 L 20.606 16.608 L 20.184 16.608 L 20.184 16.542 C 20.272 16.542 20.294 16.519 20.317 16.452 C 20.317 16.408 20.339 16.319 20.339 16.164 L 20.362 15.83 C 20.384 15.608 20.362 15.608 20.228 15.585 L 20.228 15.519 L 20.628 15.519 L 20.918 16.186 L 21.184 15.519 L 21.584 15.519 Z M 22.14 16.32 C 22.14 16.497 22.162 16.52 22.274 16.52 L 22.274 16.586 L 21.718 16.586 L 21.718 16.519 C 21.828 16.519 21.851 16.497 21.851 16.319 L 21.851 15.763 C 21.851 15.585 21.829 15.563 21.718 15.563 L 21.718 15.497 L 22.274 15.497 L 22.274 15.563 C 22.162 15.563 22.14 15.585 22.14 15.763 L 22.14 16.319 Z M 23.385 16.608 L 23.23 16.608 L 22.607 15.808 L 22.607 16.119 C 22.607 16.297 22.607 16.386 22.629 16.453 C 22.629 16.519 22.674 16.542 22.785 16.542 L 22.785 16.608 L 22.363 16.608 L 22.363 16.542 C 22.429 16.542 22.473 16.519 22.496 16.452 C 22.496 16.408 22.518 16.319 22.518 16.119 L 22.518 15.808 C 22.518 15.675 22.518 15.652 22.474 15.608 C 22.451 15.563 22.407 15.563 22.34 15.563 L 22.34 15.497 L 22.718 15.497 L 23.274 16.208 L 23.274 15.986 C 23.274 15.808 23.274 15.719 23.252 15.652 C 23.252 15.586 23.207 15.563 23.074 15.563 L 23.074 15.497 L 23.496 15.497 L 23.496 15.563 C 23.408 15.563 23.363 15.585 23.363 15.653 C 23.363 15.697 23.341 15.808 23.341 15.986 L 23.341 16.608 Z M 24.097 16.52 L 24.141 16.52 C 24.208 16.52 24.208 16.497 24.186 16.43 L 24.119 16.253 L 23.829 16.253 L 23.785 16.408 C 23.763 16.475 23.763 16.498 23.83 16.498 L 23.874 16.498 L 23.874 16.564 L 23.474 16.564 L 23.474 16.497 C 23.564 16.475 23.585 16.475 23.652 16.342 L 23.985 15.475 L 24.097 15.452 L 24.207 15.764 C 24.274 15.964 24.363 16.164 24.407 16.342 C 24.452 16.497 24.497 16.497 24.586 16.52 L 24.586 16.586 L 24.052 16.586 L 24.052 16.52 Z M 23.874 16.164 L 24.097 16.164 L 23.985 15.83 L 23.875 16.164 Z M 21.562 18.343 C 21.562 18.521 21.584 18.543 21.718 18.543 L 21.718 18.61 L 21.118 18.61 L 21.118 18.543 C 21.251 18.543 21.273 18.521 21.273 18.343 L 21.273 17.609 L 21.251 17.609 C 21.14 17.609 21.095 17.631 21.073 17.653 C 21.051 17.676 21.028 17.72 21.006 17.809 L 20.939 17.809 C 20.939 17.676 20.962 17.542 20.962 17.453 L 21.006 17.453 C 21.028 17.498 21.051 17.498 21.096 17.498 L 21.762 17.498 C 21.807 17.498 21.807 17.498 21.851 17.453 L 21.895 17.453 C 21.895 17.52 21.895 17.676 21.918 17.787 L 21.851 17.787 C 21.829 17.676 21.807 17.631 21.784 17.609 C 21.762 17.587 21.695 17.564 21.629 17.564 L 21.562 17.564 Z M 22.452 18.343 C 22.452 18.52 22.474 18.543 22.585 18.543 L 22.585 18.61 L 22.029 18.61 L 22.029 18.543 C 22.14 18.543 22.163 18.52 22.163 18.343 L 22.163 17.787 C 22.163 17.609 22.14 17.587 22.029 17.587 L 22.029 17.52 L 22.585 17.52 L 22.585 17.587 C 22.474 17.587 22.452 17.609 22.452 17.787 Z M 23.875 18.054 C 23.875 18.409 23.63 18.632 23.297 18.632 C 23.148 18.637 23.003 18.581 22.898 18.475 C 22.792 18.37 22.736 18.225 22.741 18.076 C 22.741 17.809 22.919 17.476 23.319 17.476 C 23.63 17.498 23.875 17.72 23.875 18.054 Z M 23.052 18.031 C 23.052 18.343 23.163 18.565 23.341 18.565 C 23.497 18.565 23.563 18.432 23.563 18.12 C 23.563 17.787 23.43 17.587 23.297 17.587 C 23.141 17.587 23.052 17.72 23.052 18.031 Z M 22.074 19.543 L 22.074 19.61 C 21.94 19.632 21.94 19.632 21.94 19.81 L 21.962 20.366 C 21.962 20.544 21.962 20.566 22.096 20.566 L 22.096 20.633 L 21.562 20.633 L 21.562 20.566 C 21.696 20.544 21.696 20.544 21.696 20.366 L 21.696 19.766 L 21.362 20.61 L 21.273 20.61 L 20.962 19.832 L 20.94 20.21 L 20.94 20.5 C 20.94 20.566 20.984 20.588 21.095 20.588 L 21.095 20.655 L 20.673 20.655 L 20.673 20.588 C 20.762 20.588 20.784 20.566 20.806 20.499 C 20.806 20.455 20.828 20.366 20.828 20.21 L 20.851 19.877 C 20.873 19.654 20.851 19.654 20.717 19.632 L 20.717 19.543 L 21.117 19.543 L 21.407 20.21 L 21.673 19.543 L 22.073 19.543 Z M 22.34 19.81 C 22.34 19.632 22.318 19.61 22.207 19.61 L 22.207 19.543 L 23.007 19.543 C 23.007 19.565 23.007 19.699 23.029 19.833 L 22.963 19.833 C 22.94 19.743 22.918 19.699 22.896 19.677 C 22.874 19.654 22.807 19.632 22.718 19.632 L 22.696 19.632 C 22.629 19.632 22.629 19.632 22.629 19.699 L 22.629 20.032 L 22.719 20.032 C 22.874 20.032 22.874 20.032 22.896 19.899 L 22.963 19.899 L 22.963 20.299 L 22.896 20.299 C 22.874 20.144 22.874 20.144 22.718 20.144 L 22.629 20.144 L 22.629 20.41 C 22.629 20.5 22.629 20.544 22.674 20.566 C 22.696 20.588 22.74 20.588 22.784 20.588 C 22.852 20.588 22.918 20.588 22.963 20.544 C 23.006 20.493 23.037 20.432 23.052 20.366 L 23.118 20.388 C 23.118 20.477 23.074 20.655 23.052 20.699 L 22.185 20.699 L 22.185 20.633 C 22.318 20.61 22.318 20.61 22.318 20.433 L 22.318 19.81 Z M 23.697 20.588 L 23.741 20.588 C 23.808 20.588 23.808 20.566 23.786 20.499 L 23.719 20.321 L 23.452 20.321 L 23.408 20.477 C 23.385 20.544 23.385 20.566 23.452 20.566 L 23.497 20.566 L 23.497 20.633 L 23.119 20.633 L 23.119 20.566 C 23.208 20.544 23.229 20.544 23.297 20.41 L 23.63 19.543 L 23.741 19.521 L 23.852 19.832 C 23.919 20.032 24.008 20.232 24.052 20.41 C 24.097 20.566 24.142 20.566 24.23 20.566 L 24.23 20.633 L 23.697 20.633 Z M 23.497 20.21 L 23.719 20.21 L 23.608 19.877 Z M 17.782 34.24 C 17.782 34.484 17.582 34.684 17.338 34.684 C 17.093 34.683 16.894 34.485 16.893 34.24 C 16.893 33.995 17.093 33.795 17.338 33.795 C 17.582 33.795 17.782 33.995 17.782 34.24 Z M 22.273 34.973 C 22.273 35.218 22.073 35.418 21.828 35.418 C 21.583 35.417 21.385 35.218 21.384 34.973 C 21.403 34.742 21.596 34.564 21.829 34.564 C 22.061 34.564 22.254 34.742 22.273 34.973 Z M 19.74 3.024 C 19.74 3.268 19.54 3.468 19.295 3.468 C 19.05 3.467 18.851 3.269 18.85 3.024 C 18.85 2.779 19.05 2.579 19.295 2.579 C 19.539 2.579 19.739 2.779 19.739 3.024 Z M 30.255 7.159 C 30.255 7.404 30.033 7.581 29.788 7.581 C 29.669 7.578 29.557 7.527 29.477 7.439 C 29.397 7.351 29.357 7.234 29.366 7.115 C 29.366 6.87 29.588 6.692 29.833 6.692 C 30.074 6.713 30.259 6.917 30.255 7.159 Z M 8.088 26.146 C 8.266 26.391 8.355 26.658 8.333 26.925 C 8.333 27.235 8.222 27.48 7.666 27.858 L 6.066 28.992 L 5.776 28.57 C 5.776 28.57 7.421 27.414 7.444 27.392 C 7.733 27.192 7.844 27.058 7.844 26.836 C 7.84 26.675 7.785 26.519 7.688 26.391 C 7.533 26.169 7.333 26.08 7.132 26.08 C 6.977 26.08 6.799 26.19 6.488 26.413 L 4.998 27.436 L 4.709 27.014 L 6.132 26.035 C 6.532 25.746 6.843 25.568 7.132 25.568 C 7.577 25.591 7.888 25.858 8.088 26.146 Z M 2.975 23.034 L 6.021 21.967 L 6.177 22.433 L 4.443 24.546 L 6.643 23.679 L 6.799 24.123 L 3.798 25.279 L 3.642 24.812 L 5.376 22.7 L 3.131 23.478 Z M 5.723 20.133 L 2.533 20.606 L 2.609 21.112 L 5.798 20.639 Z M 2.419 16.786 L 2.441 16.253 L 5.621 17.543 L 5.598 18.053 L 2.33 19.032 L 2.33 18.498 L 4.976 17.765 Z M 5.332 9.583 C 4.887 9.583 4.665 9.849 4.376 10.361 L 3.998 11.028 L 6.822 12.562 L 7.066 12.117 L 5.888 11.472 L 5.955 11.339 C 6.155 10.983 6.221 10.916 6.733 10.961 L 7.644 11.05 L 7.911 10.583 L 6.844 10.494 C 6.622 10.472 6.466 10.45 6.333 10.494 C 6.279 10.52 6.227 10.55 6.177 10.583 C 6.199 10.516 6.221 10.472 6.221 10.405 C 6.221 10.316 6.199 10.227 6.177 10.138 C 6.101 9.947 5.959 9.789 5.777 9.694 C 5.639 9.623 5.487 9.585 5.332 9.583 Z M 4.754 10.561 C 4.932 10.227 5.087 10.094 5.265 10.094 C 5.358 10.098 5.449 10.12 5.532 10.161 C 5.643 10.227 5.754 10.339 5.777 10.45 C 5.799 10.494 5.799 10.539 5.799 10.583 C 5.799 10.783 5.688 10.961 5.577 11.161 L 5.51 11.272 L 4.598 10.783 Z M 9.265 4.728 L 8.858 5.038 L 10.809 7.604 L 11.216 7.294 Z M 10.623 3.78 L 12.691 2.712 L 12.891 3.09 L 12.091 3.513 L 13.358 5.981 L 12.914 6.225 L 11.624 3.757 L 10.824 4.18 L 10.624 3.78 Z M 15.804 1.734 L 16.337 1.579 L 15.915 3.735 L 16.248 4.958 L 15.759 5.091 L 15.426 3.891 L 13.892 2.291 L 14.425 2.134 L 15.515 3.268 Z M 25.608 6.114 L 27.231 3.357 L 28.765 4.269 L 28.543 4.647 L 27.453 4.002 L 27.009 4.758 L 28.032 5.358 L 27.809 5.736 L 26.787 5.136 L 26.053 6.381 Z M 33.858 13.296 L 35.036 11.895 L 35.214 12.429 L 34.347 13.429 L 35.637 13.719 L 35.814 14.252 L 34.035 13.829 L 32.79 15.319 L 32.612 14.785 L 33.546 13.674 L 32.146 13.362 L 31.968 12.829 Z M 32.945 16.453 L 36.147 16.186 L 36.303 17.965 L 35.858 17.987 L 35.747 16.72 L 34.857 16.809 L 34.969 17.987 L 34.546 18.031 L 34.435 16.831 L 32.99 16.942 L 32.945 16.452 Z M 34.369 19.299 C 33.991 19.299 33.657 19.409 33.391 19.588 C 33.023 19.857 32.807 20.288 32.813 20.744 C 32.813 21.834 33.835 22.256 34.591 22.256 C 34.969 22.256 35.303 22.145 35.569 21.966 C 36.103 21.566 36.147 20.988 36.147 20.788 C 36.147 19.877 35.258 19.298 34.369 19.298 Z M 34.613 21.767 C 33.991 21.767 33.257 21.433 33.257 20.788 C 33.257 20.502 33.388 20.232 33.613 20.055 C 33.813 19.921 34.058 19.832 34.324 19.832 C 34.636 19.832 35.214 19.922 35.525 20.344 C 35.632 20.484 35.687 20.657 35.681 20.833 C 35.676 21.118 35.546 21.386 35.325 21.566 C 35.147 21.7 34.902 21.766 34.613 21.766 Z M 32.501 8.604 C 32.168 8.604 31.834 8.715 31.501 8.916 C 30.878 9.316 30.656 9.872 30.656 10.272 C 30.656 10.539 30.723 10.805 30.878 11.028 C 31.212 11.561 31.745 11.695 32.078 11.695 C 32.412 11.695 32.768 11.584 33.101 11.383 C 33.501 11.139 33.946 10.672 33.946 10.027 C 33.951 9.758 33.874 9.494 33.724 9.271 C 33.413 8.849 32.99 8.604 32.501 8.604 Z M 31.99 11.228 C 31.69 11.24 31.408 11.086 31.256 10.828 C 31.168 10.688 31.122 10.526 31.123 10.361 C 31.123 10.005 31.345 9.627 31.767 9.361 C 32.057 9.182 32.323 9.093 32.567 9.093 C 32.879 9.093 33.124 9.227 33.301 9.493 C 33.391 9.649 33.457 9.827 33.457 9.983 C 33.457 10.338 33.235 10.694 32.835 10.939 C 32.545 11.139 32.257 11.228 31.99 11.228 Z M 23.719 1.979 C 23.052 1.979 22.474 2.423 22.229 3.224 C 22.178 3.397 22.148 3.576 22.14 3.757 C 22.14 4.069 22.185 4.336 22.318 4.58 C 22.607 5.114 23.163 5.314 23.563 5.314 C 23.808 5.314 24.03 5.269 24.23 5.158 C 24.764 4.869 25.142 4.18 25.142 3.513 C 25.142 3.223 25.075 2.957 24.964 2.735 C 24.728 2.266 24.244 1.972 23.719 1.979 Z M 23.563 4.847 C 23.244 4.844 22.952 4.664 22.807 4.38 C 22.716 4.201 22.671 4.003 22.674 3.802 C 22.674 3.224 23.052 2.423 23.764 2.423 C 24.164 2.423 24.653 2.713 24.653 3.446 C 24.653 3.913 24.319 4.846 23.563 4.846 Z M 5.932 13.651 L 6.355 13.763 L 5.865 15.541 L 2.753 14.674 L 3.287 12.896 L 3.709 13.006 L 3.331 14.296 L 4.176 14.541 L 4.509 13.362 L 4.932 13.474 L 4.598 14.652 L 5.577 14.919 Z M 6.732 6.937 C 7.177 6.426 7.644 6.47 7.644 6.47 L 7.733 6.893 C 7.733 6.893 7.377 6.893 7.11 7.203 C 7 7.337 6.932 7.471 6.932 7.604 C 6.932 7.715 6.977 7.804 7.066 7.871 C 7.288 8.071 7.666 7.849 7.911 7.76 C 8.089 7.693 8.355 7.582 8.622 7.582 C 8.822 7.582 9.022 7.626 9.2 7.804 C 9.404 7.974 9.519 8.228 9.512 8.494 C 9.512 8.76 9.4 9.004 9.2 9.249 C 8.8 9.716 8.244 9.761 8.244 9.761 L 8.134 9.338 C 8.467 9.272 8.711 9.138 8.844 8.96 C 8.956 8.827 9.022 8.671 9.022 8.56 C 9.023 8.431 8.966 8.309 8.867 8.227 C 8.784 8.164 8.681 8.132 8.577 8.137 C 8.377 8.137 8.133 8.249 7.911 8.337 C 7.511 8.493 7.111 8.627 6.732 8.293 C 6.555 8.115 6.443 7.915 6.443 7.671 C 6.446 7.399 6.549 7.137 6.733 6.937 Z M 32.1 23.456 L 33.324 24.012 L 33.257 24.146 C 33.101 24.524 33.034 24.59 32.523 24.59 L 31.611 24.59 L 31.389 25.08 L 32.456 25.08 C 32.679 25.08 32.834 25.08 32.968 25.035 C 33.012 25.013 33.057 24.991 33.101 24.946 C 33.101 24.968 33.079 24.99 33.079 25.035 C 33.077 25.15 33.1 25.264 33.146 25.369 C 33.301 25.702 33.679 25.879 33.968 25.879 C 34.48 25.879 34.68 25.569 34.924 25.013 C 34.924 24.99 35.214 24.323 35.214 24.323 L 32.3 23.012 Z M 33.99 25.369 C 33.774 25.368 33.58 25.236 33.501 25.035 C 33.479 24.968 33.479 24.902 33.479 24.857 C 33.479 24.679 33.568 24.501 33.657 24.301 L 33.701 24.168 L 34.635 24.59 L 34.525 24.835 C 34.346 25.257 34.235 25.369 33.99 25.369 Z M 30.411 26.502 C 30.078 26.925 29.833 27.302 29.833 27.77 C 29.833 28.17 30.011 28.637 30.478 29.015 C 30.789 29.259 31.145 29.393 31.5 29.393 C 31.945 29.393 32.3 29.259 32.857 28.57 L 33.368 27.925 L 30.856 25.925 Z M 31.545 28.926 C 31.3 28.926 31.055 28.836 30.789 28.636 C 30.544 28.436 30.278 28.126 30.278 27.726 C 30.278 27.436 30.433 27.169 30.656 26.88 L 30.878 26.613 L 32.723 28.081 L 32.59 28.259 C 32.234 28.681 31.99 28.926 31.545 28.926 Z\" fill=\"rgb(0,28,84)\"></path><path d=\"M 37.726 18.387 C 37.726 8.25 29.455 0 19.316 0 C 9.157 0 0.908 8.249 0.908 18.387 C 0.908 24.479 3.91 30.127 8.935 33.572 C 9.442 35.463 11.157 36.777 13.115 36.774 C 13.648 36.774 14.182 36.663 14.671 36.485 C 15.338 36.707 16.049 36.885 16.738 37.041 C 16.538 37.597 16.249 38.131 15.983 38.597 L 16.005 38.597 L 15.982 38.597 L 16.361 38.975 C 16.463 38.919 16.578 38.889 16.694 38.886 C 17.072 38.886 17.384 39.198 17.384 39.576 C 17.381 39.956 17.074 40.263 16.694 40.265 C 16.36 40.265 16.071 40.042 15.916 39.82 C 15.916 39.82 15.826 40.131 15.826 40.532 C 15.826 41.843 17.272 43.355 19.273 44 C 21.274 43.377 22.719 41.866 22.719 40.532 C 22.719 40.087 22.63 39.82 22.63 39.82 C 22.475 39.998 22.23 40.265 21.852 40.265 C 21.472 40.263 21.164 39.955 21.162 39.575 C 21.162 39.198 21.474 38.886 21.852 38.886 C 21.986 38.886 22.097 38.931 22.208 38.997 L 22.586 38.62 L 22.608 38.62 C 22.422 38.164 22.266 37.696 22.141 37.219 C 25.454 36.774 28.255 35.373 30.457 33.039 C 35.081 29.504 37.727 24.168 37.727 18.387 Z M 13.113 36.263 C 11.016 36.256 9.318 34.558 9.311 32.461 C 9.311 31.794 9.489 31.194 9.778 30.638 C 9.978 30.816 10.178 30.993 10.401 31.193 C 10.223 31.593 10.111 32.016 10.111 32.483 C 10.111 33.617 10.69 34.573 11.779 35.218 C 12.402 35.596 13.113 35.929 13.869 36.218 C 13.625 36.24 13.38 36.263 13.113 36.263 Z M 19.317 30.727 C 18.538 30.727 17.76 30.66 16.982 30.504 C 16.238 29.05 14.746 28.133 13.113 28.125 C 12.713 28.125 12.335 28.192 11.957 28.281 C 8.817 25.952 6.962 22.275 6.955 18.365 C 6.955 11.561 12.491 6.025 19.295 6.025 C 26.098 6.025 31.634 11.561 31.634 18.365 C 31.656 25.191 26.12 30.727 19.317 30.727 Z M 22.051 30.949 C 21.673 31.483 21.451 32.216 21.407 32.95 C 20.324 32.661 19.268 32.282 18.249 31.816 C 18.427 31.483 18.939 31.238 19.317 31.238 C 20.25 31.238 21.162 31.127 22.051 30.949 Z M 18.138 31.193 C 17.99 31.304 17.862 31.439 17.76 31.593 C 17.272 31.362 16.79 31.118 16.315 30.86 C 16.916 31.004 17.525 31.115 18.138 31.194 Z M 13.113 28.659 C 14.381 28.659 15.581 29.304 16.27 30.349 C 15.67 30.193 15.07 29.993 14.47 29.749 L 14.447 29.749 C 14.047 29.549 13.602 29.459 13.136 29.459 C 12.113 29.459 11.224 29.949 10.668 30.704 C 10.445 30.571 10.201 30.438 9.978 30.304 C 10.69 29.304 11.824 28.659 13.113 28.659 Z M 21.851 38.353 C 21.161 38.353 20.606 38.842 20.606 39.575 C 20.606 40.287 21.162 40.798 21.851 40.798 C 21.962 40.798 22.051 40.776 22.141 40.754 C 22.007 41.777 20.806 42.911 19.272 43.422 C 17.76 42.911 16.56 41.754 16.404 40.754 C 16.493 40.776 16.604 40.798 16.693 40.798 C 17.427 40.798 17.938 40.287 17.938 39.575 C 17.938 38.908 17.404 38.375 16.738 38.353 C 16.938 37.975 17.138 37.574 17.293 37.13 C 18.138 37.285 18.961 37.352 19.739 37.352 C 20.384 37.352 20.984 37.308 21.584 37.263 C 21.674 37.619 21.784 37.975 21.918 38.353 Z M 19.74 36.84 C 17.272 36.84 14.182 35.995 12.07 34.75 C 11.425 34.372 10.669 33.66 10.669 32.46 C 10.669 32.126 10.735 31.815 10.847 31.548 C 11.647 32.193 12.447 32.816 12.959 33.105 C 13.057 33.17 13.174 33.201 13.292 33.193 C 13.626 33.193 13.892 32.927 13.892 32.593 C 13.899 32.352 13.758 32.132 13.537 32.037 C 13.092 31.837 12.181 31.459 11.202 30.948 C 11.669 30.348 12.381 29.948 13.182 29.948 C 13.559 29.948 13.915 30.036 14.248 30.192 L 14.915 30.592 C 17.072 31.904 22.608 35.284 29.278 33.416 C 26.721 35.706 23.608 36.84 19.74 36.84 Z M 30.1 32.616 C 27.1 33.683 24.32 33.594 21.941 33.06 C 22.03 31.993 22.452 30.859 23.141 30.637 C 28.389 29.014 32.213 24.122 32.213 18.364 C 32.213 11.271 26.433 5.513 19.34 5.513 C 12.225 5.513 6.467 11.271 6.467 18.363 C 6.467 22.299 8.312 26.057 11.402 28.48 C 10.675 28.81 10.047 29.323 9.579 29.97 C 9.335 29.814 9.112 29.636 8.912 29.48 L 8.802 29.592 C 8.935 29.77 9.157 29.992 9.424 30.237 C 9.046 30.881 8.824 31.637 8.824 32.437 C 8.824 32.571 8.824 32.682 8.846 32.816 C 4.222 29.463 1.486 24.097 1.486 18.386 C 1.485 8.537 9.512 0.511 19.361 0.511 C 29.211 0.511 37.237 8.515 37.237 18.387 C 37.17 24.034 34.591 29.215 30.1 32.617 Z M 60.76 28.881 C 60.76 33.795 56.958 37.374 52.222 37.374 C 47.398 37.374 43.685 33.773 43.685 29.059 C 43.685 24.146 47.486 20.566 52.222 20.566 C 57.047 20.544 60.76 24.168 60.76 28.881 Z M 58.047 28.971 C 58.047 24.501 55.869 21.366 52.222 21.366 C 48.242 21.366 46.397 25.124 46.397 28.97 C 46.397 33.44 48.576 36.552 52.222 36.552 C 56.202 36.552 58.047 32.794 58.047 28.97 Z M 112.898 28.881 C 112.898 33.795 109.096 37.374 104.36 37.374 C 99.535 37.374 95.822 33.773 95.822 29.059 C 95.822 24.146 99.624 20.566 104.36 20.566 C 109.207 20.544 112.898 24.168 112.898 28.881 Z M 110.185 28.971 C 110.185 24.501 108.006 21.366 104.36 21.366 C 100.38 21.366 98.535 25.124 98.535 28.97 C 98.535 33.44 100.714 36.552 104.36 36.552 C 108.34 36.552 110.185 32.794 110.185 28.97 Z M 119.5 29.037 L 121.524 29.037 C 124.592 29.037 125.281 27.102 125.281 25.235 C 125.281 23.834 124.636 22.522 123.191 21.9 C 122.435 21.589 121.701 21.589 120.701 21.589 L 119.478 21.589 L 119.478 29.037 Z M 123.258 31.66 C 122.302 30.304 121.946 29.815 120.768 29.815 L 119.5 29.815 L 119.5 35.329 C 119.5 35.773 119.678 35.996 120.19 36.085 L 122.035 36.485 L 122.035 37.085 L 114.765 37.085 L 114.765 36.485 L 116.432 36.085 C 116.921 35.951 117.099 35.773 117.099 35.329 L 117.099 22.589 C 117.099 22.144 116.921 21.966 116.432 21.811 L 114.765 21.411 L 114.765 20.832 L 121.857 20.832 C 123.347 20.832 124.392 20.966 125.237 21.277 C 126.993 21.967 127.994 23.634 127.994 25.212 C 127.994 27.214 126.504 28.881 124.014 29.459 L 124.014 29.548 C 124.503 29.77 124.792 30.082 126.548 32.394 L 128.772 35.329 C 129.083 35.773 129.505 36.04 129.995 36.151 L 131.618 36.507 L 131.618 37.107 L 127.727 37.107 C 127.282 37.107 127.038 36.974 126.637 36.418 Z M 91.397 26.39 L 92.064 26.39 L 92.064 31.816 L 91.398 31.816 L 90.998 30.193 C 90.864 29.615 90.508 29.37 89.952 29.37 L 86.017 29.37 L 86.017 35.329 C 86.017 35.773 86.195 35.996 86.707 36.085 L 88.552 36.485 L 88.552 37.085 L 81.282 37.085 L 81.282 36.485 L 82.949 36.085 C 83.438 35.951 83.638 35.773 83.638 35.329 L 83.638 22.589 C 83.638 22.144 83.46 21.966 82.948 21.833 L 81.281 21.433 L 81.281 20.833 L 93.576 20.833 L 93.576 24.9 L 92.887 24.9 L 92.131 22.455 C 91.953 21.832 91.686 21.588 91.131 21.588 L 86.017 21.588 L 86.017 28.591 L 89.952 28.591 C 90.486 28.591 90.819 28.369 90.997 27.768 Z M 132.908 37.085 L 132.908 36.485 L 134.575 36.085 C 135.064 35.951 135.264 35.773 135.264 35.329 L 135.264 22.589 C 135.264 22.144 135.087 21.966 134.575 21.833 L 132.908 21.433 L 132.908 20.833 L 140.556 20.833 C 142.624 20.833 144.136 21.099 145.336 21.655 C 148.404 23.055 149.805 26.08 149.805 29.059 C 149.805 31.949 148.716 34.662 145.959 36.107 C 144.691 36.797 142.935 37.107 140.623 37.107 L 132.908 37.107 Z M 137.666 21.588 L 137.666 35.596 C 137.666 36.196 137.799 36.329 138.399 36.329 L 140.378 36.329 C 142.268 36.329 143.669 36.062 144.669 35.329 C 146.337 34.106 147.115 31.905 147.115 29.103 C 147.115 26.346 146.337 23.633 144.091 22.323 C 143.135 21.766 141.912 21.588 140.022 21.588 Z M 67.14 36.508 L 67.14 37.108 L 61.404 37.108 L 61.404 36.508 L 62.849 36.152 C 63.383 36.019 63.761 35.841 64.117 35.418 L 69.097 29.193 L 64.117 22.589 C 63.805 22.145 63.405 21.923 62.894 21.767 L 61.538 21.411 L 61.538 20.811 L 68.675 20.811 L 68.675 21.411 L 67.141 21.722 C 66.607 21.812 66.741 22.034 67.007 22.412 L 70.676 27.659 L 70.765 27.659 L 74.522 22.412 C 74.789 22.056 74.878 21.922 74.389 21.789 L 72.944 21.433 L 72.944 20.833 L 78.68 20.833 L 78.68 21.433 L 77.234 21.789 C 76.701 21.922 76.323 22.1 75.967 22.5 L 71.276 28.415 L 76.479 35.329 C 76.789 35.774 77.212 35.996 77.701 36.152 L 79.058 36.508 L 79.058 37.108 L 71.92 37.108 L 71.92 36.508 L 73.454 36.196 C 73.987 36.107 73.899 35.929 73.632 35.552 L 69.652 29.949 L 69.563 29.949 L 65.539 35.507 C 65.272 35.863 65.183 35.997 65.672 36.13 Z M 50.021 13.162 C 49.576 13.607 48.887 13.918 47.953 13.918 C 47.131 13.918 46.375 13.651 45.863 13.14 C 45.152 12.429 45.196 11.54 45.196 10.583 L 45.196 6.07 L 46.108 6.07 L 46.108 10.939 C 46.108 11.562 46.086 12.162 46.575 12.629 C 46.908 12.962 47.42 13.14 47.998 13.14 C 48.576 13.14 49.021 12.94 49.31 12.65 C 49.843 12.117 49.799 11.54 49.799 10.16 L 49.799 6.093 L 50.71 6.093 L 50.71 9.939 C 50.71 11.362 50.755 12.429 50.021 13.163 Z M 58.203 13.763 L 54.49 7.448 L 54.512 13.763 L 53.667 13.763 L 53.667 6.07 L 54.623 6.07 L 58.337 12.429 L 58.314 6.069 L 59.159 6.069 L 59.159 13.763 Z M 63.317 6.07 L 62.383 6.07 L 62.383 13.785 L 63.317 13.785 Z M 69.075 13.763 L 68.008 13.763 L 65.34 6.07 L 66.318 6.07 L 68.564 12.873 L 70.876 6.07 L 71.766 6.07 L 69.076 13.763 Z M 73.877 13.763 L 73.877 6.07 L 78.057 6.07 L 78.057 6.826 L 74.79 6.826 L 74.79 9.383 L 77.858 9.383 L 77.858 10.139 L 74.79 10.139 L 74.79 12.984 L 78.147 12.984 L 78.147 13.763 L 73.878 13.763 Z M 84.016 7.226 C 83.571 6.781 82.993 6.804 82.371 6.804 L 81.526 6.804 L 81.526 9.694 L 81.837 9.694 C 82.615 9.694 83.46 9.738 83.972 9.204 C 84.216 8.96 84.372 8.582 84.372 8.204 C 84.372 7.76 84.194 7.404 84.016 7.226 Z M 84.861 13.763 L 83.971 11.762 C 83.416 10.539 83.171 10.405 82.059 10.405 L 81.526 10.405 L 81.526 13.763 L 80.614 13.763 L 80.614 6.048 L 82.282 6.048 C 83.305 6.048 84.082 6.048 84.683 6.648 C 85.061 7.026 85.283 7.538 85.283 8.182 C 85.283 8.716 85.128 9.16 84.794 9.516 C 84.463 9.857 84.022 10.07 83.549 10.116 C 83.816 10.139 84.039 10.272 84.194 10.428 C 84.394 10.628 84.55 10.961 84.772 11.45 L 85.817 13.763 Z M 95.755 6.07 L 94.821 6.07 L 94.821 13.785 L 95.755 13.785 Z M 101.047 6.826 L 101.047 13.763 L 100.113 13.763 L 100.113 6.826 L 97.823 6.826 L 97.823 6.07 L 103.314 6.07 L 103.314 6.826 Z M 107.762 10.717 L 107.762 13.763 L 106.85 13.763 L 106.85 10.717 L 104.404 6.07 L 105.449 6.07 L 107.361 9.672 L 109.207 6.07 L 110.207 6.07 Z M 118.855 6.714 C 117.343 6.714 116.365 7.982 116.365 9.916 C 116.365 11.828 117.455 13.14 118.9 13.14 C 120.501 13.14 121.412 11.761 121.412 9.85 C 121.412 7.96 120.345 6.714 118.855 6.714 Z M 118.855 13.918 C 116.854 13.918 115.409 12.273 115.409 9.961 C 115.409 7.581 116.854 5.936 118.944 5.936 C 120.968 5.936 122.39 7.582 122.39 9.894 C 122.368 12.273 120.923 13.918 118.855 13.918 Z M 125.815 6.826 L 125.815 9.383 L 128.794 9.383 L 128.794 10.116 L 125.815 10.116 L 125.815 13.763 L 124.903 13.763 L 124.903 6.07 L 128.994 6.07 L 128.994 6.826 Z M 87.684 7.937 C 87.684 6.759 88.641 5.914 90.019 5.914 C 91.419 5.914 92.109 6.648 92.176 6.714 L 91.731 7.27 C 91.553 7.137 90.931 6.692 90.086 6.692 C 89.108 6.692 88.552 7.204 88.552 7.892 C 88.552 8.226 88.685 8.471 88.907 8.671 C 89.174 8.916 89.552 9.093 89.975 9.271 C 90.485 9.516 91.197 9.783 91.665 10.271 C 91.998 10.605 92.242 11.05 92.242 11.651 C 92.242 12.94 91.353 13.918 89.752 13.918 C 88.396 13.918 87.529 13.162 87.44 13.096 L 87.862 12.473 C 88.085 12.629 88.93 13.14 89.73 13.14 C 90.886 13.14 91.33 12.495 91.33 11.74 C 91.33 11.383 91.175 11.094 90.93 10.872 C 90.575 10.516 90.019 10.294 89.508 10.05 C 88.996 9.805 88.485 9.56 88.129 9.182 C 87.929 8.96 87.684 8.56 87.684 7.937 Z\" fill=\"rgb(0,28,84)\"></path></svg>',svgContentId:9842658632,withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:18,intrinsicWidth:87,pixelHeight:36,pixelWidth:174,src:\"https://framerusercontent.com/images/n0CEYqT9qXA0x0qpI9lenrxQk.svg\"},className:\"framer-6tmgxi\",\"data-framer-name\":\"Cambridge\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-134o2sq\",\"data-framer-name\":\"Tokyo\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 170 44\"><g transform=\"translate(0.537 0.127)\" id=\"ss11054629483_1\"><path d=\"M 0 0.41 L 169.4 0.41 L 169.4 44.41 L 0 44.41 Z\" fill=\"transparent\"></path><path d=\"M 43.823 21.669 C 43.817 21.216 43.452 20.851 42.999 20.844 C 42.934 20.846 42.87 20.855 42.807 20.872 C 35.384 22.405 27.793 22.969 20.225 22.548 C 17.837 22.415 15.488 22.548 13.175 22.725 C 13 22.738 12.825 22.757 12.652 22.782 C 10.798 23.036 9.026 23.858 7.652 25.2 C 6.426 26.399 5.575 27.928 5.202 29.602 C 4.76 31.612 5.072 33.687 5.924 35.545 C 6.758 37.36 8.068 38.915 9.714 40.045 C 11.501 41.243 13.455 42.171 15.513 42.799 C 16.81 43.189 17.965 43.429 19.33 43.599 C 19.348 43.083 20.127 42.277 20.154 41.889 C 20.182 41.501 19.89 41.163 19.502 41.134 C 17.376 41.214 15.817 41.163 13.822 40.42 C 11.77 39.649 9.931 38.399 8.46 36.773 C 7.756 35.993 7.173 35.138 6.796 34.156 C 6.428 33.172 6.269 32.121 6.329 31.072 C 6.528 27.557 9.263 24.582 12.753 24.081 C 14.696 23.807 16.669 24.299 18.256 25.452 C 19.081 26.053 19.774 26.816 20.294 27.694 C 20.885 28.683 21.358 29.738 21.706 30.836 C 22.412 33.129 22.476 35.636 22.174 38.001 C 22.042 39.008 21.831 40.002 21.544 40.976 C 21.38 41.53 21.188 42.075 20.969 42.609 C 20.865 42.859 20.891 43.144 21.038 43.371 C 21.186 43.598 21.435 43.738 21.706 43.745 L 21.913 43.748 C 27.071 43.755 32.065 41.937 36.01 38.614 L 36.022 38.603 C 36.181 38.453 36.27 38.244 36.269 38.025 C 36.264 37.867 36.218 37.712 36.134 37.577 C 34.706 35.098 31.596 31.539 31.596 31.539 C 31.596 31.539 35.116 34.689 37.639 36.069 C 37.777 36.149 37.933 36.194 38.093 36.199 C 38.323 36.203 38.543 36.106 38.697 35.935 C 42.016 32.001 43.833 27.017 43.825 21.87 L 43.823 21.67 Z\" fill=\"rgb(24,127,195)\"></path><path d=\"M 4.24 31.687 C 3.368 29.765 2.85 27.701 2.711 25.595 C 2.696 25.31 2.701 24.929 2.699 24.646 C 2.699 24.458 2.625 24.277 2.492 24.144 C 2.359 24.011 2.178 23.935 1.99 23.935 C 1.597 23.935 0.763 24.652 0.18 24.652 C 0.786 29.299 2.862 33.631 6.106 37.013 C 7.688 38.663 9.648 39.939 11.875 40.543 C 13.786 41.063 15.817 40.826 17.583 39.936 C 18.433 39.508 19.201 38.932 19.849 38.235 C 20.537 37.495 21.065 36.595 21.555 35.716 C 22.07 34.786 22.516 33.822 22.921 32.836 C 23.347 31.792 23.702 30.716 24.173 29.681 C 25.956 25.793 28.466 22.236 31.859 19.589 C 33.518 18.296 35.328 17.21 37.25 16.355 C 38.227 15.921 39.232 15.549 40.257 15.243 C 40.748 15.096 41.242 14.963 41.74 14.843 C 41.952 14.78 42.13 14.633 42.232 14.437 C 42.334 14.24 42.352 14.01 42.282 13.8 C 41.028 10.648 39.057 7.832 36.525 5.573 L 36.477 5.525 C 36.327 5.393 36.135 5.32 35.935 5.318 C 35.709 5.318 35.52 5.452 35.348 5.573 C 31.305 8.377 28.327 13.059 28.327 13.059 C 28.327 13.059 29.903 9.057 33.265 4.12 C 33.349 3.995 33.392 3.848 33.387 3.697 C 33.389 3.396 33.224 3.119 32.959 2.977 C 30.875 1.761 28.605 0.898 26.239 0.423 C 24.512 0.079 22.749 -0.056 20.99 0.021 C 20.986 0.018 20.98 0.018 20.976 0.018 C 20.966 0.018 20.959 0.021 20.949 0.021 C 20.509 0.033 20.173 0.396 20.155 0.836 C 19.932 6.584 21.058 16.466 21.058 16.466 C 21.058 16.466 19.051 6.727 17.073 1.323 C 16.954 0.995 16.661 0.748 16.295 0.748 C 16.24 0.748 16.186 0.753 16.132 0.762 C 16.126 0.767 16.12 0.771 16.113 0.771 C 15.972 0.806 15.831 0.847 15.689 0.888 C 12.374 1.875 9.338 3.628 6.826 6.005 C 6.396 6.413 5.986 6.841 5.586 7.287 C 5.577 7.295 5.566 7.308 5.558 7.313 C 5.417 7.466 5.339 7.666 5.338 7.873 C 5.338 8.095 5.417 8.327 5.583 8.454 C 9.901 11.733 13.086 15.467 13.086 15.467 C 13.086 15.467 8.996 12.451 4.136 10.535 C 3.996 10.483 3.866 10.413 3.709 10.413 C 3.437 10.413 3.183 10.548 3.03 10.773 L 3.023 10.785 C 2.321 11.985 1.723 13.242 1.259 14.549 C 0.668 16.218 0.281 17.952 0.107 19.713 C 0.063 20.162 0.034 20.622 0.495 20.873 C 0.674 20.969 0.882 20.996 1.08 20.95 C 1.377 20.886 1.676 20.83 1.977 20.781 C 3.136 20.594 4.308 20.506 5.482 20.517 C 7.832 20.54 10.172 20.967 12.371 21.785 C 14.398 22.545 16.252 23.732 17.657 25.397 C 20.301 28.537 21.719 33.931 18.667 37.277 C 17.269 38.812 15.209 39.561 13.147 39.377 C 12.087 39.277 11.147 38.907 10.222 38.407 C 9.376 37.948 8.574 37.421 7.857 36.784 C 6.291 35.39 5.093 33.586 4.24 31.688 Z\" fill=\"rgb(249,190,0)\"></path><path d=\"M 97.956 20.426 C 97.956 20.069 99.962 20.35 100.899 20.633 C 101.651 20.865 102.852 21.21 104.114 22.183 C 104.834 22.741 105.715 23.729 105.715 24.913 C 105.715 26.092 105.004 26.692 104.135 26.692 C 103.664 26.628 103.179 26.346 102.753 25.917 C 102.324 25.491 101.991 24.631 100.749 23.207 C 99.344 21.598 97.956 20.664 97.956 20.426 Z M 96.623 8.838 L 96.626 6.586 L 97.616 6.273 L 97.615 6.267 C 97.739 6.236 97.826 6.125 97.828 5.997 C 97.825 5.859 97.722 5.744 97.585 5.725 L 97.585 5.718 L 93.031 5.035 L 93.031 8.838 L 83.094 8.838 L 83.409 9.518 L 106.874 9.518 C 106.874 9.518 107.156 9.106 106.874 8.838 C 106.592 8.566 104.095 7.022 104.095 7.022 L 102.435 8.837 L 96.623 8.837 Z M 92.563 21.336 L 92.565 21.332 L 88.526 19.922 C 87.033 22.394 85.652 24.389 83.476 26.23 L 83.479 26.233 C 83.43 26.271 83.401 26.329 83.401 26.391 C 83.401 26.511 83.499 26.607 83.614 26.607 C 83.64 26.606 83.666 26.6 83.689 26.588 L 83.689 26.592 C 83.692 26.589 83.693 26.589 83.697 26.589 L 83.697 26.587 C 85.617 25.89 88.391 24.125 91.675 21.889 L 92.479 21.885 C 92.635 21.886 92.762 21.761 92.764 21.605 C 92.764 21.481 92.682 21.371 92.563 21.335 Z M 136.615 12.076 C 136.246 11.723 133.548 10.062 133.548 10.062 L 131.865 12.077 L 125.879 12.077 L 125.882 6.586 L 126.874 6.273 L 126.872 6.267 C 126.997 6.238 127.086 6.126 127.087 5.997 C 127.083 5.86 126.98 5.745 126.844 5.725 L 126.844 5.718 L 122.106 5.035 L 122.106 12.077 L 112.979 12.077 L 113.294 12.758 L 122.106 12.758 C 122.052 16.122 121.271 18.738 120.117 20.646 C 118.681 23.052 116.48 25.282 112.939 27.211 C 112.939 27.211 112.936 27.211 112.936 27.215 C 112.922 27.224 112.909 27.229 112.898 27.236 L 112.899 27.236 C 112.843 27.277 112.81 27.341 112.809 27.41 C 112.809 27.467 112.831 27.521 112.871 27.56 C 112.911 27.6 112.966 27.622 113.022 27.621 C 113.042 27.621 113.063 27.616 113.083 27.613 L 113.085 27.616 C 117.356 26.391 120.787 24.46 122.561 22.13 C 124.079 20.137 125.148 17.884 125.462 14.965 C 125.781 17.556 126.434 19.642 127.404 21.198 C 128.642 23.418 130.695 25.532 133.489 27.273 C 133.507 27.286 133.526 27.299 133.546 27.31 C 133.633 27.347 133.734 27.335 133.809 27.277 C 133.873 27.23 133.916 27.16 133.93 27.082 C 134.115 26.05 135.461 25.152 136.492 24.782 C 133.191 22.946 130.498 20.748 129.189 19.089 C 127.614 17.105 126.514 14.993 125.936 12.759 L 136.615 12.759 C 136.615 12.759 136.982 12.431 136.615 12.077 M 149.056 5.934 C 149.028 5.988 149.033 6.079 149.097 6.18 C 149.39 6.651 150.154 7.761 150.583 8.499 C 151.107 9.406 151.158 9.745 151.484 10.075 C 151.773 10.36 152.765 10.59 153.366 10.182 C 153.97 9.77 154.039 8.929 153.788 8.294 C 153.538 7.657 152.622 6.638 151.627 6.253 C 150.63 5.871 149.228 5.616 149.056 5.933 Z M 153.946 5.144 C 153.877 5.219 153.876 5.333 153.943 5.409 C 154.27 5.832 154.948 6.679 155.471 7.531 C 156.141 8.609 156.229 9.227 156.596 9.597 C 157.174 10.167 158.198 10.055 158.541 9.709 C 159.033 9.219 159.207 8.371 159.018 7.736 C 158.72 6.734 157.801 5.886 156.501 5.434 C 155.35 5.035 154.163 4.928 153.946 5.144 Z M 148.72 9.114 C 149.267 9.206 149.621 11.312 149.08 13.189 C 148.633 14.729 147.574 15.423 146.398 15.162 C 145.486 14.958 145.179 14.149 145.461 13.21 C 145.707 12.393 146.46 11.77 146.996 11.253 C 147.543 10.721 148.197 9.821 148.345 9.395 C 148.401 9.235 148.5 9.077 148.72 9.115 Z M 158.767 19.883 L 158.767 25.736 C 158.767 27.148 156 27.597 155.164 27.597 C 154.73 27.597 154.747 27.181 154.557 26.811 C 154.396 26.504 153.901 26.075 151.152 25.863 L 150.918 25.322 L 155.283 25.322 L 155.28 19.882 L 145.447 19.882 L 145.134 19.202 L 155.28 19.202 L 155.28 16.551 L 159.456 17.011 C 159.856 17.215 159.369 17.878 158.767 18.131 L 158.767 19.201 L 164.09 19.201 L 165.98 17.171 C 165.98 17.171 168.24 18.86 168.6 19.201 C 168.956 19.543 168.6 19.883 168.6 19.883 Z\" fill=\"rgb(35,24,21)\"></path><path d=\"M 169.315 11.415 C 169.314 11.308 169.253 11.211 169.157 11.164 L 169.16 11.164 L 169.144 11.153 L 165.518 9.346 L 164.513 10.79 L 161.039 10.775 L 165.083 7.205 L 166.217 7.077 C 166.292 7.077 166.364 7.047 166.417 6.994 C 166.47 6.941 166.5 6.868 166.499 6.793 C 166.5 6.678 166.431 6.574 166.324 6.531 L 162.15 5.035 C 161.493 6.705 160.681 8.735 159.71 10.775 L 149.064 10.775 L 149.039 11.452 L 164.716 11.492 L 163.675 14.797 L 164.101 14.921 L 168.101 11.775 L 169.064 11.699 L 169.064 11.692 C 169.206 11.677 169.314 11.558 169.315 11.415 Z\" fill=\"rgb(35,24,21)\"></path><path d=\"M 164.781 14.797 L 164.781 14.794 L 161.309 12.533 L 160.286 13.61 L 149.75 13.61 L 150.062 14.29 L 160.104 14.29 L 158.176 17.393 C 158.495 17.459 158.221 18.032 158.767 18.131 L 163.562 15.234 L 164.586 15.314 L 164.586 15.307 C 164.6 15.307 164.612 15.313 164.623 15.313 C 164.747 15.313 164.856 15.232 164.893 15.113 C 164.929 14.995 164.884 14.867 164.781 14.797 Z M 70.129 22.199 C 68.424 21.446 67.087 20.491 66.115 19.334 L 70.484 19.334 L 70.484 20.367 L 73.864 19.865 L 73.864 12.875 L 74.642 12.513 C 74.769 12.461 74.854 12.34 74.861 12.203 C 74.868 12.066 74.795 11.938 74.674 11.873 L 71.4 10.02 L 70.304 11.43 L 65.906 11.43 L 65.906 8.938 L 76.054 8.938 C 76.054 8.938 76.381 8.545 76.054 8.232 C 75.724 7.917 73.484 6.622 73.484 6.622 L 72.036 8.232 L 65.906 8.232 L 65.909 6.585 L 66.903 6.272 L 66.9 6.266 C 67.024 6.236 67.112 6.124 67.112 5.996 C 67.11 5.858 67.008 5.743 66.871 5.724 L 66.874 5.717 L 62.422 5.034 L 62.422 8.233 L 52.297 8.233 L 52.587 8.938 L 62.422 8.938 L 62.422 11.428 L 57.818 11.428 L 54.594 10.194 L 54.594 20.366 L 57.976 19.863 L 57.976 19.333 L 61.402 19.33 C 58.755 22.599 55.627 24.629 52.453 26.438 L 52.456 26.438 C 52.386 26.476 52.342 26.548 52.341 26.627 C 52.341 26.744 52.437 26.84 52.553 26.84 C 52.575 26.84 52.596 26.831 52.616 26.827 L 52.616 26.829 C 55.492 25.892 58.83 24.992 62.422 22.126 L 62.422 27.596 L 65.906 27.122 L 65.906 20.309 C 66.431 21.419 67.035 22.126 67.716 22.879 C 69.238 24.637 71.36 25.749 74.112 26.777 C 74.557 25.397 75.151 24.333 76.198 24.005 L 76.369 23.737 C 74.165 23.31 72.068 23.127 70.129 22.198 M 62.422 18.652 L 57.976 18.652 L 57.976 15.594 L 62.422 15.594 Z M 62.422 14.918 L 57.976 14.918 L 57.976 12.11 L 62.422 12.11 Z M 65.906 12.108 L 70.482 12.108 L 70.482 14.918 L 65.906 14.918 Z M 65.906 15.594 L 70.482 15.594 L 70.482 18.652 L 65.906 18.652 Z M 104.605 12.336 L 104.605 12.332 L 101.228 10.418 L 100.131 11.83 L 89.734 11.83 L 86.378 10.594 L 86.378 19.439 L 89.866 18.939 L 89.866 18.359 L 93.243 18.359 L 93.243 25.321 L 88.878 25.321 L 89.112 25.862 C 91.86 26.074 92.357 26.502 92.516 26.811 C 92.71 27.181 92.691 27.596 93.125 27.596 C 93.958 27.596 96.726 27.146 96.726 25.736 L 96.726 18.36 L 100.311 18.36 L 100.311 19.339 L 103.796 18.838 L 103.796 13.341 L 104.575 12.976 C 104.709 12.921 104.797 12.791 104.797 12.646 C 104.796 12.515 104.722 12.396 104.605 12.336 Z M 100.311 17.656 L 89.866 17.656 L 89.866 12.506 L 100.311 12.506 Z M 63.133 34.553 C 63.158 34.553 63.18 34.536 63.18 34.497 L 63.18 34.317 C 63.18 33.027 63.18 32.79 63.167 32.519 C 63.151 32.23 63.085 32.098 62.819 32.037 C 62.715 32.018 62.609 32.009 62.503 32.012 C 62.415 32.012 62.365 31.993 62.365 31.932 C 62.365 31.878 62.425 31.859 62.537 31.859 L 64.716 31.859 C 64.83 31.859 64.886 31.877 64.886 31.933 C 64.886 31.993 64.838 32.012 64.742 32.012 C 64.673 32.012 64.603 32.018 64.508 32.037 C 64.288 32.079 64.224 32.223 64.208 32.519 C 64.192 32.79 64.192 37.263 64.233 37.628 C 64.256 37.865 64.303 38.051 64.546 38.088 C 64.662 38.104 64.839 38.12 64.957 38.12 C 65.048 38.12 65.088 38.144 65.088 38.187 C 65.088 38.247 65.025 38.271 64.927 38.271 L 62.657 38.271 C 62.543 38.271 62.487 38.247 62.487 38.187 C 62.487 38.144 62.521 38.12 62.617 38.12 C 62.737 38.12 62.836 38.103 62.907 38.088 C 63.067 38.051 63.109 37.865 63.139 37.62 C 63.179 37.263 63.179 36.594 63.179 35.812 L 63.179 35.067 C 63.179 35.031 63.159 35.015 63.133 35.015 L 60.049 35.015 C 60.026 35.015 59.999 35.02 59.999 35.067 L 59.999 35.812 C 59.999 36.594 59.999 37.262 60.044 37.628 C 60.064 37.865 60.114 38.051 60.356 38.088 C 60.471 38.104 60.648 38.12 60.766 38.12 C 60.859 38.12 60.9 38.144 60.9 38.187 C 60.9 38.247 60.832 38.271 60.736 38.271 L 58.457 38.271 C 58.354 38.271 58.299 38.247 58.299 38.187 C 58.299 38.144 58.329 38.12 58.424 38.12 C 58.547 38.12 58.644 38.103 58.716 38.088 C 58.878 38.051 58.92 37.865 58.951 37.619 C 58.994 37.262 58.994 32.79 58.976 32.519 C 58.958 32.229 58.896 32.097 58.626 32.036 C 58.522 32.017 58.417 32.009 58.311 32.012 C 58.224 32.012 58.177 31.992 58.177 31.932 C 58.177 31.877 58.233 31.859 58.347 31.859 L 60.527 31.859 C 60.64 31.859 60.697 31.877 60.697 31.932 C 60.697 31.992 60.647 32.012 60.55 32.012 C 60.484 32.012 60.414 32.018 60.317 32.037 C 60.098 32.079 60.032 32.223 60.017 32.519 C 59.999 32.789 59.999 33.027 59.999 34.316 L 59.999 34.497 C 59.999 34.537 60.026 34.553 60.049 34.553 Z M 72.997 30.61 C 72.973 30.225 72.888 30.045 72.534 29.967 C 72.396 29.939 72.254 29.926 72.113 29.929 C 71.996 29.929 71.929 29.908 71.929 29.829 C 71.929 29.749 72.006 29.726 72.166 29.726 L 75.06 29.726 C 75.224 29.726 75.3 29.75 75.3 29.828 C 75.3 29.908 75.236 29.929 75.128 29.929 C 75.008 29.929 74.946 29.941 74.814 29.967 C 74.525 30.02 74.437 30.218 74.417 30.61 C 74.395 30.97 74.395 34.594 74.395 34.594 C 74.395 36.234 74.707 36.924 75.235 37.374 C 75.718 37.793 76.214 37.842 76.582 37.842 C 77.055 37.842 77.635 37.68 78.067 37.23 C 78.658 36.606 78.69 35.59 78.69 34.424 C 78.69 34.424 78.69 30.97 78.67 30.611 C 78.648 30.225 78.561 30.045 78.206 29.967 C 78.078 29.94 77.948 29.928 77.818 29.929 C 77.7 29.929 77.635 29.908 77.635 29.829 C 77.635 29.749 77.712 29.726 77.862 29.726 L 80.326 29.726 C 80.478 29.726 80.555 29.75 80.555 29.828 C 80.555 29.908 80.489 29.929 80.361 29.929 C 80.241 29.929 80.173 29.941 80.048 29.967 C 79.756 30.02 79.671 30.218 79.649 30.61 C 79.626 30.97 79.626 34.22 79.626 34.22 C 79.626 35.478 79.51 36.811 78.603 37.625 C 77.839 38.315 77.063 38.44 76.367 38.44 C 75.797 38.44 74.761 38.406 73.974 37.659 C 73.427 37.137 73.018 36.3 73.018 34.661 C 73.018 34.661 73.018 30.971 72.996 30.611 M 110.419 32.519 C 110.402 32.229 110.321 32.086 110.145 32.047 C 110.049 32.021 109.95 32.009 109.851 32.012 C 109.771 32.012 109.723 31.993 109.723 31.927 C 109.723 31.877 109.788 31.859 109.919 31.859 L 111.954 31.859 C 112.058 31.859 112.126 31.877 112.126 31.927 C 112.126 31.993 112.072 32.012 111.99 32.012 C 111.912 32.012 111.849 32.018 111.751 32.037 C 111.533 32.079 111.47 32.223 111.451 32.519 C 111.434 32.79 111.434 37.306 111.47 37.669 C 111.494 37.897 111.548 38.051 111.79 38.088 C 111.906 38.104 112.079 38.12 112.205 38.12 C 112.29 38.12 112.335 38.144 112.335 38.187 C 112.335 38.247 112.267 38.271 112.179 38.271 L 109.903 38.271 C 109.798 38.271 109.739 38.247 109.739 38.187 C 109.739 38.144 109.771 38.12 109.868 38.12 C 109.99 38.12 110.086 38.103 110.159 38.088 C 110.321 38.051 110.371 37.906 110.395 37.662 C 110.436 37.306 110.436 32.79 110.419 32.519 Z M 120.997 36.074 C 120.997 35.618 120.915 35.431 120.811 35.184 C 120.757 35.049 119.67 33.179 119.388 32.742 C 119.188 32.427 118.987 32.216 118.83 32.122 C 118.727 32.06 118.611 32.023 118.491 32.012 C 118.429 32.012 118.37 31.993 118.37 31.932 C 118.37 31.884 118.429 31.859 118.526 31.859 L 120.404 31.859 C 120.488 31.859 120.526 31.884 120.526 31.933 C 120.526 31.985 120.469 31.993 120.348 32.027 C 120.315 32.037 120.286 32.057 120.266 32.084 C 120.245 32.111 120.234 32.145 120.235 32.179 C 120.235 32.251 120.277 32.351 120.333 32.469 C 120.447 32.722 121.578 34.765 121.705 35.007 C 121.787 34.8 122.805 32.937 122.918 32.67 C 122.997 32.488 123.028 32.341 123.028 32.23 C 123.028 32.147 122.997 32.05 122.859 32.018 C 122.787 32.003 122.715 31.984 122.715 31.932 C 122.715 31.877 122.755 31.859 122.853 31.859 L 124.476 31.859 C 124.563 31.859 124.62 31.877 124.62 31.926 C 124.62 31.984 124.555 32.011 124.467 32.011 C 124.343 32.019 124.222 32.053 124.112 32.111 C 123.942 32.197 123.853 32.299 123.676 32.531 C 123.412 32.869 122.281 34.863 122.134 35.229 C 122.011 35.531 122.011 35.795 122.011 36.074 C 122.011 36.074 122.011 37.262 122.038 37.619 C 122.055 37.864 122.125 38.051 122.366 38.088 C 122.482 38.103 122.659 38.12 122.772 38.12 C 122.859 38.12 122.902 38.144 122.902 38.186 C 122.902 38.246 122.836 38.271 122.732 38.271 L 120.488 38.271 C 120.373 38.271 120.309 38.258 120.309 38.186 C 120.309 38.144 120.348 38.12 120.438 38.12 C 120.551 38.12 120.647 38.103 120.72 38.088 C 120.884 38.051 120.954 37.865 120.971 37.619 C 120.997 37.262 120.997 36.075 120.997 36.075 Z M 125.98 35.067 C 125.98 33.614 126.892 31.737 129.312 31.737 C 131.324 31.737 132.574 32.967 132.574 34.912 C 132.574 36.859 131.282 38.392 129.232 38.392 C 126.917 38.392 125.98 36.565 125.98 35.067 Z M 131.446 35.23 C 131.446 33.328 130.337 32.147 129.013 32.147 C 128.085 32.147 127.095 32.691 127.095 34.801 C 127.095 36.565 128.085 37.967 129.637 37.967 C 130.201 37.967 131.446 37.68 131.446 35.229 M 144.452 35.067 C 144.452 33.614 145.362 31.737 147.786 31.737 C 149.796 31.737 151.047 32.967 151.047 34.912 C 151.047 36.859 149.755 38.392 147.705 38.392 C 145.387 38.392 144.452 36.565 144.452 35.067 Z M 149.916 35.23 C 149.916 33.328 148.81 32.147 147.487 32.147 C 146.559 32.147 145.568 32.691 145.568 34.801 C 145.568 36.565 146.56 37.967 148.11 37.967 C 148.676 37.967 149.916 37.68 149.916 35.229 Z M 156.907 32.012 C 157.001 32.012 157.137 32.062 157.244 32.122 C 157.396 32.216 157.599 32.427 157.8 32.742 C 158.085 33.18 159.165 35.049 159.222 35.184 C 159.328 35.431 159.408 35.618 159.408 36.074 C 159.408 36.074 159.408 37.262 159.383 37.619 C 159.367 37.865 159.295 38.051 159.133 38.088 C 159.04 38.109 158.946 38.12 158.851 38.12 C 158.762 38.12 158.721 38.144 158.721 38.187 C 158.721 38.259 158.786 38.271 158.9 38.271 L 161.146 38.271 C 161.248 38.271 161.314 38.247 161.314 38.187 C 161.314 38.144 161.27 38.12 161.183 38.12 C 161.049 38.117 160.915 38.107 160.782 38.088 C 160.536 38.051 160.465 37.865 160.451 37.62 C 160.424 37.263 160.424 36.075 160.424 36.075 C 160.424 35.795 160.424 35.531 160.545 35.229 C 160.692 34.863 161.824 32.869 162.089 32.531 C 162.266 32.299 162.357 32.198 162.526 32.111 C 162.636 32.053 162.758 32.019 162.882 32.011 C 162.969 32.011 163.034 31.985 163.034 31.927 C 163.034 31.877 162.977 31.859 162.887 31.859 L 161.265 31.859 C 161.166 31.859 161.127 31.877 161.127 31.933 C 161.127 31.985 161.199 32.003 161.271 32.018 C 161.409 32.051 161.445 32.147 161.445 32.23 C 161.445 32.342 161.409 32.488 161.33 32.67 C 161.216 32.937 160.198 34.8 160.119 35.007 C 159.989 34.766 158.858 32.723 158.748 32.468 C 158.695 32.38 158.662 32.282 158.651 32.18 C 158.651 32.112 158.688 32.047 158.762 32.027 C 158.881 31.993 158.937 31.985 158.937 31.933 C 158.937 31.885 158.9 31.859 158.816 31.859 L 155.112 31.859 C 155.023 31.859 154.982 31.878 154.982 31.933 C 154.982 31.985 155.015 32.003 155.085 32.019 C 155.167 32.037 155.201 32.098 155.201 32.189 C 155.201 32.332 155.023 32.546 154.797 32.824 C 154.563 33.115 153.387 34.378 153.109 34.692 L 153.071 34.692 L 153.071 34.317 C 153.071 33.027 153.071 32.791 153.085 32.52 C 153.102 32.223 153.166 32.08 153.387 32.037 C 153.46 32.02 153.536 32.012 153.611 32.012 C 153.674 32.012 153.722 31.993 153.722 31.932 C 153.722 31.878 153.667 31.859 153.553 31.859 L 151.446 31.859 C 151.325 31.859 151.268 31.878 151.268 31.933 C 151.268 31.993 151.318 32.012 151.406 32.012 C 151.519 32.012 151.654 32.019 151.723 32.037 C 151.985 32.097 152.052 32.23 152.066 32.52 C 152.084 32.79 152.084 37.263 152.042 37.62 C 152.009 37.865 151.972 38.052 151.81 38.088 C 151.714 38.11 151.616 38.121 151.518 38.121 C 151.424 38.121 151.389 38.145 151.389 38.187 C 151.389 38.247 151.445 38.272 151.553 38.272 L 153.731 38.272 C 153.818 38.272 153.886 38.247 153.886 38.187 C 153.886 38.145 153.844 38.121 153.78 38.121 C 153.674 38.121 153.496 38.104 153.387 38.088 C 153.18 38.052 153.109 37.865 153.093 37.628 C 153.071 37.263 153.071 36.594 153.071 35.813 L 153.071 35.04 L 153.109 35.04 L 153.198 35.17 C 153.368 35.413 154.955 37.372 155.314 37.706 C 155.661 38.029 155.879 38.216 156.314 38.259 C 156.499 38.271 156.685 38.275 156.871 38.272 L 157.575 38.272 C 157.729 38.272 157.771 38.247 157.771 38.187 C 157.771 38.139 157.721 38.121 157.664 38.121 C 157.567 38.121 157.404 38.095 157.16 37.995 C 156.727 37.815 156.365 37.433 156.009 37.077 C 155.695 36.765 154.109 34.973 153.818 34.574 C 154.093 34.268 155.314 32.995 155.565 32.744 C 155.912 32.38 156.185 32.208 156.437 32.104 C 156.589 32.047 156.793 32.012 156.907 32.012 Z\" fill=\"rgb(35,24,21)\"></path><path d=\"M 162.368 35.066 C 162.368 33.613 163.281 31.736 165.705 31.736 C 167.718 31.736 168.968 32.966 168.968 34.911 C 168.968 36.858 167.674 38.391 165.624 38.391 C 163.304 38.39 162.368 36.564 162.368 35.066 Z M 167.836 35.228 C 167.836 33.327 166.73 32.146 165.404 32.146 C 164.476 32.146 163.484 32.69 163.484 34.799 C 163.484 36.564 164.479 37.965 166.028 37.965 C 166.594 37.965 167.836 37.679 167.836 35.228 M 107.098 39.004 C 106.378 38.956 105.72 38.744 105.158 38.182 C 104.616 37.64 103.675 36.312 103.133 35.286 C 103.951 34.589 104.202 34.01 104.202 33.384 C 104.202 32.817 103.88 32.378 103.651 32.222 C 103.216 31.907 102.675 31.858 102.165 31.858 L 99.916 31.858 C 99.794 31.858 99.74 31.876 99.74 31.932 C 99.74 31.992 99.788 32.011 99.877 32.011 C 99.993 32.011 100.125 32.017 100.196 32.036 C 100.458 32.096 100.522 32.229 100.54 32.518 C 100.556 32.789 100.556 33.026 100.556 34.316 L 100.556 35.811 C 100.556 36.593 100.556 37.261 100.515 37.619 C 100.483 37.864 100.444 38.05 100.282 38.087 C 100.187 38.108 100.09 38.119 99.993 38.119 C 99.894 38.119 99.86 38.144 99.86 38.186 C 99.86 38.246 99.917 38.27 100.022 38.27 L 102.197 38.27 C 102.301 38.27 102.357 38.246 102.357 38.186 C 102.357 38.144 102.324 38.119 102.263 38.119 C 102.165 38.119 101.988 38.103 101.866 38.087 C 101.624 38.051 101.575 37.864 101.55 37.619 C 101.513 37.262 101.513 36.593 101.513 35.801 L 101.513 35.683 C 101.513 35.635 101.533 35.617 101.575 35.617 L 102.275 35.635 C 102.335 35.635 102.394 35.635 102.424 35.693 C 102.521 35.881 102.917 36.834 103.286 37.414 C 103.642 37.985 103.992 38.445 104.361 38.736 C 104.806 39.086 105.251 39.221 105.801 39.27 C 106.503 39.334 106.985 39.27 107.122 39.23 C 107.239 39.2 107.377 39.16 107.377 39.073 C 107.377 38.981 107.24 39.015 107.098 39.003 Z M 102.769 35.081 C 102.624 35.191 102.521 35.228 102.197 35.228 C 101.989 35.231 101.782 35.201 101.583 35.139 C 101.526 35.115 101.513 35.081 101.513 34.989 L 101.513 32.408 C 101.513 32.34 101.526 32.308 101.583 32.291 C 101.664 32.264 101.81 32.259 102.011 32.259 C 102.487 32.259 103.249 32.6 103.249 33.809 C 103.249 34.503 103.012 34.895 102.769 35.081 Z M 57.694 31.797 C 57.658 31.797 57.593 31.831 57.474 31.855 L 52.911 31.855 C 52.711 31.839 52.629 31.735 52.564 31.735 C 52.514 31.735 52.492 31.789 52.467 31.9 C 52.45 31.984 52.285 32.905 52.285 32.905 L 52.287 32.905 C 52.28 32.931 52.286 32.957 52.302 32.978 C 52.318 32.999 52.343 33.012 52.369 33.012 C 52.403 33.011 52.434 32.991 52.449 32.96 L 52.449 32.953 C 52.476 32.883 52.524 32.742 52.597 32.608 C 52.719 32.427 52.911 32.378 53.38 32.366 L 54.582 32.366 C 54.582 32.366 54.582 37.261 54.543 37.618 C 54.519 37.864 54.471 38.05 54.308 38.087 C 54.236 38.103 54.138 38.119 54.018 38.119 C 53.922 38.119 53.888 38.143 53.888 38.186 C 53.888 38.246 53.947 38.27 54.048 38.27 L 56.336 38.27 C 56.424 38.27 56.489 38.246 56.489 38.186 C 56.489 38.143 56.449 38.119 56.359 38.119 C 56.238 38.119 56.061 38.102 55.949 38.087 C 55.705 38.05 55.656 37.864 55.633 37.627 C 55.593 37.262 55.593 32.366 55.593 32.366 L 56.609 32.366 C 57.326 32.383 57.539 32.616 57.554 32.836 L 57.572 33.009 C 57.572 33.059 57.612 33.098 57.658 33.098 C 57.681 33.098 57.703 33.089 57.72 33.072 C 57.737 33.055 57.746 33.033 57.746 33.009 C 57.746 33.009 57.756 32.089 57.756 31.974 C 57.76 31.848 57.748 31.797 57.694 31.797 Z M 118.016 31.797 C 117.981 31.797 117.917 31.831 117.797 31.855 L 113.235 31.855 C 113.034 31.839 112.952 31.735 112.887 31.735 C 112.839 31.735 112.814 31.789 112.79 31.9 C 112.772 31.984 112.609 32.905 112.609 32.905 L 112.607 32.925 C 112.607 32.972 112.645 33.012 112.696 33.012 C 112.728 33.011 112.757 32.99 112.769 32.96 L 112.772 32.96 L 112.772 32.953 C 112.8 32.883 112.845 32.742 112.92 32.608 C 113.04 32.427 113.235 32.378 113.7 32.366 L 114.904 32.366 C 114.904 32.366 114.904 37.261 114.865 37.618 C 114.84 37.864 114.795 38.05 114.631 38.087 C 114.536 38.109 114.439 38.119 114.341 38.119 C 114.243 38.119 114.213 38.143 114.213 38.186 C 114.213 38.246 114.267 38.27 114.374 38.27 L 116.66 38.27 C 116.747 38.27 116.814 38.246 116.814 38.186 C 116.814 38.143 116.77 38.119 116.682 38.119 C 116.561 38.119 116.384 38.102 116.273 38.087 C 116.029 38.05 115.978 37.864 115.957 37.627 C 115.916 37.262 115.916 32.366 115.916 32.366 L 116.933 32.366 C 117.652 32.383 117.862 32.616 117.876 32.836 L 117.897 33.009 C 117.897 33.059 117.936 33.098 117.98 33.098 C 118.004 33.099 118.026 33.089 118.043 33.072 C 118.06 33.056 118.069 33.033 118.068 33.009 C 118.068 33.009 118.081 32.089 118.081 31.974 C 118.082 31.848 118.074 31.797 118.016 31.797 Z M 145.543 29.639 C 145.497 29.639 145.412 29.681 145.252 29.719 L 139.159 29.719 C 138.889 29.695 138.78 29.559 138.691 29.559 C 138.629 29.559 138.598 29.63 138.566 29.774 C 138.543 29.886 138.322 31.116 138.322 31.116 L 138.328 31.119 C 138.322 31.126 138.319 31.135 138.319 31.144 C 138.319 31.204 138.373 31.26 138.436 31.26 C 138.458 31.26 138.479 31.254 138.497 31.242 C 138.515 31.23 138.529 31.214 138.539 31.194 L 138.543 31.194 L 138.543 31.188 L 138.544 31.184 C 138.578 31.089 138.64 30.899 138.737 30.727 C 138.9 30.478 139.158 30.421 139.783 30.398 L 141.39 30.398 C 141.39 30.398 141.39 36.934 141.335 37.41 C 141.304 37.738 141.239 37.988 141.022 38.033 C 140.895 38.063 140.766 38.077 140.636 38.077 C 140.508 38.077 140.465 38.114 140.465 38.167 C 140.465 38.251 140.538 38.285 140.68 38.285 L 143.729 38.285 C 143.848 38.285 143.934 38.25 143.934 38.168 C 143.934 38.114 143.881 38.078 143.762 38.078 C 143.599 38.078 143.364 38.055 143.214 38.033 C 142.887 37.988 142.824 37.737 142.791 37.423 C 142.737 36.934 142.737 30.398 142.737 30.398 L 144.096 30.398 C 145.052 30.421 145.333 30.73 145.356 31.026 L 145.384 31.258 C 145.384 31.288 145.396 31.316 145.417 31.337 C 145.439 31.358 145.467 31.369 145.497 31.368 C 145.527 31.369 145.556 31.358 145.578 31.338 C 145.6 31.317 145.612 31.288 145.613 31.258 C 145.613 31.258 145.624 30.028 145.627 29.878 C 145.627 29.707 145.619 29.638 145.543 29.638 M 69.557 37.061 C 69.558 37.039 69.549 37.016 69.533 37 C 69.518 36.984 69.496 36.975 69.473 36.975 C 69.431 36.974 69.395 37.004 69.387 37.045 C 69.312 37.392 69.111 37.611 68.901 37.715 C 68.693 37.817 68.355 37.817 68.143 37.817 C 67.319 37.817 67.3 37.711 67.283 37.127 C 67.275 36.879 67.283 35.139 67.283 35.139 C 67.283 35.092 67.291 35.055 67.332 35.055 C 67.525 35.055 68.326 35.066 68.479 35.081 C 68.779 35.115 68.892 35.24 68.931 35.411 C 68.953 35.521 68.945 35.625 68.944 35.711 C 68.944 35.746 68.965 35.776 68.996 35.79 C 69.028 35.804 69.064 35.799 69.09 35.776 C 69.106 35.761 69.116 35.741 69.117 35.719 L 69.117 35.711 L 69.227 34.471 L 69.227 34.461 C 69.228 34.426 69.207 34.394 69.175 34.38 C 69.165 34.376 69.153 34.373 69.142 34.373 C 69.114 34.375 69.089 34.39 69.074 34.413 C 69.071 34.42 69.065 34.423 69.062 34.426 L 69.062 34.429 L 69.021 34.486 C 68.945 34.572 68.824 34.596 68.631 34.615 C 68.447 34.633 67.517 34.633 67.341 34.633 C 67.291 34.633 67.284 34.596 67.284 34.536 L 67.284 32.39 C 67.284 32.33 67.3 32.308 67.34 32.308 C 67.502 32.308 68.352 32.322 68.486 32.34 C 68.892 32.39 68.971 32.493 69.026 32.645 C 69.066 32.747 69.062 32.925 69.062 32.985 C 69.062 33.03 69.105 33.07 69.15 33.07 C 69.194 33.071 69.231 33.038 69.237 32.994 C 69.25 32.878 69.333 31.919 69.333 31.864 C 69.333 31.826 69.325 31.789 69.287 31.789 C 69.246 31.789 69.197 31.812 69.157 31.826 C 69.091 31.84 68.961 31.856 68.808 31.856 L 65.628 31.858 C 65.506 31.858 65.452 31.876 65.452 31.932 C 65.452 31.992 65.5 32.011 65.588 32.011 C 65.7 32.011 65.838 32.018 65.902 32.036 C 66.17 32.096 66.232 32.229 66.25 32.519 C 66.264 32.789 66.264 37.262 66.227 37.619 C 66.194 37.864 66.152 38.051 65.991 38.087 C 65.896 38.109 65.799 38.12 65.701 38.12 C 65.604 38.12 65.571 38.144 65.571 38.186 C 65.571 38.246 65.629 38.271 65.733 38.271 L 68.988 38.271 C 69.294 38.271 69.386 38.303 69.425 38.077 C 69.451 37.905 69.557 37.079 69.557 37.079 L 69.556 37.076 L 69.556 37.061 Z M 95.475 32.011 C 95.587 32.011 95.726 32.017 95.788 32.036 C 96.055 32.096 96.118 32.229 96.138 32.518 C 96.149 32.788 96.149 37.261 96.11 37.618 C 96.079 37.864 96.04 38.05 95.879 38.087 C 95.783 38.108 95.685 38.119 95.587 38.119 C 95.489 38.119 95.457 38.143 95.457 38.185 C 95.457 38.245 95.513 38.27 95.616 38.27 L 98.875 38.27 C 99.181 38.27 99.273 38.302 99.31 38.077 C 99.34 37.904 99.445 37.078 99.445 37.078 L 99.442 37.075 C 99.442 37.072 99.445 37.066 99.445 37.061 C 99.445 37.039 99.436 37.017 99.42 37 C 99.404 36.984 99.383 36.975 99.36 36.975 C 99.318 36.974 99.282 37.004 99.276 37.045 C 99.196 37.392 98.999 37.611 98.79 37.715 C 98.58 37.817 98.24 37.817 98.029 37.817 C 97.206 37.817 97.185 37.711 97.171 37.127 C 97.16 36.879 97.171 35.139 97.171 35.139 C 97.171 35.092 97.179 35.055 97.219 35.055 C 97.408 35.055 98.21 35.066 98.364 35.081 C 98.664 35.115 98.777 35.24 98.82 35.411 C 98.841 35.521 98.833 35.625 98.831 35.711 C 98.831 35.759 98.871 35.798 98.917 35.798 C 98.962 35.799 99 35.764 99.003 35.719 L 99.003 35.715 C 99.003 35.711 99.005 35.711 99.005 35.711 L 99.118 34.471 L 99.116 34.471 L 99.118 34.461 C 99.117 34.413 99.078 34.374 99.03 34.373 C 99.002 34.374 98.975 34.389 98.96 34.413 C 98.958 34.418 98.954 34.423 98.95 34.426 L 98.947 34.429 C 98.94 34.439 98.929 34.461 98.906 34.486 C 98.833 34.572 98.712 34.596 98.519 34.615 C 98.334 34.633 97.405 34.633 97.227 34.633 C 97.179 34.633 97.171 34.596 97.171 34.536 L 97.171 32.39 C 97.171 32.33 97.185 32.308 97.227 32.308 C 97.387 32.308 98.234 32.322 98.373 32.34 C 98.776 32.39 98.858 32.493 98.911 32.645 C 98.954 32.747 98.951 32.925 98.951 32.985 C 98.951 33.03 98.991 33.07 99.039 33.07 C 99.083 33.07 99.119 33.037 99.125 32.994 C 99.14 32.878 99.219 31.919 99.219 31.864 C 99.219 31.826 99.214 31.789 99.171 31.789 C 99.134 31.789 99.087 31.812 99.045 31.826 C 98.93 31.847 98.813 31.857 98.696 31.856 L 93.826 31.858 C 93.672 31.858 93.598 31.876 93.598 31.94 C 93.598 32.002 93.666 32.01 93.738 32.01 C 93.84 32.01 93.965 32.017 94.06 32.05 C 94.134 32.078 94.163 32.146 94.163 32.215 C 94.163 32.291 94.133 32.42 94.093 32.53 C 93.898 33.088 92.848 35.82 92.503 36.755 L 92.47 36.755 L 91.08 32.902 C 90.966 32.595 90.896 32.356 90.896 32.25 C 90.896 32.17 90.916 32.11 90.975 32.07 C 91.039 32.017 91.161 32.01 91.292 32.01 C 91.362 32.01 91.414 31.992 91.414 31.932 C 91.414 31.876 91.322 31.858 91.228 31.858 L 84.918 31.858 C 84.798 31.858 84.71 31.864 84.71 31.932 C 84.71 31.984 84.742 32.011 84.84 32.011 C 84.954 32.011 85.145 32.011 85.267 32.061 C 85.461 32.146 85.537 32.308 85.547 32.823 L 85.622 36.635 L 85.584 36.635 C 85.444 36.501 81.399 31.937 81.304 31.829 C 81.166 31.675 81.091 31.566 81.005 31.566 C 80.922 31.566 80.898 31.68 80.898 31.85 L 80.825 37.026 C 80.818 37.766 80.785 38.009 80.575 38.077 C 80.456 38.107 80.334 38.121 80.211 38.119 C 80.13 38.119 80.081 38.138 80.081 38.186 C 80.081 38.266 80.155 38.27 80.26 38.27 L 82.133 38.27 C 82.248 38.27 82.32 38.258 82.32 38.186 C 82.32 38.138 82.27 38.119 82.183 38.119 C 82.04 38.123 81.898 38.104 81.761 38.062 C 81.599 38.001 81.495 37.781 81.481 37.116 L 81.391 33.405 L 81.416 33.405 C 81.558 33.568 85.212 37.788 85.72 38.296 C 85.81 38.387 85.906 38.483 85.995 38.483 C 86.065 38.483 86.098 38.406 86.098 38.219 L 86.188 32.755 C 86.196 32.28 86.262 32.102 86.486 32.035 C 86.586 32.011 86.702 32.011 86.782 32.011 C 86.877 32.011 87.055 32.017 87.142 32.046 C 87.322 32.086 87.402 32.229 87.419 32.518 C 87.43 32.789 87.43 37.305 87.393 37.661 C 87.368 37.905 87.323 38.051 87.158 38.087 C 87.063 38.108 86.966 38.119 86.868 38.119 C 86.771 38.119 86.736 38.144 86.736 38.186 C 86.736 38.246 86.796 38.27 86.898 38.27 L 89.178 38.27 C 89.268 38.27 89.332 38.246 89.332 38.186 C 89.332 38.144 89.289 38.119 89.202 38.119 C 89.08 38.119 88.905 38.103 88.79 38.087 C 88.547 38.051 88.488 37.897 88.467 37.667 C 88.435 37.305 88.435 32.789 88.452 32.518 C 88.467 32.222 88.529 32.078 88.748 32.036 C 88.918 32.001 89.094 32.005 89.263 32.046 C 89.553 32.126 89.691 32.222 89.877 32.691 L 91.911 37.875 C 92.067 38.271 92.114 38.39 92.219 38.39 C 92.333 38.39 92.379 38.258 92.591 37.765 C 92.768 37.342 94.319 33.671 94.634 32.875 C 94.851 32.331 94.972 32.188 95.076 32.111 C 95.224 32.011 95.393 32.011 95.476 32.011 Z M 134.511 35.048 C 134.705 35.048 135.503 35.055 135.658 35.072 C 135.96 35.106 136.07 35.24 136.112 35.412 C 136.134 35.522 136.127 35.624 136.121 35.711 C 136.123 35.759 136.162 35.798 136.21 35.798 C 136.258 35.798 136.29 35.766 136.296 35.719 L 136.296 35.711 L 136.412 34.471 L 136.409 34.471 L 136.412 34.461 C 136.411 34.413 136.372 34.374 136.323 34.373 C 136.309 34.374 136.295 34.377 136.283 34.384 C 136.271 34.391 136.26 34.401 136.252 34.413 C 136.248 34.42 136.248 34.423 136.242 34.426 C 136.242 34.426 136.24 34.426 136.24 34.429 C 136.228 34.449 136.214 34.468 136.199 34.486 C 136.126 34.572 136.005 34.596 135.811 34.615 C 135.624 34.633 134.692 34.633 134.511 34.633 C 134.462 34.633 134.456 34.605 134.456 34.553 L 134.456 32.435 C 134.456 32.34 134.481 32.314 134.527 32.314 L 135.771 32.34 C 136.08 32.35 136.225 32.478 136.282 32.594 C 136.331 32.715 136.335 32.902 136.335 32.972 C 136.336 33.02 136.375 33.058 136.423 33.058 C 136.465 33.058 136.501 33.027 136.508 32.985 L 136.509 32.985 L 136.509 32.972 C 136.509 32.972 136.621 31.918 136.621 31.863 C 136.621 31.825 136.595 31.789 136.565 31.789 C 136.522 31.789 136.482 31.825 136.435 31.839 C 136.352 31.863 136.254 31.855 136.101 31.855 L 132.805 31.858 C 132.687 31.858 132.622 31.876 132.622 31.94 C 132.622 31.992 132.679 32.01 132.757 32.01 C 132.873 32.01 133.01 32.017 133.075 32.036 C 133.345 32.096 133.406 32.229 133.422 32.518 C 133.438 32.788 133.438 37.261 133.398 37.618 C 133.364 37.864 133.325 38.05 133.164 38.087 C 133.068 38.108 132.971 38.119 132.873 38.119 C 132.782 38.119 132.752 38.143 132.752 38.185 C 132.752 38.257 132.805 38.27 132.921 38.27 L 135.174 38.27 C 135.297 38.27 135.351 38.246 135.351 38.186 C 135.351 38.143 135.319 38.119 135.212 38.119 C 135.099 38.119 134.924 38.102 134.81 38.087 C 134.569 38.05 134.521 37.864 134.496 37.618 C 134.456 37.261 134.456 35.124 134.456 35.124 C 134.456 35.066 134.471 35.048 134.511 35.048 Z\" fill=\"rgb(35,24,21)\"></path><path d=\"M 107.841 34.405 L 107.612 34.223 C 106.945 33.69 106.758 33.394 106.758 33.001 C 106.758 32.493 107.121 32.126 107.72 32.126 C 108.243 32.126 108.477 32.379 108.602 32.546 C 108.77 32.766 108.809 33.026 108.809 33.106 C 108.809 33.141 108.81 33.166 108.817 33.188 C 108.82 33.199 108.824 33.21 108.83 33.22 C 108.835 33.23 108.843 33.238 108.853 33.243 L 108.853 33.247 C 108.867 33.26 108.886 33.267 108.906 33.267 C 108.929 33.267 108.951 33.257 108.967 33.24 C 108.983 33.224 108.993 33.202 108.993 33.179 L 109.008 32.049 C 109.011 32.02 109.011 31.998 109.011 31.984 C 109.011 31.926 108.968 31.901 108.898 31.884 C 108.549 31.783 108.187 31.732 107.823 31.735 C 106.7 31.735 105.958 32.408 105.958 33.344 C 105.958 34.029 106.265 34.624 107.154 35.354 L 107.524 35.657 C 108.195 36.202 108.317 36.598 108.317 37.017 C 108.317 37.466 107.961 37.985 107.233 37.985 C 106.731 37.985 106.257 37.755 106.08 37.128 C 106.039 36.987 106.014 36.841 106.006 36.693 C 106.006 36.673 106.003 36.648 106.001 36.627 L 106.001 36.622 C 106.001 36.578 105.961 36.542 105.914 36.542 C 105.866 36.542 105.826 36.578 105.826 36.622 L 105.789 37.882 C 105.789 38.07 105.811 38.11 105.944 38.17 C 106.29 38.334 106.651 38.39 107.122 38.39 C 107.551 38.39 108.001 38.314 108.404 38.043 C 108.989 37.643 109.163 37.061 109.163 36.565 C 109.163 35.759 108.809 35.192 107.841 34.405 Z\" fill=\"rgb(35,24,21)\"></path></g></svg>',svgContentId:11054629483,withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:22,intrinsicWidth:70.5,pixelHeight:44,pixelWidth:141,src:\"https://framerusercontent.com/images/h17e6APtiJsYDHLP8XGc7Oca8A.svg\"},className:\"framer-1anyzei\",\"data-framer-name\":\"Tsinghua\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:24,intrinsicWidth:85.5,pixelHeight:48,pixelWidth:171,src:\"https://framerusercontent.com/images/bACb5tn4JiQzk6VB3716u57k.svg\"},className:\"framer-td4h06\",\"data-framer-name\":\"Peking_University\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-11yrxzf\",\"data-framer-name\":\"Carnegie_Mellon_University\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 265 24\"><g transform=\"translate(0.168 0.168)\" id=\"ss8963310233_1\"><path d=\"M 0 0 L 264 0 L 264 24 L 0 24 Z\" fill=\"transparent\"></path><path d=\"M 13.617 0.618 L 13.184 0.618 C 13.162 1.121 12.894 1.338 12.393 1.338 C 11.385 1.338 9.755 0.116 8.026 0.116 C 3.107 0.116 0.132 4.961 0.132 9.229 C 0.132 13.525 2.964 17.77 7.712 17.77 C 10.593 17.77 11.673 16.405 12.44 16.405 C 12.945 16.405 13.233 17.03 13.328 17.387 L 13.689 17.387 L 13.689 11.508 L 13.329 11.508 L 13.184 12.325 C 12.847 14.27 11.049 17.339 7.955 17.339 C 5.219 17.339 4.165 14.772 4.165 8.941 C 4.165 2.826 5.603 0.545 8.026 0.545 C 10.761 0.545 12.8 3.831 13.184 6.28 L 13.617 6.28 Z M 26.7 15.351 L 26.275 15.351 C 26.275 15.968 26.014 16.678 25.445 16.678 C 25.02 16.678 24.903 16.228 24.903 15.495 L 24.903 10.05 C 24.903 7.352 22.369 6.688 19.933 6.688 C 17.566 6.688 15.837 7.85 15.837 9.174 C 15.837 10.004 16.31 10.713 17.375 10.713 C 18.275 10.713 18.819 10.122 18.819 9.292 C 18.819 8.158 17.638 8.227 17.612 7.825 C 17.591 7.304 18.962 7.116 19.767 7.116 C 21.54 7.116 21.779 7.988 21.779 9.411 L 21.779 11.397 L 19.458 11.587 C 17.307 11.754 14.962 12.322 14.962 14.783 C 14.962 16.843 16.807 17.673 18.63 17.673 C 19.552 17.673 21.186 17.315 21.802 16.181 C 22.228 17.174 23.104 17.673 24.167 17.673 C 25.707 17.673 26.7 16.748 26.7 15.351 Z M 21.779 14.571 C 21.732 15.827 21.019 16.961 19.909 16.961 C 18.299 16.961 18.229 15.495 18.229 14.264 C 18.229 13.007 18.369 12.179 19.909 12.014 L 21.779 11.824 L 21.779 14.572 Z M 26.833 17.387 L 33.912 17.387 L 33.912 16.96 L 31.734 16.96 L 31.734 10.92 C 31.734 9.098 32.302 7.82 33.794 7.156 L 33.888 7.156 C 33.486 7.582 33.32 7.959 33.32 8.551 C 33.32 9.476 34.006 10.091 34.93 10.091 C 36.066 10.091 36.729 9.266 36.729 8.364 C 36.729 7.226 35.97 6.539 34.859 6.539 C 33.343 6.539 32.183 7.582 31.734 8.766 L 31.687 8.766 L 31.687 6.351 C 31.189 6.965 29.438 6.965 28.467 6.965 L 26.833 6.965 L 26.833 7.389 L 28.468 7.389 L 28.468 16.96 L 26.833 16.96 Z M 37.099 17.387 L 43.392 17.387 L 43.392 16.96 L 41.996 16.96 L 41.996 10.47 C 41.996 9.266 43.18 7.535 44.504 7.535 C 45.191 7.535 45.903 7.82 45.903 9.475 L 45.903 16.96 L 44.553 16.96 L 44.553 17.387 L 50.799 17.387 L 50.799 16.96 L 49.166 16.96 L 49.166 10.353 C 49.166 7.795 48.078 6.683 45.829 6.683 C 44.246 6.683 42.683 7.51 42.044 8.883 L 41.996 8.883 L 41.996 6.35 C 41.499 6.964 39.751 6.964 38.779 6.964 L 37.099 6.964 L 37.099 7.388 L 38.732 7.388 L 38.732 16.959 L 37.099 16.959 L 37.099 17.386 Z M 54.248 11.661 L 60.781 11.661 C 60.758 9.104 58.391 6.643 55.904 6.688 C 53.114 6.688 50.696 9.104 50.696 12.298 C 50.696 15.376 52.945 17.673 55.976 17.673 C 58.888 17.673 60.332 15.873 60.852 13.528 L 60.427 13.528 C 59.907 15.731 58.533 17.103 56.687 17.103 C 54.485 17.103 54.247 15.256 54.247 13.648 L 54.247 11.66 Z M 54.248 11.232 L 54.248 9.198 C 54.248 7.611 54.935 7.116 55.74 7.116 C 56.873 7.116 57.231 7.896 57.231 9.198 L 57.231 11.232 Z M 72.535 7.755 C 72.535 6.925 71.636 6.5 70.925 6.5 C 70.145 6.5 69.554 7.021 69.102 7.541 C 68.414 7.045 67.47 6.687 66.145 6.687 C 64.157 6.687 62.025 7.989 62.025 10.145 C 62.025 11.445 62.736 12.463 63.991 13.031 L 63.991 13.077 C 63.068 13.195 61.623 13.835 61.623 15.8 C 61.623 16.98 62.168 17.882 63.162 18.167 L 63.162 18.213 C 62.215 18.471 61.127 19.417 61.127 20.554 C 61.127 22.305 63.187 23.655 65.814 23.655 C 69.102 23.655 71.258 21.431 71.258 18.545 C 71.258 16.247 70.121 15.207 67.802 15.255 L 63.872 15.255 C 63.28 15.255 62.476 15.231 62.476 14.593 C 62.476 14 63.495 13.363 64.393 13.363 C 64.653 13.363 64.913 13.433 65.175 13.503 C 65.457 13.598 65.765 13.646 66.145 13.646 C 68.18 13.646 70.357 12.485 70.357 10.237 C 70.357 9.481 70.003 8.417 69.341 7.849 C 69.766 7.423 69.98 6.901 70.903 6.784 L 70.903 6.832 C 70.405 7.092 70.263 7.399 70.263 7.875 C 70.263 8.418 70.643 8.963 71.351 8.963 C 72.111 8.963 72.534 8.393 72.534 7.756 Z M 63.542 18.236 L 67.257 18.236 C 69.623 18.236 70.405 18.449 70.405 19.893 C 70.405 21.62 68.275 23.229 65.885 23.229 C 63.754 23.229 62.596 21.785 62.546 20.652 C 62.546 19.609 62.901 18.922 63.542 18.236 Z M 67.66 10.145 C 67.635 13.055 67.02 13.219 66.169 13.219 C 65.222 13.219 64.724 12.912 64.724 10.071 C 64.724 8.157 64.938 7.116 66.169 7.116 C 67.28 7.116 67.635 7.423 67.66 10.145 Z M 72.904 17.387 L 79.442 17.387 L 79.442 16.96 L 77.807 16.96 L 77.807 6.35 C 77.31 6.965 75.556 6.965 74.587 6.965 L 72.904 6.965 L 72.904 7.389 L 74.537 7.389 L 74.537 16.96 L 72.904 16.96 Z M 74.482 3.303 C 74.482 4.242 75.232 4.995 76.172 4.995 C 77.112 4.995 77.862 4.242 77.862 3.303 C 77.862 2.365 77.112 1.615 76.172 1.615 C 75.723 1.612 75.292 1.789 74.975 2.106 C 74.657 2.423 74.48 2.854 74.482 3.303 Z M 82.992 11.661 L 89.523 11.661 C 89.503 9.104 87.133 6.643 84.647 6.688 C 81.855 6.688 79.439 9.104 79.439 12.298 C 79.439 15.376 81.692 17.673 84.718 17.673 C 87.631 17.673 89.077 15.873 89.595 13.528 L 89.169 13.528 C 88.649 15.731 87.277 17.103 85.429 17.103 C 83.229 17.103 82.992 15.256 82.992 13.648 L 82.992 11.66 Z M 82.992 11.232 L 82.992 9.198 C 82.992 7.611 83.678 7.116 84.484 7.116 C 85.619 7.116 85.974 7.896 85.974 9.198 L 85.974 11.232 Z M 93.667 17.387 L 98.257 17.387 L 98.257 16.962 L 97.927 16.962 C 96.648 16.962 96.152 16.63 96.152 14.712 L 96.152 1.299 L 96.2 1.299 L 101.854 17.389 L 102.494 17.389 L 108.006 1.583 L 108.053 1.583 L 108.053 16.963 L 106.017 16.963 L 106.017 17.388 L 113.518 17.388 L 113.518 16.963 L 111.743 16.963 L 111.743 1.154 L 113.518 1.154 L 113.518 0.729 L 107.816 0.729 L 103.817 12.159 L 103.769 12.159 L 99.842 0.729 L 93.785 0.729 L 93.785 1.155 L 95.582 1.155 L 95.582 14.928 C 95.582 15.945 95.346 16.962 93.762 16.962 L 93.667 16.962 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 116.832 11.661 L 123.364 11.661 C 123.342 9.104 120.974 6.643 118.489 6.688 C 115.696 6.688 113.28 9.104 113.28 12.298 C 113.28 15.376 115.53 17.673 118.562 17.673 C 121.47 17.673 122.918 15.873 123.436 13.528 L 123.011 13.528 C 122.492 15.731 121.118 17.103 119.27 17.103 C 117.067 17.103 116.832 15.256 116.832 13.648 L 116.832 11.66 Z M 116.832 11.232 L 116.832 9.198 C 116.832 7.611 117.518 7.116 118.323 7.116 C 119.46 7.116 119.815 7.896 119.815 9.198 L 119.815 11.232 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 123.427 17.387 L 129.965 17.387 L 129.965 16.962 L 128.33 16.962 L 128.33 0.009 C 127.903 0.719 126.6 0.719 124.918 0.719 L 123.427 0.719 L 123.427 1.145 L 125.063 1.145 L 125.063 16.962 L 123.427 16.962 Z M 130.379 17.387 L 136.917 17.387 L 136.917 16.962 L 135.284 16.962 L 135.284 0.009 C 134.856 0.719 133.554 0.719 131.872 0.719 L 130.379 0.719 L 130.379 1.145 L 132.012 1.145 L 132.012 16.962 L 130.379 16.962 Z M 147.914 12.179 C 147.914 8.938 145.406 6.688 142.281 6.688 C 139.158 6.688 136.647 8.938 136.647 12.179 C 136.647 15.423 139.158 17.673 142.281 17.673 C 145.406 17.673 147.914 15.423 147.914 12.179 Z M 144.221 14.735 C 144.221 16.512 143.489 17.245 142.281 17.245 C 141.075 17.245 140.34 16.512 140.34 14.735 L 140.34 9.623 C 140.34 7.849 141.075 7.116 142.281 7.116 C 143.489 7.116 144.221 7.849 144.221 9.623 Z M 147.928 17.387 L 154.223 17.387 L 154.223 16.96 L 152.829 16.96 L 152.829 10.47 C 152.829 9.266 154.012 7.535 155.338 7.535 C 156.023 7.535 156.734 7.82 156.734 9.475 L 156.734 16.96 L 155.382 16.96 L 155.382 17.387 L 161.633 17.387 L 161.633 16.96 L 159.997 16.96 L 159.997 10.353 C 159.997 7.795 158.91 6.683 156.662 6.683 C 155.077 6.683 153.515 7.51 152.874 8.883 L 152.829 8.883 L 152.829 6.35 C 152.332 6.964 150.58 6.964 149.61 6.964 L 147.928 6.964 L 147.928 7.388 L 149.563 7.388 L 149.563 16.959 L 147.928 16.959 L 147.928 17.386 Z M 164.929 1.155 L 166.776 1.155 L 166.776 11.875 C 166.776 15.542 169.304 17.767 173.164 17.767 C 177.517 17.767 179.409 15.47 179.409 11.99 L 179.409 3.143 C 179.409 1.77 179.787 1.155 180.64 1.155 L 181.256 1.155 L 181.256 0.729 L 176.571 0.729 L 176.571 1.155 L 177.258 1.155 C 178.465 1.155 178.843 1.77 178.843 3.143 L 178.843 12.136 C 178.843 15.351 176.901 16.913 174.606 16.913 C 171.151 16.913 170.466 14.595 170.466 11.567 L 170.466 1.155 L 172.382 1.155 L 172.382 0.729 L 164.929 0.729 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 180.335 17.387 L 186.629 17.387 L 186.629 16.96 L 185.234 16.96 L 185.234 10.47 C 185.234 9.266 186.414 7.535 187.739 7.535 C 188.428 7.535 189.137 7.82 189.137 9.475 L 189.137 16.96 L 187.789 16.96 L 187.789 17.387 L 194.036 17.387 L 194.036 16.96 L 192.405 16.96 L 192.405 10.353 C 192.405 7.795 191.314 6.683 189.067 6.683 C 187.483 6.683 185.919 7.51 185.281 8.883 L 185.234 8.883 L 185.234 6.35 C 184.735 6.964 182.985 6.964 182.012 6.964 L 180.335 6.964 L 180.335 7.388 L 181.965 7.388 L 181.965 16.959 L 180.335 16.959 L 180.335 17.386 Z M 194.381 17.387 L 200.919 17.387 L 200.919 16.96 L 199.286 16.96 L 199.286 6.35 C 198.787 6.965 197.036 6.965 196.063 6.965 L 194.381 6.965 L 194.381 7.389 L 196.018 7.389 L 196.018 16.96 L 194.381 16.96 Z M 195.96 3.303 C 195.96 4.242 196.713 4.995 197.652 4.995 C 198.59 4.995 199.34 4.242 199.34 3.303 C 199.342 2.855 199.165 2.424 198.848 2.107 C 198.531 1.79 198.1 1.613 197.652 1.615 C 196.712 1.615 195.96 2.365 195.96 3.303 Z M 205.714 17.672 L 206.353 17.672 L 209.855 9.387 C 210.447 8.062 210.943 7.423 211.488 7.399 L 211.703 7.399 L 211.703 6.972 L 208.01 6.972 L 208.01 7.399 L 208.462 7.399 C 209.146 7.399 209.548 7.659 209.548 8.274 C 209.548 8.655 209.431 9.174 209.146 9.836 L 207.537 13.624 L 204.767 7.399 L 206.188 7.399 L 206.188 6.972 L 200.248 6.972 L 200.248 7.399 L 201.265 7.399 L 205.714 17.673 Z M 214.298 11.661 L 220.832 11.661 C 220.81 9.104 218.442 6.643 215.958 6.688 C 213.163 6.688 210.748 9.104 210.748 12.298 C 210.748 15.376 212.998 17.673 216.03 17.673 C 218.94 17.673 220.383 15.873 220.904 13.528 L 220.481 13.528 C 219.957 15.731 218.586 17.103 216.74 17.103 C 214.537 17.103 214.462 15.256 214.462 13.648 L 214.298 11.66 Z M 214.298 11.232 L 214.298 9.198 C 214.298 7.611 214.986 7.116 215.791 7.116 C 216.927 7.116 217.28 7.896 217.28 9.198 L 217.28 11.232 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 220.887 17.387 L 227.964 17.387 L 227.964 16.96 L 225.788 16.96 L 225.788 10.92 C 225.788 9.098 226.356 7.82 227.848 7.156 L 227.942 7.156 C 227.54 7.582 227.374 7.959 227.374 8.551 C 227.374 9.476 228.059 10.091 228.983 10.091 C 230.12 10.091 230.783 9.266 230.783 8.364 C 230.783 7.226 230.026 6.539 228.911 6.539 C 227.398 6.539 226.237 7.582 225.788 8.766 L 225.741 8.766 L 225.741 6.351 C 225.243 6.965 223.492 6.965 222.522 6.965 L 220.887 6.965 L 220.887 7.389 L 222.522 7.389 L 222.522 16.96 L 220.887 16.96 Z M 231.297 17.672 L 231.724 17.672 C 231.843 17.292 232.221 17.103 232.696 17.103 C 233.31 17.103 234.043 17.673 235.37 17.673 C 237.62 17.673 239.157 15.731 239.157 13.79 C 239.157 10.902 237.171 10.689 234.635 10.334 C 233.31 10.144 232.482 9.93 232.482 8.888 C 232.482 7.776 233.452 7.116 234.731 7.116 C 236.505 7.116 237.453 8.511 238.047 10.05 L 238.424 10.05 L 238.281 6.688 L 237.926 6.688 C 237.926 6.972 237.645 7.209 237.193 7.209 C 236.434 7.209 235.819 6.688 234.731 6.688 C 232.364 6.688 231.205 8.702 231.205 10.216 C 231.205 13.27 233.523 13.528 235.321 13.741 C 237.028 13.956 237.738 14.12 237.738 15.209 C 237.738 16.465 236.698 17.245 235.417 17.245 C 233.619 17.245 232.151 15.423 231.724 13.695 L 231.297 13.695 L 231.297 17.673 Z M 239.575 17.387 L 246.11 17.387 L 246.11 16.96 L 244.479 16.96 L 244.479 6.35 C 243.981 6.965 242.229 6.965 241.258 6.965 L 239.575 6.965 L 239.575 7.389 L 241.211 7.389 L 241.211 16.96 L 239.575 16.96 Z M 241.156 3.303 C 241.156 4.242 241.904 4.995 242.844 4.995 C 243.785 4.995 244.535 4.242 244.535 3.303 C 244.535 2.365 243.785 1.615 242.844 1.615 C 241.904 1.615 241.156 2.365 241.156 3.303 Z M 247.048 7.4 L 247.048 14.974 C 247.048 17.222 248.989 17.673 249.652 17.673 C 251.096 17.673 252.067 17.081 252.801 15.85 L 252.495 15.683 C 252.21 16.109 251.828 16.679 251.238 16.679 C 250.624 16.679 250.316 16.228 250.316 15.449 L 250.316 7.4 L 252.495 7.4 L 252.495 6.976 L 250.316 6.976 L 250.316 1.886 L 249.889 1.886 C 249.889 4.396 248.184 6.976 245.792 6.976 L 245.792 7.4 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 252.415 7.399 L 253.408 7.399 L 257.95 17.928 L 257.81 18.873 C 257.715 19.561 257.241 22.26 256.46 22.494 L 256.46 22.424 C 256.555 22.092 256.58 21.834 256.58 21.621 C 256.58 20.815 256.012 20.2 255.016 20.2 C 253.976 20.2 253.456 20.91 253.456 21.81 C 253.456 22.78 254.356 23.467 255.394 23.467 C 257.266 23.467 257.738 21.406 257.95 20.413 L 258.591 17.527 L 259.822 14.451 L 262.164 9.171 C 262.686 7.968 263.157 7.399 263.679 7.399 L 263.869 7.399 L 263.869 6.972 L 260.178 6.972 L 260.178 7.399 L 260.675 7.399 C 261.43 7.399 261.763 7.826 261.763 8.228 C 261.763 8.698 261.454 9.481 261.077 10.379 L 259.704 13.622 L 256.934 7.399 L 258.497 7.399 L 258.497 6.972 L 252.415 6.972 Z\" fill=\"rgb(0,0,0)\"></path></g></svg>',svgContentId:8963310233,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-hx53gy\",\"data-framer-name\":\"ETH\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 170 28\"><g transform=\"translate(0.938 0.132)\" id=\"ss11652119017_1\"><path d=\"M 0 0.806 L 168.889 0.806 L 168.889 28.806 L 0 28.806 Z\" fill=\"transparent\"></path><path d=\"M 103.809 19.948 C 102.836 24.769 99.12 25.015 98.375 25.015 C 96.272 25.015 95.018 23.805 95.018 21.772 C 95.029 21.182 95.094 20.596 95.211 20.019 L 97.507 8.546 L 94.782 8.546 L 92.45 20.334 L 92.45 20.501 C 92.327 21.057 92.262 21.624 92.257 22.193 C 92.166 23.597 92.677 24.973 93.663 25.977 C 94.648 26.98 96.015 27.517 97.42 27.451 C 99.461 27.54 101.439 26.733 102.836 25.243 L 102.477 27.18 L 102.477 27.223 L 105.168 27.223 L 108.875 8.59 L 106.044 8.59 L 103.774 19.984 L 103.809 19.949 Z M 122.355 8.3 C 120.368 8.247 118.47 9.122 117.219 10.667 L 117.64 8.572 L 114.958 8.572 L 111.303 27.162 L 111.303 27.206 L 114.029 27.206 L 116.299 15.812 C 116.877 12.876 119.13 10.754 121.654 10.754 C 122.694 10.72 123.683 11.21 124.284 12.06 L 126.492 10.088 C 125.477 8.911 123.978 8.265 122.426 8.335 Z M 77.375 10.895 L 77.366 10.939 L 86.648 10.939 L 74.29 24.919 L 74.281 24.919 L 73.817 27.206 L 86.99 27.206 L 87.463 24.787 L 77.612 24.787 L 90.014 10.817 L 90.014 10.807 L 90.478 8.529 L 77.84 8.529 Z M 126.79 27.162 L 126.781 27.206 L 129.507 27.206 L 133.215 8.529 L 130.541 8.529 Z M 163.681 8.3 C 161.684 8.2 159.742 8.967 158.352 10.404 L 160.464 0 L 157.756 0 L 152.296 27.17 L 155.013 27.17 L 157.283 15.777 C 158.256 10.965 162.016 10.719 162.752 10.719 C 163.645 10.624 164.533 10.932 165.175 11.559 C 165.818 12.187 166.147 13.067 166.074 13.962 C 166.061 14.55 165.999 15.137 165.89 15.715 L 163.576 27.232 L 166.293 27.232 L 168.686 15.461 C 168.81 14.852 168.875 14.232 168.879 13.611 C 168.966 12.205 168.451 10.829 167.463 9.825 C 166.474 8.822 165.106 8.286 163.699 8.352 Z M 145.643 8.3 C 140.709 8.3 137.247 11.806 136.133 17.836 C 135.963 18.785 135.875 19.747 135.871 20.711 C 135.871 24.857 138.386 27.433 142.435 27.433 C 144.777 27.436 147.02 26.487 148.649 24.804 L 147.081 22.884 C 145.994 24.235 144.353 25.022 142.619 25.024 C 140.691 25.024 138.623 23.874 138.623 20.641 C 138.631 19.704 138.731 18.771 138.921 17.853 C 139.211 15.884 140.046 14.036 141.331 12.516 C 142.388 11.387 143.869 10.752 145.415 10.763 C 146.89 10.705 148.272 11.481 148.991 12.77 L 148.991 12.814 L 150.99 11.122 C 149.816 9.303 147.761 8.248 145.599 8.352 Z M 131.549 3.401 L 134.275 3.401 L 134.959 0.001 L 132.242 0.001 Z M 105.098 3.401 L 107.824 3.401 L 108.498 0.001 L 105.781 0.001 Z M 97.84 3.401 L 100.566 3.401 L 101.241 0.001 L 98.524 0.001 Z M 61.484 10.544 L 55.367 10.544 L 57.514 0 L 5.478 0 L 0.018 27.206 L 20.764 27.206 L 22.122 20.404 L 9.869 20.404 L 10.614 16.662 L 22.858 16.662 L 24.094 10.544 L 11.842 10.544 L 12.587 6.802 L 32.001 6.802 L 27.899 27.206 L 36.409 27.206 L 40.502 6.802 L 47.645 6.802 L 43.543 27.206 L 52.053 27.206 L 54.148 16.662 L 60.275 16.662 L 58.171 27.206 L 66.673 27.206 L 72.143 0 L 63.641 0 L 61.485 10.544 Z\" fill=\"rgb(0,0,0)\"></path></g></svg>',svgContentId:11652119017,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1rsvli6\",\"data-framer-name\":\"Max_Planck_Institute\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 287 66\"><g transform=\"translate(0.594 0.242)\" id=\"ss11159895809_1\"><path d=\"M 0.001 0 L 286.001 0 L 286.001 65.515 L 0.001 65.515 Z\" fill=\"transparent\"></path><path d=\"M 257.541 0 C 241.848 0 229.08 12.768 229.08 28.46 C 229.08 44.153 241.848 56.922 257.541 56.922 C 273.233 56.922 286.001 44.153 286.001 28.461 C 286.001 12.768 273.233 0 257.541 0 Z M 257.541 56.122 C 242.285 56.122 229.873 43.71 229.873 28.454 C 229.873 13.198 242.285 0.794 257.541 0.794 C 272.796 0.794 285.208 13.204 285.208 28.454 C 285.208 43.703 272.796 56.122 257.541 56.122 Z\" fill=\"rgb(0,108,102)\"></path><path d=\"M 274.235 26.282 C 273.838 25.456 274.114 24.918 273.993 24.319 C 273.906 23.875 273.247 22.409 272.823 21.401 C 272.621 20.924 273.845 21.038 272.944 19.317 C 272.917 19.263 274.195 18.792 272.917 17.824 C 272.205 17.28 271.7 16.614 271.304 16.016 C 271.25 15.935 271.196 15.766 271.31 15.666 C 272.03 15.027 272.05 14.099 271.263 13.629 C 270.698 13.286 270.046 13.629 269.448 14.019 C 269.253 14.146 269.152 14.227 268.944 14.139 C 268.836 14.099 268.634 13.959 268.46 13.83 C 269.199 13.118 269.34 12.412 269.28 12.297 C 269.239 12.217 268.029 11.947 266.53 12.567 C 266.496 12.547 266.463 12.526 266.422 12.506 C 267.041 11.436 266.691 10.684 266.644 10.63 C 267.767 9.063 268.883 8.014 269.986 7.013 L 270.013 6.986 C 270.087 6.912 270.114 6.831 269.972 6.744 C 269.858 6.67 269.824 6.656 269.683 6.576 C 265.963 4.515 261.78 3.435 257.527 3.436 C 243.737 3.436 232.515 14.657 232.515 28.447 C 232.515 36.435 236.57 44.147 243.199 48.934 C 243.643 49.25 243.945 49.378 243.945 49.378 C 244.053 49.418 244.167 49.418 244.241 49.324 L 244.342 49.196 C 244.395 49.131 244.426 49.051 244.43 48.968 C 244.43 48.786 244.167 48.625 243.858 48.161 C 242.964 46.83 242.567 45.324 242.567 44.053 C 242.567 42.668 242.991 41.411 243.798 40.362 C 244.799 41.404 246.971 43.313 246.924 45.055 C 246.87 47.011 245.041 46.91 245.438 48.376 C 245.687 49.297 246.373 48.914 246.494 49.613 C 246.702 50.823 248.322 51.597 249.035 51.489 C 249.203 51.462 249.351 51.603 249.694 51.953 C 250.178 52.443 251.368 52.377 251.893 52.283 C 252.397 52.188 253.022 52.653 254.071 52.531 C 255.382 52.383 255.718 52.283 256.276 52.276 C 257.224 52.262 262.388 52.188 266.052 52.76 C 266.685 52.86 266.886 52.572 266.604 52.08 C 265.273 49.768 265.091 47.798 265.857 45.324 C 267.216 45.418 269.159 45.781 271.727 44.241 C 272.635 43.697 273.146 42.527 273.105 41.659 C 273.079 41.094 272.83 40.382 272.978 39.83 C 273.173 39.09 273.314 39.111 273.529 38.963 C 274.511 38.277 273.805 37.726 273.65 37.673 C 273.946 37.551 274.269 36.906 273.926 36.428 C 273.751 36.24 273.22 34.741 273.832 34.431 C 274.497 34.095 275.25 33.954 276.017 33.618 C 276.541 33.396 276.958 32.784 276.662 31.978 C 276.306 31.002 274.302 26.41 274.235 26.283 Z M 246.621 48.551 C 246.426 48.591 245.815 48.611 245.956 47.805 C 246.043 47.307 246.581 47.099 246.857 47.381 C 246.796 47.771 246.662 48.148 246.628 48.551 Z M 270.201 14.409 C 270.524 14.207 270.873 14.119 271.075 14.321 C 271.788 15.027 270.302 15.417 270.611 15.961 C 271.115 16.849 271.922 17.697 272.635 18.241 C 272.971 18.497 273.018 19.075 271.741 19.344 C 270.456 19.613 265.333 20.957 262.637 23.822 C 259.255 27.405 257.103 32.045 256.814 31.406 C 256.518 30.76 255.839 30.659 255.947 30.478 C 260.801 22.114 268.412 15.538 270.201 14.415 Z M 272.426 20.285 C 272.151 21.085 269.945 21.791 270.046 21.233 C 270.093 20.978 270.046 20.648 270.221 20.621 C 270.463 20.581 271.162 20.339 272.245 20.056 C 272.352 20.03 272.494 20.09 272.426 20.285 Z M 266.832 21.731 C 266.779 21.401 269.145 20.608 269.233 20.843 C 269.387 21.28 268.742 22.45 267.949 22.739 C 267.048 23.069 266.671 22.974 266.705 22.847 C 266.765 22.611 266.886 22.033 266.832 21.731 Z M 261.333 34.095 C 260.243 34.761 259.652 33.483 259.497 33.261 C 259.43 33.167 259.255 32.885 259.349 32.408 C 259.423 32.031 259.484 31.513 259.235 29.886 C 259.127 29.166 260.606 27.392 260.943 27.083 C 261.292 26.76 261.79 27.243 261.823 27.768 C 261.884 28.763 261.326 29.288 260.754 29.718 C 260.055 30.243 259.921 30.922 260.055 31.103 C 260.109 31.177 260.425 31.177 260.559 30.881 C 260.983 29.981 262.186 29.53 262.381 29.059 C 262.684 28.326 262.462 27.849 262.435 27.539 C 262.408 27.271 262.671 27.204 262.872 27.231 C 263.128 27.271 263.242 27.621 263.377 27.957 C 264.156 29.987 262.193 31.217 261.877 31.702 C 261.729 31.924 262.18 33.578 261.333 34.095 Z M 262.98 26.208 C 262.395 26.605 261.554 26.068 261.723 25.825 C 262.805 24.279 264.257 23.196 264.836 22.84 C 265.763 22.262 265.864 22.221 265.911 22.55 C 265.938 22.746 265.952 23.761 265.199 24.581 C 264.58 25.261 263.955 25.207 263.632 25.281 C 263.417 25.328 263.43 25.906 262.98 26.209 Z M 257.762 33.154 C 257.493 33.094 257.393 32.569 257.446 32.361 C 257.567 31.903 258.273 30.949 258.529 30.613 C 258.589 30.532 258.724 30.613 258.737 30.707 C 258.892 31.809 258.737 33.362 257.762 33.147 Z M 266.483 13.057 C 267.464 12.613 268.412 12.607 268.513 12.62 C 268.735 12.647 268.016 13.924 266.738 14.47 C 265.42 15.034 264.439 15.135 264.325 15.081 C 264.156 15.001 265.441 13.521 266.483 13.051 Z M 243.905 34.263 C 243.515 33.813 243.152 33.564 243.112 33.591 C 243.004 33.665 242.372 34.748 242.15 36.011 C 240.913 33.651 240.234 31.271 240.12 28.441 C 239.743 18.846 247.778 11.121 257.588 11.154 C 259.826 11.161 261.662 11.578 263.672 12.391 C 263.222 12.956 262.899 13.629 262.677 14.194 C 262.664 13.676 262.529 13.272 262.57 12.943 C 262.59 12.741 261.178 13.185 259.927 15.182 C 259.657 15.63 259.46 16.118 259.342 16.627 C 259.315 15.874 259.141 15.297 259.087 15.31 C 258.959 15.343 257.527 15.935 256.781 17.683 C 256.653 17.993 256.552 18.308 256.485 18.611 C 256.424 18.08 256.283 17.723 256.243 17.731 C 256.149 17.731 254.649 18.349 253.91 20.151 C 253.749 20.548 253.647 20.967 253.607 21.394 C 253.473 20.769 253.231 20.386 253.157 20.48 C 252.639 21.139 251.624 21.428 251.086 23.082 C 250.958 23.472 250.911 23.862 250.904 24.225 C 250.682 23.667 250.366 23.345 250.299 23.358 C 250.151 23.391 248.625 24.844 248.396 26.303 C 248.32 26.824 248.334 27.353 248.437 27.869 C 248.148 27.399 247.758 27.049 247.596 26.572 C 247.354 26.699 246.063 27.916 246.023 29.476 C 246.013 30.034 246.081 30.591 246.225 31.13 C 245.794 30.35 245.183 29.98 245.115 30.02 C 245.001 30.088 244.04 31.137 243.811 33.013 C 243.757 33.45 243.811 33.873 243.919 34.257 Z M 263.982 12.667 C 264.755 11.753 266.066 11.02 266.207 11.107 C 266.355 11.202 265.985 12.613 265.145 13.447 C 264.291 14.287 262.973 15.107 262.818 15.094 C 262.664 15.088 263.289 13.494 263.982 12.667 Z M 261.48 16.197 C 260.734 16.802 260.391 17.206 259.954 17.918 C 259.806 18.16 259.443 16.574 260.418 15.041 C 261.017 14.106 262.2 13.266 262.173 13.38 C 262.086 13.75 262.751 15.168 261.48 16.197 Z M 258.737 18.234 C 257.823 19.599 257.769 19.135 256.767 20.474 C 256.713 20.547 256.693 18.732 257.05 17.925 C 257.614 16.661 258.596 15.921 258.737 15.895 C 258.885 15.868 259.242 17.481 258.737 18.235 Z M 255.739 20.971 C 255.268 21.791 254.838 21.603 254.051 22.773 C 253.964 22.9 253.755 21.805 254.226 20.325 C 254.589 19.189 255.712 18.476 255.833 18.45 C 256.014 18.41 256.297 19.99 255.739 20.97 Z M 252.942 23.869 C 252.464 24.918 252.155 24.951 251.597 25.597 C 251.503 25.711 251.086 24.602 251.489 23.21 C 251.812 22.1 252.558 21.683 252.921 21.307 C 253.063 21.159 253.459 22.753 252.948 23.862 Z M 250.669 25.657 C 250.669 25.973 250.629 26.155 250.541 26.471 C 250.198 27.647 249.506 28.145 249.129 28.676 C 248.981 28.326 248.699 27.836 248.699 27.089 C 248.699 25.664 249.56 24.454 250.104 24.07 C 250.313 24.064 250.676 24.924 250.676 25.657 Z M 248.356 29.127 C 248.329 30.781 247.294 31.749 246.984 32.058 C 246.789 31.728 246.413 30.888 246.386 30.001 C 246.339 28.293 247.038 27.688 247.348 27.358 C 247.495 27.849 248.376 28.232 248.363 29.126 L 248.356 29.126 Z M 245.082 30.821 C 245.559 31.063 246.131 31.755 246.184 33.04 C 246.238 34.33 245.317 35.42 244.954 35.595 C 244.705 34.606 244.228 34.405 244.235 33.423 C 244.241 32.353 244.786 31.177 245.082 30.821 Z M 247.052 34.223 C 248.296 33.685 249.647 33.766 249.708 33.82 C 249.761 33.873 249.311 35.4 248.107 36.045 C 246.904 36.691 245.546 36.751 245.418 36.596 C 245.351 36.509 245.815 34.761 247.058 34.223 Z M 246.958 33.309 C 247.032 32.899 247.771 31.534 248.881 31.043 C 249.99 30.545 251.274 30.586 251.422 30.646 C 251.57 30.706 250.958 32.159 249.842 32.696 C 248.591 33.296 248.094 32.946 246.958 33.316 Z M 248.82 30.115 C 248.874 29.987 249.775 28.367 250.837 27.869 C 251.886 27.379 253.157 27.479 253.244 27.506 C 253.332 27.533 252.76 28.972 251.556 29.564 C 250.366 30.155 248.766 30.236 248.82 30.108 Z M 251.24 26.875 C 251.153 26.807 252.437 25.133 253.506 24.635 C 254.448 24.198 255.678 24.292 255.779 24.36 C 255.88 24.427 255.281 25.839 254.037 26.383 C 252.854 26.901 251.328 26.935 251.24 26.874 Z M 254.138 23.667 C 254.064 23.633 255.046 21.966 256.142 21.542 C 257.191 21.139 258.233 21.502 258.549 21.522 C 258.804 21.542 258.186 22.746 256.747 23.277 C 255.544 23.721 254.313 23.754 254.132 23.66 Z M 257.393 20.581 C 257.413 20.501 258.488 18.987 259.598 18.604 C 260.653 18.241 261.944 18.484 262.079 18.544 C 262.22 18.604 261.333 19.922 259.981 20.332 C 258.764 20.695 257.379 20.662 257.399 20.588 Z M 260.68 17.911 C 260.539 17.811 261.837 16.359 262.892 15.955 C 263.928 15.565 265.044 15.632 265.131 15.686 C 265.219 15.74 264.452 16.997 263.208 17.502 C 262.039 17.979 260.822 18.006 260.68 17.912 Z M 242.702 47.516 C 236.839 42.849 233.336 35.796 233.336 28.447 C 233.336 15.094 244.201 4.229 257.554 4.229 C 261.447 4.229 265.36 5.204 268.789 6.993 C 268.821 7.01 268.843 7.042 268.847 7.078 C 268.851 7.114 268.837 7.15 268.809 7.174 C 267.801 8.054 266.402 9.783 266.052 10.26 C 263.394 9.009 260.492 8.364 257.554 8.37 C 246.487 8.37 237.477 17.374 237.477 28.44 C 237.477 33.383 239.152 37.887 242.305 41.498 C 241.967 42.307 241.796 43.176 241.801 44.053 C 241.801 45.061 241.989 46.218 242.695 47.503 Z M 242.742 40.778 L 242.728 40.792 C 239.81 37.356 238.277 33.1 238.277 28.447 C 238.277 17.817 246.924 9.171 257.554 9.171 C 260.358 9.171 263.054 9.756 265.575 10.912 C 265.178 11.102 264.806 11.339 264.466 11.618 C 262.247 10.677 260.015 10.24 257.554 10.24 C 247.509 10.24 239.34 18.41 239.34 28.454 C 239.34 32.811 240.698 36.637 243.36 39.851 C 243.206 40.086 242.991 40.415 242.742 40.785 Z M 243.703 39.266 C 243.354 38.929 242.587 38.089 242.513 37 L 242.513 36.839 C 242.513 35.669 243.024 34.519 243.152 34.391 C 243.28 34.263 244.598 35.285 244.618 36.758 C 244.638 38.028 244.053 38.761 243.703 39.259 Z M 245.875 37.316 C 246.924 36.818 248.484 36.939 248.396 37.006 C 248.309 37.074 247.899 38.593 246.722 39.185 C 245.546 39.777 244.766 39.615 244.342 39.535 C 244.974 38.842 244.846 37.807 245.875 37.315 Z M 247.287 49.909 C 247.112 49.196 247.179 48.209 247.421 47.946 C 247.892 47.717 248.753 47.63 248.766 47.906 C 248.793 48.342 248.47 49.378 248.847 50.676 C 248.759 50.877 247.59 50.79 247.287 49.916 Z M 247.368 46.91 C 247.274 46.372 247.791 45.855 247.785 44.685 C 247.771 43.246 245.996 41.269 244.793 40.005 C 245.357 40.005 246.097 39.871 246.924 39.488 C 248.712 38.661 249.062 36.758 249.116 36.678 C 249.143 36.643 248.719 36.556 248.107 36.549 L 248.309 36.449 C 250.057 35.507 250.521 33.483 250.434 33.436 C 250.4 33.416 249.963 33.349 249.351 33.369 C 249.519 33.309 249.701 33.249 249.882 33.174 C 251.731 32.441 252.249 30.377 252.188 30.31 C 252.162 30.283 251.792 30.209 251.247 30.196 C 251.409 30.136 251.577 30.061 251.751 29.974 C 253.446 29.134 254.031 27.244 253.943 27.184 C 253.903 27.157 253.56 27.089 253.063 27.083 C 253.483 26.991 253.892 26.858 254.286 26.686 C 256.102 25.892 256.687 24.158 256.606 24.084 C 256.572 24.05 256.263 23.97 255.806 23.929 C 256.169 23.849 256.559 23.734 256.982 23.593 C 258.778 22.981 259.497 21.267 259.389 21.26 C 259.147 21.24 258.811 21.119 258.381 21.045 C 258.984 21.004 259.579 20.882 260.149 20.682 C 262.086 20.03 262.771 18.86 262.805 18.355 C 262.805 18.322 262.576 18.221 262.193 18.14 C 262.637 18.06 263.081 17.952 263.45 17.804 C 265.259 17.071 266.012 15.296 266.073 15.148 C 266.402 15.041 266.758 14.906 267.128 14.738 C 267.305 14.658 267.478 14.568 267.646 14.469 C 267.733 14.536 267.875 14.637 268.083 14.772 C 268.359 14.947 268.453 14.987 268.318 15.102 C 262.166 20.345 257.554 26.962 255.544 30.182 C 255.49 30.27 255.382 30.256 255.207 30.242 C 253.049 30.102 251.832 32.663 252.794 35.07 C 252.673 35.561 251.651 36.502 251.57 36.57 C 251.496 36.637 251.288 36.94 251.637 36.906 C 252.141 36.859 252.787 36.052 253.089 35.689 C 253.217 35.85 253.688 36.24 253.466 36.469 C 251.637 38.264 249.822 39.232 249.681 39.299 C 248.995 39.636 250.824 39.864 253.943 37.047 C 254.125 36.879 254.347 37.699 254.622 38.049 C 254.085 39.817 255.409 43.226 255.201 44.302 C 255.167 44.49 255.053 45.022 254.427 45.028 C 251.335 45.088 251.032 44.948 249.465 45.411 C 248.733 45.626 248.928 46.111 249.459 45.969 C 250.064 45.808 250.696 45.559 254.037 45.767 C 254.858 45.821 255.792 45.599 255.792 44.221 C 255.792 42.971 254.804 39.239 255.14 38.728 C 255.584 39.064 255.907 39.078 256.075 39.104 C 256.028 40.321 257.991 44.254 257.117 46.426 C 256.794 47.233 255.369 47.173 252.935 46.931 C 248.793 46.521 247.448 47.415 247.361 46.917 Z M 256.882 49.586 C 255.268 50.144 254.636 48.262 254.898 47.852 C 255.059 47.61 256.075 48.127 256.868 47.616 C 257.48 47.226 257.816 49.257 256.882 49.58 Z M 249.566 50.763 C 249.338 49.768 249.25 48.04 249.667 47.65 C 249.748 47.576 250.992 47.394 250.965 47.677 C 250.871 48.867 250.387 50.198 251.294 51.523 C 251.63 52.02 249.869 52.094 249.566 50.756 Z M 252.639 51.899 C 252.209 51.792 251.012 49.889 251.987 47.623 C 252.088 47.381 253.58 47.536 253.829 47.61 C 254.078 47.684 253.627 49.465 255.671 50.259 C 255.88 50.339 255.665 52.652 252.639 51.899 Z M 265.447 45.566 C 264.755 47.959 264.405 48.914 265.447 51.516 C 265.589 51.859 265.689 52.121 265.387 52.067 C 263.296 51.711 262.839 51.361 256.263 51.919 C 255.792 51.959 256.418 51.005 256.337 50.353 C 256.935 50.279 257.897 50.003 258.099 49.022 C 258.347 47.832 257.52 46.964 257.608 46.796 C 258.542 44.981 257.547 42.964 256.761 39.588 C 256.687 39.272 256.868 39.131 257.009 39.286 C 261.232 43.858 263.928 44.766 265.38 45.196 C 265.521 45.236 265.494 45.404 265.447 45.559 Z M 276.252 33.08 C 275.371 33.86 274.013 33.927 273.462 34.425 C 273.173 34.687 273.045 35.097 273.354 35.823 C 273.529 36.247 273.657 36.293 273.052 36.455 C 272.07 36.717 271.936 38.008 270.678 37.773 C 270.174 37.679 270.537 38.002 270.719 38.015 C 271.438 38.082 271.72 37.881 271.969 37.645 C 272.218 37.41 272.554 36.986 272.944 36.839 C 273.341 36.691 273.744 36.697 273.751 36.993 C 273.751 37.222 273.253 37.578 273.045 37.679 C 273.3 37.813 274.087 38.21 273.415 38.667 C 272.89 39.024 272.178 38.533 272.07 38.472 C 271.915 38.385 271.62 38.425 271.72 38.546 C 272.11 39.016 273.146 38.896 272.958 39.145 C 271.996 40.435 272.783 41.189 272.487 42.48 C 272.191 43.79 270.396 44.51 269.011 44.759 C 264.304 45.606 259.726 41.605 257.043 38.587 C 257.285 38.015 257.258 37.269 257.009 37.531 C 256.781 37.78 256.814 38.197 256.256 38.338 C 255.18 38.614 254.717 36.738 254.38 36.408 C 253.069 35.124 252.552 33.308 253.332 31.722 C 254.125 30.122 255.765 30.438 256.418 31.412 C 257.231 32.616 256.855 33.302 257.319 33.665 C 257.971 34.169 258.623 33.719 258.798 33.665 C 259.295 33.531 259.255 34.842 260.949 34.781 C 262.765 34.714 262.563 31.89 262.818 31.634 C 265.152 29.362 263.961 27.324 263.538 26.854 C 263.424 26.726 263.8 25.892 263.935 25.859 C 265.306 25.556 266.079 24.682 266.496 23.754 C 266.496 23.754 268.769 23.714 269.582 22.074 C 269.798 21.636 270.47 22.497 271.989 21.3 C 272.157 21.166 272.319 21.233 272.386 21.388 C 273.361 23.781 273.771 24.447 273.697 25.664 C 273.643 26.551 276.064 31.48 276.245 31.91 C 276.44 32.387 276.474 32.851 276.245 33.053 Z\" fill=\"rgb(0,108,102)\"></path><path d=\"M 270.759 24.406 C 269.435 24.453 267.895 26.081 267.391 26.302 C 266.866 26.538 267.055 26.686 267.357 26.578 C 268.016 26.336 268.957 25.328 270.255 24.863 C 271.277 24.493 271.217 25.334 271.6 25.287 C 271.781 25.267 271.526 24.379 270.759 24.407 Z M 271.062 25.704 C 270.954 25.731 271.176 26.296 270.605 26.33 C 269.361 26.404 268.372 27.587 267.613 27.937 C 266.853 28.287 266.698 28.287 266.584 28.313 C 266.483 28.34 266.523 28.468 266.604 28.481 C 269.778 28.905 271.001 28.791 271.028 28.676 C 271.082 28.454 270.853 28.346 270.901 28.206 C 271.022 27.849 271.082 27.183 270.941 26.72 C 270.88 26.504 271.412 26.646 271.412 26.357 C 271.412 26.202 271.25 25.65 271.069 25.697 Z M 270.571 28.212 C 270.511 28.461 269.092 28.347 268.319 28.279 C 268.137 28.266 267.828 28.232 268.413 27.883 C 268.877 27.607 269.509 27.143 270.342 26.982 C 270.395 26.971 270.45 26.982 270.494 27.012 C 270.539 27.043 270.569 27.09 270.578 27.143 C 270.665 27.533 270.625 27.957 270.564 28.213 L 270.571 28.213 Z M 274.72 32.737 C 274.478 32.737 273.496 33.181 273.133 33.416 C 272.918 33.55 271.93 34.162 271.997 33.194 C 272.024 32.851 272.246 32.011 272.239 31.782 C 272.232 31.432 271.95 31.567 271.943 31.782 C 271.93 32.266 271.836 32.636 271.735 33.207 C 271.647 33.698 272.071 34.303 272.737 33.947 C 273.281 33.657 274.034 33.154 274.693 33.026 C 274.861 32.992 274.895 32.744 274.727 32.736 L 274.72 32.736 Z M 256.324 36.206 C 256.136 36.132 256.19 36.522 255.935 36.482 C 255.598 36.428 255.881 36.126 255.45 35.669 C 255.235 35.439 254.691 35.346 254.294 34.707 C 253.662 33.692 254.207 31.439 255.128 31.762 C 255.639 31.944 255.551 33.141 255.397 33.947 C 255.303 34.445 256.076 34.694 256.15 34.519 C 256.271 34.223 255.867 34.257 255.773 33.988 C 255.632 33.578 256.721 31.93 255.296 31.453 C 254.254 31.103 253.568 32.421 253.689 33.873 C 253.796 35.097 254.61 35.601 255.074 35.776 C 255.706 36.011 255.229 36.872 256.076 36.872 C 256.452 36.872 256.526 36.287 256.324 36.213 Z M 264.668 9.05 C 264.715 9.064 264.762 9.05 264.789 9.017 L 266.551 6.784 C 266.598 6.724 266.578 6.644 266.504 6.616 C 266.403 6.576 266.302 6.536 266.208 6.496 C 266.161 6.476 266.114 6.496 266.08 6.529 L 264.305 8.768 C 264.283 8.796 264.276 8.833 264.285 8.867 C 264.294 8.901 264.319 8.929 264.352 8.943 C 264.453 8.976 264.554 9.017 264.655 9.05 Z M 261.394 8.142 L 261.696 8.202 C 261.75 8.216 261.804 8.182 261.824 8.135 L 262.859 5.58 C 262.886 5.52 262.846 5.446 262.779 5.433 C 262.664 5.406 262.55 5.385 262.436 5.359 C 262.402 5.359 262.375 5.365 262.362 5.399 C 262.015 6.265 261.665 7.13 261.313 7.994 C 261.3 8.024 261.302 8.059 261.317 8.088 C 261.333 8.117 261.361 8.137 261.394 8.142 Z M 257.756 7.786 L 258.066 7.786 C 258.125 7.788 258.175 7.744 258.18 7.685 L 258.435 4.975 C 258.435 4.915 258.395 4.855 258.328 4.855 C 258.227 4.855 258.119 4.855 258.018 4.848 C 257.959 4.846 257.909 4.89 257.904 4.948 L 257.649 7.665 C 257.649 7.732 257.696 7.785 257.756 7.785 Z M 254.219 8.054 C 254.32 8.041 254.421 8.021 254.522 8.007 C 254.552 8.003 254.579 7.987 254.596 7.963 C 254.614 7.939 254.621 7.909 254.616 7.879 L 254.098 5.203 C 254.085 5.143 254.031 5.109 253.97 5.116 C 253.87 5.129 253.769 5.15 253.668 5.163 C 253.607 5.177 253.567 5.23 253.58 5.291 L 254.098 7.967 C 254.112 8.027 254.165 8.061 254.226 8.054 Z M 250.609 8.875 C 250.636 8.922 250.69 8.949 250.744 8.929 L 251.04 8.828 C 251.07 8.817 251.094 8.794 251.107 8.765 C 251.119 8.736 251.119 8.702 251.107 8.673 L 249.883 6.219 C 249.856 6.172 249.803 6.145 249.749 6.165 C 249.649 6.198 249.551 6.234 249.453 6.273 C 249.392 6.293 249.366 6.367 249.392 6.428 L 250.616 8.882 Z M 247.24 10.435 C 247.274 10.475 247.334 10.482 247.375 10.455 C 247.462 10.401 247.556 10.355 247.65 10.301 C 247.679 10.284 247.699 10.256 247.705 10.224 C 247.712 10.192 247.704 10.158 247.684 10.132 L 245.855 8.042 C 245.822 8.001 245.761 7.994 245.714 8.022 C 245.627 8.075 245.532 8.129 245.445 8.182 C 245.416 8.199 245.396 8.227 245.391 8.26 C 245.386 8.293 245.396 8.326 245.418 8.351 Z M 244.107 12.648 C 244.147 12.674 244.201 12.674 244.241 12.648 C 244.322 12.58 244.402 12.513 244.49 12.445 C 244.544 12.398 244.544 12.311 244.49 12.271 L 242.177 10.664 C 242.137 10.637 242.076 10.637 242.042 10.67 C 241.962 10.738 241.881 10.812 241.8 10.879 C 241.775 10.902 241.761 10.936 241.764 10.97 C 241.767 11.004 241.785 11.035 241.814 11.054 L 244.12 12.654 L 244.107 12.647 Z M 241.377 15.464 C 241.424 15.484 241.471 15.464 241.505 15.43 C 241.572 15.35 241.639 15.262 241.707 15.181 C 241.754 15.121 241.734 15.033 241.66 15.007 L 238.997 13.971 C 238.951 13.954 238.9 13.967 238.869 14.005 C 238.802 14.092 238.742 14.173 238.674 14.26 C 238.653 14.287 238.646 14.323 238.655 14.356 C 238.664 14.389 238.689 14.416 238.721 14.428 L 241.37 15.457 Z M 236.348 18.375 L 239.199 18.772 C 239.246 18.772 239.287 18.759 239.313 18.712 C 239.367 18.617 239.414 18.517 239.468 18.422 C 239.487 18.391 239.488 18.352 239.472 18.32 C 239.455 18.287 239.423 18.265 239.387 18.262 L 236.523 17.864 C 236.476 17.864 236.429 17.884 236.409 17.925 C 236.362 18.019 236.315 18.12 236.268 18.215 C 236.253 18.247 236.254 18.284 236.271 18.315 C 236.289 18.345 236.32 18.366 236.355 18.369 Z M 234.789 22.692 L 237.693 22.416 C 237.74 22.416 237.774 22.382 237.787 22.342 C 237.821 22.234 237.855 22.133 237.888 22.026 C 237.9 21.99 237.894 21.951 237.871 21.921 C 237.848 21.892 237.811 21.875 237.774 21.878 L 234.849 22.154 C 234.802 22.153 234.762 22.188 234.755 22.234 C 234.728 22.342 234.695 22.45 234.668 22.557 C 234.648 22.631 234.708 22.705 234.789 22.692 Z M 236.994 26.148 C 237.007 26.034 237.02 25.919 237.034 25.812 C 237.047 25.732 236.967 25.664 236.886 25.691 L 234.055 26.679 C 234.015 26.693 233.981 26.733 233.981 26.773 L 233.961 27.11 C 233.961 27.19 234.035 27.244 234.109 27.217 L 236.92 26.235 C 236.961 26.221 236.99 26.184 236.994 26.141 Z M 236.926 30.021 C 236.92 29.904 236.913 29.788 236.906 29.671 C 236.906 29.584 236.805 29.537 236.738 29.584 L 234.17 31.271 C 234.135 31.295 234.116 31.337 234.123 31.379 C 234.136 31.493 234.15 31.608 234.17 31.715 C 234.183 31.795 234.271 31.836 234.338 31.789 L 236.879 30.122 C 236.879 30.122 236.933 30.062 236.926 30.021 Z M 237.566 33.887 C 237.533 33.769 237.504 33.65 237.478 33.531 C 237.47 33.491 237.439 33.459 237.399 33.448 C 237.359 33.438 237.317 33.452 237.29 33.483 L 235.206 35.783 C 235.206 35.783 235.172 35.857 235.186 35.891 C 235.226 35.998 235.259 36.112 235.3 36.22 C 235.327 36.3 235.428 36.32 235.488 36.254 L 237.552 33.981 C 237.552 33.981 237.586 33.914 237.579 33.881 Z M 238.634 37.316 L 237.162 40.119 C 237.142 40.152 237.142 40.194 237.162 40.227 C 237.222 40.335 237.283 40.435 237.35 40.537 C 237.371 40.57 237.408 40.59 237.447 40.59 C 237.487 40.59 237.524 40.57 237.545 40.537 L 239.004 37.767 C 239.004 37.767 239.024 37.699 239.004 37.665 C 238.95 37.551 238.89 37.437 238.836 37.322 C 238.818 37.285 238.78 37.262 238.738 37.262 C 238.697 37.262 238.659 37.285 238.641 37.322 Z M 240.705 40.462 C 240.651 40.388 240.53 40.409 240.51 40.502 L 239.723 43.758 C 239.715 43.794 239.725 43.831 239.75 43.858 C 239.83 43.953 239.918 44.047 239.999 44.141 C 240.059 44.208 240.167 44.181 240.187 44.094 L 240.967 40.88 C 240.967 40.88 240.967 40.813 240.947 40.786 C 240.866 40.68 240.787 40.572 240.711 40.463 L 240.705 40.463 Z M 3.389 28.508 L 6.623 37.819 L 9.837 28.507 L 13.246 28.507 L 13.246 41.349 L 10.644 41.349 L 10.644 37.839 L 10.906 31.782 L 7.51 41.349 L 5.729 41.349 L 2.34 31.789 L 2.602 37.839 L 2.602 41.349 L 0 41.349 L 0 28.508 Z M 23.653 38.7 L 19.108 38.7 L 18.241 41.35 L 15.484 41.35 L 20.17 28.507 L 22.57 28.507 L 27.284 41.349 L 24.527 41.349 Z M 19.807 36.555 L 22.954 36.555 L 21.374 31.748 Z M 33.846 32.931 L 36.206 28.501 L 39.192 28.501 L 35.528 34.868 L 39.286 41.343 L 36.267 41.343 L 33.847 36.845 L 31.427 41.343 L 28.406 41.343 L 32.165 34.868 L 28.501 28.501 L 31.486 28.501 Z M 49.366 36.824 L 49.366 41.349 L 46.77 41.349 L 46.77 28.508 L 51.678 28.508 C 52.626 28.508 53.453 28.683 54.172 29.039 C 54.892 29.389 55.443 29.893 55.826 30.545 C 56.21 31.198 56.405 31.937 56.405 32.765 C 56.405 34.022 55.981 35.017 55.141 35.743 C 54.301 36.469 53.131 36.833 51.638 36.833 L 49.365 36.833 L 49.365 36.825 Z M 49.366 34.679 L 51.685 34.679 C 52.37 34.679 52.895 34.511 53.251 34.182 C 53.614 33.852 53.789 33.382 53.789 32.77 C 53.789 32.158 53.608 31.634 53.245 31.244 C 52.881 30.854 52.377 30.652 51.739 30.645 L 49.359 30.645 L 49.359 34.68 L 49.365 34.68 Z M 61.668 39.225 L 67.175 39.225 L 67.175 41.349 L 59.073 41.349 L 59.073 28.508 L 61.668 28.508 L 61.668 39.226 Z M 76.816 38.7 L 72.272 38.7 L 71.404 41.35 L 68.648 41.35 L 73.334 28.507 L 75.734 28.507 L 80.447 41.349 L 77.691 41.349 L 76.817 38.7 Z M 72.971 36.555 L 76.118 36.555 L 74.538 31.748 Z M 92.746 41.349 L 90.151 41.349 L 85.101 32.898 L 85.101 41.349 L 82.506 41.349 L 82.506 28.508 L 85.101 28.508 L 90.157 36.973 L 90.157 28.508 L 92.739 28.508 L 92.739 41.35 L 92.746 41.35 Z M 105.776 37.074 C 105.675 38.459 105.177 39.541 104.276 40.334 C 103.375 41.128 102.185 41.524 100.713 41.524 C 99.099 41.524 97.828 40.974 96.907 39.864 C 95.979 38.754 95.522 37.235 95.522 35.299 L 95.522 34.512 C 95.522 33.275 95.737 32.192 96.161 31.251 C 96.585 30.31 97.196 29.591 97.99 29.086 C 98.783 28.582 99.704 28.333 100.753 28.333 C 102.205 28.333 103.375 28.73 104.263 29.523 C 105.15 30.316 105.661 31.433 105.803 32.865 L 103.207 32.865 C 103.147 32.038 102.918 31.432 102.528 31.063 C 102.138 30.686 101.547 30.505 100.753 30.505 C 99.886 30.505 99.24 30.821 98.81 31.453 C 98.38 32.085 98.158 33.066 98.151 34.398 L 98.151 35.366 C 98.151 36.751 98.36 37.766 98.77 38.412 C 99.18 39.05 99.832 39.373 100.72 39.373 C 101.52 39.373 102.118 39.185 102.515 38.815 C 102.911 38.445 103.133 37.867 103.194 37.08 L 105.789 37.08 Z M 112.304 36.199 L 110.953 37.679 L 110.953 41.349 L 108.358 41.349 L 108.358 28.508 L 110.953 28.508 L 110.953 34.331 L 112.096 32.737 L 115.303 28.515 L 118.497 28.515 L 114.026 34.223 L 118.625 41.357 L 115.538 41.357 L 112.304 36.207 L 112.304 36.2 Z M 128.535 41.349 L 125.94 41.349 L 125.94 28.508 L 128.535 28.508 L 128.535 41.35 Z M 142.063 41.349 L 139.468 41.349 L 134.418 32.898 L 134.418 41.349 L 131.823 41.349 L 131.823 28.508 L 134.418 28.508 L 139.474 36.973 L 139.474 28.508 L 142.056 28.508 L 142.056 41.35 L 142.063 41.35 Z M 151.738 37.981 C 151.738 37.484 151.563 37.101 151.22 36.831 C 150.877 36.563 150.252 36.281 149.351 35.984 C 148.45 35.689 147.737 35.393 147.213 35.11 C 145.781 34.324 145.068 33.261 145.068 31.923 C 145.068 31.231 145.263 30.613 145.639 30.068 C 146.023 29.523 146.574 29.099 147.293 28.79 C 148.013 28.48 148.813 28.333 149.707 28.333 C 150.601 28.333 151.408 28.501 152.108 28.831 C 152.807 29.16 153.358 29.631 153.748 30.236 C 154.138 30.841 154.333 31.526 154.333 32.3 L 151.738 32.3 C 151.738 31.715 151.556 31.258 151.193 30.928 C 150.83 30.598 150.319 30.438 149.66 30.438 C 149.001 30.438 148.531 30.572 148.181 30.848 C 147.831 31.123 147.657 31.48 147.657 31.93 C 147.657 32.347 147.865 32.697 148.275 32.979 C 148.685 33.261 149.29 33.524 150.097 33.772 C 151.57 34.222 152.645 34.788 153.324 35.46 C 154.004 36.132 154.333 36.966 154.333 37.968 C 154.333 39.078 153.923 39.951 153.096 40.583 C 152.269 41.215 151.159 41.531 149.768 41.531 C 148.8 41.531 147.919 41.35 147.125 40.987 C 146.332 40.624 145.727 40.133 145.303 39.501 C 144.886 38.869 144.678 38.143 144.678 37.316 L 147.28 37.316 C 147.28 38.734 148.107 39.44 149.768 39.44 C 150.386 39.44 150.864 39.313 151.213 39.057 C 151.556 38.802 151.731 38.445 151.731 37.988 Z M 166.456 30.652 L 162.603 30.652 L 162.603 41.349 L 160.008 41.349 L 160.008 30.652 L 156.202 30.652 L 156.202 28.508 L 166.456 28.508 L 166.456 30.653 Z M 171.572 41.349 L 168.977 41.349 L 168.977 28.508 L 171.572 28.508 L 171.572 41.35 Z M 184.084 30.652 L 180.231 30.652 L 180.231 41.349 L 177.636 41.349 L 177.636 30.652 L 173.83 30.652 L 173.83 28.508 L 184.084 28.508 L 184.084 30.653 Z M 195.979 28.508 L 195.979 36.966 C 195.979 38.371 195.548 39.48 194.688 40.301 C 193.827 41.121 192.65 41.524 191.158 41.524 C 189.665 41.524 188.522 41.128 187.655 40.334 C 186.788 39.541 186.35 38.452 186.33 37.06 L 186.33 28.5 L 188.926 28.5 L 188.926 36.98 C 188.926 37.82 189.121 38.431 189.517 38.821 C 189.914 39.205 190.459 39.4 191.158 39.4 C 192.617 39.4 193.356 38.62 193.377 37.053 L 193.377 28.508 Z M 208.465 30.652 L 204.612 30.652 L 204.612 41.349 L 202.017 41.349 L 202.017 30.652 L 198.211 30.652 L 198.211 28.508 L 208.465 28.508 L 208.465 30.653 Z M 218.402 35.782 L 213.42 35.782 L 213.42 39.225 L 219.263 39.225 L 219.263 41.349 L 210.824 41.349 L 210.824 28.508 L 219.242 28.508 L 219.242 30.653 L 213.413 30.653 L 213.413 33.713 L 218.395 33.713 L 218.395 35.783 L 218.402 35.783 Z M 49.056 48.78 L 45.666 48.78 L 45.666 52.343 L 44.606 52.343 L 44.606 44.268 L 49.606 44.268 L 49.606 45.135 L 45.666 45.135 L 45.666 47.905 L 49.055 47.905 L 49.055 48.78 Z M 58.495 48.571 C 58.495 49.365 58.361 50.051 58.098 50.642 C 57.829 51.234 57.453 51.684 56.968 51.994 C 56.478 52.303 55.913 52.458 55.261 52.458 C 54.609 52.458 54.064 52.303 53.573 51.987 C 53.083 51.677 52.699 51.227 52.43 50.649 C 52.161 50.071 52.02 49.399 52.013 48.639 L 52.013 48.054 C 52.013 47.274 52.148 46.594 52.417 45.996 C 52.686 45.398 53.069 44.947 53.56 44.631 C 54.066 44.31 54.655 44.144 55.254 44.154 C 55.893 44.154 56.471 44.309 56.962 44.624 C 57.452 44.934 57.836 45.391 58.105 45.983 C 58.374 46.574 58.502 47.267 58.502 48.053 L 58.502 48.565 Z M 57.433 48.054 C 57.433 47.099 57.238 46.359 56.854 45.848 C 56.471 45.338 55.934 45.082 55.241 45.082 C 54.548 45.082 54.037 45.337 53.654 45.848 C 53.271 46.359 53.069 47.072 53.056 47.98 L 53.056 48.571 C 53.056 49.499 53.251 50.225 53.64 50.757 C 54.03 51.287 54.568 51.55 55.254 51.55 C 55.94 51.55 56.471 51.301 56.854 50.797 C 57.238 50.293 57.426 49.58 57.439 48.645 L 57.439 48.047 Z M 64.466 49.075 L 62.57 49.075 L 62.57 52.343 L 61.501 52.343 L 61.501 44.268 L 64.171 44.268 C 65.078 44.268 65.777 44.476 66.268 44.887 C 66.759 45.303 67.001 45.902 67.001 46.695 C 67.001 47.2 66.867 47.637 66.591 48.006 C 66.315 48.376 65.939 48.659 65.455 48.846 L 67.351 52.276 L 67.351 52.343 L 66.208 52.343 L 64.453 49.075 Z M 62.57 48.208 L 64.204 48.208 C 64.735 48.208 65.152 48.074 65.468 47.798 C 65.778 47.522 65.938 47.159 65.938 46.695 C 65.938 46.198 65.791 45.815 65.495 45.545 C 65.199 45.277 64.769 45.142 64.205 45.142 L 62.576 45.142 L 62.576 48.208 L 62.569 48.208 Z M 75.264 52.343 L 74.201 52.343 L 74.201 44.268 L 75.264 44.268 Z M 84.824 52.343 L 83.756 52.343 L 79.696 46.123 L 79.696 52.343 L 78.626 52.343 L 78.626 44.268 L 79.696 44.268 L 83.77 50.514 L 83.77 44.268 L 84.832 44.268 L 84.832 52.343 L 84.825 52.343 Z M 93.539 45.142 L 90.944 45.142 L 90.944 52.342 L 89.881 52.342 L 89.881 45.142 L 87.293 45.142 L 87.293 44.275 L 93.539 44.275 Z M 100.706 48.612 L 97.209 48.612 L 97.209 51.469 L 101.27 51.469 L 101.27 52.337 L 96.14 52.337 L 96.14 44.262 L 101.217 44.262 L 101.217 45.129 L 97.209 45.129 L 97.209 47.731 L 100.706 47.731 Z M 105.076 51.476 L 108.902 51.476 L 108.902 52.343 L 104.007 52.343 L 104.007 44.268 L 105.076 44.268 Z M 112.593 51.476 L 116.418 51.476 L 116.418 52.343 L 111.524 52.343 L 111.524 44.268 L 112.593 44.268 Z M 120.184 52.343 L 119.122 52.343 L 119.122 44.268 L 120.184 44.268 Z M 129.496 51.288 C 129.221 51.678 128.844 51.973 128.353 52.168 C 127.863 52.363 127.291 52.458 126.646 52.458 C 126 52.458 125.402 52.303 124.891 51.994 C 124.375 51.681 123.963 51.223 123.707 50.676 C 123.432 50.104 123.284 49.446 123.277 48.699 L 123.277 47.993 C 123.277 46.776 123.559 45.835 124.131 45.163 C 124.696 44.49 125.496 44.161 126.525 44.161 C 127.365 44.161 128.044 44.376 128.562 44.806 C 129.073 45.236 129.389 45.848 129.503 46.642 L 128.441 46.642 C 128.239 45.572 127.607 45.035 126.531 45.035 C 125.819 45.035 125.274 45.283 124.911 45.788 C 124.541 46.292 124.36 47.018 124.353 47.966 L 124.353 48.625 C 124.353 49.533 124.561 50.252 124.971 50.783 C 125.388 51.315 125.946 51.583 126.652 51.583 C 127.006 51.588 127.359 51.543 127.701 51.449 C 128.004 51.361 128.246 51.214 128.448 50.999 L 128.448 49.189 L 126.578 49.189 L 126.578 48.323 L 129.503 48.323 L 129.503 51.281 Z M 137.241 48.612 L 133.745 48.612 L 133.745 51.469 L 137.806 51.469 L 137.806 52.337 L 132.676 52.337 L 132.676 44.262 L 137.752 44.262 L 137.752 45.129 L 133.745 45.129 L 133.745 47.731 L 137.241 47.731 Z M 146.749 52.343 L 145.68 52.343 L 141.619 46.123 L 141.619 52.343 L 140.55 52.343 L 140.55 44.268 L 141.619 44.268 L 145.693 50.514 L 145.693 44.268 L 146.755 44.268 L 146.755 52.343 Z M 155.463 45.142 L 152.867 45.142 L 152.867 52.342 L 151.805 52.342 L 151.805 45.142 L 149.217 45.142 L 149.217 44.275 L 155.463 44.275 Z M 164.445 48.746 C 163.531 48.484 162.865 48.161 162.455 47.778 C 162.051 47.418 161.823 46.9 161.83 46.359 C 161.83 45.721 162.085 45.196 162.59 44.779 C 163.094 44.362 163.76 44.154 164.573 44.154 C 165.125 44.154 165.622 44.262 166.059 44.477 C 166.496 44.692 166.832 44.987 167.068 45.364 C 167.303 45.741 167.424 46.151 167.424 46.601 L 166.355 46.601 C 166.355 46.111 166.2 45.727 165.891 45.445 C 165.582 45.163 165.145 45.028 164.58 45.028 C 164.055 45.028 163.645 45.142 163.349 45.378 C 163.054 45.606 162.906 45.929 162.906 46.339 C 162.906 46.669 163.047 46.951 163.323 47.173 C 163.605 47.402 164.076 47.61 164.748 47.798 C 165.42 47.986 165.945 48.195 166.321 48.424 C 166.698 48.652 166.98 48.914 167.162 49.217 C 167.343 49.519 167.437 49.876 167.437 50.286 C 167.437 50.938 167.182 51.463 166.671 51.859 C 166.16 52.249 165.481 52.451 164.627 52.451 C 164.093 52.453 163.564 52.346 163.074 52.135 C 162.596 51.92 162.22 51.631 161.964 51.261 C 161.706 50.892 161.57 50.453 161.574 50.003 L 162.644 50.003 C 162.644 50.494 162.825 50.878 163.181 51.16 C 163.538 51.442 164.022 51.584 164.627 51.584 C 165.192 51.584 165.622 51.469 165.918 51.241 C 166.214 51.012 166.368 50.696 166.368 50.306 C 166.368 49.916 166.227 49.606 165.952 49.392 C 165.676 49.177 165.172 48.962 164.445 48.752 Z M 172.675 48.322 L 174.779 44.268 L 175.99 44.268 L 173.206 49.331 L 173.206 52.343 L 172.144 52.343 L 172.144 49.331 L 169.36 44.268 L 170.577 44.268 Z M 180.729 48.746 C 179.814 48.484 179.149 48.161 178.738 47.778 C 178.334 47.418 178.106 46.9 178.113 46.359 C 178.113 45.721 178.369 45.196 178.873 44.779 C 179.377 44.362 180.043 44.154 180.856 44.154 C 181.408 44.154 181.905 44.262 182.342 44.477 C 182.779 44.692 183.115 44.987 183.351 45.364 C 183.586 45.741 183.707 46.151 183.707 46.601 L 182.638 46.601 C 182.638 46.111 182.483 45.727 182.174 45.445 C 181.865 45.163 181.428 45.028 180.863 45.028 C 180.339 45.028 179.929 45.142 179.633 45.378 C 179.337 45.606 179.189 45.929 179.189 46.339 C 179.189 46.669 179.33 46.951 179.606 47.173 C 179.888 47.402 180.359 47.61 181.031 47.798 C 181.704 47.986 182.228 48.195 182.604 48.424 C 182.981 48.652 183.263 48.914 183.445 49.217 C 183.626 49.519 183.721 49.876 183.721 50.286 C 183.721 50.938 183.465 51.463 182.954 51.859 C 182.443 52.249 181.764 52.451 180.91 52.451 C 180.376 52.453 179.847 52.346 179.357 52.135 C 178.88 51.92 178.503 51.631 178.248 51.261 C 177.99 50.893 177.854 50.453 177.858 50.003 L 178.927 50.003 C 178.927 50.494 179.108 50.878 179.465 51.16 C 179.821 51.442 180.305 51.584 180.91 51.584 C 181.475 51.584 181.905 51.469 182.201 51.241 C 182.494 51.021 182.662 50.672 182.652 50.306 C 182.652 49.916 182.51 49.606 182.235 49.392 C 181.959 49.177 181.455 48.962 180.729 48.752 Z M 192.072 45.142 L 189.476 45.142 L 189.476 52.342 L 188.414 52.342 L 188.414 45.142 L 185.825 45.142 L 185.825 44.275 L 192.072 44.275 Z M 199.239 48.612 L 195.743 48.612 L 195.743 51.469 L 199.804 51.469 L 199.804 52.337 L 194.674 52.337 L 194.674 44.262 L 199.75 44.262 L 199.75 45.129 L 195.743 45.129 L 195.743 47.731 L 199.239 47.731 Z M 203.912 44.268 L 206.555 50.858 L 209.19 44.268 L 210.569 44.268 L 210.569 52.343 L 209.506 52.343 L 209.506 49.198 L 209.607 45.802 L 206.958 52.338 L 206.145 52.338 L 203.502 45.816 L 203.61 49.191 L 203.61 52.338 L 202.548 52.338 L 202.548 44.263 L 203.919 44.263 L 203.912 44.269 Z M 216.243 48.746 C 215.328 48.484 214.663 48.161 214.253 47.778 C 213.849 47.418 213.62 46.9 213.627 46.359 C 213.627 45.721 213.883 45.196 214.387 44.779 C 214.891 44.362 215.557 44.154 216.371 44.154 C 216.922 44.154 217.419 44.262 217.856 44.477 C 218.293 44.692 218.63 44.987 218.865 45.364 C 219.1 45.741 219.221 46.151 219.221 46.601 L 218.152 46.601 C 218.152 46.111 217.998 45.727 217.688 45.445 C 217.379 45.163 216.942 45.028 216.377 45.028 C 215.853 45.028 215.443 45.142 215.147 45.378 C 214.851 45.606 214.703 45.929 214.703 46.339 C 214.703 46.669 214.844 46.951 215.12 47.173 C 215.402 47.402 215.873 47.61 216.545 47.798 C 217.218 47.986 217.742 48.195 218.119 48.424 C 218.495 48.652 218.778 48.914 218.959 49.217 C 219.141 49.519 219.235 49.876 219.235 50.286 C 219.235 50.938 218.979 51.463 218.468 51.859 C 217.957 52.249 217.278 52.451 216.424 52.451 C 215.89 52.453 215.361 52.346 214.871 52.135 C 214.394 51.92 214.017 51.631 213.762 51.261 C 213.504 50.893 213.368 50.453 213.372 50.003 L 214.441 50.003 C 214.441 50.494 214.622 50.878 214.979 51.16 C 215.335 51.442 215.819 51.584 216.424 51.584 C 216.989 51.584 217.419 51.469 217.715 51.241 C 218.008 51.021 218.176 50.672 218.166 50.306 C 218.166 49.916 218.025 49.606 217.749 49.392 C 217.473 49.177 216.969 48.962 216.243 48.752 Z\" fill=\"rgb(0,108,102)\"></path></g></svg>',svgContentId:11159895809,withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:48,intrinsicWidth:34,pixelHeight:96,pixelWidth:68,src:\"https://framerusercontent.com/images/7vJSnJa1sGNwLjefUXi2Sj9U8Gs.svg\"},className:\"framer-mqvkn4\",\"data-framer-name\":\"ENS\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1yyr5wu\",\"data-framer-name\":\"Perimeter_Institute\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 150 42\"><path d=\"M 42.52 38.14 C 42.632 40.572 46.382 40.66 46.95 40.674 C 47.69 40.674 47.633 41.789 47.067 41.789 L 30.593 41.789 C 30.017 41.789 29.969 40.685 30.705 40.674 C 31.387 40.659 35.249 40.572 35.477 38.139 C 35.6 36.821 35.706 19.459 35.706 7.117 L 26.046 7.117 C 31.121 8.814 33.626 11.752 33.545 15.517 C 33.418 20.676 30.075 23.237 28.091 24.134 C 24.426 25.785 17.411 26.359 12.186 26.064 C 12.186 31.463 12.128 36.705 12.186 38.026 C 12.299 40.662 16.276 40.566 17.524 40.662 C 18.206 40.712 18.206 41.777 17.524 41.777 L 0.372 41.777 C -0.085 41.777 -0.198 40.662 0.484 40.662 C 1.166 40.662 5.14 40.763 5.369 38.128 C 5.505 36.5 6.143 11.259 6.05 8.928 C 5.938 6.088 1.278 6.19 0.597 6.088 C -0.085 5.988 0.14 5.014 0.597 5.014 L 47.176 5.014 C 47.858 5.014 47.746 5.967 47.288 6.069 C 46.832 6.169 42.175 6.167 42.175 8.702 C 42.175 10.729 42.465 37.117 42.516 38.13 Z M 12.183 7.724 C 11.842 8.13 12.067 23.299 12.067 23.945 C 14.367 23.855 18.294 23.931 20.084 23.285 C 23.776 21.961 27 20.217 27.13 15.122 C 27.198 12.139 24.403 9.262 21.597 8.24 C 19.402 7.443 12.445 7.406 12.183 7.721 Z M 23.772 0.003 L 36.197 2.93 L 11.34 2.93 L 23.765 0.003 Z M 62.733 14.28 C 62.733 16.954 60.776 18.147 58.124 18.147 L 56.761 18.147 L 56.761 22.202 L 54.518 22.202 L 54.518 10.584 L 57.971 10.584 C 60.93 10.584 62.733 11.778 62.733 14.28 Z M 60.384 14.28 C 60.384 12.832 59.484 12.215 57.954 12.215 L 56.747 12.215 L 56.747 16.47 L 57.954 16.47 C 59.45 16.47 60.384 15.978 60.384 14.28 Z M 68.068 12.232 L 68.068 15.474 L 71.841 15.474 L 71.841 17.122 L 68.068 17.122 L 68.068 20.525 L 72.697 20.525 L 72.697 22.188 L 65.81 22.188 L 65.81 10.584 L 72.627 10.584 L 72.389 12.232 L 68.067 12.232 Z M 78.348 17.542 L 78.348 22.194 L 76.105 22.194 L 76.105 10.584 L 79.605 10.584 C 82.674 10.584 84.262 11.694 84.262 13.996 C 84.262 15.575 83.482 16.516 81.876 17.139 L 84.944 22.194 L 82.377 22.194 L 79.777 17.542 L 78.347 17.542 Z M 79.742 15.946 C 81.136 15.946 81.917 15.39 81.917 13.996 C 81.917 12.736 81.187 12.198 79.555 12.198 L 78.348 12.198 L 78.348 15.946 Z M 87.763 22.194 L 87.763 10.584 L 90.023 10.584 L 90.023 22.194 Z M 102.989 22.194 L 102.693 17.339 C 102.59 15.624 102.505 13.829 102.539 12.603 L 100.399 20.933 L 98.261 20.933 L 95.984 12.586 C 96.044 14.193 96.021 15.802 95.916 17.406 L 95.626 22.194 L 93.456 22.194 L 94.389 10.584 L 97.279 10.584 L 99.369 18.718 L 101.329 10.584 L 104.254 10.584 L 105.171 22.194 Z M 111.061 12.232 L 111.061 15.474 L 114.834 15.474 L 114.834 17.122 L 111.061 17.122 L 111.061 20.525 L 115.7 20.525 L 115.7 22.188 L 108.828 22.188 L 108.828 10.584 L 115.645 10.584 L 115.407 12.232 Z M 123.346 12.348 L 123.346 22.196 L 121.099 22.196 L 121.099 12.348 L 117.939 12.348 L 117.939 10.584 L 126.659 10.584 L 126.42 12.348 Z M 131.622 12.232 L 131.622 15.474 L 135.395 15.474 L 135.395 17.122 L 131.622 17.122 L 131.622 20.525 L 136.261 20.525 L 136.261 22.188 L 129.379 22.188 L 129.379 10.584 L 136.196 10.584 L 135.961 12.232 Z M 141.892 17.542 L 141.892 22.194 L 139.649 22.194 L 139.649 10.584 L 143.15 10.584 C 146.218 10.584 147.81 11.694 147.81 13.996 C 147.81 15.575 147.026 16.516 145.424 17.139 L 148.491 22.194 L 145.908 22.194 L 143.307 17.542 Z M 143.286 15.946 C 144.681 15.946 145.461 15.39 145.461 13.996 C 145.461 12.736 144.732 12.198 143.099 12.198 L 141.892 12.198 L 141.892 15.946 Z M 54.504 37.806 L 54.504 26.196 L 56.764 26.196 L 56.764 37.806 Z M 67.539 37.806 L 63.509 28.412 C 63.712 29.958 63.814 31.512 63.817 33.067 L 63.817 37.806 L 61.772 37.806 L 61.772 26.196 L 64.611 26.196 L 68.701 35.604 C 68.508 34.291 68.406 32.966 68.398 31.639 L 68.398 26.196 L 70.443 26.196 L 70.443 37.806 L 67.54 37.806 Z M 82.715 27.373 L 81.576 28.65 C 80.921 28.011 79.973 27.644 78.976 27.642 C 77.922 27.642 77.158 28.112 77.158 29.018 C 77.158 29.858 77.615 30.228 79.572 30.834 C 81.617 31.471 83.055 32.311 83.055 34.495 C 83.055 36.578 81.405 38.058 78.604 38.058 C 76.982 38.088 75.429 37.501 74.37 36.456 L 75.56 35.144 C 76.3 35.899 77.396 36.336 78.552 36.338 C 79.81 36.338 80.71 35.735 80.71 34.599 C 80.71 33.623 80.216 33.189 78.382 32.633 C 75.918 31.877 74.847 30.895 74.847 29.139 C 74.847 27.208 76.527 25.93 78.839 25.93 C 80.321 25.887 81.746 26.418 82.715 27.373 Z M 91.314 27.96 L 91.314 37.809 L 89.058 37.809 L 89.058 27.96 L 85.894 27.96 L 85.894 26.196 L 94.614 26.196 L 94.375 27.96 L 91.315 27.96 Z M 98.333 37.806 L 98.333 26.196 L 100.593 26.196 L 100.593 37.806 Z M 109.851 27.96 L 109.851 37.809 L 107.591 37.809 L 107.591 27.96 L 104.431 27.96 L 104.431 26.196 L 113.15 26.196 L 112.915 27.96 Z M 121.052 38.058 C 118.164 38.058 116.702 36.395 116.702 34.003 L 116.702 26.182 L 118.945 26.182 L 118.945 33.875 C 118.945 35.505 119.606 36.314 121.052 36.314 C 122.497 36.314 123.179 35.506 123.179 33.875 L 123.179 26.196 L 125.439 26.196 L 125.439 34.017 C 125.439 36.343 123.925 38.057 121.052 38.057 Z M 134.529 27.96 L 134.529 37.809 L 132.269 37.809 L 132.269 27.96 L 129.106 27.96 L 129.106 26.196 L 137.825 26.196 L 137.587 27.96 Z M 143.791 27.841 L 143.791 31.086 L 147.564 31.086 L 147.564 32.731 L 143.791 32.731 L 143.791 36.143 L 148.43 36.143 L 148.43 37.806 L 141.551 37.806 L 141.551 26.196 L 148.369 26.196 L 148.13 27.841 Z\" fill=\"rgb(35,31,32)\"></path></svg>',svgContentId:9284302701,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-zctk2r\",\"data-framer-name\":\"Weizmann_Institute_of_Science\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 95 84\"><g transform=\"translate(0.955 0)\" id=\"ss12297758491_1\"><path d=\"M 0 0.955 L 94.009 0.955 L 94.009 84.955 L 0 84.955 Z\" fill=\"transparent\"></path><path d=\"M 34.545 9.544 L 33.405 11.486 L 33.615 11.698 L 35.558 10.684 C 35.763 10.599 35.896 10.399 35.896 10.177 L 36.023 9.164 L 35.093 9.206 C 34.883 9.164 34.671 9.333 34.545 9.544 Z M 34.63 7.686 C 34.836 7.472 34.887 7.152 34.757 6.884 L 34.503 6.166 L 33.616 6.63 C 33.396 6.757 33.242 6.973 33.194 7.222 L 32.73 9.418 L 33.025 9.586 Z M 43.709 18.666 L 42.484 17.906 C 42.189 17.698 41.809 17.65 41.471 17.779 L 39.739 18.329 L 39.739 18.666 L 41.935 19.426 C 42.34 19.552 42.781 19.473 43.118 19.216 Z M 29.265 15.076 C 29.139 15.246 29.055 15.414 29.097 15.626 L 29.224 17.061 L 29.519 17.061 L 30.449 15.879 C 30.623 15.648 30.656 15.339 30.533 15.076 L 30.195 14.19 Z M 28.632 11.318 C 28.533 11.5 28.518 11.715 28.59 11.909 L 29.223 13.683 L 29.519 13.683 L 30.11 11.951 C 30.195 11.741 30.153 11.571 29.984 11.318 L 29.308 10.304 Z M 28.928 8.235 C 29.139 8.108 29.266 7.77 29.308 7.517 L 29.519 6.292 L 28.506 6.334 C 28.253 6.334 27.999 6.504 27.83 6.714 L 26.69 8.7 L 26.986 9.038 L 28.928 8.236 Z M 37.375 7.728 C 37.755 7.559 37.755 7.559 37.924 7.137 L 38.304 6.123 L 37.079 6.123 C 36.826 6.123 36.615 6.25 36.446 6.461 L 35.348 8.151 L 35.601 8.446 Z M 42.695 9.333 C 42.407 9.34 42.155 9.526 42.062 9.798 L 41.091 11.74 L 41.344 11.994 L 43.371 10.896 C 43.63 10.77 43.794 10.508 43.794 10.22 L 43.667 9.333 L 42.696 9.333 Z M 43.921 13.725 L 44.174 12.669 L 43.034 12.331 C 42.823 12.247 42.569 12.331 42.401 12.458 L 40.501 14.105 L 40.627 14.443 L 43.245 14.316 C 43.575 14.286 43.848 14.048 43.921 13.725 Z M 37.755 9.502 L 40.668 7.686 C 40.88 7.517 41.006 7.306 40.964 7.053 L 40.88 6.166 L 39.57 6.504 C 39.36 6.546 39.19 6.714 39.064 6.926 L 37.501 9.29 L 37.754 9.501 Z M 32.223 8.15 C 32.349 7.94 32.391 7.686 32.307 7.475 L 31.631 6.123 L 30.618 6.841 C 30.448 6.968 30.448 7.348 30.406 7.559 L 30.406 7.601 L 30.196 10.009 L 30.618 10.177 Z M 17.357 9.08 L 16.259 8.53 L 16.217 9.797 C 16.175 10.051 16.301 10.347 16.639 10.642 L 17.906 11.909 L 18.244 11.698 L 17.779 9.544 C 17.653 9.333 17.569 9.206 17.357 9.079 Z M 28.084 10.473 L 27.957 9.503 L 26.775 9.967 C 26.437 10.051 26.395 10.431 26.225 10.811 L 25.55 12.29 L 25.846 12.5 L 27.704 11.614 C 27.999 11.403 28.168 11.234 28.084 10.474 Z M 22.509 11.064 L 22.805 11.022 L 22.889 9.755 C 22.931 9.459 22.762 9.164 22.509 8.995 L 21.875 8.657 L 21.622 9.375 C 21.573 9.557 21.587 9.751 21.664 9.924 Z M 16.428 7.56 L 18.328 8.742 L 18.624 8.53 L 18.075 6.883 C 17.99 6.63 17.779 6.461 17.526 6.377 L 16.259 6.123 L 16.09 6.757 C 16.048 7.095 16.175 7.39 16.428 7.559 Z M 19.13 10.305 L 20.482 11.53 L 20.735 11.276 L 20.355 9.586 C 20.313 9.376 20.145 9.165 19.933 9.122 L 19.003 8.912 L 18.877 9.714 C 18.793 9.924 18.919 10.178 19.13 10.304 Z M 23.269 8.868 L 23.565 8.784 L 23.818 7.137 C 23.825 6.925 23.711 6.728 23.523 6.63 L 22.805 6.123 L 22.214 6.926 C 22.087 7.136 22.087 7.39 22.214 7.559 L 23.269 8.869 Z M 26.437 7.686 C 26.648 7.601 26.775 7.432 26.775 7.221 L 26.732 6.123 L 25.55 6.208 C 25.381 6.25 25.212 6.377 25.17 6.546 L 24.494 8.277 L 24.79 8.53 Z M 25.085 13.64 C 25.001 13.683 24.916 13.768 24.832 13.852 L 24.114 14.57 L 24.156 14.823 L 25.339 14.866 C 25.592 14.866 25.761 14.696 25.929 14.443 L 26.268 13.683 L 25.508 13.556 C 25.338 13.556 25.212 13.556 25.085 13.641 Z M 23.607 11.613 L 25.254 10.769 C 25.508 10.642 25.676 10.389 25.634 10.093 L 25.508 9.079 L 24.41 9.502 C 24.24 9.586 24.072 9.712 24.03 9.882 L 23.312 11.402 Z M 19.342 7.348 L 20.82 8.7 L 21.158 8.573 L 20.989 6.883 C 20.947 6.588 20.736 6.377 20.44 6.293 L 19.764 6.081 L 19.215 6.588 C 19.089 6.884 19.131 7.179 19.342 7.348 Z M 36.234 10.98 L 35.22 12.88 L 35.474 13.091 L 37.332 12.078 C 37.533 11.966 37.661 11.758 37.67 11.528 L 37.754 10.431 L 36.783 10.557 C 36.539 10.594 36.332 10.754 36.233 10.98 Z M 40.754 10.009 L 39.487 10.262 C 39.317 10.262 39.107 10.432 38.937 10.769 L 37.882 12.627 L 38.093 12.88 L 40.036 12.036 C 40.374 11.909 40.585 11.529 40.585 11.106 Z M 37.037 16.216 L 39.275 15.203 C 39.528 15.076 39.697 14.865 39.697 14.612 L 39.782 13.767 L 38.515 13.851 C 38.271 13.849 38.045 13.978 37.924 14.189 L 36.784 15.963 Z M 41.555 16.85 L 42.315 15.963 L 40.922 15.414 C 40.669 15.33 40.373 15.33 40.162 15.499 L 38.304 16.935 L 38.431 17.23 L 41.007 17.104 C 41.217 17.061 41.429 16.977 41.556 16.85 Z M 36.952 18.328 C 36.825 18.37 36.699 18.497 36.614 18.624 L 35.685 20.313 L 35.896 20.566 L 38.135 19.68 C 38.43 19.553 38.641 19.257 38.599 18.92 L 38.515 17.863 Z M 40.965 9.08 L 43.498 7.897 C 43.756 7.771 43.92 7.508 43.92 7.221 L 43.92 6.123 L 42.653 6.25 C 42.485 6.292 42.358 6.419 42.273 6.588 L 40.837 8.826 L 40.964 9.079 Z M 45.947 8.446 C 46.412 8.235 46.834 8.024 46.877 7.601 C 46.918 7.264 46.918 6.292 46.918 6.123 L 45.694 6.293 C 45.379 6.286 45.1 6.495 45.018 6.799 L 44.173 8.784 L 44.427 9.037 Z M 42.147 24.79 C 41.973 24.608 41.71 24.542 41.471 24.62 L 39.191 25.043 L 39.148 25.381 L 41.513 26.394 C 41.767 26.479 42.02 26.479 42.231 26.352 L 43.161 25.761 Z M 32.856 11.614 L 32.898 10.304 L 31.8 10.642 C 31.557 10.716 31.368 10.906 31.294 11.149 L 30.66 13.429 L 30.914 13.599 L 32.561 12.289 C 32.73 12.163 32.856 12.036 32.856 11.614 Z M 33.616 14.654 C 33.87 14.528 33.996 14.274 33.996 13.979 L 34.081 13.049 L 32.983 13.176 C 32.687 13.176 32.433 13.387 32.307 13.683 L 31.716 15.246 L 31.969 15.456 Z M 40.795 23.987 C 41.092 24.072 41.429 23.987 41.598 23.734 L 42.232 22.889 L 40.965 22.298 C 40.795 22.214 40.585 22.214 40.374 22.256 L 38.474 22.931 L 38.474 23.269 L 40.796 23.987 Z M 41.175 28.802 L 42.273 28.675 L 41.936 27.872 C 41.767 27.459 41.402 27.158 40.964 27.07 L 38.684 26.605 L 38.514 26.901 L 40.035 28.421 C 40.331 28.717 40.753 28.886 41.175 28.801 Z M 40.88 31.63 L 42.4 31.504 L 42.273 30.533 C 42.227 30.22 41.992 29.967 41.683 29.899 L 38.853 29.266 L 38.683 29.562 L 40.246 31.335 C 40.397 31.531 40.633 31.641 40.88 31.631 Z M 33.701 15.794 L 33.828 16.005 L 35.77 15.667 C 36.023 15.625 36.235 15.457 36.361 15.203 L 36.868 13.767 L 35.728 13.725 C 35.474 13.725 35.263 13.809 35.137 14.02 Z M 40.373 21.326 L 41.133 20.102 L 39.698 19.891 C 39.505 19.846 39.302 19.892 39.148 20.017 L 37.248 21.115 L 37.333 21.411 L 39.655 21.622 C 39.951 21.706 40.205 21.58 40.373 21.326 Z M 35.432 18.202 C 35.728 18.244 35.854 18.117 36.108 17.864 L 36.868 17.062 L 35.558 16.639 C 35.052 16.513 34.841 16.555 34.63 16.766 L 33.278 17.696 L 33.363 18.033 L 35.433 18.202 Z M 37.122 26.141 C 37.375 26.183 37.671 26.099 37.84 25.888 L 38.431 25.128 L 37.629 24.748 C 37.456 24.671 37.262 24.656 37.079 24.705 L 35.264 25.339 L 35.306 25.634 Z M 33.827 21.453 L 33.404 23.185 L 33.658 23.396 L 34.925 22.214 C 35.22 21.876 35.347 21.749 35.347 21.454 L 35.263 20.567 C 35.263 20.567 34.587 20.82 34.333 20.904 C 34.08 20.989 33.953 21.031 33.827 21.454 Z M 36.825 23.734 C 37.155 23.663 37.376 23.351 37.333 23.016 L 37.248 22.213 L 36.15 22.383 C 35.995 22.382 35.851 22.461 35.77 22.593 L 34.292 24.198 L 34.461 24.494 L 36.826 23.734 Z M 45.187 16.386 L 43.16 17.146 L 43.16 17.484 L 45.398 18.328 C 45.694 18.455 46.032 18.37 46.201 18.117 L 46.919 17.272 L 45.863 16.47 C 45.694 16.301 45.441 16.301 45.187 16.386 Z M 32.898 25.423 L 31.968 26.31 L 32.138 26.648 L 33.574 26.563 C 33.911 26.563 34.249 26.31 34.334 26.014 L 34.629 25.254 L 33.405 25.17 C 33.221 25.22 33.048 25.306 32.898 25.423 Z M 37.079 28.422 L 38.219 27.999 L 37.543 27.239 C 37.375 27.07 37.121 26.943 36.868 26.986 L 34.841 27.028 L 34.714 27.324 L 36.234 28.379 C 36.488 28.506 36.826 28.549 37.079 28.422 Z M 33.025 27.408 L 31.294 27.366 L 31.167 27.576 L 32.477 28.548 C 32.687 28.718 32.941 28.759 33.237 28.718 L 34.292 28.506 L 33.701 27.704 C 33.574 27.534 33.321 27.408 33.025 27.408 Z M 6.757 34.587 C 6.638 34.669 6.549 34.788 6.504 34.925 L 6.082 36.065 L 8.193 35.559 C 8.447 35.516 8.658 35.305 8.743 35.052 L 9.418 33.067 L 9.038 32.94 L 6.758 34.587 Z M 37.839 30.111 C 37.755 29.858 37.543 29.646 37.29 29.604 L 34.967 29.097 L 34.798 29.393 L 36.361 31.293 C 36.53 31.505 36.826 31.631 37.079 31.547 L 38.261 31.293 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 32.94 24.156 L 32.94 23.565 L 32.138 23.649 C 31.8 23.692 31.588 23.776 31.504 24.199 L 31.209 25.676 L 30.279 26.648 L 26.648 26.648 C 26.268 26.648 26.057 26.183 26.31 25.888 L 28.084 23.86 L 27.788 23.607 L 22.848 29.013 L 22.551 28.717 L 23.269 27.872 C 23.354 27.788 23.396 27.662 23.354 27.577 L 22.889 26.521 L 25.127 21.284 C 25.311 20.842 25.747 20.558 26.225 20.567 L 27.788 20.567 L 28.548 19.764 C 29.224 19.088 29.478 18.962 30.153 18.962 L 31.378 18.962 L 32.434 19.764 C 32.644 19.933 32.856 19.891 33.194 19.849 L 34.123 19.553 L 33.363 18.835 C 33.025 18.539 32.898 18.582 32.645 18.582 L 29.645 18.582 L 30.363 17.822 L 31.673 17.652 C 31.926 17.61 32.095 17.442 32.263 17.188 L 32.813 16.217 L 31.799 16.217 C 31.503 16.217 31.292 16.259 31.123 16.427 L 28.927 18.835 C 28.717 19.046 28.337 19.088 28.083 19.088 L 25.126 19.088 L 24.24 20.018 L 23.944 19.764 L 24.662 18.919 C 24.789 18.793 24.831 18.582 24.831 18.413 L 24.578 15.794 C 24.578 15.794 23.648 15.288 23.648 14.739 C 23.605 14.326 23.763 13.918 24.071 13.641 L 24.535 13.303 C 24.831 13.092 24.915 12.965 24.958 12.416 L 25 11.613 L 23.648 12.163 C 23.48 12.247 23.268 12.543 23.268 12.711 L 23.268 13.725 L 22.888 14.401 L 22.381 13.851 L 22.381 13.387 L 22.593 12.458 C 22.677 12.162 22.466 11.909 22.255 11.74 L 21.41 11.107 L 21.03 11.951 C 20.989 12.184 21.034 12.424 21.157 12.627 L 21.875 13.472 L 21.875 17.652 L 19.848 16.386 C 19.549 16.219 19.345 15.922 19.298 15.583 L 19.298 13.471 C 19.298 13.007 19.341 12.965 19.045 12.711 L 18.538 12.331 L 18.116 13.049 C 17.989 13.261 17.947 13.472 18.074 13.683 L 18.876 14.781 L 18.707 15.625 L 16.807 13.894 C 16.638 13.725 16.385 13.683 16.173 13.725 L 15.244 14.105 L 15.624 14.739 C 15.794 15.034 15.92 15.034 16.174 15.119 L 17.652 15.288 L 20.523 19.088 C 20.903 19.553 20.988 20.102 20.735 20.608 L 20.017 22.087 L 19.805 22.509 L 15.371 19.764 C 15.033 19.553 14.991 19.511 14.653 19.511 L 13.893 19.595 L 14.189 20.355 C 14.315 20.651 14.611 20.905 14.907 20.905 L 16.342 20.905 L 17.398 21.538 L 17.398 21.707 L 14.4 21.707 C 14.113 21.707 13.85 21.871 13.724 22.129 L 13.217 23.269 L 14.147 23.312 C 14.357 23.312 14.527 23.269 14.653 23.142 L 15.793 22.129 L 16.343 22.129 C 16.723 22.129 16.933 22.087 17.103 22.382 L 18.073 23.776 C 18.454 24.326 18.538 24.578 18.412 24.959 L 17.821 26.226 L 16.765 28.337 L 16.68 34.081 L 15.245 35.6 L 15.245 36.107 L 26.479 36.107 L 26.943 35.642 L 25.297 31.968 L 26.352 28.505 C 26.475 28.121 26.836 27.863 27.239 27.871 L 29.815 27.871 L 32.602 24.831 C 32.94 24.493 32.94 24.451 32.94 24.155 Z M 11.867 23.607 L 9.924 24.621 C 9.713 24.747 9.544 24.958 9.544 25.211 L 9.544 26.352 L 11.022 25.845 C 11.191 25.803 11.36 25.634 11.444 25.465 L 12.204 23.775 Z M 10.853 27.281 L 10.431 27.324 L 9.46 29.984 C 9.375 30.195 9.417 30.491 9.544 30.702 L 10.051 31.842 L 11.149 30.364 C 11.36 30.153 11.444 29.815 11.318 29.562 L 10.853 27.282 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 13.176 24.452 L 11.825 26.268 C 11.655 26.479 11.614 26.733 11.655 26.986 L 11.909 27.831 L 13.219 27.028 C 13.429 26.902 13.599 26.648 13.556 26.395 L 13.556 24.495 Z M 37.797 32.265 L 37.501 32.434 L 37.754 34.798 C 37.797 35.01 37.881 35.178 38.092 35.305 L 39.57 36.15 L 39.824 34.63 C 39.866 34.418 39.781 34.207 39.613 34.038 Z M 45.653 22.002 L 42.654 21.918 L 42.527 22.256 L 44.892 23.818 C 45.15 24.029 45.521 24.029 45.779 23.818 L 46.919 23.1 L 46.117 22.256 C 46.033 22.086 45.821 22.002 45.652 22.002 Z M 45.272 13.514 L 43.456 15.372 L 43.625 15.71 L 46.285 15.414 C 46.669 15.365 46.958 15.041 46.961 14.654 L 46.961 13.514 L 45.947 13.303 C 45.701 13.261 45.45 13.339 45.272 13.513 Z M 44.765 19.469 C 44.722 19.469 44.722 19.511 44.68 19.511 L 42.4 20.525 L 42.442 20.862 L 45.356 21.2 C 45.398 21.2 45.482 21.2 45.525 21.242 C 45.82 21.285 45.989 21.327 46.495 20.82 L 46.96 20.355 L 46.074 19.765 C 45.314 19.215 45.187 19.257 44.764 19.469 Z M 45.441 10.051 L 43.878 11.403 L 43.962 11.74 L 45.272 11.91 L 45.482 11.91 C 45.905 11.952 46.327 11.994 46.539 11.698 L 46.665 11.445 L 46.919 10.389 L 46.243 9.967 C 45.99 9.84 45.693 9.882 45.441 10.051 Z M 46.624 34.038 L 43.836 32.265 L 43.583 32.475 L 44.554 35.221 C 44.639 35.474 44.808 35.643 45.061 35.685 L 46.961 36.108 L 46.961 34.588 C 46.919 34.376 46.835 34.165 46.624 34.038 Z M 42.907 34.291 L 40.457 32.306 L 40.162 32.518 L 41.175 35.474 C 41.264 35.725 41.5 35.893 41.766 35.896 L 43.286 36.107 L 43.202 34.84 C 43.16 34.63 43.076 34.418 42.907 34.291 Z M 46.117 30.448 L 43.329 29.561 L 43.119 29.857 L 45.103 32.095 C 45.27 32.264 45.5 32.355 45.737 32.349 L 46.961 32.222 L 46.623 30.955 C 46.539 30.702 46.37 30.49 46.117 30.448 Z M 45.695 24.62 L 43.455 24.62 L 43.329 24.959 L 45.145 26.479 C 45.29 26.591 45.469 26.65 45.652 26.648 L 46.919 26.31 L 46.159 24.874 C 46.074 24.705 45.905 24.621 45.694 24.621 Z M 46.455 28.294 C 46.328 27.957 46.285 27.872 46.075 27.745 L 42.991 27.155 L 42.822 27.45 L 44.849 29.266 C 44.976 29.35 45.103 29.435 45.229 29.477 L 46.961 29.604 L 46.539 28.464 C 46.497 28.379 46.497 28.337 46.454 28.294 Z M 10.769 8.024 L 13.092 9.206 L 13.302 8.953 L 11.952 6.546 C 11.782 6.334 11.656 6.292 11.276 6.25 L 11.106 6.25 L 9.924 6.123 L 10.347 7.686 C 10.473 7.813 10.6 7.939 10.769 8.024 Z M 12.332 12.078 L 11.149 12.5 L 11.994 13.556 C 12.144 13.752 12.38 13.862 12.627 13.852 L 14.485 13.725 L 14.57 13.387 L 13.007 12.205 C 12.796 12.035 12.543 11.994 12.332 12.078 Z M 6.081 32.35 L 6.166 33.574 L 7.94 32.687 C 8.15 32.603 8.277 32.392 8.362 32.18 L 8.784 30.364 L 8.446 30.111 L 6.377 31.674 C 6.166 31.843 6.039 32.096 6.081 32.349 Z M 14.359 17.652 L 12.669 16.554 C 12.459 16.428 12.205 16.428 12.036 16.554 L 10.938 17.188 L 11.909 17.948 C 12.036 18.075 12.205 18.117 12.416 18.075 L 14.401 17.905 Z M 14.655 15.076 L 12.543 14.316 C 12.289 14.19 12.163 14.274 11.783 14.401 L 11.065 14.781 L 11.698 15.541 C 11.867 15.794 12.12 15.879 12.416 15.837 L 14.612 15.414 L 14.654 15.076 Z M 15.963 18.075 L 15.076 18.075 L 15.33 18.793 C 15.372 18.963 15.456 19.047 15.667 19.173 L 16.977 20.018 L 17.146 19.807 L 16.554 18.371 C 16.385 18.201 16.174 18.075 15.964 18.075 Z M 13.598 7.855 L 14.992 9.375 L 15.288 9.206 L 14.95 6.757 C 14.865 6.419 14.57 6.166 14.232 6.166 L 13.387 6.166 L 13.387 7.39 C 13.387 7.56 13.472 7.728 13.598 7.855 Z M 10.389 21.622 L 9.629 22.72 L 10.853 23.142 C 11.118 23.236 11.413 23.17 11.613 22.973 L 13.218 21.538 L 13.091 21.115 L 10.98 21.285 C 10.726 21.326 10.515 21.411 10.389 21.622 Z M 17.315 15.963 L 15.921 15.71 C 15.626 15.668 15.331 15.794 15.203 16.048 L 14.739 16.808 L 15.752 17.061 C 15.964 17.104 16.175 17.061 16.344 16.977 L 17.526 16.217 Z M 13.387 18.962 L 11.402 18.708 C 11.149 18.666 10.938 18.793 10.769 18.962 L 9.924 19.933 L 11.149 20.483 C 11.36 20.567 11.656 20.567 11.867 20.398 L 13.387 19.342 Z M 11.318 9.418 L 10.22 9.714 L 10.431 10.474 C 10.515 10.727 10.727 10.98 10.98 11.023 L 13.387 11.53 L 13.557 11.234 L 12.036 9.629 C 11.825 9.46 11.571 9.376 11.318 9.418 Z M 7.601 23.27 L 9.417 21.074 L 9.122 20.82 L 7.095 21.327 C 6.859 21.372 6.675 21.556 6.63 21.792 L 6.081 23.27 L 6.926 23.48 C 7.173 23.564 7.445 23.479 7.601 23.27 Z M 8.025 26.099 L 8.911 24.072 L 8.615 23.776 L 6.546 24.959 C 6.335 25.085 6.166 25.339 6.166 25.592 L 6.082 26.944 L 7.56 26.564 C 7.772 26.479 7.939 26.311 8.024 26.099 Z M 7.982 20.229 L 10.136 18.159 L 9.924 17.779 L 7.433 18.286 C 7.246 18.322 7.08 18.428 6.968 18.582 L 6.124 19.764 L 7.094 20.314 C 7.348 20.524 7.728 20.482 7.982 20.229 Z M 7.855 29.52 L 9.122 27.281 L 8.826 27.028 L 6.715 27.915 C 6.461 27.999 6.292 28.253 6.25 28.505 L 6.081 29.688 L 7.052 29.9 C 7.372 29.948 7.689 29.798 7.855 29.52 Z M 6.968 8.277 L 9.587 8.784 L 9.714 8.489 L 7.898 6.335 C 7.686 6.124 7.306 6.039 7.053 6.208 L 6.082 6.757 L 6.419 7.813 C 6.474 8.075 6.701 8.267 6.969 8.277 Z M 14.359 10.304 L 14.486 11.656 C 14.528 11.951 14.696 12.205 14.992 12.289 L 16.892 13.134 L 17.104 12.88 L 15.541 10.642 C 15.402 10.428 15.163 10.301 14.908 10.304 Z M 7.391 11.867 L 10.178 11.909 L 10.305 11.571 L 8.151 9.924 C 7.897 9.756 7.559 9.714 7.306 9.924 L 6.039 10.769 L 6.884 11.614 C 7.053 11.783 7.222 11.867 7.391 11.867 Z M 8.362 14.823 L 10.727 13.893 L 10.727 13.556 L 7.982 12.585 C 7.737 12.498 7.464 12.545 7.264 12.711 L 6.081 13.725 L 7.728 14.739 C 7.898 14.907 8.15 14.907 8.362 14.823 Z M 8.024 17.23 L 10.136 16.09 L 10.093 15.668 L 7.348 15.457 C 7.076 15.424 6.81 15.557 6.673 15.794 L 6.039 16.724 L 7.349 17.272 C 7.602 17.357 7.813 17.357 8.024 17.23 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 53.043 42.23 L 0 42.23 L 0 0 L 53.043 0 Z M 0.591 41.64 L 52.409 41.64 L 52.409 0.59 L 0.591 0.59 Z M 67.615 55.705 L 67.868 55.705 L 67.868 48.525 L 66.938 48.525 L 66.938 53.593 L 62.124 48.441 L 61.913 48.441 L 61.913 55.578 L 62.8 55.578 L 62.8 50.51 L 67.614 55.705 Z M 58.745 55.705 L 58.999 55.705 L 58.999 48.525 L 58.07 48.525 L 58.07 53.593 L 53.256 48.441 L 53.044 48.441 L 53.044 55.578 L 53.931 55.578 L 53.931 50.51 L 58.746 55.705 Z M 58.155 66.685 L 61.871 66.685 L 61.871 65.883 L 59.083 65.883 L 59.083 63.307 L 61.66 63.307 L 61.66 62.504 L 59.083 62.504 L 59.083 60.393 L 61.871 60.393 L 61.871 59.59 L 58.154 59.59 L 58.154 66.685 Z M 47.175 52.749 L 48.23 50.257 L 49.286 52.749 L 47.174 52.749 Z M 44.935 55.62 L 45.865 55.62 L 46.835 53.551 L 49.665 53.551 L 50.636 55.621 L 51.608 55.621 L 48.44 48.483 L 48.187 48.483 L 44.935 55.621 Z M 66.855 77.328 L 70.571 77.328 L 70.571 76.526 L 67.784 76.526 L 67.784 73.95 L 70.36 73.95 L 70.36 73.147 L 67.784 73.147 L 67.784 71.036 L 70.571 71.036 L 70.571 70.234 L 66.855 70.234 Z M 53.34 66.685 L 54.27 66.685 L 54.27 60.393 L 56.423 60.393 L 56.423 59.59 L 51.186 59.59 L 51.186 60.393 L 53.34 60.393 Z M 35.856 55.62 L 36.743 55.62 L 36.743 50.553 L 39.573 53.509 L 42.403 50.553 L 42.403 55.621 L 43.289 55.621 L 43.289 48.441 L 43.078 48.441 L 39.573 52.2 L 36.068 48.441 L 35.856 48.441 L 35.856 55.621 Z M 61.871 77.54 C 62.842 77.54 63.645 77.244 64.278 76.695 L 64.278 75.639 L 64.193 75.597 C 63.771 76.23 62.969 76.737 61.871 76.737 C 60.308 76.737 59.083 75.427 59.083 73.739 C 59.083 72.134 60.266 70.825 61.871 70.825 C 62.884 70.825 63.729 71.289 64.193 71.923 L 64.278 71.88 L 64.278 70.91 C 63.687 70.36 62.884 70.064 61.871 70.064 C 59.801 70.064 58.154 71.669 58.154 73.739 C 58.197 75.892 59.802 77.539 61.871 77.539 Z M 46.371 66.77 C 47.934 66.77 49.455 65.968 49.455 63.645 L 49.455 59.633 L 48.525 59.633 L 48.525 63.941 C 48.525 65.292 47.47 66.011 46.372 66.011 C 45.316 66.011 44.218 65.292 44.218 63.941 L 44.218 59.591 L 43.289 59.591 L 43.289 63.603 C 43.289 65.968 44.809 66.77 46.372 66.77 Z M 55.663 77.413 L 55.873 77.413 L 55.873 70.276 L 54.987 70.276 L 54.987 75.343 L 50.173 70.191 L 49.962 70.191 L 49.962 77.328 L 50.848 77.328 L 50.848 72.26 L 55.663 77.412 Z M 28.297 55.62 L 33.576 55.62 L 33.576 54.818 L 29.86 54.818 L 33.914 48.568 L 28.719 48.568 L 28.719 49.37 L 32.393 49.37 Z M 38.517 66.685 L 39.404 66.685 L 39.404 60.393 L 41.558 60.393 L 41.558 59.59 L 36.321 59.59 L 36.321 60.393 L 38.475 60.393 L 38.475 66.685 Z M 25.552 55.62 L 26.439 55.62 L 26.439 48.526 L 25.552 48.526 Z M 43.332 77.327 L 47.048 77.327 L 47.048 76.525 L 44.26 76.525 L 44.26 73.949 L 46.879 73.949 L 46.879 73.146 L 44.26 73.146 L 44.26 71.035 L 47.048 71.035 L 47.048 70.233 L 43.331 70.233 L 43.331 77.327 Z M 33.279 66.685 L 34.166 66.685 L 34.166 59.59 L 33.279 59.59 Z M 19.386 55.62 L 23.06 55.62 L 23.06 54.818 L 20.273 54.818 L 20.273 52.284 L 22.849 52.284 L 22.849 51.482 L 20.273 51.482 L 20.273 49.37 L 23.06 49.37 L 23.06 48.526 L 19.386 48.526 Z M 39.488 77.327 L 40.375 77.327 L 40.375 70.275 L 39.488 70.275 Z M 28.001 66.685 L 28.888 66.685 L 28.888 60.393 L 31.084 60.393 L 31.084 59.59 L 25.805 59.59 L 25.805 60.393 L 27.959 60.393 L 27.959 66.685 Z M 10.56 55.705 L 10.813 55.705 L 12.291 53.002 L 13.769 55.705 L 13.981 55.705 L 18.161 48.568 L 17.063 48.568 L 13.812 54.227 L 12.714 52.157 L 14.656 48.61 L 13.643 48.61 L 12.249 51.27 L 10.855 48.61 L 9.8 48.61 L 11.742 52.157 L 10.644 54.227 L 7.477 48.526 L 6.379 48.526 L 10.559 55.705 Z M 34.505 77.539 C 35.476 77.539 36.321 77.243 36.912 76.694 L 36.912 75.638 L 36.828 75.596 C 36.405 76.229 35.603 76.736 34.505 76.736 C 32.942 76.736 31.718 75.426 31.718 73.738 C 31.718 72.133 32.942 70.824 34.505 70.824 C 35.519 70.824 36.363 71.288 36.828 71.922 L 36.912 71.879 L 36.912 70.909 C 36.321 70.359 35.476 70.063 34.505 70.063 C 32.435 70.063 30.831 71.668 30.831 73.738 C 30.831 75.891 32.436 77.538 34.505 77.538 Z M 22.089 66.811 C 23.314 66.811 24.412 66.135 24.412 64.784 C 24.412 63.601 23.821 63.01 22.3 62.377 C 21.54 62.039 21.202 61.574 21.202 61.11 C 21.202 60.603 21.582 60.223 22.173 60.223 C 22.553 60.223 23.018 60.392 23.398 61.025 L 24.158 60.603 C 23.652 59.758 22.976 59.42 22.258 59.42 C 21.118 59.42 20.273 60.012 20.273 61.152 C 20.273 61.87 20.738 62.588 22.047 63.137 C 23.229 63.686 23.483 64.066 23.483 64.784 C 23.483 65.502 22.933 66.008 22.131 66.008 C 21.582 66.008 20.907 65.67 20.484 64.784 L 19.766 65.164 C 20.104 66.219 21.076 66.811 22.089 66.811 Z M 26.819 77.495 C 28.044 77.495 29.142 76.82 29.142 75.51 C 29.142 74.328 28.592 73.694 27.072 73.06 C 26.312 72.765 25.932 72.259 25.932 71.794 C 25.932 71.329 26.312 70.949 26.903 70.949 C 27.283 70.949 27.748 71.119 28.128 71.709 L 28.888 71.287 C 28.381 70.485 27.706 70.147 26.988 70.147 C 25.848 70.147 25.003 70.738 25.003 71.878 C 25.003 72.596 25.425 73.314 26.734 73.906 C 27.917 74.412 28.213 74.792 28.213 75.553 C 28.213 76.271 27.663 76.735 26.819 76.735 C 26.269 76.735 25.636 76.397 25.172 75.553 L 24.454 75.933 C 24.858 76.881 25.789 77.495 26.819 77.495 Z M 17.275 66.77 L 17.485 66.77 L 17.485 59.59 L 16.599 59.59 L 16.599 64.658 L 11.742 59.506 L 11.532 59.506 L 11.532 66.685 L 12.418 66.685 L 12.418 61.617 L 17.275 66.769 Z M 7.73 66.686 L 8.617 66.686 L 8.617 59.59 L 7.73 59.59 L 7.73 66.685 Z M 16.726 77.328 L 17.612 77.328 L 17.612 73.95 L 20.104 73.95 L 20.104 73.147 L 17.612 73.147 L 17.612 71.036 L 20.4 71.036 L 20.4 70.234 L 16.725 70.234 L 16.725 77.328 Z M 11.066 76.738 C 9.42 76.738 8.11 75.428 8.11 73.738 C 8.11 72.134 9.42 70.825 11.067 70.825 C 12.671 70.825 13.938 72.092 13.938 73.739 C 13.938 75.428 12.671 76.737 11.067 76.737 Z M 11.066 77.54 C 13.22 77.54 14.91 75.935 14.91 73.739 C 14.91 71.669 13.22 70.065 11.067 70.065 C 8.871 70.065 7.224 71.669 7.224 73.739 C 7.181 75.892 8.871 77.539 11.067 77.539 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 94.009 84 L 0.002 84 L 0.002 41.77 L 94.009 41.77 Z M 0.635 83.41 L 93.416 83.41 L 93.416 42.36 L 0.636 42.36 L 0.636 83.41 Z M 60.095 20.228 L 59.926 25.634 L 61.405 26.9 L 61.659 26.9 L 60.687 20.396 C 60.645 20.227 60.73 19.932 60.983 19.636 L 62.081 18.369 L 60.011 16.638 L 59.589 16.638 L 58.745 17.608 L 60.476 19.087 C 60.73 19.256 60.73 19.509 60.518 19.72 L 60.096 20.227 Z M 77.03 14.654 L 86.32 14.654 L 87.334 12.838 L 87.334 8.108 C 87.334 7.348 86.701 6.757 85.814 6.757 L 82.774 6.757 L 81.844 7.77 C 81.549 8.108 81 8.108 80.662 7.812 L 78.803 6.25 L 78.381 6.25 L 77.537 7.221 L 79.817 9.121 C 80.113 9.375 80.113 9.713 79.817 10.051 L 79.226 10.768 L 79.522 11.022 L 81.633 8.572 C 81.844 8.319 82.182 8.108 82.689 8.108 L 85.054 8.108 C 85.603 8.108 85.898 8.319 85.983 8.826 L 86.574 12.078 C 86.659 12.458 86.616 12.711 86.447 12.88 C 86.152 13.26 85.434 13.302 84.631 13.302 L 77.452 13.302 L 76.945 14.358 L 76.945 14.654 Z M 85.56 25.254 L 85.856 25.254 L 87.166 24.663 L 86.279 20.397 C 86.236 20.228 86.321 19.975 86.616 19.679 L 87.714 18.412 L 85.645 16.681 L 85.223 16.681 L 84.378 17.652 L 86.152 19.13 C 86.405 19.3 86.405 19.553 86.194 19.764 L 85.814 20.228 Z M 81.337 21.031 L 83.702 18.328 L 81.718 16.638 L 81.295 16.638 L 80.451 17.652 L 81.929 18.877 C 82.224 19.13 82.224 19.468 81.929 19.806 L 81.084 20.777 Z M 66.387 14.654 L 75.552 14.654 L 76.439 12.838 L 76.439 7.77 C 76.439 7.179 75.889 6.757 75.214 6.757 L 68.921 6.757 C 68.668 6.757 68.457 6.63 68.288 6.461 L 68.077 6.292 L 67.697 6.292 L 66.852 7.263 L 67.908 8.108 L 74.538 8.108 C 74.918 8.108 75.088 8.235 75.129 8.572 L 75.679 12.035 C 75.718 12.314 75.658 12.599 75.509 12.838 C 75.214 13.218 74.539 13.302 73.778 13.302 L 66.937 13.302 L 66.387 14.4 Z M 71.92 25.127 L 78.761 25.127 L 79.311 24.029 C 79.437 23.733 79.352 23.48 79.057 23.269 L 77.537 22.087 C 77.389 21.986 77.291 21.828 77.267 21.65 C 77.242 21.473 77.295 21.294 77.41 21.157 L 79.817 18.37 L 77.79 16.68 L 77.368 16.68 L 76.523 17.652 L 78.043 18.919 C 78.339 19.172 78.339 19.51 78.043 19.849 L 76.65 21.453 L 74.96 20.143 C 74.707 19.975 74.75 19.679 74.876 19.51 L 75.847 18.37 L 73.778 16.639 L 73.356 16.639 L 72.511 17.609 L 74.243 19.046 C 74.496 19.257 74.453 19.51 74.285 19.764 L 73.905 20.27 L 77.41 23.48 C 77.537 23.564 77.494 23.776 77.241 23.776 L 72.384 23.776 L 71.878 24.831 L 71.878 25.127 Z M 63.98 14.907 L 64.276 14.907 L 65.586 14.316 L 64.698 10.051 C 64.656 9.797 64.825 9.544 65.036 9.333 L 66.134 8.066 L 64.064 6.334 L 63.642 6.334 L 62.798 7.306 L 64.572 8.784 C 64.825 8.994 64.825 9.206 64.614 9.417 L 64.234 9.882 Z M 61.404 16.385 L 61.658 16.385 L 60.686 10.008 C 60.644 9.839 60.729 9.586 60.982 9.29 L 62.08 8.023 L 60.01 6.292 L 59.588 6.292 L 58.744 7.263 L 60.517 8.741 C 60.771 8.911 60.771 9.164 60.56 9.375 L 60.137 9.839 L 59.968 15.119 Z M 62.207 25.127 L 70.4 25.127 L 71.286 23.311 L 71.286 18.497 C 71.286 17.737 70.653 17.103 69.766 17.103 L 68.076 17.103 L 67.106 18.201 C 66.81 18.539 66.303 18.539 65.966 18.243 L 64.107 16.639 L 63.558 16.639 L 62.756 17.568 L 65.036 19.51 C 65.332 19.764 65.374 20.102 65.121 20.44 L 64.529 21.157 L 64.825 21.411 L 66.937 18.919 C 67.106 18.666 67.486 18.455 68.035 18.455 L 69.259 18.455 C 69.766 18.455 69.977 18.75 70.062 19.257 L 70.611 22.593 C 70.695 22.931 70.611 23.184 70.526 23.353 C 70.231 23.818 69.513 23.86 68.921 23.86 L 62.756 23.86 L 62.249 24.916 L 62.249 25.127 Z M 71.16 35.6 L 79.733 35.6 L 80.662 33.784 L 80.662 28.97 C 80.662 28.21 80.028 27.577 79.142 27.577 L 77.663 27.577 L 76.692 28.674 C 76.396 29.012 75.89 29.012 75.552 28.717 L 73.694 27.154 L 73.271 27.154 L 72.427 28.125 L 74.623 29.984 C 74.918 30.237 74.96 30.617 74.707 30.955 L 74.116 31.673 L 74.412 31.926 L 76.523 29.519 C 76.692 29.266 77.114 29.055 77.663 29.055 L 78.635 29.055 C 79.141 29.055 79.395 29.224 79.437 29.688 L 80.028 33.108 C 80.113 33.488 80.028 33.742 79.902 33.911 C 79.564 34.291 78.888 34.333 78.086 34.333 L 71.751 34.333 L 71.244 35.389 L 71.244 35.6 Z M 68.584 35.812 L 68.879 35.812 L 70.189 35.22 L 69.386 31.462 C 69.259 30.828 69.344 30.448 70.062 29.815 C 70.357 29.519 70.695 29.224 71.413 28.759 L 71.413 28.252 C 71.413 27.788 71.244 27.619 70.78 27.619 L 64.994 27.619 C 64.698 27.619 64.529 27.534 64.276 27.365 L 64.065 27.196 L 63.685 27.196 L 62.84 28.168 L 63.854 29.012 L 69.47 29.012 C 69.808 29.012 70.02 29.182 70.02 29.392 C 70.023 29.505 69.977 29.613 69.893 29.688 L 68.837 30.744 Z M 58.87 35.938 C 61.235 35.347 63.347 34.46 64.698 32.602 C 64.952 32.053 65.163 31.251 65.29 30.237 L 65.036 30.026 C 64.741 30.955 63.938 32.138 63.305 32.518 C 63.093 32.644 62.84 32.644 62.671 32.433 L 61.193 30.828 C 61.024 30.659 60.94 30.533 60.94 30.406 C 60.94 30.279 61.024 30.11 61.15 29.942 L 62.038 28.928 L 59.926 27.112 L 59.504 27.112 L 58.659 28.083 L 60.433 29.561 C 60.686 29.731 60.686 29.984 60.475 30.195 L 60.053 30.659 L 61.743 33.362 C 61.193 33.7 60.137 34.08 59.377 34.207 L 58.659 35.685 Z M 81.295 35.769 C 84.251 35.009 86.532 33.658 87.377 32.053 L 87.377 28.337 C 87.377 27.957 86.954 27.577 86.405 27.577 L 83.449 27.577 C 82.858 27.577 82.647 27.45 82.604 27.154 L 82.394 26.056 C 82.351 25.887 82.435 25.634 82.731 25.338 L 83.829 24.071 L 82.013 22.551 L 81.633 22.551 L 80.788 23.522 L 82.308 24.789 C 82.435 24.874 82.478 25.043 82.478 25.127 C 82.473 25.238 82.428 25.343 82.351 25.423 L 81.971 25.887 L 81.971 28.59 C 82.224 28.843 82.435 28.928 82.9 28.928 L 85.814 28.928 C 86.067 28.928 86.236 29.055 86.279 29.266 L 86.659 31.336 C 86.743 31.673 86.616 31.842 86.489 32.011 C 85.519 32.94 83.913 33.489 81.929 34.081 L 81.211 35.558 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 94.007 42.23 L 52.451 42.23 L 52.451 0 L 94.007 0 Z M 53.042 41.64 L 93.416 41.64 L 93.416 0.59 L 53.043 0.59 L 53.043 41.64 Z\" fill=\"rgb(0,0,0)\"></path></g></svg>',svgContentId:12297758491,withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:20,intrinsicWidth:99.5,pixelHeight:40,pixelWidth:199,src:\"https://framerusercontent.com/images/f2TyZIALSgNr6CxkaKDboOEBx8.svg\"},className:\"framer-ndrz7m\",\"data-framer-name\":\"U_of_Chicago\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-qhscrj\",\"data-framer-name\":\"UC_Santa_Barbara\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 287 20\"><path d=\"M 0.819 0.808 L 286.468 0.808 L 286.468 20.808 L 0.819 20.808 Z\" fill=\"transparent\"></path><path d=\"M 56.799 8.23 C 54.509 7.63 52.613 7.017 52.613 5.616 C 52.613 4.731 53.313 3.416 55.239 3.416 C 57.157 3.416 58.596 4.07 59.633 5.42 L 62.368 3.07 C 60.632 0.4 57.462 0 55.722 0 C 51.389 0 48.363 2.468 48.363 6.002 C 48.363 9.518 51.622 10.883 54.828 11.769 C 57.545 12.519 58.618 12.882 58.618 14.503 C 58.618 15.787 57.462 16.585 55.601 16.585 C 52.623 16.585 50.985 14.639 50.508 13.969 L 47.563 16.453 C 49.058 18.807 51.639 20 55.239 20 C 59.731 20 62.868 17.445 62.868 13.789 C 62.868 10.106 59.735 8.989 56.799 8.231 Z M 36.893 13.307 C 36.396 16.463 34.161 18.068 30.933 18.068 C 26.683 18.068 24.145 15.075 24.145 10.123 L 24.145 9.905 C 24.145 5.008 26.876 1.879 30.959 1.879 C 33.967 1.879 36.01 3.131 36.81 6.369 L 38.824 6.369 L 38.824 0.488 L 36.672 0.488 L 36.672 2.613 C 35.651 0.818 33.497 0.002 31.015 0.002 C 25.58 0.002 21.662 4.165 21.662 9.932 L 21.662 10.15 C 21.662 16.136 25.165 20 30.877 20 C 35.217 20 38.324 17.866 39.085 13.53 Z M 10.113 20 C 5.587 20 3.021 17.388 3.021 12.653 L 3.027 2.34 L 0.819 2.34 L 0.819 0.49 L 7.91 0.49 L 7.91 2.34 L 5.428 2.34 L 5.422 12.382 C 5.422 16.464 6.884 18.042 10.168 18.042 C 13.314 18.042 15.19 16.79 15.19 12.029 L 15.195 2.34 L 12.712 2.34 L 12.712 0.49 L 19.803 0.49 L 19.803 2.34 L 17.595 2.34 L 17.59 12.355 C 17.59 17.089 15.19 20.001 10.113 20.001 Z M 113.684 4.23 L 108.308 4.23 L 108.308 0.484 L 123.717 0.484 L 123.717 4.23 L 117.977 4.23 L 117.977 19.697 L 113.684 19.697 Z M 86.846 0.484 L 92.68 0.484 L 100.963 13.834 L 101.018 13.834 L 101.018 0.485 L 105.312 0.485 L 105.312 19.696 L 99.698 19.696 L 91.194 6.021 L 91.139 6.021 L 91.139 19.696 L 86.846 19.696 L 86.846 0.486 Z M 131.932 6.077 L 129.565 12.047 L 134.326 12.047 Z M 130.281 0.487 L 133.83 0.487 L 142.306 19.698 L 137.463 19.698 L 135.784 15.628 L 128.217 15.628 L 126.593 19.698 L 121.86 19.698 L 130.281 0.49 Z M 74.094 6.077 L 71.728 12.047 L 76.488 12.047 L 74.095 6.077 Z M 72.444 0.488 L 75.993 0.488 L 84.467 19.7 L 79.624 19.7 L 77.945 15.63 L 70.381 15.63 L 68.756 19.7 L 64.024 19.7 L 72.444 0.49 Z M 193.602 8.436 L 196.134 8.436 C 196.519 8.436 196.928 8.422 197.359 8.396 C 197.759 8.375 198.153 8.292 198.528 8.151 C 198.87 8.02 199.17 7.799 199.395 7.513 C 199.624 7.224 199.739 6.817 199.739 6.293 C 199.739 5.803 199.638 5.415 199.437 5.125 C 199.234 4.836 198.977 4.615 198.666 4.46 C 198.327 4.299 197.965 4.194 197.592 4.148 C 197.2 4.094 196.804 4.067 196.408 4.066 L 193.602 4.066 Z M 189.309 0.486 L 196.85 0.486 C 197.839 0.486 198.779 0.58 199.67 0.771 C 200.559 0.961 201.339 1.277 202.009 1.72 C 202.687 2.173 203.237 2.789 203.606 3.51 C 203.999 4.261 204.197 5.198 204.197 6.32 C 204.197 7.676 203.839 8.829 203.124 9.779 C 202.408 10.729 201.362 11.331 199.986 11.583 L 204.94 19.696 L 199.794 19.696 L 195.722 12.017 L 193.602 12.017 L 193.602 19.697 L 189.309 19.697 L 189.309 0.484 Z M 154.793 16.115 L 158.646 16.115 C 158.976 16.115 159.31 16.078 159.65 16.005 C 159.989 15.935 160.296 15.807 160.572 15.626 C 160.848 15.445 161.079 15.204 161.246 14.921 C 161.42 14.631 161.508 14.279 161.508 13.863 C 161.508 13.41 161.393 13.044 161.164 12.763 C 160.933 12.483 160.635 12.264 160.296 12.126 C 159.935 11.978 159.556 11.878 159.168 11.828 C 158.794 11.775 158.417 11.748 158.04 11.746 L 154.793 11.746 Z M 154.793 8.165 L 157.903 8.165 C 158.233 8.165 158.558 8.128 158.879 8.055 C 159.2 7.984 159.489 7.865 159.746 7.703 C 160.003 7.541 160.209 7.323 160.366 7.052 C 160.521 6.781 160.599 6.455 160.599 6.075 C 160.599 5.677 160.512 5.347 160.338 5.085 C 160.17 4.828 159.937 4.617 159.663 4.474 C 159.37 4.323 159.054 4.218 158.728 4.162 C 158.393 4.099 158.052 4.067 157.71 4.066 L 154.793 4.066 Z M 150.5 0.485 L 157.765 0.485 C 158.616 0.486 159.467 0.544 160.31 0.661 C 161.112 0.763 161.89 1.002 162.608 1.367 C 163.278 1.712 163.847 2.222 164.259 2.847 C 164.681 3.479 164.892 4.321 164.892 5.369 C 164.892 6.455 164.585 7.355 163.97 8.069 C 163.356 8.785 162.543 9.295 161.535 9.602 L 161.535 9.657 C 162.177 9.747 162.759 9.924 163.283 10.186 C 163.805 10.448 164.254 10.783 164.63 11.189 C 165.007 11.597 165.296 12.072 165.498 12.614 C 165.699 13.157 165.8 13.736 165.8 14.351 C 165.8 15.364 165.58 16.209 165.14 16.888 C 164.708 17.558 164.124 18.12 163.434 18.53 C 162.706 18.957 161.911 19.26 161.081 19.425 C 160.209 19.606 159.343 19.696 158.481 19.696 L 150.5 19.696 L 150.5 0.486 Z M 274.561 6.078 L 272.195 12.048 L 276.955 12.048 Z M 272.91 0.488 L 276.459 0.488 L 284.935 19.699 L 280.092 19.699 L 278.413 15.629 L 270.846 15.629 L 269.222 19.699 L 264.489 19.699 L 272.91 0.49 Z M 176.891 6.078 L 174.524 12.048 L 179.285 12.048 Z M 175.239 0.488 L 178.789 0.488 L 187.265 19.699 L 182.422 19.699 L 180.743 15.629 L 173.176 15.629 L 171.552 19.699 L 166.819 19.699 L 175.239 0.49 Z M 251.588 8.438 L 254.12 8.438 C 254.505 8.438 254.914 8.424 255.345 8.398 C 255.745 8.377 256.14 8.294 256.514 8.153 C 256.862 8.018 257.151 7.806 257.381 7.515 C 257.61 7.226 257.725 6.82 257.725 6.295 C 257.725 5.807 257.624 5.418 257.422 5.128 C 257.227 4.845 256.962 4.616 256.652 4.463 C 256.314 4.302 255.951 4.196 255.578 4.151 C 255.186 4.097 254.79 4.07 254.395 4.069 L 251.588 4.069 L 251.588 8.439 Z M 247.296 0.488 L 254.836 0.488 C 255.826 0.488 256.766 0.582 257.656 0.773 C 258.545 0.963 259.325 1.28 259.995 1.723 C 260.673 2.176 261.223 2.792 261.592 3.513 C 261.985 4.264 262.183 5.201 262.183 6.322 C 262.183 7.678 261.825 8.832 261.11 9.782 C 260.394 10.732 259.349 11.332 257.972 11.585 L 262.926 19.699 L 257.78 19.699 L 253.707 12.02 L 251.588 12.02 L 251.588 19.7 L 247.296 19.7 L 247.296 0.487 Z M 212.779 16.118 L 216.631 16.118 C 216.962 16.118 217.297 16.082 217.635 16.009 C 217.964 15.942 218.277 15.813 218.557 15.629 C 218.833 15.449 219.057 15.214 219.233 14.924 C 219.406 14.635 219.494 14.282 219.494 13.866 C 219.494 13.414 219.379 13.047 219.15 12.766 C 218.92 12.486 218.622 12.267 218.283 12.129 C 217.922 11.982 217.542 11.881 217.155 11.831 C 216.781 11.779 216.404 11.751 216.026 11.749 L 212.779 11.749 L 212.779 16.119 Z M 212.779 8.168 L 215.889 8.168 C 216.22 8.168 216.544 8.132 216.866 8.058 C 217.186 7.988 217.475 7.868 217.733 7.706 C 217.99 7.543 218.203 7.32 218.351 7.056 C 218.507 6.784 218.585 6.458 218.585 6.078 C 218.585 5.681 218.498 5.35 218.324 5.088 C 218.155 4.832 217.924 4.622 217.65 4.478 C 217.356 4.327 217.041 4.222 216.714 4.166 C 216.379 4.103 216.038 4.071 215.696 4.07 L 212.779 4.07 Z M 208.486 0.488 L 215.751 0.488 C 216.595 0.488 217.444 0.548 218.296 0.665 C 219.098 0.767 219.876 1.005 220.594 1.37 C 221.264 1.716 221.833 2.225 222.245 2.85 C 222.667 3.482 222.878 4.324 222.878 5.373 C 222.878 6.458 222.571 7.358 221.956 8.073 C 221.342 8.788 220.53 9.298 219.522 9.606 L 219.522 9.66 C 220.162 9.75 220.746 9.927 221.268 10.189 C 221.791 10.451 222.24 10.786 222.617 11.193 C 222.993 11.6 223.282 12.075 223.484 12.618 C 223.685 13.16 223.786 13.739 223.786 14.354 C 223.786 15.368 223.566 16.213 223.126 16.892 C 222.693 17.562 222.109 18.124 221.419 18.533 C 220.692 18.96 219.897 19.263 219.067 19.428 C 218.195 19.61 217.328 19.7 216.466 19.7 L 208.486 19.7 L 208.486 0.489 Z M 234.877 6.078 L 232.511 12.048 L 237.271 12.048 Z M 233.226 0.488 L 236.775 0.488 L 245.251 19.699 L 240.408 19.699 L 238.729 15.629 L 231.162 15.629 L 229.538 19.699 L 224.805 19.699 L 233.226 0.49 Z\" fill=\"rgb(0, 54, 96)\"></path></svg>',svgContentId:11840376734,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1b3tvfs\",\"data-framer-name\":\"Berkeley\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 134 42\"><g transform=\"translate(0.33 0.33)\" id=\"ss9477980126_1\"><path d=\"M 0 0 L 133.67 0 L 133.67 42 L 0 42 Z\" fill=\"transparent\"></path><path d=\"M 13.994 0.408 C 9.649 0.408 7.331 0.698 6.316 0.698 C 4.626 0.698 3.13 0.65 1.632 0.65 C 0.812 0.65 0.667 0.698 0.667 1.036 C 0.667 1.616 0.86 1.664 3.033 1.664 C 4.385 1.664 5.158 2.099 5.158 5.914 L 5.158 28.127 C 5.158 28.852 5.061 28.948 2.888 28.948 C 1.826 28.948 1.536 29.044 1.536 29.528 C 1.536 30.011 1.874 30.058 2.357 30.058 C 3.902 30.058 4.965 29.866 6.993 29.866 C 9.117 29.866 11.146 30.348 13.174 30.348 C 19.887 30.348 24.378 27.79 24.378 22.381 C 24.378 18.18 21.528 16.538 19.258 15.378 C 18.292 14.895 17.375 14.654 17.375 14.558 C 17.375 14.413 18.437 13.881 19.355 13.254 C 20.901 12.191 22.977 10.5 22.977 7.072 C 22.977 3.643 20.273 0.408 13.994 0.408 Z M 96.736 0.464 C 96.484 0.464 94.888 1.178 91.612 1.388 C 90.898 1.43 90.562 1.388 90.562 1.891 C 90.562 2.354 90.982 2.438 91.738 2.438 C 93.628 2.438 93.88 2.438 93.88 5.084 L 93.88 28.227 C 93.88 28.983 93.166 28.941 91.444 28.941 C 90.435 28.941 90.394 29.194 90.394 29.488 C 90.394 29.824 90.477 29.908 91.444 29.908 C 92.032 29.908 94.258 29.824 95.686 29.824 C 96.443 29.824 97.366 29.908 97.996 29.908 C 99.508 29.908 99.802 29.908 99.802 29.488 C 99.802 29.151 99.886 28.899 97.786 28.899 C 97.03 28.899 96.736 28.437 96.736 24.952 C 96.736 23.732 96.946 20.415 96.946 4.412 C 96.946 3.152 97.156 1.639 97.156 1.135 C 97.156 0.673 96.946 0.464 96.736 0.464 Z M 61.865 0.505 C 61.486 0.505 59.008 1.429 55.985 1.429 C 55.522 1.429 55.438 1.597 55.438 2.017 C 55.438 2.312 55.606 2.438 57.328 2.438 C 58.462 2.438 58.798 2.816 58.798 5.798 C 58.798 14.661 58.672 27.094 58.672 28.311 C 58.672 28.941 58.294 28.941 56.866 28.941 C 55.858 28.941 55.648 29.151 55.648 29.488 C 55.648 29.866 55.9 29.908 56.866 29.908 C 57.454 29.908 59.008 29.824 60.437 29.824 C 61.781 29.824 63.712 29.908 64.342 29.908 C 65.266 29.908 65.476 29.908 65.476 29.488 C 65.476 29.151 65.308 28.941 64.342 28.941 C 61.738 28.941 61.822 28.941 61.822 26.968 L 61.822 24.322 C 61.822 23.943 62.411 23.649 63.082 23.229 C 63.796 22.767 64.384 22.347 64.552 22.347 C 64.804 22.347 66.569 24.994 68.333 27.01 C 70.097 29.026 70.475 30.076 71.232 30.076 C 71.82 30.076 73.08 30.034 73.584 30.034 C 73.962 30.034 74.508 30.076 75.012 30.076 C 75.936 30.076 76.23 29.992 76.23 29.698 C 76.23 29.362 75.894 29.151 74.886 29.151 C 73.458 29.151 72.114 27.093 70.686 25.371 C 67.746 21.843 66.99 21.045 66.99 20.667 C 66.99 20.373 69.594 18.525 71.694 16.467 C 72.996 15.207 74.424 13.401 74.424 13.022 C 74.424 12.896 74.256 12.854 73.92 12.854 C 73.416 12.854 70.98 12.98 70.433 12.98 C 69.929 12.98 69.132 12.854 68.712 12.854 C 68.166 12.854 67.956 12.938 67.956 13.274 C 67.956 13.654 68.166 13.737 68.796 13.737 C 70.643 13.737 70.769 13.821 70.769 14.493 C 70.769 15.375 70.391 16.089 68.754 17.643 C 67.41 18.903 63.04 22.767 61.99 22.767 C 61.864 22.767 61.823 22.641 61.823 22.473 C 61.823 15.627 62.074 10.923 62.074 4.538 C 62.074 3.194 62.158 1.428 62.158 0.883 C 62.158 0.631 62.074 0.505 61.865 0.505 Z M 12.545 1.567 C 16.94 1.567 18.968 6.204 18.968 8.618 C 18.968 12.433 17.374 13.351 15.974 14.413 C 15.974 14.413 13.945 14.123 11 14.123 C 9.84 14.123 9.213 14.219 9.213 13.447 L 9.213 2.968 C 9.213 2.002 9.358 1.568 12.545 1.568 Z M 33.723 12.434 C 29.9 12.434 25.91 15.963 25.91 21.885 C 25.91 28.899 31.034 30.58 34.478 30.58 C 37.881 30.58 41.451 27.933 41.451 27.723 C 41.451 27.639 41.325 27.387 41.115 27.387 C 40.863 27.387 39.351 28.396 36.579 28.396 C 33.386 28.396 28.891 26.841 28.891 21.045 C 28.891 20.079 29.018 19.869 29.691 19.827 C 34.478 19.533 38.679 18.61 39.771 18.357 C 40.905 18.105 41.493 17.937 41.493 17.769 C 41.493 17.433 40.821 16.424 40.106 15.585 C 38.594 13.821 35.907 12.435 33.723 12.435 Z M 82.699 12.434 C 78.877 12.434 74.886 15.963 74.886 21.885 C 74.886 28.899 80.01 30.58 83.455 30.58 C 86.857 30.58 90.427 27.933 90.427 27.723 C 90.427 27.639 90.301 27.387 90.091 27.387 C 89.839 27.387 88.327 28.396 85.555 28.396 C 82.363 28.396 77.868 26.841 77.868 21.045 C 77.868 20.079 77.995 19.869 78.666 19.827 C 83.455 19.533 87.654 18.61 88.747 18.357 C 89.881 18.105 90.469 17.937 90.469 17.769 C 90.469 17.433 89.797 16.424 89.083 15.585 C 87.571 13.821 84.883 12.435 82.699 12.435 Z M 106.926 12.434 C 103.103 12.434 99.113 15.963 99.113 21.885 C 99.113 28.899 104.237 30.58 107.682 30.58 C 111.084 30.58 114.654 27.933 114.654 27.723 C 114.654 27.639 114.528 27.387 114.318 27.387 C 114.066 27.387 112.555 28.396 109.782 28.396 C 106.59 28.396 102.095 26.841 102.095 21.045 C 102.095 20.079 102.222 19.869 102.893 19.827 C 107.682 19.533 111.882 18.61 112.974 18.357 C 114.108 18.105 114.696 17.937 114.696 17.769 C 114.696 17.433 114.025 16.424 113.31 15.585 C 111.799 13.821 109.11 12.435 106.926 12.435 Z M 48.339 12.728 C 47.667 12.728 46.869 12.938 46.197 12.938 C 45.357 12.938 44.558 12.853 43.131 12.853 C 42.416 12.853 42.458 12.98 42.458 13.485 C 42.458 13.947 42.458 13.905 43.215 13.905 C 45.567 13.905 45.482 13.988 45.482 16.845 L 45.482 28.353 C 45.482 28.941 45.357 28.983 43.635 28.983 C 42.626 28.983 42.585 29.067 42.585 29.488 C 42.585 29.908 42.668 29.908 43.635 29.908 C 44.223 29.908 45.651 29.698 47.079 29.698 C 48.423 29.698 51.237 29.908 51.825 29.908 C 52.917 29.908 52.959 29.95 52.959 29.488 C 52.959 29.109 52.917 28.983 51.825 28.983 C 48.717 28.983 48.592 28.983 48.592 26.925 L 48.592 18.272 C 48.592 16.508 49.515 15.5 51.951 15.5 C 54.051 15.5 54.556 17.222 55.144 17.222 C 55.396 17.222 56.067 15.374 56.067 14.954 C 56.067 13.862 54.136 12.937 53.379 12.937 C 51.405 12.937 49.431 15.122 48.801 15.122 C 48.633 15.122 48.591 14.828 48.591 14.45 C 48.591 14.324 48.675 13.4 48.675 13.19 C 48.675 12.853 48.507 12.728 48.339 12.728 Z M 132.207 12.77 C 131.619 12.77 130.485 12.938 129.855 12.938 C 128.721 12.938 127.965 12.854 126.831 12.854 C 126.075 12.854 125.949 12.854 125.949 13.4 C 125.949 13.82 126.117 13.82 127.419 13.82 C 128.847 13.82 128.846 14.072 128.846 15.332 C 128.846 15.92 127.335 20.289 126.327 23.312 C 125.655 25.288 125.403 25.875 125.109 25.875 C 124.941 25.875 124.437 25.161 124.1 24.279 C 121.58 17.81 120.488 16.34 120.488 15.122 C 120.488 14.156 120.74 13.904 121.748 13.904 C 122.63 13.904 122.798 13.862 122.798 13.484 C 122.798 13.021 122.63 12.854 121.748 12.854 C 120.404 12.854 118.934 12.98 117.758 12.98 C 116.75 12.98 116.456 12.896 115.28 12.896 C 114.524 12.896 114.399 13.106 114.399 13.484 C 114.399 13.862 114.44 13.904 115.28 13.904 C 116.036 13.904 116.33 14.114 117.38 16.634 C 119.691 22.094 123.05 29.865 123.05 30.327 C 123.05 31.587 119.439 36.543 117.926 38.433 C 116.498 40.24 114.524 40.492 114.524 40.743 C 114.524 40.953 114.944 41.163 115.658 41.163 C 116.582 41.163 116.876 40.828 118.136 40.66 C 119.06 40.534 119.564 40.492 120.027 39.568 C 121.37 36.795 123.261 33.393 125.907 26.967 C 129.225 18.903 131.074 13.862 131.997 13.862 C 132.502 13.862 133.089 13.652 133.089 13.274 C 133.089 12.812 132.879 12.77 132.207 12.77 Z M 33.302 13.316 C 35.235 13.316 37.712 16.424 37.712 17.474 C 37.712 17.726 37.671 17.81 37.209 17.894 C 34.059 18.398 31.79 18.945 29.606 18.945 C 29.102 18.945 29.102 18.903 29.102 18.693 C 29.102 18.103 30.111 13.316 33.302 13.316 Z M 82.278 13.316 C 84.211 13.316 86.688 16.424 86.688 17.474 C 86.688 17.726 86.647 17.81 86.184 17.894 C 83.034 18.398 80.766 18.945 78.583 18.945 C 78.079 18.945 78.078 18.903 78.078 18.693 C 78.078 18.103 79.086 13.316 82.278 13.316 Z M 106.505 13.316 C 108.437 13.316 110.916 16.424 110.916 17.474 C 110.916 17.726 110.874 17.81 110.411 17.894 C 107.261 18.398 104.993 18.945 102.809 18.945 C 102.305 18.945 102.305 18.903 102.305 18.693 C 102.305 18.103 103.312 13.316 106.505 13.316 Z M 10.955 15.04 C 16.218 15.04 19.792 18.42 19.792 22.767 C 19.792 26.967 17.088 29.48 13.418 29.48 C 11.872 29.48 10.328 29.141 9.796 28.562 C 9.362 28.079 9.216 25.375 9.216 24.94 L 9.216 16.295 C 9.216 15.233 9.603 15.04 10.956 15.04 Z M 34.901 34.753 C 33.909 34.753 33.081 35.352 33.081 36.343 C 33.081 38.229 35.565 37.893 35.565 38.942 C 35.565 39.36 35.245 39.72 34.598 39.72 C 34.164 39.72 33.615 39.516 33.155 39.205 L 32.745 39.926 C 33.205 40.246 33.827 40.549 34.598 40.549 C 35.672 40.549 36.565 39.859 36.565 38.909 C 36.565 36.999 34.082 37.573 34.082 36.302 C 34.082 35.885 34.361 35.582 34.902 35.582 C 35.385 35.582 35.762 35.745 36.18 35.958 L 36.533 35.253 C 36.058 34.959 35.491 34.753 34.901 34.753 Z M 54.702 34.753 C 53.013 34.753 52.26 35.959 52.26 37.647 C 52.26 39.254 53.005 40.549 54.702 40.549 C 56.399 40.549 57.145 39.254 57.145 37.647 C 57.145 35.959 56.39 34.753 54.702 34.753 Z M 67.865 34.753 C 66.176 34.753 65.348 35.967 65.348 37.656 C 65.348 39.376 66.103 40.549 67.832 40.549 C 68.586 40.549 69.292 40.237 69.865 39.713 L 69.365 39.073 C 68.905 39.492 68.381 39.721 67.881 39.721 C 66.84 39.721 66.348 38.975 66.348 37.647 C 66.348 36.327 66.873 35.581 67.865 35.581 C 68.398 35.581 68.791 35.771 69.225 36.131 L 69.734 35.475 C 69.144 34.991 68.561 34.753 67.864 34.753 Z M 89.206 34.753 C 87.517 34.753 86.764 35.959 86.764 37.647 C 86.764 39.254 87.51 40.549 89.206 40.549 C 90.903 40.549 91.649 39.254 91.649 37.647 C 91.649 35.959 90.895 34.753 89.206 34.753 Z M 10.767 34.835 L 9.824 34.934 L 9.824 40.459 L 10.8 40.459 L 10.8 36.689 L 10.816 36.689 L 13.186 40.459 L 14.054 40.459 L 14.054 34.844 L 13.078 34.844 L 13.078 38.533 L 13.054 38.533 Z M 23.281 34.835 L 23.281 40.459 L 26.691 40.459 L 26.766 39.631 L 24.257 39.631 L 24.257 38.041 L 26.364 38.041 L 26.364 37.212 L 24.257 37.212 L 24.257 35.663 L 26.626 35.663 L 26.626 34.835 Z M 58.4 34.835 L 58.4 40.459 L 59.375 40.459 L 59.375 38.04 L 61.441 38.04 L 61.441 37.211 L 59.375 37.211 L 59.375 35.662 L 61.678 35.662 L 61.678 34.834 L 58.4 34.834 Z M 73.48 34.835 L 72.341 34.925 L 70.366 40.459 L 71.276 40.459 L 71.742 39.106 L 74.005 39.106 L 74.472 40.459 L 75.473 40.459 Z M 82.856 34.835 L 82.856 40.459 L 83.831 40.459 L 83.831 38.04 L 85.897 38.04 L 85.897 37.211 L 83.831 37.211 L 83.831 35.662 L 86.135 35.662 L 86.135 34.834 L 82.855 34.834 Z M 98.216 34.835 L 97.272 34.934 L 97.272 40.459 L 98.247 40.459 L 98.247 36.689 L 98.264 36.689 L 100.633 40.459 L 101.502 40.459 L 101.502 34.844 L 100.526 34.844 L 100.526 38.533 L 100.502 38.533 L 98.215 34.835 Z M 107.615 34.835 L 106.475 34.925 L 104.499 40.459 L 105.41 40.459 L 105.877 39.106 L 108.139 39.106 L 108.606 40.459 L 109.607 40.459 Z M 4.314 34.844 L 4.314 38.507 C 4.314 39.77 5.01 40.549 6.388 40.549 C 7.756 40.549 8.453 39.77 8.453 38.499 L 8.453 34.844 L 7.477 34.844 L 7.477 38.565 C 7.477 39.262 7.183 39.72 6.387 39.72 C 5.584 39.72 5.289 39.262 5.289 38.557 L 5.289 34.844 Z M 15.444 34.844 L 15.444 40.459 L 16.419 40.459 L 16.419 34.844 Z M 17.378 34.844 L 19.312 40.459 L 20.385 40.459 L 22.328 34.844 L 21.368 34.844 L 20.295 37.984 C 20.295 37.984 20.189 38.303 19.91 39.262 L 19.861 39.262 C 19.591 38.302 19.484 37.975 19.484 37.975 L 18.41 34.844 Z M 28.056 34.844 L 28.056 40.459 L 29.032 40.459 L 29.032 38.212 L 29.499 38.212 C 29.851 38.212 30.056 38.541 30.22 38.877 L 30.999 40.459 L 32.073 40.459 L 30.999 38.434 C 30.925 38.274 30.805 38.14 30.655 38.048 L 30.655 38.032 C 31.392 37.753 31.712 37.18 31.712 36.508 C 31.712 35.532 31.097 34.844 29.859 34.844 Z M 37.727 34.844 L 37.727 40.459 L 38.702 40.459 L 38.702 34.844 Z M 39.825 34.844 L 39.825 35.68 L 41.309 35.68 L 41.309 40.459 L 42.284 40.459 L 42.284 35.67 L 43.702 35.67 L 43.776 34.843 L 39.825 34.843 Z M 44.415 34.844 L 46.185 38.057 L 46.185 40.459 L 47.16 40.459 L 47.16 38.057 L 48.932 34.844 L 47.857 34.844 L 47.062 36.443 C 47.062 36.443 46.964 36.647 46.685 37.27 L 46.661 37.27 C 46.531 36.992 46.397 36.716 46.259 36.442 L 45.513 34.844 Z M 76.263 34.844 L 76.263 40.459 L 79.583 40.459 L 79.657 39.631 L 77.239 39.631 L 77.239 34.844 Z M 80.607 34.844 L 80.607 40.459 L 81.582 40.459 L 81.582 34.844 Z M 92.49 34.844 L 92.49 40.459 L 93.466 40.459 L 93.466 38.212 L 93.933 38.212 C 94.285 38.212 94.491 38.541 94.655 38.877 L 95.433 40.459 L 96.507 40.459 L 95.433 38.434 C 95.359 38.274 95.239 38.14 95.089 38.048 L 95.089 38.032 C 95.827 37.753 96.147 37.18 96.147 36.508 C 96.147 35.532 95.532 34.844 94.294 34.844 Z M 102.727 34.844 L 102.727 40.459 L 103.702 40.459 L 103.702 34.844 Z M 54.701 35.581 C 55.668 35.581 56.135 36.426 56.135 37.647 C 56.135 38.868 55.66 39.72 54.701 39.72 C 53.734 39.72 53.258 38.868 53.258 37.639 C 53.258 36.417 53.734 35.581 54.701 35.581 Z M 89.204 35.581 C 90.171 35.581 90.638 36.426 90.638 37.647 C 90.638 38.868 90.163 39.72 89.204 39.72 C 88.237 39.72 87.762 38.868 87.762 37.639 C 87.762 36.417 88.237 35.581 89.204 35.581 Z M 29.031 35.68 L 29.835 35.68 C 30.499 35.68 30.712 35.991 30.712 36.516 C 30.712 37.049 30.442 37.393 29.852 37.393 L 29.032 37.393 L 29.032 35.68 Z M 93.466 35.68 L 94.269 35.68 C 94.933 35.68 95.147 35.991 95.147 36.516 C 95.147 37.049 94.876 37.393 94.286 37.393 L 93.466 37.393 Z M 72.854 35.827 L 72.87 35.827 C 73.016 36.276 73.166 36.724 73.32 37.171 L 73.755 38.409 L 71.976 38.409 L 72.411 37.171 C 72.411 37.171 72.477 36.991 72.854 35.827 Z M 106.988 35.827 L 107.004 35.827 C 107.39 36.991 107.456 37.171 107.456 37.171 L 107.89 38.409 L 106.111 38.409 L 106.546 37.171 C 106.546 37.171 106.611 36.991 106.988 35.827 Z\" fill=\"rgb(0,50,111)\"></path></g></svg>',svgContentId:9477980126,withExternalLayout:true})]})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-12epzir\",\"data-framer-name\":\"Products\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-m85b0u\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-dz5lr3\",\"data-styles-preset\":\"BsYwiyj6u\",style:{\"--framer-text-alignment\":\"center\"},children:\"Our Products\"})}),className:\"framer-1qxbjpp\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1im39oi\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tPYRiYJwz:{height:350,width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1360px)`,y:(componentViewport?.y||0)+0+692.4000000000001+0+68+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:670,children:/*#__PURE__*/_jsx(Container,{className:\"framer-okebsw-container\",nodeId:\"pPnkrST91\",scopeId:\"Aft1wM2t6\",children:/*#__PURE__*/_jsx(HomeProductCard,{height:\"100%\",id:\"pPnkrST91\",layoutId:\"pPnkrST91\",style:{height:\"100%\",width:\"100%\"},variant:\"ft4U0Sc8g\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tPYRiYJwz:{height:350,width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1360px)`,y:(componentViewport?.y||0)+0+692.4000000000001+0+68+0+370}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:670,children:/*#__PURE__*/_jsx(Container,{className:\"framer-veiqn1-container\",nodeId:\"dg9RiccNB\",scopeId:\"Aft1wM2t6\",children:/*#__PURE__*/_jsx(HomeProductCard,{height:\"100%\",id:\"dg9RiccNB\",layoutId:\"dg9RiccNB\",style:{height:\"100%\",width:\"100%\"},variant:\"ArhKheuxd\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tPYRiYJwz:{height:350,width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1360px)`,y:(componentViewport?.y||0)+0+692.4000000000001+0+68+0+740}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:670,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1e7j2mi-container\",nodeId:\"XwfPiB8Pg\",scopeId:\"Aft1wM2t6\",children:/*#__PURE__*/_jsx(HomeProductCard,{height:\"100%\",id:\"XwfPiB8Pg\",layoutId:\"XwfPiB8Pg\",style:{height:\"100%\",width:\"100%\"},variant:\"zCR6BwxKm\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tPYRiYJwz:{height:350,width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1360px)`,y:(componentViewport?.y||0)+0+692.4000000000001+0+68+0+1110}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:670,children:/*#__PURE__*/_jsx(Container,{className:\"framer-9v2xs6-container\",nodeId:\"oS9fWbvWc\",scopeId:\"Aft1wM2t6\",children:/*#__PURE__*/_jsx(HomeProductCard,{height:\"100%\",id:\"oS9fWbvWc\",layoutId:\"oS9fWbvWc\",style:{height:\"100%\",width:\"100%\"},variant:\"z5UUgdEQe\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1suob91\",\"data-framer-name\":\"Pricing\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-q99qwq\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-dz5lr3\",\"data-styles-preset\":\"BsYwiyj6u\",style:{\"--framer-text-alignment\":\"center\"},children:\"Pricing\"})}),className:\"framer-rbrlk6\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tPYRiYJwz:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1360px)`,y:(componentViewport?.y||0)+0+2220.4+40+72}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:588,width:`min(${componentViewport?.width||\"100vw\"} - 80px, 1360px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xx2o2w-container\",\"data-framer-name\":\"Pricing\",name:\"Pricing\",nodeId:\"M5dH7qLRy\",scopeId:\"Aft1wM2t6\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LAW3tRyJf:{variant:\"epiv3onlw\"},tPYRiYJwz:{variant:\"epiv3onlw\"}},children:/*#__PURE__*/_jsx(PricingNoWidth,{E49RLY6C0:56,height:\"100%\",id:\"M5dH7qLRy\",KuusTJ0sU:20,layoutId:\"M5dH7qLRy\",name:\"Pricing\",style:{width:\"100%\"},variant:\"Dx6BsI_Q1\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-17ksmly\",\"data-framer-name\":\"Insights\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1oercf3\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vrwwkd\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-dz5lr3\",\"data-styles-preset\":\"BsYwiyj6u\",style:{\"--framer-text-alignment\":\"center\"},children:\"Insights\"})}),className:\"framer-10x8b62\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-phyab8\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"FWGGNXyYZ\",data:Insights,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"FWGGNXyYZ\",name:\"v9_N34VBH\",type:\"Identifier\"},{collection:\"FWGGNXyYZ\",name:\"Q2UL00Ncq\",type:\"Identifier\"},{collection:\"FWGGNXyYZ\",name:\"yYqLrSMQr\",type:\"Identifier\"},{collection:\"FWGGNXyYZ\",name:\"LmxhcCJEZ\",type:\"Identifier\"},{collection:\"FWGGNXyYZ\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({id:idFWGGNXyYZ,LmxhcCJEZ:LmxhcCJEZFWGGNXyYZ,Q2UL00Ncq:Q2UL00NcqFWGGNXyYZ,v9_N34VBH:v9_N34VBHFWGGNXyYZ,yYqLrSMQr:yYqLrSMQrFWGGNXyYZ},index)=>{v9_N34VBHFWGGNXyYZ??=\"\";yYqLrSMQrFWGGNXyYZ??=\"\";const textContent=toDateString(LmxhcCJEZFWGGNXyYZ,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode);return /*#__PURE__*/_jsx(LayoutGroup,{id:`FWGGNXyYZ-${idFWGGNXyYZ}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{v9_N34VBH:v9_N34VBHFWGGNXyYZ},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{v9_N34VBH:v9_N34VBHFWGGNXyYZ},webPageId:\"Bbx9nfe5I\"},motionChild:true,nodeId:\"Ub17mxo42\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1ip3177 framer-14iks7r\",whileHover:animation1,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LAW3tRyJf:{background:{alt:\"\",fit:\"fill\",sizes:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1360px) - 20px) / 2, 200px)`,...toResponsiveImage(Q2UL00NcqFWGGNXyYZ)}},tPYRiYJwz:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2920.4+0+0+40+68+0+879+0+0),sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1360px)`,...toResponsiveImage(Q2UL00NcqFWGGNXyYZ)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1360px) - 40px) / 3, 200px)`,...toResponsiveImage(Q2UL00NcqFWGGNXyYZ)},className:\"framer-1f60hpb\",\"data-framer-name\":\"Cover\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4vj9ub\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-13cv2o2\",\"data-styles-preset\":\"VpBXneMYL\",style:{\"--framer-text-color\":\"var(--token-c403a29a-e9da-4cc0-9f7b-e781595d6449, rgba(0, 26, 17, 0.8))\"},children:\"New UI Launch: Spark Fresh Ideas with Us\"})}),className:\"framer-1jkh0kf\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:yYqLrSMQrFWGGNXyYZ,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ytx30g\",\"data-styles-preset\":\"dvYVeJqth\",style:{\"--framer-text-color\":\"var(--token-7e95b93c-4541-4cce-926b-f4d82000a388, rgba(0, 26, 17, 0.24))\"},children:\"Aug 12, 2024\"})}),className:\"framer-o2om7c\",\"data-framer-name\":\"Date\",fonts:[\"Inter\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})},idFWGGNXyYZ);})})})})})]})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-597c7h\",\"data-framer-name\":\"Press Release\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-123snai\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-81pl8\",\"data-styles-preset\":\"kfyzjt1T_\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4d1bf752-b3a7-4536-9369-f209cdb2db8f, rgb(0, 26, 17))\"},children:\"Reported by\"})}),className:\"framer-lyl69g\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-12xsycr-container\",\"data-framer-name\":\"Press\",isAuthoredByUser:true,isModuleExternal:true,name:\"Press\",nodeId:\"ZnNfqAFiy\",scopeId:\"Aft1wM2t6\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tPYRiYJwz:{gap:40}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:24,overflow:false},gap:64,height:\"100%\",hoverFactor:0,id:\"ZnNfqAFiy\",layoutId:\"ZnNfqAFiy\",name:\"Press\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-d290u0\",\"data-framer-name\":\"AP\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"YvIsipwCA\",data:PRLinks,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"YvIsipwCA\",name:\"btcYFCXjF\",type:\"Identifier\"},{collection:\"YvIsipwCA\",name:\"gBwfq1LiW\",type:\"Identifier\"},{collection:\"YvIsipwCA\",name:\"Tq8P52lBw\",type:\"Identifier\"},{collection:\"YvIsipwCA\",name:\"uJP6yOObb\",type:\"Identifier\"},{collection:\"YvIsipwCA\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"YvIsipwCA\",name:\"Tq8P52lBw\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"AP\"},type:\"BinaryOperation\"}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({btcYFCXjF:btcYFCXjFYvIsipwCA,gBwfq1LiW:gBwfq1LiWYvIsipwCA,id:idYvIsipwCA,Tq8P52lBw:Tq8P52lBwYvIsipwCA,uJP6yOObb:uJP6yOObbYvIsipwCA},index1)=>{btcYFCXjFYvIsipwCA??=\"\";Tq8P52lBwYvIsipwCA??=\"\";uJP6yOObbYvIsipwCA??=\"\";const visible=isSet(btcYFCXjFYvIsipwCA);return /*#__PURE__*/_jsx(LayoutGroup,{id:`YvIsipwCA-${idYvIsipwCA}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{uJP6yOObb:uJP6yOObbYvIsipwCA},children:visible&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1swekag\",\"data-framer-name\":\"Link\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:btcYFCXjFYvIsipwCA,implicitPathVariables:{uJP6yOObb:uJP6yOObbYvIsipwCA}}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ctzled-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"CNirIlB1d\",rendersWithMotion:true,scopeId:\"Aft1wM2t6\",whileHover:animation2,children:/*#__PURE__*/_jsx(Image1,{alt:Tq8P52lBwYvIsipwCA,height:\"100%\",id:\"CNirIlB1d\",image:toResponsiveImage(gBwfq1LiWYvIsipwCA),layoutId:\"CNirIlB1d\",link:resolvedLinks[0],newTab:true,padding:0,radius:0,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})},idYvIsipwCA);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-fx70qt\",\"data-framer-name\":\"The Globe and Mail\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"ussJXYFXn\",data:PRLinks,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"ussJXYFXn\",name:\"btcYFCXjF\",type:\"Identifier\"},{collection:\"ussJXYFXn\",name:\"gBwfq1LiW\",type:\"Identifier\"},{collection:\"ussJXYFXn\",name:\"Tq8P52lBw\",type:\"Identifier\"},{collection:\"ussJXYFXn\",name:\"uJP6yOObb\",type:\"Identifier\"},{collection:\"ussJXYFXn\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"ussJXYFXn\",name:\"Tq8P52lBw\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"The Globe and Mail\"},type:\"BinaryOperation\"}},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2?.map(({btcYFCXjF:btcYFCXjFussJXYFXn,gBwfq1LiW:gBwfq1LiWussJXYFXn,id:idussJXYFXn,Tq8P52lBw:Tq8P52lBwussJXYFXn,uJP6yOObb:uJP6yOObbussJXYFXn},index2)=>{btcYFCXjFussJXYFXn??=\"\";Tq8P52lBwussJXYFXn??=\"\";uJP6yOObbussJXYFXn??=\"\";const visible1=isSet(btcYFCXjFussJXYFXn);return /*#__PURE__*/_jsx(LayoutGroup,{id:`ussJXYFXn-${idussJXYFXn}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{uJP6yOObb:uJP6yOObbussJXYFXn},children:visible1&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-xlylsp\",\"data-framer-name\":\"Link\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:btcYFCXjFussJXYFXn,implicitPathVariables:{uJP6yOObb:uJP6yOObbussJXYFXn}}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-cyzbws-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"J2htrVfRh\",rendersWithMotion:true,scopeId:\"Aft1wM2t6\",whileHover:animation2,children:/*#__PURE__*/_jsx(Image1,{alt:Tq8P52lBwussJXYFXn,height:\"100%\",id:\"J2htrVfRh\",image:toResponsiveImage(gBwfq1LiWussJXYFXn),layoutId:\"J2htrVfRh\",link:resolvedLinks1[0],newTab:true,padding:0,radius:0,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})},idussJXYFXn);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1aox8c8\",\"data-framer-name\":\"Barchart\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"Bl6n9yfLs\",data:PRLinks,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"Bl6n9yfLs\",name:\"btcYFCXjF\",type:\"Identifier\"},{collection:\"Bl6n9yfLs\",name:\"gBwfq1LiW\",type:\"Identifier\"},{collection:\"Bl6n9yfLs\",name:\"Tq8P52lBw\",type:\"Identifier\"},{collection:\"Bl6n9yfLs\",name:\"uJP6yOObb\",type:\"Identifier\"},{collection:\"Bl6n9yfLs\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"Bl6n9yfLs\",name:\"Tq8P52lBw\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"Barchart\"},type:\"BinaryOperation\"}},children:(collection3,paginationInfo3,loadMore3)=>/*#__PURE__*/_jsx(_Fragment,{children:collection3?.map(({btcYFCXjF:btcYFCXjFBl6n9yfLs,gBwfq1LiW:gBwfq1LiWBl6n9yfLs,id:idBl6n9yfLs,Tq8P52lBw:Tq8P52lBwBl6n9yfLs,uJP6yOObb:uJP6yOObbBl6n9yfLs},index3)=>{btcYFCXjFBl6n9yfLs??=\"\";Tq8P52lBwBl6n9yfLs??=\"\";uJP6yOObbBl6n9yfLs??=\"\";const visible2=isSet(btcYFCXjFBl6n9yfLs);return /*#__PURE__*/_jsx(LayoutGroup,{id:`Bl6n9yfLs-${idBl6n9yfLs}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{uJP6yOObb:uJP6yOObbBl6n9yfLs},children:visible2&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-davah0\",\"data-framer-name\":\"Link\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:btcYFCXjFBl6n9yfLs,implicitPathVariables:{uJP6yOObb:uJP6yOObbBl6n9yfLs}}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-3f5snm-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Jw2p4X12z\",rendersWithMotion:true,scopeId:\"Aft1wM2t6\",whileHover:animation2,children:/*#__PURE__*/_jsx(Image1,{alt:Tq8P52lBwBl6n9yfLs,height:\"100%\",id:\"Jw2p4X12z\",image:toResponsiveImage(gBwfq1LiWBl6n9yfLs),layoutId:\"Jw2p4X12z\",link:resolvedLinks2[0],newTab:true,padding:0,radius:0,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})},idBl6n9yfLs);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ilp4j8\",\"data-framer-name\":\"Digital Journal\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"Vu45AM98Y\",data:PRLinks,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"Vu45AM98Y\",name:\"btcYFCXjF\",type:\"Identifier\"},{collection:\"Vu45AM98Y\",name:\"gBwfq1LiW\",type:\"Identifier\"},{collection:\"Vu45AM98Y\",name:\"Tq8P52lBw\",type:\"Identifier\"},{collection:\"Vu45AM98Y\",name:\"uJP6yOObb\",type:\"Identifier\"},{collection:\"Vu45AM98Y\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"Vu45AM98Y\",name:\"Tq8P52lBw\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"Digital Journal\"},type:\"BinaryOperation\"}},children:(collection4,paginationInfo4,loadMore4)=>/*#__PURE__*/_jsx(_Fragment,{children:collection4?.map(({btcYFCXjF:btcYFCXjFVu45AM98Y,gBwfq1LiW:gBwfq1LiWVu45AM98Y,id:idVu45AM98Y,Tq8P52lBw:Tq8P52lBwVu45AM98Y,uJP6yOObb:uJP6yOObbVu45AM98Y},index4)=>{btcYFCXjFVu45AM98Y??=\"\";Tq8P52lBwVu45AM98Y??=\"\";uJP6yOObbVu45AM98Y??=\"\";const visible3=isSet(btcYFCXjFVu45AM98Y);return /*#__PURE__*/_jsx(LayoutGroup,{id:`Vu45AM98Y-${idVu45AM98Y}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{uJP6yOObb:uJP6yOObbVu45AM98Y},children:visible3&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-unwvbx\",\"data-framer-name\":\"Link\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:btcYFCXjFVu45AM98Y,implicitPathVariables:{uJP6yOObb:uJP6yOObbVu45AM98Y}}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ojut2h-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"qvgQ8Qt40\",rendersWithMotion:true,scopeId:\"Aft1wM2t6\",whileHover:animation2,children:/*#__PURE__*/_jsx(Image1,{alt:Tq8P52lBwVu45AM98Y,height:\"100%\",id:\"qvgQ8Qt40\",image:toResponsiveImage(gBwfq1LiWVu45AM98Y),layoutId:\"qvgQ8Qt40\",link:resolvedLinks3[0],newTab:true,padding:0,radius:0,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})},idVu45AM98Y);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-adg0jb\",\"data-framer-name\":\"Yahoo Finance\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"ErdQj9yyk\",data:PRLinks,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"ErdQj9yyk\",name:\"btcYFCXjF\",type:\"Identifier\"},{collection:\"ErdQj9yyk\",name:\"gBwfq1LiW\",type:\"Identifier\"},{collection:\"ErdQj9yyk\",name:\"Tq8P52lBw\",type:\"Identifier\"},{collection:\"ErdQj9yyk\",name:\"uJP6yOObb\",type:\"Identifier\"},{collection:\"ErdQj9yyk\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"ErdQj9yyk\",name:\"Tq8P52lBw\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"Yahoo Finance\"},type:\"BinaryOperation\"}},children:(collection5,paginationInfo5,loadMore5)=>/*#__PURE__*/_jsx(_Fragment,{children:collection5?.map(({btcYFCXjF:btcYFCXjFErdQj9yyk,gBwfq1LiW:gBwfq1LiWErdQj9yyk,id:idErdQj9yyk,Tq8P52lBw:Tq8P52lBwErdQj9yyk,uJP6yOObb:uJP6yOObbErdQj9yyk},index5)=>{btcYFCXjFErdQj9yyk??=\"\";Tq8P52lBwErdQj9yyk??=\"\";uJP6yOObbErdQj9yyk??=\"\";const visible4=isSet(btcYFCXjFErdQj9yyk);return /*#__PURE__*/_jsx(LayoutGroup,{id:`ErdQj9yyk-${idErdQj9yyk}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{uJP6yOObb:uJP6yOObbErdQj9yyk},children:visible4&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tahjj6\",\"data-framer-name\":\"Link\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:btcYFCXjFErdQj9yyk,implicitPathVariables:{uJP6yOObb:uJP6yOObbErdQj9yyk}}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1aufhnm-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"LvmY8fpWk\",rendersWithMotion:true,scopeId:\"Aft1wM2t6\",whileHover:animation2,children:/*#__PURE__*/_jsx(Image1,{alt:Tq8P52lBwErdQj9yyk,height:\"100%\",id:\"LvmY8fpWk\",image:toResponsiveImage(gBwfq1LiWErdQj9yyk),layoutId:\"LvmY8fpWk\",link:resolvedLinks4[0],newTab:true,padding:0,radius:0,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})},idErdQj9yyk);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-16a9m0j\",\"data-framer-name\":\"Benzinga\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"lh3ZxeRIZ\",data:PRLinks,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"lh3ZxeRIZ\",name:\"btcYFCXjF\",type:\"Identifier\"},{collection:\"lh3ZxeRIZ\",name:\"gBwfq1LiW\",type:\"Identifier\"},{collection:\"lh3ZxeRIZ\",name:\"Tq8P52lBw\",type:\"Identifier\"},{collection:\"lh3ZxeRIZ\",name:\"uJP6yOObb\",type:\"Identifier\"},{collection:\"lh3ZxeRIZ\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"lh3ZxeRIZ\",name:\"Tq8P52lBw\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"Benzinga\"},type:\"BinaryOperation\"}},children:(collection6,paginationInfo6,loadMore6)=>/*#__PURE__*/_jsx(_Fragment,{children:collection6?.map(({btcYFCXjF:btcYFCXjFlh3ZxeRIZ,gBwfq1LiW:gBwfq1LiWlh3ZxeRIZ,id:idlh3ZxeRIZ,Tq8P52lBw:Tq8P52lBwlh3ZxeRIZ,uJP6yOObb:uJP6yOObblh3ZxeRIZ},index6)=>{btcYFCXjFlh3ZxeRIZ??=\"\";Tq8P52lBwlh3ZxeRIZ??=\"\";uJP6yOObblh3ZxeRIZ??=\"\";const visible5=isSet(btcYFCXjFlh3ZxeRIZ);return /*#__PURE__*/_jsx(LayoutGroup,{id:`lh3ZxeRIZ-${idlh3ZxeRIZ}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{uJP6yOObb:uJP6yOObblh3ZxeRIZ},children:visible5&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-13k3g48\",\"data-framer-name\":\"Link\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:btcYFCXjFlh3ZxeRIZ,implicitPathVariables:{uJP6yOObb:uJP6yOObblh3ZxeRIZ}}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-12jyd55-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"LHOiD4ls6\",rendersWithMotion:true,scopeId:\"Aft1wM2t6\",whileHover:animation2,children:/*#__PURE__*/_jsx(Image1,{alt:Tq8P52lBwlh3ZxeRIZ,height:\"100%\",id:\"LHOiD4ls6\",image:toResponsiveImage(gBwfq1LiWlh3ZxeRIZ),layoutId:\"LHOiD4ls6\",link:resolvedLinks5[0],newTab:true,padding:0,radius:0,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})},idlh3ZxeRIZ);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cpny2o\",\"data-framer-name\":\"Business Insider\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"OeJGuBo0X\",data:PRLinks,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"OeJGuBo0X\",name:\"btcYFCXjF\",type:\"Identifier\"},{collection:\"OeJGuBo0X\",name:\"gBwfq1LiW\",type:\"Identifier\"},{collection:\"OeJGuBo0X\",name:\"Tq8P52lBw\",type:\"Identifier\"},{collection:\"OeJGuBo0X\",name:\"uJP6yOObb\",type:\"Identifier\"},{collection:\"OeJGuBo0X\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"OeJGuBo0X\",name:\"Tq8P52lBw\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"Business Insider\"},type:\"BinaryOperation\"}},children:(collection7,paginationInfo7,loadMore7)=>/*#__PURE__*/_jsx(_Fragment,{children:collection7?.map(({btcYFCXjF:btcYFCXjFOeJGuBo0X,gBwfq1LiW:gBwfq1LiWOeJGuBo0X,id:idOeJGuBo0X,Tq8P52lBw:Tq8P52lBwOeJGuBo0X,uJP6yOObb:uJP6yOObbOeJGuBo0X},index7)=>{btcYFCXjFOeJGuBo0X??=\"\";Tq8P52lBwOeJGuBo0X??=\"\";uJP6yOObbOeJGuBo0X??=\"\";const visible6=isSet(btcYFCXjFOeJGuBo0X);return /*#__PURE__*/_jsx(LayoutGroup,{id:`OeJGuBo0X-${idOeJGuBo0X}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{uJP6yOObb:uJP6yOObbOeJGuBo0X},children:visible6&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-74xlb2\",\"data-framer-name\":\"Link\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:btcYFCXjFOeJGuBo0X,implicitPathVariables:{uJP6yOObb:uJP6yOObbOeJGuBo0X}}],children:resolvedLinks6=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jhm391-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"BbXGWJBlr\",rendersWithMotion:true,scopeId:\"Aft1wM2t6\",whileHover:animation2,children:/*#__PURE__*/_jsx(Image1,{alt:Tq8P52lBwOeJGuBo0X,height:\"100%\",id:\"BbXGWJBlr\",image:toResponsiveImage(gBwfq1LiWOeJGuBo0X),layoutId:\"BbXGWJBlr\",link:resolvedLinks6[0],newTab:true,padding:0,radius:0,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})},idOeJGuBo0X);})})})})})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-185ln0n\",\"data-framer-name\":\"FAQ\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-192etm4\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LAW3tRyJf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-dz5lr3\",\"data-styles-preset\":\"BsYwiyj6u\",style:{\"--framer-text-alignment\":\"center\"},children:\"FAQ\"})})},tPYRiYJwz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-dz5lr3\",\"data-styles-preset\":\"BsYwiyj6u\",style:{\"--framer-text-alignment\":\"center\"},children:\"FAQ\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-dz5lr3\",\"data-styles-preset\":\"BsYwiyj6u\",children:\"FAQ\"})}),className:\"framer-vsu7ti\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LAW3tRyJf:{width:`min(${componentViewport?.width||\"100vw\"} - 80px, 1360px)`},tPYRiYJwz:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1360px)`,y:(componentViewport?.y||0)+0+4551.7+0+68}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:450,width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1360px) - 10px) / 1.5, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-frbom2-container\",nodeId:\"MX2gr2fxJ\",scopeId:\"Aft1wM2t6\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tPYRiYJwz:{qHCT78q_z:\"8px 20px 8px 20px\"}},children:/*#__PURE__*/_jsx(FAQ,{height:\"100%\",id:\"MX2gr2fxJ\",layoutId:\"MX2gr2fxJ\",qHCT78q_z:\"8px 40px 8px 40px\",style:{width:\"100%\"},width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1f7ssii\",\"data-framer-name\":\"Banner\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tPYRiYJwz:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5109.7+0+0),pixelHeight:700,pixelWidth:2720,sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1360px)`,src:\"https://framerusercontent.com/images/mqIgB9vPf0l7YBOWP6wsK8ks.jpg\",srcSet:\"https://framerusercontent.com/images/mqIgB9vPf0l7YBOWP6wsK8ks.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/mqIgB9vPf0l7YBOWP6wsK8ks.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/mqIgB9vPf0l7YBOWP6wsK8ks.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/mqIgB9vPf0l7YBOWP6wsK8ks.jpg 2720w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:700,pixelWidth:2720,sizes:`min(${componentViewport?.width||\"100vw\"} - 80px, 1360px)`,src:\"https://framerusercontent.com/images/mqIgB9vPf0l7YBOWP6wsK8ks.jpg\",srcSet:\"https://framerusercontent.com/images/mqIgB9vPf0l7YBOWP6wsK8ks.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/mqIgB9vPf0l7YBOWP6wsK8ks.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/mqIgB9vPf0l7YBOWP6wsK8ks.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/mqIgB9vPf0l7YBOWP6wsK8ks.jpg 2720w\"},className:\"framer-1vv8l36\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6zorp3\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-dz5lr3\",\"data-styles-preset\":\"BsYwiyj6u\",style:{\"--framer-text-color\":\"var(--token-efed5123-b78e-47fe-9a43-9eea948dc0d7, rgb(255, 255, 255))\"},children:\"Start Your AI Journey Today.\"})}),className:\"framer-1lu1tq9\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tPYRiYJwz:{y:(componentViewport?.y||0)+0+5109.7+0+0+80+0+68}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,children:/*#__PURE__*/_jsx(Container,{className:\"framer-rovaq8-container\",nodeId:\"FD6XDTgI0\",scopeId:\"Aft1wM2t6\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"FD6XDTgI0\",layoutId:\"FD6XDTgI0\",P61kCuCLD:\"Get Started\",takJc4EZF:\"var(--token-9d545637-9e26-4f9c-af66-03174423df8e, rgb(0, 101, 67))\",uEAGpm37o:\"https://app.txyz.ai/\",variant:\"Pv7zAO18g\",width:\"100%\"})})})})]})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tPYRiYJwz:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1360px)`,y:(componentViewport?.y||0)+0+5379.7}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:112,width:`min(${componentViewport?.width||\"100vw\"} - 80px, 1360px)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1lj0d29-container\",nodeId:\"sxhrT7FiY\",rendersWithMotion:true,scopeId:\"Aft1wM2t6\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LAW3tRyJf:{variant:\"dXH8btHpt\"},tPYRiYJwz:{variant:\"HXqkUvKIh\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"sxhrT7FiY\",layoutId:\"sxhrT7FiY\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"Mhj9i6hVp\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-GjVz8.framer-14iks7r, .framer-GjVz8 .framer-14iks7r { display: block; }\",\".framer-GjVz8.framer-tr4sd3 { align-content: center; align-items: center; background-color: var(--token-5d8fb823-3e10-4da0-a8c3-9532d58e9d65, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 40px 0px 40px; position: relative; width: 1440px; }\",\".framer-GjVz8 .framer-13bo9b7-container, .framer-GjVz8 .framer-1lj0d29-container { flex: none; height: auto; max-width: 1360px; position: relative; width: 100%; }\",\".framer-GjVz8 .framer-4m8m10 { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 644px; justify-content: flex-end; max-width: 1360px; overflow: hidden; padding: 400px 40px 40px 40px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-GjVz8 .framer-3lvmv6-container { flex: none; height: 100%; left: 0px; position: absolute; top: 0px; width: 100%; z-index: 0; }\",\".framer-GjVz8 .framer-imj8kz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-GjVz8 .framer-asblx { --framer-paragraph-spacing: 0px; --framer-text-wrap-override: balance; flex: none; height: auto; position: relative; text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.08); width: 100%; }\",\".framer-GjVz8 .framer-ukz8lq-container, .framer-GjVz8 .framer-rovaq8-container { flex: none; height: auto; min-width: 120px; position: relative; width: auto; }\",\".framer-GjVz8 .framer-amslq3, .framer-GjVz8 .framer-597c7h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 1360px; overflow: hidden; padding: 80px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-GjVz8 .framer-12gj1zv, .framer-GjVz8 .framer-rbrlk6, .framer-GjVz8 .framer-o2om7c { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-GjVz8 .framer-o7tcog-container, .framer-GjVz8 .framer-12xsycr-container { flex: none; height: 96px; position: relative; width: 100%; }\",\".framer-GjVz8 .framer-1mjkuwv { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-GjVz8 .framer-udd1ti { aspect-ratio: 4 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 42px); overflow: visible; position: relative; width: 168px; }\",\".framer-GjVz8 .framer-jgmov1 { flex: none; height: 40px; position: relative; width: 78px; }\",\".framer-GjVz8 .framer-bwvtl0 { aspect-ratio: 3.5 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 48px); overflow: visible; position: relative; width: 168px; }\",\".framer-GjVz8 .framer-11hvx4v { flex: none; height: 42px; position: relative; width: 197px; }\",\".framer-GjVz8 .framer-2bciov { flex: none; height: 44px; position: relative; width: 135px; }\",\".framer-GjVz8 .framer-9btdm4 { flex: none; height: 32px; position: relative; width: 132px; }\",\".framer-GjVz8 .framer-lghtx8 { flex: none; height: 32px; position: relative; width: 74px; }\",\".framer-GjVz8 .framer-107g2s0 { flex: none; height: 36px; position: relative; width: 217px; }\",\".framer-GjVz8 .framer-1lohbbp { flex: none; height: 44px; position: relative; width: 150px; }\",\".framer-GjVz8 .framer-6tmgxi { aspect-ratio: 4.833333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 36px); overflow: visible; position: relative; width: 174px; }\",\".framer-GjVz8 .framer-134o2sq { flex: none; height: 44px; position: relative; width: 170px; }\",\".framer-GjVz8 .framer-1anyzei { aspect-ratio: 3.2045454545454546 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 44px); overflow: visible; position: relative; width: 141px; }\",\".framer-GjVz8 .framer-td4h06 { aspect-ratio: 3.5625 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 48px); overflow: visible; position: relative; width: 171px; }\",\".framer-GjVz8 .framer-11yrxzf { flex: none; height: 24px; position: relative; width: 265px; }\",\".framer-GjVz8 .framer-hx53gy { flex: none; height: 28px; position: relative; width: 170px; }\",\".framer-GjVz8 .framer-1rsvli6 { flex: none; height: 66px; position: relative; width: 287px; }\",\".framer-GjVz8 .framer-mqvkn4 { aspect-ratio: 0.7083333333333334 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 96px); overflow: visible; position: relative; width: 68px; }\",\".framer-GjVz8 .framer-1yyr5wu { flex: none; height: 42px; position: relative; width: 150px; }\",\".framer-GjVz8 .framer-zctk2r { flex: none; height: 84px; position: relative; width: 95px; }\",\".framer-GjVz8 .framer-ndrz7m { aspect-ratio: 4.975 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); overflow: visible; position: relative; width: 199px; }\",\".framer-GjVz8 .framer-qhscrj { flex: none; height: 20px; position: relative; width: 287px; }\",\".framer-GjVz8 .framer-1b3tvfs { flex: none; height: 42px; position: relative; width: 134px; }\",\".framer-GjVz8 .framer-12epzir { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 1360px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-GjVz8 .framer-m85b0u, .framer-GjVz8 .framer-q99qwq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-GjVz8 .framer-1qxbjpp { --framer-paragraph-spacing: 0px; --framer-text-wrap-override: balance; flex: none; height: auto; position: relative; width: 100%; }\",\".framer-GjVz8 .framer-1im39oi { display: grid; flex: none; gap: 20px; grid-auto-rows: min-content; grid-template-columns: repeat(auto-fill, minmax(441px, 1fr)); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-GjVz8 .framer-okebsw-container, .framer-GjVz8 .framer-veiqn1-container, .framer-GjVz8 .framer-1e7j2mi-container, .framer-GjVz8 .framer-9v2xs6-container { align-self: start; aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 670px); justify-self: start; position: relative; width: 100%; }\",\".framer-GjVz8 .framer-1suob91 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 1360px; overflow: hidden; padding: 80px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-GjVz8 .framer-1xx2o2w-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-GjVz8 .framer-17ksmly { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1360px; overflow: hidden; padding: 80px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-GjVz8 .framer-1oercf3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-GjVz8 .framer-1vrwwkd, .framer-GjVz8 .framer-123snai { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-GjVz8 .framer-10x8b62, .framer-GjVz8 .framer-lyl69g, .framer-GjVz8 .framer-vsu7ti { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-GjVz8 .framer-phyab8 { display: grid; flex: none; gap: 20px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(200px, 1fr)); height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-GjVz8 .framer-1ip3177 { align-content: center; align-items: center; align-self: start; background-color: var(--token-506ebaec-17d6-4442-baff-32ed785b3c6d, #f8f8f8); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 100%; justify-content: flex-start; justify-self: start; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-GjVz8 .framer-1f60hpb { aspect-ratio: 1.7741935483870968 / 1; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: var(--framer-aspect-ratio-supported, 248px); position: relative; width: 100%; }\",\".framer-GjVz8 .framer-4vj9ub { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 20px 20px 20px; position: relative; width: 100%; }\",\".framer-GjVz8 .framer-1jkh0kf { --framer-text-wrap-override: balance; flex: none; height: auto; position: relative; width: 100%; }\",\".framer-GjVz8 .framer-d290u0, .framer-GjVz8 .framer-fx70qt, .framer-GjVz8 .framer-1aox8c8, .framer-GjVz8 .framer-1ilp4j8, .framer-GjVz8 .framer-adg0jb, .framer-GjVz8 .framer-16a9m0j, .framer-GjVz8 .framer-1cpny2o { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; padding: 0px; position: relative; width: min-content; }\",\".framer-GjVz8 .framer-1swekag, .framer-GjVz8 .framer-xlylsp, .framer-GjVz8 .framer-davah0, .framer-GjVz8 .framer-unwvbx, .framer-GjVz8 .framer-1tahjj6, .framer-GjVz8 .framer-13k3g48, .framer-GjVz8 .framer-74xlb2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: min-content; }\",\".framer-GjVz8 .framer-1ctzled-container { aspect-ratio: 0.8666666666666667 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 60px); position: relative; width: 52px; }\",\".framer-GjVz8 .framer-cyzbws-container { aspect-ratio: 8.5 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); position: relative; width: 255px; }\",\".framer-GjVz8 .framer-3f5snm-container { aspect-ratio: 5.166666666666667 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); position: relative; width: 155px; }\",\".framer-GjVz8 .framer-1ojut2h-container, .framer-GjVz8 .framer-1aufhnm-container { aspect-ratio: 7.166666666666667 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); position: relative; width: 215px; }\",\".framer-GjVz8 .framer-12jyd55-container { aspect-ratio: 7.12 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 25px); position: relative; width: 178px; }\",\".framer-GjVz8 .framer-1jhm391-container { aspect-ratio: 11 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 25px); position: relative; width: 275px; }\",\".framer-GjVz8 .framer-185ln0n { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 1360px; overflow: hidden; padding: 0px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-GjVz8 .framer-192etm4 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-GjVz8 .framer-frbom2-container { flex: 2 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-GjVz8 .framer-1f7ssii { 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: 1360px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-GjVz8 .framer-1vv8l36 { align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 120px 40px 120px 40px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-GjVz8 .framer-6zorp3 { align-content: flex-start; align-items: flex-start; 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; position: relative; width: 1px; }\",\".framer-GjVz8 .framer-1lu1tq9 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-GjVz8.framer-tr4sd3, .framer-GjVz8 .framer-4m8m10, .framer-GjVz8 .framer-imj8kz, .framer-GjVz8 .framer-amslq3, .framer-GjVz8 .framer-1mjkuwv, .framer-GjVz8 .framer-12epzir, .framer-GjVz8 .framer-m85b0u, .framer-GjVz8 .framer-1suob91, .framer-GjVz8 .framer-q99qwq, .framer-GjVz8 .framer-17ksmly, .framer-GjVz8 .framer-1oercf3, .framer-GjVz8 .framer-1ip3177, .framer-GjVz8 .framer-4vj9ub, .framer-GjVz8 .framer-597c7h, .framer-GjVz8 .framer-d290u0, .framer-GjVz8 .framer-1swekag, .framer-GjVz8 .framer-fx70qt, .framer-GjVz8 .framer-xlylsp, .framer-GjVz8 .framer-1aox8c8, .framer-GjVz8 .framer-davah0, .framer-GjVz8 .framer-1ilp4j8, .framer-GjVz8 .framer-unwvbx, .framer-GjVz8 .framer-adg0jb, .framer-GjVz8 .framer-1tahjj6, .framer-GjVz8 .framer-16a9m0j, .framer-GjVz8 .framer-13k3g48, .framer-GjVz8 .framer-1cpny2o, .framer-GjVz8 .framer-74xlb2, .framer-GjVz8 .framer-185ln0n, .framer-GjVz8 .framer-192etm4, .framer-GjVz8 .framer-1f7ssii, .framer-GjVz8 .framer-1vv8l36, .framer-GjVz8 .framer-6zorp3 { gap: 0px; } .framer-GjVz8.framer-tr4sd3 > *, .framer-GjVz8 .framer-4m8m10 > *, .framer-GjVz8 .framer-17ksmly > *, .framer-GjVz8 .framer-d290u0 > *, .framer-GjVz8 .framer-fx70qt > *, .framer-GjVz8 .framer-1aox8c8 > *, .framer-GjVz8 .framer-1ilp4j8 > *, .framer-GjVz8 .framer-adg0jb > *, .framer-GjVz8 .framer-16a9m0j > *, .framer-GjVz8 .framer-1cpny2o > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-GjVz8.framer-tr4sd3 > :first-child, .framer-GjVz8 .framer-4m8m10 > :first-child, .framer-GjVz8 .framer-imj8kz > :first-child, .framer-GjVz8 .framer-amslq3 > :first-child, .framer-GjVz8 .framer-12epzir > :first-child, .framer-GjVz8 .framer-m85b0u > :first-child, .framer-GjVz8 .framer-1suob91 > :first-child, .framer-GjVz8 .framer-q99qwq > :first-child, .framer-GjVz8 .framer-17ksmly > :first-child, .framer-GjVz8 .framer-1oercf3 > :first-child, .framer-GjVz8 .framer-1ip3177 > :first-child, .framer-GjVz8 .framer-4vj9ub > :first-child, .framer-GjVz8 .framer-597c7h > :first-child, .framer-GjVz8 .framer-d290u0 > :first-child, .framer-GjVz8 .framer-fx70qt > :first-child, .framer-GjVz8 .framer-1aox8c8 > :first-child, .framer-GjVz8 .framer-1ilp4j8 > :first-child, .framer-GjVz8 .framer-adg0jb > :first-child, .framer-GjVz8 .framer-16a9m0j > :first-child, .framer-GjVz8 .framer-1cpny2o > :first-child, .framer-GjVz8 .framer-1f7ssii > :first-child, .framer-GjVz8 .framer-6zorp3 > :first-child { margin-top: 0px; } .framer-GjVz8.framer-tr4sd3 > :last-child, .framer-GjVz8 .framer-4m8m10 > :last-child, .framer-GjVz8 .framer-imj8kz > :last-child, .framer-GjVz8 .framer-amslq3 > :last-child, .framer-GjVz8 .framer-12epzir > :last-child, .framer-GjVz8 .framer-m85b0u > :last-child, .framer-GjVz8 .framer-1suob91 > :last-child, .framer-GjVz8 .framer-q99qwq > :last-child, .framer-GjVz8 .framer-17ksmly > :last-child, .framer-GjVz8 .framer-1oercf3 > :last-child, .framer-GjVz8 .framer-1ip3177 > :last-child, .framer-GjVz8 .framer-4vj9ub > :last-child, .framer-GjVz8 .framer-597c7h > :last-child, .framer-GjVz8 .framer-d290u0 > :last-child, .framer-GjVz8 .framer-fx70qt > :last-child, .framer-GjVz8 .framer-1aox8c8 > :last-child, .framer-GjVz8 .framer-1ilp4j8 > :last-child, .framer-GjVz8 .framer-adg0jb > :last-child, .framer-GjVz8 .framer-16a9m0j > :last-child, .framer-GjVz8 .framer-1cpny2o > :last-child, .framer-GjVz8 .framer-1f7ssii > :last-child, .framer-GjVz8 .framer-6zorp3 > :last-child { margin-bottom: 0px; } .framer-GjVz8 .framer-imj8kz > *, .framer-GjVz8 .framer-amslq3 > *, .framer-GjVz8 .framer-1ip3177 > *, .framer-GjVz8 .framer-597c7h > *, .framer-GjVz8 .framer-6zorp3 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-GjVz8 .framer-1mjkuwv > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } .framer-GjVz8 .framer-1mjkuwv > :first-child, .framer-GjVz8 .framer-1swekag > :first-child, .framer-GjVz8 .framer-xlylsp > :first-child, .framer-GjVz8 .framer-davah0 > :first-child, .framer-GjVz8 .framer-unwvbx > :first-child, .framer-GjVz8 .framer-1tahjj6 > :first-child, .framer-GjVz8 .framer-13k3g48 > :first-child, .framer-GjVz8 .framer-74xlb2 > :first-child, .framer-GjVz8 .framer-185ln0n > :first-child, .framer-GjVz8 .framer-192etm4 > :first-child, .framer-GjVz8 .framer-1vv8l36 > :first-child { margin-left: 0px; } .framer-GjVz8 .framer-1mjkuwv > :last-child, .framer-GjVz8 .framer-1swekag > :last-child, .framer-GjVz8 .framer-xlylsp > :last-child, .framer-GjVz8 .framer-davah0 > :last-child, .framer-GjVz8 .framer-unwvbx > :last-child, .framer-GjVz8 .framer-1tahjj6 > :last-child, .framer-GjVz8 .framer-13k3g48 > :last-child, .framer-GjVz8 .framer-74xlb2 > :last-child, .framer-GjVz8 .framer-185ln0n > :last-child, .framer-GjVz8 .framer-192etm4 > :last-child, .framer-GjVz8 .framer-1vv8l36 > :last-child { margin-right: 0px; } .framer-GjVz8 .framer-12epzir > *, .framer-GjVz8 .framer-1oercf3 > *, .framer-GjVz8 .framer-1f7ssii > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-GjVz8 .framer-m85b0u > *, .framer-GjVz8 .framer-q99qwq > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-GjVz8 .framer-1suob91 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-GjVz8 .framer-4vj9ub > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-GjVz8 .framer-1swekag > *, .framer-GjVz8 .framer-xlylsp > *, .framer-GjVz8 .framer-davah0 > *, .framer-GjVz8 .framer-unwvbx > *, .framer-GjVz8 .framer-1tahjj6 > *, .framer-GjVz8 .framer-13k3g48 > *, .framer-GjVz8 .framer-74xlb2 > *, .framer-GjVz8 .framer-192etm4 > *, .framer-GjVz8 .framer-1vv8l36 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-GjVz8 .framer-185ln0n > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,\"@media (min-width: 1200px) and (max-width: 1439px) { .framer-GjVz8.framer-tr4sd3 { width: 1200px; } .framer-GjVz8 .framer-okebsw-container, .framer-GjVz8 .framer-veiqn1-container, .framer-GjVz8 .framer-1e7j2mi-container, .framer-GjVz8 .framer-9v2xs6-container { height: var(--framer-aspect-ratio-supported, 550px); } .framer-GjVz8 .framer-1f60hpb { height: var(--framer-aspect-ratio-supported, 203px); } .framer-GjVz8 .framer-vsu7ti { flex: none; white-space: pre; width: auto; }}\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-GjVz8.framer-tr4sd3 { width: 810px; } .framer-GjVz8 .framer-4m8m10 { height: min-content; } .framer-GjVz8 .framer-okebsw-container, .framer-GjVz8 .framer-veiqn1-container, .framer-GjVz8 .framer-1e7j2mi-container, .framer-GjVz8 .framer-9v2xs6-container { height: var(--framer-aspect-ratio-supported, 730px); } .framer-GjVz8 .framer-phyab8 { grid-template-columns: repeat(2, minmax(200px, 1fr)); } .framer-GjVz8 .framer-1f60hpb { height: var(--framer-aspect-ratio-supported, 200px); } .framer-GjVz8 .framer-185ln0n { flex-direction: column; gap: 40px; } .framer-GjVz8 .framer-192etm4, .framer-GjVz8 .framer-frbom2-container { flex: none; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-GjVz8 .framer-185ln0n { gap: 0px; } .framer-GjVz8 .framer-185ln0n > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-GjVz8 .framer-185ln0n > :first-child { margin-top: 0px; } .framer-GjVz8 .framer-185ln0n > :last-child { margin-bottom: 0px; } }}\",\"@media (max-width: 809px) { .framer-GjVz8.framer-tr4sd3 { padding: 0px 20px 0px 20px; width: 390px; } .framer-GjVz8 .framer-4m8m10 { height: min-content; padding: 240px 20px 20px 20px; } .framer-GjVz8 .framer-amslq3, .framer-GjVz8 .framer-597c7h { padding: 40px 0px 40px 0px; } .framer-GjVz8 .framer-12epzir { gap: 20px; } .framer-GjVz8 .framer-1im39oi { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: wrap; } .framer-GjVz8 .framer-okebsw-container, .framer-GjVz8 .framer-veiqn1-container, .framer-GjVz8 .framer-1e7j2mi-container, .framer-GjVz8 .framer-9v2xs6-container { align-self: unset; height: var(--framer-aspect-ratio-supported, 350px); } .framer-GjVz8 .framer-1suob91 { padding: 40px 0px 0px 0px; } .framer-GjVz8 .framer-17ksmly { padding: 0px; } .framer-GjVz8 .framer-1oercf3 { gap: 20px; padding: 40px 0px 0px 0px; } .framer-GjVz8 .framer-phyab8 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; justify-content: flex-start; } .framer-GjVz8 .framer-1ip3177 { align-self: unset; height: min-content; } .framer-GjVz8 .framer-1f60hpb { height: var(--framer-aspect-ratio-supported, 198px); } .framer-GjVz8 .framer-185ln0n { flex-direction: column; gap: 20px; padding: 0px 0px 40px 0px; } .framer-GjVz8 .framer-192etm4 { flex: none; justify-content: center; width: 100%; } .framer-GjVz8 .framer-frbom2-container { flex: none; width: 100%; } .framer-GjVz8 .framer-1vv8l36 { padding: 80px 20px 80px 20px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-GjVz8 .framer-12epzir, .framer-GjVz8 .framer-1im39oi, .framer-GjVz8 .framer-1oercf3, .framer-GjVz8 .framer-phyab8, .framer-GjVz8 .framer-185ln0n { gap: 0px; } .framer-GjVz8 .framer-12epzir > *, .framer-GjVz8 .framer-1im39oi > *, .framer-GjVz8 .framer-1oercf3 > *, .framer-GjVz8 .framer-phyab8 > *, .framer-GjVz8 .framer-185ln0n > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-GjVz8 .framer-12epzir > :first-child, .framer-GjVz8 .framer-1im39oi > :first-child, .framer-GjVz8 .framer-1oercf3 > :first-child, .framer-GjVz8 .framer-phyab8 > :first-child, .framer-GjVz8 .framer-185ln0n > :first-child { margin-top: 0px; } .framer-GjVz8 .framer-12epzir > :last-child, .framer-GjVz8 .framer-1im39oi > :last-child, .framer-GjVz8 .framer-1oercf3 > :last-child, .framer-GjVz8 .framer-phyab8 > :last-child, .framer-GjVz8 .framer-185ln0n > :last-child { margin-bottom: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5053.5\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"SoPTB0VKc\":{\"layout\":[\"fixed\",\"auto\"]},\"LAW3tRyJf\":{\"layout\":[\"fixed\",\"auto\"]},\"tPYRiYJwz\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerAft1wM2t6=withCSS(Component,css,\"framer-GjVz8\");export default FramerAft1wM2t6;FramerAft1wM2t6.displayName=\"Products / Searching\";FramerAft1wM2t6.defaultProps={height:5053.5,width:1440};addFonts(FramerAft1wM2t6,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...HeaderFonts,...VideoFonts,...ButtonFonts,...TickerFonts,...HomeProductCardFonts,...PricingNoWidthFonts,...Image1Fonts,...FAQFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerAft1wM2t6\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"SoPTB0VKc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LAW3tRyJf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tPYRiYJwz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerIntrinsicHeight\":\"5053.5\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "defaultVideo", "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", "X", "srcType", "srcUrl", "srcFile", "posterEnabled", "playing", "restartOnEnter", "objectFit", "backgroundColor", "radius", "volume", "startTimeProp", "poster", "progress", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "renderTarget", "useRenderTarget", "isStaticRenderer", "RenderTarget", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "isPlaying", "ue", "isMountedAndReadyForProgressChanges", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "handleReady", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "ButtonFonts", "getFonts", "R995Zcnxh_default", "IconCheckFonts", "p5jICut9Q_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "gap", "gap2", "height", "id", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "E49RLY6C0", "KuusTJ0sU", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap8i5y0c", "args", "onTap1entni1", "onTap7w21m6", "onTapnqd3rj", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "ComponentViewportProvider", "SVG", "css", "FramerFsga4O7rX", "withCSS", "Fsga4O7rX_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "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", "cx", "RichText2", "css", "FramerENSCE2bCW", "withCSS", "ENSCE2bCW_default", "addFonts", "getFontsFromSharedStyle", "fonts", "ButtonDudFonts", "getFonts", "ENSCE2bCW_default", "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", "RichText2", "ComponentViewportProvider", "Image2", "getLoadingLazyAtYPosition", "css", "FramerlZhZ8Mtyd", "withCSS", "lZhZ8Mtyd_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "t", "e", "r", "n", "i", "a", "s", "o", "l", "u", "f", "h", "c", "p", "d", "g", "v", "y", "m", "w", "b", "_", "k", "I", "S", "x", "E", "T", "L", "M", "A", "C", "F", "j", "t", "e", "r", "n", "i", "a", "P", "D", "N", "O", "$", "q", "z", "R", "s", "o", "l", "u", "f", "h", "c", "H", "J", "W", "G", "K", "V", "X", "Q", "Z", "Y", "tt", "te", "tr", "tn", "p", "d", "v", "y", "m", "w", "b", "_", "k", "I", "U", "S", "x", "E", "ti", "ta", "ts", "to", "tp", "tl", "tu", "tf", "th", "tc", "td", "tg", "tv", "ty", "tm", "tw", "tb", "t_", "tk", "tI", "tU", "tS", "tx", "tE", "tB", "tT", "tL", "tM", "tC", "ControlType", "tF", "tj", "tP", "tD", "tN", "tO", "t$", "tq", "tz", "tR", "tH", "tJ", "tG", "t", "e", "r", "n", "i", "a", "tK", "h", "m", "tV", "tX", "tQ", "tZ", "tY", "t1", "t0", "t2", "en", "s", "t8", "t5", "t4", "t6", "t3", "t9", "x", "et", "o", "l", "t7", "b", "er", "ee", "ea", "t", "e", "a", "s", "ty", "o", "I", "l", "r", "tT", "n", "tv", "es", "tZ", "i", "tM", "w", "t2", "b", "eo", "e", "resolveRichText", "t", "i", "a", "ControlType", "n", "QueryEngine", "o", "eo", "resolveRichText", "xtNFB9S4S_default", "addPropertyControls", "HeaderFonts", "getFonts", "Y2A0Oqgcl_default", "VideoFonts", "Video", "ButtonFonts", "R995Zcnxh_default", "ImageWithFX", "withFX", "Image2", "TickerFonts", "Ticker", "MotionDivWithFX", "motion", "HomeProductCardFonts", "lZhZ8Mtyd_default", "PricingNoWidthFonts", "Fsga4O7rX_default", "Image1Fonts", "Image", "FAQFonts", "RrS1eVuGg_default", "FooterFonts", "XLa5RMd5Q_default", "ContainerWithFX", "Container", "breakpoints", "serializationHash", "variantClassNames", "animation", "transition1", "transition2", "animation1", "toResponsiveImage", "value", "toDateString", "options", "activeLocale", "date", "display", "dateOptions", "fallbackLocale", "locale", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "isSet", "transition3", "animation2", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "v9_N34VBHFWGGNXyYZ", "Q2UL00NcqFWGGNXyYZ", "yYqLrSMQrFWGGNXyYZ", "LmxhcCJEZFWGGNXyYZ", "idFWGGNXyYZ", "btcYFCXjFYvIsipwCA", "gBwfq1LiWYvIsipwCA", "Tq8P52lBwYvIsipwCA", "uJP6yOObbYvIsipwCA", "idYvIsipwCA", "btcYFCXjFussJXYFXn", "gBwfq1LiWussJXYFXn", "Tq8P52lBwussJXYFXn", "uJP6yOObbussJXYFXn", "idussJXYFXn", "btcYFCXjFBl6n9yfLs", "gBwfq1LiWBl6n9yfLs", "Tq8P52lBwBl6n9yfLs", "uJP6yOObbBl6n9yfLs", "idBl6n9yfLs", "btcYFCXjFVu45AM98Y", "gBwfq1LiWVu45AM98Y", "Tq8P52lBwVu45AM98Y", "uJP6yOObbVu45AM98Y", "idVu45AM98Y", "btcYFCXjFErdQj9yyk", "gBwfq1LiWErdQj9yyk", "Tq8P52lBwErdQj9yyk", "uJP6yOObbErdQj9yyk", "idErdQj9yyk", "btcYFCXjFlh3ZxeRIZ", "gBwfq1LiWlh3ZxeRIZ", "Tq8P52lBwlh3ZxeRIZ", "uJP6yOObblh3ZxeRIZ", "idlh3ZxeRIZ", "btcYFCXjFOeJGuBo0X", "gBwfq1LiWOeJGuBo0X", "Tq8P52lBwOeJGuBo0X", "uJP6yOObbOeJGuBo0X", "idOeJGuBo0X", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "ref1", "pe", "activeLocaleCode", "useLocaleCode", "router", "useRouter", "defaultLayoutId", "ae", "useCustomCursors", "componentViewport", "useComponentViewport", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "PropertyOverrides2", "ComponentViewportProvider", "Container", "Y2A0Oqgcl_default", "getLoadingLazyAtYPosition", "ImageWithFX", "Video", "RichText2", "x", "R995Zcnxh_default", "MotionDivWithFX", "Ticker", "Image2", "SVG", "lZhZ8Mtyd_default", "Fsga4O7rX_default", "ChildrenCanSuspend", "AE4ePfidq_default", "collection", "paginationInfo", "loadMore", "l", "index", "textContent", "PathVariablesContext", "Link", "xtNFB9S4S_default", "collection1", "paginationInfo1", "loadMore1", "index1", "visible", "ResolveLinks", "resolvedLinks", "Image", "collection2", "paginationInfo2", "loadMore2", "index2", "visible1", "resolvedLinks1", "collection3", "paginationInfo3", "loadMore3", "index3", "visible2", "resolvedLinks2", "collection4", "paginationInfo4", "loadMore4", "index4", "visible3", "resolvedLinks3", "collection5", "paginationInfo5", "loadMore5", "index5", "visible4", "resolvedLinks4", "collection6", "paginationInfo6", "loadMore6", "index6", "visible5", "resolvedLinks5", "collection7", "paginationInfo7", "loadMore7", "index7", "visible6", "resolvedLinks6", "RrS1eVuGg_default", "ContainerWithFX", "XLa5RMd5Q_default", "css", "FramerAft1wM2t6", "withCSS", "Aft1wM2t6_default", "addFonts", "HeaderFonts", "VideoFonts", "ButtonFonts", "TickerFonts", "HomeProductCardFonts", "PricingNoWidthFonts", "Image1Fonts", "FAQFonts", "FooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
