{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/k0exJRSAoJyewQVxScwh/wzeoNuBRzYnHPQEajN5c/RadioButtons_2.js", "ssg:https://framerusercontent.com/modules/WPZuNTPFmvEor4q2KZ35/zO2tbEBwiAjLFy5GTCal/eKsboxhat.js", "ssg:https://framerusercontent.com/modules/gtgCmIujezBCkkFTHd6T/6TvRvhL7RErfDl2hifU0/briEcG6rZ.js", "ssg:https://framerusercontent.com/modules/xkfDc4gEF62WUcGBBum4/bMz7o4KJ4TfZZNT56Y2b/zVhG4BeDX.js", "ssg:https://framerusercontent.com/modules/mVGKCShm1j7WWfnpi470/d6q1ZoZ0yUfYTza5YX5N/WJYKHLEkl.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import*as React from\"react\";import{motion,addPropertyControls,ControlType}from\"framer\";import{colorTokentoValue,fontStack,fontControls,fontSizeOptions,useFontControls}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";const flexCenter={display:\"flex\",justifyContent:\"center\",alignItems:\"center\"};/**\n * RADIO BUTTONS\n *\n * @framerIntrinsicWidth 120\n * @framerIntrinsicHeight 102\n *\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */export function RadioButtons(props){const{// Item properties\ndefaultItem,items,// Color properties\nactiveColor,circleColor,textActiveColor,inactiveColor,textInactiveColor,hoverColor,textHoverColor,// Size properties\nbuttonSize,fontSize,textGapSize,lineGapSize,initialAnimation,// Event properties\nonChange,onOption1Tap,onOption2Tap,onOption3Tap,onOption4Tap,onOption5Tap,onOption6Tap,onOption7Tap,onOption8Tap,onOption9Tap,onOption10Tap,fontFamily,fontWeight,fontWeightInactive}=props;// Object with item data\nconst allItems=[{text:items[0],defaultEvent:onChange,event:onOption1Tap},{text:items[1],defaultEvent:onChange,event:onOption2Tap},{text:items[2],defaultEvent:onChange,event:onOption3Tap},{text:items[3],defaultEvent:onChange,event:onOption4Tap},{text:items[4],defaultEvent:onChange,event:onOption5Tap},{text:items[5],defaultEvent:onChange,event:onOption6Tap},{text:items[6],defaultEvent:onChange,event:onOption7Tap},{text:items[7],defaultEvent:onChange,event:onOption8Tap},{text:items[8],defaultEvent:onChange,event:onOption9Tap},{text:items[9],defaultEvent:onChange,event:onOption10Tap}].slice(0,items.length);// Store selected item in a variable\nconst[selected,updateSelected]=React.useState(defaultItem-1);React.useEffect(()=>{updateSelected(defaultItem-1);},[defaultItem]);// Variants for animation\nconst radioVariants={active:{background:colorTokentoValue(activeColor),transition:{ease:\"easeInOut\",duration:.2}},inactive:{background:colorTokentoValue(inactiveColor),transition:{ease:\"easeInOut\",duration:.2}},hover:{background:colorTokentoValue(hoverColor),transition:{ease:\"easeInOut\",duration:.2}},tapping:{scale:.9,transition:{ease:\"easeInOut\",duration:.1}}};const radioCircleVariants={active:{scale:1},inactive:{scale:0}};const textVariants={active:{color:colorTokentoValue(textActiveColor),transition:{ease:\"easeInOut\",duration:.2},fontWeight:fontWeight},inactive:{color:colorTokentoValue(textInactiveColor),transition:{ease:\"easeInOut\",duration:.2},fontWeight:fontWeightInactive},hover:{color:colorTokentoValue(textHoverColor),transition:{ease:\"easeInOut\",duration:.2}}};const fontStyles=useFontControls(props);return /*#__PURE__*/_jsx(\"div\",{style:{padding:10},children:allItems.map((item,index)=>{const activeVariant=selected===index?\"active\":\"inactive\";return /*#__PURE__*/_jsxs(motion.div,{style:{width:\"max-content\",display:\"flex\",marginBottom:index===allItems.length-1?0:lineGapSize},initial:initialAnimation&&selected===index?selected===index?\"inactive\":\"active\":false,animate:activeVariant,whileHover:selected===index?\"active\":\"hover\",whileTap:\"tapping\",onTap:()=>{if(selected!==index){updateSelected(index);if(item.event)item.event();if(item.defaultEvent)item.defaultEvent(index);}},children:[/*#__PURE__*/_jsx(\"div\",{\"data-framer-hightlight\":true,style:{...flexCenter,marginRight:textGapSize,width:buttonSize,height:fontSize*1.2>buttonSize?fontSize*1.2:buttonSize},children:/*#__PURE__*/_jsx(motion.div,{style:{...flexCenter,width:buttonSize,height:buttonSize,borderRadius:\"50%\"},variants:radioVariants,children:/*#__PURE__*/_jsx(motion.div,{style:{width:Math.floor(buttonSize*.4),height:Math.floor(buttonSize*.4),borderRadius:\"50%\",background:circleColor},variants:radioCircleVariants})})}),/*#__PURE__*/_jsx(motion.div,{variants:textVariants,style:{outline:\"none\",width:\"max-content\",display:\"flex\",wordBreak:\"break-word\",overflowWrap:\"break-word\",lineHeight:1.2,textAlign:\"left\",overflow:\"hidden\",whiteSpace:\"pre-wrap\",fontSize:fontSize,fontFamily:fontStack,...fontStyles,fontWeight:fontWeightInactive},children:item.text})]},index);})});}RadioButtons.defaultProps={height:102,width:120,defaultItem:1,items:[\"Option 01\",\"Option 02\",\"Option 03\"],variant:\"active\",activeColor:\"#09F\",circleColor:\"#FFF\",textActiveColor:\"#999\",inactiveColor:\"#CCC\",textInactiveColor:\"#BBB\",hoverColor:\"#BBB\",textHoverColor:\"#BBB\",buttonSize:16,fontSize:16,fontWeight:600,fontWeightInactive:400,textGapSize:8,lineGapSize:12,initialAnimation:false};addPropertyControls(RadioButtons,{// Default Item Property Controls\ndefaultItem:{type:ControlType.Number,title:\"Default\",defaultValue:RadioButtons.defaultProps.defaultItem,displayStepper:true,step:1,min:0,max:5},// Design Variant Property Controls\nvariant:{type:ControlType.Enum,title:\"Variants\",defaultValue:RadioButtons.defaultProps.variant,options:[\"active\",\"inactive\",\"hover\"],optionTitles:[\"Active\",\"Inactive\",\"Hover\"]},activeColor:{type:ControlType.Color,title:\"Button\",defaultValue:RadioButtons.defaultProps.activeColor,hidden:({variant})=>variant!==\"active\"},circleColor:{type:ControlType.Color,title:\"Circle\",defaultValue:RadioButtons.defaultProps.circleColor,hidden:({variant})=>variant!==\"active\"},textActiveColor:{type:ControlType.Color,title:\"Text\",defaultValue:RadioButtons.defaultProps.textActiveColor,hidden:({variant})=>variant!==\"active\"},inactiveColor:{type:ControlType.Color,title:\"Button\",defaultValue:RadioButtons.defaultProps.inactiveColor,hidden:({variant})=>variant!==\"inactive\"},textInactiveColor:{type:ControlType.Color,title:\"Text\",defaultValue:RadioButtons.defaultProps.textInactiveColor,hidden:({variant})=>variant!==\"inactive\"},fontWeightInactive:{type:ControlType.Enum,title:\"Weight\",options:[100,200,300,400,500,600,700,800,900],optionTitles:[\"Thin\",\"Extra-light\",\"Light\",\"Regular\",\"Medium\",\"Semi-bold\",\"Bold\",\"Extra-bold\",\"Black\"],defaultValue:RadioButtons.defaultProps.fontWeightInactive,hidden:({variant})=>variant!==\"inactive\"},hoverColor:{type:ControlType.Color,title:\"Button\",defaultValue:RadioButtons.defaultProps.hoverColor,hidden:({variant})=>variant!==\"hover\"},textHoverColor:{type:ControlType.Color,title:\"Text\",defaultValue:RadioButtons.defaultProps.textHoverColor,hidden:({variant})=>variant!==\"hover\"},// Button Size Property Controls\nbuttonSize:{type:ControlType.Number,title:\"Button Size\",min:16,max:44,step:1,defaultValue:RadioButtons.defaultProps.buttonSize},// Text Size Property Controls\nfontSize:{...fontSizeOptions,defaultValue:RadioButtons.defaultProps.fontSize},// Gap Size Property Controls\ntextGapSize:{type:ControlType.Number,title:\"Text Gap\",min:2,max:20,step:1,defaultValue:RadioButtons.defaultProps.textGapSize},lineGapSize:{type:ControlType.Number,title:\"Line Gap\",min:10,max:200,step:1,defaultValue:RadioButtons.defaultProps.lineGapSize},...fontControls,initialAnimation:{title:\"On Load\",type:ControlType.Boolean,enabledTitle:\"Animate\",disabledTitle:\"Instant\"},items:{type:ControlType.Array,title:\"Items\",maxCount:10,defaultValue:RadioButtons.defaultProps.items,propertyControl:{type:ControlType.String,displayTextArea:true,defaultValue:\"Option Title\"}},// Event Property Controls\nonChange:{title:\"On Change\",type:ControlType.EventHandler},onOption1Tap:{title:\"Option 1 Tap\",type:ControlType.EventHandler},onOption2Tap:{title:\"Option 2 Tap\",type:ControlType.EventHandler},onOption3Tap:{title:\"Option 3 Tap\",type:ControlType.EventHandler},onOption4Tap:{title:\"Option 4 Tap\",type:ControlType.EventHandler},onOption5Tap:{title:\"Option 5 Tap\",type:ControlType.EventHandler},onOption6Tap:{title:\"Option 6 Tap\",type:ControlType.EventHandler},onOption7Tap:{title:\"Option 7 Tap\",type:ControlType.EventHandler},onOption8Tap:{title:\"Option 8 Tap\",type:ControlType.EventHandler},onOption9Tap:{title:\"Option 9 Tap\",type:ControlType.EventHandler},onOption10Tap:{title:\"Option 10 Tap\",type:ControlType.EventHandler}});RadioButtons.displayName=\"Radio Buttons\";\nexport const __FramerMetadata__ = {\"exports\":{\"RadioButtons\":{\"type\":\"reactComponent\",\"name\":\"RadioButtons\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"102\",\"framerIntrinsicWidth\":\"120\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any\",\"framerSupportedLayoutWidth\":\"any\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./RadioButtons_2.map", "// Generated by Framer (ab692b1)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ChildrenCanSuspend,ComponentViewportProvider,ControlType,cx,FormContainer,FormPlainTextInput,getFonts,getFontsFromSharedStyle,Image,PathVariablesContext,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useQueryData,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{RadioButtons}from\"https://framerusercontent.com/modules/k0exJRSAoJyewQVxScwh/wzeoNuBRzYnHPQEajN5c/RadioButtons_2.js\";import GlobalContent from\"https://framerusercontent.com/modules/jDF1QStoFHNKzosoEbLF/tpnZP8waQ15ccxYJ8F5i/mtP2Gm0lH.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/w6vvBB7IJ7x8xa4ISrdY/LCz45PQmlvsiKn0koWs4/h6ZIs1Jrh.js\";import GlobalSubmitButton from\"https://framerusercontent.com/modules/2JOJVrwP5SJpLNWaiyri/G584r6xNYCA2cbDfCeZT/aE9jGa3Qr.js\";const RadioButtonsFonts=getFonts(RadioButtons);const GlobalSubmitButtonFonts=getFonts(GlobalSubmitButton);const cycleOrder=[\"aJdu48eZs\",\"awfTwyIWX\"];const serializationHash=\"framer-7iGpv\";const variantClassNames={aJdu48eZs:\"framer-v-1wpsq92\",awfTwyIWX:\"framer-v-1l6ksp\"};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 toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};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 query=prequery=>prequery({from:{alias:\"aJdu48eZs\",data:GlobalContent,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"aJdu48eZs\",name:\"KhXQKcx6G\",type:\"Identifier\"},{collection:\"aJdu48eZs\",name:\"X_2wnopI_\",type:\"Identifier\"},{collection:\"aJdu48eZs\",name:\"WSzV9Gh37\",type:\"Identifier\"},{collection:\"aJdu48eZs\",name:\"wzuJlmrjr\",type:\"Identifier\"},{collection:\"aJdu48eZs\",name:\"DKtYrVFgw\",type:\"Identifier\"},{collection:\"aJdu48eZs\",name:\"VMwsPneI2\",type:\"Identifier\"},{collection:\"aJdu48eZs\",name:\"cpmZTbw6L\",type:\"Identifier\"},{collection:\"aJdu48eZs\",name:\"Dm8wH82up\",type:\"Identifier\"},{collection:\"aJdu48eZs\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"aJdu48eZs\",name:\"Dm8wH82up\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"footer-cta\"},type:\"BinaryOperation\"}});const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};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={\"Tablet/Phone\":\"awfTwyIWX\",Desktop:\"aJdu48eZs\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"aJdu48eZs\"};};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,KhXQKcx6GaJdu48eZs,X_2wnopI_aJdu48eZs,WSzV9Gh37aJdu48eZs,wzuJlmrjraJdu48eZs,DKtYrVFgwaJdu48eZs,VMwsPneI2aJdu48eZs,cpmZTbw6LaJdu48eZs,Dm8wH82upaJdu48eZs,idaJdu48eZs,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"aJdu48eZs\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];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-1wpsq92\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"aJdu48eZs\",ref:refBinding,style:{...style},...addPropertyOverrides({awfTwyIWX:{\"data-framer-name\":\"Tablet/Phone\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"aJdu48eZs\",data:GlobalContent,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"aJdu48eZs\",name:\"KhXQKcx6G\",type:\"Identifier\"},{collection:\"aJdu48eZs\",name:\"X_2wnopI_\",type:\"Identifier\"},{collection:\"aJdu48eZs\",name:\"WSzV9Gh37\",type:\"Identifier\"},{collection:\"aJdu48eZs\",name:\"wzuJlmrjr\",type:\"Identifier\"},{collection:\"aJdu48eZs\",name:\"DKtYrVFgw\",type:\"Identifier\"},{collection:\"aJdu48eZs\",name:\"VMwsPneI2\",type:\"Identifier\"},{collection:\"aJdu48eZs\",name:\"cpmZTbw6L\",type:\"Identifier\"},{collection:\"aJdu48eZs\",name:\"Dm8wH82up\",type:\"Identifier\"},{collection:\"aJdu48eZs\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"aJdu48eZs\",name:\"Dm8wH82up\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"footer-cta\"},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({cpmZTbw6L:cpmZTbw6LaJdu48eZs,DKtYrVFgw:DKtYrVFgwaJdu48eZs,Dm8wH82up:Dm8wH82upaJdu48eZs,id:idaJdu48eZs,KhXQKcx6G:KhXQKcx6GaJdu48eZs,VMwsPneI2:VMwsPneI2aJdu48eZs,WSzV9Gh37:WSzV9Gh37aJdu48eZs,wzuJlmrjr:wzuJlmrjraJdu48eZs,X_2wnopI_:X_2wnopI_aJdu48eZs},index)=>{X_2wnopI_aJdu48eZs??=\"\";WSzV9Gh37aJdu48eZs??=\"\";wzuJlmrjraJdu48eZs??=\"\";DKtYrVFgwaJdu48eZs??=\"\";VMwsPneI2aJdu48eZs??=\"\";cpmZTbw6LaJdu48eZs??=\"\";Dm8wH82upaJdu48eZs??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`aJdu48eZs-${idaJdu48eZs}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{Dm8wH82up:Dm8wH82upaJdu48eZs},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vge5yn\",\"data-border\":true,\"data-framer-name\":\"Footer CTA Content\",layoutDependency:layoutDependency,layoutId:\"vaRudCRNI\",style:{\"--border-bottom-width\":\"3px\",\"--border-color\":\"var(--token-9e59a756-4ed5-42c5-b357-5b1b955dec08, rgb(221, 255, 149))\",\"--border-left-width\":\"3px\",\"--border-right-width\":\"3px\",\"--border-style\":\"solid\",\"--border-top-width\":\"3px\",backgroundColor:\"var(--token-c8ea7054-a8e3-4f69-bc57-e1f61b7d9a78, rgb(255, 255, 255))\",borderBottomLeftRadius:18,borderBottomRightRadius:18,borderTopLeftRadius:18,borderTopRightRadius:18},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-9wv10x\",\"data-framer-name\":\"Images Wrap\",layoutDependency:layoutDependency,layoutId:\"GzCpl6AtG\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:`max(${componentViewport?.width||\"100vw\"} * 0.5789, 1px)`,...toResponsiveImage(KhXQKcx6GaJdu48eZs)},className:\"framer-1gsqf3i\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"hZF1NLAbc\",style:{borderBottomLeftRadius:18,borderBottomRightRadius:18,borderTopLeftRadius:18,borderTopRightRadius:18},...addPropertyOverrides({awfTwyIWX:{background:{alt:\"\",fit:\"fill\",sizes:`max(${componentViewport?.width||\"100vw\"}, 1px)`,...toResponsiveImage(KhXQKcx6GaJdu48eZs)}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12lgxm9\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"M5y1v41d1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-kfo2ht\",\"data-styles-preset\":\"h6ZIs1Jrh\",children:\"Kontaktieren Sie uns!\"})}),className:\"framer-4d8e10\",\"data-framer-name\":\"H2\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"x2ESHd8nN\",text:X_2wnopI_aJdu48eZs,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tedk1s\",\"data-framer-name\":\"Cta Wrap\",layoutDependency:layoutDependency,layoutId:\"hAmaaI6nr\",children:/*#__PURE__*/_jsx(FormContainer,{action:\"https://api.framer.com/forms/v1/forms/6c278904-681b-4877-afa6-e11dd883f892/submit\",className:\"framer-1w1wqbj\",layoutDependency:layoutDependency,layoutId:\"vos2ouVen\",nodeId:\"vos2ouVen\",redirectUrl:{webPageId:\"Ydu0HgHTr\"},children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsxs(motion.label,{className:\"framer-1j9qux1\",layoutDependency:layoutDependency,layoutId:\"htmEVQEwX\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RmlndHJlZS02MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7ba52405-03b3-46b2-a2c7-0492ccb52648, rgb(51, 51, 51)))\"},children:\"Name\"})}),className:\"framer-1bruvpv\",fonts:[\"GF;Figtree-600\"],layoutDependency:layoutDependency,layoutId:\"CstOPmvz3\",style:{\"--extracted-r6o4lv\":\"var(--token-7ba52405-03b3-46b2-a2c7-0492ccb52648, rgb(51, 51, 51))\"},text:WSzV9Gh37aJdu48eZs,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{autofillEnabled:true,className:\"framer-hfmx2g\",inputName:\"Name\",layoutDependency:layoutDependency,layoutId:\"DhpBx5JbW\",placeholder:\"Victoria Schmidt\",required:true,style:{\"--framer-input-background\":\"var(--token-c0b7cf48-5384-40ba-b331-13dbb1d48dd0, rgb(236, 235, 228))\",\"--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-7ba52405-03b3-46b2-a2c7-0492ccb52648, rgb(51, 51, 51))\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"var(--token-8afe6e49-973f-4f98-a171-0193f309f7f8, rgb(106, 106, 106))\"},type:\"text\"})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-1wk0ubb\",layoutDependency:layoutDependency,layoutId:\"rEmRK5Yqk\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RmlndHJlZS02MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7ba52405-03b3-46b2-a2c7-0492ccb52648, rgb(51, 51, 51)))\"},children:\"Email\"})}),className:\"framer-1kb22ze\",fonts:[\"GF;Figtree-600\"],layoutDependency:layoutDependency,layoutId:\"YjxkO4lOZ\",style:{\"--extracted-r6o4lv\":\"var(--token-7ba52405-03b3-46b2-a2c7-0492ccb52648, rgb(51, 51, 51))\"},text:wzuJlmrjraJdu48eZs,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{autofillEnabled:true,className:\"framer-1520yvs\",inputName:\"Email\",layoutDependency:layoutDependency,layoutId:\"tfLzyemRt\",placeholder:\"info@cureta.de\",required:true,style:{\"--framer-input-background\":\"var(--token-c0b7cf48-5384-40ba-b331-13dbb1d48dd0, rgb(236, 235, 228))\",\"--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-7ba52405-03b3-46b2-a2c7-0492ccb52648, rgb(51, 51, 51))\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"var(--token-8afe6e49-973f-4f98-a171-0193f309f7f8, rgb(106, 106, 106))\"},type:\"email\"})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-10uj2c7\",layoutDependency:layoutDependency,layoutId:\"W7xvm_ODk\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RmlndHJlZS02MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7ba52405-03b3-46b2-a2c7-0492ccb52648, rgb(51, 51, 51)))\"},children:\"Beschreiben Sie Ihre Anfrage\"})}),className:\"framer-chd0e7\",fonts:[\"GF;Figtree-600\"],layoutDependency:layoutDependency,layoutId:\"gBfzAdC7v\",style:{\"--extracted-r6o4lv\":\"var(--token-7ba52405-03b3-46b2-a2c7-0492ccb52648, rgb(51, 51, 51))\"},text:DKtYrVFgwaJdu48eZs,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{autofillEnabled:true,className:\"framer-1g59q0m\",inputName:\"Request\",layoutDependency:layoutDependency,layoutId:\"a6elyq9G3\",placeholder:\"Erz\\xe4hlen Sie uns mehr\",required:false,style:{\"--framer-input-background\":\"var(--token-c0b7cf48-5384-40ba-b331-13dbb1d48dd0, rgb(236, 235, 228))\",\"--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-7ba52405-03b3-46b2-a2c7-0492ccb52648, rgb(51, 51, 51))\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"var(--token-8afe6e49-973f-4f98-a171-0193f309f7f8, rgb(106, 106, 106))\"},type:\"textarea\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10ywhl6\",\"data-framer-name\":\"Radio Group\",layoutDependency:layoutDependency,layoutId:\"mK7aBeS2y\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RmlndHJlZS02MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7ba52405-03b3-46b2-a2c7-0492ccb52648, rgb(51, 51, 51)))\"},children:\"Who is this service for?\"})}),className:\"framer-112dpux\",fonts:[\"GF;Figtree-600\"],layoutDependency:layoutDependency,layoutId:\"XnXbxiUp5\",style:{\"--extracted-r6o4lv\":\"var(--token-7ba52405-03b3-46b2-a2c7-0492ccb52648, rgb(51, 51, 51))\"},text:VMwsPneI2aJdu48eZs,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-9e5fxw-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"mYuNfc_6i-container\",nodeId:\"mYuNfc_6i\",rendersWithMotion:true,scopeId:\"eKsboxhat\",children:/*#__PURE__*/_jsx(RadioButtons,{activeColor:\"var(--token-7a5fc725-883d-443c-bbfa-ae5e9c36c61b, rgb(5, 68, 74))\",buttonSize:16,circleColor:\"rgb(255, 255, 255)\",defaultItem:1,font:true,fontFamily:\"figtree\",fontSize:12,fontWeight:400,fontWeightInactive:400,height:\"100%\",hoverColor:\"var(--token-d671ad2f-8c55-426e-a769-0fa06352b33e, rgb(197, 197, 197))\",id:\"mYuNfc_6i\",inactiveColor:\"var(--token-d671ad2f-8c55-426e-a769-0fa06352b33e, rgb(197, 197, 197))\",initialAnimation:false,items:[\"F\\xfcr mich\",\"F\\xfcr meine Firma\"],layoutId:\"mYuNfc_6i\",lineGapSize:14,style:{width:\"100%\"},textActiveColor:\"var(--token-7ba52405-03b3-46b2-a2c7-0492ccb52648, rgb(51, 51, 51))\",textGapSize:10,textHoverColor:\"var(--token-8afe6e49-973f-4f98-a171-0193f309f7f8, rgb(106, 106, 106))\",textInactiveColor:\"var(--token-8afe6e49-973f-4f98-a171-0193f309f7f8, rgb(106, 106, 106))\",variant:\"inactive\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,width:`calc(max(${componentViewport?.width||\"100vw\"} / 2.375, 1px) - 138px)`,...addPropertyOverrides({awfTwyIWX:{width:`calc(${componentViewport?.width||\"100vw\"} - 96px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1938bh5-container\",\"data-framer-name\":\"Submit\",layoutDependency:layoutDependency,layoutId:\"FCqN0aWto-container\",name:\"Submit\",nodeId:\"FCqN0aWto\",rendersWithMotion:true,scopeId:\"eKsboxhat\",children:/*#__PURE__*/_jsx(GlobalSubmitButton,{height:\"100%\",id:\"FCqN0aWto\",layoutId:\"FCqN0aWto\",name:\"Submit\",style:{height:\"100%\",width:\"100%\"},type:\"submit\",variant:formVariants(formState,{error:\"eUHx05GAT\",pending:\"J1_k3VDsN\",success:\"F1Jh8QWKz\"},\"guJlW6uia\"),VyMaJzzEz:cpmZTbw6LaJdu48eZs,width:\"100%\"})})})]})})})]})]})})},idaJdu48eZs);})})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-7iGpv.framer-1e6amz5, .framer-7iGpv .framer-1e6amz5 { display: block; }\",\".framer-7iGpv.framer-1wpsq92 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 1216px; }\",\".framer-7iGpv .framer-1vge5yn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-7iGpv .framer-9wv10x { align-content: center; align-items: center; align-self: stretch; display: flex; flex: 1.1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: auto; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-7iGpv .framer-1gsqf3i { flex: 1 0 0px; height: 100%; position: relative; width: 1px; z-index: 1; }\",\".framer-7iGpv .framer-12lgxm9 { align-content: flex-start; align-items: flex-start; display: flex; flex: 0.8 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 64px 64px 64px 74px; position: relative; width: 1px; }\",\".framer-7iGpv .framer-4d8e10 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-7iGpv .framer-1tedk1s { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7iGpv .framer-1w1wqbj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7iGpv .framer-1j9qux1, .framer-7iGpv .framer-1wk0ubb, .framer-7iGpv .framer-10uj2c7 { 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-7iGpv .framer-1bruvpv, .framer-7iGpv .framer-1kb22ze, .framer-7iGpv .framer-chd0e7, .framer-7iGpv .framer-112dpux { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",'.framer-7iGpv .framer-hfmx2g, .framer-7iGpv .framer-1520yvs { --framer-input-focused-border-color: #0099ff; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-family: \"Figtree\"; --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-7iGpv .framer-1g59q0m { --framer-input-focused-border-color: #0099ff; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-family: \"Figtree\"; --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; --framer-input-wrapper-height: auto; --framer-textarea-resize: vertical; flex: none; height: auto; min-height: 74px; position: relative; width: 100%; }',\".framer-7iGpv .framer-10ywhl6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 91px; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-7iGpv .framer-9e5fxw-container { bottom: 0px; flex: none; height: auto; left: -9px; position: absolute; width: 435px; z-index: 1; }\",\".framer-7iGpv .framer-1938bh5-container { flex: none; height: 54px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-7iGpv.framer-1wpsq92, .framer-7iGpv .framer-1vge5yn, .framer-7iGpv .framer-9wv10x, .framer-7iGpv .framer-12lgxm9, .framer-7iGpv .framer-1tedk1s, .framer-7iGpv .framer-1w1wqbj, .framer-7iGpv .framer-1j9qux1, .framer-7iGpv .framer-1wk0ubb, .framer-7iGpv .framer-10uj2c7, .framer-7iGpv .framer-10ywhl6 { gap: 0px; } .framer-7iGpv.framer-1wpsq92 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-7iGpv.framer-1wpsq92 > :first-child, .framer-7iGpv .framer-12lgxm9 > :first-child, .framer-7iGpv .framer-1tedk1s > :first-child, .framer-7iGpv .framer-1w1wqbj > :first-child, .framer-7iGpv .framer-1j9qux1 > :first-child, .framer-7iGpv .framer-1wk0ubb > :first-child, .framer-7iGpv .framer-10uj2c7 > :first-child, .framer-7iGpv .framer-10ywhl6 > :first-child { margin-top: 0px; } .framer-7iGpv.framer-1wpsq92 > :last-child, .framer-7iGpv .framer-12lgxm9 > :last-child, .framer-7iGpv .framer-1tedk1s > :last-child, .framer-7iGpv .framer-1w1wqbj > :last-child, .framer-7iGpv .framer-1j9qux1 > :last-child, .framer-7iGpv .framer-1wk0ubb > :last-child, .framer-7iGpv .framer-10uj2c7 > :last-child, .framer-7iGpv .framer-10ywhl6 > :last-child { margin-bottom: 0px; } .framer-7iGpv .framer-1vge5yn > *, .framer-7iGpv .framer-9wv10x > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-7iGpv .framer-1vge5yn > :first-child, .framer-7iGpv .framer-9wv10x > :first-child { margin-left: 0px; } .framer-7iGpv .framer-1vge5yn > :last-child, .framer-7iGpv .framer-9wv10x > :last-child { margin-right: 0px; } .framer-7iGpv .framer-12lgxm9 > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-7iGpv .framer-1tedk1s > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-7iGpv .framer-1w1wqbj > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-7iGpv .framer-1j9qux1 > *, .framer-7iGpv .framer-1wk0ubb > *, .framer-7iGpv .framer-10uj2c7 > *, .framer-7iGpv .framer-10ywhl6 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-7iGpv.framer-v-1l6ksp .framer-1vge5yn { flex-direction: column; justify-content: flex-start; }\",\".framer-7iGpv.framer-v-1l6ksp .framer-9wv10x { align-self: unset; flex: none; height: 480px; width: 100%; }\",\".framer-7iGpv.framer-v-1l6ksp .framer-12lgxm9 { flex: none; padding: 48px; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-7iGpv.framer-v-1l6ksp .framer-1vge5yn { gap: 0px; } .framer-7iGpv.framer-v-1l6ksp .framer-1vge5yn > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-7iGpv.framer-v-1l6ksp .framer-1vge5yn > :first-child { margin-top: 0px; } .framer-7iGpv.framer-v-1l6ksp .framer-1vge5yn > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,'.framer-7iGpv[data-border=\"true\"]::after, .framer-7iGpv [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 600\n * @framerIntrinsicWidth 1216\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"awfTwyIWX\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramereKsboxhat=withCSS(Component,css,\"framer-7iGpv\");export default FramereKsboxhat;FramereKsboxhat.displayName=\"Footer CTA (with Form)\";FramereKsboxhat.defaultProps={height:600,width:1216};addPropertyControls(FramereKsboxhat,{variant:{options:[\"aJdu48eZs\",\"awfTwyIWX\"],optionTitles:[\"Desktop\",\"Tablet/Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramereKsboxhat,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Figtree\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/figtree/v7/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_ehR15bwkEU4HTy.woff2\",weight:\"600\"},{family:\"Figtree\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/figtree/v7/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_d_QF5bwkEU4HTy.woff2\",weight:\"400\"}]},...RadioButtonsFonts,...GlobalSubmitButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramereKsboxhat\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"awfTwyIWX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"600\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1216\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./eKsboxhat.map", "// Generated by Framer (aa1abb7)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=['.framer-HDndR .framer-styles-preset-1g23a2x:not(.rich-text-wrapper), .framer-HDndR .framer-styles-preset-1g23a2x.rich-text-wrapper a { --framer-link-current-text-color: var(--token-7ba52405-03b3-46b2-a2c7-0492ccb52648, #333333) /* {\"name\":\"Onyx\"} */; --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: var(--token-0eef77a4-f2ff-4401-8c7d-246a82ba6d52, #4b4b4b) /* {\"name\":\"Grey/1\"} */; --framer-link-hover-text-decoration: underline; --framer-link-text-color: var(--token-7ba52405-03b3-46b2-a2c7-0492ccb52648, #333333); --framer-link-text-decoration: none; transition: color 0.4s cubic-bezier(0.44, 0, 0.56, 1) 0s; }'];export const className=\"framer-HDndR\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (aa1abb7)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Crimson Pro-medium\",\"FS;Crimson Pro-bold\",\"FS;Crimson Pro-bold italic\",\"FS;Crimson Pro-medium italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Crimson Pro\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/WJFPIMP4Z4DX4SEQBJK6CPJ3CTHLWWYI/5NGSF4TE6JWWK7PKLCLXLXKVDYO5M77O/I6OQLSBVBSOUCRFJHHEXO3T3SJMZLBSO.woff2\",weight:\"500\"},{family:\"Crimson Pro\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/L4QBIX7C7SA2IDY46ULDZZNBKU6WX2EL/63AUVAWO5PQNR3XVESJ4262WNEUTP4UG/GCQQA5TCI3PCZLKNTWS4LWAGGWWOKQ3S.woff2\",weight:\"700\"},{family:\"Crimson Pro\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/U4YLVRBR2Z3FXIQJ2TPY5ME3OROSOWPZ/DINID5O3CNXZGOCHP442RIOLEHW4GPSX/DN3OIO2LUZVS7UEF463JDAUSJJL3CZVN.woff2\",weight:\"700\"},{family:\"Crimson Pro\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NWEAL7YYCSUE7U446LV4MPH54HVRP4B2/XYOA6BNAN7AY3MXPC4WSZDY4MON5IIDA/VYXCEWW5WAP2E7PTFWRBOTF2IYLUG6MI.woff2\",weight:\"500\"}]}];export const css=['.framer-ve3wt .framer-styles-preset-afu8ck:not(.rich-text-wrapper), .framer-ve3wt .framer-styles-preset-afu8ck.rich-text-wrapper h5 { --framer-font-family: \"Crimson Pro\", \"Crimson Pro Placeholder\", serif; --framer-font-family-bold: \"Crimson Pro\", \"Crimson Pro Placeholder\", serif; --framer-font-family-bold-italic: \"Crimson Pro\", \"Crimson Pro Placeholder\", serif; --framer-font-family-italic: \"Crimson Pro\", \"Crimson Pro Placeholder\", serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: -0.04em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-ve3wt\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (81a45be)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ChildrenCanSuspend,ComponentPresetsProvider,ControlType,cx,getFontsFromComponentPreset,getFontsFromSharedStyle,PathVariablesContext,RichText,useComponentViewport,useLocaleInfo,useQueryData,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import GlobalContent from\"https://framerusercontent.com/modules/jDF1QStoFHNKzosoEbLF/tpnZP8waQ15ccxYJ8F5i/mtP2Gm0lH.js\";import*as componentPresets from\"https://framerusercontent.com/modules/1WEwDfjUe5YqlVRTBmAy/ezvwC7rVLzjz94Wws8Tt/componentPresets.js\";import*as sharedStyle7 from\"https://framerusercontent.com/modules/gtgCmIujezBCkkFTHd6T/6TvRvhL7RErfDl2hifU0/briEcG6rZ.js\";import*as sharedStyle5 from\"https://framerusercontent.com/modules/aOf9M1yxTNVMCsPrbebB/UxOHZ6PXaH9ui2zu72wX/d5VOYRWSA.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/hnVFbQ963464vFH0SHa8/U28EJlsxhUPtPKXhOq0G/e0iKVzbwj.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/vlIgX7rTG858SOK86Qbf/cSzYklnLtlmHNXAP08x6/EBuAheG5l.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/w6vvBB7IJ7x8xa4ISrdY/LCz45PQmlvsiKn0koWs4/h6ZIs1Jrh.js\";import*as sharedStyle9 from\"https://framerusercontent.com/modules/rU7zHsyDzRZZD6VGbmNO/oNuInbzXLxJihVf1cuaj/QJozNBKRz.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/hzojBgOO2ht6Gzb4IVPA/pywj1432xfMOjeJ2AoYi/s0Way5o4J.js\";import*as sharedStyle10 from\"https://framerusercontent.com/modules/pbK3UR2yVT6XvhiPXgs5/WR72ckRZO0L8ZGtVontT/tJAn7l0iB.js\";import*as sharedStyle8 from\"https://framerusercontent.com/modules/3OAJsMV4MppwolevHqjK/m4tkmBHG1Xi7pYRO6wjX/WzoDgeXPd.js\";import*as sharedStyle6 from\"https://framerusercontent.com/modules/1HhZ519ZWA2moC0eYhJw/lFgl1Nm6qtH8wrnNef9g/ZMdHCqIB8.js\";import*as sharedStyle4 from\"https://framerusercontent.com/modules/xkfDc4gEF62WUcGBBum4/bMz7o4KJ4TfZZNT56Y2b/zVhG4BeDX.js\";const cycleOrder=[\"qm0RT53Oi\",\"ad5BkKO7m\",\"d27i2Ijfn\"];const serializationHash=\"framer-gdFXZ\";const variantClassNames={ad5BkKO7m:\"framer-v-1nqty95\",d27i2Ijfn:\"framer-v-55nyz1\",qm0RT53Oi:\"framer-v-1oqik7\"};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 query=prequery=>prequery({from:{alias:\"NRFwvRQ3A\",data:GlobalContent,type:\"Collection\"},limit:{type:\"LiteralValue\",value:10},select:[{collection:\"NRFwvRQ3A\",name:\"X_2wnopI_\",type:\"Identifier\"},{collection:\"NRFwvRQ3A\",name:\"PBXApaDEo\",type:\"Identifier\"},{collection:\"NRFwvRQ3A\",name:\"daS6C7K9z\",type:\"Identifier\"},{collection:\"NRFwvRQ3A\",name:\"SljOiEvSI\",type:\"Identifier\"},{collection:\"NRFwvRQ3A\",name:\"OS5EYjwqL\",type:\"Identifier\"},{collection:\"NRFwvRQ3A\",name:\"Dm8wH82up\",type:\"Identifier\"},{collection:\"NRFwvRQ3A\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"NRFwvRQ3A\",name:\"aFnkMNuzU\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"Footer Links\"},type:\"BinaryOperation\"}});const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};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={Desktop:\"qm0RT53Oi\",Phone:\"d27i2Ijfn\",Tablet:\"ad5BkKO7m\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"qm0RT53Oi\"};};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,X_2wnopI_NRFwvRQ3A,PBXApaDEoNRFwvRQ3A,daS6C7K9zNRFwvRQ3A,SljOiEvSINRFwvRQ3A,OS5EYjwqLNRFwvRQ3A,Dm8wH82upNRFwvRQ3A,idNRFwvRQ3A,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"qm0RT53Oi\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className];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-1oqik7\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"qm0RT53Oi\",ref:refBinding,style:{...style},...addPropertyOverrides({ad5BkKO7m:{\"data-framer-name\":\"Tablet\"},d27i2Ijfn:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-264hhd\",layoutDependency:layoutDependency,layoutId:\"NRFwvRQ3A\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"NRFwvRQ3A\",data:GlobalContent,type:\"Collection\"},limit:{type:\"LiteralValue\",value:10},select:[{collection:\"NRFwvRQ3A\",name:\"X_2wnopI_\",type:\"Identifier\"},{collection:\"NRFwvRQ3A\",name:\"PBXApaDEo\",type:\"Identifier\"},{collection:\"NRFwvRQ3A\",name:\"daS6C7K9z\",type:\"Identifier\"},{collection:\"NRFwvRQ3A\",name:\"SljOiEvSI\",type:\"Identifier\"},{collection:\"NRFwvRQ3A\",name:\"OS5EYjwqL\",type:\"Identifier\"},{collection:\"NRFwvRQ3A\",name:\"Dm8wH82up\",type:\"Identifier\"},{collection:\"NRFwvRQ3A\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"NRFwvRQ3A\",name:\"aFnkMNuzU\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"Footer Links\"},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({daS6C7K9z:daS6C7K9zNRFwvRQ3A,Dm8wH82up:Dm8wH82upNRFwvRQ3A,id:idNRFwvRQ3A,OS5EYjwqL:OS5EYjwqLNRFwvRQ3A,PBXApaDEo:PBXApaDEoNRFwvRQ3A,SljOiEvSI:SljOiEvSINRFwvRQ3A,X_2wnopI_:X_2wnopI_NRFwvRQ3A},index)=>{X_2wnopI_NRFwvRQ3A??=\"\";PBXApaDEoNRFwvRQ3A??=\"\";daS6C7K9zNRFwvRQ3A??=\"\";SljOiEvSINRFwvRQ3A??=\"\";OS5EYjwqLNRFwvRQ3A??=\"\";Dm8wH82upNRFwvRQ3A??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`NRFwvRQ3A-${idNRFwvRQ3A}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{Dm8wH82up:Dm8wH82upNRFwvRQ3A},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5r21j1\",layoutDependency:layoutDependency,layoutId:\"BqACKuV4t\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pjpzpo\",\"data-framer-name\":\"Title Wrap\",layoutDependency:layoutDependency,layoutId:\"zgks1z6mF\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-kfo2ht\",\"data-styles-preset\":\"h6ZIs1Jrh\",style:{\"--framer-text-alignment\":\"center\"},children:\"Text\"})}),className:\"framer-87zr1\",\"data-framer-name\":\"H2\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"uKgTPkbVz\",text:X_2wnopI_NRFwvRQ3A,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ghqsg8\",\"data-framer-name\":\"Links Content\",layoutDependency:layoutDependency,layoutId:\"UdKy8H4Ej\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-p447fy\",\"data-framer-name\":\"Links item\",layoutDependency:layoutDependency,layoutId:\"fIyKpO3R0\",style:{borderBottomLeftRadius:18,borderBottomRightRadius:18,borderTopLeftRadius:18,borderTopRightRadius:18},children:/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js:Youtube\":componentPresets.props[\"EijEFBCE8\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"o3jIPXkNj\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:PBXApaDEoNRFwvRQ3A,className:\"framer-9nvhhw\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"dcLKMq9pH\",stylesPresetsClassNames:{a:\"framer-styles-preset-1g23a2x\",blockquote:\"framer-styles-preset-10j5di4\",code:\"framer-styles-preset-tto2jg\",h1:\"framer-styles-preset-dl640q\",h2:\"framer-styles-preset-kfo2ht\",h3:\"framer-styles-preset-1by1c9y\",h4:\"framer-styles-preset-5qpsv3\",h5:\"framer-styles-preset-afu8ck\",h6:\"framer-styles-preset-v9zb80\",img:\"framer-styles-preset-1i6id3c\",p:\"framer-styles-preset-2c7fk9\"},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-z84aa0\",\"data-framer-name\":\"Links item\",layoutDependency:layoutDependency,layoutId:\"gBIoAPv7s\",style:{borderBottomLeftRadius:18,borderBottomRightRadius:18,borderTopLeftRadius:18,borderTopRightRadius:18},children:/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js:Youtube\":componentPresets.props[\"EijEFBCE8\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"o3jIPXkNj\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:daS6C7K9zNRFwvRQ3A,className:\"framer-1iw1axm\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Rr0HCXk46\",stylesPresetsClassNames:{a:\"framer-styles-preset-1g23a2x\",blockquote:\"framer-styles-preset-10j5di4\",code:\"framer-styles-preset-tto2jg\",h1:\"framer-styles-preset-dl640q\",h2:\"framer-styles-preset-kfo2ht\",h3:\"framer-styles-preset-1by1c9y\",h4:\"framer-styles-preset-5qpsv3\",h5:\"framer-styles-preset-afu8ck\",h6:\"framer-styles-preset-v9zb80\",img:\"framer-styles-preset-1i6id3c\",p:\"framer-styles-preset-2c7fk9\"},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-q38tf6\",\"data-framer-name\":\"Links item\",layoutDependency:layoutDependency,layoutId:\"tOWufD1Na\",style:{borderBottomLeftRadius:18,borderBottomRightRadius:18,borderTopLeftRadius:18,borderTopRightRadius:18},children:/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js:Youtube\":componentPresets.props[\"EijEFBCE8\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"o3jIPXkNj\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:SljOiEvSINRFwvRQ3A,className:\"framer-3o1cvq\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"T19UCZFeR\",stylesPresetsClassNames:{a:\"framer-styles-preset-1g23a2x\",blockquote:\"framer-styles-preset-10j5di4\",code:\"framer-styles-preset-tto2jg\",h1:\"framer-styles-preset-dl640q\",h2:\"framer-styles-preset-kfo2ht\",h3:\"framer-styles-preset-1by1c9y\",h4:\"framer-styles-preset-5qpsv3\",h5:\"framer-styles-preset-afu8ck\",h6:\"framer-styles-preset-v9zb80\",img:\"framer-styles-preset-1i6id3c\",p:\"framer-styles-preset-2c7fk9\"},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-qjez9e\",\"data-framer-name\":\"Links item\",layoutDependency:layoutDependency,layoutId:\"VrIWHoJGj\",style:{borderBottomLeftRadius:18,borderBottomRightRadius:18,borderTopLeftRadius:18,borderTopRightRadius:18},children:/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js:Youtube\":componentPresets.props[\"EijEFBCE8\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"o3jIPXkNj\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:OS5EYjwqLNRFwvRQ3A,className:\"framer-1hothpj\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"sQv2eqMfd\",stylesPresetsClassNames:{a:\"framer-styles-preset-1g23a2x\",blockquote:\"framer-styles-preset-10j5di4\",code:\"framer-styles-preset-tto2jg\",h1:\"framer-styles-preset-dl640q\",h2:\"framer-styles-preset-kfo2ht\",h3:\"framer-styles-preset-1by1c9y\",h4:\"framer-styles-preset-5qpsv3\",h5:\"framer-styles-preset-afu8ck\",h6:\"framer-styles-preset-v9zb80\",img:\"framer-styles-preset-1i6id3c\",p:\"framer-styles-preset-2c7fk9\"},verticalAlignment:\"top\",withExternalLayout:true})})})]})]})})},idNRFwvRQ3A);})})})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-gdFXZ.framer-1jucweo, .framer-gdFXZ .framer-1jucweo { display: block; }\",\".framer-gdFXZ.framer-1oqik7 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; max-width: 1440px; padding: 0px; position: relative; width: 1216px; }\",\".framer-gdFXZ .framer-264hhd { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-gdFXZ .framer-5r21j1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-gdFXZ .framer-1pjpzpo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1216px; }\",\".framer-gdFXZ .framer-87zr1 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-gdFXZ .framer-1ghqsg8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-gdFXZ .framer-p447fy, .framer-gdFXZ .framer-z84aa0, .framer-gdFXZ .framer-q38tf6, .framer-gdFXZ .framer-qjez9e { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 24px 0px 24px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-gdFXZ .framer-9nvhhw, .framer-gdFXZ .framer-1iw1axm, .framer-gdFXZ .framer-3o1cvq, .framer-gdFXZ .framer-1hothpj { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-gdFXZ.framer-1oqik7, .framer-gdFXZ .framer-264hhd, .framer-gdFXZ .framer-5r21j1, .framer-gdFXZ .framer-1pjpzpo, .framer-gdFXZ .framer-1ghqsg8, .framer-gdFXZ .framer-p447fy, .framer-gdFXZ .framer-z84aa0, .framer-gdFXZ .framer-q38tf6, .framer-gdFXZ .framer-qjez9e { gap: 0px; } .framer-gdFXZ.framer-1oqik7 > *, .framer-gdFXZ .framer-5r21j1 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-gdFXZ.framer-1oqik7 > :first-child, .framer-gdFXZ .framer-264hhd > :first-child, .framer-gdFXZ .framer-5r21j1 > :first-child, .framer-gdFXZ .framer-1pjpzpo > :first-child, .framer-gdFXZ .framer-p447fy > :first-child, .framer-gdFXZ .framer-z84aa0 > :first-child, .framer-gdFXZ .framer-q38tf6 > :first-child, .framer-gdFXZ .framer-qjez9e > :first-child { margin-top: 0px; } .framer-gdFXZ.framer-1oqik7 > :last-child, .framer-gdFXZ .framer-264hhd > :last-child, .framer-gdFXZ .framer-5r21j1 > :last-child, .framer-gdFXZ .framer-1pjpzpo > :last-child, .framer-gdFXZ .framer-p447fy > :last-child, .framer-gdFXZ .framer-z84aa0 > :last-child, .framer-gdFXZ .framer-q38tf6 > :last-child, .framer-gdFXZ .framer-qjez9e > :last-child { margin-bottom: 0px; } .framer-gdFXZ .framer-264hhd > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-gdFXZ .framer-1pjpzpo > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-gdFXZ .framer-1ghqsg8 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-gdFXZ .framer-1ghqsg8 > :first-child { margin-left: 0px; } .framer-gdFXZ .framer-1ghqsg8 > :last-child { margin-right: 0px; } .framer-gdFXZ .framer-p447fy > *, .framer-gdFXZ .framer-z84aa0 > *, .framer-gdFXZ .framer-q38tf6 > *, .framer-gdFXZ .framer-qjez9e > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }\",\".framer-gdFXZ.framer-v-1nqty95.framer-1oqik7 { width: 600px; }\",\".framer-gdFXZ.framer-v-1nqty95 .framer-1pjpzpo, .framer-gdFXZ.framer-v-55nyz1 .framer-1pjpzpo { width: 100%; }\",\".framer-gdFXZ.framer-v-1nqty95 .framer-1ghqsg8 { align-content: unset; align-items: unset; display: grid; gap: 48px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); }\",\".framer-gdFXZ.framer-v-1nqty95 .framer-p447fy, .framer-gdFXZ.framer-v-1nqty95 .framer-z84aa0, .framer-gdFXZ.framer-v-1nqty95 .framer-q38tf6, .framer-gdFXZ.framer-v-1nqty95 .framer-qjez9e { align-self: start; flex: none; justify-self: start; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-gdFXZ.framer-v-1nqty95 .framer-1ghqsg8 { gap: 0px; } .framer-gdFXZ.framer-v-1nqty95 .framer-1ghqsg8 > *, .framer-gdFXZ.framer-v-1nqty95 .framer-1ghqsg8 > :first-child, .framer-gdFXZ.framer-v-1nqty95 .framer-1ghqsg8 > :last-child { margin: 0px; } }\",\".framer-gdFXZ.framer-v-55nyz1.framer-1oqik7 { width: 300px; }\",\".framer-gdFXZ.framer-v-55nyz1 .framer-1ghqsg8 { flex-direction: column; gap: 48px; justify-content: flex-start; }\",\".framer-gdFXZ.framer-v-55nyz1 .framer-p447fy, .framer-gdFXZ.framer-v-55nyz1 .framer-z84aa0, .framer-gdFXZ.framer-v-55nyz1 .framer-q38tf6, .framer-gdFXZ.framer-v-55nyz1 .framer-qjez9e { flex: none; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-gdFXZ.framer-v-55nyz1 .framer-1ghqsg8 { gap: 0px; } .framer-gdFXZ.framer-v-55nyz1 .framer-1ghqsg8 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-gdFXZ.framer-v-55nyz1 .framer-1ghqsg8 > :first-child { margin-top: 0px; } .framer-gdFXZ.framer-v-55nyz1 .framer-1ghqsg8 > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 536\n * @framerIntrinsicWidth 1216\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1440px\",null,null]},\"ad5BkKO7m\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1440px\",null,null]},\"d27i2Ijfn\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1440px\",null,null]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerWJYKHLEkl=withCSS(Component,css,\"framer-gdFXZ\");export default FramerWJYKHLEkl;FramerWJYKHLEkl.displayName=\"Footer Links\";FramerWJYKHLEkl.defaultProps={height:536,width:1216};addPropertyControls(FramerWJYKHLEkl,{variant:{options:[\"qm0RT53Oi\",\"ad5BkKO7m\",\"d27i2Ijfn\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerWJYKHLEkl,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...getFontsFromSharedStyle(sharedStyle10.fonts),...componentPresets.fonts?.[\"o3jIPXkNj\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"o3jIPXkNj\"]):[],...componentPresets.fonts?.[\"EijEFBCE8\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"EijEFBCE8\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerWJYKHLEkl\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1216\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1440px\\\",null,null]},\\\"ad5BkKO7m\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1440px\\\",null,null]},\\\"d27i2Ijfn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1440px\\\",null,null]}}}\",\"framerIntrinsicHeight\":\"536\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "i5BAA2R,IAAMA,GAAW,CAAC,QAAQ,OAAO,eAAe,SAAS,WAAW,QAAQ,EAQ7V,SAASC,EAAaC,EAAM,CAAC,GAAK,CAC5C,YAAAC,EAAY,MAAAC,EACZ,YAAAC,EAAY,YAAAC,EAAY,gBAAAC,GAAgB,cAAAC,GAAc,kBAAAC,EAAkB,WAAAC,EAAW,eAAAC,EACnF,WAAAC,EAAW,SAAAC,EAAS,YAAAC,GAAY,YAAAC,GAAY,iBAAAC,GAC5C,SAAAC,EAAS,aAAAC,GAAa,aAAAC,GAAa,aAAAC,GAAa,aAAAC,EAAa,aAAAC,EAAa,aAAAC,EAAa,aAAAC,EAAa,aAAAC,EAAa,aAAAC,EAAa,cAAAC,EAAc,WAAAC,EAAW,WAAAC,GAAW,mBAAAC,CAAkB,EAAE5B,EAChL6B,EAAS,CAAC,CAAC,KAAK3B,EAAM,CAAC,EAAE,aAAaa,EAAS,MAAMC,EAAY,EAAE,CAAC,KAAKd,EAAM,CAAC,EAAE,aAAaa,EAAS,MAAME,EAAY,EAAE,CAAC,KAAKf,EAAM,CAAC,EAAE,aAAaa,EAAS,MAAMG,EAAY,EAAE,CAAC,KAAKhB,EAAM,CAAC,EAAE,aAAaa,EAAS,MAAMI,CAAY,EAAE,CAAC,KAAKjB,EAAM,CAAC,EAAE,aAAaa,EAAS,MAAMK,CAAY,EAAE,CAAC,KAAKlB,EAAM,CAAC,EAAE,aAAaa,EAAS,MAAMM,CAAY,EAAE,CAAC,KAAKnB,EAAM,CAAC,EAAE,aAAaa,EAAS,MAAMO,CAAY,EAAE,CAAC,KAAKpB,EAAM,CAAC,EAAE,aAAaa,EAAS,MAAMQ,CAAY,EAAE,CAAC,KAAKrB,EAAM,CAAC,EAAE,aAAaa,EAAS,MAAMS,CAAY,EAAE,CAAC,KAAKtB,EAAM,CAAC,EAAE,aAAaa,EAAS,MAAMU,CAAa,CAAC,EAAE,MAAM,EAAEvB,EAAM,MAAM,EAC3lB,CAAC4B,EAASC,CAAc,EAAQC,GAAS/B,EAAY,CAAC,EAAQgC,GAAU,IAAI,CAACF,EAAe9B,EAAY,CAAC,CAAE,EAAE,CAACA,CAAW,CAAC,EAC/H,IAAMiC,EAAc,CAAC,OAAO,CAAC,WAAWC,EAAkBhC,CAAW,EAAE,WAAW,CAAC,KAAK,YAAY,SAAS,EAAE,CAAC,EAAE,SAAS,CAAC,WAAWgC,EAAkB7B,EAAa,EAAE,WAAW,CAAC,KAAK,YAAY,SAAS,EAAE,CAAC,EAAE,MAAM,CAAC,WAAW6B,EAAkB3B,CAAU,EAAE,WAAW,CAAC,KAAK,YAAY,SAAS,EAAE,CAAC,EAAE,QAAQ,CAAC,MAAM,GAAG,WAAW,CAAC,KAAK,YAAY,SAAS,EAAE,CAAC,CAAC,EAAQ4B,EAAoB,CAAC,OAAO,CAAC,MAAM,CAAC,EAAE,SAAS,CAAC,MAAM,CAAC,CAAC,EAAQC,EAAa,CAAC,OAAO,CAAC,MAAMF,EAAkB9B,EAAe,EAAE,WAAW,CAAC,KAAK,YAAY,SAAS,EAAE,EAAE,WAAWsB,EAAU,EAAE,SAAS,CAAC,MAAMQ,EAAkB5B,CAAiB,EAAE,WAAW,CAAC,KAAK,YAAY,SAAS,EAAE,EAAE,WAAWqB,CAAkB,EAAE,MAAM,CAAC,MAAMO,EAAkB1B,CAAc,EAAE,WAAW,CAAC,KAAK,YAAY,SAAS,EAAE,CAAC,CAAC,EAAQ6B,EAAWC,GAAgBvC,CAAK,EAAE,OAAoBwC,EAAK,MAAM,CAAC,MAAM,CAAC,QAAQ,EAAE,EAAE,SAASX,EAAS,IAAI,CAACY,EAAKC,IAAQ,CAAC,IAAMC,EAAcb,IAAWY,EAAM,SAAS,WAAW,OAAoBE,EAAMC,EAAO,IAAI,CAAC,MAAM,CAAC,MAAM,cAAc,QAAQ,OAAO,aAAaH,IAAQb,EAAS,OAAO,EAAE,EAAEhB,EAAW,EAAE,QAAQC,IAAkBgB,IAAWY,EAAMZ,IAAWY,EAAM,WAAW,SAAS,GAAM,QAAQC,EAAc,WAAWb,IAAWY,EAAM,SAAS,QAAQ,SAAS,UAAU,MAAM,IAAI,CAAIZ,IAAWY,IAAOX,EAAeW,CAAK,EAAKD,EAAK,OAAMA,EAAK,MAAM,EAAKA,EAAK,cAAaA,EAAK,aAAaC,CAAK,EAAG,EAAE,SAAS,CAAcF,EAAK,MAAM,CAAC,yBAAyB,GAAK,MAAM,CAAC,GAAG1C,GAAW,YAAYc,GAAY,MAAMF,EAAW,OAAOC,EAAS,IAAID,EAAWC,EAAS,IAAID,CAAU,EAAE,SAAsB8B,EAAKK,EAAO,IAAI,CAAC,MAAM,CAAC,GAAG/C,GAAW,MAAMY,EAAW,OAAOA,EAAW,aAAa,KAAK,EAAE,SAASwB,EAAc,SAAsBM,EAAKK,EAAO,IAAI,CAAC,MAAM,CAAC,MAAM,KAAK,MAAMnC,EAAW,EAAE,EAAE,OAAO,KAAK,MAAMA,EAAW,EAAE,EAAE,aAAa,MAAM,WAAWN,CAAW,EAAE,SAASgC,CAAmB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeI,EAAKK,EAAO,IAAI,CAAC,SAASR,EAAa,MAAM,CAAC,QAAQ,OAAO,MAAM,cAAc,QAAQ,OAAO,UAAU,aAAa,aAAa,aAAa,WAAW,IAAI,UAAU,OAAO,SAAS,SAAS,WAAW,WAAW,SAAS1B,EAAS,WAAWmC,GAAU,GAAGR,EAAW,WAAWV,CAAkB,EAAE,SAASa,EAAK,IAAI,CAAC,CAAC,CAAC,EAAEC,CAAK,CAAE,CAAC,CAAC,CAAC,CAAE,CAAC3C,EAAa,aAAa,CAAC,OAAO,IAAI,MAAM,IAAI,YAAY,EAAE,MAAM,CAAC,YAAY,YAAY,WAAW,EAAE,QAAQ,SAAS,YAAY,OAAO,YAAY,OAAO,gBAAgB,OAAO,cAAc,OAAO,kBAAkB,OAAO,WAAW,OAAO,eAAe,OAAO,WAAW,GAAG,SAAS,GAAG,WAAW,IAAI,mBAAmB,IAAI,YAAY,EAAE,YAAY,GAAG,iBAAiB,EAAK,EAAEgD,EAAoBhD,EAAa,CACxnF,YAAY,CAAC,KAAKiD,EAAY,OAAO,MAAM,UAAU,aAAajD,EAAa,aAAa,YAAY,eAAe,GAAK,KAAK,EAAE,IAAI,EAAE,IAAI,CAAC,EAC9I,QAAQ,CAAC,KAAKiD,EAAY,KAAK,MAAM,WAAW,aAAajD,EAAa,aAAa,QAAQ,QAAQ,CAAC,SAAS,WAAW,OAAO,EAAE,aAAa,CAAC,SAAS,WAAW,OAAO,CAAC,EAAE,YAAY,CAAC,KAAKiD,EAAY,MAAM,MAAM,SAAS,aAAajD,EAAa,aAAa,YAAY,OAAO,CAAC,CAAC,QAAAkD,CAAO,IAAIA,IAAU,QAAQ,EAAE,YAAY,CAAC,KAAKD,EAAY,MAAM,MAAM,SAAS,aAAajD,EAAa,aAAa,YAAY,OAAO,CAAC,CAAC,QAAAkD,CAAO,IAAIA,IAAU,QAAQ,EAAE,gBAAgB,CAAC,KAAKD,EAAY,MAAM,MAAM,OAAO,aAAajD,EAAa,aAAa,gBAAgB,OAAO,CAAC,CAAC,QAAAkD,CAAO,IAAIA,IAAU,QAAQ,EAAE,cAAc,CAAC,KAAKD,EAAY,MAAM,MAAM,SAAS,aAAajD,EAAa,aAAa,cAAc,OAAO,CAAC,CAAC,QAAAkD,CAAO,IAAIA,IAAU,UAAU,EAAE,kBAAkB,CAAC,KAAKD,EAAY,MAAM,MAAM,OAAO,aAAajD,EAAa,aAAa,kBAAkB,OAAO,CAAC,CAAC,QAAAkD,CAAO,IAAIA,IAAU,UAAU,EAAE,mBAAmB,CAAC,KAAKD,EAAY,KAAK,MAAM,SAAS,QAAQ,CAAC,IAAI,IAAI,IAAI,IAAI,IAAI,IAAI,IAAI,IAAI,GAAG,EAAE,aAAa,CAAC,OAAO,cAAc,QAAQ,UAAU,SAAS,YAAY,OAAO,aAAa,OAAO,EAAE,aAAajD,EAAa,aAAa,mBAAmB,OAAO,CAAC,CAAC,QAAAkD,CAAO,IAAIA,IAAU,UAAU,EAAE,WAAW,CAAC,KAAKD,EAAY,MAAM,MAAM,SAAS,aAAajD,EAAa,aAAa,WAAW,OAAO,CAAC,CAAC,QAAAkD,CAAO,IAAIA,IAAU,OAAO,EAAE,eAAe,CAAC,KAAKD,EAAY,MAAM,MAAM,OAAO,aAAajD,EAAa,aAAa,eAAe,OAAO,CAAC,CAAC,QAAAkD,CAAO,IAAIA,IAAU,OAAO,EAC39C,WAAW,CAAC,KAAKD,EAAY,OAAO,MAAM,cAAc,IAAI,GAAG,IAAI,GAAG,KAAK,EAAE,aAAajD,EAAa,aAAa,UAAU,EAC9H,SAAS,CAAC,GAAGmD,GAAgB,aAAanD,EAAa,aAAa,QAAQ,EAC5E,YAAY,CAAC,KAAKiD,EAAY,OAAO,MAAM,WAAW,IAAI,EAAE,IAAI,GAAG,KAAK,EAAE,aAAajD,EAAa,aAAa,WAAW,EAAE,YAAY,CAAC,KAAKiD,EAAY,OAAO,MAAM,WAAW,IAAI,GAAG,IAAI,IAAI,KAAK,EAAE,aAAajD,EAAa,aAAa,WAAW,EAAE,GAAGoD,GAAa,iBAAiB,CAAC,MAAM,UAAU,KAAKH,EAAY,QAAQ,aAAa,UAAU,cAAc,SAAS,EAAE,MAAM,CAAC,KAAKA,EAAY,MAAM,MAAM,QAAQ,SAAS,GAAG,aAAajD,EAAa,aAAa,MAAM,gBAAgB,CAAC,KAAKiD,EAAY,OAAO,gBAAgB,GAAK,aAAa,cAAc,CAAC,EACxjB,SAAS,CAAC,MAAM,YAAY,KAAKA,EAAY,YAAY,EAAE,aAAa,CAAC,MAAM,eAAe,KAAKA,EAAY,YAAY,EAAE,aAAa,CAAC,MAAM,eAAe,KAAKA,EAAY,YAAY,EAAE,aAAa,CAAC,MAAM,eAAe,KAAKA,EAAY,YAAY,EAAE,aAAa,CAAC,MAAM,eAAe,KAAKA,EAAY,YAAY,EAAE,aAAa,CAAC,MAAM,eAAe,KAAKA,EAAY,YAAY,EAAE,aAAa,CAAC,MAAM,eAAe,KAAKA,EAAY,YAAY,EAAE,aAAa,CAAC,MAAM,eAAe,KAAKA,EAAY,YAAY,EAAE,aAAa,CAAC,MAAM,eAAe,KAAKA,EAAY,YAAY,EAAE,aAAa,CAAC,MAAM,eAAe,KAAKA,EAAY,YAAY,EAAE,cAAc,CAAC,MAAM,gBAAgB,KAAKA,EAAY,YAAY,CAAC,CAAC,EAAEjD,EAAa,YAAY,gBCpB8P,IAAMqD,GAAkBC,GAASC,CAAY,EAAQC,GAAwBF,GAASG,EAAkB,EAAQC,GAAW,CAAC,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,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,GAAkBC,GAAW,OAAOA,GAAQ,UAAUA,IAAQ,MAAM,OAAOA,EAAM,KAAM,SAAiBA,EAAc,OAAOA,GAAQ,SAAS,CAAC,IAAIA,CAAK,EAAE,OAAkBC,GAAa,CAACC,EAAKP,EAASQ,IAAiB,CAAC,OAAOD,EAAK,MAAM,CAAC,IAAI,UAAU,OAAOP,EAAS,SAASQ,EAAe,IAAI,UAAU,OAAOR,EAAS,SAASQ,EAAe,IAAI,QAAQ,OAAOR,EAAS,OAAOQ,EAAe,IAAI,aAAa,OAAOR,EAAS,YAAYQ,CAAe,CAAC,EAAi0B,IAAMC,GAAU,CAAC,CAAC,MAAAC,EAAM,SAAAC,EAAS,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAKC,GAAaJ,CAAK,EAAE,OAAOE,EAASC,CAAI,CAAE,EAAQE,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAJ,CAAQ,IAAI,CAAC,IAAMK,EAAaC,EAAWC,CAAmB,EAAQC,EAAWJ,GAAOC,EAAO,WAAiBI,EAAmBC,GAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAAST,CAAQ,CAAC,CAAE,EAAQY,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,eAAe,YAAY,QAAQ,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,QAAQL,GAAwBK,EAAM,OAAO,GAAGA,EAAM,SAAS,WAAW,GAAUC,GAAuB,CAACD,EAAME,IAAeF,EAAM,iBAAwBE,EAAS,KAAK,GAAG,EAAEF,EAAM,iBAAwBE,EAAS,KAAK,GAAG,EAAUC,GAA6BC,EAAW,SAASJ,EAAMK,EAAI,CAAC,IAAMC,EAAYC,GAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,GAAM,EAAO,CAAC,aAAAC,GAAa,UAAAC,EAAS,EAAEC,GAAc,EAAQC,EAAkBC,GAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,EAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,EAAmB,YAAAC,EAAY,GAAGC,CAAS,EAAEjC,GAASI,CAAK,EAAO,CAAC,YAAA8B,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,GAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAAnC,CAAQ,EAAEoC,GAAgB,CAAC,WAAAC,GAAW,eAAe,YAAY,IAAI/B,EAAW,QAAAW,EAAQ,kBAAAqB,EAAiB,CAAC,EAAQC,EAAiBxC,GAAuBD,EAAME,CAAQ,EAA4DwC,EAAkBC,EAAGC,GAAkB,GAArE,CAAa3B,EAAS,CAAuE,EAAE,OAAoB1B,EAAKsD,EAAY,CAAC,GAAG3B,GAAUT,EAAgB,SAAsBlB,EAAKC,GAAS,CAAC,QAAQU,EAAS,QAAQ,GAAM,SAAsBX,EAAKR,GAAW,CAAC,MAAM+D,GAAY,SAAsBvD,EAAKE,EAAO,IAAI,CAAC,GAAGoC,EAAU,GAAGI,EAAgB,UAAUU,EAAGD,EAAkB,iBAAiBzB,EAAUc,CAAU,EAAE,mBAAmB,UAAU,iBAAiBU,EAAiB,SAAS,YAAY,IAAIjC,EAAW,MAAM,CAAC,GAAGQ,CAAK,EAAE,GAAG+B,GAAqB,CAAC,UAAU,CAAC,mBAAmB,cAAc,CAAC,EAAEjB,EAAYI,CAAc,EAAE,SAAsB3C,EAAKyD,GAAmB,CAAC,SAAsBzD,EAAKd,GAAU,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,YAAY,KAAKwE,GAAc,KAAK,YAAY,EAAE,MAAM,CAAC,KAAK,eAAe,MAAM,CAAC,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,eAAe,MAAM,YAAY,EAAE,KAAK,iBAAiB,CAAC,EAAE,SAAS,CAACC,EAAWC,EAAeC,IAAwB7D,EAAK8D,EAAU,CAAC,SAASH,GAAY,IAAI,CAAC,CAAC,UAAUxB,EAAmB,UAAUF,EAAmB,UAAUG,EAAmB,GAAGC,EAAY,UAAUR,EAAmB,UAAUK,GAAmB,UAAUH,GAAmB,UAAUC,GAAmB,UAAUF,EAAkB,EAAEiC,MAASjC,KAAqB,GAAGC,KAAqB,GAAGC,KAAqB,GAAGC,IAAqB,GAAGC,KAAqB,GAAGC,IAAqB,GAAGC,IAAqB,GAAuBpC,EAAKsD,EAAY,CAAC,GAAG,aAAajB,CAAW,GAAG,SAAsBrC,EAAKgE,GAAqB,SAAS,CAAC,MAAM,CAAC,UAAU5B,CAAkB,EAAE,SAAsB6B,EAAM/D,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,qBAAqB,iBAAiBgD,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,wEAAwE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,wEAAwE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAS,CAAclD,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,cAAc,iBAAiBgD,EAAiB,SAAS,YAAY,SAAsBlD,EAAKkE,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,OAAO3C,GAAmB,OAAO,OAAO,kBAAkB,GAAG4C,GAAkBtC,CAAkB,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,iBAAiBqB,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,GAAGM,GAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,OAAOjC,GAAmB,OAAO,OAAO,SAAS,GAAG4C,GAAkBtC,CAAkB,CAAC,CAAC,CAAC,EAAEU,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,EAAesB,EAAM/D,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,iBAAiBgD,EAAiB,SAAS,YAAY,SAAS,CAAclD,EAAKoE,EAAS,CAAC,sBAAsB,GAAK,SAAsBpE,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,uBAAuB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,KAAK,MAAM,CAAC,OAAO,EAAE,iBAAiBgD,EAAiB,SAAS,YAAY,KAAKpB,GAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe9B,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiBgD,EAAiB,SAAS,YAAY,SAAsBlD,EAAKqE,GAAc,CAAC,OAAO,oFAAoF,UAAU,iBAAiB,iBAAiBnB,EAAiB,SAAS,YAAY,OAAO,YAAY,YAAY,CAAC,UAAU,WAAW,EAAE,SAASoB,IAAwBL,EAAMH,EAAU,CAAC,SAAS,CAAcG,EAAM/D,EAAO,MAAM,CAAC,UAAU,iBAAiB,iBAAiBgD,EAAiB,SAAS,YAAY,SAAS,CAAclD,EAAKoE,EAAS,CAAC,sBAAsB,GAAK,SAAsBpE,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,sBAAsB,6FAA6F,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,gBAAgB,EAAE,iBAAiBgD,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,oEAAoE,EAAE,KAAKnB,GAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe/B,EAAKuE,GAAmB,CAAC,gBAAgB,GAAK,UAAU,gBAAgB,UAAU,OAAO,iBAAiBrB,EAAiB,SAAS,YAAY,YAAY,mBAAmB,SAAS,GAAK,MAAM,CAAC,4BAA4B,wEAAwE,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,uEAAuE,EAAE,KAAK,MAAM,CAAC,CAAC,CAAC,CAAC,EAAee,EAAM/D,EAAO,MAAM,CAAC,UAAU,iBAAiB,iBAAiBgD,EAAiB,SAAS,YAAY,SAAS,CAAclD,EAAKoE,EAAS,CAAC,sBAAsB,GAAK,SAAsBpE,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,sBAAsB,6FAA6F,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,gBAAgB,EAAE,iBAAiBgD,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,oEAAoE,EAAE,KAAKlB,GAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAehC,EAAKuE,GAAmB,CAAC,gBAAgB,GAAK,UAAU,iBAAiB,UAAU,QAAQ,iBAAiBrB,EAAiB,SAAS,YAAY,YAAY,iBAAiB,SAAS,GAAK,MAAM,CAAC,4BAA4B,wEAAwE,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,uEAAuE,EAAE,KAAK,OAAO,CAAC,CAAC,CAAC,CAAC,EAAee,EAAM/D,EAAO,MAAM,CAAC,UAAU,iBAAiB,iBAAiBgD,EAAiB,SAAS,YAAY,SAAS,CAAclD,EAAKoE,EAAS,CAAC,sBAAsB,GAAK,SAAsBpE,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,sBAAsB,6FAA6F,EAAE,SAAS,8BAA8B,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,gBAAgB,EAAE,iBAAiBgD,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,oEAAoE,EAAE,KAAKjB,EAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAejC,EAAKuE,GAAmB,CAAC,gBAAgB,GAAK,UAAU,iBAAiB,UAAU,UAAU,iBAAiBrB,EAAiB,SAAS,YAAY,YAAY,2BAA2B,SAAS,GAAM,MAAM,CAAC,4BAA4B,wEAAwE,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,uEAAuE,EAAE,KAAK,UAAU,CAAC,CAAC,CAAC,CAAC,EAAee,EAAM/D,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,cAAc,iBAAiBgD,EAAiB,SAAS,YAAY,SAAS,CAAclD,EAAKoE,EAAS,CAAC,sBAAsB,GAAK,SAAsBpE,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,sBAAsB,6FAA6F,EAAE,SAAS,0BAA0B,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,gBAAgB,EAAE,iBAAiBgD,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,oEAAoE,EAAE,KAAKhB,GAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAelC,EAAKwE,GAA0B,CAAC,SAAsBxE,EAAKyE,GAA8B,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,iBAAiBvB,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBlD,EAAK0E,EAAa,CAAC,YAAY,oEAAoE,WAAW,GAAG,YAAY,qBAAqB,YAAY,EAAE,KAAK,GAAK,WAAW,UAAU,SAAS,GAAG,WAAW,IAAI,mBAAmB,IAAI,OAAO,OAAO,WAAW,wEAAwE,GAAG,YAAY,cAAc,wEAAwE,iBAAiB,GAAM,MAAM,CAAC,cAAc,oBAAoB,EAAE,SAAS,YAAY,YAAY,GAAG,MAAM,CAAC,MAAM,MAAM,EAAE,gBAAgB,qEAAqE,YAAY,GAAG,eAAe,wEAAwE,kBAAkB,wEAAwE,QAAQ,WAAW,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe1E,EAAKwE,GAA0B,CAAC,OAAO,GAAG,MAAM,YAAYjD,GAAmB,OAAO,OAAO,0BAA0B,GAAGiC,GAAqB,CAAC,UAAU,CAAC,MAAM,QAAQjC,GAAmB,OAAO,OAAO,UAAU,CAAC,EAAEgB,EAAYI,CAAc,EAAE,SAAsB3C,EAAKyE,GAA8B,CAAC,UAAU,2BAA2B,mBAAmB,SAAS,iBAAiBvB,EAAiB,SAAS,sBAAsB,KAAK,SAAS,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBlD,EAAK2E,GAAmB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,SAAS,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,KAAK,SAAS,QAAQC,GAAaN,GAAU,CAAC,MAAM,YAAY,QAAQ,YAAY,QAAQ,WAAW,EAAE,WAAW,EAAE,UAAUnC,EAAmB,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEE,CAAW,EAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQwC,GAAI,CAAC,kFAAkF,kFAAkF,2PAA2P,0PAA0P,iSAAiS,6GAA6G,gTAAgT,oKAAoK,6RAA6R,4RAA4R,wUAAwU,6MAA6M,wdAAwd,qhBAAqhB,mQAAmQ,8IAA8I,yGAAyG,gpEAAgpE,yGAAyG,8GAA8G,4FAA4F,ibAAib,GAAeA,GAAI,+bAA+b,EAQluxBC,EAAgBC,GAAQnE,GAAUiE,GAAI,cAAc,EAASG,GAAQF,EAAgBA,EAAgB,YAAY,yBAAyBA,EAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,IAAI,EAAEG,EAAoBH,EAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,UAAU,cAAc,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,GAASL,EAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,UAAU,OAAO,SAAS,MAAM,SAAS,IAAI,4FAA4F,OAAO,KAAK,EAAE,CAAC,OAAO,UAAU,OAAO,SAAS,MAAM,SAAS,IAAI,4FAA4F,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGM,GAAkB,GAAGC,GAAwB,GAAGC,EAAoCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECRl2EC,GAAU,UAAU,CAAC,CAAC,EAAS,IAAMC,GAAM,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,CAAC,EAAeC,GAAI,CAAC,yoBAAyoB,EAAeC,GAAU,eCA/vBC,GAAU,UAAU,CAAC,wBAAwB,sBAAsB,6BAA6B,8BAA8B,CAAC,EAAS,IAAMC,GAAM,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,cAAc,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,EAAE,CAAC,OAAO,cAAc,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,EAAE,CAAC,OAAO,cAAc,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,EAAE,CAAC,OAAO,cAAc,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,CAAC,CAAC,CAAC,EAAeC,GAAI,CAAC,8oCAAwpC,EAAeC,GAAU,eCAxV,IAAMC,GAAW,CAAC,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,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,EAA4sB,IAAMC,GAAU,CAAC,CAAC,MAAAC,EAAM,SAAAC,EAAS,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAKC,GAAaJ,CAAK,EAAE,OAAOE,EAASC,CAAI,CAAE,EAAQE,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAJ,CAAQ,IAAI,CAAC,IAAMK,EAAaC,EAAWC,CAAmB,EAAQC,EAAWJ,GAAOC,EAAO,WAAiBI,EAAmBC,GAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAAST,CAAQ,CAAC,CAAE,EAAQY,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,QAAQ,YAAY,MAAM,YAAY,OAAO,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,QAAQL,GAAwBK,EAAM,OAAO,GAAGA,EAAM,SAAS,WAAW,GAAUC,GAAuB,CAACD,EAAME,IAAeF,EAAM,iBAAwBE,EAAS,KAAK,GAAG,EAAEF,EAAM,iBAAwBE,EAAS,KAAK,GAAG,EAAUC,GAA6BC,EAAW,SAASJ,EAAMK,EAAI,CAAC,IAAMC,EAAYC,GAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,GAAM,EAAO,CAAC,aAAAC,GAAa,UAAAC,EAAS,EAAEC,GAAc,EAAQC,EAAkBC,GAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,EAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,YAAAC,GAAY,GAAGC,CAAS,EAAE/B,GAASI,CAAK,EAAO,CAAC,YAAA4B,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,GAAW,SAAAjC,CAAQ,EAAEkC,GAAgB,CAAC,WAAAC,GAAW,eAAe,YAAY,IAAI7B,EAAW,QAAAW,EAAQ,kBAAAmB,EAAiB,CAAC,EAAQC,EAAiBtC,GAAuBD,EAAME,CAAQ,EAAmSsC,EAAkBC,EAAGC,GAAkB,GAA5S,CAAazB,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAwBA,EAAS,CAAuE,EAAE,OAAoB1B,EAAKoD,EAAY,CAAC,GAAGzB,GAAUT,EAAgB,SAAsBlB,EAAKC,GAAS,CAAC,QAAQU,EAAS,QAAQ,GAAM,SAAsBX,EAAKR,GAAW,CAAC,MAAM6D,GAAY,SAAsBrD,EAAKE,EAAO,IAAI,CAAC,GAAGkC,EAAU,GAAGI,EAAgB,UAAUU,EAAGD,EAAkB,gBAAgBvB,EAAUY,CAAU,EAAE,mBAAmB,UAAU,iBAAiBU,EAAiB,SAAS,YAAY,IAAI/B,EAAW,MAAM,CAAC,GAAGQ,CAAK,EAAE,GAAG6B,GAAqB,CAAC,UAAU,CAAC,mBAAmB,QAAQ,EAAE,UAAU,CAAC,mBAAmB,OAAO,CAAC,EAAEjB,EAAYI,CAAc,EAAE,SAAsBzC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB8C,EAAiB,SAAS,YAAY,SAAsBhD,EAAKuD,GAAmB,CAAC,SAAsBvD,EAAKd,GAAU,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,YAAY,KAAKsE,GAAc,KAAK,YAAY,EAAE,MAAM,CAAC,KAAK,eAAe,MAAM,EAAE,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,eAAe,MAAM,cAAc,EAAE,KAAK,iBAAiB,CAAC,EAAE,SAAS,CAACC,EAAWC,EAAeC,IAAwB3D,EAAK4D,EAAU,CAAC,SAASH,GAAY,IAAI,CAAC,CAAC,UAAU1B,EAAmB,UAAUG,EAAmB,GAAGC,EAAY,UAAUF,EAAmB,UAAUH,EAAmB,UAAUE,EAAmB,UAAUH,CAAkB,EAAEgC,MAAShC,IAAqB,GAAGC,IAAqB,GAAGC,IAAqB,GAAGC,IAAqB,GAAGC,IAAqB,GAAGC,IAAqB,GAAuBlC,EAAKoD,EAAY,CAAC,GAAG,aAAajB,CAAW,GAAG,SAAsBnC,EAAK8D,GAAqB,SAAS,CAAC,MAAM,CAAC,UAAU5B,CAAkB,EAAE,SAAsB6B,EAAM7D,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB8C,EAAiB,SAAS,YAAY,SAAS,CAAchD,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,iBAAiB8C,EAAiB,SAAS,YAAY,SAAsBhD,EAAKgE,EAAS,CAAC,sBAAsB,GAAK,SAAsBhE,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,UAAU,eAAe,mBAAmB,KAAK,MAAM,CAAC,OAAO,EAAE,iBAAiB8C,EAAiB,SAAS,YAAY,KAAKnB,EAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAekC,EAAM7D,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,iBAAiB8C,EAAiB,SAAS,YAAY,SAAS,CAAchD,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,iBAAiB8C,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBhD,EAAKiE,EAAyB,CAAC,QAAQ,CAAC,sEAAuFxD,EAAM,UAAa,wEAAyFA,EAAM,SAAY,EAAE,SAAsBT,EAAKgE,EAAS,CAAC,sBAAsB,GAAK,SAASlC,EAAmB,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiBkB,EAAiB,SAAS,YAAY,wBAAwB,CAAC,EAAE,+BAA+B,WAAW,+BAA+B,KAAK,8BAA8B,GAAG,8BAA8B,GAAG,8BAA8B,GAAG,+BAA+B,GAAG,8BAA8B,GAAG,8BAA8B,GAAG,8BAA8B,IAAI,+BAA+B,EAAE,6BAA6B,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehD,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,iBAAiB8C,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBhD,EAAKiE,EAAyB,CAAC,QAAQ,CAAC,sEAAuFxD,EAAM,UAAa,wEAAyFA,EAAM,SAAY,EAAE,SAAsBT,EAAKgE,EAAS,CAAC,sBAAsB,GAAK,SAASjC,EAAmB,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiBiB,EAAiB,SAAS,YAAY,wBAAwB,CAAC,EAAE,+BAA+B,WAAW,+BAA+B,KAAK,8BAA8B,GAAG,8BAA8B,GAAG,8BAA8B,GAAG,+BAA+B,GAAG,8BAA8B,GAAG,8BAA8B,GAAG,8BAA8B,IAAI,+BAA+B,EAAE,6BAA6B,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehD,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,iBAAiB8C,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBhD,EAAKiE,EAAyB,CAAC,QAAQ,CAAC,sEAAuFxD,EAAM,UAAa,wEAAyFA,EAAM,SAAY,EAAE,SAAsBT,EAAKgE,EAAS,CAAC,sBAAsB,GAAK,SAAShC,EAAmB,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiBgB,EAAiB,SAAS,YAAY,wBAAwB,CAAC,EAAE,+BAA+B,WAAW,+BAA+B,KAAK,8BAA8B,GAAG,8BAA8B,GAAG,8BAA8B,GAAG,+BAA+B,GAAG,8BAA8B,GAAG,8BAA8B,GAAG,8BAA8B,IAAI,+BAA+B,EAAE,6BAA6B,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehD,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,iBAAiB8C,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBhD,EAAKiE,EAAyB,CAAC,QAAQ,CAAC,sEAAuFxD,EAAM,UAAa,wEAAyFA,EAAM,SAAY,EAAE,SAAsBT,EAAKgE,EAAS,CAAC,sBAAsB,GAAK,SAAS/B,EAAmB,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiBe,EAAiB,SAAS,YAAY,wBAAwB,CAAC,EAAE,+BAA+B,WAAW,+BAA+B,KAAK,8BAA8B,GAAG,8BAA8B,GAAG,8BAA8B,GAAG,+BAA+B,GAAG,8BAA8B,GAAG,8BAA8B,GAAG,8BAA8B,IAAI,+BAA+B,EAAE,6BAA6B,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEb,CAAW,EAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQ+B,GAAI,CAAC,kFAAkF,kFAAkF,yQAAyQ,wQAAwQ,iQAAiQ,qRAAqR,mKAAmK,6QAA6Q,ybAAyb,4MAA4M,84DAA84D,iEAAiE,iHAAiH,6PAA6P,kQAAkQ,iVAAiV,gEAAgE,oHAAoH,sNAAsN,mbAAmb,GAAeA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAiBA,EAAG,EAQxwlBC,EAAgBC,GAAQxD,GAAUsD,GAAI,cAAc,EAASG,GAAQF,EAAgBA,EAAgB,YAAY,eAAeA,EAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,IAAI,EAAEG,EAAoBH,EAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,UAAU,SAAS,OAAO,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,GAASL,EAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGM,EAAoCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAsCC,EAAK,EAAE,GAAoBA,GAAQ,UAAaC,GAA6CD,GAAQ,SAAY,EAAE,CAAC,EAAE,GAAoBA,GAAQ,UAAaC,GAA6CD,GAAQ,SAAY,EAAE,CAAC,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC",
  "names": ["flexCenter", "RadioButtons", "props", "defaultItem", "items", "activeColor", "circleColor", "textActiveColor", "inactiveColor", "textInactiveColor", "hoverColor", "textHoverColor", "buttonSize", "fontSize", "textGapSize", "lineGapSize", "initialAnimation", "onChange", "onOption1Tap", "onOption2Tap", "onOption3Tap", "onOption4Tap", "onOption5Tap", "onOption6Tap", "onOption7Tap", "onOption8Tap", "onOption9Tap", "onOption10Tap", "fontFamily", "fontWeight", "fontWeightInactive", "allItems", "selected", "updateSelected", "ye", "ue", "radioVariants", "colorTokentoValue", "radioCircleVariants", "textVariants", "fontStyles", "useFontControls", "p", "item", "index", "activeVariant", "u", "motion", "fontStack", "addPropertyControls", "ControlType", "variant", "fontSizeOptions", "fontControls", "RadioButtonsFonts", "getFonts", "RadioButtons", "GlobalSubmitButtonFonts", "aE9jGa3Qr_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "formVariants", "form", "currentVariant", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "Transition", "value", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "KhXQKcx6GaJdu48eZs", "X_2wnopI_aJdu48eZs", "WSzV9Gh37aJdu48eZs", "wzuJlmrjraJdu48eZs", "DKtYrVFgwaJdu48eZs", "VMwsPneI2aJdu48eZs", "cpmZTbw6LaJdu48eZs", "Dm8wH82upaJdu48eZs", "idaJdu48eZs", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "transition1", "addPropertyOverrides", "ChildrenCanSuspend", "mtP2Gm0lH_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "u", "Image2", "toResponsiveImage", "RichText2", "FormContainer", "formState", "FormPlainTextInput2", "ComponentViewportProvider", "SmartComponentScopedContainer", "RadioButtons", "aE9jGa3Qr_default", "formVariants", "css", "FramereKsboxhat", "withCSS", "eKsboxhat_default", "addPropertyControls", "ControlType", "addFonts", "RadioButtonsFonts", "GlobalSubmitButtonFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "Transition", "value", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "X_2wnopI_NRFwvRQ3A", "PBXApaDEoNRFwvRQ3A", "daS6C7K9zNRFwvRQ3A", "SljOiEvSINRFwvRQ3A", "OS5EYjwqLNRFwvRQ3A", "Dm8wH82upNRFwvRQ3A", "idNRFwvRQ3A", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "transition1", "addPropertyOverrides", "ChildrenCanSuspend", "mtP2Gm0lH_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "u", "RichText2", "ComponentPresetsProvider", "css", "FramerWJYKHLEkl", "withCSS", "WJYKHLEkl_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset"]
}
