{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/90ICLbTHnkXgVfH1BSgW/Video.js", "ssg:https://framerusercontent.com/modules/zOOnTWkjicroVSRKEfrb/0eoMZGtiyVPdq8eaJ0G3/kpSCxW3hB.js", "ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/qXQVWG1AZxpdrbBmhE1U/Video.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://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 borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);const isCloseToViewport=isOnCanvas?false:useInView(videoRef,{margin:\"0px 0px 100px 100px\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress,isPlaying}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);/**\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!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(// when the component updates (e.g. only srcFile/url changes), and the video was already playing, keep playing\nisPlaying.current||autoplayBehavior===\"on-mount\"||autoplayBehavior===\"on-viewport\"&&isInViewport)play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>onEnd===null||onEnd===void 0?void 0:onEnd(e),autoPlay:isPlaying.current||autoplayBehavior===\"on-mount\"||autoplayBehavior===\"on-viewport\"&&isInViewport,preload:isPlaying.current?\"auto\":isOnCanvas&&!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:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";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\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\",description:\"We recommend adding a poster. [Learn more](https://www.framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0)\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\",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\":{\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"112\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (3bc9980)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/qXQVWG1AZxpdrbBmhE1U/Video.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/wS4oI3bcwz0XhI9NarBw/BFrVTnwUgq7aKR5FVGvg/JxMOl0LTb.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/GxNVfufTtWs49xzXRtRk/SSDJ9f0dKfPV7C4GSKib/ZpgQ2GL3x.js\";const PhosphorFonts=getFonts(Phosphor);const VideoFonts=getFonts(Video);const cycleOrder=[\"q4C8opX6M\",\"BuY2Zn0qE\",\"GNeDL7J7D\",\"nvt5HbD31\",\"RMBpo3lLH\",\"nZEQciqMv\",\"Y66b6sTFf\",\"bLSOidWWq\",\"vN1D5NEz2\",\"W5mTSqiG0\",\"KdBXJNIvz\",\"E0oJP0Pfn\",\"p_IISIAy7\",\"VjA0uSCTS\",\"InGS1kAc2\",\"Ityopy6Tk\",\"hRehImQUY\",\"aAHF3qeQ7\"];const serializationHash=\"framer-7dvep\";const variantClassNames={aAHF3qeQ7:\"framer-v-ys68pz\",bLSOidWWq:\"framer-v-6f6rsq\",BuY2Zn0qE:\"framer-v-17vgyqk\",E0oJP0Pfn:\"framer-v-ezc30x\",GNeDL7J7D:\"framer-v-43dnzh\",hRehImQUY:\"framer-v-1x90ogu\",InGS1kAc2:\"framer-v-wzu7bq\",Ityopy6Tk:\"framer-v-igkd95\",KdBXJNIvz:\"framer-v-4ioo5c\",nvt5HbD31:\"framer-v-1fz6pni\",nZEQciqMv:\"framer-v-ph0jrj\",p_IISIAy7:\"framer-v-2uqj2j\",q4C8opX6M:\"framer-v-1tt3lfl\",RMBpo3lLH:\"framer-v-1q94gwk\",VjA0uSCTS:\"framer-v-1gqmch6\",vN1D5NEz2:\"framer-v-mqbvdt\",W5mTSqiG0:\"framer-v-w0yf5r\",Y66b6sTFf:\"framer-v-1hj3pdu\"};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={damping:60,delay:0,mass:1,stiffness:500,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={\"Tab 1 (Desktop)\":\"q4C8opX6M\",\"Tab 1 (Mobile)\":\"p_IISIAy7\",\"Tab 1 (Tablet)\":\"Y66b6sTFf\",\"Tab 2 (Desktop)\":\"BuY2Zn0qE\",\"Tab 2 (Mobile)\":\"VjA0uSCTS\",\"Tab 2 (Tablet)\":\"bLSOidWWq\",\"Tab 3 (Desktop)\":\"GNeDL7J7D\",\"Tab 3 (Mobile)\":\"InGS1kAc2\",\"Tab 3 (Tablet)\":\"vN1D5NEz2\",\"Tab 4 (Desktop)\":\"nvt5HbD31\",\"Tab 4 (Mobile)\":\"Ityopy6Tk\",\"Tab 4 (Tablet)\":\"W5mTSqiG0\",\"Tab 5 (Desktop)\":\"RMBpo3lLH\",\"Tab 5 (Mobile)\":\"hRehImQUY\",\"Tab 5 (Tablet)\":\"KdBXJNIvz\",\"Tab 6 (Desktop)\":\"nZEQciqMv\",\"Tab 6 (Mobile)\":\"aAHF3qeQ7\",\"Tab 6 (Tablet)\":\"E0oJP0Pfn\"};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:\"q4C8opX6M\"};};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:\"q4C8opX6M\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap9q76zt=activeVariantCallback(async(...args)=>{setVariant(\"q4C8opX6M\");});const onTaph3crp9=activeVariantCallback(async(...args)=>{setVariant(\"Y66b6sTFf\");});const onTaprjy6nr=activeVariantCallback(async(...args)=>{setVariant(\"p_IISIAy7\");});const onTap17ajz15=activeVariantCallback(async(...args)=>{setVariant(\"BuY2Zn0qE\");});const onTap2sb12o=activeVariantCallback(async(...args)=>{setVariant(\"bLSOidWWq\");});const onTap1fbhwqu=activeVariantCallback(async(...args)=>{setVariant(\"VjA0uSCTS\");});const onTap11a75zf=activeVariantCallback(async(...args)=>{setVariant(\"GNeDL7J7D\");});const onTapsesq86=activeVariantCallback(async(...args)=>{setVariant(\"vN1D5NEz2\");});const onTap9sfe7v=activeVariantCallback(async(...args)=>{setVariant(\"InGS1kAc2\");});const onTap1o7o0ai=activeVariantCallback(async(...args)=>{setVariant(\"nvt5HbD31\");});const onTapnka977=activeVariantCallback(async(...args)=>{setVariant(\"W5mTSqiG0\");});const onTaplfdmpu=activeVariantCallback(async(...args)=>{setVariant(\"Ityopy6Tk\");});const onTap4l7r49=activeVariantCallback(async(...args)=>{setVariant(\"RMBpo3lLH\");});const onTaprw59pm=activeVariantCallback(async(...args)=>{setVariant(\"KdBXJNIvz\");});const onTapkkg4iu=activeVariantCallback(async(...args)=>{setVariant(\"hRehImQUY\");});const onTapcovwx0=activeVariantCallback(async(...args)=>{setVariant(\"nZEQciqMv\");});const onTap1wolr73=activeVariantCallback(async(...args)=>{setVariant(\"E0oJP0Pfn\");});const onTap1g5padt=activeVariantCallback(async(...args)=>{setVariant(\"aAHF3qeQ7\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"BuY2Zn0qE\",\"GNeDL7J7D\",\"nvt5HbD31\",\"RMBpo3lLH\",\"nZEQciqMv\",\"bLSOidWWq\",\"vN1D5NEz2\",\"W5mTSqiG0\",\"KdBXJNIvz\",\"E0oJP0Pfn\",\"VjA0uSCTS\",\"InGS1kAc2\",\"Ityopy6Tk\",\"hRehImQUY\",\"aAHF3qeQ7\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"BuY2Zn0qE\",\"bLSOidWWq\",\"VjA0uSCTS\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if([\"GNeDL7J7D\",\"vN1D5NEz2\",\"InGS1kAc2\"].includes(baseVariant))return true;return false;};const isDisplayed3=()=>{if([\"nvt5HbD31\",\"W5mTSqiG0\",\"Ityopy6Tk\"].includes(baseVariant))return true;return false;};const isDisplayed4=()=>{if([\"RMBpo3lLH\",\"KdBXJNIvz\",\"hRehImQUY\"].includes(baseVariant))return true;return false;};const isDisplayed5=()=>{if([\"nZEQciqMv\",\"E0oJP0Pfn\",\"aAHF3qeQ7\"].includes(baseVariant))return true;return false;};const isDisplayed6=()=>{if([\"nZEQciqMv\",\"bLSOidWWq\",\"vN1D5NEz2\",\"W5mTSqiG0\",\"KdBXJNIvz\",\"E0oJP0Pfn\",\"VjA0uSCTS\",\"InGS1kAc2\",\"Ityopy6Tk\",\"hRehImQUY\",\"aAHF3qeQ7\"].includes(baseVariant))return false;return true;};const isDisplayed7=()=>{if([\"nZEQciqMv\",\"E0oJP0Pfn\",\"aAHF3qeQ7\"].includes(baseVariant))return false;return true;};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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1tt3lfl\",className,classNames),\"data-framer-name\":\"Tab 1 (Desktop)\",layoutDependency:layoutDependency,layoutId:\"q4C8opX6M\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({aAHF3qeQ7:{\"data-framer-name\":\"Tab 6 (Mobile)\"},bLSOidWWq:{\"data-framer-name\":\"Tab 2 (Tablet)\"},BuY2Zn0qE:{\"data-framer-name\":\"Tab 2 (Desktop)\"},E0oJP0Pfn:{\"data-framer-name\":\"Tab 6 (Tablet)\"},GNeDL7J7D:{\"data-framer-name\":\"Tab 3 (Desktop)\"},hRehImQUY:{\"data-framer-name\":\"Tab 5 (Mobile)\"},InGS1kAc2:{\"data-framer-name\":\"Tab 3 (Mobile)\"},Ityopy6Tk:{\"data-framer-name\":\"Tab 4 (Mobile)\"},KdBXJNIvz:{\"data-framer-name\":\"Tab 5 (Tablet)\"},nvt5HbD31:{\"data-framer-name\":\"Tab 4 (Desktop)\"},nZEQciqMv:{\"data-framer-name\":\"Tab 6 (Desktop)\"},p_IISIAy7:{\"data-framer-name\":\"Tab 1 (Mobile)\"},RMBpo3lLH:{\"data-framer-name\":\"Tab 5 (Desktop)\"},VjA0uSCTS:{\"data-framer-name\":\"Tab 2 (Mobile)\"},vN1D5NEz2:{\"data-framer-name\":\"Tab 3 (Tablet)\"},W5mTSqiG0:{\"data-framer-name\":\"Tab 4 (Tablet)\"},Y66b6sTFf:{\"data-framer-name\":\"Tab 1 (Tablet)\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gc69bm\",\"data-framer-name\":\"Tabs\",layoutDependency:layoutDependency,layoutId:\"luaSj_jKl\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-58h1pj\",\"data-border\":true,\"data-framer-name\":\"Framer Development\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"d_80YINyq\",onTap:onTap9q76zt,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-6aac10a8-f6d9-4581-95dd-2f8033451189, rgb(208, 223, 230))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-bc47f47b-f750-4602-97a5-1c9767dc6b73, rgb(236, 240, 243))\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},variants:{aAHF3qeQ7:{\"--border-color\":\"rgba(208, 223, 230, 0)\",backgroundColor:\"rgba(236, 240, 243, 0)\"},bLSOidWWq:{\"--border-color\":\"rgba(208, 223, 230, 0)\",backgroundColor:\"rgba(236, 240, 243, 0)\"},BuY2Zn0qE:{\"--border-color\":\"rgba(208, 223, 230, 0)\",backgroundColor:\"rgba(236, 240, 243, 0)\"},E0oJP0Pfn:{\"--border-color\":\"rgba(208, 223, 230, 0)\",backgroundColor:\"rgba(236, 240, 243, 0)\"},GNeDL7J7D:{\"--border-color\":\"rgba(208, 223, 230, 0)\",backgroundColor:\"rgba(236, 240, 243, 0)\"},hRehImQUY:{\"--border-color\":\"rgba(208, 223, 230, 0)\",backgroundColor:\"rgba(236, 240, 243, 0)\"},InGS1kAc2:{\"--border-color\":\"rgba(208, 223, 230, 0)\",backgroundColor:\"rgba(236, 240, 243, 0)\"},Ityopy6Tk:{\"--border-color\":\"rgba(208, 223, 230, 0)\",backgroundColor:\"rgba(236, 240, 243, 0)\"},KdBXJNIvz:{\"--border-color\":\"rgba(208, 223, 230, 0)\",backgroundColor:\"rgba(236, 240, 243, 0)\"},nvt5HbD31:{\"--border-color\":\"rgba(208, 223, 230, 0)\",backgroundColor:\"rgba(236, 240, 243, 0)\"},nZEQciqMv:{\"--border-color\":\"rgba(208, 223, 230, 0)\",backgroundColor:\"rgba(236, 240, 243, 0)\"},RMBpo3lLH:{\"--border-color\":\"rgba(208, 223, 230, 0)\",backgroundColor:\"rgba(236, 240, 243, 0)\"},VjA0uSCTS:{\"--border-color\":\"rgba(208, 223, 230, 0)\",backgroundColor:\"rgba(236, 240, 243, 0)\"},vN1D5NEz2:{\"--border-color\":\"rgba(208, 223, 230, 0)\",backgroundColor:\"rgba(236, 240, 243, 0)\"},W5mTSqiG0:{\"--border-color\":\"rgba(208, 223, 230, 0)\",backgroundColor:\"rgba(236, 240, 243, 0)\"}},...addPropertyOverrides({aAHF3qeQ7:{onTap:onTaprjy6nr},bLSOidWWq:{onTap:onTaph3crp9},E0oJP0Pfn:{onTap:onTaph3crp9},hRehImQUY:{onTap:onTaprjy6nr},InGS1kAc2:{onTap:onTaprjy6nr},Ityopy6Tk:{onTap:onTaprjy6nr},KdBXJNIvz:{onTap:onTaph3crp9},p_IISIAy7:{onTap:onTaprjy6nr},VjA0uSCTS:{onTap:onTaprjy6nr},vN1D5NEz2:{onTap:onTaph3crp9},W5mTSqiG0:{onTap:onTaph3crp9},Y66b6sTFf:{onTap:onTaph3crp9}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-q83brm\",\"data-framer-name\":\"Header\",layoutDependency:layoutDependency,layoutId:\"TD6OoIWne\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jz2d41\",\"data-framer-name\":\"Icon wrap\",layoutDependency:layoutDependency,layoutId:\"rTNlWg2hO\",style:{backgroundColor:\"var(--token-bc47f47b-f750-4602-97a5-1c9767dc6b73, rgb(236, 240, 243))\",borderBottomLeftRadius:999,borderBottomRightRadius:999,borderTopLeftRadius:999,borderTopRightRadius:999},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1efk40i-container\",layoutDependency:layoutDependency,layoutId:\"hgLyMoIBg-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-8766da81-4b16-4dc5-9abd-8dbd5bdab57d, rgb(26, 26, 26))\",height:\"100%\",iconSearch:\"Framer\",iconSelection:\"FramerLogo\",id:\"hgLyMoIBg\",layoutId:\"hgLyMoIBg\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-p1x9f6\",\"data-styles-preset\":\"JxMOl0LTb\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8766da81-4b16-4dc5-9abd-8dbd5bdab57d, rgb(26, 26, 26)))\"},children:\"Website Development\"})}),className:\"framer-1q9n6tl\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"sdoLFjYeq\",style:{\"--extracted-r6o4lv\":\"var(--token-8766da81-4b16-4dc5-9abd-8dbd5bdab57d, rgb(26, 26, 26))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-16lhvbr\",\"data-framer-name\":\"icon wrap\",layoutDependency:layoutDependency,layoutId:\"g4Vk0SKBd\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1amkpa1-container\",layoutDependency:layoutDependency,layoutId:\"Dnd0cs5fH-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-2bdd5e11-b174-44cf-bfab-8362e4501a8f, rgb(175, 127, 253))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowsDownUp\",id:\"Dnd0cs5fH\",layoutId:\"Dnd0cs5fH\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\"})})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-440xvs\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"f9Do5gfWa\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hqiu1z\",\"data-styles-preset\":\"ZpgQ2GL3x\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8766da81-4b16-4dc5-9abd-8dbd5bdab57d, rgb(26, 26, 26)))\"},children:\"Crafting digital experiences. From websites, applications, software interface or company wide rapid websites for internal comms use.\"})}),className:\"framer-6y6bjy\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"s_3iFZ3jH\",style:{\"--extracted-r6o4lv\":\"var(--token-8766da81-4b16-4dc5-9abd-8dbd5bdab57d, rgb(26, 26, 26))\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jf53vl\",\"data-framer-name\":\"Brand Identity\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"wl0j7Lr4o\",onTap:onTap17ajz15,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(243, 229, 245, 0)\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},variants:{aAHF3qeQ7:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(229, 215, 231, 0)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},bLSOidWWq:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-3b3aca29-0ca6-4441-939b-9355f6a6be12, rgb(229, 215, 231))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-71349634-3b39-4dae-a5cd-5adff4786465, rgb(243, 229, 245))\"},BuY2Zn0qE:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-3b3aca29-0ca6-4441-939b-9355f6a6be12, rgb(229, 215, 231))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-71349634-3b39-4dae-a5cd-5adff4786465, rgb(243, 229, 245))\"},E0oJP0Pfn:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(229, 215, 231, 0)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},InGS1kAc2:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(229, 215, 231, 0)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},Ityopy6Tk:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(229, 215, 231, 0)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},p_IISIAy7:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(229, 215, 231, 0)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},VjA0uSCTS:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-3b3aca29-0ca6-4441-939b-9355f6a6be12, rgb(229, 215, 231))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-71349634-3b39-4dae-a5cd-5adff4786465, rgb(243, 229, 245))\"},vN1D5NEz2:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(229, 215, 231, 0)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},W5mTSqiG0:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(229, 215, 231, 0)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},Y66b6sTFf:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(229, 215, 231, 0)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"}},...addPropertyOverrides({aAHF3qeQ7:{\"data-border\":true,onTap:onTap1fbhwqu},bLSOidWWq:{\"data-border\":true,onTap:onTap2sb12o},BuY2Zn0qE:{\"data-border\":true},E0oJP0Pfn:{\"data-border\":true,onTap:onTap2sb12o},hRehImQUY:{onTap:onTap1fbhwqu},InGS1kAc2:{\"data-border\":true,onTap:onTap1fbhwqu},Ityopy6Tk:{\"data-border\":true,onTap:onTap1fbhwqu},KdBXJNIvz:{onTap:onTap2sb12o},p_IISIAy7:{\"data-border\":true,onTap:onTap1fbhwqu},VjA0uSCTS:{\"data-border\":true,onTap:onTap1fbhwqu},vN1D5NEz2:{\"data-border\":true,onTap:onTap2sb12o},W5mTSqiG0:{\"data-border\":true,onTap:onTap2sb12o},Y66b6sTFf:{\"data-border\":true,onTap:onTap2sb12o}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17j9lqa\",\"data-framer-name\":\"Header\",layoutDependency:layoutDependency,layoutId:\"JA3uV9nwu\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-kb3ssj\",\"data-framer-name\":\"Icon wrap\",layoutDependency:layoutDependency,layoutId:\"hZklUOjwo\",style:{backgroundColor:\"var(--token-71349634-3b39-4dae-a5cd-5adff4786465, rgb(243, 229, 245))\",borderBottomLeftRadius:999,borderBottomRightRadius:999,borderTopLeftRadius:999,borderTopRightRadius:999},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rdmlzu-container\",layoutDependency:layoutDependency,layoutId:\"PEPJ2OznB-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-8766da81-4b16-4dc5-9abd-8dbd5bdab57d, rgb(26, 26, 26))\",height:\"100%\",iconSearch:\"sketch-logo\",iconSelection:\"Scales\",id:\"PEPJ2OznB\",layoutId:\"PEPJ2OznB\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-p1x9f6\",\"data-styles-preset\":\"JxMOl0LTb\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8766da81-4b16-4dc5-9abd-8dbd5bdab57d, rgb(26, 26, 26)))\"},children:\"Brand Identity\"})}),className:\"framer-z50huc\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"VB7rn9e9c\",style:{\"--extracted-r6o4lv\":\"var(--token-8766da81-4b16-4dc5-9abd-8dbd5bdab57d, rgb(26, 26, 26))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-qw47tn\",\"data-framer-name\":\"icon wrap\",layoutDependency:layoutDependency,layoutId:\"ihgD0X59T\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1adskb0-container\",layoutDependency:layoutDependency,layoutId:\"YptPRH4Tk-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-2bdd5e11-b174-44cf-bfab-8362e4501a8f, rgb(175, 127, 253))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowsDownUp\",id:\"YptPRH4Tk\",layoutId:\"YptPRH4Tk\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\"})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-wv7cka\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"uxdXYHsP3\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hqiu1z\",\"data-styles-preset\":\"ZpgQ2GL3x\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8766da81-4b16-4dc5-9abd-8dbd5bdab57d, rgb(26, 26, 26)))\"},children:\"We believe in the power of branding. Whether you\u2019re a market leader, an ambitious follower or a cool new, fast-growth start-up, we can create a strong proposition, identity and brand system built on your unique brand story, values and positioning.  \"})}),className:\"framer-1hytgil\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"BPwiFaQKZ\",style:{\"--extracted-r6o4lv\":\"var(--token-8766da81-4b16-4dc5-9abd-8dbd5bdab57d, rgb(26, 26, 26))\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2lojs1\",\"data-framer-name\":\"Design System\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"q7J3gPOZK\",onTap:onTap11a75zf,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(229, 228, 226, 0)\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},variants:{aAHF3qeQ7:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(230, 231, 217, 0)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},E0oJP0Pfn:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(230, 231, 217, 0)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},GNeDL7J7D:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-3afc2294-f420-4b1e-b882-ac52d56fcc1d, rgb(85, 95, 107))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-d0d6066a-7f17-4731-bd28-3a16d725ecac, rgb(229, 228, 226))\"},InGS1kAc2:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-3afc2294-f420-4b1e-b882-ac52d56fcc1d, rgb(85, 95, 107))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-d0d6066a-7f17-4731-bd28-3a16d725ecac, rgb(229, 228, 226))\"},Ityopy6Tk:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(230, 231, 217, 0)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},nvt5HbD31:{backgroundColor:\"rgba(249, 251, 231, 0)\"},nZEQciqMv:{backgroundColor:\"rgba(249, 251, 231, 0)\"},p_IISIAy7:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(230, 231, 217, 0)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},RMBpo3lLH:{backgroundColor:\"rgba(249, 251, 231, 0)\"},vN1D5NEz2:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-3afc2294-f420-4b1e-b882-ac52d56fcc1d, rgb(85, 95, 107))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-d0d6066a-7f17-4731-bd28-3a16d725ecac, rgb(229, 228, 226))\"},W5mTSqiG0:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(230, 231, 217, 0)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},Y66b6sTFf:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(230, 231, 217, 0)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"}},...addPropertyOverrides({aAHF3qeQ7:{\"data-border\":true,onTap:onTap9sfe7v},bLSOidWWq:{onTap:onTapsesq86},E0oJP0Pfn:{\"data-border\":true,onTap:onTapsesq86},GNeDL7J7D:{\"data-border\":true},hRehImQUY:{onTap:onTap9sfe7v},InGS1kAc2:{\"data-border\":true,onTap:onTap9sfe7v},Ityopy6Tk:{\"data-border\":true,onTap:onTap9sfe7v},KdBXJNIvz:{onTap:onTapsesq86},p_IISIAy7:{\"data-border\":true,onTap:onTap9sfe7v},VjA0uSCTS:{onTap:onTap9sfe7v},vN1D5NEz2:{\"data-border\":true,onTap:onTapsesq86},W5mTSqiG0:{\"data-border\":true,onTap:onTapsesq86},Y66b6sTFf:{\"data-border\":true,onTap:onTapsesq86}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1o6yr9o\",\"data-framer-name\":\"Header\",layoutDependency:layoutDependency,layoutId:\"jt9Ad7lPQ\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-6lmc0c\",\"data-framer-name\":\"Icon wrap\",layoutDependency:layoutDependency,layoutId:\"MLbCrZ3kc\",style:{backgroundColor:\"var(--token-bc47f47b-f750-4602-97a5-1c9767dc6b73, rgb(236, 240, 243))\",borderBottomLeftRadius:999,borderBottomRightRadius:999,borderTopLeftRadius:999,borderTopRightRadius:999},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-bnmbyk-container\",layoutDependency:layoutDependency,layoutId:\"TC7o9gK1k-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-8766da81-4b16-4dc5-9abd-8dbd5bdab57d, rgb(26, 26, 26))\",height:\"100%\",iconSearch:\"browser\",iconSelection:\"FramerLogo\",id:\"TC7o9gK1k\",layoutId:\"TC7o9gK1k\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-p1x9f6\",\"data-styles-preset\":\"JxMOl0LTb\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8766da81-4b16-4dc5-9abd-8dbd5bdab57d, rgb(26, 26, 26)))\"},children:\"Design System\"})}),className:\"framer-1ayj9t9\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"WsaxzxwoL\",style:{\"--extracted-r6o4lv\":\"var(--token-8766da81-4b16-4dc5-9abd-8dbd5bdab57d, rgb(26, 26, 26))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cpqq5\",\"data-framer-name\":\"icon wrap\",layoutDependency:layoutDependency,layoutId:\"OJwDzVybZ\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-r5rtdm-container\",layoutDependency:layoutDependency,layoutId:\"NxLsc4Y9E-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-2bdd5e11-b174-44cf-bfab-8362e4501a8f, rgb(175, 127, 253))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowsDownUp\",id:\"NxLsc4Y9E\",layoutId:\"NxLsc4Y9E\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\"})})})})]}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nxebh2\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"PhB_EYxGV\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hqiu1z\",\"data-styles-preset\":\"ZpgQ2GL3x\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8766da81-4b16-4dc5-9abd-8dbd5bdab57d, rgb(26, 26, 26)))\"},children:\"A design system is the backbone of online branding, ensuring consistency and efficiency in UI design and marketing assets. A well-established system harmonises elements, streamlining the brand experience.\"})}),className:\"framer-8po2gm\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Sp_dCKOQC\",style:{\"--extracted-r6o4lv\":\"var(--token-8766da81-4b16-4dc5-9abd-8dbd5bdab57d, rgb(26, 26, 26))\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hm6b7z\",\"data-framer-name\":\"SEO\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"KJcaaey__\",onTap:onTap1o7o0ai,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(251, 233, 231, 0)\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},variants:{aAHF3qeQ7:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(241, 223, 221, 0)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},bLSOidWWq:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(241, 223, 221, 0)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},E0oJP0Pfn:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(241, 223, 221, 0)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},InGS1kAc2:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(241, 223, 221, 0)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},Ityopy6Tk:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-609067db-0a13-407f-aa77-f81ac724f85f, rgb(255, 0, 0))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-6b25373e-7d02-4ef6-81b5-76bf19c10375, rgb(250, 200, 200))\"},nvt5HbD31:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-609067db-0a13-407f-aa77-f81ac724f85f, rgb(255, 0, 0))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-6b25373e-7d02-4ef6-81b5-76bf19c10375, rgb(250, 200, 200))\"},p_IISIAy7:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(241, 223, 221, 0)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},VjA0uSCTS:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(241, 223, 221, 0)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},vN1D5NEz2:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(241, 223, 221, 0)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},W5mTSqiG0:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-609067db-0a13-407f-aa77-f81ac724f85f, rgb(255, 0, 0))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-6b25373e-7d02-4ef6-81b5-76bf19c10375, rgb(250, 200, 200))\"},Y66b6sTFf:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(241, 223, 221, 0)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"}},...addPropertyOverrides({aAHF3qeQ7:{\"data-border\":true,onTap:onTaplfdmpu},bLSOidWWq:{\"data-border\":true,onTap:onTapnka977},E0oJP0Pfn:{\"data-border\":true,onTap:onTapnka977},hRehImQUY:{onTap:onTaplfdmpu},InGS1kAc2:{\"data-border\":true,onTap:onTaplfdmpu},Ityopy6Tk:{\"data-border\":true,onTap:onTaplfdmpu},KdBXJNIvz:{onTap:onTapnka977},nvt5HbD31:{\"data-border\":true},p_IISIAy7:{\"data-border\":true,onTap:onTaplfdmpu},VjA0uSCTS:{\"data-border\":true,onTap:onTaplfdmpu},vN1D5NEz2:{\"data-border\":true,onTap:onTapnka977},W5mTSqiG0:{\"data-border\":true,onTap:onTapnka977},Y66b6sTFf:{\"data-border\":true,onTap:onTapnka977}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1s43otb\",\"data-framer-name\":\"Header\",layoutDependency:layoutDependency,layoutId:\"ZH97mCeiX\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jjflrh\",\"data-framer-name\":\"Icon wrap\",layoutDependency:layoutDependency,layoutId:\"oXJr6zeij\",style:{backgroundColor:\"var(--token-6b25373e-7d02-4ef6-81b5-76bf19c10375, rgb(250, 200, 200))\",borderBottomLeftRadius:999,borderBottomRightRadius:999,borderTopLeftRadius:999,borderTopRightRadius:999},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1snfm0n-container\",layoutDependency:layoutDependency,layoutId:\"d4yR8TCiu-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-8766da81-4b16-4dc5-9abd-8dbd5bdab57d, rgb(26, 26, 26))\",height:\"100%\",iconSearch:\"magnifying-glass\",iconSelection:\"FramerLogo\",id:\"d4yR8TCiu\",layoutId:\"d4yR8TCiu\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-p1x9f6\",\"data-styles-preset\":\"JxMOl0LTb\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8766da81-4b16-4dc5-9abd-8dbd5bdab57d, rgb(26, 26, 26)))\"},children:\"SEO\"})}),className:\"framer-qstpaq\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"jvThmVKql\",style:{\"--extracted-r6o4lv\":\"var(--token-8766da81-4b16-4dc5-9abd-8dbd5bdab57d, rgb(26, 26, 26))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1q1jixs\",\"data-framer-name\":\"icon wrap\",layoutDependency:layoutDependency,layoutId:\"OwxrPckez\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-edfs6z-container\",layoutDependency:layoutDependency,layoutId:\"kQFbyphpo-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-2bdd5e11-b174-44cf-bfab-8362e4501a8f, rgb(175, 127, 253))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowsDownUp\",id:\"kQFbyphpo\",layoutId:\"kQFbyphpo\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\"})})})})]}),isDisplayed3()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-6hbb9u\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"fLdf3yitx\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hqiu1z\",\"data-styles-preset\":\"ZpgQ2GL3x\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8766da81-4b16-4dc5-9abd-8dbd5bdab57d, rgb(26, 26, 26)))\"},children:\"SEO is the strategic engine driving online visibility. It involves optimising website elements to rank higher on search engine results. A well-implemented SEO strategy significantly boosts brand visibility, web traffic, and overall business success.\"})}),className:\"framer-hvwcka\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"pW001EsP3\",style:{\"--extracted-r6o4lv\":\"var(--token-8766da81-4b16-4dc5-9abd-8dbd5bdab57d, rgb(26, 26, 26))\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-y95lyl\",\"data-framer-name\":\"Product Design\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"D3i2oSj2p\",onTap:onTap4l7r49,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(241, 248, 233, 0)\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},variants:{aAHF3qeQ7:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(220, 231, 206, 0)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},bLSOidWWq:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(220, 231, 206, 0)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},E0oJP0Pfn:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(220, 231, 206, 0)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},hRehImQUY:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-60767071-3d14-465f-8086-a9886c16b953, rgb(220, 231, 206))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-18d05f5d-7431-4a35-972e-48b0214ffc92, rgb(241, 248, 233))\"},InGS1kAc2:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(220, 231, 206, 0)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},Ityopy6Tk:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(220, 231, 206, 0)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},KdBXJNIvz:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-60767071-3d14-465f-8086-a9886c16b953, rgb(220, 231, 206))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-18d05f5d-7431-4a35-972e-48b0214ffc92, rgb(241, 248, 233))\"},p_IISIAy7:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(220, 231, 206, 0)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},RMBpo3lLH:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-60767071-3d14-465f-8086-a9886c16b953, rgb(220, 231, 206))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-18d05f5d-7431-4a35-972e-48b0214ffc92, rgb(241, 248, 233))\"},VjA0uSCTS:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(220, 231, 206, 0)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},vN1D5NEz2:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(220, 231, 206, 0)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},W5mTSqiG0:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(220, 231, 206, 0)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},Y66b6sTFf:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(220, 231, 206, 0)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"}},...addPropertyOverrides({aAHF3qeQ7:{\"data-border\":true,onTap:onTapkkg4iu},bLSOidWWq:{\"data-border\":true,onTap:onTaprw59pm},E0oJP0Pfn:{\"data-border\":true,onTap:onTaprw59pm},hRehImQUY:{\"data-border\":true,onTap:onTapkkg4iu},InGS1kAc2:{\"data-border\":true,onTap:onTapkkg4iu},Ityopy6Tk:{\"data-border\":true,onTap:onTapkkg4iu},KdBXJNIvz:{\"data-border\":true,onTap:onTaprw59pm},p_IISIAy7:{\"data-border\":true,onTap:onTapkkg4iu},RMBpo3lLH:{\"data-border\":true},VjA0uSCTS:{\"data-border\":true,onTap:onTapkkg4iu},vN1D5NEz2:{\"data-border\":true,onTap:onTaprw59pm},W5mTSqiG0:{\"data-border\":true,onTap:onTaprw59pm},Y66b6sTFf:{\"data-border\":true,onTap:onTaprw59pm}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-91twsi\",\"data-framer-name\":\"Header\",layoutDependency:layoutDependency,layoutId:\"KjtONq4XO\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-6b8hzk\",\"data-framer-name\":\"Icon wrap\",layoutDependency:layoutDependency,layoutId:\"VUrq5sbb6\",style:{backgroundColor:\"var(--token-18d05f5d-7431-4a35-972e-48b0214ffc92, rgb(241, 248, 233))\",borderBottomLeftRadius:999,borderBottomRightRadius:999,borderTopLeftRadius:999,borderTopRightRadius:999},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hy8lx6-container\",layoutDependency:layoutDependency,layoutId:\"xlEsk8rlb-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-8766da81-4b16-4dc5-9abd-8dbd5bdab57d, rgb(26, 26, 26))\",height:\"100%\",iconSearch:\"pencil-circle\",iconSelection:\"FramerLogo\",id:\"xlEsk8rlb\",layoutId:\"xlEsk8rlb\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-p1x9f6\",\"data-styles-preset\":\"JxMOl0LTb\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8766da81-4b16-4dc5-9abd-8dbd5bdab57d, rgb(26, 26, 26)))\"},children:\"Product Design\"})}),className:\"framer-9nmu2o\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"GX3ZOfFv9\",style:{\"--extracted-r6o4lv\":\"var(--token-8766da81-4b16-4dc5-9abd-8dbd5bdab57d, rgb(26, 26, 26))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-jps0gp\",\"data-framer-name\":\"icon wrap\",layoutDependency:layoutDependency,layoutId:\"BuwAnD07s\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pvyqsz-container\",layoutDependency:layoutDependency,layoutId:\"spqHujSGk-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-2bdd5e11-b174-44cf-bfab-8362e4501a8f, rgb(175, 127, 253))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowsDownUp\",id:\"spqHujSGk\",layoutId:\"spqHujSGk\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\"})})})})]}),isDisplayed4()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-71zei7\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"fMbizVehv\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hqiu1z\",\"data-styles-preset\":\"ZpgQ2GL3x\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8766da81-4b16-4dc5-9abd-8dbd5bdab57d, rgb(26, 26, 26)))\"},children:\"Product design revolves around creating user-centered experiences that align with market needs. A well-executed product design process involves ideation, prototyping, and refinement, ensuring the end result meets user expectations.\"})}),className:\"framer-bdux9q\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"fzcAm5sO_\",style:{\"--extracted-r6o4lv\":\"var(--token-8766da81-4b16-4dc5-9abd-8dbd5bdab57d, rgb(26, 26, 26))\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qo65oj\",\"data-framer-name\":\"Marketing Assets\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"qLTYwpbzl\",onTap:onTapcovwx0,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(225, 245, 254, 0)\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},variants:{aAHF3qeQ7:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-117a663d-fd84-431e-9e30-8537eb1fe954, rgb(212, 226, 232))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-c7296255-ae5e-4cec-8116-ad2cebcb1ccb, rgb(225, 245, 254))\"},bLSOidWWq:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(212, 226, 232, 0)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},E0oJP0Pfn:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-117a663d-fd84-431e-9e30-8537eb1fe954, rgb(212, 226, 232))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-c7296255-ae5e-4cec-8116-ad2cebcb1ccb, rgb(225, 245, 254))\"},hRehImQUY:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(212, 226, 232, 0)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},InGS1kAc2:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(212, 226, 232, 0)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},Ityopy6Tk:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(212, 226, 232, 0)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},KdBXJNIvz:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(212, 226, 232, 0)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},nZEQciqMv:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-117a663d-fd84-431e-9e30-8537eb1fe954, rgb(212, 226, 232))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-c7296255-ae5e-4cec-8116-ad2cebcb1ccb, rgb(225, 245, 254))\"},p_IISIAy7:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(212, 226, 232, 0)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},VjA0uSCTS:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(212, 226, 232, 0)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},vN1D5NEz2:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(212, 226, 232, 0)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},W5mTSqiG0:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(212, 226, 232, 0)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},Y66b6sTFf:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(212, 226, 232, 0)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"}},...addPropertyOverrides({aAHF3qeQ7:{\"data-border\":true,onTap:onTap1g5padt},bLSOidWWq:{\"data-border\":true,onTap:onTap1wolr73},E0oJP0Pfn:{\"data-border\":true,onTap:onTap1wolr73},hRehImQUY:{\"data-border\":true,onTap:onTap1g5padt},InGS1kAc2:{\"data-border\":true,onTap:onTap1g5padt},Ityopy6Tk:{\"data-border\":true,onTap:onTap1g5padt},KdBXJNIvz:{\"data-border\":true,onTap:onTap1wolr73},nZEQciqMv:{\"data-border\":true},p_IISIAy7:{\"data-border\":true,onTap:onTap1g5padt},VjA0uSCTS:{\"data-border\":true,onTap:onTap1g5padt},vN1D5NEz2:{\"data-border\":true,onTap:onTap1wolr73},W5mTSqiG0:{\"data-border\":true,onTap:onTap1wolr73},Y66b6sTFf:{\"data-border\":true,onTap:onTap1wolr73}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1m2w8fv\",\"data-framer-name\":\"Header\",layoutDependency:layoutDependency,layoutId:\"Xxk08_xG1\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-myz0a3\",\"data-framer-name\":\"Icon wrap\",layoutDependency:layoutDependency,layoutId:\"gmsfpCPU2\",style:{backgroundColor:\"var(--token-c7296255-ae5e-4cec-8116-ad2cebcb1ccb, rgb(225, 245, 254))\",borderBottomLeftRadius:999,borderBottomRightRadius:999,borderTopLeftRadius:999,borderTopRightRadius:999},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-taqwpd-container\",layoutDependency:layoutDependency,layoutId:\"HOPjsrK37-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-8766da81-4b16-4dc5-9abd-8dbd5bdab57d, rgb(26, 26, 26))\",height:\"100%\",iconSearch:\"magic-wand\",iconSelection:\"FramerLogo\",id:\"HOPjsrK37\",layoutId:\"HOPjsrK37\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-p1x9f6\",\"data-styles-preset\":\"JxMOl0LTb\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8766da81-4b16-4dc5-9abd-8dbd5bdab57d, rgb(26, 26, 26)))\"},children:\"Marketing Assets\"})}),className:\"framer-1yu6m9\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"RIm8ZG_ty\",style:{\"--extracted-r6o4lv\":\"var(--token-8766da81-4b16-4dc5-9abd-8dbd5bdab57d, rgb(26, 26, 26))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-imbj8u\",\"data-framer-name\":\"icon wrap\",layoutDependency:layoutDependency,layoutId:\"gYx0qzfh3\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-187jyg4-container\",layoutDependency:layoutDependency,layoutId:\"L2VrP5yKg-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-2bdd5e11-b174-44cf-bfab-8362e4501a8f, rgb(175, 127, 253))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowsDownUp\",id:\"L2VrP5yKg\",layoutId:\"L2VrP5yKg\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\"})})})})]}),isDisplayed5()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-826v9w\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"FlVxNDslf\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-hqiu1z\",\"data-styles-preset\":\"ZpgQ2GL3x\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8766da81-4b16-4dc5-9abd-8dbd5bdab57d, rgb(26, 26, 26)))\"},children:\"Marketing assets encompass meticulously crafted visual elements and graphics designed to communicate brand messages effectively. A well-structured set of marketing assets ensures cohesive branding, resonates with the target audience, and drives engagement, online and offline.\"})}),className:\"framer-1fwanm1\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ea4xgmc_K\",style:{\"--extracted-r6o4lv\":\"var(--token-8766da81-4b16-4dc5-9abd-8dbd5bdab57d, rgb(26, 26, 26))\"},verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16xe459\",\"data-border\":true,\"data-framer-name\":\"Images\",layoutDependency:layoutDependency,layoutId:\"RKeifnQv5\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-6aac10a8-f6d9-4581-95dd-2f8033451189, rgb(208, 223, 230))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-bc47f47b-f750-4602-97a5-1c9767dc6b73, rgb(236, 240, 243))\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},variants:{BuY2Zn0qE:{\"--border-color\":\"var(--token-3b3aca29-0ca6-4441-939b-9355f6a6be12, rgb(229, 215, 231))\",backgroundColor:\"var(--token-71349634-3b39-4dae-a5cd-5adff4786465, rgb(243, 229, 245))\"},GNeDL7J7D:{\"--border-color\":\"var(--token-3afc2294-f420-4b1e-b882-ac52d56fcc1d, rgb(85, 95, 107))\",backgroundColor:\"var(--token-d0d6066a-7f17-4731-bd28-3a16d725ecac, rgb(229, 228, 226))\"},nvt5HbD31:{\"--border-color\":\"var(--token-e0c554e9-50e7-471e-b6bb-5654e9ea519a, rgb(255, 0, 0))\",backgroundColor:\"var(--token-d0d6066a-7f17-4731-bd28-3a16d725ecac, rgb(251, 233, 231))\"},nZEQciqMv:{\"--border-color\":\"var(--token-117a663d-fd84-431e-9e30-8537eb1fe954, rgb(212, 226, 232))\",backgroundColor:\"var(--token-c7296255-ae5e-4cec-8116-ad2cebcb1ccb, rgb(225, 245, 254))\"},RMBpo3lLH:{\"--border-color\":\"var(--token-60767071-3d14-465f-8086-a9886c16b953, rgb(220, 231, 206))\",backgroundColor:\"var(--token-18d05f5d-7431-4a35-972e-48b0214ffc92, rgb(241, 248, 233))\"}},children:[isDisplayed6()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:820,intrinsicWidth:1378,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+40),pixelHeight:820,pixelWidth:1378,sizes:\"1076px\",src:\"https://framerusercontent.com/images/4JyYw45mGtpF1jpRclSXNufF60.svg\",srcSet:\"https://framerusercontent.com/images/4JyYw45mGtpF1jpRclSXNufF60.svg?scale-down-to=512 512w,https://framerusercontent.com/images/4JyYw45mGtpF1jpRclSXNufF60.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/4JyYw45mGtpF1jpRclSXNufF60.svg 1378w\"},className:\"framer-1a2i1u3\",\"data-border\":true,\"data-framer-name\":\"Image 1\",layoutDependency:layoutDependency,layoutId:\"pd4fMoBq8\",style:{\"--border-bottom-width\":\"3px\",\"--border-color\":\"var(--token-e92b70b6-e191-4f52-8a7d-d83ab72bc7a4, rgb(120, 144, 156))\",\"--border-left-width\":\"3px\",\"--border-right-width\":\"3px\",\"--border-style\":\"solid\",\"--border-top-width\":\"3px\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},...addPropertyOverrides({p_IISIAy7:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:820,intrinsicWidth:1378,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+1316+40),pixelHeight:820,pixelWidth:1378,sizes:\"1076px\",src:\"https://framerusercontent.com/images/4JyYw45mGtpF1jpRclSXNufF60.svg\",srcSet:\"https://framerusercontent.com/images/4JyYw45mGtpF1jpRclSXNufF60.svg?scale-down-to=512 512w,https://framerusercontent.com/images/4JyYw45mGtpF1jpRclSXNufF60.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/4JyYw45mGtpF1jpRclSXNufF60.svg 1378w\"}},Y66b6sTFf:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:820,intrinsicWidth:1378,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+1316+40),pixelHeight:820,pixelWidth:1378,sizes:\"1076px\",src:\"https://framerusercontent.com/images/4JyYw45mGtpF1jpRclSXNufF60.svg\",srcSet:\"https://framerusercontent.com/images/4JyYw45mGtpF1jpRclSXNufF60.svg?scale-down-to=512 512w,https://framerusercontent.com/images/4JyYw45mGtpF1jpRclSXNufF60.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/4JyYw45mGtpF1jpRclSXNufF60.svg 1378w\"}}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:608,intrinsicWidth:1064,pixelHeight:608,pixelWidth:1064,src:\"https://framerusercontent.com/images/gF1lI8jvYiLxB7hj3Mm3LXdGOQ.png\",srcSet:\"https://framerusercontent.com/images/gF1lI8jvYiLxB7hj3Mm3LXdGOQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/gF1lI8jvYiLxB7hj3Mm3LXdGOQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gF1lI8jvYiLxB7hj3Mm3LXdGOQ.png 1064w\"},className:\"framer-19ncl2p\",\"data-border\":true,\"data-framer-name\":\"Image 2\",layoutDependency:layoutDependency,layoutId:\"IimB7c1CQ\",style:{\"--border-bottom-width\":\"3px\",\"--border-color\":\"var(--token-2bdd5e11-b174-44cf-bfab-8362e4501a8f, rgb(175, 127, 253))\",\"--border-left-width\":\"3px\",\"--border-right-width\":\"3px\",\"--border-style\":\"solid\",\"--border-top-width\":\"3px\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},...addPropertyOverrides({bLSOidWWq:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:608,intrinsicWidth:1064,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+1320+40),pixelHeight:608,pixelWidth:1064,sizes:\"836.5px\",src:\"https://framerusercontent.com/images/gF1lI8jvYiLxB7hj3Mm3LXdGOQ.png\",srcSet:\"https://framerusercontent.com/images/gF1lI8jvYiLxB7hj3Mm3LXdGOQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/gF1lI8jvYiLxB7hj3Mm3LXdGOQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gF1lI8jvYiLxB7hj3Mm3LXdGOQ.png 1064w\"}},BuY2Zn0qE:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:608,intrinsicWidth:1064,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+40),pixelHeight:608,pixelWidth:1064,sizes:\"836.5px\",src:\"https://framerusercontent.com/images/gF1lI8jvYiLxB7hj3Mm3LXdGOQ.png\",srcSet:\"https://framerusercontent.com/images/gF1lI8jvYiLxB7hj3Mm3LXdGOQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/gF1lI8jvYiLxB7hj3Mm3LXdGOQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gF1lI8jvYiLxB7hj3Mm3LXdGOQ.png 1064w\"}},VjA0uSCTS:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:608,intrinsicWidth:1064,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+1320+40),pixelHeight:608,pixelWidth:1064,sizes:\"836.5px\",src:\"https://framerusercontent.com/images/gF1lI8jvYiLxB7hj3Mm3LXdGOQ.png\",srcSet:\"https://framerusercontent.com/images/gF1lI8jvYiLxB7hj3Mm3LXdGOQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/gF1lI8jvYiLxB7hj3Mm3LXdGOQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/gF1lI8jvYiLxB7hj3Mm3LXdGOQ.png 1064w\"}}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1600,pixelHeight:1200,pixelWidth:1600,src:\"https://framerusercontent.com/images/p6ApJdeXqdQWjtgU2nFYYotApM.jpg\",srcSet:\"https://framerusercontent.com/images/p6ApJdeXqdQWjtgU2nFYYotApM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/p6ApJdeXqdQWjtgU2nFYYotApM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/p6ApJdeXqdQWjtgU2nFYYotApM.jpg 1600w\"},className:\"framer-y57r3g\",\"data-border\":true,\"data-framer-name\":\"Image 3\",layoutDependency:layoutDependency,layoutId:\"qnU7DPuH7\",style:{\"--border-bottom-width\":\"3px\",\"--border-color\":\"var(--token-3afc2294-f420-4b1e-b882-ac52d56fcc1d, rgb(85, 95, 107))\",\"--border-left-width\":\"3px\",\"--border-right-width\":\"3px\",\"--border-style\":\"solid\",\"--border-top-width\":\"3px\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},...addPropertyOverrides({GNeDL7J7D:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+40),pixelHeight:1200,pixelWidth:1600,sizes:\"819px\",src:\"https://framerusercontent.com/images/p6ApJdeXqdQWjtgU2nFYYotApM.jpg\",srcSet:\"https://framerusercontent.com/images/p6ApJdeXqdQWjtgU2nFYYotApM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/p6ApJdeXqdQWjtgU2nFYYotApM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/p6ApJdeXqdQWjtgU2nFYYotApM.jpg 1600w\"}},InGS1kAc2:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+1320+40),pixelHeight:1200,pixelWidth:1600,sizes:\"819px\",src:\"https://framerusercontent.com/images/p6ApJdeXqdQWjtgU2nFYYotApM.jpg\",srcSet:\"https://framerusercontent.com/images/p6ApJdeXqdQWjtgU2nFYYotApM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/p6ApJdeXqdQWjtgU2nFYYotApM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/p6ApJdeXqdQWjtgU2nFYYotApM.jpg 1600w\"}},vN1D5NEz2:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1600,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+1320+40),pixelHeight:1200,pixelWidth:1600,sizes:\"819px\",src:\"https://framerusercontent.com/images/p6ApJdeXqdQWjtgU2nFYYotApM.jpg\",srcSet:\"https://framerusercontent.com/images/p6ApJdeXqdQWjtgU2nFYYotApM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/p6ApJdeXqdQWjtgU2nFYYotApM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/p6ApJdeXqdQWjtgU2nFYYotApM.jpg 1600w\"}}},baseVariant,gestureVariant)}),isDisplayed3()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-9fxraz\",\"data-border\":true,\"data-framer-name\":\"Image 4\",layoutDependency:layoutDependency,layoutId:\"NMabJdOC6\",style:{\"--border-bottom-width\":\"3px\",\"--border-color\":\"var(--token-609067db-0a13-407f-aa77-f81ac724f85f, rgb(255, 0, 0))\",\"--border-left-width\":\"3px\",\"--border-right-width\":\"3px\",\"--border-style\":\"solid\",\"--border-top-width\":\"3px\",backgroundColor:\"var(--token-6b25373e-7d02-4ef6-81b5-76bf19c10375, rgb(250, 200, 200))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1274,intrinsicWidth:2300,pixelHeight:1274,pixelWidth:2300,sizes:\"708px\",src:\"https://framerusercontent.com/images/9u9y2c65YDJJa6HraS90TRPLq9Y.png\",srcSet:\"https://framerusercontent.com/images/9u9y2c65YDJJa6HraS90TRPLq9Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/9u9y2c65YDJJa6HraS90TRPLq9Y.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9u9y2c65YDJJa6HraS90TRPLq9Y.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/9u9y2c65YDJJa6HraS90TRPLq9Y.png 2300w\"},className:\"framer-f87iz3\",\"data-framer-name\":\"Vector\",layoutDependency:layoutDependency,layoutId:\"RMmYWv2eh\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},...addPropertyOverrides({Ityopy6Tk:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1274,intrinsicWidth:2300,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+1320+40+64),pixelHeight:1274,pixelWidth:2300,sizes:\"708px\",src:\"https://framerusercontent.com/images/9u9y2c65YDJJa6HraS90TRPLq9Y.png\",srcSet:\"https://framerusercontent.com/images/9u9y2c65YDJJa6HraS90TRPLq9Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/9u9y2c65YDJJa6HraS90TRPLq9Y.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9u9y2c65YDJJa6HraS90TRPLq9Y.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/9u9y2c65YDJJa6HraS90TRPLq9Y.png 2300w\"}},nvt5HbD31:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1274,intrinsicWidth:2300,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+40+64),pixelHeight:1274,pixelWidth:2300,sizes:\"708px\",src:\"https://framerusercontent.com/images/9u9y2c65YDJJa6HraS90TRPLq9Y.png\",srcSet:\"https://framerusercontent.com/images/9u9y2c65YDJJa6HraS90TRPLq9Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/9u9y2c65YDJJa6HraS90TRPLq9Y.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9u9y2c65YDJJa6HraS90TRPLq9Y.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/9u9y2c65YDJJa6HraS90TRPLq9Y.png 2300w\"}},W5mTSqiG0:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1274,intrinsicWidth:2300,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+1320+40+64),pixelHeight:1274,pixelWidth:2300,sizes:\"708px\",src:\"https://framerusercontent.com/images/9u9y2c65YDJJa6HraS90TRPLq9Y.png\",srcSet:\"https://framerusercontent.com/images/9u9y2c65YDJJa6HraS90TRPLq9Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/9u9y2c65YDJJa6HraS90TRPLq9Y.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9u9y2c65YDJJa6HraS90TRPLq9Y.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/9u9y2c65YDJJa6HraS90TRPLq9Y.png 2300w\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4tl7iw\",\"data-framer-name\":\"Book\",layoutDependency:layoutDependency,layoutId:\"pygvA1jXj\",style:{background:'linear-gradient(33deg, var(--token-18d7341e-5982-4486-8cca-3362b97acbe1, rgb(33, 33, 33)) /* {\"name\":\"Gray-2\"} */ -20.110192837465565%, var(--token-8766da81-4b16-4dc5-9abd-8dbd5bdab57d, rgb(26, 26, 26)) /* {\"name\":\"Gray-1\"} */ 100%)',borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,rotate:16},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0533709a-d502-416c-a1a6-c98435c23569, rgb(142, 142, 142)))\"},children:\"Platinum Designs\"})}),className:\"framer-e1xdxu\",\"data-framer-name\":\"Codify\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"vo1VhAoYj\",style:{\"--extracted-r6o4lv\":\"var(--token-0533709a-d502-416c-a1a6-c98435c23569, rgb(142, 142, 142))\"},transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"SEO  Strategies for\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"32px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-3afc2294-f420-4b1e-b882-ac52d56fcc1d, rgb(255, 170, 147)))\"},children:\"Black Friday 2023\"})]}),className:\"framer-1g9klfy\",\"data-framer-name\":\"SEO Strategies for Black Friday 2023\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"r_kNOUtnH\",style:{\"--extracted-2gxw0f\":\"var(--token-3afc2294-f420-4b1e-b882-ac52d56fcc1d, rgb(255, 170, 147))\",\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-pi3se5\",\"data-framer-name\":\"Vector\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"i0whfQylh\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 78 133\"><path d=\"M 66 121 L 66 12.5 L 32 12.5 L 14.5 44.5 L 12 74 L 37.5 116.5 Z\" fill=\"rgba(255, 170, 147, 0.5)\"></path></svg>',svgContentId:10566590576,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1y0bezb\",\"data-framer-name\":\"Vector\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"vF1NzhBR6\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 241 233\"><g><defs><linearGradient id=\"idss10418081360_1g464826446\" x1=\"1\" x2=\"0\" y1=\"0.9886594468142369\" y2=\"0.011340553185763103\"><stop offset=\"0\" stop-color=\"rgb(133, 85, 72)\" stop-opacity=\"1\"></stop><stop offset=\"1\" stop-color=\"var(--token-3afc2294-f420-4b1e-b882-ac52d56fcc1d, rgb(255, 170, 147)) /* {&quot;name&quot;:&quot;Dawn-pink-3&quot;} */\" stop-opacity=\"1\"></stop></linearGradient></defs><path d=\"M 129.566 142.822 C 117.237 152.339 101.78 158 85 158 C 44.683 158 12 125.317 12 85 C 12 44.683 44.683 12 85 12 C 125.317 12 158 44.683 158 85 C 158 99.874 153.551 113.709 145.912 125.247 L 228.257 203.29 L 211.747 220.71 Z M 85 36 C 57.938 36 36 57.938 36 85 C 36 112.062 57.938 134 85 134 C 112.062 134 134 112.062 134 85 C 134 57.938 112.062 36 85 36 Z\" fill=\"url(#idss10418081360_1g464826446)\"></path></g></svg>',svgContentId:10418081360,withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pp6lx6\",\"data-framer-name\":\"Gradient\",layoutDependency:layoutDependency,layoutId:\"tBaMWKcxA\",style:{backgroundColor:\"var(--token-3afc2294-f420-4b1e-b882-ac52d56fcc1d, rgb(255, 170, 147))\",borderBottomLeftRadius:77,borderBottomRightRadius:77,borderTopLeftRadius:77,borderTopRightRadius:77,filter:\"blur(32px)\",opacity:.27,WebkitFilter:\"blur(32px)\"}})]})})}),isDisplayed4()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-weo0ln\",\"data-border\":true,\"data-framer-name\":\"Image 5\",layoutDependency:layoutDependency,layoutId:\"tbeGbJ0Zl\",style:{\"--border-bottom-width\":\"3px\",\"--border-color\":\"var(--token-eb4934de-50b5-4255-ba9c-4eb5d728e69f, rgb(162, 231, 1))\",\"--border-left-width\":\"3px\",\"--border-right-width\":\"3px\",\"--border-style\":\"solid\",\"--border-top-width\":\"3px\",backgroundColor:\"var(--token-60767071-3d14-465f-8086-a9886c16b953, rgb(220, 231, 206))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:997,intrinsicWidth:1535,pixelHeight:997,pixelWidth:1535,sizes:\"640px\",src:\"https://framerusercontent.com/images/hGPo4GVgpqx39jGsVBCPWk3GwWQ.svg\",srcSet:\"https://framerusercontent.com/images/hGPo4GVgpqx39jGsVBCPWk3GwWQ.svg?scale-down-to=512 512w,https://framerusercontent.com/images/hGPo4GVgpqx39jGsVBCPWk3GwWQ.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/hGPo4GVgpqx39jGsVBCPWk3GwWQ.svg 1535w\"},className:\"framer-bnwh3l\",\"data-framer-name\":\"Vector\",layoutDependency:layoutDependency,layoutId:\"KLe2M6ipQ\",...addPropertyOverrides({hRehImQUY:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:997,intrinsicWidth:1535,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+1320+40+80),pixelHeight:997,pixelWidth:1535,sizes:\"640px\",src:\"https://framerusercontent.com/images/hGPo4GVgpqx39jGsVBCPWk3GwWQ.svg\",srcSet:\"https://framerusercontent.com/images/hGPo4GVgpqx39jGsVBCPWk3GwWQ.svg?scale-down-to=512 512w,https://framerusercontent.com/images/hGPo4GVgpqx39jGsVBCPWk3GwWQ.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/hGPo4GVgpqx39jGsVBCPWk3GwWQ.svg 1535w\"}},KdBXJNIvz:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:997,intrinsicWidth:1535,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+1320+40+80),pixelHeight:997,pixelWidth:1535,sizes:\"640px\",src:\"https://framerusercontent.com/images/hGPo4GVgpqx39jGsVBCPWk3GwWQ.svg\",srcSet:\"https://framerusercontent.com/images/hGPo4GVgpqx39jGsVBCPWk3GwWQ.svg?scale-down-to=512 512w,https://framerusercontent.com/images/hGPo4GVgpqx39jGsVBCPWk3GwWQ.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/hGPo4GVgpqx39jGsVBCPWk3GwWQ.svg 1535w\"}},RMBpo3lLH:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:997,intrinsicWidth:1535,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+40+80),pixelHeight:997,pixelWidth:1535,sizes:\"640px\",src:\"https://framerusercontent.com/images/hGPo4GVgpqx39jGsVBCPWk3GwWQ.svg\",srcSet:\"https://framerusercontent.com/images/hGPo4GVgpqx39jGsVBCPWk3GwWQ.svg?scale-down-to=512 512w,https://framerusercontent.com/images/hGPo4GVgpqx39jGsVBCPWk3GwWQ.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/hGPo4GVgpqx39jGsVBCPWk3GwWQ.svg 1535w\"}}},baseVariant,gestureVariant)})}),isDisplayed5()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1eaez6a\",\"data-border\":true,\"data-framer-name\":\"Image 6\",layoutDependency:layoutDependency,layoutId:\"HrtNrQxf4\",style:{\"--border-bottom-width\":\"3px\",\"--border-color\":\"var(--token-a2456d9d-c080-4ac3-90d9-ce8abd7bdfca, rgb(41, 182, 246))\",\"--border-left-width\":\"3px\",\"--border-right-width\":\"3px\",\"--border-style\":\"solid\",\"--border-top-width\":\"3px\",backgroundColor:\"var(--token-117a663d-fd84-431e-9e30-8537eb1fe954, rgb(212, 226, 232))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:[isDisplayed7()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:456,intrinsicWidth:493,pixelHeight:456,pixelWidth:493,src:\"https://framerusercontent.com/images/YJPGdGWqNoMzJtSPV58rfnjH2Fs.png\"},className:\"framer-17zxnz2\",\"data-framer-name\":\"Vector\",layoutDependency:layoutDependency,layoutId:\"q3bDhlGVZ\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ilc9v2-container\",layoutDependency:layoutDependency,layoutId:\"YuLgX4PdZ-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"YuLgX4PdZ\",isMixedBorderRadius:false,layoutId:\"YuLgX4PdZ\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/3kUmqSFOzBWET7veCarVSQPM.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-7dvep.framer-1c7xpfh, .framer-7dvep .framer-1c7xpfh { display: block; }\",\".framer-7dvep.framer-1tt3lfl { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1280px; }\",\".framer-7dvep .framer-1gc69bm { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-7dvep .framer-58h1pj { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 24px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-7dvep .framer-q83brm, .framer-7dvep .framer-17j9lqa, .framer-7dvep .framer-1o6yr9o, .framer-7dvep .framer-1s43otb, .framer-7dvep .framer-91twsi, .framer-7dvep .framer-1m2w8fv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7dvep .framer-1jz2d41, .framer-7dvep .framer-16lhvbr, .framer-7dvep .framer-kb3ssj, .framer-7dvep .framer-qw47tn, .framer-7dvep .framer-6lmc0c, .framer-7dvep .framer-1cpqq5, .framer-7dvep .framer-1jjflrh, .framer-7dvep .framer-1q1jixs, .framer-7dvep .framer-6b8hzk, .framer-7dvep .framer-jps0gp, .framer-7dvep .framer-myz0a3, .framer-7dvep .framer-imbj8u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 6px; position: relative; width: min-content; }\",\".framer-7dvep .framer-1efk40i-container, .framer-7dvep .framer-1amkpa1-container, .framer-7dvep .framer-1rdmlzu-container, .framer-7dvep .framer-1adskb0-container, .framer-7dvep .framer-bnmbyk-container, .framer-7dvep .framer-r5rtdm-container, .framer-7dvep .framer-1snfm0n-container, .framer-7dvep .framer-edfs6z-container, .framer-7dvep .framer-1hy8lx6-container, .framer-7dvep .framer-1pvyqsz-container, .framer-7dvep .framer-taqwpd-container, .framer-7dvep .framer-187jyg4-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-7dvep .framer-1q9n6tl, .framer-7dvep .framer-6y6bjy, .framer-7dvep .framer-z50huc, .framer-7dvep .framer-1hytgil, .framer-7dvep .framer-1ayj9t9, .framer-7dvep .framer-8po2gm, .framer-7dvep .framer-qstpaq, .framer-7dvep .framer-hvwcka, .framer-7dvep .framer-9nmu2o, .framer-7dvep .framer-bdux9q, .framer-7dvep .framer-1yu6m9, .framer-7dvep .framer-1fwanm1 { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-7dvep .framer-440xvs, .framer-7dvep .framer-wv7cka, .framer-7dvep .framer-1nxebh2, .framer-7dvep .framer-6hbb9u, .framer-7dvep .framer-71zei7, .framer-7dvep .framer-826v9w { 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: hidden; padding: 0px 0px 0px 52px; position: relative; width: 100%; }\",\".framer-7dvep .framer-jf53vl, .framer-7dvep .framer-2lojs1, .framer-7dvep .framer-hm6b7z, .framer-7dvep .framer-y95lyl, .framer-7dvep .framer-1qo65oj { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 24px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-7dvep .framer-16xe459 { flex: none; height: 560px; overflow: hidden; position: relative; width: 56%; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-7dvep .framer-1a2i1u3 { aspect-ratio: 1.6804878048780487 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 641px); left: 40px; overflow: visible; position: absolute; top: 40px; width: 1076px; }\",\".framer-7dvep .framer-19ncl2p { aspect-ratio: 1.75 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 478px); left: 40px; overflow: visible; position: absolute; top: 40px; width: 837px; }\",\".framer-7dvep .framer-y57r3g { aspect-ratio: 1.3333333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 614px); left: 40px; overflow: visible; position: absolute; top: 40px; width: 819px; }\",\".framer-7dvep .framer-9fxraz { flex: none; height: 614px; left: 40px; overflow: visible; position: absolute; top: 40px; width: 819px; }\",\".framer-7dvep .framer-f87iz3 { flex: none; height: 391px; left: 56px; overflow: visible; position: absolute; top: 64px; width: 708px; }\",\".framer-7dvep .framer-4tl7iw { bottom: -2px; flex: none; height: 363px; overflow: hidden; position: absolute; right: 15px; width: 268px; will-change: var(--framer-will-change-override, transform); }\",\".framer-7dvep .framer-e1xdxu { flex: none; height: auto; left: 50%; position: absolute; top: 20px; white-space: pre; width: auto; }\",\".framer-7dvep .framer-1g9klfy { flex: none; height: auto; left: 50%; position: absolute; top: 65px; white-space: pre; width: auto; }\",\".framer-7dvep .framer-pi3se5 { bottom: 63px; flex: none; height: 133px; left: 62px; position: absolute; width: 78px; }\",\".framer-7dvep .framer-1y0bezb { bottom: -21px; flex: none; height: 233px; position: absolute; right: -21px; width: 241px; }\",\".framer-7dvep .framer-1pp6lx6 { bottom: 85px; flex: none; height: 83px; left: calc(47.38805970149256% - 83px / 2); overflow: visible; position: absolute; width: 83px; }\",\".framer-7dvep .framer-weo0ln { flex: none; height: 644px; left: 40px; overflow: visible; position: absolute; top: 40px; width: 1076px; }\",\".framer-7dvep .framer-bnwh3l { aspect-ratio: 1.539618856569709 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 416px); left: 80px; overflow: visible; position: absolute; top: 80px; width: 640px; }\",\".framer-7dvep .framer-1eaez6a { flex: none; height: 644px; left: 40px; overflow: hidden; position: absolute; top: 40px; width: 1076px; will-change: var(--framer-will-change-override, transform); }\",\".framer-7dvep .framer-17zxnz2 { aspect-ratio: 1.081140350877193 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 456px); left: 80px; overflow: visible; position: absolute; top: 80px; width: 493px; }\",\".framer-7dvep .framer-ilc9v2-container { flex: none; height: 515px; left: 0px; position: absolute; top: 0px; width: 677px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-7dvep.framer-1tt3lfl, .framer-7dvep .framer-1gc69bm, .framer-7dvep .framer-58h1pj, .framer-7dvep .framer-q83brm, .framer-7dvep .framer-1jz2d41, .framer-7dvep .framer-16lhvbr, .framer-7dvep .framer-440xvs, .framer-7dvep .framer-jf53vl, .framer-7dvep .framer-17j9lqa, .framer-7dvep .framer-kb3ssj, .framer-7dvep .framer-qw47tn, .framer-7dvep .framer-wv7cka, .framer-7dvep .framer-2lojs1, .framer-7dvep .framer-1o6yr9o, .framer-7dvep .framer-6lmc0c, .framer-7dvep .framer-1cpqq5, .framer-7dvep .framer-1nxebh2, .framer-7dvep .framer-hm6b7z, .framer-7dvep .framer-1s43otb, .framer-7dvep .framer-1jjflrh, .framer-7dvep .framer-1q1jixs, .framer-7dvep .framer-6hbb9u, .framer-7dvep .framer-y95lyl, .framer-7dvep .framer-91twsi, .framer-7dvep .framer-6b8hzk, .framer-7dvep .framer-jps0gp, .framer-7dvep .framer-71zei7, .framer-7dvep .framer-1qo65oj, .framer-7dvep .framer-1m2w8fv, .framer-7dvep .framer-myz0a3, .framer-7dvep .framer-imbj8u, .framer-7dvep .framer-826v9w { gap: 0px; } .framer-7dvep.framer-1tt3lfl > * { margin: 0px; margin-left: calc(64px / 2); margin-right: calc(64px / 2); } .framer-7dvep.framer-1tt3lfl > :first-child, .framer-7dvep .framer-q83brm > :first-child, .framer-7dvep .framer-1jz2d41 > :first-child, .framer-7dvep .framer-16lhvbr > :first-child, .framer-7dvep .framer-440xvs > :first-child, .framer-7dvep .framer-17j9lqa > :first-child, .framer-7dvep .framer-kb3ssj > :first-child, .framer-7dvep .framer-qw47tn > :first-child, .framer-7dvep .framer-wv7cka > :first-child, .framer-7dvep .framer-1o6yr9o > :first-child, .framer-7dvep .framer-6lmc0c > :first-child, .framer-7dvep .framer-1cpqq5 > :first-child, .framer-7dvep .framer-1nxebh2 > :first-child, .framer-7dvep .framer-1s43otb > :first-child, .framer-7dvep .framer-1jjflrh > :first-child, .framer-7dvep .framer-1q1jixs > :first-child, .framer-7dvep .framer-6hbb9u > :first-child, .framer-7dvep .framer-91twsi > :first-child, .framer-7dvep .framer-6b8hzk > :first-child, .framer-7dvep .framer-jps0gp > :first-child, .framer-7dvep .framer-71zei7 > :first-child, .framer-7dvep .framer-1m2w8fv > :first-child, .framer-7dvep .framer-myz0a3 > :first-child, .framer-7dvep .framer-imbj8u > :first-child, .framer-7dvep .framer-826v9w > :first-child { margin-left: 0px; } .framer-7dvep.framer-1tt3lfl > :last-child, .framer-7dvep .framer-q83brm > :last-child, .framer-7dvep .framer-1jz2d41 > :last-child, .framer-7dvep .framer-16lhvbr > :last-child, .framer-7dvep .framer-440xvs > :last-child, .framer-7dvep .framer-17j9lqa > :last-child, .framer-7dvep .framer-kb3ssj > :last-child, .framer-7dvep .framer-qw47tn > :last-child, .framer-7dvep .framer-wv7cka > :last-child, .framer-7dvep .framer-1o6yr9o > :last-child, .framer-7dvep .framer-6lmc0c > :last-child, .framer-7dvep .framer-1cpqq5 > :last-child, .framer-7dvep .framer-1nxebh2 > :last-child, .framer-7dvep .framer-1s43otb > :last-child, .framer-7dvep .framer-1jjflrh > :last-child, .framer-7dvep .framer-1q1jixs > :last-child, .framer-7dvep .framer-6hbb9u > :last-child, .framer-7dvep .framer-91twsi > :last-child, .framer-7dvep .framer-6b8hzk > :last-child, .framer-7dvep .framer-jps0gp > :last-child, .framer-7dvep .framer-71zei7 > :last-child, .framer-7dvep .framer-1m2w8fv > :last-child, .framer-7dvep .framer-myz0a3 > :last-child, .framer-7dvep .framer-imbj8u > :last-child, .framer-7dvep .framer-826v9w > :last-child { margin-right: 0px; } .framer-7dvep .framer-1gc69bm > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-7dvep .framer-1gc69bm > :first-child, .framer-7dvep .framer-58h1pj > :first-child, .framer-7dvep .framer-jf53vl > :first-child, .framer-7dvep .framer-2lojs1 > :first-child, .framer-7dvep .framer-hm6b7z > :first-child, .framer-7dvep .framer-y95lyl > :first-child, .framer-7dvep .framer-1qo65oj > :first-child { margin-top: 0px; } .framer-7dvep .framer-1gc69bm > :last-child, .framer-7dvep .framer-58h1pj > :last-child, .framer-7dvep .framer-jf53vl > :last-child, .framer-7dvep .framer-2lojs1 > :last-child, .framer-7dvep .framer-hm6b7z > :last-child, .framer-7dvep .framer-y95lyl > :last-child, .framer-7dvep .framer-1qo65oj > :last-child { margin-bottom: 0px; } .framer-7dvep .framer-58h1pj > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-7dvep .framer-q83brm > *, .framer-7dvep .framer-17j9lqa > *, .framer-7dvep .framer-1o6yr9o > *, .framer-7dvep .framer-1s43otb > *, .framer-7dvep .framer-91twsi > *, .framer-7dvep .framer-1m2w8fv > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-7dvep .framer-1jz2d41 > *, .framer-7dvep .framer-16lhvbr > *, .framer-7dvep .framer-440xvs > *, .framer-7dvep .framer-kb3ssj > *, .framer-7dvep .framer-qw47tn > *, .framer-7dvep .framer-wv7cka > *, .framer-7dvep .framer-6lmc0c > *, .framer-7dvep .framer-1cpqq5 > *, .framer-7dvep .framer-1nxebh2 > *, .framer-7dvep .framer-1jjflrh > *, .framer-7dvep .framer-1q1jixs > *, .framer-7dvep .framer-6hbb9u > *, .framer-7dvep .framer-6b8hzk > *, .framer-7dvep .framer-jps0gp > *, .framer-7dvep .framer-71zei7 > *, .framer-7dvep .framer-myz0a3 > *, .framer-7dvep .framer-imbj8u > *, .framer-7dvep .framer-826v9w > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-7dvep .framer-jf53vl > *, .framer-7dvep .framer-2lojs1 > *, .framer-7dvep .framer-hm6b7z > *, .framer-7dvep .framer-y95lyl > *, .framer-7dvep .framer-1qo65oj > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",\".framer-7dvep.framer-v-43dnzh .framer-y57r3g, .framer-7dvep.framer-v-wzu7bq .framer-y57r3g { height: var(--framer-aspect-ratio-supported, 615px); }\",\".framer-7dvep.framer-v-1hj3pdu.framer-1tt3lfl, .framer-7dvep.framer-v-6f6rsq.framer-1tt3lfl, .framer-7dvep.framer-v-mqbvdt.framer-1tt3lfl, .framer-7dvep.framer-v-w0yf5r.framer-1tt3lfl, .framer-7dvep.framer-v-4ioo5c.framer-1tt3lfl, .framer-7dvep.framer-v-ezc30x.framer-1tt3lfl { flex-direction: column; gap: 32px; width: 704px; }\",\".framer-7dvep.framer-v-1hj3pdu .framer-1gc69bm, .framer-7dvep.framer-v-6f6rsq .framer-1gc69bm, .framer-7dvep.framer-v-mqbvdt .framer-1gc69bm, .framer-7dvep.framer-v-w0yf5r .framer-1gc69bm, .framer-7dvep.framer-v-4ioo5c .framer-1gc69bm, .framer-7dvep.framer-v-ezc30x .framer-1gc69bm, .framer-7dvep.framer-v-2uqj2j .framer-1gc69bm, .framer-7dvep.framer-v-1gqmch6 .framer-1gc69bm, .framer-7dvep.framer-v-wzu7bq .framer-1gc69bm, .framer-7dvep.framer-v-igkd95 .framer-1gc69bm, .framer-7dvep.framer-v-1x90ogu .framer-1gc69bm, .framer-7dvep.framer-v-ys68pz .framer-1gc69bm { flex: none; width: 100%; }\",\".framer-7dvep.framer-v-1hj3pdu .framer-16xe459, .framer-7dvep.framer-v-6f6rsq .framer-16xe459, .framer-7dvep.framer-v-mqbvdt .framer-16xe459, .framer-7dvep.framer-v-w0yf5r .framer-16xe459, .framer-7dvep.framer-v-4ioo5c .framer-16xe459, .framer-7dvep.framer-v-ezc30x .framer-16xe459 { width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-7dvep.framer-v-1hj3pdu.framer-1tt3lfl { gap: 0px; } .framer-7dvep.framer-v-1hj3pdu.framer-1tt3lfl > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-7dvep.framer-v-1hj3pdu.framer-1tt3lfl > :first-child { margin-top: 0px; } .framer-7dvep.framer-v-1hj3pdu.framer-1tt3lfl > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-7dvep.framer-v-6f6rsq.framer-1tt3lfl { gap: 0px; } .framer-7dvep.framer-v-6f6rsq.framer-1tt3lfl > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-7dvep.framer-v-6f6rsq.framer-1tt3lfl > :first-child { margin-top: 0px; } .framer-7dvep.framer-v-6f6rsq.framer-1tt3lfl > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-7dvep.framer-v-mqbvdt.framer-1tt3lfl { gap: 0px; } .framer-7dvep.framer-v-mqbvdt.framer-1tt3lfl > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-7dvep.framer-v-mqbvdt.framer-1tt3lfl > :first-child { margin-top: 0px; } .framer-7dvep.framer-v-mqbvdt.framer-1tt3lfl > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-7dvep.framer-v-w0yf5r.framer-1tt3lfl { gap: 0px; } .framer-7dvep.framer-v-w0yf5r.framer-1tt3lfl > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-7dvep.framer-v-w0yf5r.framer-1tt3lfl > :first-child { margin-top: 0px; } .framer-7dvep.framer-v-w0yf5r.framer-1tt3lfl > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-7dvep.framer-v-4ioo5c.framer-1tt3lfl { gap: 0px; } .framer-7dvep.framer-v-4ioo5c.framer-1tt3lfl > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-7dvep.framer-v-4ioo5c.framer-1tt3lfl > :first-child { margin-top: 0px; } .framer-7dvep.framer-v-4ioo5c.framer-1tt3lfl > :last-child { margin-bottom: 0px; } }\",\".framer-7dvep.framer-v-ezc30x .framer-ilc9v2-container { height: 513px; width: 660px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-7dvep.framer-v-ezc30x.framer-1tt3lfl { gap: 0px; } .framer-7dvep.framer-v-ezc30x.framer-1tt3lfl > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-7dvep.framer-v-ezc30x.framer-1tt3lfl > :first-child { margin-top: 0px; } .framer-7dvep.framer-v-ezc30x.framer-1tt3lfl > :last-child { margin-bottom: 0px; } }\",\".framer-7dvep.framer-v-2uqj2j.framer-1tt3lfl, .framer-7dvep.framer-v-1gqmch6.framer-1tt3lfl, .framer-7dvep.framer-v-wzu7bq.framer-1tt3lfl, .framer-7dvep.framer-v-igkd95.framer-1tt3lfl, .framer-7dvep.framer-v-1x90ogu.framer-1tt3lfl, .framer-7dvep.framer-v-ys68pz.framer-1tt3lfl { flex-direction: column; gap: 32px; width: 343px; }\",\".framer-7dvep.framer-v-2uqj2j .framer-16xe459, .framer-7dvep.framer-v-1gqmch6 .framer-16xe459, .framer-7dvep.framer-v-wzu7bq .framer-16xe459, .framer-7dvep.framer-v-igkd95 .framer-16xe459, .framer-7dvep.framer-v-1x90ogu .framer-16xe459, .framer-7dvep.framer-v-ys68pz .framer-16xe459 { height: 320px; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-7dvep.framer-v-2uqj2j.framer-1tt3lfl { gap: 0px; } .framer-7dvep.framer-v-2uqj2j.framer-1tt3lfl > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-7dvep.framer-v-2uqj2j.framer-1tt3lfl > :first-child { margin-top: 0px; } .framer-7dvep.framer-v-2uqj2j.framer-1tt3lfl > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-7dvep.framer-v-1gqmch6.framer-1tt3lfl { gap: 0px; } .framer-7dvep.framer-v-1gqmch6.framer-1tt3lfl > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-7dvep.framer-v-1gqmch6.framer-1tt3lfl > :first-child { margin-top: 0px; } .framer-7dvep.framer-v-1gqmch6.framer-1tt3lfl > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-7dvep.framer-v-wzu7bq.framer-1tt3lfl { gap: 0px; } .framer-7dvep.framer-v-wzu7bq.framer-1tt3lfl > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-7dvep.framer-v-wzu7bq.framer-1tt3lfl > :first-child { margin-top: 0px; } .framer-7dvep.framer-v-wzu7bq.framer-1tt3lfl > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-7dvep.framer-v-igkd95.framer-1tt3lfl { gap: 0px; } .framer-7dvep.framer-v-igkd95.framer-1tt3lfl > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-7dvep.framer-v-igkd95.framer-1tt3lfl > :first-child { margin-top: 0px; } .framer-7dvep.framer-v-igkd95.framer-1tt3lfl > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-7dvep.framer-v-1x90ogu.framer-1tt3lfl { gap: 0px; } .framer-7dvep.framer-v-1x90ogu.framer-1tt3lfl > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-7dvep.framer-v-1x90ogu.framer-1tt3lfl > :first-child { margin-top: 0px; } .framer-7dvep.framer-v-1x90ogu.framer-1tt3lfl > :last-child { margin-bottom: 0px; } }\",\".framer-7dvep.framer-v-ys68pz .framer-ilc9v2-container { height: 280px; width: 303px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-7dvep.framer-v-ys68pz.framer-1tt3lfl { gap: 0px; } .framer-7dvep.framer-v-ys68pz.framer-1tt3lfl > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-7dvep.framer-v-ys68pz.framer-1tt3lfl > :first-child { margin-top: 0px; } .framer-7dvep.framer-v-ys68pz.framer-1tt3lfl > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-7dvep[data-border=\"true\"]::after, .framer-7dvep [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 602.5\n * @framerIntrinsicWidth 1280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"BuY2Zn0qE\":{\"layout\":[\"fixed\",\"auto\"]},\"GNeDL7J7D\":{\"layout\":[\"fixed\",\"auto\"]},\"nvt5HbD31\":{\"layout\":[\"fixed\",\"auto\"]},\"RMBpo3lLH\":{\"layout\":[\"fixed\",\"auto\"]},\"nZEQciqMv\":{\"layout\":[\"fixed\",\"auto\"]},\"Y66b6sTFf\":{\"layout\":[\"fixed\",\"auto\"]},\"bLSOidWWq\":{\"layout\":[\"fixed\",\"auto\"]},\"vN1D5NEz2\":{\"layout\":[\"fixed\",\"auto\"]},\"W5mTSqiG0\":{\"layout\":[\"fixed\",\"auto\"]},\"KdBXJNIvz\":{\"layout\":[\"fixed\",\"auto\"]},\"E0oJP0Pfn\":{\"layout\":[\"fixed\",\"auto\"]},\"p_IISIAy7\":{\"layout\":[\"fixed\",\"auto\"]},\"VjA0uSCTS\":{\"layout\":[\"fixed\",\"auto\"]},\"InGS1kAc2\":{\"layout\":[\"fixed\",\"auto\"]},\"Ityopy6Tk\":{\"layout\":[\"fixed\",\"auto\"]},\"hRehImQUY\":{\"layout\":[\"fixed\",\"auto\"]},\"aAHF3qeQ7\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerkpSCxW3hB=withCSS(Component,css,\"framer-7dvep\");export default FramerkpSCxW3hB;FramerkpSCxW3hB.displayName=\"Sections/Feature section 1 (with tabs)\";FramerkpSCxW3hB.defaultProps={height:602.5,width:1280};addPropertyControls(FramerkpSCxW3hB,{variant:{options:[\"q4C8opX6M\",\"BuY2Zn0qE\",\"GNeDL7J7D\",\"nvt5HbD31\",\"RMBpo3lLH\",\"nZEQciqMv\",\"Y66b6sTFf\",\"bLSOidWWq\",\"vN1D5NEz2\",\"W5mTSqiG0\",\"KdBXJNIvz\",\"E0oJP0Pfn\",\"p_IISIAy7\",\"VjA0uSCTS\",\"InGS1kAc2\",\"Ityopy6Tk\",\"hRehImQUY\",\"aAHF3qeQ7\"],optionTitles:[\"Tab 1 (Desktop)\",\"Tab 2 (Desktop)\",\"Tab 3 (Desktop)\",\"Tab 4 (Desktop)\",\"Tab 5 (Desktop)\",\"Tab 6 (Desktop)\",\"Tab 1 (Tablet)\",\"Tab 2 (Tablet)\",\"Tab 3 (Tablet)\",\"Tab 4 (Tablet)\",\"Tab 5 (Tablet)\",\"Tab 6 (Tablet)\",\"Tab 1 (Mobile)\",\"Tab 2 (Mobile)\",\"Tab 3 (Mobile)\",\"Tab 4 (Mobile)\",\"Tab 5 (Mobile)\",\"Tab 6 (Mobile)\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerkpSCxW3hB,[{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\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...PhosphorFonts,...VideoFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerkpSCxW3hB\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1280\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"602.5\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"BuY2Zn0qE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GNeDL7J7D\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"nvt5HbD31\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"RMBpo3lLH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"nZEQciqMv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Y66b6sTFf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"bLSOidWWq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vN1D5NEz2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"W5mTSqiG0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KdBXJNIvz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"E0oJP0Pfn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"p_IISIAy7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"VjA0uSCTS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"InGS1kAc2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Ityopy6Tk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hRehImQUY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"aAHF3qeQ7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */ export function Video(props){const newProps=getProps(props);return /*#__PURE__*/ _jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const 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 isPlaying=videoRef.current.currentTime>0&&videoRef.current.onplaying&&!videoRef.current.paused&&!videoRef.current.ended&&videoRef.current.readyState>videoRef.current.HAVE_CURRENT_DATA;if(!isPlaying&&videoRef.current&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;videoRef.current.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();},[]);return{play,pause,setProgress};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}/**\n * The Video component has some effects that sync the video element with props\n * like `startTime`, `progress`, etc. React calls these effects whenever these\n * props change. However, it also calls them on the first mount, and this is\n * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n * the video was hydrated, the initial `useEffect` call will reset the video\n * state. To avoid this, we use this flag.\n */ let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/ memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing:playingProp,muted,playsinline,controls,progress,objectFit,backgroundColor,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,posterEnabled,startTime:startTimeProp,volume,loop}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges){isMountedAndReadyForProgressChanges=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===SrcType.Url)return srcUrl+fragment;if(srcType===SrcType.Video)return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{if(!videoRef.current)return;if(videoRef.current.currentTime<.3)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/ _jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>{return onSeeked===null||onSeeked===void 0?void 0:onSeeked(e);},onPause:e=>{return onPause===null||onPause===void 0?void 0:onPause(e);},onPlay:e=>{return onPlay===null||onPlay===void 0?void 0:onPlay(e);},onEnded:e=>{return onEnd===null||onEnd===void 0?void 0:onEnd(e);},autoPlay:autoplayBehavior===\"on-mount\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";Video.defaultProps={srcType:SrcType.Url,srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",srcFile:\"\",posterEnabled:false,controls:false,playing:true,loop:true,muted:true,playsinline:true,restartOnEnter:false,objectFit:ObjectFitType.Cover,backgroundColor:\"rgba(0,0,0,0)\",radius:0,volume:25,startTime:0};const groupsRegex=/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu;function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(groupsRegex)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[ObjectFitType.Cover,ObjectFitType.Fill,ObjectFitType.Contain,ObjectFitType.ScaleDown,ObjectFitType.None,];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[SrcType.Url,SrcType.Video]},srcUrl:{type:ControlType.String,title:\" \",placeholder:\"../example.mp4\",hidden(props){return props.srcType===SrcType.Video;},description:\"Hosted video file URL. For YouTube, use the YouTube component.\"},srcFile:{type:ControlType.File,title:\" \",allowedFileTypes:[\"mp4\"],hidden(props){return props.srcType===SrcType.Url;}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"112\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map"],
  "mappings": "wlBAAAA,KACsE,IAAIC,IAAe,SAASA,EAAc,CAACA,EAAc,KAAQ,OAAOA,EAAc,QAAW,UAAUA,EAAc,MAAS,QAAQA,EAAc,KAAQ,OAAOA,EAAc,UAAa,YAAa,GAAGA,KAAgBA,GAAc,CAAC,EAAE,EAAE,IAAIC,IAAS,SAASA,EAAQ,CAACA,EAAQ,MAAS,SAASA,EAAQ,IAAO,KAAM,GAAGA,KAAUA,GAAQ,CAAC,EAAE,EAAE,IAAMC,GAAa,uEACtb,SAASC,GAASC,EAAM,CAAC,GAAK,CAAC,MAAAC,EAAM,OAAAC,EAAO,QAAAC,EAAQ,SAAAC,EAAS,YAAAC,EAAY,WAAAC,EAAW,GAAAC,EAAG,SAAAC,EAAS,GAAGC,CAAI,EAAET,EAAM,OAAOS,CAAK,CAQjH,SAASC,GAAMV,EAAM,CAAC,IAAMW,EAASZ,GAASC,CAAK,EAAE,OAAoBY,EAAKC,GAAU,CAAC,GAAGF,CAAQ,CAAC,CAAE,CAAC,SAASG,GAAoBC,EAAS,CAAC,IAAMC,EAA4BC,GAA+B,EAAQC,EAAeC,EAAO,EAAK,EAAQC,EAAaD,EAAO,EAAK,EAAQE,EAAYC,EAAYC,GAAa,CAAC,GAAG,CAACR,EAAS,QAAQ,OAAO,IAAMS,GAAaD,IAAc,EAAE,KAAKA,GAAaR,EAAS,QAAQ,SAAeU,EAAa,KAAK,IAAIV,EAAS,QAAQ,YAAYS,CAAW,EAAE,GAAMT,EAAS,QAAQ,SAAS,GAAG,CAACU,IAAcV,EAAS,QAAQ,YAAYS,EAAa,EAAE,CAAC,CAAC,EAAQE,EAAKJ,EAAY,IAAI,CAAC,IAAMK,EAAMZ,EAAS,QAAQ,GAAG,CAACY,EAAM,OAAOA,EAAM,QAAQ,OACtjB,EAAhHA,EAAM,YAAY,GAAGA,EAAM,WAAW,CAACA,EAAM,QAAQ,CAACA,EAAM,OAAOA,EAAM,YAAYA,EAAM,oBAAiCA,GAAO,CAACT,EAAe,SAASF,IAA6BE,EAAe,QAAQ,GAAKE,EAAa,QAAQ,GAAKO,EAAM,KAAK,EAAE,MAAMC,GAAG,CAAC,CAAC,EACvR,QAAQ,IAAIV,EAAe,QAAQ,EAAK,EAAG,EAAE,CAAC,CAAC,EAAQW,EAAMP,EAAY,IAAI,CAAI,CAACP,EAAS,SAASG,EAAe,UAAeH,EAAS,QAAQ,MAAM,EAAEK,EAAa,QAAQ,GAAM,EAAE,CAAC,CAAC,EAAE,MAAM,CAAC,KAAAM,EAAK,MAAAG,EAAM,YAAAR,EAAY,UAAUD,CAAY,CAAE,CAAC,SAASU,GAAoB,CAAC,YAAAC,EAAY,MAAAC,EAAM,KAAAC,EAAK,YAAAC,EAAY,SAAAC,CAAQ,EAAE,CAAC,GAAK,CAACC,CAAkB,EAAEC,GAAS,IAAIN,CAAW,EAAO,CAACO,EAAsBC,CAAwB,EAAEF,GAAS,EAAK,EAAKN,IAAcK,GAAoB,CAACE,GAAuBC,EAAyB,EAAI,EAAG,IAAMC,EAE7hBJ,GAAoBJ,GAAOC,GAAMC,GAAa,CAACC,GAQ/C,CAACG,EAA0BG,EAAS,OAAGD,EAAaC,EAAS,cAAsBL,EAAmBK,EAAS,WAAgBA,EAAS,cAAqBA,CAAS,CAAC,IAAM5B,GAAuB6B,GAAK,SAAoB1C,EAAM,CAAC,GAAK,CACzO,QAAA2C,EAAQ,MAAM,OAAAC,EAAO,QAAAC,EAAQ,GAAG,cAAAC,EAAc,GAAM,SAAAX,EAAS,GAAM,QAAAY,EAAQ,GAAK,KAAAd,EAAK,GAAK,MAAAD,EAAM,GAAK,YAAAE,GAAY,GAAK,eAAAc,GAAe,GAAM,UAAAC,EAAU,QAAQ,gBAAAC,EAAgB,gBAAgB,OAAAC,GAAO,EAAE,OAAAC,EAAO,GAAG,UAAUC,EAAc,EAAE,OAAAC,EAAO,QAAQvB,EAAY,SAAAwB,EAAS,SAAAC,GAAS,QAAAC,EAAQ,OAAAC,EAAO,MAAAC,EAAM,QAAAC,EAAQ,aAAAC,EAAa,aAAAC,EAAa,YAAAC,GAAY,UAAAC,CAAS,EAAEhE,EAAYe,EAASI,EAAO,EAAQ8C,EAASC,GAAmB,EAAQC,EAAiBhD,EAAO,IAAI,EAAQiD,EAAgBjD,EAAO,IAAI,EAAQkD,EAAWC,GAAc,EAAQC,EAAaC,GAAUxE,CAAK,EAG3iByE,EAAiBJ,EAAW,cAAcvC,GAAoB,CAAC,YAAAC,EAAY,MAAAC,EAAM,KAAAC,EAAK,YAAAC,GAAY,SAAAC,CAAQ,CAAC,EAAQuC,EAAaL,EAAW,GAAKM,GAAU5D,CAAQ,EAAQ6D,EAAkBP,EAAW,GAAMM,GAAU5D,EAAS,CAAC,OAAO,sBAAsB,KAAK,EAAI,CAAC,EACxQ8D,EAAUxB,IAAgB,IAAI,KAAKA,EAAmB,CAAC,KAAA3B,EAAK,MAAAG,EAAM,YAAAR,GAAY,UAAAyD,EAAS,EAAEhE,GAAoBC,CAAQ,EAC3HgE,EAAU,IAAI,CAAIV,IAAqBtC,EAAYL,EAAK,EAAOG,EAAM,EAAE,EAAE,CAACE,CAAW,CAAC,EACtFgD,EAAU,IAAI,CAAIV,GAAqBI,IAAmB,gBAAwBC,EAAahD,EAAK,EAAOG,EAAM,EAAE,EAAE,CAAC4C,EAAiBC,CAAY,CAAC,EAO7I,IAAMM,GAAoC7D,EAAO,EAAK,EAE7D4D,EAAU,IAAI,CAAC,GAAG,CAACC,GAAoC,QAAQ,CAACA,GAAoC,QAAQ,GAAK,MAAO,CAAC,IAAMC,EAAiBC,GAAc3B,CAAQ,EAAEA,EAAS,IAAI,GAAGA,GAA4C,GAAG,IAAIlC,IAK1O4D,GAAoE,KAOpEJ,GAA+C,GAAG,GAAG,CAAE,EAAE,CAACA,EAAUhC,EAAQD,EAAOW,CAAQ,CAAC,EAC7FwB,EAAU,IAAI,CAAC,GAAIG,GAAc3B,CAAQ,EAAS,OAAOA,EAAS,GAAG,SAAS4B,GAAO9D,GAAY8D,CAAK,CAAC,CAAE,EAAE,CAAC5B,CAAQ,CAAC,EACrH6B,GAAW,IAAI,CAAIjB,EAAiB,UAAU,MAAepD,EAAS,UACnE,CAACqD,GAAiBnC,GAAM,CAACkC,EAAiB,UAAQzC,EAAK,CAAG,CAAC,EAC9D2D,GAAU,IAAI,CAAItE,EAAS,UAASqD,EAAgB,QAAQrD,EAAS,QAAQ,MAAMoD,EAAiB,QAAQpD,EAAS,QAAQ,OAAOc,EAAM,EAAG,CAAC,EAAE,IAAMyD,GAAIC,GAAQ,IAAI,CAAC,IAAIC,EAAS,GASpL,GAAG7C,IAAU,MAAM,OAAOC,EAAO4C,EAAS,GAAG7C,IAAU,SAAS,OAAOE,EAAQ2C,CAAS,EAAE,CAAC7C,EAAQE,EAAQD,EAAOiC,CAAS,CAAC,EAC5HE,EAAU,IAAI,CAAId,GAAUlD,EAAS,SAAS0D,IAAmB,YAAY,WAAW,IAAI/C,EAAK,EAAE,EAAE,CAAG,EAAE,CAAC,CAAC,EAC5GqD,EAAU,IAAI,CAAIhE,EAAS,SAAS,CAACiB,IAAMjB,EAAS,QAAQ,QAAQqC,GAAsC,GAAG,IAAI,EAAE,CAACA,CAAM,CAAC,EAC3H,IAAMqC,GAAY,IAAI,CAAC,IAAM9D,EAAMZ,EAAS,QAAYY,IAAgBA,EAAM,YAAY,IAAIkD,EAAU,GAAExD,IAAawD,GAA+C,GAAG,GAAG,GAC5KC,GAAU,SAASL,IAAmB,YAAYA,IAAmB,eAAeC,IAAahD,EAAK,EAAE,EAAE,OAAoBd,EAAK,QAAQ,CAAC,QAAAgD,EAAQ,aAAAC,EAAa,aAAAC,EAAa,YAAAC,GAAY,UAAAC,EAAU,IAAIsB,GAAI,KAAKrD,EAAK,IAAIlB,EAAS,SAASa,GAA6C4B,KAAS5B,CAAC,EAAE,QAAQA,GAA2C6B,IAAQ7B,CAAC,EAAE,OAAOA,GAAyC8B,IAAO9B,CAAC,EAAE,QAAQA,GAAuC+B,IAAM/B,CAAC,EAAE,SAASkD,GAAU,SAASL,IAAmB,YAAYA,IAAmB,eAAeC,EAAa,QAAQI,GAAU,QAAQ,OAAOT,GAAY,CAACf,EAAO,WAAWmB,IAAmB,YAAY,CAACG,EAAkB,OACjrB,WAAW,OAAO9B,GAAe,CAACD,GAASD,IAAS9C,GAAa,sEAAsEgD,GAAeQ,EAAOA,EAAO,OAAU,aAAamC,GAAY,SAAStD,EAAS,MAAMkC,EAAW,GAAKrC,EAAM,YAAYE,GAAY,MAAM,CAAC,OAAS0B,EAAQ,UAAU,OAAO,MAAM,OAAO,OAAO,OAAO,aAAAW,EAAa,QAAQ,QAAQ,UAAUtB,EAAU,gBAAgBC,EAAgB,eAAe,SAAS,CAAC,CAAC,CAAE,CAAC,EAAExC,GAAM,YAAY,QAAQ,SAASgF,GAAsBP,EAAM,CAAC,OAAOA,EAAM,OAAO,CAAC,EAAE,YAAY,EAAEA,EAAM,MAAM,CAAC,CAAE,CAAQ,SAASQ,GAAUR,EAAM,CAA0E,OAA5DA,EAAM,MAAM,0CAA0C,GAAG,CAAC,GAAgB,IAAIO,EAAqB,EAAE,KAAK,GAAG,CAAE,CAAC,IAAME,GAAiB,CAAC,QAAQ,OAAO,UAAU,aAAa,MAAM,EAAEC,GAAoBnF,GAAM,CAAC,QAAQ,CAAC,KAAKoF,EAAY,KAAK,wBAAwB,GAAK,MAAM,SAAS,QAAQ,CAAC,MAAM,QAAQ,CAAC,EAAE,OAAO,CAAC,KAAKA,EAAY,OAAO,MAAM,MAAM,aAAa,uEAAuE,OAAO9F,EAAM,CAAC,OAAOA,EAAM,UAAU,QAAS,CAAC,EAAE,QAAQ,CAAC,KAAK8F,EAAY,KAAK,MAAM,OAAO,iBAAiB,CAAC,MAAM,MAAM,EAAE,OAAO9F,EAAM,CAAC,OAAOA,EAAM,UAAU,KAAM,CAAC,EAAE,QAAQ,CAAC,KAAK8F,EAAY,QAAQ,MAAM,UAAU,aAAa,MAAM,cAAc,IAAI,EAAE,cAAc,CAAC,KAAKA,EAAY,QAAQ,MAAM,SAAS,aAAa,MAAM,cAAc,KAAK,YAAY,uHAAuH,EAAE,OAAO,CAAC,KAAKA,EAAY,MAAM,MAAM,IAAI,OAAO,CAAC,CAAC,cAAAhD,CAAa,IAAI,CAACA,CAAa,EAAE,gBAAgB,CAAC,KAAKgD,EAAY,MAAM,MAAM,aAAa,aAAa,eAAe,EAAE,GAAGC,GAAoB,UAAU,CAAC,MAAM,aAAa,KAAKD,EAAY,OAAO,IAAI,EAAE,IAAI,IAAI,KAAK,GAAG,KAAK,GAAG,EAAE,KAAK,CAAC,KAAKA,EAAY,QAAQ,MAAM,OAAO,aAAa,MAAM,cAAc,IAAI,EAAE,UAAU,CAAC,KAAKA,EAAY,KAAK,MAAM,MAAM,QAAQF,GAAiB,aAAaA,GAAiB,IAAID,EAAS,CAAC,EAM99D,SAAS,CAAC,KAAKG,EAAY,QAAQ,MAAM,WAAW,aAAa,OAAO,cAAc,OAAO,aAAa,EAAK,EAAE,MAAM,CAAC,KAAKA,EAAY,QAAQ,MAAM,QAAQ,aAAa,MAAM,cAAc,IAAI,EAAE,OAAO,CAAC,KAAKA,EAAY,OAAO,IAAI,IAAI,IAAI,EAAE,KAAK,IAAI,OAAO,CAAC,CAAC,MAAA9D,CAAK,IAAIA,EAAM,aAAa,EAAE,EAAE,MAAM,CAAC,KAAK8D,EAAY,YAAY,EAAE,SAAS,CAAC,KAAKA,EAAY,YAAY,EAAE,QAAQ,CAAC,KAAKA,EAAY,YAAY,EAAE,OAAO,CAAC,KAAKA,EAAY,YAAY,EAAE,GAAGE,EAAa,CAAC,EC1ErdC,KCAAC,KAA2Z,IAAIC,GAAe,SAASA,EAAc,CAACA,EAAc,KAAQ,OAAOA,EAAc,QAAW,UAAUA,EAAc,MAAS,QAAQA,EAAc,KAAQ,OAAOA,EAAc,UAAa,YAAa,GAAGA,IAAgBA,EAAc,CAAC,EAAE,EAAE,IAAIC,GAAS,SAASA,EAAQ,CAACA,EAAQ,MAAS,SAASA,EAAQ,IAAO,KAAM,GAAGA,IAAUA,EAAQ,CAAC,EAAE,EACtvB,SAASC,GAASC,EAAM,CAAC,GAAK,CAAC,MAAAC,EAAM,OAAAC,EAAO,QAAAC,EAAQ,SAAAC,EAAS,YAAAC,EAAY,WAAAC,EAAW,GAAAC,EAAG,SAAAC,EAAS,GAAGC,CAAI,EAAET,EAAM,OAAOS,CAAK,CAQhH,SAASC,GAAMV,EAAM,CAAC,IAAMW,EAASZ,GAASC,CAAK,EAAE,OAAqBY,EAAKC,GAAU,CAAC,GAAGF,CAAQ,CAAC,CAAE,CAAC,SAASG,GAAoBC,EAAS,CAAC,IAAMC,EAA4BC,GAA+B,EAAQC,EAAeC,EAAO,EAAK,EAAQC,EAAYC,EAAYC,GAAa,CAAC,GAAG,CAACP,EAAS,QAAQ,OAAO,IAAMQ,GAAaD,IAAc,EAAE,KAAKA,GAAaP,EAAS,QAAQ,SAAeS,EAAa,KAAK,IAAIT,EAAS,QAAQ,YAAYQ,CAAW,EAAE,GAAMR,EAAS,QAAQ,SAAS,GAAG,CAACS,IAAcT,EAAS,QAAQ,YAAYQ,EAAa,EAAE,CAAC,CAAC,EAAQE,EAAKJ,EAAY,IAAI,CAAkM,EAAjLN,EAAS,QAAQ,YAAY,GAAGA,EAAS,QAAQ,WAAW,CAACA,EAAS,QAAQ,QAAQ,CAACA,EAAS,QAAQ,OAAOA,EAAS,QAAQ,WAAWA,EAAS,QAAQ,oBAAiCA,EAAS,SAAS,CAACG,EAAe,SAASF,IAA6BE,EAAe,QAAQ,GAAKH,EAAS,QAAQ,KAAK,EAAE,MAAMW,GAAG,CAAC,CAAC,EAC/6B,QAAQ,IAAIR,EAAe,QAAQ,EAAK,EAAG,EAAE,CAAC,CAAC,EAAQS,EAAMN,EAAY,IAAI,CAAI,CAACN,EAAS,SAASG,EAAe,SAAeH,EAAS,QAAQ,MAAM,CAAE,EAAE,CAAC,CAAC,EAAE,MAAM,CAAC,KAAAU,EAAK,MAAAE,EAAM,YAAAP,CAAW,CAAE,CAAC,SAASQ,GAAoB,CAAC,YAAAC,EAAY,MAAAC,EAAM,KAAAC,EAAK,YAAAC,EAAY,SAAAC,CAAQ,EAAE,CAAC,GAAK,CAACC,CAAkB,EAAEC,GAAS,IAAIN,CAAW,EAAO,CAACO,EAAsBC,CAAwB,EAAEF,GAAS,EAAK,EAAKN,IAAcK,GAAoB,CAACE,GAAuBC,EAAyB,EAAI,EAAG,IAAMC,EAE3eJ,GAAoBJ,GAAOC,GAAMC,GAAa,CAACC,GAQ/C,CAACG,EAA0BG,EAAS,OAAGD,EAAaC,EAAS,cAAsBL,EAAmBK,EAAS,WAAgBA,EAAS,cAAqBA,CAAS,CAOlK,IAAIC,GAAoC,GAAY3B,GAAwB4B,GAAK,SAAoBzC,EAAM,CAAC,GAAK,CAAC,QAAA0C,EAAQ,QAAAC,EAAQ,OAAAC,EAAO,QAAQf,EAAY,MAAAC,EAAM,YAAAE,EAAY,SAAAC,EAAS,SAAAY,EAAS,UAAAC,GAAU,gBAAAC,GAAgB,SAAAC,EAAS,QAAAC,EAAQ,OAAAC,GAAO,MAAAC,EAAM,QAAAC,EAAQ,aAAAC,EAAa,aAAAC,EAAa,YAAAC,EAAY,UAAAC,GAAU,OAAAC,EAAO,cAAAC,EAAc,UAAUC,EAAc,OAAAC,EAAO,KAAA7B,CAAI,EAAE/B,EAAYe,EAASI,EAAO,EAAQ0C,GAASC,GAAmB,EAAQC,EAAiB5C,EAAO,IAAI,EAAQ6C,EAAgB7C,EAAO,IAAI,EAAQ8C,EAAWC,GAAc,EAAQC,EAAaC,GAAUpE,CAAK,EAGrjBqE,EAAiBJ,EAAW,cAAcrC,GAAoB,CAAC,YAAAC,EAAY,MAAAC,EAAM,KAAAC,EAAK,YAAAC,EAAY,SAAAC,CAAQ,CAAC,EAAQqC,EAAaL,EAAW,GAAKM,GAAUxD,CAAQ,EAClKyD,EAAUb,IAAgB,IAAI,KAAKA,EAAmB,CAAC,KAAAlC,EAAK,MAAAE,EAAM,YAAAP,CAAW,EAAEN,GAAoBC,CAAQ,EACjH0D,EAAU,IAAI,CAAIR,IAAqBpC,EAAYJ,EAAK,EAAOE,EAAM,EAAE,EAAE,CAACE,CAAW,CAAC,EACtF4C,EAAU,IAAI,CAAIR,GAAqBI,IAAmB,gBAAwBC,EAAa7C,EAAK,EAAOE,EAAM,EAAE,EAAE,CAAC0C,EAAiBC,CAAY,CAAC,EAEpJG,EAAU,IAAI,CAAC,GAAG,CAACjC,GAAoC,CAACA,GAAoC,GAAK,MAAO,CAAC,IAAMkC,EAAiBC,GAAc9B,CAAQ,EAAEA,EAAS,IAAI,GAAGA,GAA4C,GAAG,IAAIzB,GAK1NsD,GAAoE,KAOpEF,GAA+C,GAAG,GAAG,CAAE,EAAE,CAACA,EAAU7B,EAAQC,EAAOC,CAAQ,CAAC,EAC7F4B,EAAU,IAAI,CAAC,GAAIE,GAAc9B,CAAQ,EAAS,OAAOA,EAAS,GAAG,SAAS+B,GAAOxD,EAAYwD,CAAK,CAAC,CAAE,EAAE,CAAC/B,CAAQ,CAAC,EACrHgC,GAAW,IAAI,CAAId,EAAiB,UAAU,MAAehD,EAAS,UACnE,CAACiD,GAAiBjC,GAAM,CAACgC,EAAiB,UAAQtC,EAAK,CAAG,CAAC,EAC9DqD,GAAU,IAAI,CAAI/D,EAAS,UAASiD,EAAgB,QAAQjD,EAAS,QAAQ,MAAMgD,EAAiB,QAAQhD,EAAS,QAAQ,OAAOY,EAAM,EAAG,CAAC,EAAE,IAAMoD,EAAIC,GAAQ,IAAI,CAAC,IAAIC,EAAS,GASpL,GAAGvC,IAAU5C,EAAQ,IAAI,OAAO8C,EAAOqC,EAAS,GAAGvC,IAAU5C,EAAQ,MAAM,OAAO6C,EAAQsC,CAAS,EAAE,CAACvC,EAAQC,EAAQC,EAAO4B,CAAS,CAAC,EACvI,OAAAC,EAAU,IAAI,CAAIZ,IAAU9C,EAAS,SAASsD,IAAmB,YAAY,WAAW,IAAI5C,EAAK,EAAE,EAAE,CAAG,EAAE,CAAC,CAAC,EAC5GgD,EAAU,IAAI,CAAI1D,EAAS,SAAS,CAACe,IAAMf,EAAS,QAAQ,QAAQ6C,GAAsC,GAAG,IAAI,EAAE,CAACA,CAAM,CAAC,EAC8FhD,EAAK,QAAQ,CAAC,QAAAwC,EAAQ,aAAAC,EAAa,aAAAC,EAAa,YAAAC,EAAY,UAAAC,GAAU,IAAIuB,EAAI,KAAKhD,EAAK,IAAIhB,EAAS,SAASW,GAAqDsB,IAAStB,CAAC,EAAI,QAAQA,GAAmDuB,IAAQvB,CAAC,EAAI,OAAOA,GAAiDwB,KAAOxB,CAAC,EAAI,QAAQA,GAA+CyB,IAAMzB,CAAC,EAAI,SAAS2C,IAAmB,WAAW,OAAOX,EAAcD,EAAO,OAAU,aAAnpB,IAAI,CAAK1C,EAAS,UAAkBA,EAAS,QAAQ,YAAY,IAAGK,GAAaoD,GAA+C,GAAG,GAAG,EAAKH,IAAmB,YAAW5C,EAAK,EAAE,EAA4f,SAASQ,EAAS,MAAMgC,EAAW,GAAKnC,EAAM,YAAYE,EAAY,MAAM,CAAC,OAASoB,EAAQ,UAAU,OAAO,MAAM,OAAO,OAAO,OAAO,aAAAe,EAAa,QAAQ,QAAQ,UAAUrB,GAAU,gBAAgBC,GAAgB,eAAe,SAAS,CAAC,CAAC,CAAE,CAAC,EAAErC,GAAM,YAAY,QAAQA,GAAM,aAAa,CAAC,QAAQZ,EAAQ,IAAI,OAAO,4FAA4F,QAAQ,GAAG,cAAc,GAAM,SAAS,GAAM,QAAQ,GAAK,KAAK,GAAK,MAAM,GAAK,YAAY,GAAK,eAAe,GAAM,UAAUD,EAAc,MAAM,gBAAgB,gBAAgB,OAAO,EAAE,OAAO,GAAG,UAAU,CAAC,EAAE,IAAMqF,GAAY,2CAA2C,SAASC,GAAsBP,EAAM,CAAC,OAAOA,EAAM,OAAO,CAAC,EAAE,YAAY,EAAEA,EAAM,MAAM,CAAC,CAAE,CAAQ,SAASQ,GAAUR,EAAM,CAA2C,OAA7BA,EAAM,MAAMM,EAAW,GAAG,CAAC,GAAgB,IAAIC,EAAqB,EAAE,KAAK,GAAG,CAAE,CAAC,IAAME,GAAiB,CAACxF,EAAc,MAAMA,EAAc,KAAKA,EAAc,QAAQA,EAAc,UAAUA,EAAc,IAAK,EAAEyF,GAAoB5E,GAAM,CAAC,QAAQ,CAAC,KAAK6E,EAAY,KAAK,wBAAwB,GAAK,MAAM,SAAS,QAAQ,CAACzF,EAAQ,IAAIA,EAAQ,KAAK,CAAC,EAAE,OAAO,CAAC,KAAKyF,EAAY,OAAO,MAAM,IAAI,YAAY,iBAAiB,OAAOvF,EAAM,CAAC,OAAOA,EAAM,UAAUF,EAAQ,KAAM,EAAE,YAAY,gEAAgE,EAAE,QAAQ,CAAC,KAAKyF,EAAY,KAAK,MAAM,IAAI,iBAAiB,CAAC,KAAK,EAAE,OAAOvF,EAAM,CAAC,OAAOA,EAAM,UAAUF,EAAQ,GAAI,CAAC,EAAE,QAAQ,CAAC,KAAKyF,EAAY,QAAQ,MAAM,UAAU,aAAa,MAAM,cAAc,IAAI,EAAE,cAAc,CAAC,KAAKA,EAAY,QAAQ,MAAM,SAAS,aAAa,MAAM,cAAc,IAAI,EAAE,OAAO,CAAC,KAAKA,EAAY,MAAM,MAAM,IAAI,OAAO,CAAC,CAAC,cAAA7B,CAAa,IAAI,CAACA,CAAa,EAAE,gBAAgB,CAAC,KAAK6B,EAAY,MAAM,MAAM,YAAY,EAAE,GAAGC,GAAoB,UAAU,CAAC,MAAM,aAAa,KAAKD,EAAY,OAAO,IAAI,EAAE,IAAI,IAAI,KAAK,GAAG,KAAK,GAAG,EAAE,KAAK,CAAC,KAAKA,EAAY,QAAQ,MAAM,OAAO,aAAa,MAAM,cAAc,IAAI,EAAE,UAAU,CAAC,KAAKA,EAAY,KAAK,MAAM,MAAM,QAAQF,GAAiB,aAAaA,GAAiB,IAAID,EAAS,CAAC,EAM7wF,SAAS,CAAC,KAAKG,EAAY,QAAQ,MAAM,WAAW,aAAa,OAAO,cAAc,MAAM,EAAE,MAAM,CAAC,KAAKA,EAAY,QAAQ,MAAM,QAAQ,aAAa,MAAM,cAAc,IAAI,EAAE,OAAO,CAAC,KAAKA,EAAY,OAAO,IAAI,IAAI,IAAI,EAAE,KAAK,IAAI,OAAO,CAAC,CAAC,MAAAzD,CAAK,IAAIA,CAAK,EAAE,MAAM,CAAC,KAAKyD,EAAY,YAAY,EAAE,SAAS,CAAC,KAAKA,EAAY,YAAY,EAAE,QAAQ,CAAC,KAAKA,EAAY,YAAY,EAAE,OAAO,CAAC,KAAKA,EAAY,YAAY,EAAE,GAAGE,EAAa,CAAC,EDpE0b,IAAMC,GAAcC,GAASC,CAAQ,EAAQC,GAAWF,GAASG,EAAK,EAAQC,GAAW,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,EAAE,SAASC,EAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAmB,CAACC,EAAEC,IAAI,oBAAoBA,CAAC,GAASC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,EAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,GAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,GAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,kBAAkB,YAAY,iBAAiB,YAAY,iBAAiB,YAAY,kBAAkB,YAAY,iBAAiB,YAAY,iBAAiB,YAAY,kBAAkB,YAAY,iBAAiB,YAAY,iBAAiB,YAAY,kBAAkB,YAAY,iBAAiB,YAAY,iBAAiB,YAAY,kBAAkB,YAAY,iBAAiB,YAAY,iBAAiB,YAAY,kBAAkB,YAAY,iBAAiB,YAAY,iBAAiB,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAuCC,EAAK,MAAM,CAAC,GAAGF,EAAM,SAASE,GAAMD,EAAuCN,GAAwBK,EAAM,OAAO,KAAK,MAAMC,IAAyC,OAAOA,EAAuCD,EAAM,WAAW,MAAME,IAAO,OAAOA,EAAK,WAAW,CAAE,EAAQC,GAAuB,CAACH,EAAMzB,IAAeyB,EAAM,iBAAwBzB,EAAS,KAAK,GAAG,EAAEyB,EAAM,iBAAwBzB,EAAS,KAAK,GAAG,EAAU6B,GAA6BC,GAAW,SAASL,EAAMM,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAnC,EAAQ,GAAGoC,CAAS,EAAEjB,GAASI,CAAK,EAAO,CAAC,YAAAc,EAAY,WAAAC,GAAW,oBAAAC,GAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,GAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAA9C,CAAQ,EAAE+C,GAAgB,CAAC,WAAApD,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQmD,EAAiBpB,GAAuBH,EAAMzB,CAAQ,EAAO,CAAC,sBAAAiD,EAAsB,MAAAC,EAAK,EAAEC,GAAyBZ,CAAW,EAAQa,EAAYH,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQQ,EAAYL,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQS,EAAYN,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQU,EAAaP,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQW,EAAYR,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQY,EAAaT,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQa,GAAaV,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQc,EAAYX,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQe,EAAYZ,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQgB,EAAab,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQiB,EAAYd,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQkB,EAAYf,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQmB,EAAYhB,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQoB,EAAYjB,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQqB,EAAYlB,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQsB,EAAYnB,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQuB,EAAapB,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQwB,EAAarB,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQyB,EAAWC,EAAO,IAAI,EAAQC,EAAY,IAAQ,EAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,SAASlC,CAAW,EAAmCmC,GAAa,IAAQ,GAAC,YAAY,YAAY,WAAW,EAAE,SAASnC,CAAW,EAAmCoC,GAAa,IAAQ,GAAC,YAAY,YAAY,WAAW,EAAE,SAASpC,CAAW,EAAmCqC,GAAa,IAAQ,GAAC,YAAY,YAAY,WAAW,EAAE,SAASrC,CAAW,EAAmCsC,GAAa,IAAQ,GAAC,YAAY,YAAY,WAAW,EAAE,SAAStC,CAAW,EAAmCuC,GAAa,IAAQ,GAAC,YAAY,YAAY,WAAW,EAAE,SAASvC,CAAW,EAAmCwC,EAAa,IAAQ,EAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,SAASxC,CAAW,EAAmCyC,GAAa,IAAQ,EAAC,YAAY,YAAY,WAAW,EAAE,SAASzC,CAAW,EAAmC0C,GAAsBC,GAAM,EAAQC,GAAsB,CAAa/C,GAAuBA,EAAS,EAAQgD,EAAkBC,GAAqB,EAAE,OAAoBrE,EAAKsE,GAAY,CAAC,GAAGjD,GAA4C4C,GAAgB,SAAsBjE,EAAKC,GAAS,CAAC,QAAQjB,EAAS,QAAQ,GAAM,SAAsBgB,EAAKT,GAAW,CAAC,MAAMJ,GAAY,SAAsBoF,EAAMrE,EAAO,IAAI,CAAC,GAAGoB,EAAU,GAAGI,EAAgB,UAAU8C,GAAG5F,GAAkB,GAAGuF,GAAsB,iBAAiB/C,EAAUI,EAAU,EAAE,mBAAmB,kBAAkB,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIjB,GAA6BwC,EAAK,MAAM,CAAC,GAAGpC,CAAK,EAAE,GAAGrC,EAAqB,CAAC,UAAU,CAAC,mBAAmB,gBAAgB,EAAE,UAAU,CAAC,mBAAmB,gBAAgB,EAAE,UAAU,CAAC,mBAAmB,iBAAiB,EAAE,UAAU,CAAC,mBAAmB,gBAAgB,EAAE,UAAU,CAAC,mBAAmB,iBAAiB,EAAE,UAAU,CAAC,mBAAmB,gBAAgB,EAAE,UAAU,CAAC,mBAAmB,gBAAgB,EAAE,UAAU,CAAC,mBAAmB,gBAAgB,EAAE,UAAU,CAAC,mBAAmB,gBAAgB,EAAE,UAAU,CAAC,mBAAmB,iBAAiB,EAAE,UAAU,CAAC,mBAAmB,iBAAiB,EAAE,UAAU,CAAC,mBAAmB,gBAAgB,EAAE,UAAU,CAAC,mBAAmB,iBAAiB,EAAE,UAAU,CAAC,mBAAmB,gBAAgB,EAAE,UAAU,CAAC,mBAAmB,gBAAgB,EAAE,UAAU,CAAC,mBAAmB,gBAAgB,EAAE,UAAU,CAAC,mBAAmB,gBAAgB,CAAC,EAAEyC,EAAYI,CAAc,EAAE,SAAS,CAAc4C,EAAMrE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,iBAAiB8B,EAAiB,SAAS,YAAY,SAAS,CAAcuC,EAAMrE,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,qBAAqB,iBAAiB,GAAK,iBAAiB8B,EAAiB,SAAS,YAAY,MAAMI,EAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,wEAAwE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,wEAAwE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,iBAAiB,yBAAyB,gBAAgB,wBAAwB,EAAE,UAAU,CAAC,iBAAiB,yBAAyB,gBAAgB,wBAAwB,EAAE,UAAU,CAAC,iBAAiB,yBAAyB,gBAAgB,wBAAwB,EAAE,UAAU,CAAC,iBAAiB,yBAAyB,gBAAgB,wBAAwB,EAAE,UAAU,CAAC,iBAAiB,yBAAyB,gBAAgB,wBAAwB,EAAE,UAAU,CAAC,iBAAiB,yBAAyB,gBAAgB,wBAAwB,EAAE,UAAU,CAAC,iBAAiB,yBAAyB,gBAAgB,wBAAwB,EAAE,UAAU,CAAC,iBAAiB,yBAAyB,gBAAgB,wBAAwB,EAAE,UAAU,CAAC,iBAAiB,yBAAyB,gBAAgB,wBAAwB,EAAE,UAAU,CAAC,iBAAiB,yBAAyB,gBAAgB,wBAAwB,EAAE,UAAU,CAAC,iBAAiB,yBAAyB,gBAAgB,wBAAwB,EAAE,UAAU,CAAC,iBAAiB,yBAAyB,gBAAgB,wBAAwB,EAAE,UAAU,CAAC,iBAAiB,yBAAyB,gBAAgB,wBAAwB,EAAE,UAAU,CAAC,iBAAiB,yBAAyB,gBAAgB,wBAAwB,EAAE,UAAU,CAAC,iBAAiB,yBAAyB,gBAAgB,wBAAwB,CAAC,EAAE,GAAGtD,EAAqB,CAAC,UAAU,CAAC,MAAMyD,CAAW,EAAE,UAAU,CAAC,MAAMD,CAAW,EAAE,UAAU,CAAC,MAAMA,CAAW,EAAE,UAAU,CAAC,MAAMC,CAAW,EAAE,UAAU,CAAC,MAAMA,CAAW,EAAE,UAAU,CAAC,MAAMA,CAAW,EAAE,UAAU,CAAC,MAAMD,CAAW,EAAE,UAAU,CAAC,MAAMC,CAAW,EAAE,UAAU,CAAC,MAAMA,CAAW,EAAE,UAAU,CAAC,MAAMD,CAAW,EAAE,UAAU,CAAC,MAAMA,CAAW,EAAE,UAAU,CAAC,MAAMA,CAAW,CAAC,EAAEf,EAAYI,CAAc,EAAE,SAAS,CAAc4C,EAAMrE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiB8B,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wEAAwE,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,EAAE,SAAsBhC,EAAKyE,EAA0B,CAAC,SAAsBzE,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKxB,EAAS,CAAC,MAAM,qEAAqE,OAAO,OAAO,WAAW,SAAS,cAAc,aAAa,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewB,EAAK0E,EAAS,CAAC,sBAAsB,GAAK,SAAsB1E,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,6FAA6F,EAAE,SAAS,qBAAqB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,UAAU,MAAM,CAAC,OAAO,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,oEAAoE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAehC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB8B,EAAiB,SAAS,YAAY,SAAsBhC,EAAKyE,EAA0B,CAAC,SAAsBzE,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKxB,EAAS,CAAC,MAAM,wEAAwE,OAAO,OAAO,WAAW,QAAQ,cAAc,eAAe,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEiF,EAAY,GAAgBzD,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiB8B,EAAiB,SAAS,YAAY,SAAsBhC,EAAK0E,EAAS,CAAC,sBAAsB,GAAK,SAAsB1E,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,6FAA6F,EAAE,SAAS,sIAAsI,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,cAAc,MAAM,CAAC,OAAO,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,oEAAoE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuC,EAAMrE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,iBAAiB,iBAAiB,GAAK,iBAAiB8B,EAAiB,SAAS,YAAY,MAAMQ,EAAa,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,mBAAmB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,yBAAyB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,wBAAwB,MAAM,iBAAiB,yBAAyB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,KAAK,EAAE,UAAU,CAAC,wBAAwB,MAAM,iBAAiB,wEAAwE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,uEAAuE,EAAE,UAAU,CAAC,wBAAwB,MAAM,iBAAiB,wEAAwE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,uEAAuE,EAAE,UAAU,CAAC,wBAAwB,MAAM,iBAAiB,yBAAyB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,KAAK,EAAE,UAAU,CAAC,wBAAwB,MAAM,iBAAiB,yBAAyB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,KAAK,EAAE,UAAU,CAAC,wBAAwB,MAAM,iBAAiB,yBAAyB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,KAAK,EAAE,UAAU,CAAC,wBAAwB,MAAM,iBAAiB,yBAAyB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,KAAK,EAAE,UAAU,CAAC,wBAAwB,MAAM,iBAAiB,wEAAwE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,uEAAuE,EAAE,UAAU,CAAC,wBAAwB,MAAM,iBAAiB,yBAAyB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,KAAK,EAAE,UAAU,CAAC,wBAAwB,MAAM,iBAAiB,yBAAyB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,KAAK,EAAE,UAAU,CAAC,wBAAwB,MAAM,iBAAiB,yBAAyB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,KAAK,CAAC,EAAE,GAAG1D,EAAqB,CAAC,UAAU,CAAC,cAAc,GAAK,MAAM4D,CAAY,EAAE,UAAU,CAAC,cAAc,GAAK,MAAMD,CAAW,EAAE,UAAU,CAAC,cAAc,EAAI,EAAE,UAAU,CAAC,cAAc,GAAK,MAAMA,CAAW,EAAE,UAAU,CAAC,MAAMC,CAAY,EAAE,UAAU,CAAC,cAAc,GAAK,MAAMA,CAAY,EAAE,UAAU,CAAC,cAAc,GAAK,MAAMA,CAAY,EAAE,UAAU,CAAC,MAAMD,CAAW,EAAE,UAAU,CAAC,cAAc,GAAK,MAAMC,CAAY,EAAE,UAAU,CAAC,cAAc,GAAK,MAAMA,CAAY,EAAE,UAAU,CAAC,cAAc,GAAK,MAAMD,CAAW,EAAE,UAAU,CAAC,cAAc,GAAK,MAAMA,CAAW,EAAE,UAAU,CAAC,cAAc,GAAK,MAAMA,CAAW,CAAC,EAAElB,EAAYI,CAAc,EAAE,SAAS,CAAc4C,EAAMrE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiB8B,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wEAAwE,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,EAAE,SAAsBhC,EAAKyE,EAA0B,CAAC,SAAsBzE,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKxB,EAAS,CAAC,MAAM,qEAAqE,OAAO,OAAO,WAAW,cAAc,cAAc,SAAS,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAM,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewB,EAAK0E,EAAS,CAAC,sBAAsB,GAAK,SAAsB1E,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,6FAA6F,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,MAAM,CAAC,OAAO,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,oEAAoE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAehC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB8B,EAAiB,SAAS,YAAY,SAAsBhC,EAAKyE,EAA0B,CAAC,SAAsBzE,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKxB,EAAS,CAAC,MAAM,wEAAwE,OAAO,OAAO,WAAW,QAAQ,cAAc,eAAe,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEkF,GAAa,GAAgB1D,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiB8B,EAAiB,SAAS,YAAY,SAAsBhC,EAAK0E,EAAS,CAAC,sBAAsB,GAAK,SAAsB1E,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,6FAA6F,EAAE,SAAS,gQAA2P,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,cAAc,MAAM,CAAC,OAAO,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,oEAAoE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuC,EAAMrE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,gBAAgB,iBAAiB,GAAK,iBAAiB8B,EAAiB,SAAS,YAAY,MAAMW,GAAa,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,mBAAmB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,yBAAyB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,wBAAwB,MAAM,iBAAiB,yBAAyB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,KAAK,EAAE,UAAU,CAAC,wBAAwB,MAAM,iBAAiB,yBAAyB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,KAAK,EAAE,UAAU,CAAC,wBAAwB,MAAM,iBAAiB,sEAAsE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,uEAAuE,EAAE,UAAU,CAAC,wBAAwB,MAAM,iBAAiB,sEAAsE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,uEAAuE,EAAE,UAAU,CAAC,wBAAwB,MAAM,iBAAiB,yBAAyB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,KAAK,EAAE,UAAU,CAAC,gBAAgB,wBAAwB,EAAE,UAAU,CAAC,gBAAgB,wBAAwB,EAAE,UAAU,CAAC,wBAAwB,MAAM,iBAAiB,yBAAyB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,KAAK,EAAE,UAAU,CAAC,gBAAgB,wBAAwB,EAAE,UAAU,CAAC,wBAAwB,MAAM,iBAAiB,sEAAsE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,uEAAuE,EAAE,UAAU,CAAC,wBAAwB,MAAM,iBAAiB,yBAAyB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,KAAK,EAAE,UAAU,CAAC,wBAAwB,MAAM,iBAAiB,yBAAyB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,KAAK,CAAC,EAAE,GAAG7D,EAAqB,CAAC,UAAU,CAAC,cAAc,GAAK,MAAM+D,CAAW,EAAE,UAAU,CAAC,MAAMD,CAAW,EAAE,UAAU,CAAC,cAAc,GAAK,MAAMA,CAAW,EAAE,UAAU,CAAC,cAAc,EAAI,EAAE,UAAU,CAAC,MAAMC,CAAW,EAAE,UAAU,CAAC,cAAc,GAAK,MAAMA,CAAW,EAAE,UAAU,CAAC,cAAc,GAAK,MAAMA,CAAW,EAAE,UAAU,CAAC,MAAMD,CAAW,EAAE,UAAU,CAAC,cAAc,GAAK,MAAMC,CAAW,EAAE,UAAU,CAAC,MAAMA,CAAW,EAAE,UAAU,CAAC,cAAc,GAAK,MAAMD,CAAW,EAAE,UAAU,CAAC,cAAc,GAAK,MAAMA,CAAW,EAAE,UAAU,CAAC,cAAc,GAAK,MAAMA,CAAW,CAAC,EAAErB,EAAYI,CAAc,EAAE,SAAS,CAAc4C,EAAMrE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiB8B,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wEAAwE,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,EAAE,SAAsBhC,EAAKyE,EAA0B,CAAC,SAAsBzE,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKxB,EAAS,CAAC,MAAM,qEAAqE,OAAO,OAAO,WAAW,UAAU,cAAc,aAAa,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAM,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewB,EAAK0E,EAAS,CAAC,sBAAsB,GAAK,SAAsB1E,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,6FAA6F,EAAE,SAAS,eAAe,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,UAAU,MAAM,CAAC,OAAO,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,oEAAoE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAehC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB8B,EAAiB,SAAS,YAAY,SAAsBhC,EAAKyE,EAA0B,CAAC,SAAsBzE,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKxB,EAAS,CAAC,MAAM,wEAAwE,OAAO,OAAO,WAAW,QAAQ,cAAc,eAAe,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEmF,GAAa,GAAgB3D,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,iBAAiB8B,EAAiB,SAAS,YAAY,SAAsBhC,EAAK0E,EAAS,CAAC,sBAAsB,GAAK,SAAsB1E,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,6FAA6F,EAAE,SAAS,8MAA8M,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,cAAc,MAAM,CAAC,OAAO,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,oEAAoE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuC,EAAMrE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,iBAAiB,GAAK,iBAAiB8B,EAAiB,SAAS,YAAY,MAAMc,EAAa,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,mBAAmB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,yBAAyB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,wBAAwB,MAAM,iBAAiB,yBAAyB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,KAAK,EAAE,UAAU,CAAC,wBAAwB,MAAM,iBAAiB,yBAAyB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,KAAK,EAAE,UAAU,CAAC,wBAAwB,MAAM,iBAAiB,yBAAyB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,KAAK,EAAE,UAAU,CAAC,wBAAwB,MAAM,iBAAiB,yBAAyB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,KAAK,EAAE,UAAU,CAAC,wBAAwB,MAAM,iBAAiB,oEAAoE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,uEAAuE,EAAE,UAAU,CAAC,wBAAwB,MAAM,iBAAiB,oEAAoE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,uEAAuE,EAAE,UAAU,CAAC,wBAAwB,MAAM,iBAAiB,yBAAyB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,KAAK,EAAE,UAAU,CAAC,wBAAwB,MAAM,iBAAiB,yBAAyB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,KAAK,EAAE,UAAU,CAAC,wBAAwB,MAAM,iBAAiB,yBAAyB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,KAAK,EAAE,UAAU,CAAC,wBAAwB,MAAM,iBAAiB,oEAAoE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,uEAAuE,EAAE,UAAU,CAAC,wBAAwB,MAAM,iBAAiB,yBAAyB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,KAAK,CAAC,EAAE,GAAGhE,EAAqB,CAAC,UAAU,CAAC,cAAc,GAAK,MAAMkE,CAAW,EAAE,UAAU,CAAC,cAAc,GAAK,MAAMD,CAAW,EAAE,UAAU,CAAC,cAAc,GAAK,MAAMA,CAAW,EAAE,UAAU,CAAC,MAAMC,CAAW,EAAE,UAAU,CAAC,cAAc,GAAK,MAAMA,CAAW,EAAE,UAAU,CAAC,cAAc,GAAK,MAAMA,CAAW,EAAE,UAAU,CAAC,MAAMD,CAAW,EAAE,UAAU,CAAC,cAAc,EAAI,EAAE,UAAU,CAAC,cAAc,GAAK,MAAMC,CAAW,EAAE,UAAU,CAAC,cAAc,GAAK,MAAMA,CAAW,EAAE,UAAU,CAAC,cAAc,GAAK,MAAMD,CAAW,EAAE,UAAU,CAAC,cAAc,GAAK,MAAMA,CAAW,EAAE,UAAU,CAAC,cAAc,GAAK,MAAMA,CAAW,CAAC,EAAExB,EAAYI,CAAc,EAAE,SAAS,CAAc4C,EAAMrE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiB8B,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wEAAwE,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,EAAE,SAAsBhC,EAAKyE,EAA0B,CAAC,SAAsBzE,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKxB,EAAS,CAAC,MAAM,qEAAqE,OAAO,OAAO,WAAW,mBAAmB,cAAc,aAAa,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAM,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewB,EAAK0E,EAAS,CAAC,sBAAsB,GAAK,SAAsB1E,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,6FAA6F,EAAE,SAAS,KAAK,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,MAAM,CAAC,OAAO,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,oEAAoE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAehC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB8B,EAAiB,SAAS,YAAY,SAAsBhC,EAAKyE,EAA0B,CAAC,SAAsBzE,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKxB,EAAS,CAAC,MAAM,wEAAwE,OAAO,OAAO,WAAW,QAAQ,cAAc,eAAe,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEoF,GAAa,GAAgB5D,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiB8B,EAAiB,SAAS,YAAY,SAAsBhC,EAAK0E,EAAS,CAAC,sBAAsB,GAAK,SAAsB1E,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,6FAA6F,EAAE,SAAS,2PAA2P,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,cAAc,MAAM,CAAC,OAAO,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,oEAAoE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuC,EAAMrE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,iBAAiB,iBAAiB,GAAK,iBAAiB8B,EAAiB,SAAS,YAAY,MAAMiB,EAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,mBAAmB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,yBAAyB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,wBAAwB,MAAM,iBAAiB,yBAAyB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,KAAK,EAAE,UAAU,CAAC,wBAAwB,MAAM,iBAAiB,yBAAyB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,KAAK,EAAE,UAAU,CAAC,wBAAwB,MAAM,iBAAiB,yBAAyB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,KAAK,EAAE,UAAU,CAAC,wBAAwB,MAAM,iBAAiB,wEAAwE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,uEAAuE,EAAE,UAAU,CAAC,wBAAwB,MAAM,iBAAiB,yBAAyB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,KAAK,EAAE,UAAU,CAAC,wBAAwB,MAAM,iBAAiB,yBAAyB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,KAAK,EAAE,UAAU,CAAC,wBAAwB,MAAM,iBAAiB,wEAAwE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,uEAAuE,EAAE,UAAU,CAAC,wBAAwB,MAAM,iBAAiB,yBAAyB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,KAAK,EAAE,UAAU,CAAC,wBAAwB,MAAM,iBAAiB,wEAAwE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,uEAAuE,EAAE,UAAU,CAAC,wBAAwB,MAAM,iBAAiB,yBAAyB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,KAAK,EAAE,UAAU,CAAC,wBAAwB,MAAM,iBAAiB,yBAAyB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,KAAK,EAAE,UAAU,CAAC,wBAAwB,MAAM,iBAAiB,yBAAyB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,KAAK,EAAE,UAAU,CAAC,wBAAwB,MAAM,iBAAiB,yBAAyB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,KAAK,CAAC,EAAE,GAAGnE,EAAqB,CAAC,UAAU,CAAC,cAAc,GAAK,MAAMqE,CAAW,EAAE,UAAU,CAAC,cAAc,GAAK,MAAMD,CAAW,EAAE,UAAU,CAAC,cAAc,GAAK,MAAMA,CAAW,EAAE,UAAU,CAAC,cAAc,GAAK,MAAMC,CAAW,EAAE,UAAU,CAAC,cAAc,GAAK,MAAMA,CAAW,EAAE,UAAU,CAAC,cAAc,GAAK,MAAMA,CAAW,EAAE,UAAU,CAAC,cAAc,GAAK,MAAMD,CAAW,EAAE,UAAU,CAAC,cAAc,GAAK,MAAMC,CAAW,EAAE,UAAU,CAAC,cAAc,EAAI,EAAE,UAAU,CAAC,cAAc,GAAK,MAAMA,CAAW,EAAE,UAAU,CAAC,cAAc,GAAK,MAAMD,CAAW,EAAE,UAAU,CAAC,cAAc,GAAK,MAAMA,CAAW,EAAE,UAAU,CAAC,cAAc,GAAK,MAAMA,CAAW,CAAC,EAAE3B,EAAYI,CAAc,EAAE,SAAS,CAAc4C,EAAMrE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiB8B,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wEAAwE,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,EAAE,SAAsBhC,EAAKyE,EAA0B,CAAC,SAAsBzE,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKxB,EAAS,CAAC,MAAM,qEAAqE,OAAO,OAAO,WAAW,gBAAgB,cAAc,aAAa,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAM,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewB,EAAK0E,EAAS,CAAC,sBAAsB,GAAK,SAAsB1E,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,6FAA6F,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,MAAM,CAAC,OAAO,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,oEAAoE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAehC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB8B,EAAiB,SAAS,YAAY,SAAsBhC,EAAKyE,EAA0B,CAAC,SAAsBzE,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKxB,EAAS,CAAC,MAAM,wEAAwE,OAAO,OAAO,WAAW,QAAQ,cAAc,eAAe,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEqF,GAAa,GAAgB7D,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiB8B,EAAiB,SAAS,YAAY,SAAsBhC,EAAK0E,EAAS,CAAC,sBAAsB,GAAK,SAAsB1E,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,6FAA6F,EAAE,SAAS,yOAAyO,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,cAAc,MAAM,CAAC,OAAO,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,oEAAoE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuC,EAAMrE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,mBAAmB,iBAAiB,GAAK,iBAAiB8B,EAAiB,SAAS,YAAY,MAAMoB,EAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,mBAAmB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,yBAAyB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,wBAAwB,MAAM,iBAAiB,wEAAwE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,uEAAuE,EAAE,UAAU,CAAC,wBAAwB,MAAM,iBAAiB,yBAAyB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,KAAK,EAAE,UAAU,CAAC,wBAAwB,MAAM,iBAAiB,wEAAwE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,uEAAuE,EAAE,UAAU,CAAC,wBAAwB,MAAM,iBAAiB,yBAAyB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,KAAK,EAAE,UAAU,CAAC,wBAAwB,MAAM,iBAAiB,yBAAyB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,KAAK,EAAE,UAAU,CAAC,wBAAwB,MAAM,iBAAiB,yBAAyB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,KAAK,EAAE,UAAU,CAAC,wBAAwB,MAAM,iBAAiB,yBAAyB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,KAAK,EAAE,UAAU,CAAC,wBAAwB,MAAM,iBAAiB,wEAAwE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,uEAAuE,EAAE,UAAU,CAAC,wBAAwB,MAAM,iBAAiB,yBAAyB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,KAAK,EAAE,UAAU,CAAC,wBAAwB,MAAM,iBAAiB,yBAAyB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,KAAK,EAAE,UAAU,CAAC,wBAAwB,MAAM,iBAAiB,yBAAyB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,KAAK,EAAE,UAAU,CAAC,wBAAwB,MAAM,iBAAiB,yBAAyB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,KAAK,EAAE,UAAU,CAAC,wBAAwB,MAAM,iBAAiB,yBAAyB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,KAAK,CAAC,EAAE,GAAGtE,EAAqB,CAAC,UAAU,CAAC,cAAc,GAAK,MAAMwE,CAAY,EAAE,UAAU,CAAC,cAAc,GAAK,MAAMD,CAAY,EAAE,UAAU,CAAC,cAAc,GAAK,MAAMA,CAAY,EAAE,UAAU,CAAC,cAAc,GAAK,MAAMC,CAAY,EAAE,UAAU,CAAC,cAAc,GAAK,MAAMA,CAAY,EAAE,UAAU,CAAC,cAAc,GAAK,MAAMA,CAAY,EAAE,UAAU,CAAC,cAAc,GAAK,MAAMD,CAAY,EAAE,UAAU,CAAC,cAAc,EAAI,EAAE,UAAU,CAAC,cAAc,GAAK,MAAMC,CAAY,EAAE,UAAU,CAAC,cAAc,GAAK,MAAMA,CAAY,EAAE,UAAU,CAAC,cAAc,GAAK,MAAMD,CAAY,EAAE,UAAU,CAAC,cAAc,GAAK,MAAMA,CAAY,EAAE,UAAU,CAAC,cAAc,GAAK,MAAMA,CAAY,CAAC,EAAE9B,EAAYI,CAAc,EAAE,SAAS,CAAc4C,EAAMrE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiB8B,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wEAAwE,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,EAAE,SAAsBhC,EAAKyE,EAA0B,CAAC,SAAsBzE,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKxB,EAAS,CAAC,MAAM,qEAAqE,OAAO,OAAO,WAAW,aAAa,cAAc,aAAa,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAM,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewB,EAAK0E,EAAS,CAAC,sBAAsB,GAAK,SAAsB1E,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,6FAA6F,EAAE,SAAS,kBAAkB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,MAAM,CAAC,OAAO,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,oEAAoE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAehC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB8B,EAAiB,SAAS,YAAY,SAAsBhC,EAAKyE,EAA0B,CAAC,SAAsBzE,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKxB,EAAS,CAAC,MAAM,wEAAwE,OAAO,OAAO,WAAW,QAAQ,cAAc,eAAe,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEsF,GAAa,GAAgB9D,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiB8B,EAAiB,SAAS,YAAY,SAAsBhC,EAAK0E,EAAS,CAAC,sBAAsB,GAAK,SAAsB1E,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,6FAA6F,EAAE,SAAS,sRAAsR,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,cAAc,MAAM,CAAC,OAAO,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,oEAAoE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuC,EAAMrE,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,SAAS,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,wEAAwE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,wEAAwE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,iBAAiB,wEAAwE,gBAAgB,uEAAuE,EAAE,UAAU,CAAC,iBAAiB,sEAAsE,gBAAgB,uEAAuE,EAAE,UAAU,CAAC,iBAAiB,oEAAoE,gBAAgB,uEAAuE,EAAE,UAAU,CAAC,iBAAiB,wEAAwE,gBAAgB,uEAAuE,EAAE,UAAU,CAAC,iBAAiB,wEAAwE,gBAAgB,uEAAuE,CAAC,EAAE,SAAS,CAAC+B,EAAa,GAAgB/D,EAAK2E,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,KAAK,QAAQC,GAAwFR,GAAkB,GAAI,GAAG,EAAE,EAAE,EAAE,YAAY,IAAI,WAAW,KAAK,MAAM,SAAS,IAAI,sEAAsE,OAAO,mQAAmQ,EAAE,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,UAAU,iBAAiBpC,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,wEAAwE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,GAAGlD,EAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,KAAK,QAAQ8F,GAAwFR,GAAkB,GAAI,GAAG,EAAE,KAAK,EAAE,EAAE,YAAY,IAAI,WAAW,KAAK,MAAM,SAAS,IAAI,sEAAsE,OAAO,mQAAmQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,KAAK,QAAQQ,GAAwFR,GAAkB,GAAI,GAAG,EAAE,KAAK,EAAE,EAAE,YAAY,IAAI,WAAW,KAAK,MAAM,SAAS,IAAI,sEAAsE,OAAO,mQAAmQ,CAAC,CAAC,EAAE7C,EAAYI,CAAc,CAAC,CAAC,EAAE+B,GAAa,GAAgB1D,EAAK2E,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,KAAK,YAAY,IAAI,WAAW,KAAK,IAAI,sEAAsE,OAAO,mQAAmQ,EAAE,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,UAAU,iBAAiB3C,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,wEAAwE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,GAAGlD,EAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,KAAK,QAAQ8F,GAAwFR,GAAkB,GAAI,GAAG,EAAE,KAAK,EAAE,EAAE,YAAY,IAAI,WAAW,KAAK,MAAM,UAAU,IAAI,sEAAsE,OAAO,mQAAmQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,KAAK,QAAQQ,GAAwFR,GAAkB,GAAI,GAAG,EAAE,EAAE,EAAE,YAAY,IAAI,WAAW,KAAK,MAAM,UAAU,IAAI,sEAAsE,OAAO,mQAAmQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,KAAK,QAAQQ,GAAwFR,GAAkB,GAAI,GAAG,EAAE,KAAK,EAAE,EAAE,YAAY,IAAI,WAAW,KAAK,MAAM,UAAU,IAAI,sEAAsE,OAAO,mQAAmQ,CAAC,CAAC,EAAE7C,EAAYI,CAAc,CAAC,CAAC,EAAEgC,GAAa,GAAgB3D,EAAK2E,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,IAAI,sEAAsE,OAAO,mQAAmQ,EAAE,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,UAAU,iBAAiB3C,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,sEAAsE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,GAAGlD,EAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQ8F,GAAwFR,GAAkB,GAAI,GAAG,EAAE,EAAE,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,sEAAsE,OAAO,mQAAmQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQQ,GAAwFR,GAAkB,GAAI,GAAG,EAAE,KAAK,EAAE,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,sEAAsE,OAAO,mQAAmQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQQ,GAAwFR,GAAkB,GAAI,GAAG,EAAE,KAAK,EAAE,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,sEAAsE,OAAO,mQAAmQ,CAAC,CAAC,EAAE7C,EAAYI,CAAc,CAAC,CAAC,EAAEiC,GAAa,GAAgB5D,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,UAAU,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,oEAAoE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,wEAAwE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,SAAsBhC,EAAK2E,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiB3C,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,GAAGlD,EAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQ8F,GAAwFR,GAAkB,GAAI,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQQ,GAAwFR,GAAkB,GAAI,GAAG,EAAE,GAAG,EAAE,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQQ,GAAwFR,GAAkB,GAAI,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,CAAC,CAAC,EAAE7C,EAAYI,CAAc,EAAE,SAAsB4C,EAAMrE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,WAAW,2OAA2O,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,OAAO,EAAE,EAAE,SAAS,CAAchC,EAAK0E,EAAS,CAAC,sBAAsB,GAAK,SAAsB1E,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,qBAAqB,OAAO,sBAAsB,gGAAgG,EAAE,SAAS,kBAAkB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,SAAS,MAAM,CAAC,OAAO,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,uEAAuE,EAAE,kBAAkB5C,GAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeY,EAAK0E,EAAS,CAAC,sBAAsB,GAAK,SAAsBH,EAAYpE,EAAS,CAAC,SAAS,CAAcH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2DAA2D,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,qBAAqB,CAAC,EAAeF,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2DAA2D,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,gGAAgG,EAAE,SAAS,mBAAmB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,uCAAuC,MAAM,CAAC,cAAc,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,qBAAqB,oBAAoB,EAAE,kBAAkB5C,GAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeY,EAAK6E,GAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,OAAO,WAAW,iBAAiB7C,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,kOAAkO,aAAa,YAAY,mBAAmB,EAAI,CAAC,EAAehC,EAAK6E,GAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,OAAO,WAAW,iBAAiB7C,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,05BAA05B,aAAa,YAAY,mBAAmB,EAAI,CAAC,EAAehC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wEAAwE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,OAAO,aAAa,QAAQ,IAAI,aAAa,YAAY,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE6B,GAAa,GAAgB7D,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,UAAU,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,sEAAsE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,wEAAwE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,SAAsBhC,EAAK2E,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,KAAK,YAAY,IAAI,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiB3C,EAAiB,SAAS,YAAY,GAAGlD,EAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,KAAK,QAAQ8F,GAAwFR,GAAkB,GAAI,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,YAAY,IAAI,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,sQAAsQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,KAAK,QAAQQ,GAAwFR,GAAkB,GAAI,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,YAAY,IAAI,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,sQAAsQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,KAAK,QAAQQ,GAAwFR,GAAkB,GAAI,GAAG,EAAE,GAAG,EAAE,EAAE,YAAY,IAAI,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,sQAAsQ,CAAC,CAAC,EAAE7C,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,EAAEmC,GAAa,GAAgBS,EAAMrE,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,UAAU,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,uEAAuE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,wEAAwE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,SAAS,CAACgC,GAAa,GAAgBhE,EAAK2E,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,EAAE,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiB3C,EAAiB,SAAS,WAAW,CAAC,EAAehC,EAAKyE,EAA0B,CAAC,SAAsBzE,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKtB,GAAM,CAAC,gBAAgB,mBAAmB,aAAa,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,SAAS,GAAM,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,SAAS,YAAY,KAAK,GAAK,MAAM,GAAK,UAAU,QAAQ,QAAQ,GAAK,cAAc,GAAM,QAAQ,oEAAoE,QAAQ,SAAS,OAAO,4FAA4F,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,cAAc,EAAE,eAAe,EAAE,OAAO,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQoG,GAAI,CAAC,kFAAkF,kFAAkF,+QAA+Q,yRAAyR,yWAAyW,0aAA0a,imBAAimB,wiBAAwiB,ofAAof,mbAAmb,keAAke,yLAAyL,wNAAwN,yMAAyM,sNAAsN,0IAA0I,0IAA0I,yMAAyM,sIAAsI,uIAAuI,yHAAyH,8HAA8H,2KAA2K,2IAA2I,qNAAqN,uMAAuM,sNAAsN,+HAA+H,g8KAAg8K,sJAAsJ,2UAA2U,qlBAAqlB,6SAA6S,mbAAmb,+aAA+a,+aAA+a,+aAA+a,+aAA+a,0FAA0F,+aAA+a,4UAA4U,6TAA6T,+aAA+a,mbAAmb,+aAA+a,+aAA+a,mbAAmb,0FAA0F,+aAA+a,GAAeA,GAAI,GAAgBA,GAAI,+bAA+b,EAQ1i1FC,GAAgBC,GAAQnE,GAAUiE,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,yCAAyCA,GAAgB,aAAa,CAAC,OAAO,MAAM,MAAM,IAAI,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,kBAAkB,kBAAkB,kBAAkB,kBAAkB,kBAAkB,kBAAkB,iBAAiB,iBAAiB,iBAAiB,iBAAiB,iBAAiB,iBAAiB,iBAAiB,iBAAiB,iBAAiB,iBAAiB,iBAAiB,gBAAgB,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,uEAAuE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,uEAAuE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGzG,GAAc,GAAGG,GAAW,GAAG4G,GAAoCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC",
  "names": ["init_ssg_sandbox_shims", "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", "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", "init_ssg_sandbox_shims", "init_ssg_sandbox_shims", "ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "progress", "objectFit", "backgroundColor", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "posterEnabled", "startTimeProp", "volume", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "startTime", "ue", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "groupsRegex", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "PhosphorFonts", "getFonts", "Icon", "VideoFonts", "Video", "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", "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", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap9q76zt", "args", "onTaph3crp9", "onTaprjy6nr", "onTap17ajz15", "onTap2sb12o", "onTap1fbhwqu", "onTap11a75zf", "onTapsesq86", "onTap9sfe7v", "onTap1o7o0ai", "onTapnka977", "onTaplfdmpu", "onTap4l7r49", "onTaprw59pm", "onTapkkg4iu", "onTapcovwx0", "onTap1wolr73", "onTap1g5padt", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "RichText2", "Image2", "getLoadingLazyAtYPosition", "SVG", "css", "FramerkpSCxW3hB", "withCSS", "kpSCxW3hB_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
