{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/LRm7LwEbH8VDyzeZshbR/PfMkzaTy7K3rzoEru7ge/Counter1.js", "ssg:https://framerusercontent.com/modules/HSLAcq4tkFNzTq4YffT7/SSVgHYHwiUoihlNotALh/jxUS8fQk4.js", "ssg:https://framerusercontent.com/modules/cv0NvdW4nvSDwNm5ptJg/NqTL9kaSJis10LALX6hU/FHMgJTAO9.js", "ssg:https://framerusercontent.com/modules/SgujR7jYM6b3n7q0Le5L/fd10zS69GPB7PI5R7BW9/GaVyvGoYC-0.js", "ssg:https://framerusercontent.com/modules/SgujR7jYM6b3n7q0Le5L/fd10zS69GPB7PI5R7BW9/GaVyvGoYC.js", "ssg:https://framerusercontent.com/modules/UW6L8dd33hFs3lUb9m2u/Rcl07ouS2liYPkyoFkyB/GaVyvGoYC.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useState,useEffect,useRef}from\"react\";import{motion}from\"framer-motion\";import{addPropertyControls,ControlType}from\"framer\";const CounterStyles={container:{display:\"flex\",justifyContent:\"center\",alignItems:\"center\"}};export function Counter(props){const{start,end,speed,gapSize,prefixText,suffixText,prefixFont,suffixFont,prefixColor,suffixColor,loop,decimalSeparatorType,textSize,selectedFont,textColor,startOnViewport,restartOnViewport,incrementType}=props;const[count,setCount]=useState(start);const[isVisible,setIsVisible]=useState(false);const containerRef=useRef(null);useEffect(()=>{const observer=new IntersectionObserver(entries=>{const entry=entries[0];setIsVisible(entry.isIntersecting);});if(containerRef.current){observer.observe(containerRef.current);}return()=>{if(containerRef.current){observer.unobserve(containerRef.current);}};},[]);useEffect(()=>{const updateCount=()=>{const increment=incrementType===\"integer\"?1:10;setCount(prevCount=>{const nextCount=parseFloat((prevCount+increment).toFixed(2));return nextCount>=end?end:nextCount;});};if(isVisible||!startOnViewport&&start!==end){const intervalId=setInterval(updateCount,speed);return()=>{clearInterval(intervalId);};}else if(startOnViewport&&isVisible){setCount(start);}},[count,start,end,loop,isVisible,speed,startOnViewport,incrementType]);useEffect(()=>{if(restartOnViewport&&isVisible){setCount(start)// Restart the animation when re-entering the viewport\n;}},[isVisible,restartOnViewport,start]);const formatNumber=number=>{if(decimalSeparatorType===\"comma\"){return number.toLocaleString(\"en-US\");}else if(decimalSeparatorType===\"period\"){return number.toLocaleString(\"en-US\").replace(/,/g,\".\");}else{return number.toFixed(incrementType===\"integer\"?0:1);}};return /*#__PURE__*/_jsxs(motion.div,{ref:containerRef,style:{...CounterStyles.container,gap:`${gapSize}px`,flexDirection:\"row\",alignItems:\"center\",fontSize:`${textSize}px`,fontFamily:selectedFont.fontFamily,fontWeight:selectedFont.fontWeight,color:textColor},children:[/*#__PURE__*/_jsx(\"span\",{style:{fontFamily:prefixFont.fontFamily,fontWeight:prefixFont.fontWeight,color:prefixColor},children:prefixText}),/*#__PURE__*/_jsx(\"span\",{children:formatNumber(count)}),/*#__PURE__*/_jsx(\"span\",{style:{fontFamily:suffixFont.fontFamily,fontWeight:suffixFont.fontWeight,color:suffixColor},children:suffixText})]});}Counter.defaultProps={start:0,end:100,speed:100,prefixText:\"\",suffixText:\"\",loop:false,decimalSeparatorType:\"comma\",textSize:36,selectedFont:{fontFamily:\"Inter\",fontWeight:500,systemFont:true},textColor:\"#D3D3D3\",startOnViewport:false,incrementType:\"integer\"};addPropertyControls(Counter,{startOnViewport:{type:ControlType.Boolean,title:\"Viewport\",defaultValue:false,enabledTitle:\"On\",disabledTitle:\"Off\"},restartOnViewport:{type:ControlType.Boolean,title:\"Replay\",defaultValue:false,enabledTitle:\"Yes\",disabledTitle:\"No\"},selectedFont:{title:\"Font\",type:ControlType.Font,defaultValue:{fontFamily:\"Inter\",fontWeight:500,systemFont:true}},textSize:{title:\"Font Size\",type:ControlType.Number,min:8,max:240,step:1},textColor:{type:ControlType.Color,title:\"Font Color\"},start:{type:ControlType.Number,title:\"Start Number\",defaultValue:0,displayStepper:true},end:{type:ControlType.Number,title:\"End Number\",defaultValue:10,displayStepper:true},decimalSeparatorType:{type:ControlType.Enum,title:\"Separator\",defaultValue:\"comma\",options:[\"comma\",\"period\",\"none\"],optionTitles:[\"Comma (1,000)\",\"Decimal (1.000)\",\"None\"]},incrementType:{type:ControlType.Enum,title:\"Increment Type\",defaultValue:\"integer\",options:[\"integer\",\"decimal\"],optionTitles:[\"Integer\",\"Decimal\"]},prefixText:{type:ControlType.String,title:\"Prefix\",defaultValue:\"\"},prefixFont:{title:\"Prefix Font\",type:ControlType.Font,defaultValue:{fontFamily:\"Inter\",fontWeight:500,systemFont:true}},prefixColor:{type:ControlType.Color,title:\"Prefix Color\"},suffixText:{type:ControlType.String,title:\"Suffix\",defaultValue:\"\"},suffixFont:{title:\"Suffix Font\",type:ControlType.Font,defaultValue:{fontFamily:\"Inter\",fontWeight:500,systemFont:true}},suffixColor:{type:ControlType.Color,title:\"Suffix Color\"},gapSize:{type:ControlType.Number,title:\"Gap Size\",defaultValue:4,min:0,max:100,step:4},speed:{type:ControlType.Number,title:\"Speed (ms)\",defaultValue:100,min:0,max:2e3,step:10},loop:{type:ControlType.Boolean,title:\"Loop Animation\",defaultValue:false,enabledTitle:\"On\",disabledTitle:\"Off\",description:\"[Built by Asif Kabir](https://www.youtube.com/channel/UCujbStV-Rp-QGfiHOKA9AvA)\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"Counter\":{\"type\":\"reactComponent\",\"name\":\"Counter\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Counter1.map", "// Generated by Framer (c563d2c)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const serializationHash=\"framer-o95vO\";const variantClassNames={a0voNcFQp:\"framer-v-1nt9tff\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,image,width,...props})=>{return{...props,jf5iuaXDD:image??props.jf5iuaXDD??{alt:\"\",src:\"https://framerusercontent.com/images/dYxqRXGi2CD7S2h27FoVVhAwm8.svg\"}};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,jf5iuaXDD,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"a0voNcFQp\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:370,pixelWidth:370,sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(jf5iuaXDD)},className:cx(scopingClassNames,\"framer-1nt9tff\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"a0voNcFQp\",ref:ref??ref1,style:{...style}})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-o95vO.framer-ct9qe0, .framer-o95vO .framer-ct9qe0 { display: block; }\",\".framer-o95vO.framer-1nt9tff { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 336px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 336px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-o95vO.framer-1nt9tff { gap: 0px; } .framer-o95vO.framer-1nt9tff > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-o95vO.framer-1nt9tff > :first-child { margin-top: 0px; } .framer-o95vO.framer-1nt9tff > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 336\n * @framerIntrinsicWidth 336\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"jf5iuaXDD\":\"image\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerjxUS8fQk4=withCSS(Component,css,\"framer-o95vO\");export default FramerjxUS8fQk4;FramerjxUS8fQk4.displayName=\"HoverLoop\";FramerjxUS8fQk4.defaultProps={height:336,width:336};addPropertyControls(FramerjxUS8fQk4,{jf5iuaXDD:{__defaultAssetReference:\"data:framer/asset-reference,dYxqRXGi2CD7S2h27FoVVhAwm8.svg?originalFilename=Circle1%282%29.svg&preferredSize=auto\",__vekterDefault:{alt:\"\",assetReference:\"data:framer/asset-reference,dYxqRXGi2CD7S2h27FoVVhAwm8.svg?originalFilename=Circle1%282%29.svg&preferredSize=auto\"},description:\"Enter Loop Image\",title:\"Image\",type:ControlType.ResponsiveImage}});addFonts(FramerjxUS8fQk4,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerjxUS8fQk4\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"jf5iuaXDD\\\":\\\"image\\\"}\",\"framerIntrinsicHeight\":\"336\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"336\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./jxUS8fQk4.map", "// Generated by Framer (cf4c6d7)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Counter}from\"https://framerusercontent.com/modules/LRm7LwEbH8VDyzeZshbR/PfMkzaTy7K3rzoEru7ge/Counter1.js\";import HoverLoop from\"https://framerusercontent.com/modules/HSLAcq4tkFNzTq4YffT7/SSVgHYHwiUoihlNotALh/jxUS8fQk4.js\";const CounterFonts=getFonts(Counter);const HoverLoopFonts=getFonts(HoverLoop);const CounterControls=getPropertyControls(Counter);const cycleOrder=[\"ncicT9mrv\",\"eDCqPsbsZ\",\"EbfsKzA6g\"];const serializationHash=\"framer-t1P8z\";const variantClassNames={EbfsKzA6g:\"framer-v-1v30ca9\",eDCqPsbsZ:\"framer-v-cj0421\",ncicT9mrv:\"framer-v-1isriul\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:0,delay:0,duration:4,type:\"spring\"};const animation={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableEnumMap={\"Comma (1,000)\":\"comma\",\"Decimal (1.000)\":\"period\",None:\"none\"};const humanReadableVariantMap={\"Variant 1\":\"ncicT9mrv\",Phone:\"EbfsKzA6g\",Tablet:\"eDCqPsbsZ\"};const getProps=({circleImage,endNumber,fontColor,gapSize,height,id,prefix,prefixColor,separator,startNumber,suffix,suffixColor,title,titleColor,width,...props})=>{return{...props,bD_026cE5:prefixColor??props.bD_026cE5??\"rgb(0, 153, 255)\",bSSe3wt8o:titleColor??props.bSSe3wt8o??\"var(--token-4001f9de-95fe-462f-9eb2-b24e0ee8c2df, rgb(33, 154, 40))\",CVHdWB2OM:gapSize??props.CVHdWB2OM??12,e8mZeozPO:humanReadableEnumMap[separator]??separator??props.e8mZeozPO??\"none\",enxxvuN04:startNumber??props.enxxvuN04??24,H3y2MaW99:circleImage??props.H3y2MaW99??{src:\"https://framerusercontent.com/images/dYxqRXGi2CD7S2h27FoVVhAwm8.svg\"},H4Fvzov37:endNumber??props.H4Fvzov37??24,LX8zCVPPJ:prefix??props.LX8zCVPPJ,oqT7sNuQQ:suffix??props.oqT7sNuQQ??\"Monate\",qiPxLUN4N:fontColor??props.qiPxLUN4N??\"rgb(0, 0, 0)\",T7GKxcIVZ:suffixColor??props.T7GKxcIVZ??\"rgb(0, 0, 0)\",variant:humanReadableVariantMap[props.variant]??props.variant??\"ncicT9mrv\",XXuihLtXu:title??props.XXuihLtXu??\"Laufzeit\"};};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,H3y2MaW99,enxxvuN04,H4Fvzov37,qiPxLUN4N,XXuihLtXu,bSSe3wt8o,oqT7sNuQQ,LX8zCVPPJ,bD_026cE5,T7GKxcIVZ,CVHdWB2OM,e8mZeozPO,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ncicT9mrv\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\"},className:cx(scopingClassNames,\"framer-1isriul\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"ncicT9mrv\",ref:refBinding,style:{...style},...addPropertyOverrides({EbfsKzA6g:{\"data-framer-name\":\"Phone\"},eDCqPsbsZ:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByYXRhIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Prata Regular\", \"Prata Regular Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-letter-spacing\":\"0.03em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-bSSe3wt8o-FHMgJTAO9))\"},children:\"Laufzeit\"})}),className:\"framer-1q8d63o\",fonts:[\"CUSTOM;Prata Regular\"],layoutDependency:layoutDependency,layoutId:\"lRzonHA_j\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-bSSe3wt8o-FHMgJTAO9)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-bSSe3wt8o-FHMgJTAO9\":bSSe3wt8o},text:XXuihLtXu,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({EbfsKzA6g:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByYXRhIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Prata Regular\", \"Prata Regular Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"0.03em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-bSSe3wt8o-FHMgJTAO9))\"},children:\"Laufzeit\"})})},eDCqPsbsZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByYXRhIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Prata Regular\", \"Prata Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.03em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-bSSe3wt8o-FHMgJTAO9))\"},children:\"Laufzeit\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1gjpjep-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"pnrqhFkHg-container\",nodeId:\"pnrqhFkHg\",rendersWithMotion:true,scopeId:\"FHMgJTAO9\",children:/*#__PURE__*/_jsx(Counter,{decimalSeparatorType:e8mZeozPO,end:H4Fvzov37,gapSize:CVHdWB2OM,height:\"100%\",id:\"pnrqhFkHg\",incrementType:\"integer\",layoutId:\"pnrqhFkHg\",loop:false,prefixColor:bD_026cE5,prefixFont:{},prefixText:LX8zCVPPJ,restartOnViewport:false,selectedFont:{fontFamily:'\"Inter\", sans-serif',fontStyle:\"normal\"},speed:200,start:enxxvuN04,startOnViewport:true,suffixColor:T7GKxcIVZ,suffixFont:{},suffixText:oqT7sNuQQ,textColor:qiPxLUN4N,textSize:34,width:\"100%\",...addPropertyOverrides({EbfsKzA6g:{textSize:20},eDCqPsbsZ:{textSize:26}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:(componentViewport?.height||366)-29.5,width:`calc(${componentViewport?.width||\"100vw\"} - 29.5px)`,y:(componentViewport?.y||0)+15,...addPropertyOverrides({EbfsKzA6g:{height:170.5},eDCqPsbsZ:{height:(componentViewport?.height||230)-29.5}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1v4d6ai-container\",layoutDependency:layoutDependency,layoutId:\"C2lyQdxIO-container\",nodeId:\"C2lyQdxIO\",rendersWithMotion:true,scopeId:\"FHMgJTAO9\",whileHover:animation,children:/*#__PURE__*/_jsx(HoverLoop,{height:\"100%\",id:\"C2lyQdxIO\",jf5iuaXDD:toResponsiveImage(H3y2MaW99),layoutId:\"C2lyQdxIO\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-t1P8z.framer-1uymdzl, .framer-t1P8z .framer-1uymdzl { display: block; }\",\".framer-t1P8z.framer-1isriul { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 31px; height: 366px; justify-content: center; overflow: hidden; padding: 4px; position: relative; width: 366px; }\",\".framer-t1P8z .framer-1q8d63o { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-t1P8z .framer-1gjpjep-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-t1P8z .framer-1v4d6ai-container { bottom: 15px; flex: none; left: 15px; position: absolute; right: 15px; top: 15px; will-change: var(--framer-will-change-effect-override, transform); z-index: 5; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-t1P8z.framer-1isriul { gap: 0px; } .framer-t1P8z.framer-1isriul > * { margin: 0px; margin-bottom: calc(31px / 2); margin-top: calc(31px / 2); } .framer-t1P8z.framer-1isriul > :first-child { margin-top: 0px; } .framer-t1P8z.framer-1isriul > :last-child { margin-bottom: 0px; } }\",\".framer-t1P8z.framer-v-cj0421.framer-1isriul { aspect-ratio: 1 / 1; gap: 27px; height: var(--framer-aspect-ratio-supported, 230px); width: 230px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-t1P8z.framer-v-cj0421.framer-1isriul { gap: 0px; } .framer-t1P8z.framer-v-cj0421.framer-1isriul > * { margin: 0px; margin-bottom: calc(27px / 2); margin-top: calc(27px / 2); } .framer-t1P8z.framer-v-cj0421.framer-1isriul > :first-child { margin-top: 0px; } .framer-t1P8z.framer-v-cj0421.framer-1isriul > :last-child { margin-bottom: 0px; } }\",\".framer-t1P8z.framer-v-1v30ca9.framer-1isriul { aspect-ratio: 1 / 1; gap: 13px; height: var(--framer-aspect-ratio-supported, 240px); width: 240px; }\",\".framer-t1P8z.framer-v-1v30ca9 .framer-1v4d6ai-container { aspect-ratio: 1 / 1; bottom: unset; height: var(--framer-aspect-ratio-supported, 211px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-t1P8z.framer-v-1v30ca9.framer-1isriul { gap: 0px; } .framer-t1P8z.framer-v-1v30ca9.framer-1isriul > * { margin: 0px; margin-bottom: calc(13px / 2); margin-top: calc(13px / 2); } .framer-t1P8z.framer-v-1v30ca9.framer-1isriul > :first-child { margin-top: 0px; } .framer-t1P8z.framer-v-1v30ca9.framer-1isriul > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 366\n * @framerIntrinsicWidth 366\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"eDCqPsbsZ\":{\"layout\":[\"fixed\",\"fixed\"]},\"EbfsKzA6g\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"H3y2MaW99\":\"circleImage\",\"enxxvuN04\":\"startNumber\",\"H4Fvzov37\":\"endNumber\",\"qiPxLUN4N\":\"fontColor\",\"XXuihLtXu\":\"title\",\"bSSe3wt8o\":\"titleColor\",\"oqT7sNuQQ\":\"suffix\",\"LX8zCVPPJ\":\"prefix\",\"bD_026cE5\":\"prefixColor\",\"T7GKxcIVZ\":\"suffixColor\",\"CVHdWB2OM\":\"gapSize\",\"e8mZeozPO\":\"separator\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerFHMgJTAO9=withCSS(Component,css,\"framer-t1P8z\");export default FramerFHMgJTAO9;FramerFHMgJTAO9.displayName=\"FactInCircle\";FramerFHMgJTAO9.defaultProps={height:366,width:366};addPropertyControls(FramerFHMgJTAO9,{variant:{options:[\"ncicT9mrv\",\"eDCqPsbsZ\",\"EbfsKzA6g\"],optionTitles:[\"Variant 1\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},H3y2MaW99:{__defaultAssetReference:\"data:framer/asset-reference,dYxqRXGi2CD7S2h27FoVVhAwm8.svg?originalFilename=Circle1%282%29.svg&preferredSize=auto\",title:\"Circle Image\",type:ControlType.ResponsiveImage},enxxvuN04:{defaultValue:24,displayStepper:true,title:\"Start Number\",type:ControlType.Number},H4Fvzov37:{defaultValue:24,displayStepper:true,title:\"End Number\",type:ControlType.Number},qiPxLUN4N:{defaultValue:\"rgb(0, 0, 0)\",title:\"Font Color\",type:ControlType.Color},XXuihLtXu:{defaultValue:\"Laufzeit\",displayTextArea:false,title:\"Title\",type:ControlType.String},bSSe3wt8o:{defaultValue:\"var(--token-4001f9de-95fe-462f-9eb2-b24e0ee8c2df, rgb(33, 154, 40))\",title:\"Title Color\",type:ControlType.Color},oqT7sNuQQ:{defaultValue:\"Monate\",title:\"Suffix\",type:ControlType.String},LX8zCVPPJ:{defaultValue:\"\",title:\"Prefix\",type:ControlType.String},bD_026cE5:{defaultValue:\"rgb(0, 153, 255)\",title:\"Prefix Color\",type:ControlType.Color},T7GKxcIVZ:{defaultValue:\"rgb(0, 0, 0)\",title:\"Suffix Color\",type:ControlType.Color},CVHdWB2OM:{defaultValue:12,max:100,min:0,step:4,title:\"Gap Size\",type:ControlType.Number},e8mZeozPO:CounterControls?.[\"decimalSeparatorType\"]&&{...CounterControls[\"decimalSeparatorType\"],defaultValue:\"none\",description:undefined,hidden:undefined,title:\"Separator\"}});addFonts(FramerFHMgJTAO9,[{explicitInter:true,fonts:[{family:\"Prata Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/N6C9C0UTYgTIdaj6BvbyxPmeaE.woff2\"},{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\"}]},...CounterFonts,...HoverLoopFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerFHMgJTAO9\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"H3y2MaW99\\\":\\\"circleImage\\\",\\\"enxxvuN04\\\":\\\"startNumber\\\",\\\"H4Fvzov37\\\":\\\"endNumber\\\",\\\"qiPxLUN4N\\\":\\\"fontColor\\\",\\\"XXuihLtXu\\\":\\\"title\\\",\\\"bSSe3wt8o\\\":\\\"titleColor\\\",\\\"oqT7sNuQQ\\\":\\\"suffix\\\",\\\"LX8zCVPPJ\\\":\\\"prefix\\\",\\\"bD_026cE5\\\":\\\"prefixColor\\\",\\\"T7GKxcIVZ\\\":\\\"suffixColor\\\",\\\"CVHdWB2OM\\\":\\\"gapSize\\\",\\\"e8mZeozPO\\\":\\\"separator\\\"}\",\"framerIntrinsicWidth\":\"366\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"eDCqPsbsZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"EbfsKzA6g\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"366\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FHMgJTAO9.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UHJhdGEtcmVndWxhcg==\",\"--framer-font-family\":'\"Prata\", \"Prata Placeholder\", serif',\"--framer-font-size\":\"26px\",\"--framer-letter-spacing\":\"0.05em\",\"--framer-text-alignment\":\"center\"},children:\"Invest starting from \u20AC10,000\"})});export const v1=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:\"We are working on a medium-term bond with a lower minimum investment. Join our waiting list to be notified immediately once this product goes live.\"})});export const v2=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:\"We are working on a medium-term bond with a lower minimum investment. Join our waiting list to be notified immediately once this product goes live.\"})});export const v3=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 136, 136))\"},children:\"First Name*\"})});export const v4=\"Max\";export const v5=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 136, 136))\"},children:\"Last Name*\"})});export const v6=\"Sample\";export const v7=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 136, 136))\"},children:\"Email*\"})});export const v8=\"max@arcneo.de\";export const v9=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 136, 136))\"},children:\"Mobile Number\"})});export const v10=\"+49 160 89 127 80\";export const v11=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 136, 136))\"},children:\"*I agree to the privacy policies and consent to the processing of my data in accordance with the privacy statement.\"})});export const v12=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 136, 136))\"},children:\"I would like to subscribe to the newsletter and be regularly informed by email about current news, exclusive offers, and important updates. My email address will be used exclusively for this purpose.\"})});export const v13=\"Join the Waitlist\";export const v14=\"Successfully registered!\";\nexport const __FramerMetadata__ = {\"exports\":{\"v14\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v7\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v11\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v13\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v5\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v6\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v9\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v8\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v12\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v10\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (d65f646)\nimport*as localizedValues from\"./GaVyvGoYC-0.js\";const valuesByLocaleId={oaR2sRSqA:localizedValues};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value)return value;}locale=locale.fallback;}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (d65f646)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,FormBooleanInput,FormContainer,FormPlainTextInput,getFonts,getLoadingLazyAtYPosition,Image,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import getLocalizedValue from\"https://framerusercontent.com/modules/SgujR7jYM6b3n7q0Le5L/fd10zS69GPB7PI5R7BW9/GaVyvGoYC.js\";import Button5 from\"https://framerusercontent.com/modules/AbK3SOZbseVTp7P3tE5N/2DVrjr6TBw5VUdmlJeCG/YHsaT_Adt.js\";const Button5Fonts=getFonts(Button5);const cycleOrder=[\"nbpz6VdSX\",\"AMLfbIK4B\"];const serializationHash=\"framer-4yzCy\";const variantClassNames={AMLfbIK4B:\"framer-v-4o7onn\",nbpz6VdSX:\"framer-v-zfjmgo\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const formVariants=(form,variants,currentVariant)=>{switch(form.state){case\"success\":return variants.success??currentVariant;case\"pending\":return variants.pending??currentVariant;case\"error\":return variants.error??currentVariant;case\"incomplete\":return variants.incomplete??currentVariant;}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"nbpz6VdSX\",Phone:\"AMLfbIK4B\"};const getProps=({closeModal,height,id,nachname,vorname,width,...props})=>{return{...props,BTPGpIiBC:nachname??props.BTPGpIiBC??\"Nachname\",C7NU6kprB:closeModal??props.C7NU6kprB,Kij4gPjJ4:vorname??props.Kij4gPjJ4??\"Vorname\",variant:humanReadableVariantMap[props.variant]??props.variant??\"nbpz6VdSX\"};};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,C7NU6kprB,Kij4gPjJ4,BTPGpIiBC,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"nbpz6VdSX\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap3almce=activeVariantCallback(async(...args)=>{if(C7NU6kprB){const res=await C7NU6kprB(...args);if(res===false)return false;}});const onTap8m1u5y=activeVariantCallback(async(...args)=>{setVariant(\"nbpz6VdSX\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-zfjmgo\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"nbpz6VdSX\",ref:refBinding,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5,...style},...addPropertyOverrides({AMLfbIK4B:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-irbj3f\",\"data-framer-name\":\"Wrapper\",layoutDependency:layoutDependency,layoutId:\"MGMJibW2R\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-3x4b2u\",\"data-framer-name\":\"Top Bar\",layoutDependency:layoutDependency,layoutId:\"L08Iondr1\",style:{backgroundColor:\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-oclj0e\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"cu5XASB27\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-171nzgz\",\"data-framer-name\":\"Get out\",layoutDependency:layoutDependency,layoutId:\"vcCedpqqR\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+10+0+0+0+0+0+0+0),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/jGTHxgde2u1ZD06kKFKURw7zv8.svg\"},className:\"framer-10j7ggy\",\"data-framer-name\":\"icon\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"zKUbAXNOF\",onTap:onTap3almce})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16kygz0\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"bu_5WRQx0\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UHJhdGEtcmVndWxhcg==\",\"--framer-font-family\":'\"Prata\", \"Prata Placeholder\", serif',\"--framer-font-size\":\"26px\",\"--framer-letter-spacing\":\"0.05em\",\"--framer-text-alignment\":\"center\"},children:\"Investieren schon ab 10.000\u20AC \"})}),className:\"framer-sr1i2w\",fonts:[\"GF;Prata-regular\"],layoutDependency:layoutDependency,layoutId:\"yYdalg_Mi\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:\"Wir arbeiten mittelfristig an einer Anleihe mit einem niedrigeren Mindestinvestment. Tragen Sie sich auf unserer Warteliste ein, um sofort benachrichtigt zu werden, sobald dieses Produkt live geht.\"})}),className:\"framer-1007clq\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"YBPA5GmrE\",style:{\"--extracted-r6o4lv\":\"rgb(102, 102, 102)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({AMLfbIK4B:{children:getLocalizedValue(\"v2\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:\"Wir arbeiten mittelfristig an einer Anleihe mit einem niedrigeren Mindestinvestment. Tragen Sie sich auf unserer Warteliste ein, um sofort benachrichtigt zu werden, sobald dieses Produkt live geht.\"})})}},baseVariant,gestureVariant)})]})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ufwdej\",\"data-framer-name\":\"Middle\",layoutDependency:layoutDependency,layoutId:\"DMKe12pIb\",style:{backgroundColor:\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-6xerm0\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"YswkE6Hl2\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},children:/*#__PURE__*/_jsx(FormContainer,{action:\"https://api.framer.com/forms/v1/forms/5b03262c-7fab-4feb-973c-ae3af0bb5c17/submit\",className:\"framer-6dutiz\",layoutDependency:layoutDependency,layoutId:\"K6SG7GMQ8\",nodeId:\"K6SG7GMQ8\",redirectUrl:\"/\",children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsxs(motion.label,{className:\"framer-18u7qcg\",layoutDependency:layoutDependency,layoutId:\"u6dl41tF6\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v3\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 136, 136))\"},children:[\"Vorname\",/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1w3ko1f, var(--token-4001f9de-95fe-462f-9eb2-b24e0ee8c2df, rgb(54, 130, 58)))\"},children:\"*\"})]})}),className:\"framer-1afzhy6\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"LHWEy4Qh0\",style:{\"--extracted-1w3ko1f\":\"var(--token-4001f9de-95fe-462f-9eb2-b24e0ee8c2df, rgb(54, 130, 58))\",\"--extracted-r6o4lv\":\"rgb(136, 136, 136)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-2ofah2\",inputName:Kij4gPjJ4,layoutDependency:layoutDependency,layoutId:\"E2icL2zlK\",placeholder:getLocalizedValue(\"v4\",activeLocale)??\"Max\",required:true,style:{\"--framer-input-background\":\"rgba(187, 187, 187, 0.15)\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgba(136, 136, 136, 0.1)\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-radius-bottom-left\":\"10px\",\"--framer-input-border-radius-bottom-right\":\"10px\",\"--framer-input-border-radius-top-left\":\"10px\",\"--framer-input-border-radius-top-right\":\"10px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-font-color\":\"var(--token-3b832900-0623-40e5-8800-50a4b1a25e79, rgb(41, 41, 41))\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"rgb(153, 153, 153)\"},type:\"text\"})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-1vvpope\",layoutDependency:layoutDependency,layoutId:\"qcVQahPBi\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v5\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 136, 136))\"},children:[\"Nachname\",/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1w3ko1f, var(--token-c27c6b20-eb3e-4053-9be9-ec4f851394a6, rgb(33, 154, 40)))\"},children:\"*\"})]})}),className:\"framer-3l5fm5\",\"data-highlight\":true,fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"et0HqwlV6\",onTap:onTap8m1u5y,style:{\"--extracted-1w3ko1f\":\"var(--token-c27c6b20-eb3e-4053-9be9-ec4f851394a6, rgb(33, 154, 40))\",\"--extracted-r6o4lv\":\"rgb(136, 136, 136)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1ps39ox\",inputName:BTPGpIiBC,layoutDependency:layoutDependency,layoutId:\"LGFdiM1MO\",placeholder:getLocalizedValue(\"v6\",activeLocale)??\"Mustermann\",required:true,style:{\"--framer-input-background\":\"rgba(187, 187, 187, 0.15)\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgba(136, 136, 136, 0.1)\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-radius-bottom-left\":\"10px\",\"--framer-input-border-radius-bottom-right\":\"10px\",\"--framer-input-border-radius-top-left\":\"10px\",\"--framer-input-border-radius-top-right\":\"10px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-font-color\":\"var(--token-3b832900-0623-40e5-8800-50a4b1a25e79, rgb(41, 41, 41))\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"rgb(153, 153, 153)\"},type:\"text\"})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-syqe4c\",layoutDependency:layoutDependency,layoutId:\"JOcA46t3R\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v7\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 136, 136))\"},children:[\"E-Mail\",/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1w3ko1f, var(--token-c27c6b20-eb3e-4053-9be9-ec4f851394a6, rgb(33, 154, 40)))\"},children:\"*\"})]})}),className:\"framer-uazwqq\",\"data-highlight\":true,fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"FrE2JG18l\",onTap:onTap8m1u5y,style:{\"--extracted-1w3ko1f\":\"var(--token-c27c6b20-eb3e-4053-9be9-ec4f851394a6, rgb(33, 154, 40))\",\"--extracted-r6o4lv\":\"rgb(136, 136, 136)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1k7t9hq\",inputName:\"Email\",layoutDependency:layoutDependency,layoutId:\"gWKHgYMT7\",placeholder:getLocalizedValue(\"v8\",activeLocale)??\"max@arcneo.de\",required:true,style:{\"--framer-input-background\":\"rgba(187, 187, 187, 0.15)\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgba(136, 136, 136, 0.1)\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-radius-bottom-left\":\"10px\",\"--framer-input-border-radius-bottom-right\":\"10px\",\"--framer-input-border-radius-top-left\":\"10px\",\"--framer-input-border-radius-top-right\":\"10px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-font-color\":\"var(--token-3b832900-0623-40e5-8800-50a4b1a25e79, rgb(41, 41, 41))\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"rgb(153, 153, 153)\"},type:\"email\"})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-1qq5mzv\",layoutDependency:layoutDependency,layoutId:\"hFclMINke\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v9\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 136, 136))\"},children:\"Mobilnummer\"})}),className:\"framer-fli3kr\",\"data-framer-name\":\"Telefonnummer\",\"data-highlight\":true,fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"tfPkNW45n\",onTap:onTap8m1u5y,style:{\"--extracted-r6o4lv\":\"rgb(136, 136, 136)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-18z8xa6\",inputName:\"phone\",layoutDependency:layoutDependency,layoutId:\"SZ6CK4KgF\",placeholder:getLocalizedValue(\"v10\",activeLocale)??\"+49 160 89 127 80\",required:false,style:{\"--framer-input-background\":\"rgba(187, 187, 187, 0.15)\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgba(136, 136, 136, 0.1)\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-radius-bottom-left\":\"10px\",\"--framer-input-border-radius-bottom-right\":\"10px\",\"--framer-input-border-radius-top-left\":\"10px\",\"--framer-input-border-radius-top-right\":\"10px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-font-color\":\"var(--token-3b832900-0623-40e5-8800-50a4b1a25e79, rgb(41, 41, 41))\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"rgb(153, 153, 153)\"},type:\"tel\"})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-14gi7a9\",\"data-framer-name\":\"Checkbox - HNI\",layoutDependency:layoutDependency,layoutId:\"hazac44so\",children:[/*#__PURE__*/_jsx(FormBooleanInput,{className:\"framer-pz2ozp\",defaultChecked:false,inputName:\"Datenschutzerkl\\xe4rung zugestimmt\",layoutDependency:layoutDependency,layoutId:\"ig_N3B03d\",required:true,style:{\"--framer-input-background\":\"rgba(187, 187, 187, 0.2)\",\"--framer-input-boolean-checked-background\":\"var(--token-4001f9de-95fe-462f-9eb2-b24e0ee8c2df, rgb(54, 130, 58))\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgba(136, 136, 136, 0.2)\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-radius-bottom-left\":\"4px\",\"--framer-input-border-radius-bottom-right\":\"4px\",\"--framer-input-border-radius-top-left\":\"4px\",\"--framer-input-border-radius-top-right\":\"4px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-icon-color\":\"rgb(255, 255, 255)\"},type:\"checkbox\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v11\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 136, 136))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"11px\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, var(--token-4001f9de-95fe-462f-9eb2-b24e0ee8c2df, rgb(54, 130, 58)))\"},children:\"*\"}),\"Ich stimme den Datenschutzrichtlinien zu und erkl\\xe4re mich mit der Verarbeitung meiner Daten gem\\xe4\\xdf der Datenschutzerkl\\xe4rung einverstanden.\"]})}),className:\"framer-t42hpw\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"HiBCWd3xj\",style:{\"--extracted-1w3ko1f\":\"var(--token-4001f9de-95fe-462f-9eb2-b24e0ee8c2df, rgb(54, 130, 58))\",\"--extracted-r6o4lv\":\"rgb(136, 136, 136)\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-r03j7r\",\"data-framer-name\":\"Checkbox - Newsletter\",layoutDependency:layoutDependency,layoutId:\"xqTvRWMlM\",children:[/*#__PURE__*/_jsx(FormBooleanInput,{className:\"framer-bissgn\",defaultChecked:false,inputName:\"Newsletter\",layoutDependency:layoutDependency,layoutId:\"JdEXDRfS5\",style:{\"--framer-input-background\":\"rgba(187, 187, 187, 0.2)\",\"--framer-input-boolean-checked-background\":\"var(--token-4001f9de-95fe-462f-9eb2-b24e0ee8c2df, rgb(54, 130, 58))\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgba(136, 136, 136, 0.2)\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-radius-bottom-left\":\"4px\",\"--framer-input-border-radius-bottom-right\":\"4px\",\"--framer-input-border-radius-top-left\":\"4px\",\"--framer-input-border-radius-top-right\":\"4px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-icon-color\":\"rgb(255, 255, 255)\"},type:\"checkbox\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v12\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(136, 136, 136))\"},children:\"Ich m\\xf6chte den Newsletter abonnieren und regelm\\xe4\\xdfig per E-Mail \\xfcber aktuelle Neuigkeiten, exklusive Angebote und wichtige Updates informiert werden. Meine E-Mail-Adresse wird ausschlie\\xdflich f\\xfcr diesen Zweck verwendet.\"})}),className:\"framer-12midfr\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"x7YkEueA_\",style:{\"--extracted-r6o4lv\":\"rgb(136, 136, 136)\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:`calc(max(${componentViewport?.width||\"100vw\"} - 20px, 1px) - 40px)`,y:(componentViewport?.y||0)+10+0+0+304+0+0+0+20+457.6,...addPropertyOverrides({AMLfbIK4B:{width:`max(${componentViewport?.width||\"100vw\"} - 20px, 1px)`,y:(componentViewport?.y||0)+10+0+0+286+0+0+0+15+423.6}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-18e3qf9-container\",layoutDependency:layoutDependency,layoutId:\"FOEyhF_Q7-container\",nodeId:\"FOEyhF_Q7\",rendersWithMotion:true,scopeId:\"GaVyvGoYC\",children:/*#__PURE__*/_jsx(Button5,{height:\"100%\",id:\"FOEyhF_Q7\",layoutId:\"FOEyhF_Q7\",MbDsTmhRR:getLocalizedValue(\"v14\",activeLocale)??\"Erfolgreich eingetragen!\",pwnRctD9n:getLocalizedValue(\"v13\",activeLocale)??\"Auf Warteliste eintragen\",style:{height:\"100%\",width:\"100%\"},type:\"submit\",variant:formVariants(formState,{pending:\"eFBpU8zkE\",success:\"oiyYyyU2W\"},\"i1eZShIcx\"),width:\"100%\"})})})]})})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-4yzCy.framer-hiscqg, .framer-4yzCy .framer-hiscqg { display: block; }\",\".framer-4yzCy.framer-zfjmgo { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 513px; overflow: hidden; padding: 10px; position: relative; width: 513px; will-change: var(--framer-will-change-override, transform); }\",\".framer-4yzCy .framer-irbj3f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-4yzCy .framer-3x4b2u { 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; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-4yzCy .framer-oclj0e { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-4yzCy .framer-171nzgz { 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-end; padding: 0px; position: relative; width: 100%; }\",\".framer-4yzCy .framer-10j7ggy { align-content: center; align-items: center; aspect-ratio: 1 / 1; cursor: pointer; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 28px); justify-content: center; overflow: hidden; padding: 10px; position: relative; width: 28px; }\",\".framer-4yzCy .framer-16kygz0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-4yzCy .framer-sr1i2w, .framer-4yzCy .framer-1007clq { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-4yzCy .framer-ufwdej { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-4yzCy .framer-6xerm0 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-4yzCy .framer-6dutiz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 9px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 20px; position: relative; width: 100%; }\",\".framer-4yzCy .framer-18u7qcg, .framer-4yzCy .framer-1vvpope, .framer-4yzCy .framer-syqe4c { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-4yzCy .framer-1afzhy6 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",'.framer-4yzCy .framer-2ofah2, .framer-4yzCy .framer-1ps39ox, .framer-4yzCy .framer-1k7t9hq, .framer-4yzCy .framer-18z8xa6 { --framer-input-focused-border-color: #0099ff; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-family: \"Inter\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 14px; --framer-input-font-weight: 400; --framer-input-padding: 12px; flex: none; height: 40px; position: relative; width: 100%; }',\".framer-4yzCy .framer-3l5fm5, .framer-4yzCy .framer-uazwqq, .framer-4yzCy .framer-fli3kr { cursor: pointer; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-4yzCy .framer-1qq5mzv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px 0px 10px 0px; position: relative; width: 100%; }\",\".framer-4yzCy .framer-14gi7a9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-4yzCy .framer-pz2ozp, .framer-4yzCy .framer-bissgn { --framer-input-focused-border-color: var(--token-4001f9de-95fe-462f-9eb2-b24e0ee8c2df, #36823a); --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); position: relative; width: 16px; }\",\".framer-4yzCy .framer-t42hpw, .framer-4yzCy .framer-12midfr { -webkit-user-select: none; flex: 1 0 0px; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-4yzCy .framer-r03j7r { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px 0px 10px 0px; position: relative; width: 100%; }\",\".framer-4yzCy .framer-18e3qf9-container { flex: none; height: 40px; position: relative; width: 100%; }\",\".framer-4yzCy.framer-v-4o7onn.framer-zfjmgo { width: 345px; }\",\".framer-4yzCy.framer-v-4o7onn .framer-10j7ggy { height: var(--framer-aspect-ratio-supported, 24px); width: 24px; }\",\".framer-4yzCy.framer-v-4o7onn .framer-16kygz0 { gap: 5px; }\",\".framer-4yzCy.framer-v-4o7onn .framer-6dutiz { gap: 5px; padding: 15px 0px 10px 0px; }\",\".framer-4yzCy.framer-v-4o7onn .framer-18u7qcg, .framer-4yzCy.framer-v-4o7onn .framer-1vvpope, .framer-4yzCy.framer-v-4o7onn .framer-syqe4c, .framer-4yzCy.framer-v-4o7onn .framer-1qq5mzv { gap: 2px; padding: 0px 0px 8px 0px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 630.8\n * @framerIntrinsicWidth 513\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"513px\",null,null]},\"AMLfbIK4B\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"513px\",null,null]}}}\n * @framerVariables {\"C7NU6kprB\":\"closeModal\",\"Kij4gPjJ4\":\"vorname\",\"BTPGpIiBC\":\"nachname\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerGaVyvGoYC=withCSS(Component,css,\"framer-4yzCy\");export default FramerGaVyvGoYC;FramerGaVyvGoYC.displayName=\"Modal - 10k Waitlist\";FramerGaVyvGoYC.defaultProps={height:630.8,width:513};addPropertyControls(FramerGaVyvGoYC,{variant:{options:[\"nbpz6VdSX\",\"AMLfbIK4B\"],optionTitles:[\"Variant 1\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},C7NU6kprB:{title:\"Close Modal\",type:ControlType.EventHandler},Kij4gPjJ4:{defaultValue:\"Vorname\",title:\"Vorname\",type:ControlType.String},BTPGpIiBC:{defaultValue:\"Nachname\",title:\"Nachname\",type:ControlType.String}});addFonts(FramerGaVyvGoYC,[{explicitInter:true,fonts:[{family:\"Prata\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/prata/v20/6xKhdSpbNNCT-vWNAG_5LWwJ.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/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...Button5Fonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerGaVyvGoYC\",\"slots\":[],\"annotations\":{\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"630.8\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"C7NU6kprB\\\":\\\"closeModal\\\",\\\"Kij4gPjJ4\\\":\\\"vorname\\\",\\\"BTPGpIiBC\\\":\\\"nachname\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"513\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"513px\\\",null,null]},\\\"AMLfbIK4B\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"513px\\\",null,null]}}}\",\"framerColorSyntax\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "wZAA4L,IAAMA,GAAc,CAAC,UAAU,CAAC,QAAQ,OAAO,eAAe,SAAS,WAAW,QAAQ,CAAC,EAAS,SAASC,EAAQC,EAAM,CAAC,GAAK,CAAC,MAAAC,EAAM,IAAAC,EAAI,MAAAC,EAAM,QAAAC,EAAQ,WAAAC,EAAW,WAAAC,EAAW,WAAAC,EAAW,WAAAC,EAAW,YAAAC,EAAY,YAAAC,EAAY,KAAAC,EAAK,qBAAAC,EAAqB,SAAAC,EAAS,aAAAC,EAAa,UAAAC,EAAU,gBAAAC,EAAgB,kBAAAC,EAAkB,cAAAC,CAAa,EAAElB,EAAW,CAACmB,EAAMC,CAAQ,EAAEC,GAASpB,CAAK,EAAO,CAACqB,EAAUC,CAAY,EAAEF,GAAS,EAAK,EAAQG,EAAaC,EAAO,IAAI,EAAEC,GAAU,IAAI,CAAC,IAAMC,EAAS,IAAI,qBAAqBC,GAAS,CAAC,IAAMC,EAAMD,EAAQ,CAAC,EAAEL,EAAaM,EAAM,cAAc,CAAE,CAAC,EAAE,OAAGL,EAAa,SAASG,EAAS,QAAQH,EAAa,OAAO,EAAS,IAAI,CAAIA,EAAa,SAASG,EAAS,UAAUH,EAAa,OAAO,CAAG,CAAE,EAAE,CAAC,CAAC,EAAEE,GAAU,IAAI,CAAC,IAAMI,EAAY,IAAI,CAAC,IAAMC,EAAUb,IAAgB,UAAU,EAAE,GAAGE,EAASY,GAAW,CAAC,IAAMC,EAAU,YAAYD,EAAUD,GAAW,QAAQ,CAAC,CAAC,EAAE,OAAOE,GAAW/B,EAAIA,EAAI+B,CAAU,CAAC,CAAE,EAAE,GAAGX,GAAW,CAACN,GAAiBf,IAAQC,EAAI,CAAC,IAAMgC,EAAW,YAAYJ,EAAY3B,CAAK,EAAE,MAAM,IAAI,CAAC,cAAc+B,CAAU,CAAE,CAAE,MAASlB,GAAiBM,GAAWF,EAASnB,CAAK,CAAG,EAAE,CAACkB,EAAMlB,EAAMC,EAAIS,EAAKW,EAAUnB,EAAMa,EAAgBE,CAAa,CAAC,EAAEQ,GAAU,IAAI,CAAIT,GAAmBK,GAAWF,EAASnB,CAAK,CACl6C,EAAE,CAACqB,EAAUL,EAAkBhB,CAAK,CAAC,EAAE,IAAMkC,EAAaC,GAAYxB,IAAuB,QAAgBwB,EAAO,eAAe,OAAO,EAAWxB,IAAuB,SAAiBwB,EAAO,eAAe,OAAO,EAAE,QAAQ,KAAK,GAAG,EAAeA,EAAO,QAAQlB,IAAgB,UAAU,EAAE,CAAC,EAAK,OAAoBmB,EAAMC,EAAO,IAAI,CAAC,IAAId,EAAa,MAAM,CAAC,GAAG1B,GAAc,UAAU,IAAI,GAAGM,CAAO,KAAK,cAAc,MAAM,WAAW,SAAS,SAAS,GAAGS,CAAQ,KAAK,WAAWC,EAAa,WAAW,WAAWA,EAAa,WAAW,MAAMC,CAAS,EAAE,SAAS,CAAcwB,EAAK,OAAO,CAAC,MAAM,CAAC,WAAWhC,EAAW,WAAW,WAAWA,EAAW,WAAW,MAAME,CAAW,EAAE,SAASJ,CAAU,CAAC,EAAekC,EAAK,OAAO,CAAC,SAASJ,EAAahB,CAAK,CAAC,CAAC,EAAeoB,EAAK,OAAO,CAAC,MAAM,CAAC,WAAW/B,EAAW,WAAW,WAAWA,EAAW,WAAW,MAAME,CAAW,EAAE,SAASJ,CAAU,CAAC,CAAC,CAAC,CAAC,CAAE,CAACP,EAAQ,aAAa,CAAC,MAAM,EAAE,IAAI,IAAI,MAAM,IAAI,WAAW,GAAG,WAAW,GAAG,KAAK,GAAM,qBAAqB,QAAQ,SAAS,GAAG,aAAa,CAAC,WAAW,QAAQ,WAAW,IAAI,WAAW,EAAI,EAAE,UAAU,UAAU,gBAAgB,GAAM,cAAc,SAAS,EAAEyC,EAAoBzC,EAAQ,CAAC,gBAAgB,CAAC,KAAK0C,EAAY,QAAQ,MAAM,WAAW,aAAa,GAAM,aAAa,KAAK,cAAc,KAAK,EAAE,kBAAkB,CAAC,KAAKA,EAAY,QAAQ,MAAM,SAAS,aAAa,GAAM,aAAa,MAAM,cAAc,IAAI,EAAE,aAAa,CAAC,MAAM,OAAO,KAAKA,EAAY,KAAK,aAAa,CAAC,WAAW,QAAQ,WAAW,IAAI,WAAW,EAAI,CAAC,EAAE,SAAS,CAAC,MAAM,YAAY,KAAKA,EAAY,OAAO,IAAI,EAAE,IAAI,IAAI,KAAK,CAAC,EAAE,UAAU,CAAC,KAAKA,EAAY,MAAM,MAAM,YAAY,EAAE,MAAM,CAAC,KAAKA,EAAY,OAAO,MAAM,eAAe,aAAa,EAAE,eAAe,EAAI,EAAE,IAAI,CAAC,KAAKA,EAAY,OAAO,MAAM,aAAa,aAAa,GAAG,eAAe,EAAI,EAAE,qBAAqB,CAAC,KAAKA,EAAY,KAAK,MAAM,YAAY,aAAa,QAAQ,QAAQ,CAAC,QAAQ,SAAS,MAAM,EAAE,aAAa,CAAC,gBAAgB,kBAAkB,MAAM,CAAC,EAAE,cAAc,CAAC,KAAKA,EAAY,KAAK,MAAM,iBAAiB,aAAa,UAAU,QAAQ,CAAC,UAAU,SAAS,EAAE,aAAa,CAAC,UAAU,SAAS,CAAC,EAAE,WAAW,CAAC,KAAKA,EAAY,OAAO,MAAM,SAAS,aAAa,EAAE,EAAE,WAAW,CAAC,MAAM,cAAc,KAAKA,EAAY,KAAK,aAAa,CAAC,WAAW,QAAQ,WAAW,IAAI,WAAW,EAAI,CAAC,EAAE,YAAY,CAAC,KAAKA,EAAY,MAAM,MAAM,cAAc,EAAE,WAAW,CAAC,KAAKA,EAAY,OAAO,MAAM,SAAS,aAAa,EAAE,EAAE,WAAW,CAAC,MAAM,cAAc,KAAKA,EAAY,KAAK,aAAa,CAAC,WAAW,QAAQ,WAAW,IAAI,WAAW,EAAI,CAAC,EAAE,YAAY,CAAC,KAAKA,EAAY,MAAM,MAAM,cAAc,EAAE,QAAQ,CAAC,KAAKA,EAAY,OAAO,MAAM,WAAW,aAAa,EAAE,IAAI,EAAE,IAAI,IAAI,KAAK,CAAC,EAAE,MAAM,CAAC,KAAKA,EAAY,OAAO,MAAM,aAAa,aAAa,IAAI,IAAI,EAAE,IAAI,IAAI,KAAK,EAAE,EAAE,KAAK,CAAC,KAAKA,EAAY,QAAQ,MAAM,iBAAiB,aAAa,GAAM,aAAa,KAAK,cAAc,MAAM,YAAY,iFAAiF,CAAC,CAAC,ECAtsF,IAAMC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,EAAyL,IAAMC,GAAkBC,GAAW,OAAOA,GAAQ,UAAUA,IAAQ,MAAM,OAAOA,EAAM,KAAM,SAAiBA,EAAc,OAAOA,GAAQ,SAAS,CAAC,IAAIA,CAAK,EAAE,OAAkBC,GAAY,CAAC,OAAO,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAF,EAAM,SAAAG,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWP,GAAOI,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,UAAUF,GAAOE,EAAM,WAAW,CAAC,IAAI,GAAG,IAAI,qEAAqE,CAAC,GAAUC,GAAuB,CAACD,EAAME,IAAeF,EAAM,iBAAwBE,EAAS,KAAK,GAAG,EAAEF,EAAM,iBAAwBE,EAAS,KAAK,GAAG,EAAUC,GAA6BC,EAAW,SAASJ,EAAMK,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,UAAAC,EAAU,GAAGC,CAAS,EAAEnB,GAASK,CAAK,EAAO,CAAC,YAAAe,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAApB,CAAQ,EAAEqB,EAAgB,CAAC,eAAe,YAAY,QAAAX,EAAQ,kBAAAY,EAAiB,CAAC,EAAQC,EAAiBxB,GAAuBD,EAAME,CAAQ,EAAuCwB,EAAkBC,EAAGC,GAAkB,GAAhD,CAAC,CAAuE,EAAQC,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,EAAM,EAAQC,EAAkBC,EAAqB,EAAE,OAAoB3C,EAAK4C,EAAY,CAAC,GAAGxB,GAAUoB,EAAgB,SAAsBxC,EAAKC,GAAS,CAAC,QAAQU,EAAS,QAAQ,GAAM,SAAsBX,EAAKR,GAAW,CAAC,MAAMD,GAAY,SAAsBS,EAAK6C,GAAM,CAAC,GAAGtB,EAAU,GAAGI,EAAgB,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQmB,GAA0BJ,GAAmB,GAAG,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,MAAMA,GAAmB,OAAO,QAAQ,GAAGrD,GAAkBiC,CAAS,CAAC,EAAE,UAAUc,EAAGD,EAAkB,iBAAiBhB,EAAUM,CAAU,EAAE,mBAAmB,YAAY,iBAAiBS,EAAiB,SAAS,YAAY,IAAIpB,GAAKwB,EAAK,MAAM,CAAC,GAAGpB,CAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQ6B,GAAI,CAAC,kFAAkF,gFAAgF,+PAA+P,8WAA8W,EASzhHC,GAAgBC,EAAQrC,GAAUmC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,YAAYA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAG,EAAEG,EAAoBH,GAAgB,CAAC,UAAU,CAAC,wBAAwB,oHAAoH,gBAAgB,CAAC,IAAI,GAAG,eAAe,mHAAmH,EAAE,YAAY,mBAAmB,MAAM,QAAQ,KAAKI,EAAY,eAAe,CAAC,CAAC,EAAEC,EAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECThF,IAAMM,GAAaC,GAASC,CAAO,EAAQC,GAAeF,GAASG,EAAS,EAAQC,GAAgBC,GAAoBJ,CAAO,EAAQK,GAAW,CAAC,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAAAD,GAAU,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,OAAO,EAAE,MAAM,EAAE,SAAS,EAAE,KAAK,QAAQ,EAAQC,GAAU,CAAC,QAAQ,EAAE,OAAO,IAAI,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,EAAW,EAAQE,GAAkBC,GAAW,OAAOA,GAAQ,UAAUA,IAAQ,MAAM,OAAOA,EAAM,KAAM,SAAiBA,EAAc,OAAOA,GAAQ,SAAS,CAAC,IAAIA,CAAK,EAAE,OAAkBC,GAAW,CAAC,CAAC,MAAAD,EAAM,SAAAE,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWN,GAAOG,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAqB,CAAC,gBAAgB,QAAQ,kBAAkB,SAAS,KAAK,MAAM,EAAQC,GAAwB,CAAC,YAAY,YAAY,MAAM,YAAY,OAAO,WAAW,EAAQC,GAAS,CAAC,CAAC,YAAAC,EAAY,UAAAC,EAAU,UAAAC,EAAU,QAAAC,EAAQ,OAAAC,EAAO,GAAAC,EAAG,OAAAC,EAAO,YAAAC,EAAY,UAAAC,EAAU,YAAAC,EAAY,OAAAC,EAAO,YAAAC,EAAY,MAAAC,EAAM,WAAAC,EAAW,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,UAAUR,GAAaQ,EAAM,WAAW,mBAAmB,UAAUF,GAAYE,EAAM,WAAW,sEAAsE,UAAUZ,GAASY,EAAM,WAAW,GAAG,UAAUlB,GAAqBW,CAAS,GAAGA,GAAWO,EAAM,WAAW,OAAO,UAAUN,GAAaM,EAAM,WAAW,GAAG,UAAUf,GAAae,EAAM,WAAW,CAAC,IAAI,qEAAqE,EAAE,UAAUd,GAAWc,EAAM,WAAW,GAAG,UAAUT,GAAQS,EAAM,UAAU,UAAUL,GAAQK,EAAM,WAAW,SAAS,UAAUb,GAAWa,EAAM,WAAW,eAAe,UAAUJ,GAAaI,EAAM,WAAW,eAAe,QAAQjB,GAAwBiB,EAAM,OAAO,GAAGA,EAAM,SAAS,YAAY,UAAUH,GAAOG,EAAM,WAAW,UAAU,GAAUC,GAAuB,CAACD,EAAMrC,IAAeqC,EAAM,iBAAwBrC,EAAS,KAAK,GAAG,EAAEqC,EAAM,iBAAwBrC,EAAS,KAAK,GAAG,EAAUuC,GAA6BC,EAAW,SAASH,EAAMI,EAAI,CAAC,IAAMC,EAAYC,EAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,EAAM,EAAO,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAQC,EAAkBC,EAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAApD,EAAQ,UAAAqD,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAE9C,GAASgB,CAAK,EAAO,CAAC,YAAA+B,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,GAAU,gBAAAC,GAAgB,WAAAC,EAAW,SAAA3E,EAAQ,EAAE4E,EAAgB,CAAC,WAAAjF,GAAW,eAAe,YAAY,IAAIiD,EAAW,QAAA1C,EAAQ,kBAAAL,EAAiB,CAAC,EAAQgF,GAAiBvC,GAAuBD,EAAMrC,EAAQ,EAAuC8E,GAAkBC,EAAGnF,GAAkB,GAAhD,CAAC,CAAuE,EAAE,OAAoBmB,EAAKiE,EAAY,CAAC,GAAG1B,GAAUT,EAAgB,SAAsB9B,EAAKC,GAAS,CAAC,QAAQhB,GAAS,QAAQ,GAAM,SAAsBe,EAAKR,GAAW,CAAC,MAAMJ,GAAY,SAAsB8E,EAAMhE,EAAO,IAAI,CAAC,GAAGkD,EAAU,GAAGI,EAAgB,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,EAAE,UAAUQ,EAAGD,GAAkB,iBAAiBzB,EAAUgB,CAAU,EAAE,mBAAmB,YAAY,iBAAiBQ,GAAiB,SAAS,YAAY,IAAIjC,EAAW,MAAM,CAAC,GAAGQ,CAAK,EAAE,GAAGtD,GAAqB,CAAC,UAAU,CAAC,mBAAmB,OAAO,EAAE,UAAU,CAAC,mBAAmB,QAAQ,CAAC,EAAEsE,EAAYI,CAAc,EAAE,SAAS,CAAczD,EAAKmE,EAAS,CAAC,sBAAsB,GAAK,SAAsBnE,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,2DAA2D,qBAAqB,OAAO,0BAA0B,SAAS,0BAA0B,SAAS,sBAAsB,wEAAwE,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,sBAAsB,EAAE,iBAAiB4D,GAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,gDAAgD,2BAA2B,mBAAmB,gCAAgC,YAAY,2CAA2CjB,CAAS,EAAE,KAAKD,EAAU,kBAAkB,MAAM,mBAAmB,GAAK,GAAG7D,GAAqB,CAAC,UAAU,CAAC,SAAsBiB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,2DAA2D,qBAAqB,OAAO,0BAA0B,SAAS,0BAA0B,SAAS,sBAAsB,wEAAwE,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,2DAA2D,qBAAqB,OAAO,0BAA0B,SAAS,0BAA0B,SAAS,sBAAsB,wEAAwE,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEmD,EAAYI,CAAc,CAAC,CAAC,EAAezD,EAAKoE,EAA0B,CAAC,SAAsBpE,EAAKqE,GAA8B,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiBP,GAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB9D,EAAKzB,EAAQ,CAAC,qBAAqB4E,EAAU,IAAIT,EAAU,QAAQQ,EAAU,OAAO,OAAO,GAAG,YAAY,cAAc,UAAU,SAAS,YAAY,KAAK,GAAM,YAAYF,EAAU,WAAW,CAAC,EAAE,WAAWD,EAAU,kBAAkB,GAAM,aAAa,CAAC,WAAW,sBAAsB,UAAU,QAAQ,EAAE,MAAM,IAAI,MAAMN,EAAU,gBAAgB,GAAK,YAAYQ,EAAU,WAAW,CAAC,EAAE,WAAWH,EAAU,UAAUH,EAAU,SAAS,GAAG,MAAM,OAAO,GAAG5D,GAAqB,CAAC,UAAU,CAAC,SAAS,EAAE,EAAE,UAAU,CAAC,SAAS,EAAE,CAAC,EAAEsE,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAezD,EAAKoE,EAA0B,CAAC,QAAQjC,GAAmB,QAAQ,KAAK,KAAK,MAAM,QAAQA,GAAmB,OAAO,OAAO,aAAa,GAAGA,GAAmB,GAAG,GAAG,GAAG,GAAGpD,GAAqB,CAAC,UAAU,CAAC,OAAO,KAAK,EAAE,UAAU,CAAC,QAAQoD,GAAmB,QAAQ,KAAK,IAAI,CAAC,EAAEkB,EAAYI,CAAc,EAAE,SAAsBzD,EAAKqE,GAA8B,CAAC,UAAU,2BAA2B,iBAAiBP,GAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,WAAWzE,GAAU,SAAsBW,EAAKvB,GAAU,CAAC,OAAO,OAAO,GAAG,YAAY,UAAUa,GAAkBkD,CAAS,EAAE,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQ8B,GAAI,CAAC,kFAAkF,kFAAkF,8PAA8P,iHAAiH,yGAAyG,+MAA+M,+WAA+W,sJAAsJ,+aAA+a,uJAAuJ,wJAAwJ,kbAAkb,EAS13UC,GAAgBC,EAAQhD,GAAU8C,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,eAAeA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAG,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,YAAY,SAAS,OAAO,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,wBAAwB,oHAAoH,MAAM,eAAe,KAAKA,EAAY,eAAe,EAAE,UAAU,CAAC,aAAa,GAAG,eAAe,GAAK,MAAM,eAAe,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,GAAG,eAAe,GAAK,MAAM,aAAa,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,eAAe,MAAM,aAAa,KAAKA,EAAY,KAAK,EAAE,UAAU,CAAC,aAAa,WAAW,gBAAgB,GAAM,MAAM,QAAQ,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,sEAAsE,MAAM,cAAc,KAAKA,EAAY,KAAK,EAAE,UAAU,CAAC,aAAa,SAAS,MAAM,SAAS,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,GAAG,MAAM,SAAS,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,mBAAmB,MAAM,eAAe,KAAKA,EAAY,KAAK,EAAE,UAAU,CAAC,aAAa,eAAe,MAAM,eAAe,KAAKA,EAAY,KAAK,EAAE,UAAU,CAAC,aAAa,GAAG,IAAI,IAAI,IAAI,EAAE,KAAK,EAAE,MAAM,WAAW,KAAKA,EAAY,MAAM,EAAE,UAAUjG,IAAkB,sBAAyB,CAAC,GAAGA,GAAgB,qBAAwB,aAAa,OAAO,YAAY,OAAU,OAAO,OAAU,MAAM,WAAW,CAAC,CAAC,EAAEkG,EAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,gBAAgB,OAAO,SAAS,IAAI,uEAAuE,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGlG,GAAa,GAAGG,EAAc,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECVn4G,IAAAqG,GAAA,GAAAC,GAAAD,GAAA,wBAAAE,GAAA,OAAAC,GAAA,OAAAC,GAAA,QAAAC,GAAA,QAAAC,GAAA,QAAAC,GAAA,QAAAC,GAAA,QAAAC,GAAA,OAAAC,GAAA,OAAAC,GAAA,OAAAC,GAAA,OAAAC,GAAA,OAAAC,GAAA,OAAAC,GAAA,OAAAC,GAAA,OAAAC,KAAgH,IAAMC,GAAgBC,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,sCAAsC,qBAAqB,OAAO,0BAA0B,SAAS,0BAA0B,QAAQ,EAAE,SAAS,mCAA8B,CAAC,CAAC,CAAC,EAAeC,GAAgBH,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,qJAAqJ,CAAC,CAAC,CAAC,EAAeE,GAAgBJ,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,qJAAqJ,CAAC,CAAC,CAAC,EAAeG,GAAgBL,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,sBAAsB,6CAA6C,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,EAAeI,GAAG,MAAmBC,GAAgBP,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,sBAAsB,6CAA6C,EAAE,SAAS,YAAY,CAAC,CAAC,CAAC,EAAeM,GAAG,SAAsBC,GAAgBT,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,sBAAsB,6CAA6C,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAeQ,GAAG,gBAA6BC,GAAgBX,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,sBAAsB,6CAA6C,EAAE,SAAS,eAAe,CAAC,CAAC,CAAC,EAAeU,GAAI,oBAAiCC,GAAiBb,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,sBAAsB,6CAA6C,EAAE,SAAS,qHAAqH,CAAC,CAAC,CAAC,EAAeY,GAAiBd,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,sBAAsB,6CAA6C,EAAE,SAAS,yMAAyM,CAAC,CAAC,CAAC,EAAea,GAAI,oBAAiCC,GAAI,2BACn0HC,GAAqB,CAAC,QAAU,CAAC,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC,ECAtjC,IAAMC,GAAiB,CAAC,UAAUC,EAAe,EAAiB,SAARC,EAAmCC,EAAIC,EAAO,CAAC,KAAMA,GAAO,CAAC,IAAMC,EAAOL,GAAiBI,EAAO,EAAE,EAAE,GAAGC,EAAO,CAAC,IAAMC,EAAMD,EAAOF,CAAG,EAAE,GAAGG,EAAM,OAAOA,CAAM,CAACF,EAAOA,EAAO,QAAS,CAAC,CCAkc,IAAMG,GAAaC,GAASC,EAAO,EAAQC,GAAW,CAAC,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,iBAAiB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAAAD,GAAU,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,OAAO,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,QAAQ,EAAQC,GAAa,CAACC,EAAKL,EAASM,IAAiB,CAAC,OAAOD,EAAK,MAAM,CAAC,IAAI,UAAU,OAAOL,EAAS,SAASM,EAAe,IAAI,UAAU,OAAON,EAAS,SAASM,EAAe,IAAI,QAAQ,OAAON,EAAS,OAAOM,EAAe,IAAI,aAAa,OAAON,EAAS,YAAYM,CAAe,CAAC,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWL,GAAOE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,YAAY,YAAY,MAAM,WAAW,EAAQC,GAAS,CAAC,CAAC,WAAAC,EAAW,OAAAC,EAAO,GAAAC,EAAG,SAAAC,EAAS,QAAAC,EAAQ,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,UAAUH,GAAUG,EAAM,WAAW,WAAW,UAAUN,GAAYM,EAAM,UAAU,UAAUF,GAASE,EAAM,WAAW,UAAU,QAAQR,GAAwBQ,EAAM,OAAO,GAAGA,EAAM,SAAS,WAAW,GAAUC,GAAuB,CAACD,EAAM5B,IAAe4B,EAAM,iBAAwB5B,EAAS,KAAK,GAAG,EAAE4B,EAAM,iBAAwB5B,EAAS,KAAK,GAAG,EAAU8B,GAA6BC,EAAW,SAASH,EAAMI,EAAI,CAAC,IAAMC,EAAYC,EAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,EAAM,EAAO,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAQC,EAAkBC,EAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAA3C,EAAQ,UAAA4C,EAAU,UAAAC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAE5B,GAASO,CAAK,EAAO,CAAC,YAAAsB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAAzD,CAAQ,EAAE0D,EAAgB,CAAC,WAAA/D,GAAW,eAAe,YAAY,IAAIwC,EAAW,QAAAjC,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ8D,EAAiB9B,GAAuBD,EAAM5B,CAAQ,EAAO,CAAC,sBAAA4D,EAAsB,MAAAC,CAAK,EAAEC,GAAyBZ,CAAW,EAAQa,EAAYH,EAAsB,SAASI,IAAO,CAAC,GAAGlB,GAAqB,MAAMA,EAAU,GAAGkB,CAAI,IAAW,GAAM,MAAO,EAAO,CAAC,EAAQC,EAAYL,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAuCS,GAAkBC,EAAGvE,GAAkB,GAAhD,CAAC,CAAuE,EAAE,OAAoBoB,EAAKoD,EAAY,CAAC,GAAGvB,GAAUT,EAAgB,SAAsBpB,EAAKC,GAAS,CAAC,QAAQjB,EAAS,QAAQ,GAAM,SAAsBgB,EAAKT,GAAW,CAAC,MAAMJ,GAAY,SAAsBa,EAAKE,EAAO,IAAI,CAAC,GAAG+B,EAAU,GAAGI,EAAgB,UAAUc,EAAGD,GAAkB,gBAAgBtB,EAAUO,CAAU,EAAE,mBAAmB,YAAY,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIxB,EAAW,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,GAAGQ,CAAK,EAAE,GAAG7C,GAAqB,CAAC,UAAU,CAAC,mBAAmB,OAAO,CAAC,EAAEoD,EAAYI,CAAc,EAAE,SAAsBe,EAAMnD,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiByC,EAAiB,SAAS,YAAY,SAAS,CAAc3C,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiByC,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,oBAAoB,EAAE,SAAsBU,EAAMnD,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiByC,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,SAAS,CAAc3C,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,iBAAiByC,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,SAAsB3C,EAAKsD,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQC,IAA2B9B,GAAmB,GAAG,GAAG,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,GAAG,IAAI,qEAAqE,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,iBAAiB,GAAK,iBAAiBkB,EAAiB,SAAS,YAAY,MAAMI,CAAW,CAAC,CAAC,CAAC,EAAeM,EAAMnD,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiByC,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,SAAS,CAAc3C,EAAKwD,EAAS,CAAC,sBAAsB,GAAK,SAASC,EAAkB,KAAKnC,CAAY,GAAgBtB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,sCAAsC,qBAAqB,OAAO,0BAA0B,SAAS,0BAA0B,QAAQ,EAAE,SAAS,oCAA+B,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,kBAAkB,EAAE,iBAAiByC,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe3C,EAAKwD,EAAS,CAAC,sBAAsB,GAAK,SAASC,EAAkB,KAAKnC,CAAY,GAAgBtB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,uMAAuM,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiByC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAG7D,GAAqB,CAAC,UAAU,CAAC,SAAS2E,EAAkB,KAAKnC,CAAY,GAAgBtB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,uMAAuM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEgC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAetC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiByC,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,oBAAoB,EAAE,SAAsB3C,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiByC,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,SAAsB3C,EAAK0D,GAAc,CAAC,OAAO,oFAAoF,UAAU,gBAAgB,iBAAiBf,EAAiB,SAAS,YAAY,OAAO,YAAY,YAAY,IAAI,SAASgB,GAAwBN,EAAMO,GAAU,CAAC,SAAS,CAAcP,EAAMnD,EAAO,MAAM,CAAC,UAAU,iBAAiB,iBAAiByC,EAAiB,SAAS,YAAY,SAAS,CAAc3C,EAAKwD,EAAS,CAAC,sBAAsB,GAAK,SAASC,EAAkB,KAAKnC,CAAY,GAAgBtB,EAAWG,EAAS,CAAC,SAAsBkD,EAAMnD,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,sBAAsB,6CAA6C,EAAE,SAAS,CAAC,UAAuBF,EAAKE,EAAO,KAAK,CAAC,MAAM,CAAC,sBAAsB,+FAA+F,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,cAAc,EAAE,iBAAiByC,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,sEAAsE,qBAAqB,oBAAoB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe3C,EAAK6D,GAAmB,CAAC,UAAU,gBAAgB,UAAU9B,EAAU,iBAAiBY,EAAiB,SAAS,YAAY,YAAYc,EAAkB,KAAKnC,CAAY,GAAG,MAAM,SAAS,GAAK,MAAM,CAAC,4BAA4B,4BAA4B,qCAAqC,MAAM,8BAA8B,2BAA2B,mCAAmC,MAAM,2CAA2C,OAAO,4CAA4C,OAAO,wCAAwC,OAAO,yCAAyC,OAAO,oCAAoC,MAAM,8BAA8B,QAAQ,kCAAkC,MAAM,4BAA4B,qEAAqE,4BAA4B,qBAAqB,mCAAmC,oBAAoB,EAAE,KAAK,MAAM,CAAC,CAAC,CAAC,CAAC,EAAe+B,EAAMnD,EAAO,MAAM,CAAC,UAAU,iBAAiB,iBAAiByC,EAAiB,SAAS,YAAY,SAAS,CAAc3C,EAAKwD,EAAS,CAAC,sBAAsB,GAAK,SAASC,EAAkB,KAAKnC,CAAY,GAAgBtB,EAAWG,EAAS,CAAC,SAAsBkD,EAAMnD,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,sBAAsB,6CAA6C,EAAE,SAAS,CAAC,WAAwBF,EAAKE,EAAO,KAAK,CAAC,MAAM,CAAC,sBAAsB,+FAA+F,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,iBAAiB,GAAK,MAAM,CAAC,cAAc,EAAE,iBAAiByC,EAAiB,SAAS,YAAY,MAAMM,EAAY,MAAM,CAAC,sBAAsB,sEAAsE,qBAAqB,oBAAoB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAejD,EAAK6D,GAAmB,CAAC,UAAU,iBAAiB,UAAU7B,EAAU,iBAAiBW,EAAiB,SAAS,YAAY,YAAYc,EAAkB,KAAKnC,CAAY,GAAG,aAAa,SAAS,GAAK,MAAM,CAAC,4BAA4B,4BAA4B,qCAAqC,MAAM,8BAA8B,2BAA2B,mCAAmC,MAAM,2CAA2C,OAAO,4CAA4C,OAAO,wCAAwC,OAAO,yCAAyC,OAAO,oCAAoC,MAAM,8BAA8B,QAAQ,kCAAkC,MAAM,4BAA4B,qEAAqE,4BAA4B,qBAAqB,mCAAmC,oBAAoB,EAAE,KAAK,MAAM,CAAC,CAAC,CAAC,CAAC,EAAe+B,EAAMnD,EAAO,MAAM,CAAC,UAAU,gBAAgB,iBAAiByC,EAAiB,SAAS,YAAY,SAAS,CAAc3C,EAAKwD,EAAS,CAAC,sBAAsB,GAAK,SAASC,EAAkB,KAAKnC,CAAY,GAAgBtB,EAAWG,EAAS,CAAC,SAAsBkD,EAAMnD,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,sBAAsB,6CAA6C,EAAE,SAAS,CAAC,SAAsBF,EAAKE,EAAO,KAAK,CAAC,MAAM,CAAC,sBAAsB,+FAA+F,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,iBAAiB,GAAK,MAAM,CAAC,cAAc,EAAE,iBAAiByC,EAAiB,SAAS,YAAY,MAAMM,EAAY,MAAM,CAAC,sBAAsB,sEAAsE,qBAAqB,oBAAoB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAejD,EAAK6D,GAAmB,CAAC,UAAU,iBAAiB,UAAU,QAAQ,iBAAiBlB,EAAiB,SAAS,YAAY,YAAYc,EAAkB,KAAKnC,CAAY,GAAG,gBAAgB,SAAS,GAAK,MAAM,CAAC,4BAA4B,4BAA4B,qCAAqC,MAAM,8BAA8B,2BAA2B,mCAAmC,MAAM,2CAA2C,OAAO,4CAA4C,OAAO,wCAAwC,OAAO,yCAAyC,OAAO,oCAAoC,MAAM,8BAA8B,QAAQ,kCAAkC,MAAM,4BAA4B,qEAAqE,4BAA4B,qBAAqB,mCAAmC,oBAAoB,EAAE,KAAK,OAAO,CAAC,CAAC,CAAC,CAAC,EAAe+B,EAAMnD,EAAO,MAAM,CAAC,UAAU,iBAAiB,iBAAiByC,EAAiB,SAAS,YAAY,SAAS,CAAc3C,EAAKwD,EAAS,CAAC,sBAAsB,GAAK,SAASC,EAAkB,KAAKnC,CAAY,GAAgBtB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,sBAAsB,6CAA6C,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,gBAAgB,iBAAiB,GAAK,MAAM,CAAC,cAAc,EAAE,iBAAiByC,EAAiB,SAAS,YAAY,MAAMM,EAAY,MAAM,CAAC,qBAAqB,oBAAoB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAejD,EAAK6D,GAAmB,CAAC,UAAU,iBAAiB,UAAU,QAAQ,iBAAiBlB,EAAiB,SAAS,YAAY,YAAYc,EAAkB,MAAMnC,CAAY,GAAG,oBAAoB,SAAS,GAAM,MAAM,CAAC,4BAA4B,4BAA4B,qCAAqC,MAAM,8BAA8B,2BAA2B,mCAAmC,MAAM,2CAA2C,OAAO,4CAA4C,OAAO,wCAAwC,OAAO,yCAAyC,OAAO,oCAAoC,MAAM,8BAA8B,QAAQ,kCAAkC,MAAM,4BAA4B,qEAAqE,4BAA4B,qBAAqB,mCAAmC,oBAAoB,EAAE,KAAK,KAAK,CAAC,CAAC,CAAC,CAAC,EAAe+B,EAAMnD,EAAO,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,iBAAiB,iBAAiByC,EAAiB,SAAS,YAAY,SAAS,CAAc3C,EAAK8D,GAAiB,CAAC,UAAU,gBAAgB,eAAe,GAAM,UAAU,qCAAqC,iBAAiBnB,EAAiB,SAAS,YAAY,SAAS,GAAK,MAAM,CAAC,4BAA4B,2BAA2B,4CAA4C,sEAAsE,qCAAqC,MAAM,8BAA8B,2BAA2B,mCAAmC,MAAM,2CAA2C,MAAM,4CAA4C,MAAM,wCAAwC,MAAM,yCAAyC,MAAM,oCAAoC,MAAM,8BAA8B,QAAQ,kCAAkC,MAAM,4BAA4B,oBAAoB,EAAE,KAAK,UAAU,CAAC,EAAe3C,EAAKwD,EAAS,CAAC,sBAAsB,GAAK,SAASC,EAAkB,MAAMnC,CAAY,GAAgBtB,EAAWG,EAAS,CAAC,SAAsBkD,EAAMnD,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,sBAAsB,6CAA6C,EAAE,SAAS,CAAcF,EAAKE,EAAO,KAAK,CAAC,MAAM,CAAC,qBAAqB,OAAO,sBAAsB,+FAA+F,EAAE,SAAS,GAAG,CAAC,EAAE,uJAAuJ,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,cAAc,EAAE,iBAAiByC,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,sEAAsE,qBAAqB,oBAAoB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeU,EAAMnD,EAAO,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,wBAAwB,iBAAiByC,EAAiB,SAAS,YAAY,SAAS,CAAc3C,EAAK8D,GAAiB,CAAC,UAAU,gBAAgB,eAAe,GAAM,UAAU,aAAa,iBAAiBnB,EAAiB,SAAS,YAAY,MAAM,CAAC,4BAA4B,2BAA2B,4CAA4C,sEAAsE,qCAAqC,MAAM,8BAA8B,2BAA2B,mCAAmC,MAAM,2CAA2C,MAAM,4CAA4C,MAAM,wCAAwC,MAAM,yCAAyC,MAAM,oCAAoC,MAAM,8BAA8B,QAAQ,kCAAkC,MAAM,4BAA4B,oBAAoB,EAAE,KAAK,UAAU,CAAC,EAAe3C,EAAKwD,EAAS,CAAC,sBAAsB,GAAK,SAASC,EAAkB,MAAMnC,CAAY,GAAgBtB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,sBAAsB,6CAA6C,EAAE,SAAS,6OAA6O,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,cAAc,EAAE,iBAAiByC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,oBAAoB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe3C,EAAK+D,EAA0B,CAAC,OAAO,GAAG,MAAM,YAAYtC,GAAmB,OAAO,OAAO,wBAAwB,GAAGA,GAAmB,GAAG,GAAG,GAAG,EAAE,EAAE,IAAI,EAAE,EAAE,EAAE,GAAG,MAAM,GAAG3C,GAAqB,CAAC,UAAU,CAAC,MAAM,OAAO2C,GAAmB,OAAO,OAAO,gBAAgB,GAAGA,GAAmB,GAAG,GAAG,GAAG,EAAE,EAAE,IAAI,EAAE,EAAE,EAAE,GAAG,KAAK,CAAC,EAAES,EAAYI,CAAc,EAAE,SAAsBtC,EAAKgE,GAA8B,CAAC,UAAU,2BAA2B,iBAAiBrB,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB3C,EAAKtB,GAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU+E,EAAkB,MAAMnC,CAAY,GAAG,2BAA2B,UAAUmC,EAAkB,MAAMnC,CAAY,GAAG,2BAA2B,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,KAAK,SAAS,QAAQlC,GAAauE,EAAU,CAAC,QAAQ,YAAY,QAAQ,WAAW,EAAE,WAAW,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQM,GAAI,CAAC,kFAAkF,gFAAgF,sVAAsV,kRAAkR,uRAAuR,mQAAmQ,oQAAoQ,sVAAsV,iRAAiR,mMAAmM,4QAA4Q,+PAA+P,2RAA2R,uUAAuU,iHAAiH,ohBAAohB,6LAA6L,uRAAuR,uQAAuQ,8WAA8W,mPAAmP,mRAAmR,yGAAyG,gEAAgE,qHAAqH,8DAA8D,yFAAyF,mOAAmO,EAW902BC,GAAgBC,EAAQrD,GAAUmD,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,uBAAuBA,GAAgB,aAAa,CAAC,OAAO,MAAM,MAAM,GAAG,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,YAAY,OAAO,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,MAAM,cAAc,KAAKA,EAAY,YAAY,EAAE,UAAU,CAAC,aAAa,UAAU,MAAM,UAAU,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,WAAW,MAAM,WAAW,KAAKA,EAAY,MAAM,CAAC,CAAC,EAAEC,EAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,IAAI,uEAAuE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,uEAAuE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,uEAAuE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAG1F,EAAY,EAAE,CAAC,6BAA6B,EAAI,CAAC",
  "names": ["CounterStyles", "Counter", "props", "start", "end", "speed", "gapSize", "prefixText", "suffixText", "prefixFont", "suffixFont", "prefixColor", "suffixColor", "loop", "decimalSeparatorType", "textSize", "selectedFont", "textColor", "startOnViewport", "restartOnViewport", "incrementType", "count", "setCount", "ye", "isVisible", "setIsVisible", "containerRef", "pe", "ue", "observer", "entries", "entry", "updateCount", "increment", "prevCount", "nextCount", "intervalId", "formatNumber", "number", "u", "motion", "p", "addPropertyControls", "ControlType", "serializationHash", "variantClassNames", "toResponsiveImage", "value", "transition1", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "image", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "jf5iuaXDD", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Image2", "getLoadingLazyAtYPosition", "css", "FramerjxUS8fQk4", "withCSS", "jxUS8fQk4_default", "addPropertyControls", "ControlType", "addFonts", "CounterFonts", "getFonts", "Counter", "HoverLoopFonts", "jxUS8fQk4_default", "CounterControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "circleImage", "endNumber", "fontColor", "gapSize", "height", "id", "prefix", "prefixColor", "separator", "startNumber", "suffix", "suffixColor", "title", "titleColor", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "H3y2MaW99", "enxxvuN04", "H4Fvzov37", "qiPxLUN4N", "XXuihLtXu", "bSSe3wt8o", "oqT7sNuQQ", "LX8zCVPPJ", "bD_026cE5", "T7GKxcIVZ", "CVHdWB2OM", "e8mZeozPO", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "RichText", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerFHMgJTAO9", "withCSS", "FHMgJTAO9_default", "addPropertyControls", "ControlType", "addFonts", "GaVyvGoYC_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v10", "v11", "v12", "v13", "v14", "v2", "v3", "v4", "v5", "v6", "v7", "v8", "v9", "v0", "p", "x", "motion", "v1", "v2", "v3", "v4", "v5", "v6", "v7", "v8", "v9", "v10", "v11", "v12", "v13", "v14", "__FramerMetadata__", "valuesByLocaleId", "GaVyvGoYC_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "Button5Fonts", "getFonts", "YHsaT_Adt_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "formVariants", "form", "currentVariant", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "closeModal", "height", "id", "nachname", "vorname", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "C7NU6kprB", "Kij4gPjJ4", "BTPGpIiBC", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap3almce", "args", "onTap8m1u5y", "scopingClassNames", "cx", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "RichText", "getLocalizedValue", "FormContainer", "formState", "l", "FormPlainTextInput2", "FormBooleanInput", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerGaVyvGoYC", "withCSS", "GaVyvGoYC_default", "addPropertyControls", "ControlType", "addFonts"]
}
