{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/tbiAmyP8q4mMaXLQcmj3/Video.js", "ssg:https://framerusercontent.com/modules/nKW5hApA1BxmUjyZlKQx/F6nltSK9DeoNk3dJ6eQP/hTS3nR2qQ.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={}));// 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=\"https://framerusercontent.com/images/5ILRvlYXf72kHSVHqpa3snGzjU.jpg\",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:\"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(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>onEnd===null||onEnd===void 0?void 0:onEnd(e),autoPlay:autoplayBehavior===\"on-mount\",preload:isPlaying.current?\"auto\":autoplayBehavior!==\"on-mount\"&&posterEnabled&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";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\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"112\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (90a4657)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentPresetsProvider,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getPropertyControls,Image,ResolveLinks,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Video as Video1}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/90ICLbTHnkXgVfH1BSgW/Video.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/tbiAmyP8q4mMaXLQcmj3/Video.js\";import*as componentPresets from\"https://framerusercontent.com/modules/JZmmXN8EQjEcE0vbypk7/ZcI7UtMzbssmjJkrahwr/componentPresets.js\";import*as sharedStyle13 from\"https://framerusercontent.com/modules/lkJ2b40o5ZCMItdb4F1d/6f5E7kTpFuybvR0C0GQz/a83AmwzLc.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/780A34T4aZ7gd58H3WwT/AmoqRfvzExZw9DKi8gcU/ayjOaJA0_.js\";import*as sharedStyle11 from\"https://framerusercontent.com/modules/mZfiRS5nBDHyhcOCiNYV/x8wkfP7vLX3XK5dLoruo/bPNpTNTka.js\";import*as sharedStyle6 from\"https://framerusercontent.com/modules/nk30sjD2QV6nSGKPlYTM/eCQZAYyIHGInthkTGgUT/C__tk7pHO.js\";import*as sharedStyle8 from\"https://framerusercontent.com/modules/sa1QyVZ1odZUXJSM1IUv/wpbZ14JuD2oEfEySJEcH/c2905QNd5.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/ero7VBuNUc6FmRpC80da/0rptC2TBfjkTahgnGMjb/F_OI1LaNB.js\";import*as sharedStyle7 from\"https://framerusercontent.com/modules/iJG2TGlnkrKWAKFpW0Ai/lI1dGOhtaTBukPXkbt2z/HuwEVEtu3.js\";import*as sharedStyle9 from\"https://framerusercontent.com/modules/prQ1MT3s6evtpiWPFJUW/gOzHlbCeyagE23h31Mkq/iPTmfMRIC.js\";import*as sharedStyle4 from\"https://framerusercontent.com/modules/GsinyAknq4hxRBAcK7lF/ya082kzntHMSp4NNFyTq/IujqeUMAx.js\";import*as sharedStyle14 from\"https://framerusercontent.com/modules/zpY5l2NqZsbdwhkrsP3r/NYaZ5mnDzC28RteJB1Mh/lXoFPIz_R.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/8aNR9EyRuKKuZWlcv8mr/YOkmgheFnt2G7yObA4cZ/nofj51pHd.js\";import*as sharedStyle12 from\"https://framerusercontent.com/modules/QBtABXeRfPpTJHZ8TusI/FHckFpZXwzUgNwS70DMe/tFcOuf1uW.js\";import*as sharedStyle5 from\"https://framerusercontent.com/modules/zBXyJOFlxrM0VzSqk6R6/ijcpTy69iJFlGQ29jwd5/U5i8Jv1x2.js\";import*as sharedStyle10 from\"https://framerusercontent.com/modules/tBMQmQP77WHQNAfFaB7L/CrfEchTDhmt7IYLnBwwO/Wlc9RtC5w.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/ntKi9gIIitSOzr3uhOxh/KbVMA6wy3AzXd1e6rOow/wQx3o4_Sz.js\";import Button from\"https://framerusercontent.com/modules/phOt1ZivldpNUeWf9ORR/IET6LeSc4xrlHDl2lp2y/LC8Unv403.js\";import Spacer from\"https://framerusercontent.com/modules/d4mozfYt0YO0gZO9R6Nn/5p1QWbH73aNls758It4E/mx16WJopx.js\";import Badge from\"https://framerusercontent.com/modules/26NeztTac2PfTViE4oTX/6cBzNqggHrmV1C5haCrB/osNrKLUoW.js\";const BadgeFonts=getFonts(Badge);const SmartComponentScopedContainerWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(SmartComponentScopedContainer));const SpacerFonts=getFonts(Spacer);const RichTextWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(RichText));const ButtonFonts=getFonts(Button);const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const VideoFonts=getFonts(Video);const ImageWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(Image));const Video1Controls=getPropertyControls(Video1);const cycleOrder=[\"qNcZOletD\",\"N7nLXEAhf\",\"TJfI8c9I_\",\"bueTOk8ew\",\"N9awMc5v1\",\"qMc408eJA\",\"dN3MmuWvm\"];const serializationHash=\"framer-zes0e\";const variantClassNames={bueTOk8ew:\"framer-v-jevbyp\",dN3MmuWvm:\"framer-v-12s224e\",N7nLXEAhf:\"framer-v-hjxvan\",N9awMc5v1:\"framer-v-1t4f7vl\",qMc408eJA:\"framer-v-742wf1\",qNcZOletD:\"framer-v-1h095sc\",TJfI8c9I_:\"framer-v-5rjw19\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={damping:50,delay:.05,mass:1,stiffness:200,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20};const transition3={damping:50,delay:.1,mass:1,stiffness:200,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const transition4={damping:50,delay:.2,mass:1,stiffness:200,type:\"spring\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation4={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition5={damping:50,delay:.3,mass:1,stiffness:200,type:\"spring\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition6={damping:50,delay:.5,mass:1,stiffness:310,type:\"spring\"};const animation6={opacity:.25,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableEnumMap={\"Space Around\":\"space-around\",\"Space Between\":\"space-between\",\"Space Evenly\":\"space-evenly\",Center:\"center\",End:\"flex-end\",Start:\"flex-start\"};const humanReadableVariantMap={\"Variant 1\":\"qNcZOletD\",\"Variant 2\":\"N7nLXEAhf\",\"Variant 3\":\"TJfI8c9I_\",\"Variant 4\":\"bueTOk8ew\",\"Variant 5\":\"N9awMc5v1\",\"Variant 6\":\"qMc408eJA\",\"Variant 7\":\"dN3MmuWvm\"};const getProps=({badge,button2,content,content2,distribute,height,id,image,image2,subtext,titleOrange,titleWhite,video,videoFile,visible,visible2,visibleBothButtens,visibleBUTTON1,visibleLinkingText,visibleStandardSubtext,width,...props})=>{return{...props,aP7c5LPJA:visibleBUTTON1??props.aP7c5LPJA??true,C6O5YWYVt:titleWhite??props.C6O5YWYVt??\"Dutch IoT Solutions\",doUesItk0:content??props.doUesItk0??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{children:\"Is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.\"})}),DuouXl905:badge??props.DuouXl905??\"Lorem Ipsum\",dwbumLiZE:humanReadableEnumMap[distribute]??distribute??props.dwbumLiZE??\"flex-start\",FfkgZT_52:image??props.FfkgZT_52??true,HEq8_ZY61:visible2??props.HEq8_ZY61??true,nbKcYCisa:video??props.nbKcYCisa,nDixdAAOp:image2??props.nDixdAAOp??{pixelHeight:1338,pixelWidth:2048,src:\"https://framerusercontent.com/images/25svDe4UvLsFu1cHqmztAdFJQ.jpg\",srcSet:\"https://framerusercontent.com/images/25svDe4UvLsFu1cHqmztAdFJQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/25svDe4UvLsFu1cHqmztAdFJQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/25svDe4UvLsFu1cHqmztAdFJQ.jpg 2048w\"},rroikLTHN:visible??props.rroikLTHN??true,tDBtcpP4K:subtext??props.tDBtcpP4K??\"Is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.\",tJv8QzCzC:visibleStandardSubtext??props.tJv8QzCzC??true,UsKRgZ9xx:titleOrange??props.UsKRgZ9xx??\"Lorem ipsum, sion dilor.\",variant:humanReadableVariantMap[props.variant]??props.variant??\"qNcZOletD\",vGj6xqXsT:button2??props.vGj6xqXsT??\"Get in Touch\",Xw15JWH5r:content2??props.Xw15JWH5r??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{children:\"text\"})}),YoTuIAb9r:videoFile??props.YoTuIAb9r,yrnRzkmOa:visibleLinkingText??props.yrnRzkmOa,YsUYn0D_A:visibleBothButtens??props.YsUYn0D_A??true};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,C6O5YWYVt,UsKRgZ9xx,tDBtcpP4K,vGj6xqXsT,DuouXl905,nDixdAAOp,rroikLTHN,YsUYn0D_A,aP7c5LPJA,yrnRzkmOa,tJv8QzCzC,HEq8_ZY61,nbKcYCisa,FfkgZT_52,dwbumLiZE,YoTuIAb9r,doUesItk0,Xw15JWH5r,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"qNcZOletD\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className,sharedStyle11.className,sharedStyle12.className,sharedStyle13.className,sharedStyle14.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=value=>{if(baseVariant===\"N9awMc5v1\")return value;if([\"qMc408eJA\",\"dN3MmuWvm\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"dN3MmuWvm\")return false;return true;};const isDisplayed2=value=>{if(baseVariant===\"dN3MmuWvm\")return false;return value;};const isDisplayed3=value=>{if(baseVariant===\"N9awMc5v1\")return false;return value;};const isDisplayed4=()=>{if(baseVariant===\"dN3MmuWvm\")return true;return false;};const isDisplayed5=value=>{if([\"bueTOk8ew\",\"N9awMc5v1\",\"qMc408eJA\",\"dN3MmuWvm\"].includes(baseVariant))return false;return value;};const router=useRouter();const isDisplayed6=()=>{if(baseVariant===\"bueTOk8ew\")return false;return true;};const isDisplayed7=()=>{if([\"TJfI8c9I_\",\"N9awMc5v1\",\"dN3MmuWvm\"].includes(baseVariant))return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1h095sc\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"qNcZOletD\",ref:refBinding,style:{\"--w67w9e\":dwbumLiZE,...style},...addPropertyOverrides({bueTOk8ew:{\"data-framer-name\":\"Variant 4\"},dN3MmuWvm:{\"data-framer-name\":\"Variant 7\"},N7nLXEAhf:{\"data-framer-name\":\"Variant 2\"},N9awMc5v1:{\"data-framer-name\":\"Variant 5\"},qMc408eJA:{\"data-framer-name\":\"Variant 6\"},TJfI8c9I_:{\"data-framer-name\":\"Variant 3\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pugcr6\",\"data-framer-name\":\"Text Content\",layoutDependency:layoutDependency,layoutId:\"z0o6RIYp0\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lsh89a\",\"data-framer-name\":\"Heading and supporting text\",layoutDependency:layoutDependency,layoutId:\"HdwBSVtAN\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-cbbb7i\",\"data-framer-name\":\"Heading and badge\",layoutDependency:layoutDependency,layoutId:\"edNPVUUjF\",children:[isDisplayed(HEq8_ZY61)&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-1k8efza-container\",\"data-framer-appear-id\":\"1k8efza\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"fGZYoes9z-container\",nodeId:\"fGZYoes9z\",optimized:true,rendersWithMotion:true,scopeId:\"hTS3nR2qQ\",children:/*#__PURE__*/_jsx(Badge,{FiBTAIOKG:true,height:\"100%\",id:\"fGZYoes9z\",layoutId:\"fGZYoes9z\",M1u3rMt5M:DuouXl905,tMEHbHlX0:\"var(--token-f49f2177-1b79-4781-8112-19ce660122c6, rgb(223, 255, 28))\",width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:4,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1fi3wrv-container\",layoutDependency:layoutDependency,layoutId:\"iIoN13vNA-container\",nodeId:\"iIoN13vNA\",rendersWithMotion:true,scopeId:\"hTS3nR2qQ\",children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"iIoN13vNA\",layoutId:\"iIoN13vNA\",variant:\"AkaqepPzp\",width:\"100%\",...addPropertyOverrides({N7nLXEAhf:{variant:\"dMTJi8gfR\"},TJfI8c9I_:{variant:\"dMTJi8gfR\"}},baseVariant,gestureVariant)})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:4,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1a0z063-container\",layoutDependency:layoutDependency,layoutId:\"PPCuIQUqQ-container\",nodeId:\"PPCuIQUqQ\",rendersWithMotion:true,scopeId:\"hTS3nR2qQ\",children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"PPCuIQUqQ\",layoutId:\"PPCuIQUqQ\",variant:\"hEKMuqvmS\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation2,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-9vo6wq\",\"data-styles-preset\":\"ayjOaJA0_\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-20832d6c-6be5-455d-99ea-51eb6fbc6e93, rgb(255, 255, 255)))\"},children:\"Dutch IoT Solutions\"})}),className:\"framer-12o4vlk\",\"data-framer-appear-id\":\"12o4vlk\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],initial:animation1,layoutDependency:layoutDependency,layoutId:\"eU7s_y9U0\",optimized:true,style:{\"--extracted-gdpscs\":\"var(--token-20832d6c-6be5-455d-99ea-51eb6fbc6e93, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"60px\"},text:C6O5YWYVt,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({dN3MmuWvm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-9vo6wq\",\"data-styles-preset\":\"ayjOaJA0_\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-20832d6c-6be5-455d-99ea-51eb6fbc6e93, rgb(255, 255, 255)))\"},children:\"Dutch IoT Solutions\"})})},N7nLXEAhf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-9vo6wq\",\"data-styles-preset\":\"ayjOaJA0_\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-20832d6c-6be5-455d-99ea-51eb6fbc6e93, rgb(255, 255, 255)))\"},children:\"Dutch IoT Solutions\"})})},N9awMc5v1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-9vo6wq\",\"data-styles-preset\":\"ayjOaJA0_\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-20832d6c-6be5-455d-99ea-51eb6fbc6e93, rgb(255, 255, 255)))\"},children:\"Dutch IoT Solutions\"})})},qMc408eJA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-6sw143\",\"data-styles-preset\":\"F_OI1LaNB\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-20832d6c-6be5-455d-99ea-51eb6fbc6e93, rgb(255, 255, 255)))\"},children:\"Dutch IoT Solutions\"})})},TJfI8c9I_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-6sw143\",\"data-styles-preset\":\"F_OI1LaNB\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-20832d6c-6be5-455d-99ea-51eb6fbc6e93, rgb(255, 255, 255)))\"},children:\"Dutch IoT Solutions\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation2,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-9vo6wq\",\"data-styles-preset\":\"ayjOaJA0_\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-f49f2177-1b79-4781-8112-19ce660122c6, rgb(255, 132, 0)))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Lorem ipsum, sion dilor.\"})})}),className:\"framer-i4u24y\",\"data-framer-appear-id\":\"i4u24y\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\",\"Inter-Bold\"],initial:animation1,layoutDependency:layoutDependency,layoutId:\"E40EMaWaz\",optimized:true,style:{\"--extracted-gdpscs\":\"var(--token-f49f2177-1b79-4781-8112-19ce660122c6, rgb(255, 132, 0))\",\"--framer-paragraph-spacing\":\"60px\"},text:UsKRgZ9xx,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({dN3MmuWvm:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-9vo6wq\",\"data-styles-preset\":\"ayjOaJA0_\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-f49f2177-1b79-4781-8112-19ce660122c6, rgb(255, 132, 0)))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Lorem ipsum, sion dilor.\"})})})},N7nLXEAhf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-9vo6wq\",\"data-styles-preset\":\"ayjOaJA0_\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-f49f2177-1b79-4781-8112-19ce660122c6, rgb(255, 132, 0)))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Lorem ipsum, sion dilor.\"})})})},N9awMc5v1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-9vo6wq\",\"data-styles-preset\":\"ayjOaJA0_\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-f49f2177-1b79-4781-8112-19ce660122c6, rgb(255, 132, 0)))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Lorem ipsum, sion dilor.\"})})})},qMc408eJA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-1t5xxne\",\"data-styles-preset\":\"wQx3o4_Sz\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-f49f2177-1b79-4781-8112-19ce660122c6, rgb(255, 132, 0)))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Lorem ipsum, sion dilor.\"})})})},TJfI8c9I_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-1t5xxne\",\"data-styles-preset\":\"wQx3o4_Sz\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-f49f2177-1b79-4781-8112-19ce660122c6, rgb(255, 132, 0)))\"},children:/*#__PURE__*/_jsx(motion.strong,{children:\"Lorem ipsum, sion dilor.\"})})})}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:4,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1wrlg0c-container\",layoutDependency:layoutDependency,layoutId:\"M4t9odbsR-container\",nodeId:\"M4t9odbsR\",rendersWithMotion:true,scopeId:\"hTS3nR2qQ\",children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"M4t9odbsR\",layoutId:\"M4t9odbsR\",variant:\"AkaqepPzp\",width:\"100%\",...addPropertyOverrides({qMc408eJA:{variant:\"Y6KlO_QyP\"},TJfI8c9I_:{variant:\"Y6KlO_QyP\"}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:4,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-14yviub-container\",layoutDependency:layoutDependency,layoutId:\"UCa7j2jYg-container\",nodeId:\"UCa7j2jYg\",rendersWithMotion:true,scopeId:\"hTS3nR2qQ\",children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"UCa7j2jYg\",layoutId:\"UCa7j2jYg\",variant:\"Y6KlO_QyP\",width:\"100%\"})})}),isDisplayed2(tJv8QzCzC)&&/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation3,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1y9iu86\",\"data-styles-preset\":\"nofj51pHd\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-20832d6c-6be5-455d-99ea-51eb6fbc6e93, rgb(255, 255, 255)))\"},children:\"Is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.\"})}),className:\"framer-45qi8\",\"data-framer-appear-id\":\"45qi8\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],initial:animation4,layoutDependency:layoutDependency,layoutId:\"eULMMBOoE\",optimized:true,style:{\"--extracted-r6o4lv\":\"var(--token-20832d6c-6be5-455d-99ea-51eb6fbc6e93, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"20px\"},text:tDBtcpP4K,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({N7nLXEAhf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1y9iu86\",\"data-styles-preset\":\"nofj51pHd\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-20832d6c-6be5-455d-99ea-51eb6fbc6e93, rgb(255, 255, 255)))\"},children:\"Is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.\"})})},N9awMc5v1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1y9iu86\",\"data-styles-preset\":\"nofj51pHd\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-20832d6c-6be5-455d-99ea-51eb6fbc6e93, rgb(255, 255, 255)))\"},children:\"Is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.\"})})},qMc408eJA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1y9iu86\",\"data-styles-preset\":\"nofj51pHd\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-20832d6c-6be5-455d-99ea-51eb6fbc6e93, rgb(255, 255, 255)))\"},children:\"Is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.\"})})},TJfI8c9I_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1y9iu86\",\"data-styles-preset\":\"nofj51pHd\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-20832d6c-6be5-455d-99ea-51eb6fbc6e93, rgb(255, 255, 255)))\"},children:\"Is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.\"})})}},baseVariant,gestureVariant)}),isDisplayed3(yrnRzkmOa)&&/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:0sWquksFr1YDkaIgrl9Z/jKzAzDE1dbmgPC3q8RAo/Vimeo.js:default\":componentPresets.props[\"FGJ92pmTI\"],\"module:NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js:Youtube\":componentPresets.props[\"j8CPL0Xf4\"],\"module:pVk4QsoHxASnVtUBp6jr/QVzZltTawVJTjmjAWG3C/CodeBlock.js:default\":componentPresets.props[\"KCu1ecnTa\"]},children:/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation3,children:Xw15JWH5r,className:\"framer-8k2iu7\",\"data-framer-appear-id\":\"8k2iu7\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],initial:animation4,layoutDependency:layoutDependency,layoutId:\"Wp3wqc2Va\",optimized:true,style:{\"--extracted-r6o4lv\":\"var(--token-20832d6c-6be5-455d-99ea-51eb6fbc6e93, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"20px\"},stylesPresetsClassNames:{a:\"framer-styles-preset-1v6rlnd\",blockquote:\"framer-styles-preset-thd07o\",code:\"framer-styles-preset-25d6j5\",h1:\"framer-styles-preset-9vo6wq\",h2:\"framer-styles-preset-1dirnh0\",h3:\"framer-styles-preset-54cx0u\",h4:\"framer-styles-preset-xt9hj0\",h5:\"framer-styles-preset-1litlqg\",h6:\"framer-styles-preset-x9gkfi\",img:\"framer-styles-preset-75kinf\",p:\"framer-styles-preset-ozp0n2\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({N7nLXEAhf:{stylesPresetsClassNames:{a:\"framer-styles-preset-1v6rlnd\",blockquote:\"framer-styles-preset-thd07o\",code:\"framer-styles-preset-25d6j5\",h1:\"framer-styles-preset-9vo6wq\",h2:\"framer-styles-preset-1dirnh0\",h3:\"framer-styles-preset-54cx0u\",h4:\"framer-styles-preset-xt9hj0\",h5:\"framer-styles-preset-1litlqg\",h6:\"framer-styles-preset-x9gkfi\",img:\"framer-styles-preset-75kinf\",p:\"framer-styles-preset-vjyu6z\"}}},baseVariant,gestureVariant)})}),isDisplayed4()&&/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:0sWquksFr1YDkaIgrl9Z/jKzAzDE1dbmgPC3q8RAo/Vimeo.js:default\":componentPresets.props[\"FGJ92pmTI\"],\"module:NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js:Youtube\":componentPresets.props[\"j8CPL0Xf4\"],\"module:pVk4QsoHxASnVtUBp6jr/QVzZltTawVJTjmjAWG3C/CodeBlock.js:default\":componentPresets.props[\"KCu1ecnTa\"]},children:/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation3,children:doUesItk0,className:\"framer-8cz3s0\",\"data-framer-appear-id\":\"8cz3s0\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],initial:animation4,layoutDependency:layoutDependency,layoutId:\"BtfrNswfZ\",optimized:true,style:{\"--extracted-r6o4lv\":\"var(--token-20832d6c-6be5-455d-99ea-51eb6fbc6e93, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"20px\"},stylesPresetsClassNames:{a:\"framer-styles-preset-1v6rlnd\",blockquote:\"framer-styles-preset-thd07o\",code:\"framer-styles-preset-25d6j5\",h1:\"framer-styles-preset-9vo6wq\",h2:\"framer-styles-preset-1dirnh0\",h3:\"framer-styles-preset-54cx0u\",h4:\"framer-styles-preset-xt9hj0\",h5:\"framer-styles-preset-1litlqg\",h6:\"framer-styles-preset-x9gkfi\",img:\"framer-styles-preset-75kinf\",p:\"framer-styles-preset-vjyu6z\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:4,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-wsu29f-container\",layoutDependency:layoutDependency,layoutId:\"TM2jhw5n3-container\",nodeId:\"TM2jhw5n3\",rendersWithMotion:true,scopeId:\"hTS3nR2qQ\",children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"TM2jhw5n3\",layoutId:\"TM2jhw5n3\",variant:\"O5w_LPMgO\",width:\"100%\"})})}),isDisplayed5(YsUYn0D_A)&&/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation5,className:\"framer-2qdr5h\",\"data-framer-appear-id\":\"2qdr5h\",\"data-framer-name\":\"Actions\",initial:animation4,layoutDependency:layoutDependency,layoutId:\"h7KIL5OtY\",optimized:true,children:[aP7c5LPJA&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"RaKgUi0k9\"},implicitPathVariables:undefined},{href:{webPageId:\"RaKgUi0k9\"},implicitPathVariables:undefined},{href:{webPageId:\"RaKgUi0k9\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-r3lbm-container\",layoutDependency:layoutDependency,layoutId:\"KHIg7EkJl-container\",nodeId:\"KHIg7EkJl\",rendersWithMotion:true,scopeId:\"hTS3nR2qQ\",children:/*#__PURE__*/_jsx(Button,{ARnLq3zHD:resolvedLinks[0],CUDP1X95y:\"Our Devices\",height:\"100%\",id:\"KHIg7EkJl\",layoutId:\"KHIg7EkJl\",pK7K5HOIP:\"ph:arrow-up-right\",RAlASxb4E:false,variant:\"npOhIzqja\",width:\"100%\",...addPropertyOverrides({N7nLXEAhf:{ARnLq3zHD:resolvedLinks[1]},TJfI8c9I_:{ARnLq3zHD:resolvedLinks[2]}},baseVariant,gestureVariant)})})})}),rroikLTHN&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"M8YVSMxgJ\"},implicitPathVariables:undefined},{href:{webPageId:\"M8YVSMxgJ\"},implicitPathVariables:undefined},{href:{webPageId:\"M8YVSMxgJ\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-oi1dr2-container\",layoutDependency:layoutDependency,layoutId:\"O5QbzTLQ3-container\",nodeId:\"O5QbzTLQ3\",rendersWithMotion:true,scopeId:\"hTS3nR2qQ\",children:/*#__PURE__*/_jsx(Button,{ARnLq3zHD:resolvedLinks1[0],CUDP1X95y:vGj6xqXsT,height:\"100%\",id:\"O5QbzTLQ3\",layoutId:\"O5QbzTLQ3\",pK7K5HOIP:\"ph:arrow-up-right\",RAlASxb4E:true,variant:\"ebZwhnmA9\",width:\"100%\",...addPropertyOverrides({N7nLXEAhf:{ARnLq3zHD:resolvedLinks1[1]},TJfI8c9I_:{ARnLq3zHD:resolvedLinks1[2]}},baseVariant,gestureVariant)})})})})]})]}),isDisplayed6()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-ibj7l0\",\"data-framer-name\":\"Heading and supporting text\",layoutDependency:layoutDependency,layoutId:\"K3Ci15I6I\",style:{\"--w67w9e\":dwbumLiZE},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1nfkqk2\",\"data-framer-name\":\"Heading and badge\",layoutDependency:layoutDependency,layoutId:\"AxT_Th9nL\",children:[isDisplayed7()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({dN3MmuWvm:{height:4},N9awMc5v1:{height:4},TJfI8c9I_:{height:4}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-qrgumf-container\",layoutDependency:layoutDependency,layoutId:\"x1y2yO9NT-container\",nodeId:\"x1y2yO9NT\",rendersWithMotion:true,scopeId:\"hTS3nR2qQ\",children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"x1y2yO9NT\",layoutId:\"x1y2yO9NT\",variant:\"O5w_LPMgO\",width:\"100%\"})})}),nbKcYCisa&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-5sng57-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"RM5lTgVPo-container\",nodeId:\"RM5lTgVPo\",rendersWithMotion:true,scopeId:\"hTS3nR2qQ\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"RM5lTgVPo\",isMixedBorderRadius:false,layoutId:\"RM5lTgVPo\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:YoTuIAb9r,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),FfkgZT_52&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1338,pixelWidth:2048,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) * 0.45)`,...toResponsiveImage(nDixdAAOp)},className:\"framer-10dzbie\",layoutDependency:layoutDependency,layoutId:\"RH8YNzgbs\",style:{borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30},...addPropertyOverrides({dN3MmuWvm:{background:{alt:\"\",fit:\"fill\",pixelHeight:1338,pixelWidth:2048,sizes:`min(min(${componentViewport?.width||\"100vw\"} * 0.95, 1440px) * 0.9, min(${componentViewport?.width||\"100vw\"} * 0.95, 1440px) * 0.6)`,...toResponsiveImage(nDixdAAOp)}},N7nLXEAhf:{background:{alt:\"\",fit:\"fill\",pixelHeight:1338,pixelWidth:2048,sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1440px) * 0.9)`,...toResponsiveImage(nDixdAAOp)}},N9awMc5v1:{background:{alt:\"\",fit:\"fill\",pixelHeight:1338,pixelWidth:2048,sizes:`calc(min(${componentViewport?.width||\"100vw\"} * 0.95, 1440px) * 0.9)`,...toResponsiveImage(nDixdAAOp)}},qMc408eJA:{background:{alt:\"\",fit:\"fill\",pixelHeight:1338,pixelWidth:2048,sizes:`calc(min(${componentViewport?.width||\"100vw\"} * 0.95, 1440px) * 0.9)`,...toResponsiveImage(nDixdAAOp)}},TJfI8c9I_:{background:{alt:\"\",fit:\"fill\",pixelHeight:1338,pixelWidth:2048,sizes:`calc(min(${componentViewport?.width||\"100vw\"} * 0.95, 1440px) * 0.9)`,...toResponsiveImage(nDixdAAOp)}}},baseVariant,gestureVariant)})]})})]}),/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:.25,animate:animation6,background:{alt:\"White square with 4 black dots in the corners\",backgroundSize:.5,fit:\"tile\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+-132),pixelHeight:96,pixelWidth:96,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/c0EZxtMucSR6UOSZk2TBnWsqr4.svg\"},className:\"framer-inu8r2\",\"data-framer-appear-id\":\"inu8r2\",\"data-framer-name\":\"pattern\",initial:animation4,layoutDependency:layoutDependency,layoutId:\"TaiYqI_Ks\",optimized:true,style:{filter:\"invert(1)\",mask:\"radial-gradient(55.52238805970149% 93% at 50% 50%, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.18436) 0%, rgba(0, 0, 0, 0.07207) 63.51351351351351%, rgba(0,0,0,0) 74.21055699253942%) add\",opacity:.25,WebkitFilter:\"invert(1)\",WebkitMask:\"radial-gradient(55.52238805970149% 93% at 50% 50%, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.18436) 0%, rgba(0, 0, 0, 0.07207) 63.51351351351351%, rgba(0,0,0,0) 74.21055699253942%) add\"}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-zes0e.framer-1fd0y81, .framer-zes0e .framer-1fd0y81 { display: block; }\",\".framer-zes0e.framer-1h095sc { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: var(--w67w9e); overflow: visible; padding: 50px 0px 0px 0px; position: relative; width: 1439px; }\",\".framer-zes0e .framer-pugcr6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-zes0e .framer-1lsh89a { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 50%; }\",\".framer-zes0e .framer-cbbb7i { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-zes0e .framer-1k8efza-container, .framer-zes0e .framer-1fi3wrv-container, .framer-zes0e .framer-1a0z063-container, .framer-zes0e .framer-1wrlg0c-container, .framer-zes0e .framer-14yviub-container, .framer-zes0e .framer-wsu29f-container, .framer-zes0e .framer-r3lbm-container, .framer-zes0e .framer-oi1dr2-container, .framer-zes0e .framer-qrgumf-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-zes0e .framer-12o4vlk, .framer-zes0e .framer-i4u24y { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-zes0e .framer-45qi8, .framer-zes0e .framer-8k2iu7 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 99%; word-break: break-word; word-wrap: break-word; }\",\".framer-zes0e .framer-8cz3s0 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 70%; word-break: break-word; word-wrap: break-word; }\",\".framer-zes0e .framer-2qdr5h { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-zes0e .framer-ibj7l0 { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: auto; justify-content: var(--w67w9e); overflow: visible; padding: 0px; position: relative; width: 50%; }\",\".framer-zes0e .framer-1nfkqk2 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 1px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 90%; }\",\".framer-zes0e .framer-5sng57-container { aspect-ratio: 1.7802197802197801 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 112px); position: relative; width: 100%; }\",\".framer-zes0e .framer-10dzbie { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-zes0e .framer-inu8r2 { flex: none; height: 736px; position: absolute; right: -312px; top: -132px; width: 1352px; z-index: 1; }\",\".framer-zes0e.framer-v-hjxvan.framer-1h095sc, .framer-zes0e.framer-v-1t4f7vl.framer-1h095sc, .framer-zes0e.framer-v-12s224e.framer-1h095sc { width: 860px; }\",\".framer-zes0e.framer-v-hjxvan .framer-pugcr6 { flex-direction: column; gap: 35px; }\",\".framer-zes0e.framer-v-hjxvan .framer-1lsh89a, .framer-zes0e.framer-v-5rjw19 .framer-1lsh89a, .framer-zes0e.framer-v-1t4f7vl .framer-1lsh89a, .framer-zes0e.framer-v-742wf1 .framer-1lsh89a, .framer-zes0e.framer-v-12s224e .framer-1lsh89a { align-content: center; align-items: center; width: 100%; }\",\".framer-zes0e.framer-v-hjxvan .framer-cbbb7i, .framer-zes0e.framer-v-5rjw19 .framer-cbbb7i, .framer-zes0e.framer-v-1t4f7vl .framer-cbbb7i, .framer-zes0e.framer-v-742wf1 .framer-cbbb7i, .framer-zes0e.framer-v-12s224e .framer-cbbb7i { align-content: center; align-items: center; }\",\".framer-zes0e.framer-v-hjxvan .framer-ibj7l0, .framer-zes0e.framer-v-5rjw19 .framer-ibj7l0, .framer-zes0e.framer-v-12s224e .framer-ibj7l0 { align-self: unset; height: min-content; width: 100%; }\",\".framer-zes0e.framer-v-hjxvan .framer-1nfkqk2, .framer-zes0e.framer-v-5rjw19 .framer-1nfkqk2, .framer-zes0e.framer-v-1t4f7vl .framer-1nfkqk2, .framer-zes0e.framer-v-742wf1 .framer-1nfkqk2 { flex: none; height: min-content; }\",\".framer-zes0e.framer-v-hjxvan .framer-10dzbie { flex: none; height: 400px; }\",\".framer-zes0e.framer-v-hjxvan .framer-inu8r2 { left: -246px; right: -246px; width: unset; }\",\".framer-zes0e.framer-v-5rjw19.framer-1h095sc, .framer-zes0e.framer-v-742wf1.framer-1h095sc { width: 390px; }\",\".framer-zes0e.framer-v-5rjw19 .framer-pugcr6, .framer-zes0e.framer-v-1t4f7vl .framer-pugcr6, .framer-zes0e.framer-v-742wf1 .framer-pugcr6, .framer-zes0e.framer-v-12s224e .framer-pugcr6 { flex-direction: column; width: 95%; }\",\".framer-zes0e.framer-v-5rjw19 .framer-45qi8, .framer-zes0e.framer-v-742wf1 .framer-45qi8 { width: 100%; }\",\".framer-zes0e.framer-v-5rjw19 .framer-10dzbie { flex: none; height: 250px; }\",\".framer-zes0e.framer-v-5rjw19 .framer-inu8r2 { left: -481px; right: -481px; width: unset; }\",\".framer-zes0e.framer-v-jevbyp .framer-pugcr6 { order: 0; }\",\".framer-zes0e.framer-v-jevbyp .framer-inu8r2, .framer-zes0e.framer-v-1t4f7vl .framer-1k8efza-container { order: 1; }\",\".framer-zes0e.framer-v-1t4f7vl .framer-1fi3wrv-container { order: 2; }\",\".framer-zes0e.framer-v-1t4f7vl .framer-1a0z063-container { order: 3; }\",\".framer-zes0e.framer-v-1t4f7vl .framer-12o4vlk { order: 4; }\",\".framer-zes0e.framer-v-1t4f7vl .framer-i4u24y { order: 5; }\",\".framer-zes0e.framer-v-1t4f7vl .framer-1wrlg0c-container { order: 6; }\",\".framer-zes0e.framer-v-1t4f7vl .framer-45qi8 { width: 80%; }\",\".framer-zes0e.framer-v-1t4f7vl .framer-ibj7l0, .framer-zes0e.framer-v-742wf1 .framer-ibj7l0 { align-self: unset; flex: 1 0 0px; height: 1px; width: 100%; }\",\".framer-zes0e.framer-v-12s224e .framer-1nfkqk2 { max-width: 60%; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,...sharedStyle11.css,...sharedStyle12.css,...sharedStyle13.css,...sharedStyle14.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 494\n * @framerIntrinsicWidth 1439\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"N7nLXEAhf\":{\"layout\":[\"fixed\",\"auto\"]},\"TJfI8c9I_\":{\"layout\":[\"fixed\",\"auto\"]},\"bueTOk8ew\":{\"layout\":[\"fixed\",\"auto\"]},\"N9awMc5v1\":{\"layout\":[\"fixed\",\"auto\"]},\"qMc408eJA\":{\"layout\":[\"fixed\",\"auto\"]},\"dN3MmuWvm\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"C6O5YWYVt\":\"titleWhite\",\"UsKRgZ9xx\":\"titleOrange\",\"tDBtcpP4K\":\"subtext\",\"vGj6xqXsT\":\"button2\",\"DuouXl905\":\"badge\",\"nDixdAAOp\":\"image2\",\"rroikLTHN\":\"visible\",\"YsUYn0D_A\":\"visibleBothButtens\",\"aP7c5LPJA\":\"visibleBUTTON1\",\"yrnRzkmOa\":\"visibleLinkingText\",\"tJv8QzCzC\":\"visibleStandardSubtext\",\"HEq8_ZY61\":\"visible2\",\"nbKcYCisa\":\"video\",\"FfkgZT_52\":\"image\",\"dwbumLiZE\":\"distribute\",\"YoTuIAb9r\":\"videoFile\",\"doUesItk0\":\"content\",\"Xw15JWH5r\":\"content2\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerhTS3nR2qQ=withCSS(Component,css,\"framer-zes0e\");export default FramerhTS3nR2qQ;FramerhTS3nR2qQ.displayName=\"Stack Hero V1\";FramerhTS3nR2qQ.defaultProps={height:494,width:1439};addPropertyControls(FramerhTS3nR2qQ,{variant:{options:[\"qNcZOletD\",\"N7nLXEAhf\",\"TJfI8c9I_\",\"bueTOk8ew\",\"N9awMc5v1\",\"qMc408eJA\",\"dN3MmuWvm\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Variant 4\",\"Variant 5\",\"Variant 6\",\"Variant 7\"],title:\"Variant\",type:ControlType.Enum},C6O5YWYVt:{defaultValue:\"Dutch IoT Solutions\",displayTextArea:false,title:\"Title White\",type:ControlType.String},UsKRgZ9xx:{defaultValue:\"Lorem ipsum, sion dilor.\",displayTextArea:false,title:\"Title Orange\",type:ControlType.String},tDBtcpP4K:{defaultValue:\"Is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.\",displayTextArea:false,title:\"Subtext\",type:ControlType.String},vGj6xqXsT:{defaultValue:\"Get in Touch\",displayTextArea:false,title:\"Button 2 \",type:ControlType.String},DuouXl905:{defaultValue:\"Lorem Ipsum\",displayTextArea:false,title:\"Badge\",type:ControlType.String},nDixdAAOp:{__defaultAssetReference:\"data:framer/asset-reference,25svDe4UvLsFu1cHqmztAdFJQ.jpg?originalFilename=Vergrootglas+home.jpg&preferredSize=auto\",title:\"Image 2\",type:ControlType.ResponsiveImage},rroikLTHN:{defaultValue:true,title:\"Visible\",type:ControlType.Boolean},YsUYn0D_A:{defaultValue:true,title:\"Visible both buttens\",type:ControlType.Boolean},aP7c5LPJA:{defaultValue:true,title:\"Visible BUTTON 1\",type:ControlType.Boolean},yrnRzkmOa:{defaultValue:false,title:\"Visible linking text\",type:ControlType.Boolean},tJv8QzCzC:{defaultValue:true,title:\"Visible standard subtext\",type:ControlType.Boolean},HEq8_ZY61:{defaultValue:true,title:\"Visible 2\",type:ControlType.Boolean},nbKcYCisa:{defaultValue:false,title:\"Video\",type:ControlType.Boolean},FfkgZT_52:{defaultValue:true,title:\"Image \",type:ControlType.Boolean},dwbumLiZE:{defaultValue:\"flex-start\",options:[\"flex-start\",\"center\",\"flex-end\",\"space-between\",\"space-around\",\"space-evenly\"],optionTitles:[\"Start\",\"Center\",\"End\",\"Space Between\",\"Space Around\",\"Space Evenly\"],title:\"Distribute\",type:ControlType.Enum},YoTuIAb9r:Video1Controls?.[\"srcFile\"]&&{...Video1Controls[\"srcFile\"],__defaultAssetReference:\"\",description:undefined,hidden:undefined,title:\"Video File\"},doUesItk0:{defaultValue:\"<p>Is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.</p>\",title:\"Content\",type:ControlType.RichText},Xw15JWH5r:{defaultValue:\"<p>text</p>\",title:\"Content 2\",type:ControlType.RichText}});addFonts(FramerhTS3nR2qQ,[{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/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"}]},...BadgeFonts,...SpacerFonts,...ButtonFonts,...VideoFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...getFontsFromSharedStyle(sharedStyle10.fonts),...getFontsFromSharedStyle(sharedStyle11.fonts),...getFontsFromSharedStyle(sharedStyle12.fonts),...getFontsFromSharedStyle(sharedStyle13.fonts),...getFontsFromSharedStyle(sharedStyle14.fonts),...componentPresets.fonts?.[\"j8CPL0Xf4\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"j8CPL0Xf4\"]):[],...componentPresets.fonts?.[\"KCu1ecnTa\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"KCu1ecnTa\"]):[],...componentPresets.fonts?.[\"FGJ92pmTI\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"FGJ92pmTI\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerhTS3nR2qQ\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicHeight\":\"494\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1439\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"N7nLXEAhf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TJfI8c9I_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"bueTOk8ew\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"N9awMc5v1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qMc408eJA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dN3MmuWvm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"C6O5YWYVt\\\":\\\"titleWhite\\\",\\\"UsKRgZ9xx\\\":\\\"titleOrange\\\",\\\"tDBtcpP4K\\\":\\\"subtext\\\",\\\"vGj6xqXsT\\\":\\\"button2\\\",\\\"DuouXl905\\\":\\\"badge\\\",\\\"nDixdAAOp\\\":\\\"image2\\\",\\\"rroikLTHN\\\":\\\"visible\\\",\\\"YsUYn0D_A\\\":\\\"visibleBothButtens\\\",\\\"aP7c5LPJA\\\":\\\"visibleBUTTON1\\\",\\\"yrnRzkmOa\\\":\\\"visibleLinkingText\\\",\\\"tJv8QzCzC\\\":\\\"visibleStandardSubtext\\\",\\\"HEq8_ZY61\\\":\\\"visible2\\\",\\\"nbKcYCisa\\\":\\\"video\\\",\\\"FfkgZT_52\\\":\\\"image\\\",\\\"dwbumLiZE\\\":\\\"distribute\\\",\\\"YoTuIAb9r\\\":\\\"videoFile\\\",\\\"doUesItk0\\\":\\\"content\\\",\\\"Xw15JWH5r\\\":\\\"content2\\\"}\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./hTS3nR2qQ.map"],
  "mappings": "q7CACsE,IAAIA,IAAe,SAASA,EAAc,CAACA,EAAc,KAAQ,OAAOA,EAAc,QAAW,UAAUA,EAAc,MAAS,QAAQA,EAAc,KAAQ,OAAOA,EAAc,UAAa,YAAa,GAAGA,KAAgBA,GAAc,CAAC,EAAE,EAAE,IAAIC,IAAS,SAASA,EAAQ,CAACA,EAAQ,MAAS,SAASA,EAAQ,IAAO,KAAM,GAAGA,KAAUA,GAAQ,CAAC,EAAE,EACja,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,EAAMV,EAAM,CAAC,IAAMW,EAASZ,GAASC,CAAK,EAAE,OAAoBY,EAAKC,GAAU,CAAC,GAAGF,CAAQ,CAAC,CAAE,CAAC,SAASG,GAAoBC,EAAS,CAAC,IAAMC,EAA4BC,GAA+B,EAAQC,EAAeC,EAAO,EAAK,EAAQC,EAAaD,EAAO,EAAK,EAAQE,EAAYC,GAAYC,GAAa,CAAC,GAAG,CAACR,EAAS,QAAQ,OAAO,IAAMS,GAAaD,IAAc,EAAE,KAAKA,GAAaR,EAAS,QAAQ,SAAeU,EAAa,KAAK,IAAIV,EAAS,QAAQ,YAAYS,CAAW,EAAE,GAAMT,EAAS,QAAQ,SAAS,GAAG,CAACU,IAAcV,EAAS,QAAQ,YAAYS,EAAa,EAAE,CAAC,CAAC,EAAQE,EAAKJ,GAAY,IAAI,CAAC,IAAMK,EAAMZ,EAAS,QAAQ,GAAG,CAACY,EAAM,OAAOA,EAAM,QAAQ,OACtjB,EAAhHA,EAAM,YAAY,GAAGA,EAAM,WAAW,CAACA,EAAM,QAAQ,CAACA,EAAM,OAAOA,EAAM,YAAYA,EAAM,oBAAiCA,GAAO,CAACT,EAAe,SAASF,IAA6BE,EAAe,QAAQ,GAAKE,EAAa,QAAQ,GAAKO,EAAM,KAAK,EAAE,MAAMC,GAAG,CAAC,CAAC,EACvR,QAAQ,IAAIV,EAAe,QAAQ,EAAK,EAAG,EAAE,CAAC,CAAC,EAAQW,EAAMP,GAAY,IAAI,CAAI,CAACP,EAAS,SAASG,EAAe,UAAeH,EAAS,QAAQ,MAAM,EAAEK,EAAa,QAAQ,GAAM,EAAE,CAAC,CAAC,EAAE,MAAM,CAAC,KAAAM,EAAK,MAAAG,EAAM,YAAAR,EAAY,UAAUD,CAAY,CAAE,CAAC,SAASU,GAAoB,CAAC,YAAAC,EAAY,MAAAC,EAAM,KAAAC,EAAK,YAAAC,EAAY,SAAAC,CAAQ,EAAE,CAAC,GAAK,CAACC,CAAkB,EAAEC,GAAS,IAAIN,CAAW,EAAO,CAACO,EAAsBC,CAAwB,EAAEF,GAAS,EAAK,EAAKN,IAAcK,GAAoB,CAACE,GAAuBC,EAAyB,EAAI,EAAG,IAAMC,EAE7hBJ,GAAoBJ,GAAOC,GAAMC,GAAa,CAACC,GAQ/C,CAACG,EAA0BG,EAAS,OAAGD,EAAaC,EAAS,cAAsBL,EAAmBK,EAAS,WAAgBA,EAAS,cAAqBA,CAAS,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,EAAY,GAAK,eAAAc,GAAe,GAAM,UAAAC,EAAU,QAAQ,gBAAAC,EAAgB,gBAAgB,OAAAC,GAAO,EAAE,OAAAC,EAAO,GAAG,UAAUC,EAAc,EAAE,OAAAC,EAAO,sEAAsE,QAAQvB,EAAY,SAAAwB,EAAS,SAAAC,EAAS,QAAAC,EAAQ,OAAAC,EAAO,MAAAC,EAAM,QAAAC,GAAQ,aAAAC,GAAa,aAAAC,GAAa,YAAAC,GAAY,UAAAC,EAAS,EAAEhE,EAAYe,EAASI,EAAO,EAAQ8C,GAASC,GAAmB,EAAQC,EAAiBhD,EAAO,IAAI,EAAQiD,GAAgBjD,EAAO,IAAI,EAAQkD,EAAWC,GAAc,EAAQC,GAAaC,GAAUxE,CAAK,EAGjnByE,EAAiBJ,EAAW,cAAcvC,GAAoB,CAAC,YAAAC,EAAY,MAAAC,EAAM,KAAAC,EAAK,YAAAC,EAAY,SAAAC,CAAQ,CAAC,EAAQuC,GAAaL,EAAW,GAAKM,GAAU5D,CAAQ,EAAQ6D,GAAkBP,EAAW,GAAMM,GAAU5D,EAAS,CAAC,OAAO,QAAQ,KAAK,EAAI,CAAC,EAC1P8D,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,GAAahD,EAAK,EAAOG,EAAM,EAAE,EAAE,CAAC4C,EAAiBC,EAAY,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,IAAiBnC,GAAM,CAACkC,EAAiB,UAAQzC,EAAK,CAAG,CAAC,EAC9D2D,GAAU,IAAI,CAAItE,EAAS,UAASqD,GAAgB,QAAQrD,EAAS,QAAQ,MAAMoD,EAAiB,QAAQpD,EAAS,QAAQ,OAAOc,EAAM,EAAG,CAAC,EAAE,IAAMyD,EAAIC,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,IAAUlD,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,EAAKJ,IAAmB,YAAW/C,EAAK,EAAE,EAAE,OAAoBd,EAAK,QAAQ,CAAC,QAAAgD,GAAQ,aAAAC,GAAa,aAAAC,GAAa,YAAAC,GAAY,UAAAC,GAAU,IAAIsB,EAAI,KAAKrD,EAAK,IAAIlB,EAAS,SAASa,GAA6C4B,IAAS5B,CAAC,EAAE,QAAQA,GAA2C6B,IAAQ7B,CAAC,EAAE,OAAOA,GAAyC8B,IAAO9B,CAAC,EAAE,QAAQA,GAAuC+B,IAAM/B,CAAC,EAAE,SAAS6C,IAAmB,WAAW,QAAQK,GAAU,QAAQ,OAAOL,IAAmB,YAAY3B,GAAe,CAAC8B,GAAkB,OAC5sB,WAAW,OAAO9B,EAAcQ,EAAO,OAAU,aAAamC,GAAY,SAAStD,EAAS,MAAMkC,EAAW,GAAKrC,EAAM,YAAYE,EAAY,MAAM,CAAC,OAAS0B,GAAQ,UAAU,OAAO,MAAM,OAAO,OAAO,OAAO,aAAAW,GAAa,QAAQ,QAAQ,UAAUtB,EAAU,gBAAgBC,EAAgB,eAAe,SAAS,CAAC,CAAC,CAAE,CAAC,EAAExC,EAAM,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,EAAM,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,EAMj2D,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,ECxE6jF,IAAMC,GAAWC,EAASC,EAAK,EAAQC,GAA6DC,EAA0BC,EAAOC,CAA6B,CAAC,EAAQC,GAAYN,EAASO,CAAM,EAAQC,EAAwCL,EAA0BC,EAAOK,EAAQ,CAAC,EAAQC,GAAYV,EAASW,EAAM,EAAQC,GAAyCT,EAA0BC,EAAOS,EAAO,GAAG,CAAC,EAAQC,GAAWd,EAASe,CAAK,EAAQC,GAAqCb,EAA0BC,EAAOa,EAAK,CAAC,EAAQC,GAAeC,GAAoBJ,EAAM,EAAQK,GAAW,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,iBAAiB,EAAE,SAASC,EAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAAAD,GAAU,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,IAAI,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAW,CAAC,QAAQ,KAAK,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,EAAW,CAAC,QAAQ,KAAK,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,EAAkBC,GAAW,OAAOA,GAAQ,UAAUA,IAAQ,MAAM,OAAOA,EAAM,KAAM,SAAiBA,EAAc,OAAOA,GAAQ,SAAS,CAAC,IAAIA,CAAK,EAAE,OAAkBC,GAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,IAAI,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAW,CAAC,CAAC,MAAAH,EAAM,SAAAI,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,EAAmB,EAAQC,EAAWR,GAAOK,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,GAASvC,EAAO,OAAawC,CAAQ,EAAQC,GAAqB,CAAC,eAAe,eAAe,gBAAgB,gBAAgB,eAAe,eAAe,OAAO,SAAS,IAAI,WAAW,MAAM,YAAY,EAAQC,GAAwB,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAS,CAAC,CAAC,MAAAC,EAAM,QAAAC,EAAQ,QAAAC,EAAQ,SAAAC,EAAS,WAAAC,EAAW,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,OAAAC,EAAO,QAAAC,EAAQ,YAAAC,EAAY,WAAAC,GAAW,MAAAC,EAAM,UAAAC,EAAU,QAAAC,GAAQ,SAAAC,EAAS,mBAAAC,EAAmB,eAAAC,EAAe,mBAAAC,EAAmB,uBAAAC,EAAuB,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,UAAUJ,GAAgBI,EAAM,WAAW,GAAK,UAAUV,IAAYU,EAAM,WAAW,sBAAsB,UAAUnB,GAASmB,EAAM,WAAwB3B,EAAWE,EAAS,CAAC,SAAsBF,EAAKtC,EAAO,EAAE,CAAC,SAAS,oWAAoW,CAAC,CAAC,CAAC,EAAE,UAAU4C,GAAOqB,EAAM,WAAW,cAAc,UAAUxB,GAAqBO,CAAU,GAAGA,GAAYiB,EAAM,WAAW,aAAa,UAAUd,GAAOc,EAAM,WAAW,GAAK,UAAUN,GAAUM,EAAM,WAAW,GAAK,UAAUT,GAAOS,EAAM,UAAU,UAAUb,GAAQa,EAAM,WAAW,CAAC,YAAY,KAAK,WAAW,KAAK,IAAI,qEAAqE,OAAO,gQAAgQ,EAAE,UAAUP,IAASO,EAAM,WAAW,GAAK,UAAUZ,GAASY,EAAM,WAAW,qWAAqW,UAAUF,GAAwBE,EAAM,WAAW,GAAK,UAAUX,GAAaW,EAAM,WAAW,2BAA2B,QAAQvB,GAAwBuB,EAAM,OAAO,GAAGA,EAAM,SAAS,YAAY,UAAUpB,GAASoB,EAAM,WAAW,eAAe,UAAUlB,GAAUkB,EAAM,WAAwB3B,EAAWE,EAAS,CAAC,SAAsBF,EAAKtC,EAAO,EAAE,CAAC,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,UAAUyD,GAAWQ,EAAM,UAAU,UAAUH,GAAoBG,EAAM,UAAU,UAAUL,GAAoBK,EAAM,WAAW,EAAI,GAAUC,GAAuB,CAACD,EAAMrD,IAAeqD,EAAM,iBAAwBrD,EAAS,KAAK,GAAG,EAAEqD,EAAM,iBAAwBrD,EAAS,KAAK,GAAG,EAAUuD,GAA6BC,GAAW,SAASH,EAAMI,EAAI,CAAC,IAAMC,EAAYC,EAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,GAAM,EAAO,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAQC,EAAkBC,GAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAApE,GAAQ,UAAAqE,EAAU,UAAAC,EAAU,UAAAC,GAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,GAAU,UAAAC,GAAU,UAAAC,GAAU,UAAAC,GAAU,UAAAC,GAAU,UAAAC,EAAU,GAAGC,EAAS,EAAE1D,GAASsB,CAAK,EAAO,CAAC,YAAAqC,EAAY,WAAAC,GAAW,oBAAAC,EAAoB,gBAAAC,GAAgB,eAAAC,EAAe,UAAAC,GAAU,gBAAAC,GAAgB,WAAAC,EAAW,SAAAjG,CAAQ,EAAEkG,GAAgB,CAAC,WAAAvG,GAAW,eAAe,YAAY,IAAIiE,EAAW,QAAA1D,GAAQ,kBAAAL,EAAiB,CAAC,EAAQsG,EAAiB7C,GAAuBD,EAAMrD,CAAQ,EAAmYoG,GAAkBC,GAAGzG,GAAkB,GAA5Y,CAAayE,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAwBA,GAAwBA,GAAwBA,GAAwBA,GAAwBA,EAAS,CAAuE,EAAQiC,GAAYvF,GAAW2E,IAAc,YAAmB3E,EAAS,EAAC,YAAY,WAAW,EAAE,SAAS2E,CAAW,EAAmCa,EAAa,IAAQb,IAAc,YAA6Cc,GAAazF,GAAW2E,IAAc,YAAmB,GAAa3E,EAAc0F,EAAa1F,GAAW2E,IAAc,YAAmB,GAAa3E,EAAc2F,GAAa,IAAQhB,IAAc,YAA6CiB,GAAa5F,GAAW,CAAC,YAAY,YAAY,YAAY,WAAW,EAAE,SAAS2E,CAAW,EAAS,GAAa3E,EAAc6F,GAAOC,GAAU,EAAQC,GAAa,IAAQpB,IAAc,YAA6CqB,GAAa,IAAQ,GAAC,YAAY,YAAY,WAAW,EAAE,SAASrB,CAAW,EAA6B,OAAoBhE,EAAKsF,GAAY,CAAC,GAAG1C,GAAUT,EAAgB,SAAsBnC,EAAKC,GAAS,CAAC,QAAQ3B,EAAS,QAAQ,GAAM,SAAsB0B,EAAKR,GAAW,CAAC,MAAMf,GAAY,SAAsB8G,EAAM7H,EAAO,IAAI,CAAC,GAAGqG,GAAU,GAAGI,GAAgB,UAAUQ,GAAGD,GAAkB,iBAAiB/B,EAAUsB,EAAU,EAAE,mBAAmB,YAAY,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIvC,EAAW,MAAM,CAAC,WAAWyB,GAAU,GAAGjB,CAAK,EAAE,GAAGtE,EAAqB,CAAC,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,WAAW,CAAC,EAAE4F,EAAYI,CAAc,EAAE,SAAS,CAAcmB,EAAM7H,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,iBAAiB+G,EAAiB,SAAS,YAAY,SAAS,CAAcc,EAAM7H,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,8BAA8B,iBAAiB+G,EAAiB,SAAS,YAAY,SAAS,CAAcc,EAAM7H,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,oBAAoB,iBAAiB+G,EAAiB,SAAS,YAAY,SAAS,CAACG,GAAYpB,CAAS,GAAgBxD,EAAKwF,EAA0B,CAAC,OAAO,GAAG,SAAsBxF,EAAKjD,GAA6D,CAAC,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,QAAQ4B,GAAU,UAAU,2BAA2B,wBAAwB,UAAU,QAAQC,GAAW,iBAAiB6F,EAAiB,SAAS,sBAAsB,OAAO,YAAY,UAAU,GAAK,kBAAkB,GAAK,QAAQ,YAAY,SAAsBzE,EAAKlD,GAAM,CAAC,UAAU,GAAK,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUmG,EAAU,UAAU,uEAAuE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE4B,EAAa,GAAgB7E,EAAKwF,EAA0B,CAAC,OAAO,EAAE,SAAsBxF,EAAK9C,EAA8B,CAAC,UAAU,2BAA2B,iBAAiBuH,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBzE,EAAK5C,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,MAAM,OAAO,GAAGgB,EAAqB,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE4F,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAES,EAAa,GAAgB7E,EAAKwF,EAA0B,CAAC,OAAO,EAAE,SAAsBxF,EAAK9C,EAA8B,CAAC,UAAU,2BAA2B,iBAAiBuH,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBzE,EAAK5C,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe4C,EAAK3C,EAAwC,CAAC,sBAAsB,GAAK,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,QAAQyB,GAAW,SAAsBkB,EAAWE,EAAS,CAAC,SAAsBF,EAAKtC,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,gGAAgG,EAAE,SAAS,qBAAqB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,wBAAwB,UAAU,mBAAmB,UAAU,MAAM,CAAC,OAAO,EAAE,QAAQkB,GAAW,iBAAiB6F,EAAiB,SAAS,YAAY,UAAU,GAAK,MAAM,CAAC,qBAAqB,wEAAwE,6BAA6B,MAAM,EAAE,KAAK5B,EAAU,kBAAkB,MAAM,mBAAmB,GAAK,GAAGzE,EAAqB,CAAC,UAAU,CAAC,SAAsB4B,EAAWE,EAAS,CAAC,SAAsBF,EAAKtC,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,gGAAgG,EAAE,SAAS,qBAAqB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBsC,EAAWE,EAAS,CAAC,SAAsBF,EAAKtC,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,gGAAgG,EAAE,SAAS,qBAAqB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBsC,EAAWE,EAAS,CAAC,SAAsBF,EAAKtC,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,gGAAgG,EAAE,SAAS,qBAAqB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBsC,EAAWE,EAAS,CAAC,SAAsBF,EAAKtC,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,gGAAgG,EAAE,SAAS,qBAAqB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBsC,EAAWE,EAAS,CAAC,SAAsBF,EAAKtC,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,gGAAgG,EAAE,SAAS,qBAAqB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEsG,EAAYI,CAAc,CAAC,CAAC,EAAepE,EAAK3C,EAAwC,CAAC,sBAAsB,GAAK,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,QAAQyB,GAAW,SAAsBkB,EAAWE,EAAS,CAAC,SAAsBF,EAAKtC,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,8FAA8F,EAAE,SAAsBsC,EAAKtC,EAAO,OAAO,CAAC,SAAS,0BAA0B,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,wBAAwB,SAAS,mBAAmB,UAAU,MAAM,CAAC,QAAQ,YAAY,EAAE,QAAQkB,GAAW,iBAAiB6F,EAAiB,SAAS,YAAY,UAAU,GAAK,MAAM,CAAC,qBAAqB,sEAAsE,6BAA6B,MAAM,EAAE,KAAK3B,EAAU,kBAAkB,MAAM,mBAAmB,GAAK,GAAG1E,EAAqB,CAAC,UAAU,CAAC,SAAsB4B,EAAWE,EAAS,CAAC,SAAsBF,EAAKtC,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,8FAA8F,EAAE,SAAsBsC,EAAKtC,EAAO,OAAO,CAAC,SAAS,0BAA0B,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBsC,EAAWE,EAAS,CAAC,SAAsBF,EAAKtC,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,8FAA8F,EAAE,SAAsBsC,EAAKtC,EAAO,OAAO,CAAC,SAAS,0BAA0B,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBsC,EAAWE,EAAS,CAAC,SAAsBF,EAAKtC,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,8FAA8F,EAAE,SAAsBsC,EAAKtC,EAAO,OAAO,CAAC,SAAS,0BAA0B,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBsC,EAAWE,EAAS,CAAC,SAAsBF,EAAKtC,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,8FAA8F,EAAE,SAAsBsC,EAAKtC,EAAO,OAAO,CAAC,SAAS,0BAA0B,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBsC,EAAWE,EAAS,CAAC,SAAsBF,EAAKtC,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,8FAA8F,EAAE,SAAsBsC,EAAKtC,EAAO,OAAO,CAAC,SAAS,0BAA0B,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEsG,EAAYI,CAAc,CAAC,CAAC,EAAES,EAAa,GAAgB7E,EAAKwF,EAA0B,CAAC,OAAO,EAAE,SAAsBxF,EAAK9C,EAA8B,CAAC,UAAU,2BAA2B,iBAAiBuH,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBzE,EAAK5C,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,MAAM,OAAO,GAAGgB,EAAqB,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE4F,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAepE,EAAKwF,EAA0B,CAAC,OAAO,EAAE,SAAsBxF,EAAK9C,EAA8B,CAAC,UAAU,2BAA2B,iBAAiBuH,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBzE,EAAK5C,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE0H,GAAavB,CAAS,GAAgBvD,EAAK3C,EAAwC,CAAC,sBAAsB,GAAK,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,QAAQ2B,GAAW,SAAsBgB,EAAWE,EAAS,CAAC,SAAsBF,EAAKtC,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,gGAAgG,EAAE,SAAS,oWAAoW,CAAC,CAAC,CAAC,EAAE,UAAU,eAAe,wBAAwB,QAAQ,mBAAmB,kBAAkB,MAAM,CAAC,OAAO,EAAE,QAAQuB,EAAW,iBAAiBwF,EAAiB,SAAS,YAAY,UAAU,GAAK,MAAM,CAAC,qBAAqB,wEAAwE,6BAA6B,MAAM,EAAE,KAAK1B,GAAU,kBAAkB,MAAM,mBAAmB,GAAK,GAAG3E,EAAqB,CAAC,UAAU,CAAC,SAAsB4B,EAAWE,EAAS,CAAC,SAAsBF,EAAKtC,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,gGAAgG,EAAE,SAAS,oWAAoW,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBsC,EAAWE,EAAS,CAAC,SAAsBF,EAAKtC,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,gGAAgG,EAAE,SAAS,oWAAoW,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBsC,EAAWE,EAAS,CAAC,SAAsBF,EAAKtC,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,gGAAgG,EAAE,SAAS,oWAAoW,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBsC,EAAWE,EAAS,CAAC,SAAsBF,EAAKtC,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,gGAAgG,EAAE,SAAS,oWAAoW,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEsG,EAAYI,CAAc,CAAC,CAAC,EAAEW,EAAazB,CAAS,GAAgBtD,EAAKyF,GAAyB,CAAC,QAAQ,CAAC,oEAAqF9D,EAAM,UAAa,sEAAuFA,EAAM,UAAa,wEAAyFA,EAAM,SAAY,EAAE,SAAsB3B,EAAK3C,EAAwC,CAAC,sBAAsB,GAAK,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,QAAQ2B,GAAW,SAAS8E,EAAU,UAAU,gBAAgB,wBAAwB,SAAS,mBAAmB,kBAAkB,MAAM,CAAC,OAAO,EAAE,QAAQ7E,EAAW,iBAAiBwF,EAAiB,SAAS,YAAY,UAAU,GAAK,MAAM,CAAC,qBAAqB,wEAAwE,6BAA6B,MAAM,EAAE,wBAAwB,CAAC,EAAE,+BAA+B,WAAW,8BAA8B,KAAK,8BAA8B,GAAG,8BAA8B,GAAG,+BAA+B,GAAG,8BAA8B,GAAG,8BAA8B,GAAG,+BAA+B,GAAG,8BAA8B,IAAI,8BAA8B,EAAE,6BAA6B,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGrG,EAAqB,CAAC,UAAU,CAAC,wBAAwB,CAAC,EAAE,+BAA+B,WAAW,8BAA8B,KAAK,8BAA8B,GAAG,8BAA8B,GAAG,+BAA+B,GAAG,8BAA8B,GAAG,8BAA8B,GAAG,+BAA+B,GAAG,8BAA8B,IAAI,8BAA8B,EAAE,6BAA6B,CAAC,CAAC,EAAE4F,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,EAAEY,GAAa,GAAgBhF,EAAKyF,GAAyB,CAAC,QAAQ,CAAC,oEAAqF9D,EAAM,UAAa,sEAAuFA,EAAM,UAAa,wEAAyFA,EAAM,SAAY,EAAE,SAAsB3B,EAAK3C,EAAwC,CAAC,sBAAsB,GAAK,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,QAAQ2B,GAAW,SAAS6E,GAAU,UAAU,gBAAgB,wBAAwB,SAAS,mBAAmB,kBAAkB,MAAM,CAAC,OAAO,EAAE,QAAQ5E,EAAW,iBAAiBwF,EAAiB,SAAS,YAAY,UAAU,GAAK,MAAM,CAAC,qBAAqB,wEAAwE,6BAA6B,MAAM,EAAE,wBAAwB,CAAC,EAAE,+BAA+B,WAAW,8BAA8B,KAAK,8BAA8B,GAAG,8BAA8B,GAAG,+BAA+B,GAAG,8BAA8B,GAAG,8BAA8B,GAAG,+BAA+B,GAAG,8BAA8B,IAAI,8BAA8B,EAAE,6BAA6B,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAezE,EAAKwF,EAA0B,CAAC,OAAO,EAAE,SAAsBxF,EAAK9C,EAA8B,CAAC,UAAU,0BAA0B,iBAAiBuH,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBzE,EAAK5C,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE6H,GAAa7B,CAAS,GAAgBmC,EAAM9H,GAAyC,CAAC,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,QAAQ0B,GAAW,UAAU,gBAAgB,wBAAwB,SAAS,mBAAmB,UAAU,QAAQF,EAAW,iBAAiBwF,EAAiB,SAAS,YAAY,UAAU,GAAK,SAAS,CAACpB,GAAwBrD,EAAK0F,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASC,GAA4B3F,EAAKwF,EAA0B,CAAC,OAAO,GAAG,SAAsBxF,EAAK9C,EAA8B,CAAC,UAAU,yBAAyB,iBAAiBuH,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBzE,EAAKxC,GAAO,CAAC,UAAUmI,EAAc,CAAC,EAAE,UAAU,cAAc,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,oBAAoB,UAAU,GAAM,QAAQ,YAAY,MAAM,OAAO,GAAGvH,EAAqB,CAAC,UAAU,CAAC,UAAUuH,EAAc,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAc,CAAC,CAAC,CAAC,EAAE3B,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEjB,GAAwBnD,EAAK0F,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASE,GAA6B5F,EAAKwF,EAA0B,CAAC,OAAO,GAAG,SAAsBxF,EAAK9C,EAA8B,CAAC,UAAU,0BAA0B,iBAAiBuH,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBzE,EAAKxC,GAAO,CAAC,UAAUoI,EAAe,CAAC,EAAE,UAAU5C,EAAU,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,oBAAoB,UAAU,GAAK,QAAQ,YAAY,MAAM,OAAO,GAAG5E,EAAqB,CAAC,UAAU,CAAC,UAAUwH,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE5B,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEgB,GAAa,GAAgBpF,EAAKtC,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,8BAA8B,iBAAiB+G,EAAiB,SAAS,YAAY,MAAM,CAAC,WAAWd,EAAS,EAAE,SAAsB4B,EAAM7H,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,oBAAoB,iBAAiB+G,EAAiB,SAAS,YAAY,SAAS,CAACY,GAAa,GAAgBrF,EAAKwF,EAA0B,CAAC,GAAGpH,EAAqB,CAAC,UAAU,CAAC,OAAO,CAAC,EAAE,UAAU,CAAC,OAAO,CAAC,EAAE,UAAU,CAAC,OAAO,CAAC,CAAC,EAAE4F,EAAYI,CAAc,EAAE,SAAsBpE,EAAK9C,EAA8B,CAAC,UAAU,0BAA0B,iBAAiBuH,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBzE,EAAK5C,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEqG,IAAwBzD,EAAKwF,EAA0B,CAAC,SAAsBxF,EAAK9C,EAA8B,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,iBAAiBuH,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBzE,EAAKpC,EAAM,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,GAAK,QAAQgG,GAAU,QAAQ,SAAS,OAAO,uEAAuE,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,cAAc,EAAE,eAAe,EAAE,OAAO,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEF,IAAwB1D,EAAKlC,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,YAAY0E,GAAmB,OAAO,OAAO,oBAAoB,GAAGpD,EAAkB8D,CAAS,CAAC,EAAE,UAAU,iBAAiB,iBAAiBuB,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,GAAGrG,EAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,WAAWoE,GAAmB,OAAO,OAAO,+BAA+BA,GAAmB,OAAO,OAAO,0BAA0B,GAAGpD,EAAkB8D,CAAS,CAAC,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,YAAYV,GAAmB,OAAO,OAAO,mBAAmB,GAAGpD,EAAkB8D,CAAS,CAAC,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,YAAYV,GAAmB,OAAO,OAAO,0BAA0B,GAAGpD,EAAkB8D,CAAS,CAAC,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,YAAYV,GAAmB,OAAO,OAAO,0BAA0B,GAAGpD,EAAkB8D,CAAS,CAAC,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,YAAYV,GAAmB,OAAO,OAAO,0BAA0B,GAAGpD,EAAkB8D,CAAS,CAAC,CAAC,CAAC,EAAEc,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAepE,EAAKnC,GAAqC,CAAC,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,IAAI,QAAQ0B,GAAW,WAAW,CAAC,IAAI,gDAAgD,eAAe,GAAG,IAAI,OAAO,QAAQsG,IAA2BrD,GAAmB,GAAG,GAAG,IAAI,EAAE,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,MAAM,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,wBAAwB,SAAS,mBAAmB,UAAU,QAAQvD,EAAW,iBAAiBwF,EAAiB,SAAS,YAAY,UAAU,GAAK,MAAM,CAAC,OAAO,YAAY,KAAK,wLAAwL,QAAQ,IAAI,aAAa,YAAY,WAAW,uLAAuL,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQqB,GAAI,CAAC,kFAAkF,kFAAkF,0RAA0R,sTAAsT,2RAA2R,0RAA0R,4aAA4a,mMAAmM,gMAAgM,mKAAmK,gSAAgS,mSAAmS,yQAAyQ,qLAAqL,iGAAiG,yIAAyI,+JAA+J,sFAAsF,2SAA2S,yRAAyR,qMAAqM,mOAAmO,+EAA+E,8FAA8F,+GAA+G,mOAAmO,4GAA4G,+EAA+E,8FAA8F,6DAA6D,uHAAuH,yEAAyE,yEAAyE,+DAA+D,8DAA8D,yEAAyE,+DAA+D,8JAA8J,qEAAqE,GAAeA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAiBA,GAAI,GAAiBA,GAAI,GAAiBA,GAAI,GAAiBA,GAAI,GAAiBA,EAAG,EAW39wCC,EAAgBC,GAAQnE,GAAUiE,GAAI,cAAc,EAASG,GAAQF,EAAgBA,EAAgB,YAAY,gBAAgBA,EAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,IAAI,EAAEG,GAAoBH,EAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,sBAAsB,gBAAgB,GAAM,MAAM,cAAc,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,2BAA2B,gBAAgB,GAAM,MAAM,eAAe,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,qWAAqW,gBAAgB,GAAM,MAAM,UAAU,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,eAAe,gBAAgB,GAAM,MAAM,YAAY,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,cAAc,gBAAgB,GAAM,MAAM,QAAQ,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,wBAAwB,sHAAsH,MAAM,UAAU,KAAKA,EAAY,eAAe,EAAE,UAAU,CAAC,aAAa,GAAK,MAAM,UAAU,KAAKA,EAAY,OAAO,EAAE,UAAU,CAAC,aAAa,GAAK,MAAM,uBAAuB,KAAKA,EAAY,OAAO,EAAE,UAAU,CAAC,aAAa,GAAK,MAAM,mBAAmB,KAAKA,EAAY,OAAO,EAAE,UAAU,CAAC,aAAa,GAAM,MAAM,uBAAuB,KAAKA,EAAY,OAAO,EAAE,UAAU,CAAC,aAAa,GAAK,MAAM,2BAA2B,KAAKA,EAAY,OAAO,EAAE,UAAU,CAAC,aAAa,GAAK,MAAM,YAAY,KAAKA,EAAY,OAAO,EAAE,UAAU,CAAC,aAAa,GAAM,MAAM,QAAQ,KAAKA,EAAY,OAAO,EAAE,UAAU,CAAC,aAAa,GAAK,MAAM,SAAS,KAAKA,EAAY,OAAO,EAAE,UAAU,CAAC,aAAa,aAAa,QAAQ,CAAC,aAAa,SAAS,WAAW,gBAAgB,eAAe,cAAc,EAAE,aAAa,CAAC,QAAQ,SAAS,MAAM,gBAAgB,eAAe,cAAc,EAAE,MAAM,aAAa,KAAKA,EAAY,IAAI,EAAE,UAAUpI,IAAiB,SAAY,CAAC,GAAGA,GAAe,QAAW,wBAAwB,GAAG,YAAY,OAAU,OAAO,OAAU,MAAM,YAAY,EAAE,UAAU,CAAC,aAAa,4WAA4W,MAAM,UAAU,KAAKoI,EAAY,QAAQ,EAAE,UAAU,CAAC,aAAa,cAAc,MAAM,YAAY,KAAKA,EAAY,QAAQ,CAAC,CAAC,EAAEC,GAASL,EAAgB,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,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,uEAAuE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,uEAAuE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,yEAAyE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGnJ,GAAW,GAAGO,GAAY,GAAGI,GAAY,GAAGI,GAAW,GAAG0I,EAAoCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAsCC,EAAK,EAAE,GAAGD,EAAsCC,EAAK,EAAE,GAAGD,EAAsCC,EAAK,EAAE,GAAGD,EAAsCC,EAAK,EAAE,GAAGD,EAAsCC,EAAK,EAAE,GAAoBA,GAAQ,UAAaC,GAA6CD,GAAQ,SAAY,EAAE,CAAC,EAAE,GAAoBA,GAAQ,UAAaC,GAA6CD,GAAQ,SAAY,EAAE,CAAC,EAAE,GAAoBA,GAAQ,UAAaC,GAA6CD,GAAQ,SAAY,EAAE,CAAC,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC",
  "names": ["ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "isPlayingRef", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "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", "BadgeFonts", "getFonts", "osNrKLUoW_default", "SmartComponentScopedContainerWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "SmartComponentScopedContainer", "SpacerFonts", "mx16WJopx_default", "RichTextWithFXWithOptimizedAppearEffect", "RichText", "ButtonFonts", "LC8Unv403_default", "MotionDivWithFXWithOptimizedAppearEffect", "motion", "VideoFonts", "Video", "ImageWithFXWithOptimizedAppearEffect", "Image2", "Video1Controls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "animation1", "transition3", "animation2", "transition4", "animation3", "animation4", "transition5", "animation5", "toResponsiveImage", "value", "transition6", "animation6", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "badge", "button2", "content", "content2", "distribute", "height", "id", "image", "image2", "subtext", "titleOrange", "titleWhite", "video", "videoFile", "visible", "visible2", "visibleBothButtens", "visibleBUTTON1", "visibleLinkingText", "visibleStandardSubtext", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "C6O5YWYVt", "UsKRgZ9xx", "tDBtcpP4K", "vGj6xqXsT", "DuouXl905", "nDixdAAOp", "rroikLTHN", "YsUYn0D_A", "aP7c5LPJA", "yrnRzkmOa", "tJv8QzCzC", "HEq8_ZY61", "nbKcYCisa", "FfkgZT_52", "dwbumLiZE", "YoTuIAb9r", "doUesItk0", "Xw15JWH5r", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "router", "useRouter", "isDisplayed6", "isDisplayed7", "LayoutGroup", "u", "ComponentViewportProvider", "ComponentPresetsProvider", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "getLoadingLazyAtYPosition", "css", "FramerhTS3nR2qQ", "withCSS", "hTS3nR2qQ_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset"]
}
