{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/gh5xmpM9GHT9MXnnMpPc/YOcbb3cyk0md6ytVCE3R/Animator.js", "ssg:https://framerusercontent.com/modules/KLzgV5ZWIRqn3MotNSOk/948LVH48tEGmNq1K9hkb/fDDsAtm3G.js", "ssg:https://framerusercontent.com/modules/Vs1bKPPSBzB49dMaKIyo/FJbsvsqS2VDQQN2dFsFw/Hs_fPa06Q.js", "ssg:https://framerusercontent.com/modules/bcbyMiwG6aN18cz9KJyv/EQq6ryPtd19Bm9gjvvp8/jpwn_a0xU.js", "ssg:https://framerusercontent.com/modules/BcLkKZpJximciE1DgZt1/L6XBCJmpNYLaPbI5oHI1/jpwn_a0xU.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion,useMotionValue,useTransform}from\"framer-motion\";/**\n * ANIMATOR\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 200\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Animator(props){/* Properties */const{pathAnimation,from,to,animate,shouldLoop,loopOptions,slots=[],endCircle}=props;/* State */const hasChildren=Children.count(slots)>0;/* Empty State */let customShape=/*#__PURE__*/_jsxs(\"div\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u270D\uFE0F\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Graphic\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Animates single or joined paths on Web Pages only.\"})]});if(hasChildren){/* Grab the SVG from the Graphic */const firstChild=getFirstChild(slots);const svgChild=getFirstChild(firstChild.props.svg);const isSpring=pathAnimation.type===\"spring\";/* Shape transition properties *//* Dividing stiffness and damping by 1000 is a trick I got from Matt \n        which helps with pathLength animations, which otherwise are so fast \n        you never even see them happen in the preview. */const shapeTransition={pathLength:{...pathAnimation,repeat:shouldLoop?Infinity:0,repeatType:loopOptions,stiffness:isSpring?pathAnimation.stiffness/1e3:pathAnimation.stiffness,damping:isSpring?pathAnimation.damping/1e3:pathAnimation.damping}};/* Add our own properties to the Path */const pathLength=useMotionValue(0);const opacity=useTransform(pathLength,[0,.025],[0,1]);const shapeProps={variants:{start:{pathLength:from/100},end:{pathLength:to/100}},transition:shapeTransition};/* Prevent animating or adjusting pathLength on the Canvas */const isCanvas=RenderTarget.current()===RenderTarget.canvas;/* Just render the full connected Graphic on Canvas, when connected */if(isCanvas){customShape=firstChild;}/* If on a web page */if(!isCanvas&&svgChild){/* Pass Attributes */let attributes=svgChild.match(/[\\w-]+=\"[^\"]*\"/g);let pathD;let stroke;let strokeWidth;let strokeLinecap;let strokeLinejoin;for(const element of attributes){if(element.includes(\"d=\")){pathD=splitAndReplace(element);}if(element.includes(\"stroke=\")){stroke=splitAndReplace(element);}if(element.includes(\"stroke-width=\")){strokeWidth=splitAndReplace(element);}if(element.includes(\"stroke-linecap=\")){strokeLinecap=splitAndReplace(element);}if(element.includes(\"stroke-linejoin=\")){strokeLinejoin=splitAndReplace(element);}}/* Grab viewbox */let svgViewbox;svgViewbox=svgChild.split(\"viewBox=\")[1];svgViewbox=svgViewbox.split(\">\")[0];svgViewbox=svgViewbox.replace(/^\"(.+(?=\"$))\"$/,\"$1\");customShape=/*#__PURE__*/_jsx(motion.div,{initial:isCanvas||animate===false?false:\"start\",animate:isCanvas||animate===false?false:\"end\",style:{width:\"100%\",height:\"100%\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",backgroundColor:\"transparent\",overflow:\"hidden\"},children:/*#__PURE__*/_jsx(motion.svg,{xmlns:\"http://www.w3.org/2000/svg\",width:\"100%\",height:\"100%\",viewBox:svgViewbox,children:/*#__PURE__*/_jsx(motion.path,{...shapeProps,d:pathD,stroke:stroke,strokeWidth:strokeWidth,strokeLinejoin:strokeLinejoin,strokeLinecap:strokeLinecap,fill:\"transparent\",style:!endCircle&&{pathLength,opacity},initial:isCanvas||animate===false?false:\"start\",animate:isCanvas||animate===false?false:\"end\"})})});}}return customShape;}/* Default Properties */Animator.defaultProps={animate:true,shouldLoop:false,loopOptions:\"reverse\",from:0,to:100,pathAnimation:{type:\"tween\",duration:2},endCircle:true};/* Property Controls */addPropertyControls(Animator,{slots:{type:ControlType.ComponentInstance,title:\"Children\"},animate:{title:\"Animate\",type:ControlType.Boolean,defaultValue:Animator.defaultProps.animate,enabledTitle:\"True\",disabledTitle:\"False\"},shouldLoop:{title:\"Loop\",type:ControlType.Boolean,defaultValue:Animator.defaultProps.shouldLoop,enabledTitle:\"True\",disabledTitle:\"False\",hidden(props){return props.animate===false;}},loopOptions:{type:ControlType.Enum,title:\"Type\",defaultValue:Animator.defaultProps.loopOptions,options:[\"loop\",\"reverse\",\"mirror\"],optionTitles:[\"Loop\",\"Reverse\",\"Mirror\"],hidden(props){return props.shouldLoop===false;}},endCircle:{title:\"End Circle\",type:ControlType.Boolean,defaultValue:Animator.defaultProps.endCircle,enabledTitle:\"Show\",disabledTitle:\"Hide\",hidden(props){return props.animate===false;}},from:{title:\"From\",type:ControlType.Number,min:0,max:100,displayStepper:true,step:1,defaultValue:Animator.defaultProps.from,unit:\"%\",hidden(props){return props.animate===false;}},to:{title:\"To\",type:ControlType.Number,min:0,max:100,displayStepper:true,step:1,defaultValue:Animator.defaultProps.to,unit:\"%\",hidden(props){return props.animate===false;}},pathAnimation:{title:\" \",type:ControlType.Transition,defaultValue:Animator.defaultProps.pathAnimation,hidden(props){return props.animate===false;}}});/* Method to get stringless attributes */const splitAndReplace=string=>{return string.split(\"=\")[1].replace(/['\"]+/g,\"\");};/* Method to get the first child */function getFirstChild(slots){let firstChild;Children.map(slots,child=>{if(firstChild===undefined){firstChild=child;}});return firstChild;}/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Animator\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"200\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Animator.map", "// Generated by Framer (0623976)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/qAkwcRDqwvuq9YoFy6SP/IFXysudX0orXceliKtYG/BGoMSxUp8.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/XJdvpMGdzlv9mrUZ93hs/YC7vxxrnIpYBCQykpY1u/e0MMglqvN.js\";const ImageWithFX=withFX(Image);const RichTextWithFX=withFX(RichText);const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"bXuHcS2Qo\",\"dA1_2tF8i\",\"zokZk7IpE\"];const serializationHash=\"framer-jMnrZ\";const variantClassNames={bXuHcS2Qo:\"framer-v-2hqn30\",dA1_2tF8i:\"framer-v-jobv46\",zokZk7IpE:\"framer-v-tz5kbh\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition2={damping:60,delay:0,mass:1.2,stiffness:300,type:\"spring\"};const numberToPixelString=value=>{if(typeof value!==\"number\")return value;if(!Number.isFinite(value))return undefined;return Math.max(0,value)+\"px\";};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const transition3={damping:60,delay:.1,mass:1.2,stiffness:300,type:\"spring\"};const transition4={damping:60,delay:.2,mass:1.2,stiffness:300,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 3\":\"zokZk7IpE\",Horizontal:\"dA1_2tF8i\",Vertical:\"bXuHcS2Qo\"};const getProps=({color,color2,description,height,id,image,padding,title,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4,_ref5,_humanReadableVariantMap_props_variant,_ref6;return{...props,dIqLusgod:(_ref=color!==null&&color!==void 0?color:props.dIqLusgod)!==null&&_ref!==void 0?_ref:\"var(--token-9ba5ef01-90ed-4ba8-83db-bde0dc1a4e37, rgb(255, 255, 255))\",dnI2jWCoG:(_ref1=color2!==null&&color2!==void 0?color2:props.dnI2jWCoG)!==null&&_ref1!==void 0?_ref1:\"rgb(0, 0, 0)\",eAAKapzJj:(_ref2=image!==null&&image!==void 0?image:props.eAAKapzJj)!==null&&_ref2!==void 0?_ref2:{src:\"https://framerusercontent.com/images/6LPDTfLIrWdQGR34hPuXPxZqlo.jpg\"},HmCwtpszc:(_ref3=description!==null&&description!==void 0?description:props.HmCwtpszc)!==null&&_ref3!==void 0?_ref3:\"This is a Description\",ufxmdYg32:(_ref4=title!==null&&title!==void 0?title:props.ufxmdYg32)!==null&&_ref4!==void 0?_ref4:\"TITLE\",USVd0KBmR:(_ref5=padding!==null&&padding!==void 0?padding:props.USVd0KBmR)!==null&&_ref5!==void 0?_ref5:\"10px 10px 10px 10px\",variant:(_ref6=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref6!==void 0?_ref6:\"bXuHcS2Qo\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,ufxmdYg32,eAAKapzJj,HmCwtpszc,dIqLusgod,dnI2jWCoG,USVd0KBmR,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"bXuHcS2Qo\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-2hqn30\",className,classNames),\"data-framer-name\":\"Vertical\",layoutDependency:layoutDependency,layoutId:\"bXuHcS2Qo\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgba(255, 255, 255, 0)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,...style},...addPropertyOverrides({dA1_2tF8i:{\"data-framer-name\":\"Horizontal\"},zokZk7IpE:{\"data-framer-name\":\"Variant 3\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",sizes:\"280px\",...toResponsiveImage(eAAKapzJj)},className:\"framer-13889wt\",\"data-framer-name\":\"Picture\",layoutDependency:layoutDependency,layoutId:\"ubZhH3b0s\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,transformPerspective:1200},...addPropertyOverrides({dA1_2tF8i:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(10+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||211)-20-220)/2)),sizes:\"280px\",...toResponsiveImage(eAAKapzJj)}},zokZk7IpE:{background:{alt:\"\",fit:\"fill\",sizes:\"240px\",...toResponsiveImage(eAAKapzJj)}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-4hhw7l\",\"data-framer-name\":\"Info\",layoutDependency:layoutDependency,layoutId:\"a_kp73IC0\",style:{\"--1i7zayb\":numberToPixelString(USVd0KBmR),transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-1nuw7jg\",\"data-styles-preset\":\"e0MMglqvN\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--variable-reference-dIqLusgod-fDDsAtm3G))\"},children:\"TITLE\"})}),className:\"framer-2zj6k0\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"xcRDFQHKd\",style:{\"--extracted-1eung3n\":\"var(--variable-reference-dIqLusgod-fDDsAtm3G)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-dIqLusgod-fDDsAtm3G\":dIqLusgod},text:ufxmdYg32,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-17063rm\",\"data-styles-preset\":\"BGoMSxUp8\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-dnI2jWCoG-fDDsAtm3G))\"},children:\"This is a Description\"})}),className:\"framer-18x2m2v\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"fAczWBVRM\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-dnI2jWCoG-fDDsAtm3G)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-dnI2jWCoG-fDDsAtm3G\":dnI2jWCoG,transformPerspective:1200},text:HmCwtpszc,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-jMnrZ.framer-1b14281, .framer-jMnrZ .framer-1b14281 { display: block; }\",\".framer-jMnrZ.framer-2hqn30 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; height: min-content; justify-content: space-between; padding: 10px 40px 10px 40px; position: relative; width: 310px; }\",\".framer-jMnrZ .framer-13889wt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 220px; justify-content: center; padding: 0px 0px 50px 0px; position: relative; width: 280px; }\",\".framer-jMnrZ .framer-4hhw7l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: var(--1i7zayb); position: relative; width: min-content; }\",\".framer-jMnrZ .framer-2zj6k0, .framer-jMnrZ .framer-18x2m2v { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 280px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-jMnrZ .framer-13889wt, .framer-jMnrZ .framer-4hhw7l { gap: 0px; } .framer-jMnrZ .framer-13889wt > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-jMnrZ .framer-13889wt > :first-child, .framer-jMnrZ .framer-4hhw7l > :first-child { margin-top: 0px; } .framer-jMnrZ .framer-13889wt > :last-child, .framer-jMnrZ .framer-4hhw7l > :last-child { margin-bottom: 0px; } .framer-jMnrZ .framer-4hhw7l > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",\".framer-jMnrZ.framer-v-jobv46.framer-2hqn30 { flex-direction: row; height: 211px; width: 598px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-jMnrZ.framer-v-jobv46.framer-2hqn30 { gap: 0px; } .framer-jMnrZ.framer-v-jobv46.framer-2hqn30 > *, .framer-jMnrZ.framer-v-jobv46.framer-2hqn30 > :first-child, .framer-jMnrZ.framer-v-jobv46.framer-2hqn30 > :last-child { margin: 0px; } }\",\".framer-jMnrZ.framer-v-tz5kbh.framer-2hqn30 { gap: 0px; justify-content: center; padding: 10px; width: min-content; }\",\".framer-jMnrZ.framer-v-tz5kbh .framer-13889wt { padding: 0px; width: 240px; }\",\".framer-jMnrZ.framer-v-tz5kbh .framer-4hhw7l { width: 250px; }\",\".framer-jMnrZ.framer-v-tz5kbh .framer-2zj6k0, .framer-jMnrZ.framer-v-tz5kbh .framer-18x2m2v { width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-jMnrZ.framer-v-tz5kbh.framer-2hqn30 { gap: 0px; } .framer-jMnrZ.framer-v-tz5kbh.framer-2hqn30 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-jMnrZ.framer-v-tz5kbh.framer-2hqn30 > :first-child { margin-top: 0px; } .framer-jMnrZ.framer-v-tz5kbh.framer-2hqn30 > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 336\n * @framerIntrinsicWidth 310\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"dA1_2tF8i\":{\"layout\":[\"fixed\",\"fixed\"]},\"zokZk7IpE\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"ufxmdYg32\":\"title\",\"eAAKapzJj\":\"image\",\"HmCwtpszc\":\"description\",\"dIqLusgod\":\"color\",\"dnI2jWCoG\":\"color2\",\"USVd0KBmR\":\"padding\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerfDDsAtm3G=withCSS(Component,css,\"framer-jMnrZ\");export default FramerfDDsAtm3G;FramerfDDsAtm3G.displayName=\"FeatureCard\";FramerfDDsAtm3G.defaultProps={height:336,width:310};addPropertyControls(FramerfDDsAtm3G,{variant:{options:[\"bXuHcS2Qo\",\"dA1_2tF8i\",\"zokZk7IpE\"],optionTitles:[\"Vertical\",\"Horizontal\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum},ufxmdYg32:{defaultValue:\"TITLE\",displayTextArea:false,title:\"Title\",type:ControlType.String},eAAKapzJj:{__defaultAssetReference:\"data:framer/asset-reference,6LPDTfLIrWdQGR34hPuXPxZqlo.jpg?originalFilename=preview1-294.jpg&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},HmCwtpszc:{defaultValue:\"This is a Description\",displayTextArea:false,title:\"description\",type:ControlType.String},dIqLusgod:{defaultValue:'var(--token-9ba5ef01-90ed-4ba8-83db-bde0dc1a4e37, rgb(255, 255, 255)) /* {\"name\":\"White\"} */',title:\"Color\",type:ControlType.Color},dnI2jWCoG:{defaultValue:\"rgb(0, 0, 0)\",title:\"Color 2\",type:ControlType.Color},USVd0KBmR:{defaultValue:\"10px 10px 10px 10px\",title:\"Padding\",type:ControlType.Padding}});addFonts(FramerfDDsAtm3G,[{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)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerfDDsAtm3G\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dA1_2tF8i\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"zokZk7IpE\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"310\",\"framerIntrinsicHeight\":\"336\",\"framerVariables\":\"{\\\"ufxmdYg32\\\":\\\"title\\\",\\\"eAAKapzJj\\\":\\\"image\\\",\\\"HmCwtpszc\\\":\\\"description\\\",\\\"dIqLusgod\\\":\\\"color\\\",\\\"dnI2jWCoG\\\":\\\"color2\\\",\\\"USVd0KBmR\\\":\\\"padding\\\"}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./fDDsAtm3G.map", "// Generated by Framer (0623976)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/Gb6z1S0xoupJRsduSsLb/SlideShow.js\";import ProductCard from\"https://framerusercontent.com/modules/lyPKxfvQwyDW2jq8CtXS/CHbmQDDzxwuGlumFSoUv/W1zhKeI5d.js\";const ProductCardFonts=getFonts(ProductCard);const SlideshowFonts=getFonts(Slideshow);const cycleOrder=[\"bfPpBDoiP\",\"M5xtW0_nt\",\"Gl0Bcv8km\",\"Xns62OOAc\"];const serializationHash=\"framer-CxDf9\";const variantClassNames={bfPpBDoiP:\"framer-v-1yl0lj7\",Gl0Bcv8km:\"framer-v-18b63qg\",M5xtW0_nt:\"framer-v-ez9p3h\",Xns62OOAc:\"framer-v-1x0jk7z\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"tablet small\":\"Xns62OOAc\",Desktop:\"bfPpBDoiP\",Phone:\"Gl0Bcv8km\",Tablet:\"M5xtW0_nt\"};const getProps=({height,id,image1,image10,image11,image12,image1Link,image2,image2Link,image3,image3Link,image4,image4Link,image5,image5Link,image6,image6Link,image7,image7Link,image8,image9,link10,link11,link12,link8,link9,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4,_ref5,_ref6,_ref7,_humanReadableVariantMap_props_variant,_ref8,_ref9,_ref10,_ref11,_ref12;return{...props,CzcAM6DpD:link12!==null&&link12!==void 0?link12:props.CzcAM6DpD,DdrIVScPr:image4Link!==null&&image4Link!==void 0?image4Link:props.DdrIVScPr,FIxZNL0Ud:image2Link!==null&&image2Link!==void 0?image2Link:props.FIxZNL0Ud,FSwfyjpMG:image6Link!==null&&image6Link!==void 0?image6Link:props.FSwfyjpMG,gdcaEkw5m:(_ref=image3!==null&&image3!==void 0?image3:props.gdcaEkw5m)!==null&&_ref!==void 0?_ref:{src:\"https://framerusercontent.com/images/izBBcQ1cRdXDbsLyr0OICVO58.png\"},HAOADIUEq:(_ref1=image12!==null&&image12!==void 0?image12:props.HAOADIUEq)!==null&&_ref1!==void 0?_ref1:{src:\"https://framerusercontent.com/images/rL73kNnHzaLzoecigIfjVcZ0Y.png\",srcSet:\"https://framerusercontent.com/images/rL73kNnHzaLzoecigIfjVcZ0Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/rL73kNnHzaLzoecigIfjVcZ0Y.png 789w\"},hwwOXRrJz:link9!==null&&link9!==void 0?link9:props.hwwOXRrJz,IDfSgRHFq:image7Link!==null&&image7Link!==void 0?image7Link:props.IDfSgRHFq,n60LQfV0K:(_ref2=image10!==null&&image10!==void 0?image10:props.n60LQfV0K)!==null&&_ref2!==void 0?_ref2:{src:\"https://framerusercontent.com/images/rL73kNnHzaLzoecigIfjVcZ0Y.png\",srcSet:\"https://framerusercontent.com/images/rL73kNnHzaLzoecigIfjVcZ0Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/rL73kNnHzaLzoecigIfjVcZ0Y.png 789w\"},ncgBlLmbw:image5Link!==null&&image5Link!==void 0?image5Link:props.ncgBlLmbw,nGES9VZPm:(_ref3=image2!==null&&image2!==void 0?image2:props.nGES9VZPm)!==null&&_ref3!==void 0?_ref3:{src:\"https://framerusercontent.com/images/PdyiXA0b3z0GpzOvjbLYNH9CNp4.png\"},nKoL1MOJZ:(_ref4=image7!==null&&image7!==void 0?image7:props.nKoL1MOJZ)!==null&&_ref4!==void 0?_ref4:{src:\"https://framerusercontent.com/images/rL73kNnHzaLzoecigIfjVcZ0Y.png\",srcSet:\"https://framerusercontent.com/images/rL73kNnHzaLzoecigIfjVcZ0Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/rL73kNnHzaLzoecigIfjVcZ0Y.png 789w\"},QWTRfBXu1:link10!==null&&link10!==void 0?link10:props.QWTRfBXu1,RSAPsSEui:image3Link!==null&&image3Link!==void 0?image3Link:props.RSAPsSEui,T2n22t0TD:image1Link!==null&&image1Link!==void 0?image1Link:props.T2n22t0TD,TiXrjFTDY:(_ref5=image1!==null&&image1!==void 0?image1:props.TiXrjFTDY)!==null&&_ref5!==void 0?_ref5:{src:\"https://framerusercontent.com/images/5JV6pDZwZMBoBsUvShm0LcvLRg.png\",srcSet:\"https://framerusercontent.com/images/5JV6pDZwZMBoBsUvShm0LcvLRg.png?scale-down-to=512 512w,https://framerusercontent.com/images/5JV6pDZwZMBoBsUvShm0LcvLRg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5JV6pDZwZMBoBsUvShm0LcvLRg.png 1080w\"},TsoLcK3kw:(_ref6=image11!==null&&image11!==void 0?image11:props.TsoLcK3kw)!==null&&_ref6!==void 0?_ref6:{src:\"https://framerusercontent.com/images/rL73kNnHzaLzoecigIfjVcZ0Y.png\",srcSet:\"https://framerusercontent.com/images/rL73kNnHzaLzoecigIfjVcZ0Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/rL73kNnHzaLzoecigIfjVcZ0Y.png 789w\"},ugazBM7Hw:link11!==null&&link11!==void 0?link11:props.ugazBM7Hw,uJCMmf_jD:(_ref7=image8!==null&&image8!==void 0?image8:props.uJCMmf_jD)!==null&&_ref7!==void 0?_ref7:{src:\"https://framerusercontent.com/images/rL73kNnHzaLzoecigIfjVcZ0Y.png\",srcSet:\"https://framerusercontent.com/images/rL73kNnHzaLzoecigIfjVcZ0Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/rL73kNnHzaLzoecigIfjVcZ0Y.png 789w\"},variant:(_ref8=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref8!==void 0?_ref8:\"bfPpBDoiP\",w1cGcZOOu:(_ref9=image4!==null&&image4!==void 0?image4:props.w1cGcZOOu)!==null&&_ref9!==void 0?_ref9:{src:\"https://framerusercontent.com/images/as38Axa1FCbMfO7o8XNJXVGBZY.png\",srcSet:\"https://framerusercontent.com/images/as38Axa1FCbMfO7o8XNJXVGBZY.png?scale-down-to=512 512w,https://framerusercontent.com/images/as38Axa1FCbMfO7o8XNJXVGBZY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/as38Axa1FCbMfO7o8XNJXVGBZY.png 1080w\"},wHy7feqW5:(_ref10=image6!==null&&image6!==void 0?image6:props.wHy7feqW5)!==null&&_ref10!==void 0?_ref10:{src:\"https://framerusercontent.com/images/WtgAYdcSZOJITLd6WB2j6NNZUQ.png\"},wYseThRYq:(_ref11=image5!==null&&image5!==void 0?image5:props.wYseThRYq)!==null&&_ref11!==void 0?_ref11:{src:\"https://framerusercontent.com/images/g2Uy5D4hU4LbRyVDfbdgqCmYBE.png\"},yvxTKwYSi:(_ref12=image9!==null&&image9!==void 0?image9:props.yvxTKwYSi)!==null&&_ref12!==void 0?_ref12:{src:\"https://framerusercontent.com/images/rL73kNnHzaLzoecigIfjVcZ0Y.png\",srcSet:\"https://framerusercontent.com/images/rL73kNnHzaLzoecigIfjVcZ0Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/rL73kNnHzaLzoecigIfjVcZ0Y.png 789w\"},z7UFgur1Z:link8!==null&&link8!==void 0?link8:props.z7UFgur1Z};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,TiXrjFTDY,T2n22t0TD,nGES9VZPm,FIxZNL0Ud,gdcaEkw5m,RSAPsSEui,w1cGcZOOu,DdrIVScPr,wYseThRYq,ncgBlLmbw,wHy7feqW5,FSwfyjpMG,nKoL1MOJZ,IDfSgRHFq,uJCMmf_jD,z7UFgur1Z,yvxTKwYSi,hwwOXRrJz,n60LQfV0K,QWTRfBXu1,TsoLcK3kw,ugazBM7Hw,HAOADIUEq,CzcAM6DpD,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"bfPpBDoiP\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const U1ltZLyIv3zqwy5=activeVariantCallback(async(...args)=>{setVariant(\"bfPpBDoiP\");});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1yl0lj7\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"bfPpBDoiP\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({Gl0Bcv8km:{\"data-framer-name\":\"Phone\"},M5xtW0_nt:{\"data-framer-name\":\"Tablet\"},Xns62OOAc:{\"data-framer-name\":\"tablet small\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ezf2jw-container\",layoutDependency:layoutDependency,layoutId:\"lORoFul0U-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"right\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:30,height:\"100%\",id:\"lORoFul0U\",intervalControl:2,itemAmount:5,layoutId:\"lORoFul0U\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:true,paddingRight:10,paddingTop:10,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:280,width:\"260px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-55v3m0-container\",layoutDependency:layoutDependency,layoutId:\"cTbfo9Ot4-container\",children:/*#__PURE__*/_jsx(ProductCard,{DBD1GAj9h:toResponsiveImage(TiXrjFTDY),eUwk5FUwL:\"\",GEtMiICKQ:T2n22t0TD,height:\"100%\",id:\"cTbfo9Ot4\",layoutId:\"cTbfo9Ot4\",style:{height:\"100%\",width:\"100%\"},U1ltZLyIv:U1ltZLyIv3zqwy5,variant:\"cjCMAiqlw\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:280,width:\"260px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-wu9kw8-container\",layoutDependency:layoutDependency,layoutId:\"fPrA3Hft9-container\",children:/*#__PURE__*/_jsx(ProductCard,{DBD1GAj9h:toResponsiveImage(nGES9VZPm),eUwk5FUwL:\"\",GEtMiICKQ:FIxZNL0Ud,height:\"100%\",id:\"fPrA3Hft9\",layoutId:\"fPrA3Hft9\",style:{height:\"100%\",width:\"100%\"},variant:\"cjCMAiqlw\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:280,width:\"260px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jugw1n-container\",layoutDependency:layoutDependency,layoutId:\"pAguRtVSL-container\",children:/*#__PURE__*/_jsx(ProductCard,{DBD1GAj9h:toResponsiveImage(gdcaEkw5m),eUwk5FUwL:\"\",GEtMiICKQ:RSAPsSEui,height:\"100%\",id:\"pAguRtVSL\",layoutId:\"pAguRtVSL\",style:{height:\"100%\",width:\"100%\"},variant:\"cjCMAiqlw\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:280,width:\"260px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-rmdr8u-container\",layoutDependency:layoutDependency,layoutId:\"aWbZqrHWT-container\",children:/*#__PURE__*/_jsx(ProductCard,{DBD1GAj9h:toResponsiveImage(w1cGcZOOu),eUwk5FUwL:\"\",GEtMiICKQ:DdrIVScPr,height:\"100%\",id:\"aWbZqrHWT\",layoutId:\"aWbZqrHWT\",style:{height:\"100%\",width:\"100%\"},variant:\"cjCMAiqlw\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:280,width:\"260px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-f4qioo-container\",layoutDependency:layoutDependency,layoutId:\"Gt02G0GXH-container\",children:/*#__PURE__*/_jsx(ProductCard,{DBD1GAj9h:toResponsiveImage(wYseThRYq),eUwk5FUwL:\"\",GEtMiICKQ:ncgBlLmbw,height:\"100%\",id:\"Gt02G0GXH\",layoutId:\"Gt02G0GXH\",style:{height:\"100%\",width:\"100%\"},variant:\"cjCMAiqlw\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:280,width:\"260px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-132tsav-container\",layoutDependency:layoutDependency,layoutId:\"l9xWvDAgz-container\",children:/*#__PURE__*/_jsx(ProductCard,{DBD1GAj9h:toResponsiveImage(wHy7feqW5),eUwk5FUwL:\"\",GEtMiICKQ:FSwfyjpMG,height:\"100%\",id:\"l9xWvDAgz\",layoutId:\"l9xWvDAgz\",style:{height:\"100%\",width:\"100%\"},variant:\"cjCMAiqlw\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:280,width:\"260px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-bq8jwe-container\",layoutDependency:layoutDependency,layoutId:\"AfN_Nyb2z-container\",children:/*#__PURE__*/_jsx(ProductCard,{DBD1GAj9h:toResponsiveImage(nKoL1MOJZ),eUwk5FUwL:\"\",GEtMiICKQ:IDfSgRHFq,height:\"100%\",id:\"AfN_Nyb2z\",layoutId:\"AfN_Nyb2z\",style:{height:\"100%\",width:\"100%\"},variant:\"cjCMAiqlw\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:280,width:\"260px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jugw1n-container\",layoutDependency:layoutDependency,layoutId:\"pAguRtVSL-container\",children:/*#__PURE__*/_jsx(ProductCard,{DBD1GAj9h:toResponsiveImage(gdcaEkw5m),eUwk5FUwL:\"\",GEtMiICKQ:RSAPsSEui,height:\"100%\",id:\"pAguRtVSL\",layoutId:\"pAguRtVSL\",style:{height:\"100%\",width:\"100%\"},variant:\"cjCMAiqlw\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:280,width:\"260px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kthdoh-container\",layoutDependency:layoutDependency,layoutId:\"buyZQ31MV-container\",children:/*#__PURE__*/_jsx(ProductCard,{DBD1GAj9h:toResponsiveImage(uJCMmf_jD),eUwk5FUwL:\"\",GEtMiICKQ:z7UFgur1Z,height:\"100%\",id:\"buyZQ31MV\",layoutId:\"buyZQ31MV\",style:{height:\"100%\",width:\"100%\"},variant:\"cjCMAiqlw\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:280,width:\"260px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-woihnd-container\",layoutDependency:layoutDependency,layoutId:\"DBkujKKLX-container\",children:/*#__PURE__*/_jsx(ProductCard,{DBD1GAj9h:toResponsiveImage(n60LQfV0K),eUwk5FUwL:\"\",GEtMiICKQ:QWTRfBXu1,height:\"100%\",id:\"DBkujKKLX\",layoutId:\"DBkujKKLX\",style:{height:\"100%\",width:\"100%\"},variant:\"cjCMAiqlw\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:280,width:\"260px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-rek9wk-container\",layoutDependency:layoutDependency,layoutId:\"rfNBThk9C-container\",children:/*#__PURE__*/_jsx(ProductCard,{DBD1GAj9h:toResponsiveImage(yvxTKwYSi),eUwk5FUwL:\"\",GEtMiICKQ:hwwOXRrJz,height:\"100%\",id:\"rfNBThk9C\",layoutId:\"rfNBThk9C\",style:{height:\"100%\",width:\"100%\"},variant:\"cjCMAiqlw\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:280,width:\"260px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xbrzov-container\",layoutDependency:layoutDependency,layoutId:\"ckbs0ij_q-container\",children:/*#__PURE__*/_jsx(ProductCard,{DBD1GAj9h:toResponsiveImage(TsoLcK3kw),eUwk5FUwL:\"\",GEtMiICKQ:ugazBM7Hw,height:\"100%\",id:\"ckbs0ij_q\",layoutId:\"ckbs0ij_q\",style:{height:\"100%\",width:\"100%\"},variant:\"cjCMAiqlw\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:280,width:\"260px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yobtby-container\",layoutDependency:layoutDependency,layoutId:\"ByW6Ltg6A-container\",children:/*#__PURE__*/_jsx(ProductCard,{DBD1GAj9h:toResponsiveImage(HAOADIUEq),eUwk5FUwL:\"\",GEtMiICKQ:CzcAM6DpD,height:\"100%\",id:\"ByW6Ltg6A\",layoutId:\"ByW6Ltg6A\",style:{height:\"100%\",width:\"100%\"},variant:\"cjCMAiqlw\",width:\"100%\"})})})],startFrom:0,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},transitionControl:{bounce:.2,delay:0,duration:1.8,type:\"spring\"},width:\"100%\",...addPropertyOverrides({Gl0Bcv8km:{arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},gap:15,itemAmount:1,paddingLeft:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:8,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true}},M5xtW0_nt:{itemAmount:4},Xns62OOAc:{gap:0,itemAmount:3,paddingPerSide:false}},baseVariant,gestureVariant)})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-CxDf9.framer-5kdnj5, .framer-CxDf9 .framer-5kdnj5 { display: block; }\",\".framer-CxDf9.framer-1yl0lj7 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 280px; justify-content: center; padding: 0px; position: relative; width: 1684px; }\",\".framer-CxDf9 .framer-ezf2jw-container { flex: 1 0 0px; height: 1px; max-width: 1200px; position: relative; width: 100%; }\",\".framer-CxDf9 .framer-55v3m0-container, .framer-CxDf9 .framer-wu9kw8-container, .framer-CxDf9 .framer-1jugw1n-container, .framer-CxDf9 .framer-rmdr8u-container, .framer-CxDf9 .framer-f4qioo-container, .framer-CxDf9 .framer-132tsav-container, .framer-CxDf9 .framer-bq8jwe-container, .framer-CxDf9 .framer-1kthdoh-container, .framer-CxDf9 .framer-woihnd-container, .framer-CxDf9 .framer-rek9wk-container, .framer-CxDf9 .framer-1xbrzov-container, .framer-CxDf9 .framer-1yobtby-container { aspect-ratio: 0.9285714285714286 / 1; height: var(--framer-aspect-ratio-supported, 280px); position: relative; width: 260px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-CxDf9.framer-1yl0lj7 { gap: 0px; } .framer-CxDf9.framer-1yl0lj7 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-CxDf9.framer-1yl0lj7 > :first-child { margin-top: 0px; } .framer-CxDf9.framer-1yl0lj7 > :last-child { margin-bottom: 0px; } }\",\".framer-CxDf9.framer-v-ez9p3h.framer-1yl0lj7 { width: 990px; }\",\".framer-CxDf9.framer-v-18b63qg.framer-1yl0lj7 { height: 300px; width: 300px; }\",\".framer-CxDf9.framer-v-18b63qg .framer-ezf2jw-container { flex: none; height: 280px; width: 260px; }\",\".framer-CxDf9.framer-v-1x0jk7z.framer-1yl0lj7 { width: 768px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 280\n * @framerIntrinsicWidth 1684\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"M5xtW0_nt\":{\"layout\":[\"fixed\",\"fixed\"]},\"Gl0Bcv8km\":{\"layout\":[\"fixed\",\"fixed\"]},\"Xns62OOAc\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"TiXrjFTDY\":\"image1\",\"T2n22t0TD\":\"image1Link\",\"nGES9VZPm\":\"image2\",\"FIxZNL0Ud\":\"image2Link\",\"gdcaEkw5m\":\"image3\",\"RSAPsSEui\":\"image3Link\",\"w1cGcZOOu\":\"image4\",\"DdrIVScPr\":\"image4Link\",\"wYseThRYq\":\"image5\",\"ncgBlLmbw\":\"image5Link\",\"wHy7feqW5\":\"image6\",\"FSwfyjpMG\":\"image6Link\",\"nKoL1MOJZ\":\"image7\",\"IDfSgRHFq\":\"image7Link\",\"uJCMmf_jD\":\"image8\",\"z7UFgur1Z\":\"link8\",\"yvxTKwYSi\":\"image9\",\"hwwOXRrJz\":\"link9\",\"n60LQfV0K\":\"image10\",\"QWTRfBXu1\":\"link10\",\"TsoLcK3kw\":\"image11\",\"ugazBM7Hw\":\"link11\",\"HAOADIUEq\":\"image12\",\"CzcAM6DpD\":\"link12\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerHs_fPa06Q=withCSS(Component,css,\"framer-CxDf9\");export default FramerHs_fPa06Q;FramerHs_fPa06Q.displayName=\"Carousel Images\";FramerHs_fPa06Q.defaultProps={height:280,width:1684};addPropertyControls(FramerHs_fPa06Q,{variant:{options:[\"bfPpBDoiP\",\"M5xtW0_nt\",\"Gl0Bcv8km\",\"Xns62OOAc\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\",\"tablet small\"],title:\"Variant\",type:ControlType.Enum},TiXrjFTDY:{__defaultAssetReference:\"data:framer/asset-reference,5JV6pDZwZMBoBsUvShm0LcvLRg.png?originalFilename=t-shirt-design.png&preferredSize=auto\",title:\"Image 1\",type:ControlType.ResponsiveImage},T2n22t0TD:{title:\"Image 1 Link\",type:ControlType.Link},nGES9VZPm:{__defaultAssetReference:\"data:framer/asset-reference,PdyiXA0b3z0GpzOvjbLYNH9CNp4.png?originalFilename=kdp-book-cover-design.png&preferredSize=auto\",title:\"Image 2\",type:ControlType.ResponsiveImage},FIxZNL0Ud:{title:\"Image 2 Link \",type:ControlType.Link},gdcaEkw5m:{__defaultAssetReference:\"data:framer/asset-reference,izBBcQ1cRdXDbsLyr0OICVO58.png?originalFilename=mug-design.png&preferredSize=auto\",title:\"Image 3\",type:ControlType.ResponsiveImage},RSAPsSEui:{title:\"Image 3 Link\",type:ControlType.Link},w1cGcZOOu:{__defaultAssetReference:\"data:framer/asset-reference,as38Axa1FCbMfO7o8XNJXVGBZY.png?originalFilename=poster-design.png&preferredSize=auto\",title:\"Image 4\",type:ControlType.ResponsiveImage},DdrIVScPr:{title:\"Image 4 Link\",type:ControlType.Link},wYseThRYq:{__defaultAssetReference:\"data:framer/asset-reference,g2Uy5D4hU4LbRyVDfbdgqCmYBE.png?originalFilename=phone-case-design.png&preferredSize=auto\",title:\"Image 5\",type:ControlType.ResponsiveImage},ncgBlLmbw:{title:\"Image 5 Link\",type:ControlType.Link},wHy7feqW5:{__defaultAssetReference:\"data:framer/asset-reference,WtgAYdcSZOJITLd6WB2j6NNZUQ.png?originalFilename=tote-bag-design.png&preferredSize=auto\",title:\"Image 6\",type:ControlType.ResponsiveImage},FSwfyjpMG:{title:\"Image 6 Link\",type:ControlType.Link},nKoL1MOJZ:{__defaultAssetReference:\"data:framer/asset-reference,rL73kNnHzaLzoecigIfjVcZ0Y.png?originalFilename=mockup-with-models.png&preferredSize=auto\",title:\"Image 7\",type:ControlType.ResponsiveImage},IDfSgRHFq:{title:\"Image 7 Link\",type:ControlType.Link},uJCMmf_jD:{__defaultAssetReference:\"data:framer/asset-reference,rL73kNnHzaLzoecigIfjVcZ0Y.png?originalFilename=mockup-with-models.png&preferredSize=auto\",title:\"Image 8\",type:ControlType.ResponsiveImage},z7UFgur1Z:{title:\"Link 8\",type:ControlType.Link},yvxTKwYSi:{__defaultAssetReference:\"data:framer/asset-reference,rL73kNnHzaLzoecigIfjVcZ0Y.png?originalFilename=mockup-with-models.png&preferredSize=auto\",title:\"Image 9\",type:ControlType.ResponsiveImage},hwwOXRrJz:{title:\"Link 9\",type:ControlType.Link},n60LQfV0K:{__defaultAssetReference:\"data:framer/asset-reference,rL73kNnHzaLzoecigIfjVcZ0Y.png?originalFilename=mockup-with-models.png&preferredSize=auto\",title:\"Image 10\",type:ControlType.ResponsiveImage},QWTRfBXu1:{title:\"Link 10\",type:ControlType.Link},TsoLcK3kw:{__defaultAssetReference:\"data:framer/asset-reference,rL73kNnHzaLzoecigIfjVcZ0Y.png?originalFilename=mockup-with-models.png&preferredSize=auto\",title:\"Image 11\",type:ControlType.ResponsiveImage},ugazBM7Hw:{title:\"Link 11\",type:ControlType.Link},HAOADIUEq:{__defaultAssetReference:\"data:framer/asset-reference,rL73kNnHzaLzoecigIfjVcZ0Y.png?originalFilename=mockup-with-models.png&preferredSize=auto\",title:\"Image 12\",type:ControlType.ResponsiveImage},CzcAM6DpD:{title:\"Link 12\",type:ControlType.Link}});addFonts(FramerHs_fPa06Q,[{explicitInter:true,fonts:[]},...ProductCardFonts,...SlideshowFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerHs_fPa06Q\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"M5xtW0_nt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Gl0Bcv8km\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Xns62OOAc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"280\",\"framerIntrinsicWidth\":\"1684\",\"framerVariables\":\"{\\\"TiXrjFTDY\\\":\\\"image1\\\",\\\"T2n22t0TD\\\":\\\"image1Link\\\",\\\"nGES9VZPm\\\":\\\"image2\\\",\\\"FIxZNL0Ud\\\":\\\"image2Link\\\",\\\"gdcaEkw5m\\\":\\\"image3\\\",\\\"RSAPsSEui\\\":\\\"image3Link\\\",\\\"w1cGcZOOu\\\":\\\"image4\\\",\\\"DdrIVScPr\\\":\\\"image4Link\\\",\\\"wYseThRYq\\\":\\\"image5\\\",\\\"ncgBlLmbw\\\":\\\"image5Link\\\",\\\"wHy7feqW5\\\":\\\"image6\\\",\\\"FSwfyjpMG\\\":\\\"image6Link\\\",\\\"nKoL1MOJZ\\\":\\\"image7\\\",\\\"IDfSgRHFq\\\":\\\"image7Link\\\",\\\"uJCMmf_jD\\\":\\\"image8\\\",\\\"z7UFgur1Z\\\":\\\"link8\\\",\\\"yvxTKwYSi\\\":\\\"image9\\\",\\\"hwwOXRrJz\\\":\\\"link9\\\",\\\"n60LQfV0K\\\":\\\"image10\\\",\\\"QWTRfBXu1\\\":\\\"link10\\\",\\\"TsoLcK3kw\\\":\\\"image11\\\",\\\"ugazBM7Hw\\\":\\\"link11\\\",\\\"HAOADIUEq\\\":\\\"image12\\\",\\\"CzcAM6DpD\\\":\\\"link12\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Hs_fPa06Q.map", "// Generated by Framer (4d21961)\nimport{LazyValue}from\"framer\";const valuesByLocaleId={euYNmAx7w:new LazyValue(()=>import(\"./jpwn_a0xU-1.js\")),gMAgC3Whe:new LazyValue(()=>import(\"./jpwn_a0xU-2.js\")),OqcuvbiFm:new LazyValue(()=>import(\"./jpwn_a0xU-0.js\"))};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values.read()[key];if(value)return value;}locale=locale.fallback;}}function preload(locale){const promises=[];while(locale){const values=valuesByLocaleId[locale.id];if(values){const promise=values.preload();if(promise)promises.push(promise);}locale=locale.fallback;}if(promises.length>0)return Promise.all(promises);}export function usePreloadLocalizedValues(locale){const preloadPromise=preload(locale);if(preloadPromise)throw preloadPromise;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePreloadLocalizedValues\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (4d21961)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,ResolveLinks,RichText,SVG,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import Typeform from\"https://framerusercontent.com/modules/F6IzcnH090BibK8JiJh0/MfEMY4LeLoFqPUtJ3OJA/Typeform.js\";import Animator from\"https://framerusercontent.com/modules/gh5xmpM9GHT9MXnnMpPc/YOcbb3cyk0md6ytVCE3R/Animator.js\";import Badge from\"https://framerusercontent.com/modules/kOH67sl9P31yCMlf980a/8gw87a9umWfJDaXJ5GTT/BtS3Sc6rf.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/IZ0vSV62Dv7ax4rBiGUk/Video.js\";import{Counter}from\"https://framerusercontent.com/modules/nAvvEboS1vZ5rulokgFq/xftbyJD4AjHyJM9uW9fV/Counter1.js\";import Particles from\"https://framerusercontent.com/modules/wb6ZrZlCLNQ5HHBJtNND/c1GLxCsQBQvlLXhkz7er/Particles.js\";import CommonBadge from\"#framer/local/canvasComponent/E6FNJa8Be/E6FNJa8Be.js\";import FeatureCard from\"#framer/local/canvasComponent/fDDsAtm3G/fDDsAtm3G.js\";import ButtonMaster from\"#framer/local/canvasComponent/fPhvVJY5K/fPhvVJY5K.js\";import CarouselImages from\"#framer/local/canvasComponent/Hs_fPa06Q/Hs_fPa06Q.js\";import ContactForm from\"#framer/local/canvasComponent/qPeoWncKJ/qPeoWncKJ.js\";import ListItemBullets from\"#framer/local/canvasComponent/RplTv7qVR/RplTv7qVR.js\";import NavigationNavigation from\"#framer/local/canvasComponent/uCrN7F5yl/uCrN7F5yl.js\";import FooterFooter from\"#framer/local/canvasComponent/yiv18JfQQ/yiv18JfQQ.js\";import CommonAccordion from\"#framer/local/canvasComponent/zsVubOwyK/zsVubOwyK.js\";import*as sharedStyle1 from\"#framer/local/css/BGoMSxUp8/BGoMSxUp8.js\";import*as sharedStyle5 from\"#framer/local/css/Ha6qpqrwo/Ha6qpqrwo.js\";import*as sharedStyle2 from\"#framer/local/css/jyGHLHurG/jyGHLHurG.js\";import*as sharedStyle4 from\"#framer/local/css/qQJQiGyoq/qQJQiGyoq.js\";import*as sharedStyle3 from\"#framer/local/css/U4q_q8nHt/U4q_q8nHt.js\";import*as sharedStyle from\"#framer/local/css/XPlr5yWxI/XPlr5yWxI.js\";import*as sharedStyle6 from\"#framer/local/css/YkjVZVE6N/YkjVZVE6N.js\";import getLocalizedValue,{usePreloadLocalizedValues}from\"#framer/local/localization/jpwn_a0xU/jpwn_a0xU.js\";import metadataProvider from\"#framer/local/webPageMetadata/jpwn_a0xU/jpwn_a0xU.js\";const NavigationNavigationFonts=getFonts(NavigationNavigation);const BadgeFonts=getFonts(Badge);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const ListItemBulletsFonts=getFonts(ListItemBullets);const ButtonMasterFonts=getFonts(ButtonMaster);const CounterFonts=getFonts(Counter);const MotionDivWithFX=withFX(motion.div);const VideoFonts=getFonts(Video);const ParticlesFonts=getFonts(Particles);const ImageWithFX=withFX(Image);const RichTextWithFX=withFX(RichText);const CarouselImagesFonts=getFonts(CarouselImages);const AnimatorFonts=getFonts(Animator);const CommonBadgeFonts=getFonts(CommonBadge);const ContainerWithFX=withFX(Container);const FeatureCardFonts=getFonts(FeatureCard);const TypeformFonts=getFonts(Typeform);const CommonAccordionFonts=getFonts(CommonAccordion);const FooterFooterFonts=getFonts(FooterFooter);const ContactFormFonts=getFonts(ContactForm);const breakpoints={iXBbiMK8f:\"(min-width: 992px) and (max-width: 1439px)\",QmdGmfFMf:\"(max-width: 767px)\",qopcfpNIx:\"(min-width: 1440px)\",Sf8KrhhQp:\"(min-width: 768px) and (max-width: 991px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-5XTI2\";const variantClassNames={iXBbiMK8f:\"framer-v-41eq9c\",QmdGmfFMf:\"framer-v-rt9vwd\",qopcfpNIx:\"framer-v-h3e42f\",Sf8KrhhQp:\"framer-v-9v2ybr\"};const transition1={damping:60,delay:0,mass:1.2,stiffness:200,type:\"spring\"};const animation={opacity:1,rotate:-3,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:40};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:150};const transition3={damping:60,delay:.3,mass:1.2,stiffness:200,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const transition4={delay:0,duration:3.5,ease:[.44,0,.56,1],type:\"tween\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:30};const animation6={opacity:0,rotate:19,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:205,y:128};const transition5={damping:60,delay:.3,mass:1.2,stiffness:300,type:\"spring\"};const animation7={opacity:1,rotate:-6,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:14};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition6={damping:60,delay:0,mass:1.2,stiffness:300,type:\"spring\"};const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation10={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const transition7={damping:60,delay:.1,mass:1.2,stiffness:300,type:\"spring\"};const transition8={damping:60,delay:.2,mass:1.2,stiffness:300,type:\"spring\"};const transition9={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const animation12={opacity:1,rotate:19,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:168,y:-143};const animation13={opacity:1,rotate:19,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:160,y:-21};const animation14={opacity:1,rotate:19,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:160,y:-21};const animation15={opacity:1,rotate:27,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:212,y:196};const animation16={opacity:1,rotate:27,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:149,y:121};const animation17={opacity:1,rotate:-8,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-162,y:240};const animation18={opacity:1,rotate:19,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:168,y:-143};const animation19={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const animation20={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-73,y:0};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const animation21={opacity:1,rotate:19,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-206,y:68};const animation22={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-45};const animation23={opacity:1,rotate:19,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:153,y:159};const animation24={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-8};const animation25={opacity:1,rotate:19,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:109,y:96};const animation26={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:3};const animation27={opacity:1,rotate:19,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:63,y:68};const animation28={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const animation29={opacity:1,rotate:-36,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:144,y:142};const animation30={opacity:1,rotate:-36,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-109,y:142};const animation31={opacity:1,rotate:-36,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:123,y:83};const animation32={opacity:1,rotate:-36,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:106,y:52};const animation33={opacity:1,rotate:19,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-202,y:18};const animation34={opacity:1,rotate:19,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-135,y:18};const animation35={opacity:1,rotate:19,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-97,y:-85};const animation36={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-35,y:0};const animation37={opacity:1,rotate:19,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:110,y:-92};const animation38={opacity:1,rotate:19,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:162,y:195};const animation39={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:14};const animation40={opacity:1,rotate:19,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-148,y:34};const animation41={opacity:1,rotate:19,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-134,y:7};const animation42={opacity:1,rotate:-34,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:18,y:252};const animation43={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:18};const animation44={opacity:1,rotate:-34,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-113,y:188};const animation45={opacity:1,rotate:-34,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-197,y:117};const animation46={opacity:1,rotate:-34,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:55,y:124};const animation47={opacity:1,rotate:-36,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:195,y:-4};const animation48={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:19};const animation49={opacity:1,rotate:-36,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:108,y:-4};const animation50={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:9};const animation51={opacity:0,rotate:3,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const animation52={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:50,y:0};const transition10={damping:60,delay:.3,mass:1,stiffness:300,type:\"spring\"};const animation53={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition10,x:50,y:0};const animation54={opacity:1,rotate:20,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-119,y:100};const animation55={opacity:1,rotate:9,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:150,y:153};const animation56={opacity:1,rotate:-16,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-96,y:-37};const animation57={opacity:1,rotate:6,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:93,y:-124};const animation58={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:184,y:0};const animation59={opacity:0,rotate:19,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-157,y:71};const animation60={opacity:1,rotate:8,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-14};const animation61={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-98,y:0};const animation62={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-102,y:0};const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Large Desktop\":\"qopcfpNIx\",Desktop:\"iXBbiMK8f\",Phone:\"QmdGmfFMf\",Tablet:\"Sf8KrhhQp\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"qopcfpNIx\"};};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,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const hGJz0EPzb3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);usePreloadLocalizedValues(activeLocale);const elementId=useRouteElementId(\"t7JaFIZX6\");const router=useRouter();const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"Sf8KrhhQp\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"Sf8KrhhQp\")return true;return false;};const elementId1=useRouteElementId(\"rBzMNkOnZ\");const ref2=React.useRef(null);const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"QmdGmfFMf\")return false;return true;};const elementId2=useRouteElementId(\"qWww4eKYM\");const ref3=React.useRef(null);const elementId3=useRouteElementId(\"lDsizLMHM\");const ref4=React.useRef(null);const isDisplayed3=()=>{if(!isBrowser())return true;if([\"Sf8KrhhQp\",\"QmdGmfFMf\"].includes(baseVariant))return false;return true;};const isDisplayed4=()=>{if(!isBrowser())return true;if(baseVariant===\"iXBbiMK8f\")return true;return false;};const isDisplayed5=()=>{if(!isBrowser())return true;if(baseVariant===\"iXBbiMK8f\")return false;return true;};const elementId4=useRouteElementId(\"n9NHDOmT9\");const ref5=React.useRef(null);const elementId5=useRouteElementId(\"EIIYta2wi\");const ref6=React.useRef(null);const elementId6=useRouteElementId(\"fcBXrg7d3\");const ref7=React.useRef(null);const isDisplayed6=()=>{if(!isBrowser())return true;if(baseVariant===\"QmdGmfFMf\")return true;return false;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"qopcfpNIx\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-h3e42f\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QmdGmfFMf:{y:undefined},Sf8KrhhQp:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:101,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-k8ulor-container\",nodeId:\"lTi9uoZTJ\",scopeId:\"jpwn_a0xU\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QmdGmfFMf:{variant:\"kYv_Ck1fD\"},Sf8KrhhQp:{variant:\"kYv_Ck1fD\"}},children:/*#__PURE__*/_jsx(NavigationNavigation,{height:\"100%\",id:\"lTi9uoZTJ\",layoutId:\"lTi9uoZTJ\",style:{width:\"100%\"},variant:\"zc_hz9amk\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bi0tgb\",\"data-framer-name\":\"Hero Section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1g3a96a\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1a7n7ls\",\"data-framer-name\":\"Hero Content Wrapper\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ratjen\",\"data-framer-name\":\"Hero Content Text Block Wrapper\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vuu8yo\",\"data-framer-name\":\"Hero Content Text Block\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QmdGmfFMf:{animate:undefined,initial:undefined,optimized:undefined,style:{}},Sf8KrhhQp:{animate:undefined,initial:undefined,optimized:undefined,style:{}}},children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-vulya0-container\",\"data-framer-appear-id\":\"vulya0\",initial:animation1,isModuleExternal:true,nodeId:\"fPGfmupjQ\",optimized:true,rendersWithMotion:true,scopeId:\"jpwn_a0xU\",style:{rotate:-3,transformPerspective:1200},children:/*#__PURE__*/_jsx(Badge,{background:\"var(--token-aeb46483-f60a-4c1a-b6c5-256f330aa0a0, rgb(83, 136, 242))\",height:\"100%\",icon:true,id:\"fPGfmupjQ\",layoutId:\"fPGfmupjQ\",text:getLocalizedValue(\"v0\",activeLocale)??\"MAXIMIZE YOUR REVENUE\",textColor:\"var(--token-a7f7ae5f-a181-442b-8823-be0ca1b170fe, rgb(255, 255, 255))\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QmdGmfFMf:{animate:undefined,initial:undefined,optimized:undefined,style:{}}},children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation2,className:\"framer-1ctlfv8\",\"data-framer-appear-id\":\"1ctlfv8\",\"data-framer-name\":\"Hero Title Block\",initial:animation3,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QmdGmfFMf:{children:getLocalizedValue(\"v2\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1cxakw9\",\"data-styles-preset\":\"XPlr5yWxI\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9ba5ef01-90ed-4ba8-83db-bde0dc1a4e37, rgb(255, 255, 255))\"},children:\"Create a Clothing Line For Your Fans\"})})},Sf8KrhhQp:{children:getLocalizedValue(\"v2\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1cxakw9\",\"data-styles-preset\":\"XPlr5yWxI\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9ba5ef01-90ed-4ba8-83db-bde0dc1a4e37, rgb(255, 255, 255))\"},children:\"Create a Clothing Line For Your Fans\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1cxakw9\",\"data-styles-preset\":\"XPlr5yWxI\",style:{\"--framer-text-color\":\"var(--token-9ba5ef01-90ed-4ba8-83db-bde0dc1a4e37, rgb(255, 255, 255))\"},children:\"Create a Clothing Line For Your Fans\"})}),className:\"framer-14sqjn2\",\"data-framer-name\":\"Hero Title\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QmdGmfFMf:{animate:undefined,children:getLocalizedValue(\"v4\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-17063rm\",\"data-styles-preset\":\"BGoMSxUp8\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9ba5ef01-90ed-4ba8-83db-bde0dc1a4e37, rgb(255, 255, 255))\"},children:\"Create and sell high-quality merch that resonates and connects with your community. Say goodbye to the overwhelm of making merch.\"})}),initial:undefined,optimized:undefined},Sf8KrhhQp:{children:getLocalizedValue(\"v4\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-17063rm\",\"data-styles-preset\":\"BGoMSxUp8\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9ba5ef01-90ed-4ba8-83db-bde0dc1a4e37, rgb(255, 255, 255))\"},children:\"Create and sell high-quality merch that resonates and connects with your community. Say goodbye to the overwhelm of making merch.\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:getLocalizedValue(\"v3\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-17063rm\",\"data-styles-preset\":\"BGoMSxUp8\",style:{\"--framer-text-color\":\"var(--token-9ba5ef01-90ed-4ba8-83db-bde0dc1a4e37, rgb(255, 255, 255))\"},children:\"Create and sell high-quality merch that resonates and connects with your community. Say goodbye to the overwhelm of making merch.\"})}),className:\"framer-ah68jy\",\"data-framer-appear-id\":\"ah68jy\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\"],initial:animation3,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"center\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1u720pv\",\"data-framer-name\":\"Input form\",children:/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation4,className:\"framer-jolqk\",\"data-framer-appear-id\":\"jolqk\",\"data-framer-name\":\"Form Bottom Text\",initial:animation1,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iXBbiMK8f:{width:\"495px\",y:(componentViewport?.y||0)+0+101+0+0+20+0+43.5+0+0+0+282+0+0+0},QmdGmfFMf:{width:\"295px\",y:undefined},Sf8KrhhQp:{width:\"487px\",y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,width:\"564px\",y:(componentViewport?.y||0)+0+101+0+0+0+0+83.5+0+0+0+282+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-10n2ckt-container\",nodeId:\"hdc8AVUXa\",scopeId:\"jpwn_a0xU\",children:/*#__PURE__*/_jsx(ListItemBullets,{dwdBdMgyG:\"var(--token-9ba5ef01-90ed-4ba8-83db-bde0dc1a4e37, rgb(255, 255, 255))\",height:\"100%\",i9vYBVxD8:18,id:\"hdc8AVUXa\",juFmtdXfK:\"var(--token-9ba5ef01-90ed-4ba8-83db-bde0dc1a4e37, rgb(255, 255, 255))\",layoutId:\"hdc8AVUXa\",s6qc0USke:getLocalizedValue(\"v5\",activeLocale)??\"End-to-end solutions from concept to online store setup.\",style:{width:\"100%\"},variant:\"hAFWUhRYk\",width:\"100%\",ZcgxoOpxV:\"var(--token-9ba5ef01-90ed-4ba8-83db-bde0dc1a4e37, rgb(255, 255, 255))\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":fcBXrg7d3\",webPageId:\"jpwn_a0xU\"},implicitPathVariables:undefined},{href:{hash:\":fcBXrg7d3\",webPageId:\"jpwn_a0xU\"},implicitPathVariables:undefined},{href:{hash:\":fcBXrg7d3\",webPageId:\"jpwn_a0xU\"},implicitPathVariables:undefined},{href:{hash:\":fcBXrg7d3\",webPageId:\"jpwn_a0xU\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iXBbiMK8f:{y:(componentViewport?.y||0)+0+101+0+0+20+0+43.5+0+0+0+340},QmdGmfFMf:{y:undefined},Sf8KrhhQp:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,y:(componentViewport?.y||0)+0+101+0+0+0+0+83.5+0+0+0+340,children:/*#__PURE__*/_jsx(Container,{className:\"framer-slnat2-container\",id:elementId,nodeId:\"t7JaFIZX6\",ref:ref1,scopeId:\"jpwn_a0xU\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iXBbiMK8f:{DnytOe0Z8:resolvedLinks[1]},QmdGmfFMf:{DnytOe0Z8:resolvedLinks[3]},Sf8KrhhQp:{DnytOe0Z8:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(ButtonMaster,{A2dWUqqQh:getLocalizedValue(\"v6\",activeLocale)??\"APPLY NOW\",DnytOe0Z8:resolvedLinks[0],height:\"100%\",id:\"t7JaFIZX6\",layoutId:\"t7JaFIZX6\",oSfNN4wFr:false,v8ArQOg02:true,variant:\"EDnUIZMaX\",width:\"100%\"})})})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mn5r88\",\"data-framer-name\":\"Content Image\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation5,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:.4,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition4,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1hm95uz\",\"data-framer-name\":\"product sold\",children:/*#__PURE__*/_jsxs(\"div\",{background:{alt:\"\",fit:\"fill\"},className:\"framer-3p4bck\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ejmt0t\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-s15o1b-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"TOJk9WeLR\",scopeId:\"jpwn_a0xU\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iXBbiMK8f:{textSize:45},QmdGmfFMf:{textSize:50},Sf8KrhhQp:{textSize:52}},children:/*#__PURE__*/_jsx(Counter,{decimalSeparatorType:\"period\",end:10,gapSize:0,height:\"100%\",id:\"TOJk9WeLR\",incrementType:\"integer\",layoutId:\"TOJk9WeLR\",loop:false,prefixColor:\"rgb(0, 0, 0)\",prefixFont:{fontFamily:'\"Poppins\", \"Poppins Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:400},prefixText:\"+\",restartOnViewport:false,selectedFont:{fontFamily:'\"Poppins\", \"Poppins Placeholder\", sans-serif',fontFeatureSettings:\"normal\",fontStyle:\"normal\",fontWeight:700},speed:55,start:0,startOnViewport:true,suffixColor:\"rgb(171, 171, 171)\",suffixFont:{fontFamily:'\"Poppins\", \"Poppins Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:700},suffixText:\"K\",textColor:\"rgb(29, 29, 29)\",textSize:47,width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ihhoq1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iXBbiMK8f:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+101+0+0+20+0+0+77.5+2+15+33+3.45),pixelHeight:150,pixelWidth:164,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/OsgeS5PHrJ0YUjHI5KAnvBZmH0.svg\"}},QmdGmfFMf:{background:{alt:\"\",fit:\"fit\",pixelHeight:150,pixelWidth:164,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/OsgeS5PHrJ0YUjHI5KAnvBZmH0.svg\"}},Sf8KrhhQp:{background:{alt:\"\",fit:\"fit\",pixelHeight:150,pixelWidth:164,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/OsgeS5PHrJ0YUjHI5KAnvBZmH0.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+101+0+0+0+0+0+164.5+2+11+59+1.45),pixelHeight:150,pixelWidth:164,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/OsgeS5PHrJ0YUjHI5KAnvBZmH0.svg\"},className:\"framer-7t23wo\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QmdGmfFMf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-99ddd8b5-423c-4cfa-8a5b-d15536b7abed, rgb(29, 29, 29))\"},children:\"Products sold\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-99ddd8b5-423c-4cfa-8a5b-d15536b7abed, rgb(29, 29, 29))\"},children:\"Products sold\"})}),className:\"framer-1npamr3\",fonts:[\"GF;Poppins-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iXBbiMK8f:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+101+0+0+20+0+0+30+0),pixelHeight:150,pixelWidth:87,positionX:\"center\",positionY:\"center\",sizes:\"310px\",src:\"https://framerusercontent.com/images/IXBbWo3cr6TdzsxbgdJDUbTCoc.svg\",srcSet:\"https://framerusercontent.com/images/IXBbWo3cr6TdzsxbgdJDUbTCoc.svg?scale-down-to=1024 595w,https://framerusercontent.com/images/IXBbWo3cr6TdzsxbgdJDUbTCoc.svg 838w\"}},QmdGmfFMf:{background:{alt:\"\",fit:\"fit\",pixelHeight:150,pixelWidth:87,positionX:\"center\",positionY:\"center\",sizes:\"327px\",src:\"https://framerusercontent.com/images/IXBbWo3cr6TdzsxbgdJDUbTCoc.svg\",srcSet:\"https://framerusercontent.com/images/IXBbWo3cr6TdzsxbgdJDUbTCoc.svg?scale-down-to=1024 595w,https://framerusercontent.com/images/IXBbWo3cr6TdzsxbgdJDUbTCoc.svg 838w\"}},Sf8KrhhQp:{background:{alt:\"\",fit:\"fit\",pixelHeight:150,pixelWidth:87,positionX:\"center\",positionY:\"center\",sizes:\"343px\",src:\"https://framerusercontent.com/images/IXBbWo3cr6TdzsxbgdJDUbTCoc.svg\",srcSet:\"https://framerusercontent.com/images/IXBbWo3cr6TdzsxbgdJDUbTCoc.svg?scale-down-to=1024 595w,https://framerusercontent.com/images/IXBbWo3cr6TdzsxbgdJDUbTCoc.svg 838w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+101+0+0+0+0+0+30+0),pixelHeight:150,pixelWidth:87,positionX:\"center\",positionY:\"center\",sizes:\"343px\",src:\"https://framerusercontent.com/images/IXBbWo3cr6TdzsxbgdJDUbTCoc.svg\",srcSet:\"https://framerusercontent.com/images/IXBbWo3cr6TdzsxbgdJDUbTCoc.svg?scale-down-to=1024 595w,https://framerusercontent.com/images/IXBbWo3cr6TdzsxbgdJDUbTCoc.svg 838w\"},className:\"framer-1g8jcpu\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kd4bc6-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"EAwUOeGav\",scopeId:\"jpwn_a0xU\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"EAwUOeGav\",isMixedBorderRadius:false,layoutId:\"EAwUOeGav\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/XZyi5H287SbDtqX8fBmr7mpDN4.mp4\",srcType:\"Upload\",srcUrl:getLocalizedValue(\"v7\",activeLocale)??\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-m5umdd-container\",id:\"m5umdd\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"soQCTvcOL\",scopeId:\"jpwn_a0xU\",children:/*#__PURE__*/_jsx(Particles,{background:\"rgba(0, 0, 0, 0)\",clickOptions:{clickEnabled:true,clickModes:\"bubble\"},color:\"rgb(183, 74, 255)\",colors:[],densityOptions:{densityArea:100,densityEnable:false,densityFactor:29.5},fpsOptions:60,height:\"100%\",hoverOptions:{hoverEnabled:true,hoverForce:10,hoverModes:\"none\",hoverParallax:true,hoverSmooth:10},id:\"soQCTvcOL\",layoutId:\"soQCTvcOL\",linksOptions:{linksColor:\"rgb(255, 255, 255)\",linksDistance:100,linksEnabled:false,linksOpacity:.2,linksWidth:1},modeOptions:{bubbleDistance:100,bubbleDuration:.4,bubbleSize:40,connectDistance:100,connectLinksOpacity:.2,connectRadius:50,grabDistance:100,grabLinksOpacity:.2,pushQuantity:4,removeQuantity:4,repulseDistance:200,repulseDuration:1.2,trailDelay:.1,trailQuantity:10},moveOptions:{moveAttractDistance:100,moveAttractEnabled:false,moveDirection:\"none\",moveEnabled:true,moveGravityAcceleration:1,moveGravityEnabled:false,moveGravityMaxSpeed:2,moveOut:\"out\",moveRandom:false,moveSpeed:.5,moveSpinAcceleration:1,moveSpinEnabled:false,moveStraight:false,moveTrailAmount:100,moveTrailEnabled:false,moveVibrate:false},number:20,opacityOptions:{opacity:.8,opacityMax:1,opacityMin:0,opacityType:false},particlesID:\"One\",radius:0,rotateOptions:{rotateAnimation:false,rotateDirection:\"random\",rotateSpeed:5,rotateSync:false,rotateValue:0},shapeOptions:{characterType:\"\uD83D\uDE0E\",imageHeight:10,imageSource:\"https://framerusercontent.com/images/wLcbKp3GnFmfxBTePduTktOGrCU.svg\",imageWidth:10,shapeType:\"image\"},sizeOptions:{size:1,sizeMax:15,sizeMin:1,sizeType:false},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})]})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pi91uv\",\"data-framer-name\":\"Our Creators\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1t3yoqx\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1ps8izp\",\"data-styles-preset\":\"jyGHLHurG\",style:{\"--framer-text-alignment\":\"center\"},children:\"Some of Our Creators\"})}),className:\"framer-1v0d6su\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1maxop\",\"data-framer-name\":\"CreatorsBlock\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.tiktok.com/@hoonkorean\",motionChild:true,nodeId:\"hZoveUrnJ\",scopeId:\"jpwn_a0xU\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-9wjzqm framer-1i31yr\",\"data-framer-name\":\"Creator\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iXBbiMK8f:{background:{alt:\"followers icon\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+628+80+80+0+-3),pixelHeight:150,pixelWidth:238,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/5U6NSFf2rlCCGRsOAQ2zpzf4Rdo.svg\"}},QmdGmfFMf:{background:{alt:\"followers icon\",fit:\"fit\",pixelHeight:150,pixelWidth:238,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/5U6NSFf2rlCCGRsOAQ2zpzf4Rdo.svg\"}},Sf8KrhhQp:{background:{alt:\"followers icon\",fit:\"fit\",pixelHeight:150,pixelWidth:238,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/5U6NSFf2rlCCGRsOAQ2zpzf4Rdo.svg\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation6,__framer__loop:animation7,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:.4,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"followers icon\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+668+100+80+0+-6),pixelHeight:150,pixelWidth:238,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/5U6NSFf2rlCCGRsOAQ2zpzf4Rdo.svg\"},className:\"framer-vc71l1\",\"data-framer-name\":\"redes\",style:{rotate:2,transformPerspective:1200},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1meqzkx-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"mD72oFuuj\",scopeId:\"jpwn_a0xU\",children:/*#__PURE__*/_jsx(Counter,{decimalSeparatorType:\"none\",end:3.4,gapSize:0,height:\"100%\",id:\"mD72oFuuj\",incrementType:\"decimal\",layoutId:\"mD72oFuuj\",loop:false,prefixColor:\"rgb(255, 255, 255)\",prefixFont:{fontFamily:'\"Poppins\", \"Poppins Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:400},prefixText:\"\",restartOnViewport:true,selectedFont:{fontFamily:'\"Poppins\", \"Poppins Placeholder\", sans-serif',fontFeatureSettings:\"normal\",fontStyle:\"normal\",fontWeight:700},speed:50,start:0,startOnViewport:true,suffixColor:\"rgb(255, 255, 255)\",suffixFont:{fontFamily:'\"Poppins\", \"Poppins Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:700},suffixText:\"M\",textColor:\"rgb(255, 255, 255)\",textSize:18,width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-60t1uo\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iXBbiMK8f:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+628+80+80+0+40+0+0),pixelHeight:720,pixelWidth:578,sizes:\"209.9502px\",src:\"https://framerusercontent.com/images/VYFctCu2ShzSA7k2zqce0uL6k.png\",srcSet:\"https://framerusercontent.com/images/VYFctCu2ShzSA7k2zqce0uL6k.png 578w\"}},QmdGmfFMf:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,pixelHeight:720,pixelWidth:578,sizes:\"209.9502px\",src:\"https://framerusercontent.com/images/VYFctCu2ShzSA7k2zqce0uL6k.png\",srcSet:\"https://framerusercontent.com/images/VYFctCu2ShzSA7k2zqce0uL6k.png 578w\"}},Sf8KrhhQp:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,pixelHeight:720,pixelWidth:578,sizes:\"209.9502px\",src:\"https://framerusercontent.com/images/VYFctCu2ShzSA7k2zqce0uL6k.png\",srcSet:\"https://framerusercontent.com/images/VYFctCu2ShzSA7k2zqce0uL6k.png 578w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+668+100+80+0+40+0+0),pixelHeight:720,pixelWidth:578,sizes:\"209.9502px\",src:\"https://framerusercontent.com/images/VYFctCu2ShzSA7k2zqce0uL6k.png\",srcSet:\"https://framerusercontent.com/images/VYFctCu2ShzSA7k2zqce0uL6k.png 578w\"},className:\"framer-f7wh1q\",\"data-border\":true,\"data-framer-name\":\"cube\",style:{transformPerspective:1200}})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-kurdbu\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-algvaf\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iXBbiMK8f:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"28px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-99ddd8b5-423c-4cfa-8a5b-d15536b7abed, rgb(29, 29, 29))\",\"--framer-text-transform\":\"lowercase\"},children:\"@hoonkorean\"})})},QmdGmfFMf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"28px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-99ddd8b5-423c-4cfa-8a5b-d15536b7abed, rgb(29, 29, 29))\",\"--framer-text-transform\":\"lowercase\"},children:\"@hoonkorean\"})})},Sf8KrhhQp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"28px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-99ddd8b5-423c-4cfa-8a5b-d15536b7abed, rgb(29, 29, 29))\",\"--framer-text-transform\":\"lowercase\"},children:\"@hoonkorean\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation9,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"36px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-99ddd8b5-423c-4cfa-8a5b-d15536b7abed, rgb(29, 29, 29))\",\"--framer-text-transform\":\"lowercase\"},children:\"@hoonkorean\"})}),className:\"framer-1q8c7vi\",\"data-framer-appear-id\":\"1q8c7vi\",fonts:[\"GF;Poppins-600\"],initial:animation10,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})})})})]})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.tiktok.com/@mariomirante\",motionChild:true,nodeId:\"vtguTVwFl\",scopeId:\"jpwn_a0xU\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-10ymxmd framer-1i31yr\",\"data-framer-name\":\"Creator\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iXBbiMK8f:{background:{alt:\"followers icon\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+628+80+80+0+-3),pixelHeight:150,pixelWidth:238,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/5U6NSFf2rlCCGRsOAQ2zpzf4Rdo.svg\"}},QmdGmfFMf:{background:{alt:\"followers icon\",fit:\"fit\",pixelHeight:150,pixelWidth:238,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/5U6NSFf2rlCCGRsOAQ2zpzf4Rdo.svg\"}},Sf8KrhhQp:{background:{alt:\"followers icon\",fit:\"fit\",pixelHeight:150,pixelWidth:238,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/5U6NSFf2rlCCGRsOAQ2zpzf4Rdo.svg\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation6,__framer__loop:animation7,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:.4,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"followers icon\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+668+100+80+0+-1),pixelHeight:150,pixelWidth:238,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/5U6NSFf2rlCCGRsOAQ2zpzf4Rdo.svg\"},className:\"framer-lbyljr\",\"data-framer-name\":\"redes\",style:{rotate:-8,transformPerspective:1200},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-v1z2mn-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"mMvAgQLOv\",scopeId:\"jpwn_a0xU\",children:/*#__PURE__*/_jsx(Counter,{decimalSeparatorType:\"none\",end:5.6,gapSize:0,height:\"100%\",id:\"mMvAgQLOv\",incrementType:\"decimal\",layoutId:\"mMvAgQLOv\",loop:false,prefixColor:\"rgb(255, 255, 255)\",prefixFont:{fontFamily:'\"Poppins\", \"Poppins Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:400},prefixText:\"\",restartOnViewport:true,selectedFont:{fontFamily:'\"Poppins\", \"Poppins Placeholder\", sans-serif',fontFeatureSettings:\"normal\",fontStyle:\"normal\",fontWeight:700},speed:50,start:0,startOnViewport:true,suffixColor:\"rgb(255, 255, 255)\",suffixFont:{fontFamily:'\"Poppins\", \"Poppins Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:700},suffixText:\"M\",textColor:\"rgb(255, 255, 255)\",textSize:18,width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1e44mkz\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iXBbiMK8f:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+628+80+80+0+40+0+0),pixelHeight:251,pixelWidth:201,src:\"https://framerusercontent.com/images/UV2cxDfsmI792JyXqNsPDMCTc.png\"}},QmdGmfFMf:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,pixelHeight:251,pixelWidth:201,src:\"https://framerusercontent.com/images/UV2cxDfsmI792JyXqNsPDMCTc.png\"}},Sf8KrhhQp:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,pixelHeight:251,pixelWidth:201,src:\"https://framerusercontent.com/images/UV2cxDfsmI792JyXqNsPDMCTc.png\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+668+100+80+0+40+0+0),pixelHeight:251,pixelWidth:201,src:\"https://framerusercontent.com/images/UV2cxDfsmI792JyXqNsPDMCTc.png\"},className:\"framer-5vfb3k\",\"data-border\":true,\"data-framer-name\":\"cube\",style:{transformPerspective:1200}})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12w6jqo\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-f0rkqj\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iXBbiMK8f:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"28px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-99ddd8b5-423c-4cfa-8a5b-d15536b7abed, rgb(29, 29, 29))\",\"--framer-text-transform\":\"lowercase\"},children:\"@mariomirante\"})})},QmdGmfFMf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"28px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-99ddd8b5-423c-4cfa-8a5b-d15536b7abed, rgb(29, 29, 29))\",\"--framer-text-transform\":\"lowercase\"},children:\"@mariomirante\"})})},Sf8KrhhQp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"28px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-99ddd8b5-423c-4cfa-8a5b-d15536b7abed, rgb(29, 29, 29))\",\"--framer-text-transform\":\"lowercase\"},children:\"@mariomirante\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation9,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"36px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-99ddd8b5-423c-4cfa-8a5b-d15536b7abed, rgb(29, 29, 29))\",\"--framer-text-transform\":\"lowercase\"},children:\"@mariomirante\"})}),className:\"framer-1ruj0uv\",\"data-framer-appear-id\":\"1ruj0uv\",fonts:[\"GF;Poppins-600\"],initial:animation10,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})})})})]})}),isDisplayed()&&/*#__PURE__*/_jsx(Link,{href:\"https://www.youtube.com/@richar1979BetaCode\",motionChild:true,nodeId:\"adWVWiGfs\",scopeId:\"jpwn_a0xU\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-if6swz hidden-9v2ybr framer-1i31yr\",\"data-framer-name\":\"Creator\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iXBbiMK8f:{background:{alt:\"followers icon\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+628+80+80+0+-3),pixelHeight:150,pixelWidth:238,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/5U6NSFf2rlCCGRsOAQ2zpzf4Rdo.svg\"}},QmdGmfFMf:{background:{alt:\"followers icon\",fit:\"fit\",pixelHeight:150,pixelWidth:238,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/5U6NSFf2rlCCGRsOAQ2zpzf4Rdo.svg\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation6,__framer__loop:animation7,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:.4,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"followers icon\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+668+100+80+0+6),pixelHeight:150,pixelWidth:238,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/5U6NSFf2rlCCGRsOAQ2zpzf4Rdo.svg\"},className:\"framer-1dy8my6\",\"data-framer-name\":\"redes\",style:{rotate:7,transformPerspective:1200},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ywpa6o-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"moVevuU1J\",scopeId:\"jpwn_a0xU\",children:/*#__PURE__*/_jsx(Counter,{decimalSeparatorType:\"none\",end:1.3,gapSize:0,height:\"100%\",id:\"moVevuU1J\",incrementType:\"decimal\",layoutId:\"moVevuU1J\",loop:false,prefixColor:\"rgb(255, 255, 255)\",prefixFont:{fontFamily:'\"Poppins\", \"Poppins Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:400},prefixText:\"\",restartOnViewport:true,selectedFont:{fontFamily:'\"Poppins\", \"Poppins Placeholder\", sans-serif',fontFeatureSettings:\"normal\",fontStyle:\"normal\",fontWeight:700},speed:50,start:0,startOnViewport:true,suffixColor:\"rgb(255, 255, 255)\",suffixFont:{fontFamily:'\"Poppins\", \"Poppins Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:700},suffixText:\"M\",textColor:\"rgb(255, 255, 255)\",textSize:18,width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ziyrln\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iXBbiMK8f:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+628+80+80+0+40+0+0),pixelHeight:400,pixelWidth:400,src:\"https://framerusercontent.com/images/aPPdklKix6awudIorxXZRPSBdVI.png\"}},QmdGmfFMf:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,pixelHeight:400,pixelWidth:400,src:\"https://framerusercontent.com/images/aPPdklKix6awudIorxXZRPSBdVI.png\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+668+100+80+0+40+0+0),pixelHeight:400,pixelWidth:400,src:\"https://framerusercontent.com/images/aPPdklKix6awudIorxXZRPSBdVI.png\"},className:\"framer-h2fpbv\",\"data-border\":true,\"data-framer-name\":\"cube\",style:{transformPerspective:1200}})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-nrys73\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-zsg03s\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iXBbiMK8f:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"28px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-99ddd8b5-423c-4cfa-8a5b-d15536b7abed, rgb(29, 29, 29))\",\"--framer-text-transform\":\"lowercase\"},children:\"@richar1979betacode\"})})},QmdGmfFMf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"28px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-99ddd8b5-423c-4cfa-8a5b-d15536b7abed, rgb(29, 29, 29))\",\"--framer-text-transform\":\"lowercase\"},children:\"@richar1979betacode\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation9,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"36px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-99ddd8b5-423c-4cfa-8a5b-d15536b7abed, rgb(29, 29, 29))\",\"--framer-text-transform\":\"lowercase\"},children:\"@richar1979betacode\"})}),className:\"framer-1sy5vba\",\"data-framer-appear-id\":\"1sy5vba\",fonts:[\"GF;Poppins-600\"],initial:animation10,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})})})})]})}),isDisplayed()&&/*#__PURE__*/_jsx(Link,{href:\"https://www.tiktok.com/@valentinabatta\",motionChild:true,nodeId:\"k7NE6Yd0t\",scopeId:\"jpwn_a0xU\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-15ohk6q hidden-9v2ybr framer-1i31yr\",\"data-framer-name\":\"Creator\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iXBbiMK8f:{background:{alt:\"followers icon\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+628+80+80+0+2),pixelHeight:150,pixelWidth:238,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/5U6NSFf2rlCCGRsOAQ2zpzf4Rdo.svg\"}},QmdGmfFMf:{background:{alt:\"followers icon\",fit:\"fit\",pixelHeight:150,pixelWidth:238,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/5U6NSFf2rlCCGRsOAQ2zpzf4Rdo.svg\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation6,__framer__loop:animation7,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:.4,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"followers icon\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+668+100+80+0+-1),pixelHeight:150,pixelWidth:238,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/5U6NSFf2rlCCGRsOAQ2zpzf4Rdo.svg\"},className:\"framer-1lewx6a\",\"data-framer-name\":\"redes\",style:{rotate:-2,transformPerspective:1200},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-8urozc-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"sYBYgExjt\",scopeId:\"jpwn_a0xU\",children:/*#__PURE__*/_jsx(Counter,{decimalSeparatorType:\"none\",end:1.6,gapSize:0,height:\"100%\",id:\"sYBYgExjt\",incrementType:\"decimal\",layoutId:\"sYBYgExjt\",loop:false,prefixColor:\"rgb(255, 255, 255)\",prefixFont:{fontFamily:'\"Poppins\", \"Poppins Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:400},prefixText:\"\",restartOnViewport:true,selectedFont:{fontFamily:'\"Poppins\", \"Poppins Placeholder\", sans-serif',fontFeatureSettings:\"normal\",fontStyle:\"normal\",fontWeight:700},speed:50,start:0,startOnViewport:true,suffixColor:\"rgb(255, 255, 255)\",suffixFont:{fontFamily:'\"Poppins\", \"Poppins Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:700},suffixText:\"M\",textColor:\"rgb(255, 255, 255)\",textSize:18,width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wmq2ph\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iXBbiMK8f:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+628+80+80+0+40+0+0),pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/9sQ2jRRPIJcle2xjmXlTtQXhaQ.png\"}},QmdGmfFMf:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/9sQ2jRRPIJcle2xjmXlTtQXhaQ.png\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+668+100+80+0+40+0+0),pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/9sQ2jRRPIJcle2xjmXlTtQXhaQ.png\"},className:\"framer-f072co\",\"data-border\":true,\"data-framer-name\":\"cube\",style:{transformPerspective:1200}})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1er789z\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1n7htjm\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iXBbiMK8f:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"28px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-99ddd8b5-423c-4cfa-8a5b-d15536b7abed, rgb(29, 29, 29))\",\"--framer-text-transform\":\"lowercase\"},children:\"@valentinabatta\"})})},QmdGmfFMf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"28px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-99ddd8b5-423c-4cfa-8a5b-d15536b7abed, rgb(29, 29, 29))\",\"--framer-text-transform\":\"lowercase\"},children:\"@valentinabatta\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation9,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"36px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-99ddd8b5-423c-4cfa-8a5b-d15536b7abed, rgb(29, 29, 29))\",\"--framer-text-transform\":\"lowercase\"},children:\"@valentinabatta\"})}),className:\"framer-uytpxz\",\"data-framer-appear-id\":\"uytpxz\",fonts:[\"GF;Poppins-600\"],initial:animation10,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})})})})]})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14ny41 hidden-h3e42f hidden-41eq9c hidden-rt9vwd\",\"data-framer-name\":\"CreatorsBlock\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14ey1km\",\"data-framer-name\":\"Creator\",children:[/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation6,__framer__loop:animation7,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:.4,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"followers icon\",fit:\"fit\",pixelHeight:150,pixelWidth:238,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/5U6NSFf2rlCCGRsOAQ2zpzf4Rdo.svg\"},className:\"framer-8rt0cs\",\"data-framer-name\":\"redes\",style:{rotate:7,transformPerspective:1200},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-zv4sf8-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ozHC9tUob\",scopeId:\"jpwn_a0xU\",children:/*#__PURE__*/_jsx(Counter,{decimalSeparatorType:\"none\",end:1.3,gapSize:0,height:\"100%\",id:\"ozHC9tUob\",incrementType:\"decimal\",layoutId:\"ozHC9tUob\",loop:false,prefixColor:\"rgb(255, 255, 255)\",prefixFont:{fontFamily:'\"Poppins\", \"Poppins Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:400},prefixText:\"\",restartOnViewport:true,selectedFont:{fontFamily:'\"Poppins\", \"Poppins Placeholder\", sans-serif',fontFeatureSettings:\"normal\",fontStyle:\"normal\",fontWeight:700},speed:50,start:0,startOnViewport:true,suffixColor:\"rgb(255, 255, 255)\",suffixFont:{fontFamily:'\"Poppins\", \"Poppins Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:700},suffixText:\"M\",textColor:\"rgb(255, 255, 255)\",textSize:18,width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ucigsv\",children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,pixelHeight:400,pixelWidth:400,src:\"https://framerusercontent.com/images/aPPdklKix6awudIorxXZRPSBdVI.png\"},className:\"framer-1wv8fkw\",\"data-border\":true,\"data-framer-name\":\"cube\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1svc5po\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rr3mq9\",children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation9,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"28px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-99ddd8b5-423c-4cfa-8a5b-d15536b7abed, rgb(29, 29, 29))\",\"--framer-text-transform\":\"lowercase\"},children:\"@richar1979betacode\"})}),className:\"framer-l17ojp\",\"data-framer-appear-id\":\"l17ojp\",fonts:[\"GF;Poppins-600\"],initial:animation10,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vvu27f\",\"data-framer-name\":\"Creator\",children:[/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation6,__framer__loop:animation7,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:.4,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"followers icon\",fit:\"fit\",pixelHeight:150,pixelWidth:238,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/5U6NSFf2rlCCGRsOAQ2zpzf4Rdo.svg\"},className:\"framer-evsmuh\",\"data-framer-name\":\"redes\",style:{rotate:-2,transformPerspective:1200},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-m362ri-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"yng7vqw33\",scopeId:\"jpwn_a0xU\",children:/*#__PURE__*/_jsx(Counter,{decimalSeparatorType:\"none\",end:1.6,gapSize:0,height:\"100%\",id:\"yng7vqw33\",incrementType:\"decimal\",layoutId:\"yng7vqw33\",loop:false,prefixColor:\"rgb(255, 255, 255)\",prefixFont:{fontFamily:'\"Poppins\", \"Poppins Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:400},prefixText:\"\",restartOnViewport:true,selectedFont:{fontFamily:'\"Poppins\", \"Poppins Placeholder\", sans-serif',fontFeatureSettings:\"normal\",fontStyle:\"normal\",fontWeight:700},speed:50,start:0,startOnViewport:true,suffixColor:\"rgb(255, 255, 255)\",suffixFont:{fontFamily:'\"Poppins\", \"Poppins Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:700},suffixText:\"M\",textColor:\"rgb(255, 255, 255)\",textSize:18,width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ng7hcz\",children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,pixelHeight:300,pixelWidth:300,src:\"https://framerusercontent.com/images/9sQ2jRRPIJcle2xjmXlTtQXhaQ.png\"},className:\"framer-19vjhl2\",\"data-border\":true,\"data-framer-name\":\"cube\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ujt2k1\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-131wx4i\",children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation9,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"28px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-99ddd8b5-423c-4cfa-8a5b-d15536b7abed, rgb(29, 29, 29))\",\"--framer-text-transform\":\"lowercase\"},children:\"@valentinabatta\"})}),className:\"framer-g46bcm\",\"data-framer-appear-id\":\"g46bcm\",fonts:[\"GF;Poppins-600\"],initial:animation10,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})})})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kq2388\",\"data-framer-name\":\"Success Story\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jjdtgb\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-j2zven\",\"data-framer-name\":\"Content Wrapper\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-6ymlpa\",\"data-framer-name\":\"Content Text Block Wrapper\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-y01qi5\",\"data-framer-name\":\"Content Text Block Wrapper\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hfjfhs\",\"data-framer-name\":\"Content Text Block\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Sf8KrhhQp:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-15sdk7w\",\"data-framer-name\":\"Content Title Block\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iXBbiMK8f:{children:getLocalizedValue(\"v9\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h5\",{className:\"framer-styles-preset-1ps8izp\",\"data-styles-preset\":\"jyGHLHurG\",children:[\"Success Story: \",/*#__PURE__*/_jsx(\"br\",{}),\"Mario's Comic-Inspired Product Line\"]})})},QmdGmfFMf:{children:getLocalizedValue(\"v10\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h5\",{className:\"framer-styles-preset-1ps8izp\",\"data-styles-preset\":\"jyGHLHurG\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Success Story: \",/*#__PURE__*/_jsx(\"br\",{}),\"Mario's Comic-Inspired Product Line\"]})})},Sf8KrhhQp:{children:getLocalizedValue(\"v10\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h5\",{className:\"framer-styles-preset-1ps8izp\",\"data-styles-preset\":\"jyGHLHurG\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Success Story: \",/*#__PURE__*/_jsx(\"br\",{}),\"Mario's Comic-Inspired Product Line\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v8\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1ps8izp\",\"data-styles-preset\":\"jyGHLHurG\",children:[\"Success Story: \",/*#__PURE__*/_jsx(\"br\",{}),\"Mario's Comic-Inspired Product Line\"]})}),className:\"framer-11yk7qz\",\"data-framer-name\":\"Content Title\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iXBbiMK8f:{children:getLocalizedValue(\"v12\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-132dc9h\",\"data-styles-preset\":\"U4q_q8nHt\",children:\"With over 3 million followers, TikTok comedian Mario wanted merch that captured his ironic, relatable style. \"}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-132dc9h\",\"data-styles-preset\":\"U4q_q8nHt\",children:[/*#__PURE__*/_jsx(\"strong\",{children:\"We crafted a product line and set up a fully branded store with his style\"}),\", collaborating closely with Mario to bring his ideas to life. \"]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-132dc9h\",\"data-styles-preset\":\"U4q_q8nHt\",children:[\"For launch, Mario teased his new products on Instagram and TikTok, then showcased fan-favorites like \",/*#__PURE__*/_jsx(\"strong\",{children:\"the \u201CI\u2019m Single\u201D hat in a viral video that drove major sales within 24 hours.\"})]})]})},QmdGmfFMf:{children:getLocalizedValue(\"v14\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-132dc9h\",\"data-styles-preset\":\"U4q_q8nHt\",style:{\"--framer-text-alignment\":\"center\"},children:\"With over 3 million followers, TikTok comedian Mario wanted merch that captured his ironic, relatable style. \"}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-132dc9h\",\"data-styles-preset\":\"U4q_q8nHt\",style:{\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"We crafted a product line and set up a fully branded store with his style\"}),\", collaborating closely with Mario to bring his ideas to life. \"]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-132dc9h\",\"data-styles-preset\":\"U4q_q8nHt\",style:{\"--framer-text-alignment\":\"center\"},children:[\"For launch, Mario teased his new products on Instagram and TikTok, then showcased fan-favorites like \",/*#__PURE__*/_jsx(\"strong\",{children:\"the \u201CI\u2019m Single\u201D hat in a viral video that drove major sales within 24 hours.\"})]})]})},Sf8KrhhQp:{__framer__styleAppearEffectEnabled:undefined,children:getLocalizedValue(\"v13\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-132dc9h\",\"data-styles-preset\":\"U4q_q8nHt\",style:{\"--framer-text-alignment\":\"center\"},children:\"With over 3 million followers, TikTok comedian Mario wanted merch that captured his ironic, relatable style. \"}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-132dc9h\",\"data-styles-preset\":\"U4q_q8nHt\",style:{\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"We crafted a product line and set up a fully branded store with his style\"}),\", collaborating closely with Mario to bring his ideas to life. \"]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-132dc9h\",\"data-styles-preset\":\"U4q_q8nHt\",style:{\"--framer-text-alignment\":\"center\"},children:[\"For launch, Mario teased his new products on Instagram and TikTok, then showcased fan-favorites like \",/*#__PURE__*/_jsx(\"strong\",{children:\"the \u201CI\u2019m Single\u201D hat in a viral video that drove major sales within 24 hours.\"})]})]}),style:{}}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v11\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-132dc9h\",\"data-styles-preset\":\"U4q_q8nHt\",children:\"With over 3 million followers, TikTok comedian Mario wanted merch that captured his ironic, relatable style. \"}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-132dc9h\",\"data-styles-preset\":\"U4q_q8nHt\",children:[/*#__PURE__*/_jsx(\"strong\",{children:\"We crafted a product line and set up a fully branded store with his style\"}),\", collaborating closely with Mario to bring his ideas to life. \"]}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-132dc9h\",\"data-styles-preset\":\"U4q_q8nHt\",children:[\"For launch, Mario teased his new products on Instagram and TikTok, then showcased fan-favorites like \",/*#__PURE__*/_jsx(\"strong\",{children:\"the \u201CI\u2019m Single\u201D hat in a viral video that drove major sales within 24 hours.\"})]})]}),className:\"framer-elvpqx\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\",\"Inter-Bold\"],style:{transformPerspective:1200},verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":fcBXrg7d3\",webPageId:\"jpwn_a0xU\"},implicitPathVariables:undefined},{href:{hash:\":fcBXrg7d3\",webPageId:\"jpwn_a0xU\"},implicitPathVariables:undefined},{href:{hash:\":fcBXrg7d3\",webPageId:\"jpwn_a0xU\"},implicitPathVariables:undefined},{href:{hash:\":fcBXrg7d3\",webPageId:\"jpwn_a0xU\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iXBbiMK8f:{y:(componentViewport?.y||0)+0+1166+40+0+0+0+0+0+0+0+0+0+544},QmdGmfFMf:{y:undefined},Sf8KrhhQp:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,y:(componentViewport?.y||0)+0+1244+60+0+0+0+0+0+0+0+0+0+544,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wo60l7-container\",id:elementId1,nodeId:\"rBzMNkOnZ\",ref:ref2,scopeId:\"jpwn_a0xU\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iXBbiMK8f:{DnytOe0Z8:resolvedLinks1[1]},QmdGmfFMf:{DnytOe0Z8:resolvedLinks1[3]},Sf8KrhhQp:{DnytOe0Z8:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(ButtonMaster,{A2dWUqqQh:getLocalizedValue(\"v15\",activeLocale)??\"Contact Us\",DnytOe0Z8:resolvedLinks1[0],height:\"100%\",id:\"rBzMNkOnZ\",layoutId:\"rBzMNkOnZ\",oSfNN4wFr:false,v8ArQOg02:true,variant:\"EDnUIZMaX\",width:\"100%\"})})})})})})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jjy50g\",\"data-framer-name\":\"Content Image Block\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iXBbiMK8f:{background:{alt:getLocalizedValue(\"v16\",activeLocale)??\"latinaholic hoodie\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1166+40+0+0+0+7+159.1754),pixelHeight:2700,pixelWidth:2250,sizes:\"257.8767px\",src:\"https://framerusercontent.com/images/OpLZUW4wZRewzxmaPZgECgnbKw.jpg\",srcSet:\"https://framerusercontent.com/images/OpLZUW4wZRewzxmaPZgECgnbKw.jpg?scale-down-to=1024 853w,https://framerusercontent.com/images/OpLZUW4wZRewzxmaPZgECgnbKw.jpg?scale-down-to=2048 1706w,https://framerusercontent.com/images/OpLZUW4wZRewzxmaPZgECgnbKw.jpg 2250w\"}},QmdGmfFMf:{background:{alt:getLocalizedValue(\"v16\",activeLocale)??\"latinaholic hoodie\",fit:\"fill\",pixelHeight:2700,pixelWidth:2250,sizes:`calc(min(min(max(${componentViewport?.width||\"100vw\"}, 1px), 524px) - 40px, 400px) * 0.6629)`,src:\"https://framerusercontent.com/images/OpLZUW4wZRewzxmaPZgECgnbKw.jpg\",srcSet:\"https://framerusercontent.com/images/OpLZUW4wZRewzxmaPZgECgnbKw.jpg?scale-down-to=1024 853w,https://framerusercontent.com/images/OpLZUW4wZRewzxmaPZgECgnbKw.jpg?scale-down-to=2048 1706w,https://framerusercontent.com/images/OpLZUW4wZRewzxmaPZgECgnbKw.jpg 2250w\"},transformTemplate:transformTemplate1},Sf8KrhhQp:{background:{alt:getLocalizedValue(\"v16\",activeLocale)??\"latinaholic hoodie\",fit:\"fill\",pixelHeight:2700,pixelWidth:2250,sizes:`calc((min(max(${componentViewport?.width||\"100vw\"}, 1px), 720px) - 64px) / 2 - 70px)`,src:\"https://framerusercontent.com/images/OpLZUW4wZRewzxmaPZgECgnbKw.jpg\",srcSet:\"https://framerusercontent.com/images/OpLZUW4wZRewzxmaPZgECgnbKw.jpg?scale-down-to=1024 853w,https://framerusercontent.com/images/OpLZUW4wZRewzxmaPZgECgnbKw.jpg?scale-down-to=2048 1706w,https://framerusercontent.com/images/OpLZUW4wZRewzxmaPZgECgnbKw.jpg 2250w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:getLocalizedValue(\"v16\",activeLocale)??\"latinaholic hoodie\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1244+60+0+0+0+7+80.2149),pixelHeight:2700,pixelWidth:2250,sizes:\"347px\",src:\"https://framerusercontent.com/images/OpLZUW4wZRewzxmaPZgECgnbKw.jpg\",srcSet:\"https://framerusercontent.com/images/OpLZUW4wZRewzxmaPZgECgnbKw.jpg?scale-down-to=1024 853w,https://framerusercontent.com/images/OpLZUW4wZRewzxmaPZgECgnbKw.jpg?scale-down-to=2048 1706w,https://framerusercontent.com/images/OpLZUW4wZRewzxmaPZgECgnbKw.jpg 2250w\"},className:\"framer-hsik4e\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iXBbiMK8f:{background:{alt:getLocalizedValue(\"v17\",activeLocale)??\"im single hat\",fit:\"fill\",intrinsicHeight:110,intrinsicWidth:261,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1166+40+0+0+0+7+590-178.0317),pixelHeight:2700,pixelWidth:2250,sizes:\"136.0522px\",src:\"https://framerusercontent.com/images/QSt398WpVF4H5MD9V7wLhMzoM.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/QSt398WpVF4H5MD9V7wLhMzoM.png?scale-down-to=1024 853w,https://framerusercontent.com/images/QSt398WpVF4H5MD9V7wLhMzoM.png?scale-down-to=2048 1706w,https://framerusercontent.com/images/QSt398WpVF4H5MD9V7wLhMzoM.png 2250w\"}},QmdGmfFMf:{__framer__enter:animation14,background:{alt:getLocalizedValue(\"v17\",activeLocale)??\"im single hat\",fit:\"fill\",intrinsicHeight:110,intrinsicWidth:261,pixelHeight:2700,pixelWidth:2250,sizes:`calc(min(min(max(${componentViewport?.width||\"100vw\"}, 1px), 524px) - 40px, 400px) / 2.8)`,src:\"https://framerusercontent.com/images/QSt398WpVF4H5MD9V7wLhMzoM.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/QSt398WpVF4H5MD9V7wLhMzoM.png?scale-down-to=1024 853w,https://framerusercontent.com/images/QSt398WpVF4H5MD9V7wLhMzoM.png?scale-down-to=2048 1706w,https://framerusercontent.com/images/QSt398WpVF4H5MD9V7wLhMzoM.png 2250w\"},style:{rotate:-5},transformTemplate:transformTemplate1},Sf8KrhhQp:{__framer__enter:animation13,background:{alt:getLocalizedValue(\"v17\",activeLocale)??\"im single hat\",fit:\"fill\",intrinsicHeight:110,intrinsicWidth:261,pixelHeight:2700,pixelWidth:2250,sizes:`calc((min(max(${componentViewport?.width||\"100vw\"}, 1px), 720px) - 64px) / 2 - 195px)`,src:\"https://framerusercontent.com/images/QSt398WpVF4H5MD9V7wLhMzoM.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/QSt398WpVF4H5MD9V7wLhMzoM.png?scale-down-to=1024 853w,https://framerusercontent.com/images/QSt398WpVF4H5MD9V7wLhMzoM.png?scale-down-to=2048 1706w,https://framerusercontent.com/images/QSt398WpVF4H5MD9V7wLhMzoM.png 2250w\"},style:{rotate:-13,transformPerspective:1200}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:getLocalizedValue(\"v17\",activeLocale)??\"im single hat\",fit:\"fill\",intrinsicHeight:110,intrinsicWidth:261,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1244+60+0+0+0+7+590-264),pixelHeight:2700,pixelWidth:2250,sizes:\"198px\",src:\"https://framerusercontent.com/images/QSt398WpVF4H5MD9V7wLhMzoM.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/QSt398WpVF4H5MD9V7wLhMzoM.png?scale-down-to=1024 853w,https://framerusercontent.com/images/QSt398WpVF4H5MD9V7wLhMzoM.png?scale-down-to=2048 1706w,https://framerusercontent.com/images/QSt398WpVF4H5MD9V7wLhMzoM.png 2250w\"},className:\"framer-rbq84t\",\"data-framer-name\":\"Hero Image Card\",style:{rotate:-5,transformPerspective:1200}})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iXBbiMK8f:{background:{alt:getLocalizedValue(\"v18\",activeLocale)??\"comments\",fit:\"fit\",intrinsicHeight:220,intrinsicWidth:496,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1166+40+0+0+0+7+-.3238),pixelHeight:735,pixelWidth:339,positionX:\"center\",positionY:\"center\",sizes:\"203.6337px\",src:\"https://framerusercontent.com/images/Qo7na2FKX14Yo45cTSl3Nmgi0.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Qo7na2FKX14Yo45cTSl3Nmgi0.png 339w\"}},Sf8KrhhQp:{__framer__enter:animation16,background:{alt:getLocalizedValue(\"v18\",activeLocale)??\"comments\",fit:\"fit\",intrinsicHeight:220,intrinsicWidth:496,pixelHeight:735,pixelWidth:339,positionX:\"center\",positionY:\"center\",sizes:`calc((min(max(${componentViewport?.width||\"100vw\"}, 1px), 720px) - 64px) / 2 - 135px)`,src:\"https://framerusercontent.com/images/Qo7na2FKX14Yo45cTSl3Nmgi0.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Qo7na2FKX14Yo45cTSl3Nmgi0.png 339w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:getLocalizedValue(\"v18\",activeLocale)??\"comments\",fit:\"fit\",intrinsicHeight:220,intrinsicWidth:496,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1244+60+0+0+0+7+-49),pixelHeight:735,pixelWidth:339,positionX:\"center\",positionY:\"center\",sizes:\"204px\",src:\"https://framerusercontent.com/images/Qo7na2FKX14Yo45cTSl3Nmgi0.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Qo7na2FKX14Yo45cTSl3Nmgi0.png 339w\"},className:\"framer-o44fzr hidden-rt9vwd\",\"data-framer-name\":\"Hero Image Card\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iXBbiMK8f:{background:{alt:getLocalizedValue(\"v19\",activeLocale)??\"mario mirante shirt\",fit:\"fill\",intrinsicHeight:220,intrinsicWidth:496,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1166+40+0+0+0+7+5.9),pixelHeight:1620,pixelWidth:1350,sizes:\"139.6091px\",src:\"https://framerusercontent.com/images/ry40cs10s4vLNK44meJ9JZacyY.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/ry40cs10s4vLNK44meJ9JZacyY.png?scale-down-to=1024 853w,https://framerusercontent.com/images/ry40cs10s4vLNK44meJ9JZacyY.png 1350w\"}},QmdGmfFMf:{background:{alt:getLocalizedValue(\"v19\",activeLocale)??\"mario mirante shirt\",fit:\"fill\",intrinsicHeight:220,intrinsicWidth:496,pixelHeight:1620,pixelWidth:1350,sizes:`calc(min(min(max(${componentViewport?.width||\"100vw\"}, 1px), 524px) - 40px, 400px) / 2.8)`,src:\"https://framerusercontent.com/images/ry40cs10s4vLNK44meJ9JZacyY.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/ry40cs10s4vLNK44meJ9JZacyY.png?scale-down-to=1024 853w,https://framerusercontent.com/images/ry40cs10s4vLNK44meJ9JZacyY.png 1350w\"},transformTemplate:transformTemplate1},Sf8KrhhQp:{background:{alt:getLocalizedValue(\"v19\",activeLocale)??\"mario mirante shirt\",fit:\"fill\",intrinsicHeight:220,intrinsicWidth:496,pixelHeight:1620,pixelWidth:1350,sizes:`calc((min(max(${componentViewport?.width||\"100vw\"}, 1px), 720px) - 64px) / 2 - 172px)`,src:\"https://framerusercontent.com/images/ry40cs10s4vLNK44meJ9JZacyY.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/ry40cs10s4vLNK44meJ9JZacyY.png?scale-down-to=1024 853w,https://framerusercontent.com/images/ry40cs10s4vLNK44meJ9JZacyY.png 1350w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation17,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:getLocalizedValue(\"v19\",activeLocale)??\"mario mirante shirt\",fit:\"fill\",intrinsicHeight:220,intrinsicWidth:496,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1244+60+0+0+0+7+-19),pixelHeight:1620,pixelWidth:1350,sizes:\"195px\",src:\"https://framerusercontent.com/images/ry40cs10s4vLNK44meJ9JZacyY.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/ry40cs10s4vLNK44meJ9JZacyY.png?scale-down-to=1024 853w,https://framerusercontent.com/images/ry40cs10s4vLNK44meJ9JZacyY.png 1350w\"},className:\"framer-11gim4k\",\"data-framer-name\":\"Hero Image Card\",style:{rotate:10,transformPerspective:1200}})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Sf8KrhhQp:{__framer__animate:{transition:transition6},__framer__enter:animation19}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation18,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-10gohr6\",\"data-border\":true,\"data-framer-name\":\"Cap Sold\",children:/*#__PURE__*/_jsxs(\"div\",{background:{alt:\"\",fit:\"fill\"},className:\"framer-10n2x5n\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-kgi2qr\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1naapbv-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"tvQDSWaFZ\",scopeId:\"jpwn_a0xU\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iXBbiMK8f:{textSize:26},QmdGmfFMf:{textSize:29},Sf8KrhhQp:{textSize:26}},children:/*#__PURE__*/_jsx(Counter,{decimalSeparatorType:\"none\",end:1600,gapSize:0,height:\"100%\",id:\"tvQDSWaFZ\",incrementType:\"integer\",layoutId:\"tvQDSWaFZ\",loop:false,prefixColor:\"rgb(0, 0, 0)\",prefixFont:{fontFamily:'\"Poppins\", \"Poppins Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:400},prefixText:\"\",restartOnViewport:false,selectedFont:{fontFamily:'\"Poppins\", \"Poppins Placeholder\", sans-serif',fontFeatureSettings:\"normal\",fontStyle:\"normal\",fontWeight:700},speed:1,start:866,startOnViewport:true,suffixColor:\"rgb(171, 171, 171)\",suffixFont:{fontFamily:'\"Poppins\", \"Poppins Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:700},suffixText:\"\",textColor:\"rgb(29, 29, 29)\",textSize:36,width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1d71ke0\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v20\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1xrl0nq\",\"data-styles-preset\":\"qQJQiGyoq\",children:\"HATS SOLD\"})}),className:\"framer-16x83hr\",\"data-framer-name\":\"SOLD\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation20,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-86ms1\",\"data-border\":true,\"data-framer-name\":\"hoodie sold\",children:/*#__PURE__*/_jsxs(\"div\",{background:{alt:\"\",fit:\"fill\"},className:\"framer-cpxb2j\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-tjqkrs\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ezena4-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"aSRQs9BLg\",scopeId:\"jpwn_a0xU\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iXBbiMK8f:{textSize:26},QmdGmfFMf:{textSize:29},Sf8KrhhQp:{textSize:26}},children:/*#__PURE__*/_jsx(Counter,{decimalSeparatorType:\"none\",end:1e3,gapSize:0,height:\"100%\",id:\"aSRQs9BLg\",incrementType:\"integer\",layoutId:\"aSRQs9BLg\",loop:false,prefixColor:\"rgb(0, 0, 0)\",prefixFont:{fontFamily:'\"Poppins\", \"Poppins Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:400},prefixText:\"+\",restartOnViewport:false,selectedFont:{fontFamily:'\"Poppins\", \"Poppins Placeholder\", sans-serif',fontFeatureSettings:\"normal\",fontStyle:\"normal\",fontWeight:700},speed:1,start:512,startOnViewport:true,suffixColor:\"rgb(171, 171, 171)\",suffixFont:{fontFamily:'\"Poppins\", \"Poppins Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:700},suffixText:\"\",textColor:\"rgb(29, 29, 29)\",textSize:36,width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xggn2m\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v21\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1xrl0nq\",\"data-styles-preset\":\"qQJQiGyoq\",children:\"HOODIES SOLD\"})}),className:\"framer-lpt7wc\",\"data-framer-name\":\"SOLD\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iXBbiMK8f:{height:223,y:(componentViewport?.y||0)+0+1850},QmdGmfFMf:{y:undefined},Sf8KrhhQp:{height:225,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:264,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+1958,children:/*#__PURE__*/_jsx(Container,{className:\"framer-13ul8v6-container\",nodeId:\"PCm9FJ81z\",scopeId:\"jpwn_a0xU\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QmdGmfFMf:{variant:\"Gl0Bcv8km\"},Sf8KrhhQp:{variant:\"M5xtW0_nt\"}},children:/*#__PURE__*/_jsx(CarouselImages,{gdcaEkw5m:addImageAlt({src:\"https://framerusercontent.com/images/LtT1qr6cml5Hn7AOkRYuaUKOrao.jpg\",srcSet:\"https://framerusercontent.com/images/LtT1qr6cml5Hn7AOkRYuaUKOrao.jpg?scale-down-to=1024 853w,https://framerusercontent.com/images/LtT1qr6cml5Hn7AOkRYuaUKOrao.jpg 1200w\"},\"creator mug\"),HAOADIUEq:addImageAlt({src:\"https://framerusercontent.com/images/QbDoSqc3xpTxLUyJfHQnZmA.jpg\",srcSet:\"https://framerusercontent.com/images/QbDoSqc3xpTxLUyJfHQnZmA.jpg 600w\"},\"old style shirt\"),height:\"100%\",id:\"PCm9FJ81z\",layoutId:\"PCm9FJ81z\",n60LQfV0K:addImageAlt({src:\"https://framerusercontent.com/images/VdhToPNVhO51jkT63eME6x0sY.jpg\",srcSet:\"https://framerusercontent.com/images/VdhToPNVhO51jkT63eME6x0sY.jpg?scale-down-to=1024 916w,https://framerusercontent.com/images/VdhToPNVhO51jkT63eME6x0sY.jpg 1700w\"},\"korean notebook\"),nGES9VZPm:addImageAlt({src:\"https://framerusercontent.com/images/w1zflaN4vAlfx1RFQRogT5pTff4.jpg\",srcSet:\"https://framerusercontent.com/images/w1zflaN4vAlfx1RFQRogT5pTff4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/w1zflaN4vAlfx1RFQRogT5pTff4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/w1zflaN4vAlfx1RFQRogT5pTff4.jpg 2000w\"},\"hello traveller mug\"),nKoL1MOJZ:addImageAlt({src:\"https://framerusercontent.com/images/GN6J6p5Sba5B2PToiWkiPDYxY.png\",srcSet:\"https://framerusercontent.com/images/GN6J6p5Sba5B2PToiWkiPDYxY.png?scale-down-to=1024 853w,https://framerusercontent.com/images/GN6J6p5Sba5B2PToiWkiPDYxY.png 1350w\"},\"live laugh leave shirt\"),style:{height:\"100%\",width:\"100%\"},TiXrjFTDY:addImageAlt({src:\"https://framerusercontent.com/images/7EG8GUFj59JYQ5t7Y4s0AC3bUA.jpg\",srcSet:\"https://framerusercontent.com/images/7EG8GUFj59JYQ5t7Y4s0AC3bUA.jpg?scale-down-to=1024 853w,https://framerusercontent.com/images/7EG8GUFj59JYQ5t7Y4s0AC3bUA.jpg 1200w\"},\"gaming shirt\"),TsoLcK3kw:addImageAlt({src:\"https://framerusercontent.com/images/B1hxELhZj6KZfD7AqY3YbmlNWww.jpg\",srcSet:\"https://framerusercontent.com/images/B1hxELhZj6KZfD7AqY3YbmlNWww.jpg 600w\"},\"car shirt\"),uJCMmf_jD:addImageAlt({src:\"https://framerusercontent.com/images/qe8KlzZ67KdzhD76qOJKIY2nbzc.jpg\",srcSet:\"https://framerusercontent.com/images/qe8KlzZ67KdzhD76qOJKIY2nbzc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/qe8KlzZ67KdzhD76qOJKIY2nbzc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/qe8KlzZ67KdzhD76qOJKIY2nbzc.jpg 2000w\"},\"food blanket\"),variant:\"bfPpBDoiP\",w1cGcZOOu:addImageAlt({src:\"https://framerusercontent.com/images/Hx8PDJgRIAUxLWkY0VaG3r7pA.png\",srcSet:\"https://framerusercontent.com/images/Hx8PDJgRIAUxLWkY0VaG3r7pA.png?scale-down-to=1024 853w,https://framerusercontent.com/images/Hx8PDJgRIAUxLWkY0VaG3r7pA.png 1200w\"},\"scary hoodie\"),wHy7feqW5:addImageAlt({src:\"https://framerusercontent.com/images/y2py0qHnvJ5PVz3gKvKrTGke8.png\",srcSet:\"https://framerusercontent.com/images/y2py0qHnvJ5PVz3gKvKrTGke8.png?scale-down-to=512 512w,https://framerusercontent.com/images/y2py0qHnvJ5PVz3gKvKrTGke8.png 540w\"},\"phone case winter\"),width:\"100%\",wYseThRYq:addImageAlt({src:\"https://framerusercontent.com/images/Al6t5itTgyCBbkDnCsY8PtruEU.png\",srcSet:\"https://framerusercontent.com/images/Al6t5itTgyCBbkDnCsY8PtruEU.png?scale-down-to=1024 853w,https://framerusercontent.com/images/Al6t5itTgyCBbkDnCsY8PtruEU.png?scale-down-to=2048 1706w,https://framerusercontent.com/images/Al6t5itTgyCBbkDnCsY8PtruEU.png 2250w\"},\"im single hat\"),yvxTKwYSi:addImageAlt({src:\"https://framerusercontent.com/images/CGIeHAhkFn4qEvhu1etXD4C352E.jpg\",srcSet:\"https://framerusercontent.com/images/CGIeHAhkFn4qEvhu1etXD4C352E.jpg?scale-down-to=1024 853w,https://framerusercontent.com/images/CGIeHAhkFn4qEvhu1etXD4C352E.jpg?scale-down-to=2048 1706w,https://framerusercontent.com/images/CGIeHAhkFn4qEvhu1etXD4C352E.jpg?scale-down-to=4096 3413w,https://framerusercontent.com/images/CGIeHAhkFn4qEvhu1etXD4C352E.jpg 4500w\"},\"creator shirt\")})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1efw8hy\",\"data-framer-name\":\"Monetize Audience\",id:elementId2,ref:ref3,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-bisqe2\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1abdqsd\",\"data-framer-name\":\"Content Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pwkjwp\",\"data-framer-name\":\"Content Image Block\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iXBbiMK8f:{background:{alt:\"Tiktok of a creator with his products\",fit:\"fit\",intrinsicHeight:1306,intrinsicWidth:1108,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2073+40+0+0+131+22),pixelHeight:1199,pixelWidth:653,positionX:\"center\",positionY:\"center\",sizes:`calc((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1000px) - 80px) * 0.3611)`,src:\"https://framerusercontent.com/images/j4MwIESZw9aKNI7h61FsG092g.png\",srcSet:\"https://framerusercontent.com/images/j4MwIESZw9aKNI7h61FsG092g.png?scale-down-to=1024 557w,https://framerusercontent.com/images/j4MwIESZw9aKNI7h61FsG092g.png 653w\"}},QmdGmfFMf:{background:{alt:\"Tiktok of a creator with his products\",fit:\"fit\",intrinsicHeight:1306,intrinsicWidth:1108,pixelHeight:1199,pixelWidth:653,positionX:\"center\",positionY:\"center\",sizes:`calc(min(min(max(${componentViewport?.width||\"100vw\"}, 1px), 524px) - 40px, 400px) * 0.7865)`,src:\"https://framerusercontent.com/images/j4MwIESZw9aKNI7h61FsG092g.png\",srcSet:\"https://framerusercontent.com/images/j4MwIESZw9aKNI7h61FsG092g.png?scale-down-to=1024 557w,https://framerusercontent.com/images/j4MwIESZw9aKNI7h61FsG092g.png 653w\"}},Sf8KrhhQp:{__framer__styleAppearEffectEnabled:undefined,background:{alt:\"Tiktok of a creator with his products\",fit:\"fit\",intrinsicHeight:1306,intrinsicWidth:1108,pixelHeight:1199,pixelWidth:653,positionX:\"center\",positionY:\"center\",sizes:`calc((min(max(${componentViewport?.width||\"100vw\"}, 1px), 720px) - 64px) / 2 - 23px)`,src:\"https://framerusercontent.com/images/j4MwIESZw9aKNI7h61FsG092g.png\",srcSet:\"https://framerusercontent.com/images/j4MwIESZw9aKNI7h61FsG092g.png?scale-down-to=1024 557w,https://framerusercontent.com/images/j4MwIESZw9aKNI7h61FsG092g.png 653w\"},style:{},transformTemplate:undefined}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"Tiktok of a creator with his products\",fit:\"fit\",intrinsicHeight:1306,intrinsicWidth:1108,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2222+80+0+0+18.5+26.5),pixelHeight:1199,pixelWidth:653,positionX:\"center\",positionY:\"center\",sizes:\"491px\",src:\"https://framerusercontent.com/images/j4MwIESZw9aKNI7h61FsG092g.png\",srcSet:\"https://framerusercontent.com/images/j4MwIESZw9aKNI7h61FsG092g.png?scale-down-to=1024 557w,https://framerusercontent.com/images/j4MwIESZw9aKNI7h61FsG092g.png 653w\"},className:\"framer-11xmoz4\",\"data-framer-name\":\"Content Image\",style:{transformPerspective:1200},transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iXBbiMK8f:{__framer__enter:animation23,__framer__loop:animation24,background:{alt:\"youtube logo\",fit:\"fit\",intrinsicHeight:1306,intrinsicWidth:1108,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2073+40+0+0+131+9),pixelHeight:2500,pixelWidth:2500,positionX:\"center\",positionY:\"center\",sizes:\"38px\",src:\"https://framerusercontent.com/images/uDMHOC3OOZ35w8EpqYkty8Li4.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/uDMHOC3OOZ35w8EpqYkty8Li4.png?scale-down-to=512 512w,https://framerusercontent.com/images/uDMHOC3OOZ35w8EpqYkty8Li4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/uDMHOC3OOZ35w8EpqYkty8Li4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/uDMHOC3OOZ35w8EpqYkty8Li4.png 2500w\"}},QmdGmfFMf:{__framer__enter:animation27,__framer__loop:animation28,background:{alt:\"youtube logo\",fit:\"fit\",intrinsicHeight:1306,intrinsicWidth:1108,pixelHeight:2500,pixelWidth:2500,positionX:\"center\",positionY:\"center\",sizes:\"43px\",src:\"https://framerusercontent.com/images/uDMHOC3OOZ35w8EpqYkty8Li4.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/uDMHOC3OOZ35w8EpqYkty8Li4.png?scale-down-to=512 512w,https://framerusercontent.com/images/uDMHOC3OOZ35w8EpqYkty8Li4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/uDMHOC3OOZ35w8EpqYkty8Li4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/uDMHOC3OOZ35w8EpqYkty8Li4.png 2500w\"}},Sf8KrhhQp:{__framer__enter:animation25,__framer__loop:animation26,background:{alt:\"youtube logo\",fit:\"fit\",intrinsicHeight:1306,intrinsicWidth:1108,pixelHeight:2500,pixelWidth:2500,positionX:\"center\",positionY:\"center\",sizes:`calc((min(max(${componentViewport?.width||\"100vw\"}, 1px), 720px) - 64px) / 2 - 286px)`,src:\"https://framerusercontent.com/images/uDMHOC3OOZ35w8EpqYkty8Li4.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/uDMHOC3OOZ35w8EpqYkty8Li4.png?scale-down-to=512 512w,https://framerusercontent.com/images/uDMHOC3OOZ35w8EpqYkty8Li4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/uDMHOC3OOZ35w8EpqYkty8Li4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/uDMHOC3OOZ35w8EpqYkty8Li4.png 2500w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation21,__framer__loop:animation22,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:.4,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"youtube logo\",fit:\"fit\",intrinsicHeight:1306,intrinsicWidth:1108,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2222+80+0+0+18.5+220),pixelHeight:2500,pixelWidth:2500,positionX:\"center\",positionY:\"center\",sizes:\"70px\",src:\"https://framerusercontent.com/images/uDMHOC3OOZ35w8EpqYkty8Li4.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/uDMHOC3OOZ35w8EpqYkty8Li4.png?scale-down-to=512 512w,https://framerusercontent.com/images/uDMHOC3OOZ35w8EpqYkty8Li4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/uDMHOC3OOZ35w8EpqYkty8Li4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/uDMHOC3OOZ35w8EpqYkty8Li4.png 2500w\"},className:\"framer-1kgvo5f\",\"data-framer-name\":\"Content Image\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iXBbiMK8f:{__framer__enter:animation30,background:{alt:\"im single hat\",fit:\"fit\",intrinsicHeight:1306,intrinsicWidth:1108,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2073+40+0+0+131+47.5),pixelHeight:479,pixelWidth:513,positionX:\"center\",positionY:\"center\",sizes:\"140px\",src:\"https://framerusercontent.com/images/fGjmjI5uP1MQ0Swbm75KL3OgDuw.png\",srcSet:\"https://framerusercontent.com/images/fGjmjI5uP1MQ0Swbm75KL3OgDuw.png?scale-down-to=512 512w,https://framerusercontent.com/images/fGjmjI5uP1MQ0Swbm75KL3OgDuw.png 513w\"}},QmdGmfFMf:{__framer__enter:animation32,background:{alt:\"im single hat\",fit:\"fit\",intrinsicHeight:1306,intrinsicWidth:1108,pixelHeight:479,pixelWidth:513,positionX:\"center\",positionY:\"center\",sizes:\"115px\",src:\"https://framerusercontent.com/images/fGjmjI5uP1MQ0Swbm75KL3OgDuw.png\",srcSet:\"https://framerusercontent.com/images/fGjmjI5uP1MQ0Swbm75KL3OgDuw.png?scale-down-to=512 512w,https://framerusercontent.com/images/fGjmjI5uP1MQ0Swbm75KL3OgDuw.png 513w\"}},Sf8KrhhQp:{__framer__enter:animation31,background:{alt:\"im single hat\",fit:\"fit\",intrinsicHeight:1306,intrinsicWidth:1108,pixelHeight:479,pixelWidth:513,positionX:\"center\",positionY:\"center\",sizes:`calc((min(max(${componentViewport?.width||\"100vw\"}, 1px), 720px) - 64px) / 2 - 193px)`,src:\"https://framerusercontent.com/images/fGjmjI5uP1MQ0Swbm75KL3OgDuw.png\",srcSet:\"https://framerusercontent.com/images/fGjmjI5uP1MQ0Swbm75KL3OgDuw.png?scale-down-to=512 512w,https://framerusercontent.com/images/fGjmjI5uP1MQ0Swbm75KL3OgDuw.png 513w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation29,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"im single hat\",fit:\"fit\",intrinsicHeight:1306,intrinsicWidth:1108,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2222+80+0+0+18.5+83.5),pixelHeight:479,pixelWidth:513,positionX:\"center\",positionY:\"center\",sizes:\"186px\",src:\"https://framerusercontent.com/images/fGjmjI5uP1MQ0Swbm75KL3OgDuw.png\",srcSet:\"https://framerusercontent.com/images/fGjmjI5uP1MQ0Swbm75KL3OgDuw.png?scale-down-to=512 512w,https://framerusercontent.com/images/fGjmjI5uP1MQ0Swbm75KL3OgDuw.png 513w\"},className:\"framer-j3af4m\",\"data-framer-name\":\"Content Image\",style:{rotate:8,transformPerspective:1200}})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iXBbiMK8f:{background:{alt:\"im funny hoodie\",fit:\"fit\",intrinsicHeight:1306,intrinsicWidth:1108,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2073+40+0+0+131+177.5),pixelHeight:583,pixelWidth:513,positionX:\"center\",positionY:\"center\",sizes:\"204px\",src:\"https://framerusercontent.com/images/HwiefmQE3OSnOINYDBAonva4hI.png\",srcSet:\"https://framerusercontent.com/images/HwiefmQE3OSnOINYDBAonva4hI.png 513w\"}},QmdGmfFMf:{__framer__enter:animation35,background:{alt:\"im funny hoodie\",fit:\"fit\",intrinsicHeight:1306,intrinsicWidth:1108,pixelHeight:583,pixelWidth:513,positionX:\"center\",positionY:\"center\",sizes:\"168px\",src:\"https://framerusercontent.com/images/HwiefmQE3OSnOINYDBAonva4hI.png\",srcSet:\"https://framerusercontent.com/images/HwiefmQE3OSnOINYDBAonva4hI.png 513w\"}},Sf8KrhhQp:{__framer__enter:animation34,background:{alt:\"im funny hoodie\",fit:\"fit\",intrinsicHeight:1306,intrinsicWidth:1108,pixelHeight:583,pixelWidth:513,positionX:\"center\",positionY:\"center\",sizes:`calc((min(max(${componentViewport?.width||\"100vw\"}, 1px), 720px) - 64px) / 2 - 164px)`,src:\"https://framerusercontent.com/images/HwiefmQE3OSnOINYDBAonva4hI.png\",srcSet:\"https://framerusercontent.com/images/HwiefmQE3OSnOINYDBAonva4hI.png 513w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation33,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"im funny hoodie\",fit:\"fit\",intrinsicHeight:1306,intrinsicWidth:1108,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2222+80+0+0+18.5+279.5),pixelHeight:583,pixelWidth:513,positionX:\"center\",positionY:\"center\",sizes:\"256px\",src:\"https://framerusercontent.com/images/HwiefmQE3OSnOINYDBAonva4hI.png\",srcSet:\"https://framerusercontent.com/images/HwiefmQE3OSnOINYDBAonva4hI.png 513w\"},className:\"framer-qpu9ax\",\"data-framer-name\":\"Content Image\",style:{rotate:14,transformPerspective:1200}})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QmdGmfFMf:{__framer__enter:animation36}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation20,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1g3mjhq\",\"data-border\":true,\"data-framer-name\":\"earnings\",children:/*#__PURE__*/_jsxs(\"div\",{background:{alt:\"\",fit:\"fill\"},className:\"framer-1mbr4v4\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17t5bkx\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iXBbiMK8f:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2073+40+0+0+131+-3+2+13+1.45),pixelHeight:150,pixelWidth:150,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/VTjdVNUzwH776mD3KwE4PYQwa50.svg\"}},QmdGmfFMf:{background:{alt:\"\",fit:\"fit\",pixelHeight:150,pixelWidth:150,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/VTjdVNUzwH776mD3KwE4PYQwa50.svg\"}},Sf8KrhhQp:{background:{alt:\"\",fit:\"fit\",pixelHeight:150,pixelWidth:150,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/VTjdVNUzwH776mD3KwE4PYQwa50.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2222+80+0+0+18.5+0+2+13+1.45),pixelHeight:150,pixelWidth:150,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/VTjdVNUzwH776mD3KwE4PYQwa50.svg\"},className:\"framer-10moj2h\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QmdGmfFMf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-99ddd8b5-423c-4cfa-8a5b-d15536b7abed, rgb(29, 29, 29))\"},children:\"Earnings\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-99ddd8b5-423c-4cfa-8a5b-d15536b7abed, rgb(29, 29, 29))\"},children:\"Earnings\"})}),className:\"framer-3yh9b8\",fonts:[\"GF;Poppins-500\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-i6j0tr\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1i57pci-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"fwdiWjOG2\",scopeId:\"jpwn_a0xU\",children:/*#__PURE__*/_jsx(Animator,{animate:true,endCircle:true,from:0,height:\"100%\",id:\"fwdiWjOG2\",layoutId:\"fwdiWjOG2\",loopOptions:\"reverse\",pathAnimation:{delay:0,duration:2,ease:[.44,0,.56,1],type:\"tween\"},shouldLoop:true,slots:[/*#__PURE__*/_jsx(SVG,{className:\"framer-roa2w0\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 163 156\"><path d=\"M 2 154 L 28.334 123.102 L 55.166 98.682 L 81.5 104.164 L 107.834 42.367 L 134.666 46.354 L 161 2\" fill=\"transparent\" stroke-width=\"3\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:10801226515,withExternalLayout:true})],style:{height:\"100%\",width:\"100%\"},to:100,width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-52i6y0\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-lpnvoi\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 147 2\"><path d=\"M 0.5 0.5 L 146.5 0.5\" fill=\"transparent\" stroke=\"var(--token-839c5a9c-a7c0-464c-9fa3-3e82cbd9eb76, rgb(140, 140, 140)) /* {&quot;name&quot;:&quot;Gray-600&quot;} */\"></path></svg>',svgContentId:10719174232,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-uu0jx5\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 148 3\"><path d=\"M 1 1 L 147 1\" fill=\"transparent\" stroke=\"var(--token-839c5a9c-a7c0-464c-9fa3-3e82cbd9eb76, rgb(140, 140, 140)) /* {&quot;name&quot;:&quot;Gray-600&quot;} */\"></path></svg>',svgContentId:12681733087,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1j9dyme\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 148 3\"><path d=\"M 1 1 L 147 1\" fill=\"transparent\" stroke=\"var(--token-839c5a9c-a7c0-464c-9fa3-3e82cbd9eb76, rgb(140, 140, 140)) /* {&quot;name&quot;:&quot;Gray-600&quot;} */\"></path></svg>',svgContentId:12681733087,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-s4kqmh\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 148 3\"><path d=\"M 1 1 L 147 1\" fill=\"transparent\" stroke=\"var(--token-839c5a9c-a7c0-464c-9fa3-3e82cbd9eb76, rgb(140, 140, 140)) /* {&quot;name&quot;:&quot;Gray-600&quot;} */\"></path></svg>',svgContentId:12681733087,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1unzmtk\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 148 3\"><path d=\"M 1 1 L 147 1\" fill=\"transparent\" stroke=\"var(--token-839c5a9c-a7c0-464c-9fa3-3e82cbd9eb76, rgb(140, 140, 140)) /* {&quot;name&quot;:&quot;Gray-600&quot;} */\"></path></svg>',svgContentId:12681733087,withExternalLayout:true})]})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iXBbiMK8f:{style:{scale:.8},transformTemplate:transformTemplate1},QmdGmfFMf:{style:{scale:.9}},Sf8KrhhQp:{__framer__enter:animation37,style:{scale:.7}}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation18,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-cdvfhc\",\"data-border\":true,\"data-framer-name\":\"audience\",children:/*#__PURE__*/_jsxs(\"div\",{background:{alt:\"\",fit:\"fill\"},className:\"framer-10cnt2j\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-j75xm8\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iXBbiMK8f:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2073+40+0+0+131+294.2868+2+13+1.45),pixelHeight:150,pixelWidth:150,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/I1APlnlB8FrsDPkjGJxTw7fg.svg\"}},QmdGmfFMf:{background:{alt:\"\",fit:\"fit\",pixelHeight:150,pixelWidth:150,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/I1APlnlB8FrsDPkjGJxTw7fg.svg\"}},Sf8KrhhQp:{background:{alt:\"\",fit:\"fit\",pixelHeight:150,pixelWidth:150,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/I1APlnlB8FrsDPkjGJxTw7fg.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2222+80+0+0+18.5+483+2+13+1.45),pixelHeight:150,pixelWidth:150,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/I1APlnlB8FrsDPkjGJxTw7fg.svg\"},className:\"framer-1sz7buf\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-99ddd8b5-423c-4cfa-8a5b-d15536b7abed, rgb(29, 29, 29))\"},children:\"Audience\"})}),className:\"framer-xz28gs\",fonts:[\"GF;Poppins-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5xb0hv\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1k3oy5c\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 148 3\"><path d=\"M 1 1 L 147 1\" fill=\"transparent\" stroke=\"var(--token-839c5a9c-a7c0-464c-9fa3-3e82cbd9eb76, rgb(140, 140, 140)) /* {&quot;name&quot;:&quot;Gray-600&quot;} */\"></path></svg>',svgContentId:12681733087,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-s3oczd\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 148 3\"><path d=\"M 1 1 L 147 1\" fill=\"transparent\" stroke=\"var(--token-839c5a9c-a7c0-464c-9fa3-3e82cbd9eb76, rgb(140, 140, 140)) /* {&quot;name&quot;:&quot;Gray-600&quot;} */\"></path></svg>',svgContentId:12681733087,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-m4k5cl\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 148 3\"><path d=\"M 1 1 L 147 1\" fill=\"transparent\" stroke=\"var(--token-839c5a9c-a7c0-464c-9fa3-3e82cbd9eb76, rgb(140, 140, 140)) /* {&quot;name&quot;:&quot;Gray-600&quot;} */\"></path></svg>',svgContentId:12681733087,withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QmdGmfFMf:{style:{scale:.8}}},children:/*#__PURE__*/_jsx(Container,{className:\"framer-k2ozdq-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"V4zMEwvJg\",rendersWithMotion:true,scopeId:\"jpwn_a0xU\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(Animator,{animate:true,endCircle:true,from:0,height:\"100%\",id:\"V4zMEwvJg\",layoutId:\"V4zMEwvJg\",loopOptions:\"reverse\",pathAnimation:{delay:0,duration:2,ease:[.44,0,.56,1],type:\"tween\"},shouldLoop:true,slots:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1v1rvmo\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 129 80\"><path d=\"M 4.5 75.5 L 4.5 56 M 24.5 75.5 L 24.5 46 M 44.5 75.5 L 44.5 51 M 64.5 75.5 L 64.5 42 M 84.5 75.5 L 84.5 24.5 M 104.5 75.5 L 104.5 22 M 124.5 75.5 L 124.5 4.5\" fill=\"transparent\" stroke-width=\"8\" stroke=\"rgb(0, 0, 0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:12789663288,withExternalLayout:true})],style:{height:\"100%\",width:\"100%\"},to:100,width:\"100%\"})})})})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iXBbiMK8f:{background:{alt:\"tik tok logo\",fit:\"fit\",intrinsicHeight:1306,intrinsicWidth:1108,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2073+40+0+0+131+156.5),pixelHeight:640,pixelWidth:640,positionX:\"center\",positionY:\"center\",sizes:\"39px\",src:\"https://framerusercontent.com/images/sQfHoo0AdftsMRfAmgFfd1MM.png\",srcSet:\"https://framerusercontent.com/images/sQfHoo0AdftsMRfAmgFfd1MM.png?scale-down-to=512 512w,https://framerusercontent.com/images/sQfHoo0AdftsMRfAmgFfd1MM.png 640w\"}},QmdGmfFMf:{__framer__enter:animation41,background:{alt:\"tik tok logo\",fit:\"fit\",intrinsicHeight:1306,intrinsicWidth:1108,pixelHeight:640,pixelWidth:640,positionX:\"center\",positionY:\"center\",sizes:\"43px\",src:\"https://framerusercontent.com/images/sQfHoo0AdftsMRfAmgFfd1MM.png\",srcSet:\"https://framerusercontent.com/images/sQfHoo0AdftsMRfAmgFfd1MM.png?scale-down-to=512 512w,https://framerusercontent.com/images/sQfHoo0AdftsMRfAmgFfd1MM.png 640w\"}},Sf8KrhhQp:{__framer__enter:animation40,background:{alt:\"tik tok logo\",fit:\"fit\",intrinsicHeight:1306,intrinsicWidth:1108,pixelHeight:640,pixelWidth:640,positionX:\"center\",positionY:\"center\",sizes:`calc((min(max(${componentViewport?.width||\"100vw\"}, 1px), 720px) - 64px) / 2 - 286px)`,src:\"https://framerusercontent.com/images/sQfHoo0AdftsMRfAmgFfd1MM.png\",srcSet:\"https://framerusercontent.com/images/sQfHoo0AdftsMRfAmgFfd1MM.png?scale-down-to=512 512w,https://framerusercontent.com/images/sQfHoo0AdftsMRfAmgFfd1MM.png 640w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation38,__framer__loop:animation39,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:.4,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"tik tok logo\",fit:\"fit\",intrinsicHeight:1306,intrinsicWidth:1108,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2222+80+0+0+18.5+1),pixelHeight:640,pixelWidth:640,positionX:\"center\",positionY:\"center\",sizes:\"70px\",src:\"https://framerusercontent.com/images/sQfHoo0AdftsMRfAmgFfd1MM.png\",srcSet:\"https://framerusercontent.com/images/sQfHoo0AdftsMRfAmgFfd1MM.png?scale-down-to=512 512w,https://framerusercontent.com/images/sQfHoo0AdftsMRfAmgFfd1MM.png 640w\"},className:\"framer-cy1l59\",\"data-framer-name\":\"Content Image\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iXBbiMK8f:{__framer__enter:animation44,background:{alt:\"heart logo\",fit:\"fit\",intrinsicHeight:1306,intrinsicWidth:1108,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2073+40+0+0+131+89.5),pixelHeight:150,pixelWidth:174,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/wLcbKp3GnFmfxBTePduTktOGrCU.svg\"}},QmdGmfFMf:{__framer__enter:animation46,background:{alt:\"heart logo\",fit:\"fit\",intrinsicHeight:1306,intrinsicWidth:1108,pixelHeight:150,pixelWidth:174,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/wLcbKp3GnFmfxBTePduTktOGrCU.svg\"}},Sf8KrhhQp:{__framer__enter:animation45,background:{alt:\"heart logo\",fit:\"fit\",intrinsicHeight:1306,intrinsicWidth:1108,pixelHeight:150,pixelWidth:174,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/wLcbKp3GnFmfxBTePduTktOGrCU.svg\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation42,__framer__loop:animation43,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:.4,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"heart logo\",fit:\"fit\",intrinsicHeight:1306,intrinsicWidth:1108,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2222+80+0+0+18.5+-31),pixelHeight:150,pixelWidth:174,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/wLcbKp3GnFmfxBTePduTktOGrCU.svg\"},className:\"framer-t8o3st\",\"data-framer-name\":\"Content Image\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iXBbiMK8f:{background:{alt:\"twitch logo\",fit:\"fit\",intrinsicHeight:1306,intrinsicWidth:1108,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2073+40+0+0+131+228),pixelHeight:2047,pixelWidth:2048,positionX:\"center\",positionY:\"center\",sizes:\"38px\",src:\"https://framerusercontent.com/images/a7TFDs4AhRf2ydP4kLZmsFlN88g.png\",srcSet:\"https://framerusercontent.com/images/a7TFDs4AhRf2ydP4kLZmsFlN88g.png?scale-down-to=512 512w,https://framerusercontent.com/images/a7TFDs4AhRf2ydP4kLZmsFlN88g.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/a7TFDs4AhRf2ydP4kLZmsFlN88g.png 2048w\"}},QmdGmfFMf:{__framer__enter:animation49,__framer__loop:animation50,background:{alt:\"twitch logo\",fit:\"fit\",intrinsicHeight:1306,intrinsicWidth:1108,pixelHeight:2047,pixelWidth:2048,positionX:\"center\",positionY:\"center\",sizes:\"43px\",src:\"https://framerusercontent.com/images/a7TFDs4AhRf2ydP4kLZmsFlN88g.png\",srcSet:\"https://framerusercontent.com/images/a7TFDs4AhRf2ydP4kLZmsFlN88g.png?scale-down-to=512 512w,https://framerusercontent.com/images/a7TFDs4AhRf2ydP4kLZmsFlN88g.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/a7TFDs4AhRf2ydP4kLZmsFlN88g.png 2048w\"}},Sf8KrhhQp:{background:{alt:\"twitch logo\",fit:\"fit\",intrinsicHeight:1306,intrinsicWidth:1108,pixelHeight:2047,pixelWidth:2048,positionX:\"center\",positionY:\"center\",sizes:`calc((min(max(${componentViewport?.width||\"100vw\"}, 1px), 720px) - 64px) / 2 - 296px)`,src:\"https://framerusercontent.com/images/a7TFDs4AhRf2ydP4kLZmsFlN88g.png\",srcSet:\"https://framerusercontent.com/images/a7TFDs4AhRf2ydP4kLZmsFlN88g.png?scale-down-to=512 512w,https://framerusercontent.com/images/a7TFDs4AhRf2ydP4kLZmsFlN88g.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/a7TFDs4AhRf2ydP4kLZmsFlN88g.png 2048w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation47,__framer__loop:animation48,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:.4,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"twitch logo\",fit:\"fit\",intrinsicHeight:1306,intrinsicWidth:1108,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2222+80+0+0+18.5+355),pixelHeight:2047,pixelWidth:2048,positionX:\"center\",positionY:\"center\",sizes:\"62px\",src:\"https://framerusercontent.com/images/a7TFDs4AhRf2ydP4kLZmsFlN88g.png\",srcSet:\"https://framerusercontent.com/images/a7TFDs4AhRf2ydP4kLZmsFlN88g.png?scale-down-to=512 512w,https://framerusercontent.com/images/a7TFDs4AhRf2ydP4kLZmsFlN88g.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/a7TFDs4AhRf2ydP4kLZmsFlN88g.png 2048w\"},className:\"framer-1p5h2na\",\"data-framer-name\":\"Content Image\",style:{transformPerspective:1200}})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-cv473y\",\"data-framer-name\":\"Content Text Block Wrapper\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18f0kfp\",\"data-framer-name\":\"Content Text Block \",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iXBbiMK8f:{y:(componentViewport?.y||0)+0+2073+40+0+0+0+0+0+0+0},QmdGmfFMf:{y:undefined},Sf8KrhhQp:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+0+2222+80+0+0+0+0+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation51,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-r8k7tb-container\",nodeId:\"pMFCQ4x1N\",rendersWithMotion:true,scopeId:\"jpwn_a0xU\",style:{rotate:-3,transformPerspective:1200},children:/*#__PURE__*/_jsx(CommonBadge,{b_uLyMwqn:\"var(--token-a7f7ae5f-a181-442b-8823-be0ca1b170fe, rgb(255, 255, 255))\",D0zUKEhwN:\"rgb(29, 29, 29)\",hAoB8zBov:\"var(--token-9ba5ef01-90ed-4ba8-83db-bde0dc1a4e37, rgb(255, 255, 255))\",height:\"100%\",id:\"pMFCQ4x1N\",IUOgvXJOv:getLocalizedValue(\"v22\",activeLocale)??\"START NOW!\",K1TqcPldp:\"var(--token-a7f7ae5f-a181-442b-8823-be0ca1b170fe, rgb(255, 255, 255))\",layoutId:\"pMFCQ4x1N\",nPUJVxW_R:false,NrOZ0vBIU:false,PmVpq8Qyc:\"Sparkles\",UsSLJNk1N:\"Sparkles\",variant:\"hRvGxwSzk\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Sf8KrhhQp:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1bvjvhu\",\"data-framer-name\":\"Content Title Block \",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iXBbiMK8f:{children:getLocalizedValue(\"v24\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1ps8izp\",\"data-styles-preset\":\"jyGHLHurG\",children:\"Monetize your audience\"})})},QmdGmfFMf:{children:getLocalizedValue(\"v25\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1ps8izp\",\"data-styles-preset\":\"jyGHLHurG\",style:{\"--framer-text-alignment\":\"center\"},children:\"Monetize your audience\"})})},Sf8KrhhQp:{children:getLocalizedValue(\"v25\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1ps8izp\",\"data-styles-preset\":\"jyGHLHurG\",style:{\"--framer-text-alignment\":\"center\"},children:\"Monetize your audience\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v23\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1ps8izp\",\"data-styles-preset\":\"jyGHLHurG\",children:\"Monetize your audience\"})}),className:\"framer-15ik02v\",\"data-framer-name\":\"Content Title\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iXBbiMK8f:{children:getLocalizedValue(\"v27\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-132dc9h\",\"data-styles-preset\":\"U4q_q8nHt\",children:\"We\u2019ve got you covered! We create a store with products that genuinely resonate with your audience. \\u2028\\u2028\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-132dc9h\",\"data-styles-preset\":\"U4q_q8nHt\",children:\"Our all-in-one solution provides custom, state-of-the-art designs and seamless fulfillment, ready to sell. \\u2028\\u2028\\u2028\\u2028\"}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-132dc9h\",\"data-styles-preset\":\"U4q_q8nHt\",children:[\"Join a program designed to \",/*#__PURE__*/_jsx(\"strong\",{children:\"captivate, inspire, and build lasting connections with your community.\"})]})]})},QmdGmfFMf:{children:getLocalizedValue(\"v29\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-132dc9h\",\"data-styles-preset\":\"U4q_q8nHt\",style:{\"--framer-text-alignment\":\"center\"},children:\"We\u2019ve got you covered! We create a store with products that genuinely resonate with your audience. \\u2028\\u2028\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-132dc9h\",\"data-styles-preset\":\"U4q_q8nHt\",style:{\"--framer-text-alignment\":\"center\"},children:\"Our all-in-one solution provides custom, state-of-the-art designs and seamless fulfillment, ready to sell. \\u2028\\u2028\\u2028\\u2028\"}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-132dc9h\",\"data-styles-preset\":\"U4q_q8nHt\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Join a program designed to \",/*#__PURE__*/_jsx(\"strong\",{children:\"captivate, inspire, and build lasting connections with your community.\"})]})]})},Sf8KrhhQp:{__framer__styleAppearEffectEnabled:undefined,children:getLocalizedValue(\"v28\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-132dc9h\",\"data-styles-preset\":\"U4q_q8nHt\",style:{\"--framer-text-alignment\":\"center\"},children:\"We\u2019ve got you covered! We create a store with products that genuinely resonate with your audience. \\u2028\\u2028\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-132dc9h\",\"data-styles-preset\":\"U4q_q8nHt\",style:{\"--framer-text-alignment\":\"center\"},children:\"Our all-in-one solution provides custom, state-of-the-art designs and seamless fulfillment, ready to sell. \\u2028\\u2028\\u2028\\u2028\"}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-132dc9h\",\"data-styles-preset\":\"U4q_q8nHt\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Join a program designed to \",/*#__PURE__*/_jsx(\"strong\",{children:\"captivate, inspire, and build lasting connections with your community.\"})]})]}),style:{}}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v26\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-132dc9h\",\"data-styles-preset\":\"U4q_q8nHt\",children:\"We\u2019ve got you covered! We create a store with products that genuinely resonate with your audience. \\u2028\\u2028\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-132dc9h\",\"data-styles-preset\":\"U4q_q8nHt\",children:\"Our all-in-one solution provides custom, state-of-the-art designs and seamless fulfillment, ready to sell. \\u2028\\u2028\\u2028\\u2028\"}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-132dc9h\",\"data-styles-preset\":\"U4q_q8nHt\",children:[\"Join a program designed to \",/*#__PURE__*/_jsx(\"strong\",{children:\"captivate, inspire, and build lasting connections with your community.\"})]})]}),className:\"framer-4gwgy7\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\",\"Inter-Bold\"],style:{transformPerspective:1200},verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":fcBXrg7d3\",webPageId:\"jpwn_a0xU\"},implicitPathVariables:undefined},{href:{hash:\":fcBXrg7d3\",webPageId:\"jpwn_a0xU\"},implicitPathVariables:undefined},{href:{hash:\":fcBXrg7d3\",webPageId:\"jpwn_a0xU\"},implicitPathVariables:undefined},{href:{hash:\":fcBXrg7d3\",webPageId:\"jpwn_a0xU\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iXBbiMK8f:{y:(componentViewport?.y||0)+0+2073+40+0+0+0+0+0+0+586},QmdGmfFMf:{y:undefined},Sf8KrhhQp:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,y:(componentViewport?.y||0)+0+2222+80+0+0+0+0+0+0+586,children:/*#__PURE__*/_jsx(Container,{className:\"framer-108y4fr-container\",id:elementId3,nodeId:\"lDsizLMHM\",ref:ref4,scopeId:\"jpwn_a0xU\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iXBbiMK8f:{DnytOe0Z8:resolvedLinks2[1]},QmdGmfFMf:{DnytOe0Z8:resolvedLinks2[3]},Sf8KrhhQp:{DnytOe0Z8:resolvedLinks2[2]}},children:/*#__PURE__*/_jsx(ButtonMaster,{A2dWUqqQh:getLocalizedValue(\"v15\",activeLocale)??\"Contact Us\",DnytOe0Z8:resolvedLinks2[0],height:\"100%\",id:\"lDsizLMHM\",layoutId:\"lDsizLMHM\",oSfNN4wFr:false,v8ArQOg02:true,variant:\"EDnUIZMaX\",width:\"100%\"})})})})})})]})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8ir2cc\",\"data-framer-name\":\"Brand Section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-8pw3xu\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QmdGmfFMf:{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,style:{transformPerspective:1200}},Sf8KrhhQp:{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,style:{transformPerspective:1200}}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{className:\"framer-f5lccu\",\"data-framer-name\":\"Brand Content Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QmdGmfFMf:{__framer__styleAppearEffectEnabled:undefined,style:{}},Sf8KrhhQp:{__framer__animate:{transition:transition7}}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v30\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-ntbpcv\",\"data-styles-preset\":\"Ha6qpqrwo\",style:{\"--framer-text-alignment\":\"center\"},children:\"Our premium partners\"})}),className:\"framer-1ebm5n0\",\"data-framer-name\":\"Section Title\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-khv73l\",\"data-framer-name\":\"Brand Logo Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QmdGmfFMf:{__framer__styleAppearEffectEnabled:undefined,style:{}},Sf8KrhhQp:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation52,__framer__exit:animation53,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-oy6kmc\",\"data-framer-name\":\"Brand Single\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iXBbiMK8f:{background:{alt:\"stripe logo\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2799+40+0+0+0+76+0+0),pixelHeight:512,pixelWidth:512,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/2OYns8NLtVOxQeeTsM2rKuSJhG8.png\"}},QmdGmfFMf:{background:{alt:\"stripe logo\",fit:\"fit\",pixelHeight:512,pixelWidth:512,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/2OYns8NLtVOxQeeTsM2rKuSJhG8.png\"}},Sf8KrhhQp:{background:{alt:\"stripe logo\",fit:\"fit\",pixelHeight:512,pixelWidth:512,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/2OYns8NLtVOxQeeTsM2rKuSJhG8.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"stripe logo\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3028+50+0+0+0+76+0+0),pixelHeight:512,pixelWidth:512,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/2OYns8NLtVOxQeeTsM2rKuSJhG8.png\"},className:\"framer-72btub\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v31\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--token-784fadf2-d333-442e-8318-cdc7dc446fa4, rgb(84, 84, 84))\"},children:\"Stripe\"})}),className:\"framer-2s6v3q\",fonts:[\"GF;Poppins-700\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QmdGmfFMf:{__framer__styleAppearEffectEnabled:undefined,style:{}},Sf8KrhhQp:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation52,__framer__exit:animation53,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-12wngc1\",\"data-framer-name\":\"Brand Single\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iXBbiMK8f:{background:{alt:\"paypal logo\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2799+40+0+0+0+76+0+0),pixelHeight:2500,pixelWidth:2500,positionX:\"center\",positionY:\"center\",sizes:\"50px\",src:\"https://framerusercontent.com/images/n40kr8rCi3ivKlNHtoLiWLtO6I.jpg\",srcSet:\"https://framerusercontent.com/images/n40kr8rCi3ivKlNHtoLiWLtO6I.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/n40kr8rCi3ivKlNHtoLiWLtO6I.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/n40kr8rCi3ivKlNHtoLiWLtO6I.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/n40kr8rCi3ivKlNHtoLiWLtO6I.jpg 2500w\"}},QmdGmfFMf:{background:{alt:\"paypal logo\",fit:\"fit\",pixelHeight:2500,pixelWidth:2500,positionX:\"center\",positionY:\"center\",sizes:\"50px\",src:\"https://framerusercontent.com/images/n40kr8rCi3ivKlNHtoLiWLtO6I.jpg\",srcSet:\"https://framerusercontent.com/images/n40kr8rCi3ivKlNHtoLiWLtO6I.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/n40kr8rCi3ivKlNHtoLiWLtO6I.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/n40kr8rCi3ivKlNHtoLiWLtO6I.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/n40kr8rCi3ivKlNHtoLiWLtO6I.jpg 2500w\"}},Sf8KrhhQp:{background:{alt:\"paypal logo\",fit:\"fit\",pixelHeight:2500,pixelWidth:2500,positionX:\"center\",positionY:\"center\",sizes:\"50px\",src:\"https://framerusercontent.com/images/n40kr8rCi3ivKlNHtoLiWLtO6I.jpg\",srcSet:\"https://framerusercontent.com/images/n40kr8rCi3ivKlNHtoLiWLtO6I.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/n40kr8rCi3ivKlNHtoLiWLtO6I.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/n40kr8rCi3ivKlNHtoLiWLtO6I.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/n40kr8rCi3ivKlNHtoLiWLtO6I.jpg 2500w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"paypal logo\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3028+50+0+0+0+76+0+0),pixelHeight:2500,pixelWidth:2500,positionX:\"center\",positionY:\"center\",sizes:\"50px\",src:\"https://framerusercontent.com/images/n40kr8rCi3ivKlNHtoLiWLtO6I.jpg\",srcSet:\"https://framerusercontent.com/images/n40kr8rCi3ivKlNHtoLiWLtO6I.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/n40kr8rCi3ivKlNHtoLiWLtO6I.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/n40kr8rCi3ivKlNHtoLiWLtO6I.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/n40kr8rCi3ivKlNHtoLiWLtO6I.jpg 2500w\"},className:\"framer-1jb5dda\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v32\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--token-784fadf2-d333-442e-8318-cdc7dc446fa4, rgb(84, 84, 84))\"},children:\"PayPal\"})}),className:\"framer-1jxrpe9\",fonts:[\"GF;Poppins-700\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QmdGmfFMf:{__framer__styleAppearEffectEnabled:undefined,style:{}},Sf8KrhhQp:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation52,__framer__exit:animation53,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-wmuwn2\",\"data-framer-name\":\"Brand Single\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iXBbiMK8f:{background:{alt:\"printful logo\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2799+40+0+0+0+76+0+0),pixelHeight:450,pixelWidth:450,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/EmheMZhdC11JGRiMFPdyYxZkR3I.png\"}},QmdGmfFMf:{background:{alt:\"printful logo\",fit:\"fit\",pixelHeight:450,pixelWidth:450,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/EmheMZhdC11JGRiMFPdyYxZkR3I.png\"}},Sf8KrhhQp:{background:{alt:\"printful logo\",fit:\"fit\",pixelHeight:450,pixelWidth:450,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/EmheMZhdC11JGRiMFPdyYxZkR3I.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"printful logo\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3028+50+0+0+0+76+0+0),pixelHeight:450,pixelWidth:450,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/EmheMZhdC11JGRiMFPdyYxZkR3I.png\"},className:\"framer-pfsfre\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v33\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--token-784fadf2-d333-442e-8318-cdc7dc446fa4, rgb(84, 84, 84))\"},children:\"Printful\"})}),className:\"framer-17or8mo\",fonts:[\"GF;Poppins-700\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QmdGmfFMf:{__framer__styleAppearEffectEnabled:undefined,style:{}},Sf8KrhhQp:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation52,__framer__exit:animation53,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-41loi4\",\"data-framer-name\":\"Brand Single\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iXBbiMK8f:{background:{alt:\"shopify logo\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2799+40+0+0+0+76+0+0),pixelHeight:800,pixelWidth:800,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/0dSVn9gkk2bMkASiLYMB3KPbSA.svg\"}},QmdGmfFMf:{background:{alt:\"shopify logo\",fit:\"fit\",pixelHeight:800,pixelWidth:800,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/0dSVn9gkk2bMkASiLYMB3KPbSA.svg\"}},Sf8KrhhQp:{background:{alt:\"shopify logo\",fit:\"fit\",pixelHeight:800,pixelWidth:800,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/0dSVn9gkk2bMkASiLYMB3KPbSA.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"shopify logo\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3028+50+0+0+0+76+0+0),pixelHeight:800,pixelWidth:800,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/0dSVn9gkk2bMkASiLYMB3KPbSA.svg\"},className:\"framer-rr9vwd\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v34\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--token-784fadf2-d333-442e-8318-cdc7dc446fa4, rgb(84, 84, 84))\"},children:\"Shopify\"})}),className:\"framer-edw4rx\",fonts:[\"GF;Poppins-700\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})]})})})}),isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1l0azu1 hidden-9v2ybr hidden-rt9vwd\",\"data-framer-name\":\"How To\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1iygvlo\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-236l1r\",\"data-framer-name\":\"Section Heading Block\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v35\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1ps8izp\",\"data-styles-preset\":\"jyGHLHurG\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9ba5ef01-90ed-4ba8-83db-bde0dc1a4e37, rgb(255, 255, 255))\"},children:\"How We Do It:\"})}),className:\"framer-1i8rlhc\",\"data-framer-name\":\"Section Title\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v36\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-ebv8yi\",\"data-styles-preset\":\"YkjVZVE6N\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9ba5ef01-90ed-4ba8-83db-bde0dc1a4e37, rgb(255, 255, 255))\"},children:\"focus on creating, we handle the rest.\"})}),className:\"framer-1oblwkl\",\"data-framer-name\":\"Section Title\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rs03rg\",\"data-framer-name\":\"Feature Content Wrapper\",children:[isDisplayed4()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8t888w hidden-h3e42f\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iXBbiMK8f:{y:(componentViewport?.y||0)+0+3005+60+0+115+30+356+20}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:336,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ykd9k1-container\",nodeId:\"QFZgN7Jul\",scopeId:\"jpwn_a0xU\",children:/*#__PURE__*/_jsx(FeatureCard,{dIqLusgod:\"var(--token-9ba5ef01-90ed-4ba8-83db-bde0dc1a4e37, rgb(255, 255, 255))\",dnI2jWCoG:\"var(--token-9ba5ef01-90ed-4ba8-83db-bde0dc1a4e37, rgb(255, 255, 255))\",eAAKapzJj:addImageAlt({src:\"https://framerusercontent.com/images/gJD86MAfrRGgouf6e5Z2KxrUofk.png\"},\"Preview of different design styles in the ai and one selected\"),height:\"100%\",HmCwtpszc:getLocalizedValue(\"v38\",activeLocale)??\"We build fully customized stores, integrated with TikTok, YouTube & Instagram, optimizing every step. Get paid monthly through PayPal or Stripe.\",id:\"QFZgN7Jul\",layoutId:\"QFZgN7Jul\",ufxmdYg32:getLocalizedValue(\"v37\",activeLocale)??\"Branded Store Setup\",USVd0KBmR:\"20px 0px 0px 0px\",variant:\"zokZk7IpE\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iXBbiMK8f:{y:(componentViewport?.y||0)+0+3005+60+0+115+30+356+20}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:336,children:/*#__PURE__*/_jsx(Container,{className:\"framer-14776yf-container\",nodeId:\"yZfIiRubC\",scopeId:\"jpwn_a0xU\",children:/*#__PURE__*/_jsx(FeatureCard,{dIqLusgod:\"var(--token-9ba5ef01-90ed-4ba8-83db-bde0dc1a4e37, rgb(255, 255, 255))\",dnI2jWCoG:\"var(--token-9ba5ef01-90ed-4ba8-83db-bde0dc1a4e37, rgb(255, 255, 255))\",eAAKapzJj:addImageAlt({src:\"https://framerusercontent.com/images/QJXSc3LR8rXNMlLLXZxnntHZKy4.png\"},\"Generated design according to the prompt\"),height:\"100%\",HmCwtpszc:getLocalizedValue(\"v40\",activeLocale)??\"With top Print on Demand partners, we handle everything from production to delivery for a smooth, branded experience.\",id:\"yZfIiRubC\",layoutId:\"yZfIiRubC\",ufxmdYg32:getLocalizedValue(\"v39\",activeLocale)??\"Reliable Fulfillment\",USVd0KBmR:\"20px 0px 0px 0px\",variant:\"zokZk7IpE\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tmwymj\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iXBbiMK8f:{y:(componentViewport?.y||0)+0+3005+60+0+115+30+0+20}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:336,y:(componentViewport?.y||0)+0+3284+50+20+95+30+0+10,children:/*#__PURE__*/_jsx(Container,{className:\"framer-r5y7ij-container\",nodeId:\"t3vJg_Zca\",scopeId:\"jpwn_a0xU\",children:/*#__PURE__*/_jsx(FeatureCard,{dIqLusgod:\"var(--token-9ba5ef01-90ed-4ba8-83db-bde0dc1a4e37, rgb(255, 255, 255))\",dnI2jWCoG:\"var(--token-9ba5ef01-90ed-4ba8-83db-bde0dc1a4e37, rgb(255, 255, 255))\",eAAKapzJj:addImageAlt({src:\"https://framerusercontent.com/images/LaKxta0v3KoM8XyFp09csrvexkw.png\"},\"illustrator making a merch design\"),height:\"100%\",HmCwtpszc:getLocalizedValue(\"v42\",activeLocale)??\"We develop personalized strategies that boost engagement, loyalty, and sales, tailored to your style and audience.\",id:\"t3vJg_Zca\",layoutId:\"t3vJg_Zca\",ufxmdYg32:getLocalizedValue(\"v41\",activeLocale)??\"Content Proposals\",USVd0KBmR:\"20px 0px 0px 0px\",variant:\"zokZk7IpE\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iXBbiMK8f:{width:undefined,y:(componentViewport?.y||0)+0+3005+60+0+115+30+0+20}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:336,width:\"292px\",y:(componentViewport?.y||0)+0+3284+50+20+95+30+0+10,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mwx6pq-container\",id:\"1mwx6pq\",nodeId:\"wc0TIB3Gd\",scopeId:\"jpwn_a0xU\",children:/*#__PURE__*/_jsx(FeatureCard,{dIqLusgod:\"var(--token-9ba5ef01-90ed-4ba8-83db-bde0dc1a4e37, rgb(255, 255, 255))\",dnI2jWCoG:\"var(--token-9ba5ef01-90ed-4ba8-83db-bde0dc1a4e37, rgb(255, 255, 255))\",eAAKapzJj:addImageAlt({src:\"https://framerusercontent.com/images/2MVfbzlJPceI8pnzksGDr7MNbg.png\"},\"store of a creator on mobile\"),height:\"100%\",HmCwtpszc:getLocalizedValue(\"v44\",activeLocale)??\"Our in-house designers create trendy, art-inspired products that showcase your identity. Quality samples ensure perfection before launch.\",id:\"wc0TIB3Gd\",layoutId:\"wc0TIB3Gd\",style:{width:\"100%\"},ufxmdYg32:getLocalizedValue(\"v43\",activeLocale)??\"Custom Product Design\",USVd0KBmR:\"20px 0px 0px 0px\",variant:\"zokZk7IpE\",width:\"100%\"})})})}),isDisplayed5()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:336,width:\"292px\",y:(componentViewport?.y||0)+0+3284+50+20+95+30+0+10,children:/*#__PURE__*/_jsx(Container,{className:\"framer-m9ilwa-container hidden-41eq9c\",nodeId:\"JnCkCik92\",scopeId:\"jpwn_a0xU\",children:/*#__PURE__*/_jsx(FeatureCard,{dIqLusgod:\"var(--token-9ba5ef01-90ed-4ba8-83db-bde0dc1a4e37, rgb(255, 255, 255))\",dnI2jWCoG:\"var(--token-9ba5ef01-90ed-4ba8-83db-bde0dc1a4e37, rgb(255, 255, 255))\",eAAKapzJj:addImageAlt({src:\"https://framerusercontent.com/images/gJD86MAfrRGgouf6e5Z2KxrUofk.png\"},\"store of a creator on a laptop\"),height:\"100%\",HmCwtpszc:getLocalizedValue(\"v45\",activeLocale)??\"We build fully customized stores, integrated with TikTok, YouTube & Instagram, optimizing every step. Get paid monthly through PayPal or Stripe.\",id:\"JnCkCik92\",layoutId:\"JnCkCik92\",style:{width:\"100%\"},ufxmdYg32:getLocalizedValue(\"v37\",activeLocale)??\"Branded Store Setup\",USVd0KBmR:\"20px 0px 0px 0px\",variant:\"zokZk7IpE\",width:\"100%\"})})}),isDisplayed5()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:336,width:\"292px\",y:(componentViewport?.y||0)+0+3284+50+20+95+30+0+10,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1p6hi1t-container hidden-41eq9c\",nodeId:\"RJqApQR7s\",scopeId:\"jpwn_a0xU\",children:/*#__PURE__*/_jsx(FeatureCard,{dIqLusgod:\"var(--token-9ba5ef01-90ed-4ba8-83db-bde0dc1a4e37, rgb(255, 255, 255))\",dnI2jWCoG:\"var(--token-9ba5ef01-90ed-4ba8-83db-bde0dc1a4e37, rgb(255, 255, 255))\",eAAKapzJj:addImageAlt({src:\"https://framerusercontent.com/images/B0P258S5USviBvt1Ei4pUtMfH0.png\"},\"instagram of creator with her products\"),height:\"100%\",HmCwtpszc:getLocalizedValue(\"v46\",activeLocale)??\"With top Print on Demand partners, we handle everything from production to delivery for a smooth, branded experience.\",id:\"RJqApQR7s\",layoutId:\"RJqApQR7s\",style:{width:\"100%\"},ufxmdYg32:getLocalizedValue(\"v39\",activeLocale)??\"Reliable Fulfillment\",USVd0KBmR:\"20px 0px 0px 0px\",variant:\"zokZk7IpE\",width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":fcBXrg7d3\",webPageId:\"jpwn_a0xU\"},implicitPathVariables:undefined},{href:{hash:\":fcBXrg7d3\",webPageId:\"jpwn_a0xU\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iXBbiMK8f:{y:(componentViewport?.y||0)+0+3005+60+0+907}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,y:(componentViewport?.y||0)+0+3284+50+20+511,children:/*#__PURE__*/_jsx(Container,{className:\"framer-dwbb7v-container\",id:elementId4,nodeId:\"n9NHDOmT9\",ref:ref5,scopeId:\"jpwn_a0xU\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iXBbiMK8f:{DnytOe0Z8:resolvedLinks3[1]}},children:/*#__PURE__*/_jsx(ButtonMaster,{A2dWUqqQh:getLocalizedValue(\"v15\",activeLocale)??\"Contact Us\",DnytOe0Z8:resolvedLinks3[0],height:\"100%\",id:\"n9NHDOmT9\",layoutId:\"n9NHDOmT9\",oSfNN4wFr:false,v8ArQOg02:true,variant:\"EDnUIZMaX\",width:\"100%\"})})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-zt944t\",\"data-framer-name\":\"Style that connects\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lkqtif\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w1a45a\",\"data-framer-name\":\"Content Wrapper\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-xjaw6i\",\"data-framer-name\":\"Content Text Block Wrapper\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cpl3pi\",\"data-framer-name\":\"Content Text Block Wrapper\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1735myo\",\"data-framer-name\":\"Content Text Block\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Sf8KrhhQp:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-c109w4\",\"data-framer-name\":\"Content Title Block\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iXBbiMK8f:{children:getLocalizedValue(\"v48\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1ps8izp\",\"data-styles-preset\":\"jyGHLHurG\",children:\"style that connects\"})})},QmdGmfFMf:{children:getLocalizedValue(\"v49\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1ps8izp\",\"data-styles-preset\":\"jyGHLHurG\",style:{\"--framer-text-alignment\":\"center\"},children:\"style that connects\"})})},Sf8KrhhQp:{children:getLocalizedValue(\"v49\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1ps8izp\",\"data-styles-preset\":\"jyGHLHurG\",style:{\"--framer-text-alignment\":\"center\"},children:\"style that connects\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v47\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1ps8izp\",\"data-styles-preset\":\"jyGHLHurG\",children:\"style that connects\"})}),className:\"framer-4wzg1f\",\"data-framer-name\":\"Content Title\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QmdGmfFMf:{children:getLocalizedValue(\"v51\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-132dc9h\",\"data-styles-preset\":\"U4q_q8nHt\",style:{\"--framer-text-alignment\":\"center\"},children:[\"These are some of the talented content creators who have partnered with us to bring their visions to life.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"Our diverse community showcases their unique styles and passions through their merch. Imagine the possibilities for your own brand. \",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"Join our growing network of creators and \",/*#__PURE__*/_jsx(\"strong\",{children:\"let us help you turn your ideas into reality\"}),\". \",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"Ready to take the next step? Start your journey with us today.\"]})})},Sf8KrhhQp:{__framer__styleAppearEffectEnabled:undefined,children:getLocalizedValue(\"v51\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-132dc9h\",\"data-styles-preset\":\"U4q_q8nHt\",style:{\"--framer-text-alignment\":\"center\"},children:[\"These are some of the talented content creators who have partnered with us to bring their visions to life.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"Our diverse community showcases their unique styles and passions through their merch. Imagine the possibilities for your own brand. \",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"Join our growing network of creators and \",/*#__PURE__*/_jsx(\"strong\",{children:\"let us help you turn your ideas into reality\"}),\". \",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"Ready to take the next step? Start your journey with us today.\"]})}),style:{}}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v50\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-132dc9h\",\"data-styles-preset\":\"U4q_q8nHt\",children:[\"These are some of the talented content creators who have partnered with us to bring their visions to life.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"Our diverse community showcases their unique styles and passions through their merch. Imagine the possibilities for your own brand. \",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"Join our growing network of creators and \",/*#__PURE__*/_jsx(\"strong\",{children:\"let us help you turn your ideas into reality\"}),\". \",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"Ready to take the next step? Start your journey with us today.\"]})}),className:\"framer-18ln6o3\",\"data-framer-name\":\"Paragraph\",fonts:[\"Inter\",\"Inter-Bold\"],style:{transformPerspective:1200},verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":fcBXrg7d3\",webPageId:\"jpwn_a0xU\"},implicitPathVariables:undefined},{href:{hash:\":fcBXrg7d3\",webPageId:\"jpwn_a0xU\"},implicitPathVariables:undefined},{href:{hash:\":fcBXrg7d3\",webPageId:\"jpwn_a0xU\"},implicitPathVariables:undefined},{href:{hash:\":fcBXrg7d3\",webPageId:\"jpwn_a0xU\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iXBbiMK8f:{y:(componentViewport?.y||0)+0+4072+40+0+0+161+0+0+0+0+0+228},QmdGmfFMf:{y:undefined},Sf8KrhhQp:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,y:(componentViewport?.y||0)+0+3995+70+0+0+161+0+0+0+0+0+228,children:/*#__PURE__*/_jsx(Container,{className:\"framer-f6lk4k-container\",id:elementId5,nodeId:\"EIIYta2wi\",ref:ref6,scopeId:\"jpwn_a0xU\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iXBbiMK8f:{DnytOe0Z8:resolvedLinks4[1]},QmdGmfFMf:{DnytOe0Z8:resolvedLinks4[3]},Sf8KrhhQp:{DnytOe0Z8:resolvedLinks4[2]}},children:/*#__PURE__*/_jsx(ButtonMaster,{A2dWUqqQh:getLocalizedValue(\"v15\",activeLocale)??\"Contact Us\",DnytOe0Z8:resolvedLinks4[0],height:\"100%\",id:\"EIIYta2wi\",layoutId:\"EIIYta2wi\",oSfNN4wFr:false,v8ArQOg02:true,variant:\"EDnUIZMaX\",width:\"100%\"})})})})})})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15hpohw\",\"data-framer-name\":\"Content Image\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iXBbiMK8f:{background:{alt:\"creator hoodie \",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4072+40+0+0+0+56.7791),pixelHeight:5473,pixelWidth:3649,positionX:\"center\",positionY:\"center\",sizes:\"199px\",src:\"https://framerusercontent.com/images/fyFb7ETTpc2Iup41AwuDuEyJek.jpeg\",srcSet:\"https://framerusercontent.com/images/fyFb7ETTpc2Iup41AwuDuEyJek.jpeg?scale-down-to=1024 682w,https://framerusercontent.com/images/fyFb7ETTpc2Iup41AwuDuEyJek.jpeg?scale-down-to=2048 1365w,https://framerusercontent.com/images/fyFb7ETTpc2Iup41AwuDuEyJek.jpeg?scale-down-to=4096 2730w,https://framerusercontent.com/images/fyFb7ETTpc2Iup41AwuDuEyJek.jpeg 3649w\"}},QmdGmfFMf:{background:{alt:\"creator hoodie \",fit:\"fit\",pixelHeight:5473,pixelWidth:3649,positionX:\"center\",positionY:\"center\",sizes:`calc(min(min(max(${componentViewport?.width||\"100vw\"}, 1px), 524px) - 40px, 400px) * 0.4086)`,src:\"https://framerusercontent.com/images/fyFb7ETTpc2Iup41AwuDuEyJek.jpeg\",srcSet:\"https://framerusercontent.com/images/fyFb7ETTpc2Iup41AwuDuEyJek.jpeg?scale-down-to=1024 682w,https://framerusercontent.com/images/fyFb7ETTpc2Iup41AwuDuEyJek.jpeg?scale-down-to=2048 1365w,https://framerusercontent.com/images/fyFb7ETTpc2Iup41AwuDuEyJek.jpeg?scale-down-to=4096 2730w,https://framerusercontent.com/images/fyFb7ETTpc2Iup41AwuDuEyJek.jpeg 3649w\"},transformTemplate:transformTemplate1},Sf8KrhhQp:{background:{alt:\"creator hoodie \",fit:\"fit\",pixelHeight:5473,pixelWidth:3649,positionX:\"center\",positionY:\"center\",sizes:\"163.4484px\",src:\"https://framerusercontent.com/images/fyFb7ETTpc2Iup41AwuDuEyJek.jpeg\",srcSet:\"https://framerusercontent.com/images/fyFb7ETTpc2Iup41AwuDuEyJek.jpeg?scale-down-to=1024 682w,https://framerusercontent.com/images/fyFb7ETTpc2Iup41AwuDuEyJek.jpeg?scale-down-to=2048 1365w,https://framerusercontent.com/images/fyFb7ETTpc2Iup41AwuDuEyJek.jpeg?scale-down-to=4096 2730w,https://framerusercontent.com/images/fyFb7ETTpc2Iup41AwuDuEyJek.jpeg 3649w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation54,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"creator hoodie \",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3995+70+0+0+0+31.9886),pixelHeight:5473,pixelWidth:3649,positionX:\"center\",positionY:\"center\",sizes:\"227.027px\",src:\"https://framerusercontent.com/images/fyFb7ETTpc2Iup41AwuDuEyJek.jpeg\",srcSet:\"https://framerusercontent.com/images/fyFb7ETTpc2Iup41AwuDuEyJek.jpeg?scale-down-to=1024 682w,https://framerusercontent.com/images/fyFb7ETTpc2Iup41AwuDuEyJek.jpeg?scale-down-to=2048 1365w,https://framerusercontent.com/images/fyFb7ETTpc2Iup41AwuDuEyJek.jpeg?scale-down-to=4096 2730w,https://framerusercontent.com/images/fyFb7ETTpc2Iup41AwuDuEyJek.jpeg 3649w\"},className:\"framer-zcd4ge\",style:{rotate:7,transformPerspective:1200}})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iXBbiMK8f:{background:{alt:\"creator showing her phone case\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4072+40+0+0+0+28),pixelHeight:5473,pixelWidth:3649,positionX:\"center\",positionY:\"center\",sizes:\"179px\",src:\"https://framerusercontent.com/images/LQ3IoaCWC5Csf3LLZksQWrMa1o.jpeg\",srcSet:\"https://framerusercontent.com/images/LQ3IoaCWC5Csf3LLZksQWrMa1o.jpeg?scale-down-to=1024 682w,https://framerusercontent.com/images/LQ3IoaCWC5Csf3LLZksQWrMa1o.jpeg?scale-down-to=2048 1365w,https://framerusercontent.com/images/LQ3IoaCWC5Csf3LLZksQWrMa1o.jpeg?scale-down-to=4096 2730w,https://framerusercontent.com/images/LQ3IoaCWC5Csf3LLZksQWrMa1o.jpeg 3649w\"}},QmdGmfFMf:{background:{alt:\"creator showing her phone case\",fit:\"fit\",pixelHeight:5473,pixelWidth:3649,positionX:\"center\",positionY:\"center\",sizes:`calc(min(min(max(${componentViewport?.width||\"100vw\"}, 1px), 524px) - 40px, 400px) * 0.4229)`,src:\"https://framerusercontent.com/images/LQ3IoaCWC5Csf3LLZksQWrMa1o.jpeg\",srcSet:\"https://framerusercontent.com/images/LQ3IoaCWC5Csf3LLZksQWrMa1o.jpeg?scale-down-to=1024 682w,https://framerusercontent.com/images/LQ3IoaCWC5Csf3LLZksQWrMa1o.jpeg?scale-down-to=2048 1365w,https://framerusercontent.com/images/LQ3IoaCWC5Csf3LLZksQWrMa1o.jpeg?scale-down-to=4096 2730w,https://framerusercontent.com/images/LQ3IoaCWC5Csf3LLZksQWrMa1o.jpeg 3649w\"},transformTemplate:transformTemplate1},Sf8KrhhQp:{background:{alt:\"creator showing her phone case\",fit:\"fit\",pixelHeight:5473,pixelWidth:3649,positionX:\"center\",positionY:\"center\",sizes:\"169.2087px\",src:\"https://framerusercontent.com/images/LQ3IoaCWC5Csf3LLZksQWrMa1o.jpeg\",srcSet:\"https://framerusercontent.com/images/LQ3IoaCWC5Csf3LLZksQWrMa1o.jpeg?scale-down-to=1024 682w,https://framerusercontent.com/images/LQ3IoaCWC5Csf3LLZksQWrMa1o.jpeg?scale-down-to=2048 1365w,https://framerusercontent.com/images/LQ3IoaCWC5Csf3LLZksQWrMa1o.jpeg?scale-down-to=4096 2730w,https://framerusercontent.com/images/LQ3IoaCWC5Csf3LLZksQWrMa1o.jpeg 3649w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation55,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"creator showing her phone case\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3995+70+0+0+0+10.3585),pixelHeight:5473,pixelWidth:3649,positionX:\"center\",positionY:\"center\",sizes:\"234.5946px\",src:\"https://framerusercontent.com/images/LQ3IoaCWC5Csf3LLZksQWrMa1o.jpeg\",srcSet:\"https://framerusercontent.com/images/LQ3IoaCWC5Csf3LLZksQWrMa1o.jpeg?scale-down-to=1024 682w,https://framerusercontent.com/images/LQ3IoaCWC5Csf3LLZksQWrMa1o.jpeg?scale-down-to=2048 1365w,https://framerusercontent.com/images/LQ3IoaCWC5Csf3LLZksQWrMa1o.jpeg?scale-down-to=4096 2730w,https://framerusercontent.com/images/LQ3IoaCWC5Csf3LLZksQWrMa1o.jpeg 3649w\"},className:\"framer-je2mxh\",style:{rotate:-7,transformPerspective:1200}})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iXBbiMK8f:{background:{alt:\"creator showing her hat\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4072+40+0+0+0+610-221),pixelHeight:5473,pixelWidth:3649,positionX:\"center\",positionY:\"center\",sizes:\"181px\",src:\"https://framerusercontent.com/images/rp19UVHFuEtnAU1UUoUSzhix4.jpeg\",srcSet:\"https://framerusercontent.com/images/rp19UVHFuEtnAU1UUoUSzhix4.jpeg?scale-down-to=1024 682w,https://framerusercontent.com/images/rp19UVHFuEtnAU1UUoUSzhix4.jpeg?scale-down-to=2048 1365w,https://framerusercontent.com/images/rp19UVHFuEtnAU1UUoUSzhix4.jpeg?scale-down-to=4096 2730w,https://framerusercontent.com/images/rp19UVHFuEtnAU1UUoUSzhix4.jpeg 3649w\"}},QmdGmfFMf:{background:{alt:\"creator showing her hat\",fit:\"fit\",pixelHeight:5473,pixelWidth:3649,positionX:\"center\",positionY:\"center\",sizes:`calc(min(min(max(${componentViewport?.width||\"100vw\"}, 1px), 524px) - 40px, 400px) / 2.518)`,src:\"https://framerusercontent.com/images/rp19UVHFuEtnAU1UUoUSzhix4.jpeg\",srcSet:\"https://framerusercontent.com/images/rp19UVHFuEtnAU1UUoUSzhix4.jpeg?scale-down-to=1024 682w,https://framerusercontent.com/images/rp19UVHFuEtnAU1UUoUSzhix4.jpeg?scale-down-to=2048 1365w,https://framerusercontent.com/images/rp19UVHFuEtnAU1UUoUSzhix4.jpeg?scale-down-to=4096 2730w,https://framerusercontent.com/images/rp19UVHFuEtnAU1UUoUSzhix4.jpeg 3649w\"},transformTemplate:transformTemplate1},Sf8KrhhQp:{background:{alt:\"creator showing her hat\",fit:\"fit\",pixelHeight:5473,pixelWidth:3649,positionX:\"center\",positionY:\"center\",sizes:\"159.1282px\",src:\"https://framerusercontent.com/images/rp19UVHFuEtnAU1UUoUSzhix4.jpeg\",srcSet:\"https://framerusercontent.com/images/rp19UVHFuEtnAU1UUoUSzhix4.jpeg?scale-down-to=1024 682w,https://framerusercontent.com/images/rp19UVHFuEtnAU1UUoUSzhix4.jpeg?scale-down-to=2048 1365w,https://framerusercontent.com/images/rp19UVHFuEtnAU1UUoUSzhix4.jpeg?scale-down-to=4096 2730w,https://framerusercontent.com/images/rp19UVHFuEtnAU1UUoUSzhix4.jpeg 3649w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation56,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"creator showing her hat\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3995+70+0+0+0+610-342.0455),pixelHeight:5473,pixelWidth:3649,positionX:\"center\",positionY:\"center\",sizes:\"221.3514px\",src:\"https://framerusercontent.com/images/rp19UVHFuEtnAU1UUoUSzhix4.jpeg\",srcSet:\"https://framerusercontent.com/images/rp19UVHFuEtnAU1UUoUSzhix4.jpeg?scale-down-to=1024 682w,https://framerusercontent.com/images/rp19UVHFuEtnAU1UUoUSzhix4.jpeg?scale-down-to=2048 1365w,https://framerusercontent.com/images/rp19UVHFuEtnAU1UUoUSzhix4.jpeg?scale-down-to=4096 2730w,https://framerusercontent.com/images/rp19UVHFuEtnAU1UUoUSzhix4.jpeg 3649w\"},className:\"framer-kpggks\",style:{rotate:-7,transformPerspective:1200}})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iXBbiMK8f:{background:{alt:\"hoodie on creator store\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4072+40+0+0+0+610-234),pixelHeight:2380,pixelWidth:1983,positionX:\"center\",positionY:\"center\",sizes:\"213px\",src:\"https://framerusercontent.com/images/IGnI7u6vFPqrJjsIhz001xvN2I.jpg\",srcSet:\"https://framerusercontent.com/images/IGnI7u6vFPqrJjsIhz001xvN2I.jpg?scale-down-to=1024 853w,https://framerusercontent.com/images/IGnI7u6vFPqrJjsIhz001xvN2I.jpg?scale-down-to=2048 1706w,https://framerusercontent.com/images/IGnI7u6vFPqrJjsIhz001xvN2I.jpg 1983w\"}},QmdGmfFMf:{background:{alt:\"hoodie on creator store\",fit:\"fit\",pixelHeight:2380,pixelWidth:1983,positionX:\"center\",positionY:\"center\",sizes:\"163px\",src:\"https://framerusercontent.com/images/IGnI7u6vFPqrJjsIhz001xvN2I.jpg\",srcSet:\"https://framerusercontent.com/images/IGnI7u6vFPqrJjsIhz001xvN2I.jpg?scale-down-to=1024 853w,https://framerusercontent.com/images/IGnI7u6vFPqrJjsIhz001xvN2I.jpg?scale-down-to=2048 1706w,https://framerusercontent.com/images/IGnI7u6vFPqrJjsIhz001xvN2I.jpg 1983w\"}},Sf8KrhhQp:{background:{alt:\"hoodie on creator store\",fit:\"fit\",pixelHeight:2380,pixelWidth:1983,positionX:\"center\",positionY:\"center\",sizes:\"185.7695px\",src:\"https://framerusercontent.com/images/IGnI7u6vFPqrJjsIhz001xvN2I.jpg\",srcSet:\"https://framerusercontent.com/images/IGnI7u6vFPqrJjsIhz001xvN2I.jpg?scale-down-to=1024 853w,https://framerusercontent.com/images/IGnI7u6vFPqrJjsIhz001xvN2I.jpg?scale-down-to=2048 1706w,https://framerusercontent.com/images/IGnI7u6vFPqrJjsIhz001xvN2I.jpg 1983w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation57,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"hoodie on creator store\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3995+70+0+0+0+610-305.3684),pixelHeight:2380,pixelWidth:1983,positionX:\"center\",positionY:\"center\",sizes:\"258.2432px\",src:\"https://framerusercontent.com/images/IGnI7u6vFPqrJjsIhz001xvN2I.jpg\",srcSet:\"https://framerusercontent.com/images/IGnI7u6vFPqrJjsIhz001xvN2I.jpg?scale-down-to=1024 853w,https://framerusercontent.com/images/IGnI7u6vFPqrJjsIhz001xvN2I.jpg?scale-down-to=2048 1706w,https://framerusercontent.com/images/IGnI7u6vFPqrJjsIhz001xvN2I.jpg 1983w\"},className:\"framer-dgn47b\",style:{rotate:7,transformPerspective:1200}})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iXBbiMK8f:{background:{alt:\"Cat with glasses in psychedelic style\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4072+40+0+0+0+271.6663),pixelHeight:59,pixelWidth:245,src:\"https://framerusercontent.com/images/f1WkzY0qqKChONGTkumn1zf40nw.png\"}},QmdGmfFMf:{background:{alt:\"Cat with glasses in psychedelic style\",fit:\"fill\",pixelHeight:59,pixelWidth:245,src:\"https://framerusercontent.com/images/f1WkzY0qqKChONGTkumn1zf40nw.png\"},transformTemplate:transformTemplate1},Sf8KrhhQp:{background:{alt:\"Cat with glasses in psychedelic style\",fit:\"fill\",pixelHeight:59,pixelWidth:245,src:\"https://framerusercontent.com/images/f1WkzY0qqKChONGTkumn1zf40nw.png\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation58,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"Cat with glasses in psychedelic style\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3995+70+0+0+0+256.8192),pixelHeight:59,pixelWidth:245,src:\"https://framerusercontent.com/images/f1WkzY0qqKChONGTkumn1zf40nw.png\"},className:\"framer-x8t551\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iXBbiMK8f:{background:{alt:\"followers icon\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4072+40+0+0+0+24.1342),pixelHeight:150,pixelWidth:238,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/5U6NSFf2rlCCGRsOAQ2zpzf4Rdo.svg\"}},QmdGmfFMf:{background:{alt:\"followers icon\",fit:\"fit\",pixelHeight:150,pixelWidth:238,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/5U6NSFf2rlCCGRsOAQ2zpzf4Rdo.svg\"}},Sf8KrhhQp:{background:{alt:\"followers icon\",fit:\"fit\",pixelHeight:150,pixelWidth:238,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/5U6NSFf2rlCCGRsOAQ2zpzf4Rdo.svg\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation6,__framer__loop:animation7,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:.4,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"followers icon\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3995+70+0+0+0+-10.9969),pixelHeight:150,pixelWidth:238,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/5U6NSFf2rlCCGRsOAQ2zpzf4Rdo.svg\"},className:\"framer-1m26sjs\",\"data-framer-name\":\"redes\",style:{rotate:2,transformPerspective:1200},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1klb343-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"zcBjK1W4P\",scopeId:\"jpwn_a0xU\",children:/*#__PURE__*/_jsx(Counter,{decimalSeparatorType:\"none\",end:23,gapSize:0,height:\"100%\",id:\"zcBjK1W4P\",incrementType:\"integer\",layoutId:\"zcBjK1W4P\",loop:false,prefixColor:\"rgb(255, 255, 255)\",prefixFont:{fontFamily:'\"Poppins\", \"Poppins Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:400},prefixText:\"\",restartOnViewport:true,selectedFont:{fontFamily:'\"Poppins\", \"Poppins Placeholder\", sans-serif',fontFeatureSettings:\"normal\",fontStyle:\"normal\",fontWeight:700},speed:50,start:0,startOnViewport:true,suffixColor:\"rgb(255, 255, 255)\",suffixFont:{fontFamily:'\"Poppins\", \"Poppins Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:700},suffixText:\"k\",textColor:\"rgb(255, 255, 255)\",textSize:21,width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iXBbiMK8f:{background:{alt:\"likes icon\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4072+40+0+0+0+301.4069),pixelHeight:150,pixelWidth:238,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/MT4zmfzWWkCidsMxqHJ7AEEHA.svg\"}},QmdGmfFMf:{background:{alt:\"likes icon\",fit:\"fit\",pixelHeight:150,pixelWidth:238,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/MT4zmfzWWkCidsMxqHJ7AEEHA.svg\"}},Sf8KrhhQp:{background:{alt:\"likes icon\",fit:\"fit\",pixelHeight:150,pixelWidth:238,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/MT4zmfzWWkCidsMxqHJ7AEEHA.svg\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation59,__framer__loop:animation60,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:.4,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition4,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"likes icon\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3995+70+0+0+0+339.6106),pixelHeight:150,pixelWidth:238,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/MT4zmfzWWkCidsMxqHJ7AEEHA.svg\"},className:\"framer-9djwng\",\"data-framer-name\":\"redes\",style:{rotate:-8,transformPerspective:1200},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-osmw5y-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"k6fME11GZ\",scopeId:\"jpwn_a0xU\",children:/*#__PURE__*/_jsx(Counter,{decimalSeparatorType:\"none\",end:58,gapSize:0,height:\"100%\",id:\"k6fME11GZ\",incrementType:\"integer\",layoutId:\"k6fME11GZ\",loop:false,prefixColor:\"rgb(255, 255, 255)\",prefixFont:{fontFamily:'\"Poppins\", \"Poppins Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:400},prefixText:\"\",restartOnViewport:true,selectedFont:{fontFamily:'\"Poppins\", \"Poppins Placeholder\", sans-serif',fontFeatureSettings:\"normal\",fontStyle:\"normal\",fontWeight:700},speed:50,start:0,startOnViewport:true,suffixColor:\"rgb(255, 255, 255)\",suffixFont:{fontFamily:'\"Poppins\", \"Poppins Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:700},suffixText:\"k\",textColor:\"rgb(255, 255, 255)\",textSize:21,width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iXBbiMK8f:{background:{alt:\"Cat with glasses in psychedelic style\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4072+40+0+0+0+610-40),pixelHeight:62,pixelWidth:264,src:\"https://framerusercontent.com/images/2DF72GxcLmubjasVtgD66eWX4.png\"}},QmdGmfFMf:{background:{alt:\"Cat with glasses in psychedelic style\",fit:\"fill\",pixelHeight:62,pixelWidth:264,src:\"https://framerusercontent.com/images/2DF72GxcLmubjasVtgD66eWX4.png\"}},Sf8KrhhQp:{background:{alt:\"Cat with glasses in psychedelic style\",fit:\"fill\",pixelHeight:62,pixelWidth:264,src:\"https://framerusercontent.com/images/2DF72GxcLmubjasVtgD66eWX4.png\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation61,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"Cat with glasses in psychedelic style\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3995+70+0+0+0+610-94),pixelHeight:62,pixelWidth:264,src:\"https://framerusercontent.com/images/2DF72GxcLmubjasVtgD66eWX4.png\"},className:\"framer-1rldw6d\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iXBbiMK8f:{background:{alt:\"Cat with glasses in psychedelic style\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4072+40+0+0+0+27),pixelHeight:59,pixelWidth:261,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/6vZlCdrZvWRdYa1qIcSiyGPLKi0.png\"}},QmdGmfFMf:{background:{alt:\"Cat with glasses in psychedelic style\",fit:\"fit\",pixelHeight:59,pixelWidth:261,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/6vZlCdrZvWRdYa1qIcSiyGPLKi0.png\"}},Sf8KrhhQp:{background:{alt:\"Cat with glasses in psychedelic style\",fit:\"fit\",pixelHeight:59,pixelWidth:261,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/6vZlCdrZvWRdYa1qIcSiyGPLKi0.png\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation62,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"Cat with glasses in psychedelic style\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3995+70+0+0+0+17.882),pixelHeight:59,pixelWidth:261,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/6vZlCdrZvWRdYa1qIcSiyGPLKi0.png\"},className:\"framer-1qszxa5\",style:{transformPerspective:1200}})})]})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-o64p79\",\"data-framer-name\":\"Form\",id:elementId6,ref:ref7,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-vh6p6i-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"sS0CgP7IK\",scopeId:\"jpwn_a0xU\",children:/*#__PURE__*/_jsx(Typeform,{autoFocus:true,formId:\"h1sDRjLP\",height:\"100%\",hideFooter:true,hideHeaders:true,id:\"sS0CgP7IK\",layoutId:\"sS0CgP7IK\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),isDisplayed6()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nwgoby hidden-h3e42f hidden-41eq9c hidden-9v2ybr\",\"data-framer-name\":\"How To\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13j5ml1\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bsi5bg\",\"data-framer-name\":\"Section Heading Block\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v52\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1ps8izp\",\"data-styles-preset\":\"jyGHLHurG\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9ba5ef01-90ed-4ba8-83db-bde0dc1a4e37, rgb(255, 255, 255))\"},children:\"How We Do It:\"})}),className:\"framer-tjhziu\",\"data-framer-name\":\"Section Title\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v53\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-ebv8yi\",\"data-styles-preset\":\"YkjVZVE6N\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9ba5ef01-90ed-4ba8-83db-bde0dc1a4e37, rgb(255, 255, 255))\"},children:\"focus on creating, we handle the rest.\"})}),className:\"framer-89c80s\",\"data-framer-name\":\"Section Title\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12h08wr\",\"data-framer-name\":\"Feature Content Wrapper\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yaz8yt\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:336,children:/*#__PURE__*/_jsx(Container,{className:\"framer-s4nc5r-container\",nodeId:\"hl6oNdhqN\",scopeId:\"jpwn_a0xU\",children:/*#__PURE__*/_jsx(FeatureCard,{dIqLusgod:\"var(--token-9ba5ef01-90ed-4ba8-83db-bde0dc1a4e37, rgb(255, 255, 255))\",dnI2jWCoG:\"var(--token-9ba5ef01-90ed-4ba8-83db-bde0dc1a4e37, rgb(255, 255, 255))\",eAAKapzJj:addImageAlt({src:\"https://framerusercontent.com/images/gJD86MAfrRGgouf6e5Z2KxrUofk.png\"},\"Preview of different design styles in the ai and one selected\"),height:\"100%\",HmCwtpszc:getLocalizedValue(\"v45\",activeLocale)??\"We build fully customized stores, integrated with TikTok, YouTube & Instagram, optimizing every step. Get paid monthly through PayPal or Stripe.\",id:\"hl6oNdhqN\",layoutId:\"hl6oNdhqN\",ufxmdYg32:getLocalizedValue(\"v37\",activeLocale)??\"Branded Store Setup\",USVd0KBmR:\"20px 0px 0px 0px\",variant:\"zokZk7IpE\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:336,children:/*#__PURE__*/_jsx(Container,{className:\"framer-15kujdy-container\",nodeId:\"n7TfyjqhB\",scopeId:\"jpwn_a0xU\",children:/*#__PURE__*/_jsx(FeatureCard,{dIqLusgod:\"var(--token-9ba5ef01-90ed-4ba8-83db-bde0dc1a4e37, rgb(255, 255, 255))\",dnI2jWCoG:\"var(--token-9ba5ef01-90ed-4ba8-83db-bde0dc1a4e37, rgb(255, 255, 255))\",eAAKapzJj:addImageAlt({src:\"https://framerusercontent.com/images/QJXSc3LR8rXNMlLLXZxnntHZKy4.png\"},\"Generated design according to the prompt\"),height:\"100%\",HmCwtpszc:getLocalizedValue(\"v54\",activeLocale)??\"With top Print on Demand partners, we handle everything from production to delivery for a smooth, branded experience.\",id:\"n7TfyjqhB\",layoutId:\"n7TfyjqhB\",ufxmdYg32:getLocalizedValue(\"v39\",activeLocale)??\"Reliable Fulfillment\",USVd0KBmR:\"20px 0px 0px 0px\",variant:\"zokZk7IpE\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:336,children:/*#__PURE__*/_jsx(Container,{className:\"framer-hb3814-container\",nodeId:\"wJ0Jfqpy7\",scopeId:\"jpwn_a0xU\",children:/*#__PURE__*/_jsx(FeatureCard,{dIqLusgod:\"var(--token-9ba5ef01-90ed-4ba8-83db-bde0dc1a4e37, rgb(255, 255, 255))\",dnI2jWCoG:\"var(--token-9ba5ef01-90ed-4ba8-83db-bde0dc1a4e37, rgb(255, 255, 255))\",eAAKapzJj:addImageAlt({src:\"https://framerusercontent.com/images/LaKxta0v3KoM8XyFp09csrvexkw.png\"},\"Preview of AI tool in the tshirt maker\"),height:\"100%\",HmCwtpszc:getLocalizedValue(\"v42\",activeLocale)??\"We develop personalized strategies that boost engagement, loyalty, and sales, tailored to your style and audience.\",id:\"wJ0Jfqpy7\",layoutId:\"wJ0Jfqpy7\",ufxmdYg32:getLocalizedValue(\"v41\",activeLocale)??\"Content Proposals\",USVd0KBmR:\"20px 0px 0px 0px\",variant:\"zokZk7IpE\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:336,children:/*#__PURE__*/_jsx(Container,{className:\"framer-c2h7dt-container\",id:\"c2h7dt\",nodeId:\"X4WofTLbv\",scopeId:\"jpwn_a0xU\",children:/*#__PURE__*/_jsx(FeatureCard,{dIqLusgod:\"var(--token-9ba5ef01-90ed-4ba8-83db-bde0dc1a4e37, rgb(255, 255, 255))\",dnI2jWCoG:\"var(--token-9ba5ef01-90ed-4ba8-83db-bde0dc1a4e37, rgb(255, 255, 255))\",eAAKapzJj:addImageAlt({src:\"https://framerusercontent.com/images/2MVfbzlJPceI8pnzksGDr7MNbg.png\"},\"Prompt of a design written on the ai design generator\"),height:\"100%\",HmCwtpszc:getLocalizedValue(\"v55\",activeLocale)??\"Our in-house designers create trendy, art-inspired products that showcase your identity. Quality samples ensure perfection before launch.\",id:\"X4WofTLbv\",layoutId:\"X4WofTLbv\",ufxmdYg32:getLocalizedValue(\"v43\",activeLocale)??\"Custom Product Design\",USVd0KBmR:\"20px 0px 0px 0px\",variant:\"zokZk7IpE\",width:\"100%\"})})})]})})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fvifaq hidden-h3e42f hidden-41eq9c hidden-rt9vwd\",\"data-framer-name\":\"How To\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1651m32\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17p01f6\",\"data-framer-name\":\"Section Heading Block\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v52\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1ps8izp\",\"data-styles-preset\":\"jyGHLHurG\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9ba5ef01-90ed-4ba8-83db-bde0dc1a4e37, rgb(255, 255, 255))\"},children:\"How We Do It:\"})}),className:\"framer-1w7cz0p\",\"data-framer-name\":\"Section Title\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v53\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-ebv8yi\",\"data-styles-preset\":\"YkjVZVE6N\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9ba5ef01-90ed-4ba8-83db-bde0dc1a4e37, rgb(255, 255, 255))\"},children:\"focus on creating, we handle the rest.\"})}),className:\"framer-tjldka\",\"data-framer-name\":\"Section Title\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gx3tsq\",\"data-framer-name\":\"Feature Content Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vwoqpg\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:336,children:/*#__PURE__*/_jsx(Container,{className:\"framer-3zj5i7-container\",nodeId:\"DRqRr2jY_\",scopeId:\"jpwn_a0xU\",children:/*#__PURE__*/_jsx(FeatureCard,{dIqLusgod:\"var(--token-9ba5ef01-90ed-4ba8-83db-bde0dc1a4e37, rgb(255, 255, 255))\",dnI2jWCoG:\"var(--token-9ba5ef01-90ed-4ba8-83db-bde0dc1a4e37, rgb(255, 255, 255))\",eAAKapzJj:addImageAlt({src:\"https://framerusercontent.com/images/gJD86MAfrRGgouf6e5Z2KxrUofk.png\"},\"Preview of different design styles in the ai and one selected\"),height:\"100%\",HmCwtpszc:getLocalizedValue(\"v45\",activeLocale)??\"We build fully customized stores, integrated with TikTok, YouTube & Instagram, optimizing every step. Get paid monthly through PayPal or Stripe.\",id:\"DRqRr2jY_\",layoutId:\"DRqRr2jY_\",ufxmdYg32:getLocalizedValue(\"v37\",activeLocale)??\"Branded Store Setup\",USVd0KBmR:\"20px 0px 0px 0px\",variant:\"zokZk7IpE\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:336,children:/*#__PURE__*/_jsx(Container,{className:\"framer-11x363l-container\",nodeId:\"iRqEMb9AX\",scopeId:\"jpwn_a0xU\",children:/*#__PURE__*/_jsx(FeatureCard,{dIqLusgod:\"var(--token-9ba5ef01-90ed-4ba8-83db-bde0dc1a4e37, rgb(255, 255, 255))\",dnI2jWCoG:\"var(--token-9ba5ef01-90ed-4ba8-83db-bde0dc1a4e37, rgb(255, 255, 255))\",eAAKapzJj:addImageAlt({src:\"https://framerusercontent.com/images/QJXSc3LR8rXNMlLLXZxnntHZKy4.png\"},\"Generated design according to the prompt\"),height:\"100%\",HmCwtpszc:getLocalizedValue(\"v56\",activeLocale)??\"With top Print on Demand partners, we handle everything from production to delivery for a smooth, branded experience.\",id:\"iRqEMb9AX\",layoutId:\"iRqEMb9AX\",ufxmdYg32:getLocalizedValue(\"v39\",activeLocale)??\"Reliable Fulfillment\",USVd0KBmR:\"20px 0px 0px 0px\",variant:\"zokZk7IpE\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wnwfp3\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:336,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ok2gww-container\",nodeId:\"fz1yD9kGc\",scopeId:\"jpwn_a0xU\",children:/*#__PURE__*/_jsx(FeatureCard,{dIqLusgod:\"var(--token-9ba5ef01-90ed-4ba8-83db-bde0dc1a4e37, rgb(255, 255, 255))\",dnI2jWCoG:\"var(--token-9ba5ef01-90ed-4ba8-83db-bde0dc1a4e37, rgb(255, 255, 255))\",eAAKapzJj:addImageAlt({src:\"https://framerusercontent.com/images/LaKxta0v3KoM8XyFp09csrvexkw.png\"},\"Preview of AI tool in the tshirt maker\"),height:\"100%\",HmCwtpszc:getLocalizedValue(\"v42\",activeLocale)??\"We develop personalized strategies that boost engagement, loyalty, and sales, tailored to your style and audience.\",id:\"fz1yD9kGc\",layoutId:\"fz1yD9kGc\",ufxmdYg32:getLocalizedValue(\"v41\",activeLocale)??\"Content Proposals\",USVd0KBmR:\"20px 0px 0px 0px\",variant:\"zokZk7IpE\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:336,children:/*#__PURE__*/_jsx(Container,{className:\"framer-r6vq2z-container\",id:\"r6vq2z\",nodeId:\"K22DLr7UU\",scopeId:\"jpwn_a0xU\",children:/*#__PURE__*/_jsx(FeatureCard,{dIqLusgod:\"var(--token-9ba5ef01-90ed-4ba8-83db-bde0dc1a4e37, rgb(255, 255, 255))\",dnI2jWCoG:\"var(--token-9ba5ef01-90ed-4ba8-83db-bde0dc1a4e37, rgb(255, 255, 255))\",eAAKapzJj:addImageAlt({src:\"https://framerusercontent.com/images/2MVfbzlJPceI8pnzksGDr7MNbg.png\"},\"Prompt of a design written on the ai design generator\"),height:\"100%\",HmCwtpszc:getLocalizedValue(\"v55\",activeLocale)??\"Our in-house designers create trendy, art-inspired products that showcase your identity. Quality samples ensure perfection before launch.\",id:\"K22DLr7UU\",layoutId:\"K22DLr7UU\",ufxmdYg32:getLocalizedValue(\"v43\",activeLocale)??\"Custom Product Design\",USVd0KBmR:\"20px 0px 0px 0px\",variant:\"zokZk7IpE\",width:\"100%\"})})})]})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Sf8KrhhQp:{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,style:{transformPerspective:1200}}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{className:\"framer-j3l7iu\",\"data-framer-name\":\"Faq\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-f0ms24\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15fofzz\",\"data-framer-name\":\"Faq Content Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QmdGmfFMf:{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,style:{transformPerspective:1200}}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{className:\"framer-1autepm\",\"data-framer-name\":\"Section Heading Block\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-u7a3or\",\"data-framer-name\":\"Section Title Block\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iXBbiMK8f:{children:getLocalizedValue(\"v58\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1ps8izp\",\"data-styles-preset\":\"jyGHLHurG\",style:{\"--framer-text-alignment\":\"center\"},children:\"Frequently Asked Questions\"})})},QmdGmfFMf:{children:getLocalizedValue(\"v58\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1ps8izp\",\"data-styles-preset\":\"jyGHLHurG\",style:{\"--framer-text-alignment\":\"center\"},children:\"Frequently Asked Questions\"})})},Sf8KrhhQp:{children:getLocalizedValue(\"v58\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1ps8izp\",\"data-styles-preset\":\"jyGHLHurG\",style:{\"--framer-text-alignment\":\"center\"},children:\"Frequently Asked Questions\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v57\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1ps8izp\",\"data-styles-preset\":\"jyGHLHurG\",children:\"Frequently Asked Questions\"})}),className:\"framer-dkuy0k\",\"data-framer-name\":\"Section Title\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-78mmww\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19mloh1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iXBbiMK8f:{y:(componentViewport?.y||0)+0+5436+80+0+0+0+0+78+5+0+0+0},QmdGmfFMf:{width:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 20px, 524px) - 48px)`,y:undefined},Sf8KrhhQp:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:62,y:(componentViewport?.y||0)+0+5409+100+0+0+0+0+112+5+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yahfn3-container\",nodeId:\"VNkJdc7bQ\",scopeId:\"jpwn_a0xU\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QmdGmfFMf:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(CommonAccordion,{BF66vilrd:getLocalizedValue(\"v60\",activeLocale)??\"With years of experience in creating designs specifically crafted for audience connection and engagement, Vexels brings a deep understanding of what resonates with followers. We blend expert human creativity with AI capabilities to deliver unique, high-quality products tailored to your brand\u2019s style. By partnering with us, you gain access to a team that knows how to transform your ideas into profitable, merch-ready designs, ensuring your brand stands out.\",height:\"100%\",id:\"VNkJdc7bQ\",layoutId:\"VNkJdc7bQ\",PdZo4vt7Y:getLocalizedValue(\"v59\",activeLocale)??\"Why should I choose Vexels for my merch?\",variant:\"oO3Yiw797\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iXBbiMK8f:{y:(componentViewport?.y||0)+0+5436+80+0+0+0+0+78+5+0+0+82},QmdGmfFMf:{width:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 20px, 524px) - 48px)`,y:undefined},Sf8KrhhQp:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:62,y:(componentViewport?.y||0)+0+5409+100+0+0+0+0+112+5+0+82,children:/*#__PURE__*/_jsx(Container,{className:\"framer-668qf8-container\",nodeId:\"lxVnC9BGH\",scopeId:\"jpwn_a0xU\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QmdGmfFMf:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(CommonAccordion,{BF66vilrd:getLocalizedValue(\"v62\",activeLocale)??\"Having your own merch offers numerous advantages. It creates an additional revenue stream by leveraging your brand\u2019s influence and audience. It also enhances your personal brand with high-quality, custom-designed products that reflect your unique style. Merchandise helps deepen engagement with your followers, giving them tangible items to connect with and show their support. Plus, it serves as effective mobile advertising\u2014fans wearing or using your merch help increase visibility and brand awareness.\",height:\"100%\",id:\"lxVnC9BGH\",layoutId:\"lxVnC9BGH\",PdZo4vt7Y:getLocalizedValue(\"v61\",activeLocale)??\"How does having my own merch benefit me?\",variant:\"oO3Yiw797\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iXBbiMK8f:{y:(componentViewport?.y||0)+0+5436+80+0+0+0+0+78+5+0+0+164},QmdGmfFMf:{width:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 20px, 524px) - 48px)`,y:undefined},Sf8KrhhQp:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:62,y:(componentViewport?.y||0)+0+5409+100+0+0+0+0+112+5+0+164,children:/*#__PURE__*/_jsx(Container,{className:\"framer-jttlol-container\",nodeId:\"oCEa9McjR\",scopeId:\"jpwn_a0xU\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QmdGmfFMf:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(CommonAccordion,{BF66vilrd:getLocalizedValue(\"v64\",activeLocale)??\"No experience is required. We provide an all-inclusive service, managing everything from design and production to fulfillment. You receive a fully customized, professional merch line without any hassle, letting you focus entirely on your content.\",height:\"100%\",id:\"oCEa9McjR\",layoutId:\"oCEa9McjR\",PdZo4vt7Y:getLocalizedValue(\"v63\",activeLocale)??\"Do I need merch experience to join the program?\",variant:\"oO3Yiw797\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iXBbiMK8f:{y:(componentViewport?.y||0)+0+5436+80+0+0+0+0+78+5+0+0+246},QmdGmfFMf:{width:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 20px, 524px) - 48px)`,y:undefined},Sf8KrhhQp:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:62,y:(componentViewport?.y||0)+0+5409+100+0+0+0+0+112+5+0+246,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kdx7ud-container\",nodeId:\"EW7DRb_wc\",scopeId:\"jpwn_a0xU\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QmdGmfFMf:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(CommonAccordion,{BF66vilrd:getLocalizedValue(\"v66\",activeLocale)??\"We handle printing and fulfillment through our trusted partnership with Printful, known for its high-quality production, fast turnaround times, and reliable delivery.\",height:\"100%\",id:\"EW7DRb_wc\",layoutId:\"EW7DRb_wc\",PdZo4vt7Y:getLocalizedValue(\"v65\",activeLocale)??\"What Print-on-Demand service does Vexels use?\",variant:\"oO3Yiw797\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yzosee\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iXBbiMK8f:{y:(componentViewport?.y||0)+0+5436+80+0+0+0+0+78+5+332+0+0},QmdGmfFMf:{width:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 20px, 524px) - 48px)`,y:undefined},Sf8KrhhQp:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:62,y:(componentViewport?.y||0)+0+5409+100+0+0+0+0+112+5+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-15yn6u3-container\",nodeId:\"MVWECvlM0\",scopeId:\"jpwn_a0xU\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QmdGmfFMf:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(CommonAccordion,{BF66vilrd:getLocalizedValue(\"v68\",activeLocale)??\"You will have direct access to your dedicated account manager via phone, email, or any preferred communication method. Our team ensures ongoing support and seamless coordination every step of the way.\",height:\"100%\",id:\"MVWECvlM0\",layoutId:\"MVWECvlM0\",PdZo4vt7Y:getLocalizedValue(\"v67\",activeLocale)??\"How will I communicate with my account manager?\",variant:\"oO3Yiw797\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iXBbiMK8f:{y:(componentViewport?.y||0)+0+5436+80+0+0+0+0+78+5+332+0+82},QmdGmfFMf:{width:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 20px, 524px) - 48px)`,y:undefined},Sf8KrhhQp:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:62,y:(componentViewport?.y||0)+0+5409+100+0+0+0+0+112+5+0+82,children:/*#__PURE__*/_jsx(Container,{className:\"framer-9hc35o-container\",nodeId:\"v8kDAAbUq\",scopeId:\"jpwn_a0xU\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QmdGmfFMf:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(CommonAccordion,{BF66vilrd:getLocalizedValue(\"v70\",activeLocale)??\"Yes, we collaborate with agencies and managers who represent creators, streamlining the process for everyone involved. We handle design, production, billing, and store setup, providing a worry-free experience that meets the needs of both creators and their management teams.\",height:\"100%\",id:\"v8kDAAbUq\",layoutId:\"v8kDAAbUq\",PdZo4vt7Y:getLocalizedValue(\"v69\",activeLocale)??\"Does Vexels work with agencies or creator managers?\",variant:\"oO3Yiw797\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iXBbiMK8f:{y:(componentViewport?.y||0)+0+5436+80+0+0+0+0+78+5+332+0+164},QmdGmfFMf:{width:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 20px, 524px) - 48px)`,y:undefined},Sf8KrhhQp:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:62,y:(componentViewport?.y||0)+0+5409+100+0+0+0+0+112+5+0+164,children:/*#__PURE__*/_jsx(Container,{className:\"framer-zy8oek-container\",nodeId:\"e9T1Qrh2c\",scopeId:\"jpwn_a0xU\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QmdGmfFMf:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(CommonAccordion,{BF66vilrd:getLocalizedValue(\"v72\",activeLocale)??\"Once your store is live, our support doesn\u2019t end there. We provide ongoing assistance with updates, inventory management, and promotional strategies. Your account manager will continue to work closely with you to ensure your merch line\u2019s success and help you maximize sales.\",height:\"100%\",id:\"e9T1Qrh2c\",layoutId:\"e9T1Qrh2c\",PdZo4vt7Y:getLocalizedValue(\"v71\",activeLocale)??\"What happens after my merch store is launched?\",variant:\"oO3Yiw797\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iXBbiMK8f:{y:(componentViewport?.y||0)+0+5436+80+0+0+0+0+78+5+332+0+246},QmdGmfFMf:{width:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 20px, 524px) - 48px)`,y:undefined},Sf8KrhhQp:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:62,y:(componentViewport?.y||0)+0+5409+100+0+0+0+0+112+5+0+246,children:/*#__PURE__*/_jsx(Container,{className:\"framer-lg73py-container\",nodeId:\"uVmUDA1dy\",scopeId:\"jpwn_a0xU\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QmdGmfFMf:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(CommonAccordion,{BF66vilrd:getLocalizedValue(\"v74\",activeLocale)??\"Yes, we offer worldwide shipping. However, Printful has some restrictions due to legal or logistical limitations. Currently, we cannot ship to the following locations: Crimea, Luhansk, and Donetsk regions in Ukraine, Russia, Belarus, The Gaza Strip, Ecuador, Cuba, Iran, Syria, and North Korea.\",height:\"100%\",id:\"uVmUDA1dy\",layoutId:\"uVmUDA1dy\",PdZo4vt7Y:getLocalizedValue(\"v73\",activeLocale)??\"Is international shipping available?\",variant:\"oO3Yiw797\",width:\"100%\"})})})})})]})]})]})})})}),/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{iXBbiMK8f:{y:(componentViewport?.y||0)+0+6324},QmdGmfFMf:{y:undefined},Sf8KrhhQp:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:489,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+6069,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-11gcgre-container\",id:\"11gcgre\",nodeId:\"O89c9uFlk\",scopeId:\"jpwn_a0xU\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QmdGmfFMf:{variant:\"sqnUFODAU\"},Sf8KrhhQp:{variant:\"vG4dzDEoG\"}},children:/*#__PURE__*/_jsx(FooterFooter,{D8YUfXSZv:getLocalizedValue(\"v78\",activeLocale)??\"https://br.vexels.com/merch-for-creators/\",GHxkScVmI:getLocalizedValue(\"v77\",activeLocale)??\"https://de.vexels.com/merch-for-creators/\",GU9jDRrsc:getLocalizedValue(\"v75\",activeLocale)??\"https://www.vexels.com/merch-for-creators/\",height:\"100%\",hGJz0EPzb:hGJz0EPzb3bnx0g({overlay}),id:\"O89c9uFlk\",layoutId:\"O89c9uFlk\",rUK59Jk4Y:true,style:{width:\"100%\"},variant:\"bv3OpksFb\",width:\"100%\",zi4kTJPL5:getLocalizedValue(\"v76\",activeLocale)??\"https://es.vexels.com/merch-for-creators/\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-i48e82\"),\"data-framer-portal-id\":\"11gcgre\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"eCiK7WzVB\"),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QmdGmfFMf:{width:\"100vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"607px\",children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-14ddwgj-container\"),\"data-framer-portal-id\":\"11gcgre\",inComponentSlot:true,nodeId:\"cf2p50xaB\",rendersWithMotion:true,scopeId:\"jpwn_a0xU\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QmdGmfFMf:{variant:\"zT7Mb4DZq\"}},children:/*#__PURE__*/_jsx(ContactForm,{height:\"100%\",id:\"cf2p50xaB\",layoutId:\"cf2p50xaB\",style:{height:\"100%\",width:\"100%\"},variant:\"qy68T3TsO\",width:\"100%\"})})})})})]}),getContainer())})})]})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-5XTI2.framer-1i31yr, .framer-5XTI2 .framer-1i31yr { display: block; }\",\".framer-5XTI2.framer-h3e42f { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-5XTI2 .framer-k8ulor-container { flex: none; height: auto; position: sticky; top: 0px; width: 100%; z-index: 10; }\",\".framer-5XTI2 .framer-1bi0tgb { align-content: center; align-items: center; background-color: var(--token-99ddd8b5-423c-4cfa-8a5b-d15536b7abed, #1d1d1d); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-5XTI2 .framer-1g3a96a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-5XTI2 .framer-1a7n7ls, .framer-5XTI2 .framer-1abdqsd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-5XTI2 .framer-ratjen { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 618px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-5XTI2 .framer-vuu8yo, .framer-5XTI2 .framer-hfjfhs, .framer-5XTI2 .framer-1735myo { 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-5XTI2 .framer-vulya0-container { flex: none; height: auto; position: relative; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-5XTI2 .framer-1ctlfv8 { 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: center; overflow: visible; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-5XTI2 .framer-14sqjn2 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 0; }\",\".framer-5XTI2 .framer-ah68jy { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 110%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-5XTI2 .framer-1u720pv { 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; max-width: 506px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-5XTI2 .framer-jolqk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-5XTI2 .framer-10n2ckt-container { flex: none; height: auto; position: relative; width: 564px; }\",\".framer-5XTI2 .framer-slnat2-container, .framer-5XTI2 .framer-1wo60l7-container, .framer-5XTI2 .framer-1naapbv-container, .framer-5XTI2 .framer-ezena4-container, .framer-5XTI2 .framer-r8k7tb-container, .framer-5XTI2 .framer-108y4fr-container, .framer-5XTI2 .framer-ykd9k1-container, .framer-5XTI2 .framer-14776yf-container, .framer-5XTI2 .framer-r5y7ij-container, .framer-5XTI2 .framer-dwbb7v-container, .framer-5XTI2 .framer-f6lk4k-container, .framer-5XTI2 .framer-s4nc5r-container, .framer-5XTI2 .framer-15kujdy-container, .framer-5XTI2 .framer-hb3814-container, .framer-5XTI2 .framer-c2h7dt-container, .framer-5XTI2 .framer-3zj5i7-container, .framer-5XTI2 .framer-11x363l-container, .framer-5XTI2 .framer-ok2gww-container, .framer-5XTI2 .framer-r6vq2z-container, .framer-5XTI2 .framer-1yahfn3-container, .framer-5XTI2 .framer-668qf8-container, .framer-5XTI2 .framer-jttlol-container, .framer-5XTI2 .framer-1kdx7ud-container, .framer-5XTI2 .framer-15yn6u3-container, .framer-5XTI2 .framer-9hc35o-container, .framer-5XTI2 .framer-zy8oek-container, .framer-5XTI2 .framer-lg73py-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-5XTI2 .framer-mn5r88 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 30px 0px 30px 0px; position: relative; width: 1px; }\",\".framer-5XTI2 .framer-1hm95uz { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: -8px 5px 4px 0px rgba(0, 0, 0, 0.13); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 105px; justify-content: center; left: calc(80.33333333333336% - 154px / 2); overflow: hidden; padding: 2px; position: absolute; top: calc(38.27160493827162% - 105px / 2); width: 154px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-5XTI2 .framer-3p4bck { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: center; overflow: hidden; padding: 11px; position: relative; width: min-content; z-index: 1; }\",\".framer-5XTI2 .framer-ejmt0t { align-self: stretch; flex: 1 0 0px; height: 1px; overflow: visible; position: relative; width: auto; }\",\".framer-5XTI2 .framer-s15o1b-container { flex: none; height: auto; left: 49%; position: absolute; top: 58%; transform: translate(-50%, -50%); width: auto; }\",\".framer-5XTI2 .framer-ihhoq1, .framer-5XTI2 .framer-1d71ke0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-5XTI2 .framer-7t23wo, .framer-5XTI2 .framer-10moj2h, .framer-5XTI2 .framer-1sz7buf { flex: none; height: 17px; overflow: hidden; position: relative; width: 19px; z-index: 1; }\",\".framer-5XTI2 .framer-1npamr3, .framer-5XTI2 .framer-16x83hr, .framer-5XTI2 .framer-lpt7wc, .framer-5XTI2 .framer-3yh9b8, .framer-5XTI2 .framer-xz28gs { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-5XTI2 .framer-1g8jcpu { flex: none; height: 507px; overflow: visible; position: relative; transform-style: preserve-3d; width: 343px; }\",\".framer-5XTI2 .framer-1kd4bc6-container { flex: none; height: 453px; left: calc(49.85422740524783% - 277px / 2); position: absolute; top: calc(51.67652859960554% - 453px / 2); width: 277px; }\",\".framer-5XTI2 .framer-m5umdd-container { bottom: -26px; flex: none; left: -94px; pointer-events: none; position: absolute; right: -94px; top: -26px; z-index: 10; }\",\".framer-5XTI2 .framer-1pi91uv { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 100px 0px 50px 0px; position: relative; width: 100%; }\",\".framer-5XTI2 .framer-1t3yoqx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-5XTI2 .framer-1v0d6su { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 75%; word-break: break-word; word-wrap: break-word; }\",\".framer-5XTI2 .framer-1maxop { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-5XTI2 .framer-9wjzqm, .framer-5XTI2 .framer-10ymxmd, .framer-5XTI2 .framer-if6swz, .framer-5XTI2 .framer-15ohk6q { align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 40px; position: relative; text-decoration: none; width: 1px; }\",\".framer-5XTI2 .framer-vc71l1 { -webkit-filter: drop-shadow(1px 3px 3px rgba(0, 0, 0, 0.25)); filter: drop-shadow(1px 3px 3px rgba(0, 0, 0, 0.25)); flex: none; height: 60px; left: calc(50.17543859649125% - 106px / 2); position: absolute; top: -6px; width: 106px; z-index: 1; }\",\".framer-5XTI2 .framer-1meqzkx-container, .framer-5XTI2 .framer-v1z2mn-container, .framer-5XTI2 .framer-1ywpa6o-container, .framer-5XTI2 .framer-8urozc-container, .framer-5XTI2 .framer-zv4sf8-container, .framer-5XTI2 .framer-m362ri-container { flex: none; height: auto; left: 67%; position: absolute; top: 38%; transform: translate(-50%, -50%); width: auto; }\",\".framer-5XTI2 .framer-60t1uo, .framer-5XTI2 .framer-1e44mkz, .framer-5XTI2 .framer-ziyrln, .framer-5XTI2 .framer-1wmq2ph, .framer-5XTI2 .framer-ucigsv, .framer-5XTI2 .framer-1ng7hcz { align-content: center; align-items: center; aspect-ratio: 1.303030303030303 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 200px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 261px; }\",\".framer-5XTI2 .framer-f7wh1q, .framer-5XTI2 .framer-5vfb3k, .framer-5XTI2 .framer-h2fpbv, .framer-5XTI2 .framer-f072co { --border-bottom-width: 1px; --border-color: rgba(34, 34, 34, 0.15); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-filter: hue-rotate(0deg); aspect-ratio: 1.0497512437810945 / 1; border-bottom-left-radius: 200px; border-bottom-right-radius: 200px; border-top-left-radius: 200px; border-top-right-radius: 200px; box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.15); filter: hue-rotate(0deg); flex: none; height: 100%; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 209px); }\",\".framer-5XTI2 .framer-kurdbu, .framer-5XTI2 .framer-12w6jqo, .framer-5XTI2 .framer-nrys73, .framer-5XTI2 .framer-1er789z, .framer-5XTI2 .framer-1svc5po, .framer-5XTI2 .framer-1ujt2k1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 120%; }\",\".framer-5XTI2 .framer-algvaf, .framer-5XTI2 .framer-f0rkqj, .framer-5XTI2 .framer-zsg03s, .framer-5XTI2 .framer-1n7htjm, .framer-5XTI2 .framer-1rr3mq9, .framer-5XTI2 .framer-131wx4i { align-content: center; align-items: center; display: flex; flex: 1.2 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-5XTI2 .framer-1q8c7vi, .framer-5XTI2 .framer-1ruj0uv, .framer-5XTI2 .framer-1sy5vba, .framer-5XTI2 .framer-uytpxz, .framer-5XTI2 .framer-l17ojp, .framer-5XTI2 .framer-g46bcm { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-5XTI2 .framer-lbyljr { -webkit-filter: drop-shadow(1px 3px 3px rgba(0, 0, 0, 0.25)); filter: drop-shadow(1px 3px 3px rgba(0, 0, 0, 0.25)); flex: none; height: 60px; left: 65px; position: absolute; top: -1px; width: 106px; z-index: 1; }\",\".framer-5XTI2 .framer-1dy8my6 { -webkit-filter: drop-shadow(1px 3px 3px rgba(0, 0, 0, 0.25)); filter: drop-shadow(1px 3px 3px rgba(0, 0, 0, 0.25)); flex: none; height: 60px; left: 131px; position: absolute; top: 6px; width: 106px; z-index: 1; }\",\".framer-5XTI2 .framer-1lewx6a { -webkit-filter: drop-shadow(1px 3px 3px rgba(0, 0, 0, 0.25)); filter: drop-shadow(1px 3px 3px rgba(0, 0, 0, 0.25)); flex: none; height: 60px; left: calc(47.3684210526316% - 106px / 2); position: absolute; top: -1px; width: 106px; z-index: 1; }\",\".framer-5XTI2 .framer-14ny41 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-5XTI2 .framer-14ey1km, .framer-5XTI2 .framer-vvu27f { align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 40px; position: relative; width: 1px; }\",\".framer-5XTI2 .framer-8rt0cs { -webkit-filter: drop-shadow(1px 3px 3px rgba(0, 0, 0, 0.25)); filter: drop-shadow(1px 3px 3px rgba(0, 0, 0, 0.25)); flex: none; height: 60px; left: 93px; position: absolute; top: 0px; width: 106px; z-index: 1; }\",\".framer-5XTI2 .framer-1wv8fkw, .framer-5XTI2 .framer-19vjhl2 { --border-bottom-width: 1px; --border-color: rgba(34, 34, 34, 0.15); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-filter: hue-rotate(0deg); aspect-ratio: 1.0497512437810945 / 1; border-bottom-left-radius: 200px; border-bottom-right-radius: 200px; border-top-left-radius: 200px; border-top-right-radius: 200px; box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.15); filter: hue-rotate(0deg); flex: none; height: 100%; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 210px); }\",\".framer-5XTI2 .framer-evsmuh { -webkit-filter: drop-shadow(1px 3px 3px rgba(0, 0, 0, 0.25)); filter: drop-shadow(1px 3px 3px rgba(0, 0, 0, 0.25)); flex: none; height: 60px; left: calc(47.07602339181289% - 106px / 2); position: absolute; top: 2px; width: 106px; z-index: 1; }\",\".framer-5XTI2 .framer-1kq2388 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 60px 0px 50px 0px; position: relative; width: 100%; }\",\".framer-5XTI2 .framer-1jjdtgb, .framer-5XTI2 .framer-1lkqtif { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-5XTI2 .framer-j2zven, .framer-5XTI2 .framer-w1a45a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-5XTI2 .framer-6ymlpa, .framer-5XTI2 .framer-xjaw6i { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 522px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-5XTI2 .framer-y01qi5, .framer-5XTI2 .framer-1cpl3pi { 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: center; max-width: 448px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-5XTI2 .framer-15sdk7w, .framer-5XTI2 .framer-c109w4, .framer-5XTI2 .framer-u7a3or { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-5XTI2 .framer-11yk7qz { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; z-index: 0; }\",\".framer-5XTI2 .framer-elvpqx { flex: none; height: auto; max-width: 470px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-5XTI2 .framer-jjy50g { align-content: center; align-items: center; aspect-ratio: 0.8483920367534457 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 589px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 42%; }\",\".framer-5XTI2 .framer-hsik4e { flex: none; height: 452px; left: 56px; position: absolute; top: calc(51.90082644628101% - 452px / 2); width: 347px; z-index: 0; }\",\".framer-5XTI2 .framer-rbq84t { -webkit-filter: drop-shadow(4px -4px 2px rgba(0, 0, 0, 0.13)); bottom: 16px; filter: drop-shadow(4px -4px 2px rgba(0, 0, 0, 0.13)); flex: none; height: 248px; left: -62px; overflow: visible; position: absolute; width: 198px; z-index: 0; }\",\".framer-5XTI2 .framer-o44fzr { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; height: 430px; left: -96px; overflow: visible; position: absolute; top: -49px; width: 204px; z-index: 0; }\",\".framer-5XTI2 .framer-11gim4k { -webkit-filter: drop-shadow(-8px 5px 2px rgba(0, 0, 0, 0.13)); filter: drop-shadow(-8px 5px 2px rgba(0, 0, 0, 0.13)); flex: none; height: 236px; left: 293px; overflow: visible; position: absolute; top: -19px; width: 195px; z-index: 0; }\",\".framer-5XTI2 .framer-10gohr6 { --border-bottom-width: 1px; --border-color: var(--token-24a2205e-85d4-4a2f-90b7-7973ab26b468, #1a1a1a); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; bottom: 37px; box-shadow: -8px 5px 4px 0px rgba(0, 0, 0, 0.13); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 51px; justify-content: center; left: 755px; overflow: hidden; padding: 2px; position: absolute; width: 182px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-5XTI2 .framer-10n2x5n, .framer-5XTI2 .framer-cpxb2j { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: 100%; justify-content: center; overflow: hidden; padding: 19px; position: relative; width: min-content; z-index: 1; }\",\".framer-5XTI2 .framer-kgi2qr, .framer-5XTI2 .framer-tjqkrs, .framer-5XTI2 .framer-oy6kmc, .framer-5XTI2 .framer-12wngc1, .framer-5XTI2 .framer-wmuwn2, .framer-5XTI2 .framer-41loi4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-5XTI2 .framer-86ms1 { --border-bottom-width: 1px; --border-color: var(--token-24a2205e-85d4-4a2f-90b7-7973ab26b468, #1a1a1a); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; bottom: 177px; box-shadow: -8px 5px 4px 0px rgba(0, 0, 0, 0.13); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 51px; justify-content: center; overflow: hidden; padding: 2px; position: absolute; right: -43px; width: 236px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-5XTI2 .framer-1xggn2m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-5XTI2 .framer-13ul8v6-container { flex: none; height: 264px; position: relative; width: 100%; }\",\".framer-5XTI2 .framer-1efw8hy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-5XTI2 .framer-bisqe2, .framer-5XTI2 .framer-8pw3xu { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-5XTI2 .framer-1pwkjwp { align-content: center; align-items: center; aspect-ratio: 0.8483920367534457 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 609px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 43%; }\",\".framer-5XTI2 .framer-11xmoz4 { aspect-ratio: 0.8480138169257341 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 579px); left: 50%; position: absolute; top: 52%; transform: translate(-50%, -50%); width: 491px; z-index: 1; }\",\".framer-5XTI2 .framer-1kgvo5f { flex: none; height: 70px; left: calc(87.01550387596902% - 70px / 2); position: absolute; top: calc(41.87192118226603% - 70px / 2); width: 70px; z-index: 1; }\",\".framer-5XTI2 .framer-j3af4m { flex: none; height: 217px; left: calc(17.054263565891496% - 186px / 2); position: absolute; top: calc(31.527093596059135% - 217px / 2); width: 186px; z-index: 1; }\",\".framer-5XTI2 .framer-qpu9ax { flex: none; height: 299px; left: calc(82.75193798449615% - 256px / 2); position: absolute; top: calc(70.4433497536946% - 299px / 2); width: 256px; z-index: 1; }\",\".framer-5XTI2 .framer-1g3mjhq { --border-bottom-width: 1px; --border-color: var(--token-24a2205e-85d4-4a2f-90b7-7973ab26b468, #1a1a1a); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: -8px 5px 4px 0px rgba(0, 0, 0, 0.13); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 148px; justify-content: center; overflow: hidden; padding: 2px; position: absolute; right: -4px; top: 0px; width: 192px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-5XTI2 .framer-1mbr4v4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: center; overflow: hidden; padding: 11px; position: relative; width: 185px; z-index: 1; }\",\".framer-5XTI2 .framer-17t5bkx, .framer-5XTI2 .framer-j75xm8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; left: 16px; overflow: hidden; padding: 0px; position: absolute; top: 13px; width: min-content; z-index: 1; }\",\".framer-5XTI2 .framer-i6j0tr { flex: 1 0 0px; height: 1px; overflow: visible; position: relative; width: 100%; }\",\".framer-5XTI2 .framer-1i57pci-container { flex: none; height: 132px; left: calc(50.30674846625769% - 142px / 2); position: absolute; top: calc(50.00000000000002% - 132px / 2); width: 142px; z-index: 0; }\",\".framer-5XTI2 .framer-roa2w0 { height: 156px; position: relative; width: 163px; }\",\".framer-5XTI2 .framer-52i6y0 { bottom: 11px; flex: none; height: 93px; left: -3px; opacity: 0.29; overflow: hidden; position: absolute; right: 0px; z-index: 1; }\",\".framer-5XTI2 .framer-lpnvoi { flex: none; height: 2px; left: calc(50.00000000000002% - 147px / 2); position: absolute; top: calc(7.52688172043013% - 2px / 2); width: 147px; }\",\".framer-5XTI2 .framer-uu0jx5, .framer-5XTI2 .framer-1k3oy5c { flex: none; height: 3px; left: calc(50.00000000000002% - 148px / 2); position: absolute; top: calc(26.88172043010755% - 3px / 2); width: 148px; }\",\".framer-5XTI2 .framer-1j9dyme, .framer-5XTI2 .framer-s3oczd { flex: none; height: 3px; left: calc(50.00000000000002% - 148px / 2); position: absolute; top: calc(46.236559139784966% - 3px / 2); width: 148px; }\",\".framer-5XTI2 .framer-s4kqmh, .framer-5XTI2 .framer-m4k5cl { flex: none; height: 3px; left: calc(50.00000000000002% - 148px / 2); position: absolute; top: calc(65.59139784946238% - 3px / 2); width: 148px; }\",\".framer-5XTI2 .framer-1unzmtk { flex: none; height: 3px; left: calc(50.00000000000002% - 148px / 2); position: absolute; top: calc(84.9462365591398% - 3px / 2); width: 148px; }\",\".framer-5XTI2 .framer-cdvfhc { --border-bottom-width: 1px; --border-color: var(--token-24a2205e-85d4-4a2f-90b7-7973ab26b468, #1a1a1a); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; bottom: 11px; box-shadow: -8px 5px 4px 0px rgba(0, 0, 0, 0.13); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; justify-content: center; left: 34px; overflow: hidden; padding: 2px; position: absolute; right: 316px; top: 483px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-5XTI2 .framer-10cnt2j { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: center; overflow: hidden; padding: 11px; position: relative; width: 175px; z-index: 1; }\",\".framer-5XTI2 .framer-5xb0hv { aspect-ratio: 2.021505376344086 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 93px); left: 49%; opacity: 0.29; overflow: hidden; position: absolute; top: 59%; transform: translate(-50%, -50%); width: 188px; z-index: 1; }\",\".framer-5XTI2 .framer-k2ozdq-container { aspect-ratio: 1.7142857142857142 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 80px); left: 50%; position: absolute; top: 55%; transform: translate(-50%, -50%); width: 136px; z-index: 2; }\",\".framer-5XTI2 .framer-1v1rvmo { height: 80px; position: relative; width: 129px; }\",\".framer-5XTI2 .framer-cy1l59 { flex: none; height: 70px; left: calc(17.248062015503898% - 70px / 2); position: absolute; top: calc(5.911330049261106% - 70px / 2); width: 70px; z-index: 1; }\",\".framer-5XTI2 .framer-t8o3st { flex: none; height: 52px; left: calc(48.2558139534884% - 44px / 2); position: absolute; top: calc(-0.8210180623973505% - 52px / 2); width: 44px; z-index: 1; }\",\".framer-5XTI2 .framer-1p5h2na { flex: none; height: 62px; left: calc(12.596899224806224% - 62px / 2); position: absolute; top: calc(63.3825944170772% - 62px / 2); width: 62px; z-index: 1; }\",\".framer-5XTI2 .framer-cv473y { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 50%; }\",\".framer-5XTI2 .framer-18f0kfp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; max-width: 610px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-5XTI2 .framer-1bvjvhu { 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; max-width: 487px; overflow: visible; padding: 11px 0px 11px 0px; position: relative; width: 100%; }\",\".framer-5XTI2 .framer-15ik02v { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 2; }\",\".framer-5XTI2 .framer-4gwgy7, .framer-5XTI2 .framer-1ebm5n0 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-5XTI2 .framer-8ir2cc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 50px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-5XTI2 .framer-f5lccu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-5XTI2 .framer-khv73l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-evenly; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-5XTI2 .framer-72btub, .framer-5XTI2 .framer-1jb5dda, .framer-5XTI2 .framer-pfsfre, .framer-5XTI2 .framer-rr9vwd { flex: none; height: 50px; position: relative; width: 50px; }\",\".framer-5XTI2 .framer-2s6v3q, .framer-5XTI2 .framer-1jxrpe9, .framer-5XTI2 .framer-17or8mo, .framer-5XTI2 .framer-edw4rx { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 31px; position: relative; white-space: pre-wrap; width: 107px; word-break: break-word; word-wrap: break-word; }\",\".framer-5XTI2 .framer-1l0azu1 { align-content: center; align-items: center; background-color: var(--token-99ddd8b5-423c-4cfa-8a5b-d15536b7abed, #211e1c); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 50px 0px 50px 0px; position: relative; width: 100%; }\",\".framer-5XTI2 .framer-1iygvlo { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 20px; position: relative; width: 1px; }\",\".framer-5XTI2 .framer-236l1r { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 19px; height: min-content; justify-content: center; max-width: 700px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-5XTI2 .framer-1i8rlhc, .framer-5XTI2 .framer-1w7cz0p { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 535px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-5XTI2 .framer-1oblwkl, .framer-5XTI2 .framer-tjhziu, .framer-5XTI2 .framer-89c80s, .framer-5XTI2 .framer-tjldka { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-5XTI2 .framer-1rs03rg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 30px 20px 30px 20px; position: relative; width: 100%; }\",\".framer-5XTI2 .framer-8t888w { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 75px; height: min-content; justify-content: center; overflow: hidden; padding: 20px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-5XTI2 .framer-1tmwymj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 10px; position: relative; width: min-content; }\",\".framer-5XTI2 .framer-1mwx6pq-container, .framer-5XTI2 .framer-m9ilwa-container, .framer-5XTI2 .framer-1p6hi1t-container { flex: none; height: auto; position: relative; width: 292px; }\",\".framer-5XTI2 .framer-zt944t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 70px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-5XTI2 .framer-4wzg1f { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; z-index: 2; }\",\".framer-5XTI2 .framer-18ln6o3 { flex: none; height: auto; max-width: 431px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-5XTI2 .framer-15hpohw { align-content: center; align-items: center; aspect-ratio: 0.8483920367534457 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 642px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 45%; }\",\".framer-5XTI2 .framer-zcd4ge { -webkit-filter: drop-shadow(4px -2px 2px rgba(0, 0, 0, 0.13)); filter: drop-shadow(4px -2px 2px rgba(0, 0, 0, 0.13)); flex: none; height: 337px; left: 273px; position: absolute; top: 32px; width: 227px; z-index: 1; }\",\".framer-5XTI2 .framer-je2mxh { -webkit-filter: drop-shadow(4px -2px 2px rgba(0, 0, 0, 0.13)); filter: drop-shadow(4px -2px 2px rgba(0, 0, 0, 0.13)); flex: none; height: 337px; left: 16px; position: absolute; top: 10px; width: 235px; z-index: 1; }\",\".framer-5XTI2 .framer-kpggks { -webkit-filter: drop-shadow(4px -2px 2px rgba(0, 0, 0, 0.13)); bottom: 10px; filter: drop-shadow(4px -2px 2px rgba(0, 0, 0, 0.13)); flex: none; height: 332px; left: 258px; position: absolute; width: 221px; z-index: 1; }\",\".framer-5XTI2 .framer-dgn47b { -webkit-filter: drop-shadow(4px -2px 2px rgba(0, 0, 0, 0.13)); bottom: -6px; filter: drop-shadow(4px -2px 2px rgba(0, 0, 0, 0.13)); flex: none; height: 311px; left: -8px; position: absolute; width: 258px; z-index: 1; }\",\".framer-5XTI2 .framer-x8t551 { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 1px 3px 7px 0px rgba(0, 0, 0, 0.25); flex: none; height: 46px; left: -77px; position: absolute; top: calc(45.878693623639215% - 46.081562406797445px / 2); width: 211px; z-index: 1; }\",\".framer-5XTI2 .framer-1m26sjs { -webkit-filter: drop-shadow(1px 3px 3px rgba(0, 0, 0, 0.25)); filter: drop-shadow(1px 3px 3px rgba(0, 0, 0, 0.25)); flex: none; height: 60px; left: calc(4.220183486238555% - 106px / 2); position: absolute; top: calc(3.1152647975078103% - 60px / 2); width: 106px; z-index: 1; }\",\".framer-5XTI2 .framer-1klb343-container, .framer-5XTI2 .framer-osmw5y-container { flex: none; height: auto; left: 65%; position: absolute; top: 37%; transform: translate(-50%, -50%); width: auto; }\",\".framer-5XTI2 .framer-9djwng { -webkit-filter: drop-shadow(1px 3px 3px rgba(0, 0, 0, 0.25)); filter: drop-shadow(1px 3px 3px rgba(0, 0, 0, 0.25)); flex: none; height: 60px; left: calc(86.78899082568809% - 106px / 2); position: absolute; top: calc(60.5919003115265% - 60px / 2); width: 106px; z-index: 1; }\",\".framer-5XTI2 .framer-1rldw6d { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; bottom: 52px; box-shadow: 1px 3px 7px 0px rgba(0, 0, 0, 0.25); flex: none; height: 42px; position: absolute; right: -30px; width: 211px; z-index: 1; }\",\".framer-5XTI2 .framer-1qszxa5 { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 1px 3px 7px 0px rgba(0, 0, 0, 0.25); flex: none; height: 46px; position: absolute; right: -43px; top: 18px; width: 211px; z-index: 1; }\",\".framer-5XTI2 .framer-o64p79 { align-content: center; align-items: center; background-color: #1d1d1d; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 30px; position: relative; width: 100%; }\",\".framer-5XTI2 .framer-vh6p6i-container { flex: 1 0 0px; height: 574px; position: relative; width: 1px; }\",\".framer-5XTI2 .framer-1nwgoby, .framer-5XTI2 .framer-1fvifaq { align-content: center; align-items: center; background-color: var(--token-99ddd8b5-423c-4cfa-8a5b-d15536b7abed, #211e1c); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 60px 0px 40px 0px; position: relative; width: 100%; }\",\".framer-5XTI2 .framer-13j5ml1, .framer-5XTI2 .framer-1651m32 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 40px 0px 40px; position: relative; width: 1px; }\",\".framer-5XTI2 .framer-1bsi5bg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 19px; height: min-content; justify-content: center; max-width: 700px; overflow: visible; padding: 0px 0px 10px 0px; position: relative; width: 100%; }\",\".framer-5XTI2 .framer-12h08wr, .framer-5XTI2 .framer-gx3tsq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 30px 0px 30px 0px; position: relative; width: 912px; }\",\".framer-5XTI2 .framer-1yaz8yt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 20px 0px 20px 0px; position: relative; width: min-content; }\",\".framer-5XTI2 .framer-17p01f6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 19px; height: min-content; justify-content: center; max-width: 700px; overflow: visible; padding: 0px 0px 10px 0px; position: relative; width: 479px; }\",\".framer-5XTI2 .framer-1vwoqpg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 20px 0px 20px 0px; position: relative; width: min-content; }\",\".framer-5XTI2 .framer-wnwfp3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 20px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-5XTI2 .framer-j3l7iu { align-content: center; align-items: center; background-color: rgba(249, 249, 249, 0.7); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 100px 0px 130px 0px; position: relative; width: 100%; }\",\".framer-5XTI2 .framer-f0ms24 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1356px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-5XTI2 .framer-15fofzz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 72px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-5XTI2 .framer-1autepm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-5XTI2 .framer-dkuy0k { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-5XTI2 .framer-78mmww { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 5px 0px 5px 0px; position: relative; width: 100%; }\",\".framer-5XTI2 .framer-19mloh1, .framer-5XTI2 .framer-1yzosee { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-5XTI2 .framer-11gcgre-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-5XTI2.framer-i48e82 { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 5; }\",\".framer-5XTI2.framer-14ddwgj-container { flex: none; height: 500px; left: calc(49.93055555555558% - 607px / 2); position: fixed; top: calc(50.00000000000002% - 500px / 2); width: 607px; z-index: 5; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-5XTI2.framer-h3e42f, .framer-5XTI2 .framer-1bi0tgb, .framer-5XTI2 .framer-1g3a96a, .framer-5XTI2 .framer-ratjen, .framer-5XTI2 .framer-vuu8yo, .framer-5XTI2 .framer-1ctlfv8, .framer-5XTI2 .framer-1u720pv, .framer-5XTI2 .framer-jolqk, .framer-5XTI2 .framer-mn5r88, .framer-5XTI2 .framer-1hm95uz, .framer-5XTI2 .framer-3p4bck, .framer-5XTI2 .framer-ihhoq1, .framer-5XTI2 .framer-1pi91uv, .framer-5XTI2 .framer-1t3yoqx, .framer-5XTI2 .framer-1maxop, .framer-5XTI2 .framer-9wjzqm, .framer-5XTI2 .framer-60t1uo, .framer-5XTI2 .framer-kurdbu, .framer-5XTI2 .framer-algvaf, .framer-5XTI2 .framer-10ymxmd, .framer-5XTI2 .framer-1e44mkz, .framer-5XTI2 .framer-12w6jqo, .framer-5XTI2 .framer-f0rkqj, .framer-5XTI2 .framer-if6swz, .framer-5XTI2 .framer-ziyrln, .framer-5XTI2 .framer-nrys73, .framer-5XTI2 .framer-zsg03s, .framer-5XTI2 .framer-15ohk6q, .framer-5XTI2 .framer-1wmq2ph, .framer-5XTI2 .framer-1er789z, .framer-5XTI2 .framer-1n7htjm, .framer-5XTI2 .framer-14ny41, .framer-5XTI2 .framer-14ey1km, .framer-5XTI2 .framer-ucigsv, .framer-5XTI2 .framer-1svc5po, .framer-5XTI2 .framer-1rr3mq9, .framer-5XTI2 .framer-vvu27f, .framer-5XTI2 .framer-1ng7hcz, .framer-5XTI2 .framer-1ujt2k1, .framer-5XTI2 .framer-131wx4i, .framer-5XTI2 .framer-1kq2388, .framer-5XTI2 .framer-1jjdtgb, .framer-5XTI2 .framer-6ymlpa, .framer-5XTI2 .framer-y01qi5, .framer-5XTI2 .framer-hfjfhs, .framer-5XTI2 .framer-15sdk7w, .framer-5XTI2 .framer-jjy50g, .framer-5XTI2 .framer-10gohr6, .framer-5XTI2 .framer-10n2x5n, .framer-5XTI2 .framer-kgi2qr, .framer-5XTI2 .framer-1d71ke0, .framer-5XTI2 .framer-86ms1, .framer-5XTI2 .framer-cpxb2j, .framer-5XTI2 .framer-tjqkrs, .framer-5XTI2 .framer-1xggn2m, .framer-5XTI2 .framer-1efw8hy, .framer-5XTI2 .framer-bisqe2, .framer-5XTI2 .framer-1pwkjwp, .framer-5XTI2 .framer-1g3mjhq, .framer-5XTI2 .framer-1mbr4v4, .framer-5XTI2 .framer-17t5bkx, .framer-5XTI2 .framer-cdvfhc, .framer-5XTI2 .framer-10cnt2j, .framer-5XTI2 .framer-j75xm8, .framer-5XTI2 .framer-cv473y, .framer-5XTI2 .framer-18f0kfp, .framer-5XTI2 .framer-1bvjvhu, .framer-5XTI2 .framer-8ir2cc, .framer-5XTI2 .framer-8pw3xu, .framer-5XTI2 .framer-f5lccu, .framer-5XTI2 .framer-oy6kmc, .framer-5XTI2 .framer-12wngc1, .framer-5XTI2 .framer-wmuwn2, .framer-5XTI2 .framer-41loi4, .framer-5XTI2 .framer-1l0azu1, .framer-5XTI2 .framer-1iygvlo, .framer-5XTI2 .framer-236l1r, .framer-5XTI2 .framer-1rs03rg, .framer-5XTI2 .framer-8t888w, .framer-5XTI2 .framer-1tmwymj, .framer-5XTI2 .framer-zt944t, .framer-5XTI2 .framer-1lkqtif, .framer-5XTI2 .framer-xjaw6i, .framer-5XTI2 .framer-1cpl3pi, .framer-5XTI2 .framer-1735myo, .framer-5XTI2 .framer-c109w4, .framer-5XTI2 .framer-15hpohw, .framer-5XTI2 .framer-o64p79, .framer-5XTI2 .framer-1nwgoby, .framer-5XTI2 .framer-13j5ml1, .framer-5XTI2 .framer-1bsi5bg, .framer-5XTI2 .framer-12h08wr, .framer-5XTI2 .framer-1yaz8yt, .framer-5XTI2 .framer-1fvifaq, .framer-5XTI2 .framer-1651m32, .framer-5XTI2 .framer-17p01f6, .framer-5XTI2 .framer-gx3tsq, .framer-5XTI2 .framer-1vwoqpg, .framer-5XTI2 .framer-wnwfp3, .framer-5XTI2 .framer-j3l7iu, .framer-5XTI2 .framer-f0ms24, .framer-5XTI2 .framer-15fofzz, .framer-5XTI2 .framer-1autepm, .framer-5XTI2 .framer-u7a3or, .framer-5XTI2 .framer-78mmww, .framer-5XTI2 .framer-19mloh1, .framer-5XTI2 .framer-1yzosee { gap: 0px; } .framer-5XTI2.framer-h3e42f > *, .framer-5XTI2 .framer-1bi0tgb > *, .framer-5XTI2 .framer-1g3a96a > *, .framer-5XTI2 .framer-mn5r88 > *, .framer-5XTI2 .framer-3p4bck > *, .framer-5XTI2 .framer-1jjdtgb > *, .framer-5XTI2 .framer-bisqe2 > *, .framer-5XTI2 .framer-1mbr4v4 > *, .framer-5XTI2 .framer-10cnt2j > *, .framer-5XTI2 .framer-8pw3xu > *, .framer-5XTI2 .framer-1iygvlo > *, .framer-5XTI2 .framer-1lkqtif > *, .framer-5XTI2 .framer-13j5ml1 > *, .framer-5XTI2 .framer-12h08wr > *, .framer-5XTI2 .framer-1651m32 > *, .framer-5XTI2 .framer-gx3tsq > *, .framer-5XTI2 .framer-f0ms24 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-5XTI2.framer-h3e42f > :first-child, .framer-5XTI2 .framer-1bi0tgb > :first-child, .framer-5XTI2 .framer-1g3a96a > :first-child, .framer-5XTI2 .framer-ratjen > :first-child, .framer-5XTI2 .framer-vuu8yo > :first-child, .framer-5XTI2 .framer-1ctlfv8 > :first-child, .framer-5XTI2 .framer-1u720pv > :first-child, .framer-5XTI2 .framer-mn5r88 > :first-child, .framer-5XTI2 .framer-3p4bck > :first-child, .framer-5XTI2 .framer-1pi91uv > :first-child, .framer-5XTI2 .framer-1t3yoqx > :first-child, .framer-5XTI2 .framer-9wjzqm > :first-child, .framer-5XTI2 .framer-algvaf > :first-child, .framer-5XTI2 .framer-10ymxmd > :first-child, .framer-5XTI2 .framer-f0rkqj > :first-child, .framer-5XTI2 .framer-if6swz > :first-child, .framer-5XTI2 .framer-zsg03s > :first-child, .framer-5XTI2 .framer-15ohk6q > :first-child, .framer-5XTI2 .framer-1n7htjm > :first-child, .framer-5XTI2 .framer-14ey1km > :first-child, .framer-5XTI2 .framer-1rr3mq9 > :first-child, .framer-5XTI2 .framer-vvu27f > :first-child, .framer-5XTI2 .framer-131wx4i > :first-child, .framer-5XTI2 .framer-1jjdtgb > :first-child, .framer-5XTI2 .framer-6ymlpa > :first-child, .framer-5XTI2 .framer-y01qi5 > :first-child, .framer-5XTI2 .framer-hfjfhs > :first-child, .framer-5XTI2 .framer-jjy50g > :first-child, .framer-5XTI2 .framer-bisqe2 > :first-child, .framer-5XTI2 .framer-1pwkjwp > :first-child, .framer-5XTI2 .framer-1mbr4v4 > :first-child, .framer-5XTI2 .framer-10cnt2j > :first-child, .framer-5XTI2 .framer-cv473y > :first-child, .framer-5XTI2 .framer-18f0kfp > :first-child, .framer-5XTI2 .framer-1bvjvhu > :first-child, .framer-5XTI2 .framer-8pw3xu > :first-child, .framer-5XTI2 .framer-f5lccu > :first-child, .framer-5XTI2 .framer-1iygvlo > :first-child, .framer-5XTI2 .framer-236l1r > :first-child, .framer-5XTI2 .framer-1rs03rg > :first-child, .framer-5XTI2 .framer-1lkqtif > :first-child, .framer-5XTI2 .framer-xjaw6i > :first-child, .framer-5XTI2 .framer-1cpl3pi > :first-child, .framer-5XTI2 .framer-1735myo > :first-child, .framer-5XTI2 .framer-15hpohw > :first-child, .framer-5XTI2 .framer-13j5ml1 > :first-child, .framer-5XTI2 .framer-1bsi5bg > :first-child, .framer-5XTI2 .framer-12h08wr > :first-child, .framer-5XTI2 .framer-1yaz8yt > :first-child, .framer-5XTI2 .framer-1651m32 > :first-child, .framer-5XTI2 .framer-17p01f6 > :first-child, .framer-5XTI2 .framer-gx3tsq > :first-child, .framer-5XTI2 .framer-j3l7iu > :first-child, .framer-5XTI2 .framer-f0ms24 > :first-child, .framer-5XTI2 .framer-15fofzz > :first-child, .framer-5XTI2 .framer-1autepm > :first-child, .framer-5XTI2 .framer-19mloh1 > :first-child, .framer-5XTI2 .framer-1yzosee > :first-child { margin-top: 0px; } .framer-5XTI2.framer-h3e42f > :last-child, .framer-5XTI2 .framer-1bi0tgb > :last-child, .framer-5XTI2 .framer-1g3a96a > :last-child, .framer-5XTI2 .framer-ratjen > :last-child, .framer-5XTI2 .framer-vuu8yo > :last-child, .framer-5XTI2 .framer-1ctlfv8 > :last-child, .framer-5XTI2 .framer-1u720pv > :last-child, .framer-5XTI2 .framer-mn5r88 > :last-child, .framer-5XTI2 .framer-3p4bck > :last-child, .framer-5XTI2 .framer-1pi91uv > :last-child, .framer-5XTI2 .framer-1t3yoqx > :last-child, .framer-5XTI2 .framer-9wjzqm > :last-child, .framer-5XTI2 .framer-algvaf > :last-child, .framer-5XTI2 .framer-10ymxmd > :last-child, .framer-5XTI2 .framer-f0rkqj > :last-child, .framer-5XTI2 .framer-if6swz > :last-child, .framer-5XTI2 .framer-zsg03s > :last-child, .framer-5XTI2 .framer-15ohk6q > :last-child, .framer-5XTI2 .framer-1n7htjm > :last-child, .framer-5XTI2 .framer-14ey1km > :last-child, .framer-5XTI2 .framer-1rr3mq9 > :last-child, .framer-5XTI2 .framer-vvu27f > :last-child, .framer-5XTI2 .framer-131wx4i > :last-child, .framer-5XTI2 .framer-1jjdtgb > :last-child, .framer-5XTI2 .framer-6ymlpa > :last-child, .framer-5XTI2 .framer-y01qi5 > :last-child, .framer-5XTI2 .framer-hfjfhs > :last-child, .framer-5XTI2 .framer-jjy50g > :last-child, .framer-5XTI2 .framer-bisqe2 > :last-child, .framer-5XTI2 .framer-1pwkjwp > :last-child, .framer-5XTI2 .framer-1mbr4v4 > :last-child, .framer-5XTI2 .framer-10cnt2j > :last-child, .framer-5XTI2 .framer-cv473y > :last-child, .framer-5XTI2 .framer-18f0kfp > :last-child, .framer-5XTI2 .framer-1bvjvhu > :last-child, .framer-5XTI2 .framer-8pw3xu > :last-child, .framer-5XTI2 .framer-f5lccu > :last-child, .framer-5XTI2 .framer-1iygvlo > :last-child, .framer-5XTI2 .framer-236l1r > :last-child, .framer-5XTI2 .framer-1rs03rg > :last-child, .framer-5XTI2 .framer-1lkqtif > :last-child, .framer-5XTI2 .framer-xjaw6i > :last-child, .framer-5XTI2 .framer-1cpl3pi > :last-child, .framer-5XTI2 .framer-1735myo > :last-child, .framer-5XTI2 .framer-15hpohw > :last-child, .framer-5XTI2 .framer-13j5ml1 > :last-child, .framer-5XTI2 .framer-1bsi5bg > :last-child, .framer-5XTI2 .framer-12h08wr > :last-child, .framer-5XTI2 .framer-1yaz8yt > :last-child, .framer-5XTI2 .framer-1651m32 > :last-child, .framer-5XTI2 .framer-17p01f6 > :last-child, .framer-5XTI2 .framer-gx3tsq > :last-child, .framer-5XTI2 .framer-j3l7iu > :last-child, .framer-5XTI2 .framer-f0ms24 > :last-child, .framer-5XTI2 .framer-15fofzz > :last-child, .framer-5XTI2 .framer-1autepm > :last-child, .framer-5XTI2 .framer-19mloh1 > :last-child, .framer-5XTI2 .framer-1yzosee > :last-child { margin-bottom: 0px; } .framer-5XTI2 .framer-ratjen > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-5XTI2 .framer-vuu8yo > *, .framer-5XTI2 .framer-1u720pv > *, .framer-5XTI2 .framer-y01qi5 > *, .framer-5XTI2 .framer-hfjfhs > *, .framer-5XTI2 .framer-1bvjvhu > *, .framer-5XTI2 .framer-1cpl3pi > *, .framer-5XTI2 .framer-1735myo > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-5XTI2 .framer-1ctlfv8 > *, .framer-5XTI2 .framer-algvaf > *, .framer-5XTI2 .framer-f0rkqj > *, .framer-5XTI2 .framer-zsg03s > *, .framer-5XTI2 .framer-1n7htjm > *, .framer-5XTI2 .framer-1rr3mq9 > *, .framer-5XTI2 .framer-131wx4i > *, .framer-5XTI2 .framer-jjy50g > *, .framer-5XTI2 .framer-1pwkjwp > *, .framer-5XTI2 .framer-15hpohw > *, .framer-5XTI2 .framer-j3l7iu > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-5XTI2 .framer-jolqk > *, .framer-5XTI2 .framer-78mmww > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-5XTI2 .framer-jolqk > :first-child, .framer-5XTI2 .framer-1hm95uz > :first-child, .framer-5XTI2 .framer-ihhoq1 > :first-child, .framer-5XTI2 .framer-1maxop > :first-child, .framer-5XTI2 .framer-60t1uo > :first-child, .framer-5XTI2 .framer-kurdbu > :first-child, .framer-5XTI2 .framer-1e44mkz > :first-child, .framer-5XTI2 .framer-12w6jqo > :first-child, .framer-5XTI2 .framer-ziyrln > :first-child, .framer-5XTI2 .framer-nrys73 > :first-child, .framer-5XTI2 .framer-1wmq2ph > :first-child, .framer-5XTI2 .framer-1er789z > :first-child, .framer-5XTI2 .framer-14ny41 > :first-child, .framer-5XTI2 .framer-ucigsv > :first-child, .framer-5XTI2 .framer-1svc5po > :first-child, .framer-5XTI2 .framer-1ng7hcz > :first-child, .framer-5XTI2 .framer-1ujt2k1 > :first-child, .framer-5XTI2 .framer-1kq2388 > :first-child, .framer-5XTI2 .framer-15sdk7w > :first-child, .framer-5XTI2 .framer-10gohr6 > :first-child, .framer-5XTI2 .framer-10n2x5n > :first-child, .framer-5XTI2 .framer-kgi2qr > :first-child, .framer-5XTI2 .framer-1d71ke0 > :first-child, .framer-5XTI2 .framer-86ms1 > :first-child, .framer-5XTI2 .framer-cpxb2j > :first-child, .framer-5XTI2 .framer-tjqkrs > :first-child, .framer-5XTI2 .framer-1xggn2m > :first-child, .framer-5XTI2 .framer-1efw8hy > :first-child, .framer-5XTI2 .framer-1g3mjhq > :first-child, .framer-5XTI2 .framer-17t5bkx > :first-child, .framer-5XTI2 .framer-cdvfhc > :first-child, .framer-5XTI2 .framer-j75xm8 > :first-child, .framer-5XTI2 .framer-8ir2cc > :first-child, .framer-5XTI2 .framer-oy6kmc > :first-child, .framer-5XTI2 .framer-12wngc1 > :first-child, .framer-5XTI2 .framer-wmuwn2 > :first-child, .framer-5XTI2 .framer-41loi4 > :first-child, .framer-5XTI2 .framer-1l0azu1 > :first-child, .framer-5XTI2 .framer-8t888w > :first-child, .framer-5XTI2 .framer-1tmwymj > :first-child, .framer-5XTI2 .framer-zt944t > :first-child, .framer-5XTI2 .framer-c109w4 > :first-child, .framer-5XTI2 .framer-o64p79 > :first-child, .framer-5XTI2 .framer-1nwgoby > :first-child, .framer-5XTI2 .framer-1fvifaq > :first-child, .framer-5XTI2 .framer-1vwoqpg > :first-child, .framer-5XTI2 .framer-wnwfp3 > :first-child, .framer-5XTI2 .framer-u7a3or > :first-child, .framer-5XTI2 .framer-78mmww > :first-child { margin-left: 0px; } .framer-5XTI2 .framer-jolqk > :last-child, .framer-5XTI2 .framer-1hm95uz > :last-child, .framer-5XTI2 .framer-ihhoq1 > :last-child, .framer-5XTI2 .framer-1maxop > :last-child, .framer-5XTI2 .framer-60t1uo > :last-child, .framer-5XTI2 .framer-kurdbu > :last-child, .framer-5XTI2 .framer-1e44mkz > :last-child, .framer-5XTI2 .framer-12w6jqo > :last-child, .framer-5XTI2 .framer-ziyrln > :last-child, .framer-5XTI2 .framer-nrys73 > :last-child, .framer-5XTI2 .framer-1wmq2ph > :last-child, .framer-5XTI2 .framer-1er789z > :last-child, .framer-5XTI2 .framer-14ny41 > :last-child, .framer-5XTI2 .framer-ucigsv > :last-child, .framer-5XTI2 .framer-1svc5po > :last-child, .framer-5XTI2 .framer-1ng7hcz > :last-child, .framer-5XTI2 .framer-1ujt2k1 > :last-child, .framer-5XTI2 .framer-1kq2388 > :last-child, .framer-5XTI2 .framer-15sdk7w > :last-child, .framer-5XTI2 .framer-10gohr6 > :last-child, .framer-5XTI2 .framer-10n2x5n > :last-child, .framer-5XTI2 .framer-kgi2qr > :last-child, .framer-5XTI2 .framer-1d71ke0 > :last-child, .framer-5XTI2 .framer-86ms1 > :last-child, .framer-5XTI2 .framer-cpxb2j > :last-child, .framer-5XTI2 .framer-tjqkrs > :last-child, .framer-5XTI2 .framer-1xggn2m > :last-child, .framer-5XTI2 .framer-1efw8hy > :last-child, .framer-5XTI2 .framer-1g3mjhq > :last-child, .framer-5XTI2 .framer-17t5bkx > :last-child, .framer-5XTI2 .framer-cdvfhc > :last-child, .framer-5XTI2 .framer-j75xm8 > :last-child, .framer-5XTI2 .framer-8ir2cc > :last-child, .framer-5XTI2 .framer-oy6kmc > :last-child, .framer-5XTI2 .framer-12wngc1 > :last-child, .framer-5XTI2 .framer-wmuwn2 > :last-child, .framer-5XTI2 .framer-41loi4 > :last-child, .framer-5XTI2 .framer-1l0azu1 > :last-child, .framer-5XTI2 .framer-8t888w > :last-child, .framer-5XTI2 .framer-1tmwymj > :last-child, .framer-5XTI2 .framer-zt944t > :last-child, .framer-5XTI2 .framer-c109w4 > :last-child, .framer-5XTI2 .framer-o64p79 > :last-child, .framer-5XTI2 .framer-1nwgoby > :last-child, .framer-5XTI2 .framer-1fvifaq > :last-child, .framer-5XTI2 .framer-1vwoqpg > :last-child, .framer-5XTI2 .framer-wnwfp3 > :last-child, .framer-5XTI2 .framer-u7a3or > :last-child, .framer-5XTI2 .framer-78mmww > :last-child { margin-right: 0px; } .framer-5XTI2 .framer-1hm95uz > *, .framer-5XTI2 .framer-14ny41 > *, .framer-5XTI2 .framer-10gohr6 > *, .framer-5XTI2 .framer-86ms1 > *, .framer-5XTI2 .framer-1xggn2m > *, .framer-5XTI2 .framer-1g3mjhq > *, .framer-5XTI2 .framer-cdvfhc > *, .framer-5XTI2 .framer-o64p79 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-5XTI2 .framer-ihhoq1 > *, .framer-5XTI2 .framer-1d71ke0 > *, .framer-5XTI2 .framer-17t5bkx > *, .framer-5XTI2 .framer-j75xm8 > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-5XTI2 .framer-1pi91uv > *, .framer-5XTI2 .framer-6ymlpa > *, .framer-5XTI2 .framer-cv473y > *, .framer-5XTI2 .framer-f5lccu > *, .framer-5XTI2 .framer-xjaw6i > *, .framer-5XTI2 .framer-1yaz8yt > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-5XTI2 .framer-1t3yoqx > * { margin: 0px; margin-bottom: calc(22px / 2); margin-top: calc(22px / 2); } .framer-5XTI2 .framer-1maxop > *, .framer-5XTI2 .framer-1tmwymj > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-5XTI2 .framer-9wjzqm > *, .framer-5XTI2 .framer-10ymxmd > *, .framer-5XTI2 .framer-if6swz > *, .framer-5XTI2 .framer-15ohk6q > *, .framer-5XTI2 .framer-14ey1km > *, .framer-5XTI2 .framer-vvu27f > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-5XTI2 .framer-60t1uo > *, .framer-5XTI2 .framer-kurdbu > *, .framer-5XTI2 .framer-1e44mkz > *, .framer-5XTI2 .framer-12w6jqo > *, .framer-5XTI2 .framer-ziyrln > *, .framer-5XTI2 .framer-nrys73 > *, .framer-5XTI2 .framer-1wmq2ph > *, .framer-5XTI2 .framer-1er789z > *, .framer-5XTI2 .framer-ucigsv > *, .framer-5XTI2 .framer-1svc5po > *, .framer-5XTI2 .framer-1ng7hcz > *, .framer-5XTI2 .framer-1ujt2k1 > *, .framer-5XTI2 .framer-1kq2388 > *, .framer-5XTI2 .framer-15sdk7w > *, .framer-5XTI2 .framer-kgi2qr > *, .framer-5XTI2 .framer-tjqkrs > *, .framer-5XTI2 .framer-1efw8hy > *, .framer-5XTI2 .framer-8ir2cc > *, .framer-5XTI2 .framer-oy6kmc > *, .framer-5XTI2 .framer-12wngc1 > *, .framer-5XTI2 .framer-wmuwn2 > *, .framer-5XTI2 .framer-41loi4 > *, .framer-5XTI2 .framer-1l0azu1 > *, .framer-5XTI2 .framer-zt944t > *, .framer-5XTI2 .framer-c109w4 > *, .framer-5XTI2 .framer-1nwgoby > *, .framer-5XTI2 .framer-1fvifaq > *, .framer-5XTI2 .framer-u7a3or > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-5XTI2 .framer-10n2x5n > *, .framer-5XTI2 .framer-cpxb2j > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-5XTI2 .framer-18f0kfp > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-5XTI2 .framer-236l1r > *, .framer-5XTI2 .framer-1bsi5bg > *, .framer-5XTI2 .framer-17p01f6 > * { margin: 0px; margin-bottom: calc(19px / 2); margin-top: calc(19px / 2); } .framer-5XTI2 .framer-1rs03rg > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } .framer-5XTI2 .framer-8t888w > * { margin: 0px; margin-left: calc(75px / 2); margin-right: calc(75px / 2); } .framer-5XTI2 .framer-1vwoqpg > *, .framer-5XTI2 .framer-wnwfp3 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-5XTI2 .framer-15fofzz > * { margin: 0px; margin-bottom: calc(72px / 2); margin-top: calc(72px / 2); } .framer-5XTI2 .framer-1autepm > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-5XTI2 .framer-19mloh1 > *, .framer-5XTI2 .framer-1yzosee > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,'.framer-5XTI2[data-border=\"true\"]::after, .framer-5XTI2 [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; }',\"@media (min-width: 992px) and (max-width: 1439px) { .framer-5XTI2.framer-h3e42f { width: 992px; } .framer-5XTI2 .framer-k8ulor-container, .framer-5XTI2 .framer-7t23wo { order: 0; } .framer-5XTI2 .framer-1bi0tgb, .framer-5XTI2 .framer-dwbb7v-container { order: 2; } .framer-5XTI2 .framer-1g3a96a { max-width: 1000px; padding: 20px 40px 20px 40px; } .framer-5XTI2 .framer-ratjen { max-width: 450px; } .framer-5XTI2 .framer-1ctlfv8 { align-content: center; align-items: center; justify-content: flex-start; } .framer-5XTI2 .framer-ah68jy { width: 100%; } .framer-5XTI2 .framer-1u720pv, .framer-5XTI2 .framer-j2zven { max-width: unset; } .framer-5XTI2 .framer-10n2ckt-container { width: 495px; } .framer-5XTI2 .framer-mn5r88 { flex: none; width: 43%; } .framer-5XTI2 .framer-1hm95uz { height: 89px; left: calc(82.90816326530614% - 133px / 2); top: calc(25.05133470225875% - 89px / 2); width: 133px; } .framer-5XTI2 .framer-3p4bck, .framer-5XTI2 .framer-1mbr4v4, .framer-5XTI2 .framer-10cnt2j { padding: 15px; } .framer-5XTI2 .framer-s15o1b-container { bottom: -16px; left: 44%; top: unset; transform: translateX(-50%); } .framer-5XTI2 .framer-ihhoq1 { padding: 2px 0px 0px 0px; } .framer-5XTI2 .framer-1npamr3, .framer-5XTI2 .framer-8t888w { order: 1; } .framer-5XTI2 .framer-1g8jcpu { height: 427px; width: 310px; } .framer-5XTI2 .framer-1kd4bc6-container { height: 391px; left: calc(50.00000000000002% - 230px / 2); top: calc(52.22482435597192% - 391px / 2); width: 230px; } .framer-5XTI2 .framer-1pi91uv { max-width: unset; order: 3; padding: 80px 40px 40px 40px; } .framer-5XTI2 .framer-vc71l1 { left: 28px; top: -3px; } .framer-5XTI2 .framer-lbyljr { left: 8px; top: -3px; } .framer-5XTI2 .framer-1dy8my6 { left: 42px; top: -3px; } .framer-5XTI2 .framer-1lewx6a { left: calc(46.47887323943664% - 106px / 2); top: 2px; } .framer-5XTI2 .framer-1kq2388 { order: 4; padding: 40px 0px 40px 0px; } .framer-5XTI2 .framer-1jjdtgb, .framer-5XTI2 .framer-bisqe2, .framer-5XTI2 .framer-8pw3xu, .framer-5XTI2 .framer-1lkqtif, .framer-5XTI2 .framer-f0ms24 { max-width: 1000px; padding: 0px 40px 0px 40px; } .framer-5XTI2 .framer-6ymlpa { max-width: 475px; padding: 0px 0px 0px 35px; } .framer-5XTI2 .framer-y01qi5 { max-width: 400px; } .framer-5XTI2 .framer-15sdk7w, .framer-5XTI2 .framer-c109w4 { max-width: 372px; } .framer-5XTI2 .framer-jjy50g { height: var(--framer-aspect-ratio-supported, 448px); } .framer-5XTI2 .framer-hsik4e { height: 309px; left: 24px; top: calc(53.12500000000002% - 308.5242212209755px / 2); width: 258px; } .framer-5XTI2 .framer-rbq84t { bottom: 22px; height: 156px; left: -29px; width: 136px; } .framer-5XTI2 .framer-o44fzr { height: 241px; left: -78px; top: 0px; width: 204px; } .framer-5XTI2 .framer-11gim4k { height: 172px; left: 198px; top: 6px; width: 140px; } .framer-5XTI2 .framer-10gohr6 { bottom: 41px; height: 37px; left: 573px; width: 161px; } .framer-5XTI2 .framer-86ms1 { bottom: 175px; height: 37px; left: 701px; right: unset; width: 195px; } .framer-5XTI2 .framer-13ul8v6-container { height: 223px; order: 5; } .framer-5XTI2 .framer-1efw8hy { order: 6; overflow: visible; padding: 40px 0px 40px 0px; } .framer-5XTI2 .framer-1abdqsd { gap: 10px; justify-content: center; } .framer-5XTI2 .framer-1pwkjwp { height: var(--framer-aspect-ratio-supported, 387px); order: 0; width: 36%; } .framer-5XTI2 .framer-11xmoz4 { height: var(--framer-aspect-ratio-supported, 388px); left: 29%; order: 0; top: 56%; width: 100%; } .framer-5XTI2 .framer-1kgvo5f { height: 38px; left: calc(-11.04294478527605% - 38px / 2); order: 1; top: calc(7.291666666666689% - 38px / 2); width: 38px; } .framer-5XTI2 .framer-j3af4m { height: 163px; left: calc(-7.361963190184027% - 140px / 2); order: 2; top: calc(33.59375000000002% - 163px / 2); width: 140px; } .framer-5XTI2 .framer-qpu9ax { height: 239px; left: calc(65.95092024539879% - 204px / 2); order: 3; top: calc(77.34375000000003% - 239px / 2); width: 204px; } .framer-5XTI2 .framer-1g3mjhq { height: 141px; left: 106px; order: 4; right: unset; top: -3px; width: 183px; } .framer-5XTI2 .framer-1i57pci-container { height: 141px; left: calc(66.45161290322584% - 187px / 2); top: calc(59.813084112149554% - 141px / 2); width: 187px; } .framer-5XTI2 .framer-cdvfhc { aspect-ratio: 1.5754716981132075 / 1; bottom: unset; height: var(--framer-aspect-ratio-supported, 106px); left: -5%; order: 5; right: unset; top: 90%; transform: translate(-50%, -50%); width: 167px; } .framer-5XTI2 .framer-cy1l59 { height: 39px; left: calc(64.11042944785278% - 39px / 2); order: 6; top: calc(45.83333333333336% - 39px / 2); width: 39px; } .framer-5XTI2 .framer-t8o3st { height: 35px; left: calc(76.99386503067487% - 30px / 2); order: 7; top: calc(27.864583333333353% - 35px / 2); width: 30px; } .framer-5XTI2 .framer-1p5h2na { height: 38px; left: calc(-9.202453987730038% - 38px / 2); order: 8; top: calc(64.32291666666669% - 38px / 2); width: 38px; } .framer-5XTI2 .framer-cv473y { max-width: 465px; order: 1; } .framer-5XTI2 .framer-1bvjvhu { max-width: 422px; } .framer-5XTI2 .framer-15ik02v { z-index: 0; } .framer-5XTI2 .framer-8ir2cc { order: 7; padding: 40px 0px 40px 0px; } .framer-5XTI2 .framer-1l0azu1 { order: 8; padding: 60px 0px 40px 0px; width: min-content; } .framer-5XTI2 .framer-1iygvlo { flex: none; max-width: unset; padding: 0px 40px 0px 40px; width: 992px; } .framer-5XTI2 .framer-236l1r { order: 0; padding: 0px 0px 20px 0px; width: 479px; } .framer-5XTI2 .framer-1rs03rg { gap: 0px; justify-content: flex-start; max-width: unset; min-width: 990px; order: 1; padding: 30px 0px 30px 0px; } .framer-5XTI2 .framer-1tmwymj { align-content: center; align-items: center; gap: 75px; justify-content: center; order: 0; padding: 20px 0px 0px 0px; width: 100%; } .framer-5XTI2 .framer-1mwx6pq-container { width: auto; } .framer-5XTI2 .framer-zt944t { order: 9; padding: 40px 0px 80px 0px; } .framer-5XTI2 .framer-w1a45a { gap: 10px; justify-content: center; max-width: unset; } .framer-5XTI2 .framer-xjaw6i { max-width: 475px; } .framer-5XTI2 .framer-15hpohw { height: var(--framer-aspect-ratio-supported, 462px); width: 43%; } .framer-5XTI2 .framer-zcd4ge { height: 228px; left: 164px; top: 57px; width: 199px; } .framer-5XTI2 .framer-je2mxh { height: 252px; left: 15px; top: 28px; width: 179px; } .framer-5XTI2 .framer-kpggks { bottom: -8px; height: 229px; left: 173px; width: 181px; } .framer-5XTI2 .framer-dgn47b { bottom: 8px; height: 226px; left: -6px; width: 213px; } .framer-5XTI2 .framer-x8t551 { height: 39px; left: -29px; top: calc(47.73218142548598% - 39px / 2); width: 189px; } .framer-5XTI2 .framer-1m26sjs { left: -29px; top: calc(8.874458874458897% - 60px / 2); } .framer-5XTI2 .framer-9djwng { left: calc(82.90816326530614% - 106px / 2); top: calc(54.32900432900435% - 60px / 2); } .framer-5XTI2 .framer-1rldw6d { bottom: -4px; height: 44px; right: -26px; width: 188px; } .framer-5XTI2 .framer-1qszxa5 { height: 37px; left: 219px; right: unset; top: 27px; width: 167px; } .framer-5XTI2 .framer-o64p79 { order: 12; } .framer-5XTI2 .framer-j3l7iu { order: 13; padding: 80px 0px 80px 0px; } .framer-5XTI2 .framer-15fofzz { gap: 38px; } .framer-5XTI2 .framer-78mmww { flex-direction: column; } .framer-5XTI2 .framer-19mloh1, .framer-5XTI2 .framer-1yzosee { flex: none; width: 100%; } .framer-5XTI2 .framer-11gcgre-container { order: 14; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-5XTI2 .framer-1abdqsd, .framer-5XTI2 .framer-1rs03rg, .framer-5XTI2 .framer-1tmwymj, .framer-5XTI2 .framer-w1a45a, .framer-5XTI2 .framer-15fofzz, .framer-5XTI2 .framer-78mmww { gap: 0px; } .framer-5XTI2 .framer-1abdqsd > *, .framer-5XTI2 .framer-w1a45a > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-5XTI2 .framer-1abdqsd > :first-child, .framer-5XTI2 .framer-1tmwymj > :first-child, .framer-5XTI2 .framer-w1a45a > :first-child { margin-left: 0px; } .framer-5XTI2 .framer-1abdqsd > :last-child, .framer-5XTI2 .framer-1tmwymj > :last-child, .framer-5XTI2 .framer-w1a45a > :last-child { margin-right: 0px; } .framer-5XTI2 .framer-1rs03rg > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-5XTI2 .framer-1rs03rg > :first-child, .framer-5XTI2 .framer-15fofzz > :first-child, .framer-5XTI2 .framer-78mmww > :first-child { margin-top: 0px; } .framer-5XTI2 .framer-1rs03rg > :last-child, .framer-5XTI2 .framer-15fofzz > :last-child, .framer-5XTI2 .framer-78mmww > :last-child { margin-bottom: 0px; } .framer-5XTI2 .framer-1tmwymj > * { margin: 0px; margin-left: calc(75px / 2); margin-right: calc(75px / 2); } .framer-5XTI2 .framer-15fofzz > * { margin: 0px; margin-bottom: calc(38px / 2); margin-top: calc(38px / 2); } .framer-5XTI2 .framer-78mmww > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }}\",\"@media (min-width: 768px) and (max-width: 991px) { .framer-5XTI2.framer-h3e42f { width: 768px; } .framer-5XTI2 .framer-k8ulor-container, .framer-5XTI2 .framer-c109w4, .framer-5XTI2 .framer-wnwfp3 { order: 0; } .framer-5XTI2 .framer-1bi0tgb { order: 1; padding: 60px 0px 45px 0px; } .framer-5XTI2 .framer-1g3a96a { max-width: 720px; padding: 0px 24px 0px 24px; } .framer-5XTI2 .framer-1a7n7ls { flex-direction: column; gap: 0px; justify-content: center; } .framer-5XTI2 .framer-ratjen { flex: none; gap: 28px; max-width: 592px; order: 0; width: 100%; } .framer-5XTI2 .framer-vuu8yo { align-content: center; align-items: center; gap: 20px; justify-content: center; } .framer-5XTI2 .framer-vulya0-container { will-change: unset; } .framer-5XTI2 .framer-ah68jy { width: 100%; } .framer-5XTI2 .framer-1u720pv { align-content: center; align-items: center; justify-content: center; max-width: unset; } .framer-5XTI2 .framer-jolqk { align-content: center; align-items: center; gap: 18px; justify-content: center; } .framer-5XTI2 .framer-10n2ckt-container { width: 487px; } .framer-5XTI2 .framer-mn5r88 { aspect-ratio: 0.8483920367534457 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 567px); order: 1; width: 51%; } .framer-5XTI2 .framer-1hm95uz { height: 97px; left: calc(100.00000000000003% - 154px / 2); order: 1; top: calc(20.105820105820126% - 97px / 2); } .framer-5XTI2 .framer-3p4bck, .framer-5XTI2 .framer-1mbr4v4, .framer-5XTI2 .framer-10cnt2j { padding: 13px; } .framer-5XTI2 .framer-s15o1b-container { bottom: -17px; left: 49%; top: unset; transform: translateX(-50%); } .framer-5XTI2 .framer-1g8jcpu, .framer-5XTI2 .framer-f6lk4k-container { order: 2; } .framer-5XTI2 .framer-1kd4bc6-container { top: calc(50.09861932938858% - 453px / 2); } .framer-5XTI2 .framer-1pi91uv { gap: 32px; order: 2; padding: 80px 32px 40px 32px; } .framer-5XTI2 .framer-1maxop { gap: 0px; } .framer-5XTI2 .framer-vc71l1 { left: 75px; top: 2px; } .framer-5XTI2 .framer-f7wh1q, .framer-5XTI2 .framer-5vfb3k { width: var(--framer-aspect-ratio-supported, 210px); } .framer-5XTI2 .framer-lbyljr { left: calc(45.02923976608189% - 106px / 2); top: 2px; } .framer-5XTI2 .framer-1kq2388 { order: 3; padding: 60px 0px 40px 0px; } .framer-5XTI2 .framer-1jjdtgb { max-width: 720px; padding: 0px 32px 30px 32px; } .framer-5XTI2 .framer-j2zven, .framer-5XTI2 .framer-w1a45a { flex-direction: column; gap: 40px; justify-content: center; max-width: unset; } .framer-5XTI2 .framer-6ymlpa, .framer-5XTI2 .framer-xjaw6i { align-content: center; align-items: center; flex: none; gap: 30px; justify-content: center; max-width: unset; width: 70%; } .framer-5XTI2 .framer-y01qi5, .framer-5XTI2 .framer-1cpl3pi { align-content: center; align-items: center; max-width: unset; } .framer-5XTI2 .framer-hfjfhs, .framer-5XTI2 .framer-1autepm { align-content: center; align-items: center; justify-content: center; } .framer-5XTI2 .framer-elvpqx { max-width: unset; } .framer-5XTI2 .framer-jjy50g { height: var(--framer-aspect-ratio-supported, 386px); width: 50%; } .framer-5XTI2 .framer-hsik4e { bottom: 20px; height: unset; left: 70px; right: 0px; top: 97px; width: unset; } .framer-5XTI2 .framer-rbq84t { bottom: -15px; height: unset; left: -54px; right: 249px; top: 238px; width: unset; } .framer-5XTI2 .framer-o44fzr { bottom: 147px; height: unset; left: -60px; right: 195px; top: 16px; width: unset; } .framer-5XTI2 .framer-11gim4k { bottom: 202px; height: unset; left: 222px; right: -50px; top: 1px; width: unset; } .framer-5XTI2 .framer-10gohr6 { bottom: unset; height: 42px; left: calc(39.78658536585368% - 180px / 2); top: calc(97.65807962529276% - 42px / 2); width: 180px; } .framer-5XTI2 .framer-86ms1 { bottom: unset; height: 42px; left: calc(75.15243902439026% - 198px / 2); right: unset; top: calc(83.02107728337239% - 42px / 2); width: 198px; } .framer-5XTI2 .framer-13ul8v6-container { height: 225px; order: 4; } .framer-5XTI2 .framer-1efw8hy { order: 5; padding: 40px 0px 40px 0px; } .framer-5XTI2 .framer-bisqe2, .framer-5XTI2 .framer-8pw3xu, .framer-5XTI2 .framer-1lkqtif, .framer-5XTI2 .framer-f0ms24 { max-width: 720px; padding: 0px 32px 0px 32px; } .framer-5XTI2 .framer-1abdqsd { flex-direction: column; gap: 40px; justify-content: center; } .framer-5XTI2 .framer-1pwkjwp { height: var(--framer-aspect-ratio-supported, 387px); order: 0; width: 50%; } .framer-5XTI2 .framer-11xmoz4 { aspect-ratio: unset; bottom: -17px; height: unset; left: 11px; right: 12px; top: 43px; transform: unset; width: unset; } .framer-5XTI2 .framer-1kgvo5f { bottom: 302px; height: unset; left: 27px; right: 259px; top: 45px; width: unset; } .framer-5XTI2 .framer-j3af4m { bottom: 157px; height: unset; left: -26px; right: 219px; top: 73px; width: unset; } .framer-5XTI2 .framer-qpu9ax { bottom: -1px; height: unset; left: 211px; right: -47px; top: 196px; width: unset; } .framer-5XTI2 .framer-1g3mjhq { bottom: 249px; height: unset; left: 209px; right: -34px; top: 23px; width: unset; } .framer-5XTI2 .framer-17t5bkx { left: 26px; order: 0; top: 6px; } .framer-5XTI2 .framer-i6j0tr { flex: none; height: 85px; order: 1; width: 145px; } .framer-5XTI2 .framer-1i57pci-container { height: 130px; left: calc(46.20689655172416% - 151px / 2); top: calc(68.23529411764709% - 130px / 2); width: 151px; } .framer-5XTI2 .framer-52i6y0 { bottom: -4px; left: -2px; order: 2; right: -1px; } .framer-5XTI2 .framer-cdvfhc { bottom: -20px; left: -14px; right: 178px; top: 296px; } .framer-5XTI2 .framer-k2ozdq-container { left: 48%; top: 56%; } .framer-5XTI2 .framer-cy1l59 { bottom: 215px; height: unset; left: 289px; right: -3px; top: 133px; width: unset; } .framer-5XTI2 .framer-t8o3st { bottom: 276px; height: unset; left: 354px; right: -51px; top: 81px; width: unset; } .framer-5XTI2 .framer-1p5h2na { bottom: 116px; height: unset; left: 26px; right: 270px; top: 240px; width: unset; } .framer-5XTI2 .framer-cv473y { align-content: center; align-items: center; gap: 30px; justify-content: center; order: 1; width: 70%; } .framer-5XTI2 .framer-18f0kfp { align-content: center; align-items: center; gap: 18px; max-width: 403.2px; } .framer-5XTI2 .framer-15ik02v { z-index: 0; } .framer-5XTI2 .framer-8ir2cc { order: 6; padding: 40px 0px 60px 0px; } .framer-5XTI2 .framer-khv73l { flex-wrap: wrap; justify-content: space-between; width: 669px; } .framer-5XTI2 .framer-zt944t { order: 9; padding: 80px 0px 40px 0px; } .framer-5XTI2 .framer-1735myo { align-content: center; align-items: center; justify-content: center; padding: 31px 0px 31px 0px; } .framer-5XTI2 .framer-18ln6o3 { max-width: unset; order: 1; } .framer-5XTI2 .framer-15hpohw { height: var(--framer-aspect-ratio-supported, 351px); } .framer-5XTI2 .framer-zcd4ge { height: 243px; left: 142px; top: -19px; width: 163px; } .framer-5XTI2 .framer-je2mxh { height: 236px; left: -30px; top: -11px; width: 169px; } .framer-5XTI2 .framer-kpggks { bottom: -7px; height: 239px; left: unset; right: -24px; width: 159px; } .framer-5XTI2 .framer-dgn47b { bottom: -20px; height: 224px; left: -14px; width: 186px; } .framer-5XTI2 .framer-x8t551 { height: 33px; left: -73px; top: 142px; width: 152px; } .framer-5XTI2 .framer-1m26sjs { left: calc(-6.711409395973132% - 106px / 2); top: calc(0.569800569800592% - 60px / 2); } .framer-5XTI2 .framer-9djwng { left: calc(104.0268456375839% - 106px / 2); top: calc(45.014245014245034% - 60px / 2); } .framer-5XTI2 .framer-1rldw6d { bottom: -14px; height: 35px; right: -93px; width: 152px; } .framer-5XTI2 .framer-1qszxa5 { height: 33px; right: -103px; top: 22px; width: 152px; } .framer-5XTI2 .framer-o64p79 { order: 12; } .framer-5XTI2 .framer-1fvifaq { order: 7; } .framer-5XTI2 .framer-1vwoqpg { order: 1; } .framer-5XTI2 .framer-j3l7iu { order: 13; padding: 80px 0px 80px 0px; } .framer-5XTI2 .framer-15fofzz { gap: 50px; } .framer-5XTI2 .framer-78mmww { flex-direction: column; } .framer-5XTI2 .framer-19mloh1, .framer-5XTI2 .framer-1yzosee { flex: none; width: 100%; } .framer-5XTI2 .framer-11gcgre-container { order: 14; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-5XTI2 .framer-1a7n7ls, .framer-5XTI2 .framer-ratjen, .framer-5XTI2 .framer-vuu8yo, .framer-5XTI2 .framer-jolqk, .framer-5XTI2 .framer-1pi91uv, .framer-5XTI2 .framer-1maxop, .framer-5XTI2 .framer-j2zven, .framer-5XTI2 .framer-6ymlpa, .framer-5XTI2 .framer-1abdqsd, .framer-5XTI2 .framer-cv473y, .framer-5XTI2 .framer-18f0kfp, .framer-5XTI2 .framer-w1a45a, .framer-5XTI2 .framer-xjaw6i, .framer-5XTI2 .framer-15fofzz, .framer-5XTI2 .framer-78mmww { gap: 0px; } .framer-5XTI2 .framer-1a7n7ls > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-5XTI2 .framer-1a7n7ls > :first-child, .framer-5XTI2 .framer-ratjen > :first-child, .framer-5XTI2 .framer-vuu8yo > :first-child, .framer-5XTI2 .framer-1pi91uv > :first-child, .framer-5XTI2 .framer-j2zven > :first-child, .framer-5XTI2 .framer-6ymlpa > :first-child, .framer-5XTI2 .framer-1abdqsd > :first-child, .framer-5XTI2 .framer-cv473y > :first-child, .framer-5XTI2 .framer-18f0kfp > :first-child, .framer-5XTI2 .framer-w1a45a > :first-child, .framer-5XTI2 .framer-xjaw6i > :first-child, .framer-5XTI2 .framer-15fofzz > :first-child, .framer-5XTI2 .framer-78mmww > :first-child { margin-top: 0px; } .framer-5XTI2 .framer-1a7n7ls > :last-child, .framer-5XTI2 .framer-ratjen > :last-child, .framer-5XTI2 .framer-vuu8yo > :last-child, .framer-5XTI2 .framer-1pi91uv > :last-child, .framer-5XTI2 .framer-j2zven > :last-child, .framer-5XTI2 .framer-6ymlpa > :last-child, .framer-5XTI2 .framer-1abdqsd > :last-child, .framer-5XTI2 .framer-cv473y > :last-child, .framer-5XTI2 .framer-18f0kfp > :last-child, .framer-5XTI2 .framer-w1a45a > :last-child, .framer-5XTI2 .framer-xjaw6i > :last-child, .framer-5XTI2 .framer-15fofzz > :last-child, .framer-5XTI2 .framer-78mmww > :last-child { margin-bottom: 0px; } .framer-5XTI2 .framer-ratjen > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-5XTI2 .framer-vuu8yo > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-5XTI2 .framer-jolqk > * { margin: 0px; margin-left: calc(18px / 2); margin-right: calc(18px / 2); } .framer-5XTI2 .framer-jolqk > :first-child, .framer-5XTI2 .framer-1maxop > :first-child { margin-left: 0px; } .framer-5XTI2 .framer-jolqk > :last-child, .framer-5XTI2 .framer-1maxop > :last-child { margin-right: 0px; } .framer-5XTI2 .framer-1pi91uv > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-5XTI2 .framer-1maxop > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-5XTI2 .framer-j2zven > *, .framer-5XTI2 .framer-1abdqsd > *, .framer-5XTI2 .framer-w1a45a > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-5XTI2 .framer-6ymlpa > *, .framer-5XTI2 .framer-cv473y > *, .framer-5XTI2 .framer-xjaw6i > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-5XTI2 .framer-18f0kfp > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-5XTI2 .framer-15fofzz > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-5XTI2 .framer-78mmww > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }}\",\"@media (max-width: 767px) { .framer-5XTI2.framer-h3e42f { width: 390px; } .framer-5XTI2 .framer-k8ulor-container, .framer-5XTI2 .framer-hb3814-container { order: 0; } .framer-5XTI2 .framer-1bi0tgb { order: 1; padding: 40px 0px 30px 0px; } .framer-5XTI2 .framer-1g3a96a, .framer-5XTI2 .framer-bisqe2, .framer-5XTI2 .framer-8pw3xu { max-width: 524px; padding: 0px 20px 0px 20px; } .framer-5XTI2 .framer-1a7n7ls { flex-direction: column; gap: 30px; justify-content: center; max-width: 400px; padding: 0px 5px 0px 5px; } .framer-5XTI2 .framer-ratjen { flex: none; gap: 24px; order: 0; width: 100%; } .framer-5XTI2 .framer-vuu8yo { align-content: center; align-items: center; gap: 18px; } .framer-5XTI2 .framer-vulya0-container, .framer-5XTI2 .framer-1ctlfv8 { will-change: unset; } .framer-5XTI2 .framer-ah68jy { width: 100%; will-change: unset; } .framer-5XTI2 .framer-1u720pv, .framer-5XTI2 .framer-1bvjvhu { align-content: center; align-items: center; justify-content: center; max-width: unset; } .framer-5XTI2 .framer-jolqk { align-content: center; align-items: center; flex-direction: column; gap: 12px; justify-content: center; } .framer-5XTI2 .framer-10n2ckt-container { width: 295px; } .framer-5XTI2 .framer-mn5r88 { flex: none; order: 1; width: 100%; } .framer-5XTI2 .framer-1hm95uz { height: 96px; left: calc(74.11764705882355% - 164px / 2); top: calc(9.160305343511473% - 96px / 2); width: 164px; } .framer-5XTI2 .framer-3p4bck, .framer-5XTI2 .framer-1mbr4v4 { gap: 12px; padding: 7px; width: 153px; } .framer-5XTI2 .framer-ejmt0t { align-self: unset; width: 100%; } .framer-5XTI2 .framer-s15o1b-container { bottom: -24px; left: 46%; top: unset; transform: translateX(-50%); } .framer-5XTI2 .framer-7t23wo, .framer-5XTI2 .framer-10moj2h { height: 15px; width: 17px; } .framer-5XTI2 .framer-1g8jcpu { height: 464px; width: 327px; } .framer-5XTI2 .framer-1kd4bc6-container { height: 421px; left: calc(49.235474006116235% - 240px / 2); top: calc(51.508620689655196% - 421px / 2); width: 240px; } .framer-5XTI2 .framer-1pi91uv { order: 2; padding: 60px 20px 30px 20px; } .framer-5XTI2 .framer-1v0d6su, .framer-5XTI2 .framer-1yahfn3-container, .framer-5XTI2 .framer-668qf8-container, .framer-5XTI2 .framer-jttlol-container, .framer-5XTI2 .framer-1kdx7ud-container, .framer-5XTI2 .framer-15yn6u3-container, .framer-5XTI2 .framer-9hc35o-container, .framer-5XTI2 .framer-zy8oek-container, .framer-5XTI2 .framer-lg73py-container { width: 100%; } .framer-5XTI2 .framer-1maxop, .framer-5XTI2 .framer-78mmww { flex-direction: column; } .framer-5XTI2 .framer-9wjzqm, .framer-5XTI2 .framer-10ymxmd, .framer-5XTI2 .framer-if6swz, .framer-5XTI2 .framer-15ohk6q { flex: none; padding: 20px; width: 100%; } .framer-5XTI2 .framer-vc71l1 { left: calc(45.42857142857145% - 106px / 2); top: calc(6.711409395973177% - 60px / 2); } .framer-5XTI2 .framer-f7wh1q, .framer-5XTI2 .framer-5vfb3k, .framer-5XTI2 .framer-h2fpbv, .framer-5XTI2 .framer-f072co { width: var(--framer-aspect-ratio-supported, 210px); } .framer-5XTI2 .framer-lbyljr { left: calc(25.142857142857167% - 106px / 2); top: calc(11.744966442953043% - 60px / 2); } .framer-5XTI2 .framer-1dy8my6 { left: calc(66.00000000000003% - 106px / 2); top: calc(8.724832214765122% - 60px / 2); } .framer-5XTI2 .framer-1lewx6a { left: calc(36.857142857142875% - 106px / 2); top: calc(6.711409395973177% - 60px / 2); } .framer-5XTI2 .framer-1kq2388 { order: 3; padding: 50px 0px 60px 0px; } .framer-5XTI2 .framer-1jjdtgb, .framer-5XTI2 .framer-1lkqtif { align-content: center; align-items: center; justify-content: center; max-width: 524px; padding: 0px 20px 0px 20px; } .framer-5XTI2 .framer-j2zven, .framer-5XTI2 .framer-1abdqsd, .framer-5XTI2 .framer-w1a45a { flex-direction: column; gap: 30px; justify-content: center; max-width: 400px; } .framer-5XTI2 .framer-6ymlpa { align-content: center; align-items: center; flex: none; gap: 24px; justify-content: center; max-width: unset; padding: 0px 10px 20px 10px; width: 100%; } .framer-5XTI2 .framer-y01qi5, .framer-5XTI2 .framer-18f0kfp { align-content: center; align-items: center; gap: 18px; max-width: unset; } .framer-5XTI2 .framer-hfjfhs, .framer-5XTI2 .framer-1735myo { align-content: center; align-items: center; justify-content: center; } .framer-5XTI2 .framer-jjy50g { aspect-ratio: unset; gap: 0px; height: 335px; width: 100%; } .framer-5XTI2 .framer-hsik4e { aspect-ratio: 0.7972508591065293 / 1; height: var(--framer-aspect-ratio-supported, 291px); left: 50%; top: 50%; transform: translate(-50%, -50%); width: 66%; } .framer-5XTI2 .framer-rbq84t { aspect-ratio: 0.8503401360544217 / 1; bottom: unset; height: var(--framer-aspect-ratio-supported, 147px); left: 20%; top: 79%; transform: translate(-50%, -50%); width: 36%; } .framer-5XTI2 .framer-11gim4k { aspect-ratio: 0.8223684210526315 / 1; height: var(--framer-aspect-ratio-supported, 152px); left: 79%; top: 19%; transform: translate(-50%, -50%); width: 36%; } .framer-5XTI2 .framer-10gohr6 { bottom: unset; height: 42px; left: calc(55.14285714285716% - 172px / 2); top: calc(97.7401129943503% - 42px / 2); width: 172px; } .framer-5XTI2 .framer-86ms1 { bottom: unset; height: 42px; left: calc(28.28571428571431% - 198px / 2); right: unset; top: calc(72.31638418079098% - 42px / 2); width: 198px; } .framer-5XTI2 .framer-13ul8v6-container { order: 4; } .framer-5XTI2 .framer-1efw8hy { order: 6; padding: 60px 0px 30px 0px; } .framer-5XTI2 .framer-1pwkjwp { gap: 0px; height: var(--framer-aspect-ratio-supported, 412px); order: 0; width: 100%; } .framer-5XTI2 .framer-11xmoz4 { height: var(--framer-aspect-ratio-supported, 324px); left: 51%; top: 51%; width: 79%; } .framer-5XTI2 .framer-1kgvo5f { height: 43px; left: calc(25.14619883040938% - 43px / 2); top: calc(11.66253101736975% - 43px / 2); width: 43px; } .framer-5XTI2 .framer-j3af4m { height: 135px; left: calc(21.345029239766102% - 115px / 2); top: calc(36.47642679900747% - 135px / 2); width: 115px; } .framer-5XTI2 .framer-qpu9ax { height: 197px; left: calc(77.48538011695909% - 168px / 2); top: calc(75.43424317617868% - 197px / 2); width: 168px; } .framer-5XTI2 .framer-1g3mjhq { height: 136px; left: calc(73.14285714285717% - 152px / 2); right: unset; top: calc(22.330097087378665% - 136px / 2); width: 152px; } .framer-5XTI2 .framer-1i57pci-container { left: calc(41.726618705035996% - 142px / 2); top: calc(57.62711864406782% - 132px / 2); } .framer-5XTI2 .framer-cdvfhc { bottom: unset; height: 90px; left: calc(25.438596491228093% - 141px / 2); right: unset; top: calc(86.60049627791565% - 90px / 2); width: 141px; } .framer-5XTI2 .framer-10cnt2j { gap: 12px; padding: 7px; width: 135px; } .framer-5XTI2 .framer-j75xm8 { gap: 3px; height: 20px; left: 12px; top: 8px; } .framer-5XTI2 .framer-1sz7buf { height: 15px; order: 0; width: 17px; } .framer-5XTI2 .framer-xz28gs, .framer-5XTI2 .framer-c2h7dt-container { order: 1; } .framer-5XTI2 .framer-k2ozdq-container { left: 49%; top: 55%; } .framer-5XTI2 .framer-cy1l59 { height: 43px; left: calc(86.25730994152049% - 43px / 2); top: calc(43.42431761786602% - 43px / 2); width: 43px; } .framer-5XTI2 .framer-t8o3st { height: 32px; left: calc(44.73684210526318% - 27px / 2); top: calc(6.947890818858584% - 32px / 2); width: 27px; } .framer-5XTI2 .framer-1p5h2na { height: 43px; left: calc(18.42105263157897% - 43px / 2); top: calc(56.8238213399504% - 43px / 2); width: 43px; } .framer-5XTI2 .framer-cv473y { align-content: center; align-items: center; gap: 24px; justify-content: center; order: 1; padding: 0px 10px 0px 10px; width: 100%; } .framer-5XTI2 .framer-15ik02v { z-index: 0; } .framer-5XTI2 .framer-8ir2cc { order: 7; padding: 30px 0px 60px 0px; } .framer-5XTI2 .framer-f5lccu { gap: 30px; } .framer-5XTI2 .framer-khv73l { flex-wrap: wrap; gap: 24px; justify-content: center; } .framer-5XTI2 .framer-zt944t { order: 10; padding: 60px 0px 30px 0px; } .framer-5XTI2 .framer-xjaw6i { align-content: center; align-items: center; flex: none; gap: 24px; justify-content: center; max-width: unset; width: 100%; } .framer-5XTI2 .framer-1cpl3pi { align-content: center; align-items: center; gap: 16px; max-width: unset; } .framer-5XTI2 .framer-15hpohw { height: var(--framer-aspect-ratio-supported, 413px); width: 100%; } .framer-5XTI2 .framer-zcd4ge { aspect-ratio: 0.6713615023474179 / 1; height: var(--framer-aspect-ratio-supported, 213px); left: 72%; top: 35%; transform: translate(-50%, -50%); width: 41%; } .framer-5XTI2 .framer-je2mxh { aspect-ratio: 0.6948356807511737 / 1; height: var(--framer-aspect-ratio-supported, 213px); left: 29%; top: 27%; transform: translate(-50%, -50%); width: 42%; } .framer-5XTI2 .framer-kpggks { aspect-ratio: 0.6650717703349283 / 1; bottom: unset; height: var(--framer-aspect-ratio-supported, 209px); left: 70%; top: 65%; transform: translate(-50%, -50%); width: 40%; } .framer-5XTI2 .framer-dgn47b { bottom: unset; height: 196px; left: calc(26.00000000000002% - 163px / 2); top: calc(69.00726392251818% - 196px / 2); width: 163px; } .framer-5XTI2 .framer-x8t551 { aspect-ratio: 4.586206896551724 / 1; height: var(--framer-aspect-ratio-supported, 29px); left: 20%; top: 35%; transform: translate(-50%, -50%); width: 38%; } .framer-5XTI2 .framer-1m26sjs { left: calc(13.714285714285737% - 106px / 2); top: calc(7.5060532687651556% - 60px / 2); } .framer-5XTI2 .framer-9djwng { left: calc(80.85714285714289% - 106px / 2); top: calc(45.036319612590816% - 60px / 2); } .framer-5XTI2 .framer-1rldw6d { bottom: 35px; height: 26px; right: -1px; width: 133px; } .framer-5XTI2 .framer-1qszxa5 { height: 29px; left: calc(66.85714285714288% - 133px / 2); right: unset; top: calc(7.263922518159828% - 29px / 2); width: 133px; } .framer-5XTI2 .framer-o64p79 { order: 12; } .framer-5XTI2 .framer-1nwgoby { order: 8; } .framer-5XTI2 .framer-s4nc5r-container { order: 2; } .framer-5XTI2 .framer-15kujdy-container { order: 3; } .framer-5XTI2 .framer-j3l7iu { order: 13; padding: 60px 10px 60px 10px; } .framer-5XTI2 .framer-f0ms24 { justify-content: center; max-width: 524px; padding: 0px 24px 0px 24px; } .framer-5XTI2 .framer-15fofzz { gap: 40px; } .framer-5XTI2 .framer-19mloh1, .framer-5XTI2 .framer-1yzosee { flex: none; width: 100%; } .framer-5XTI2 .framer-11gcgre-container { order: 14; } .framer-5XTI2.framer-14ddwgj-container { left: calc(49.93055555555558% - 100% / 2); width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-5XTI2 .framer-1a7n7ls, .framer-5XTI2 .framer-ratjen, .framer-5XTI2 .framer-vuu8yo, .framer-5XTI2 .framer-jolqk, .framer-5XTI2 .framer-3p4bck, .framer-5XTI2 .framer-1maxop, .framer-5XTI2 .framer-j2zven, .framer-5XTI2 .framer-6ymlpa, .framer-5XTI2 .framer-y01qi5, .framer-5XTI2 .framer-jjy50g, .framer-5XTI2 .framer-1abdqsd, .framer-5XTI2 .framer-1pwkjwp, .framer-5XTI2 .framer-1mbr4v4, .framer-5XTI2 .framer-10cnt2j, .framer-5XTI2 .framer-j75xm8, .framer-5XTI2 .framer-cv473y, .framer-5XTI2 .framer-18f0kfp, .framer-5XTI2 .framer-f5lccu, .framer-5XTI2 .framer-khv73l, .framer-5XTI2 .framer-w1a45a, .framer-5XTI2 .framer-xjaw6i, .framer-5XTI2 .framer-1cpl3pi, .framer-5XTI2 .framer-15fofzz, .framer-5XTI2 .framer-78mmww { gap: 0px; } .framer-5XTI2 .framer-1a7n7ls > *, .framer-5XTI2 .framer-j2zven > *, .framer-5XTI2 .framer-1abdqsd > *, .framer-5XTI2 .framer-f5lccu > *, .framer-5XTI2 .framer-w1a45a > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-5XTI2 .framer-1a7n7ls > :first-child, .framer-5XTI2 .framer-ratjen > :first-child, .framer-5XTI2 .framer-vuu8yo > :first-child, .framer-5XTI2 .framer-jolqk > :first-child, .framer-5XTI2 .framer-3p4bck > :first-child, .framer-5XTI2 .framer-1maxop > :first-child, .framer-5XTI2 .framer-j2zven > :first-child, .framer-5XTI2 .framer-6ymlpa > :first-child, .framer-5XTI2 .framer-y01qi5 > :first-child, .framer-5XTI2 .framer-jjy50g > :first-child, .framer-5XTI2 .framer-1abdqsd > :first-child, .framer-5XTI2 .framer-1pwkjwp > :first-child, .framer-5XTI2 .framer-1mbr4v4 > :first-child, .framer-5XTI2 .framer-10cnt2j > :first-child, .framer-5XTI2 .framer-cv473y > :first-child, .framer-5XTI2 .framer-18f0kfp > :first-child, .framer-5XTI2 .framer-f5lccu > :first-child, .framer-5XTI2 .framer-w1a45a > :first-child, .framer-5XTI2 .framer-xjaw6i > :first-child, .framer-5XTI2 .framer-1cpl3pi > :first-child, .framer-5XTI2 .framer-15fofzz > :first-child, .framer-5XTI2 .framer-78mmww > :first-child { margin-top: 0px; } .framer-5XTI2 .framer-1a7n7ls > :last-child, .framer-5XTI2 .framer-ratjen > :last-child, .framer-5XTI2 .framer-vuu8yo > :last-child, .framer-5XTI2 .framer-jolqk > :last-child, .framer-5XTI2 .framer-3p4bck > :last-child, .framer-5XTI2 .framer-1maxop > :last-child, .framer-5XTI2 .framer-j2zven > :last-child, .framer-5XTI2 .framer-6ymlpa > :last-child, .framer-5XTI2 .framer-y01qi5 > :last-child, .framer-5XTI2 .framer-jjy50g > :last-child, .framer-5XTI2 .framer-1abdqsd > :last-child, .framer-5XTI2 .framer-1pwkjwp > :last-child, .framer-5XTI2 .framer-1mbr4v4 > :last-child, .framer-5XTI2 .framer-10cnt2j > :last-child, .framer-5XTI2 .framer-cv473y > :last-child, .framer-5XTI2 .framer-18f0kfp > :last-child, .framer-5XTI2 .framer-f5lccu > :last-child, .framer-5XTI2 .framer-w1a45a > :last-child, .framer-5XTI2 .framer-xjaw6i > :last-child, .framer-5XTI2 .framer-1cpl3pi > :last-child, .framer-5XTI2 .framer-15fofzz > :last-child, .framer-5XTI2 .framer-78mmww > :last-child { margin-bottom: 0px; } .framer-5XTI2 .framer-ratjen > *, .framer-5XTI2 .framer-6ymlpa > *, .framer-5XTI2 .framer-cv473y > *, .framer-5XTI2 .framer-xjaw6i > *, .framer-5XTI2 .framer-78mmww > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-5XTI2 .framer-vuu8yo > *, .framer-5XTI2 .framer-y01qi5 > *, .framer-5XTI2 .framer-18f0kfp > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-5XTI2 .framer-jolqk > *, .framer-5XTI2 .framer-3p4bck > *, .framer-5XTI2 .framer-1mbr4v4 > *, .framer-5XTI2 .framer-10cnt2j > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-5XTI2 .framer-1maxop > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-5XTI2 .framer-jjy50g > *, .framer-5XTI2 .framer-1pwkjwp > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-5XTI2 .framer-j75xm8 > * { margin: 0px; margin-left: calc(3px / 2); margin-right: calc(3px / 2); } .framer-5XTI2 .framer-j75xm8 > :first-child, .framer-5XTI2 .framer-khv73l > :first-child { margin-left: 0px; } .framer-5XTI2 .framer-j75xm8 > :last-child, .framer-5XTI2 .framer-khv73l > :last-child { margin-right: 0px; } .framer-5XTI2 .framer-khv73l > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-5XTI2 .framer-1cpl3pi > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-5XTI2 .framer-15fofzz > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6694\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"iXBbiMK8f\":{\"layout\":[\"fixed\",\"auto\"]},\"Sf8KrhhQp\":{\"layout\":[\"fixed\",\"auto\"]},\"QmdGmfFMf\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"t7JaFIZX6\":{\"pattern\":\":t7JaFIZX6\",\"name\":\"\"},\"rBzMNkOnZ\":{\"pattern\":\":rBzMNkOnZ\",\"name\":\"\"},\"qWww4eKYM\":{\"pattern\":\":qWww4eKYM\",\"name\":\"content\"},\"lDsizLMHM\":{\"pattern\":\":lDsizLMHM\",\"name\":\"\"},\"n9NHDOmT9\":{\"pattern\":\":n9NHDOmT9\",\"name\":\"\"},\"EIIYta2wi\":{\"pattern\":\":EIIYta2wi\",\"name\":\"\"},\"fcBXrg7d3\":{\"pattern\":\":fcBXrg7d3\",\"name\":\"form\"}}\n * @framerResponsiveScreen\n */const Framerjpwn_a0xU=withCSS(Component,css,\"framer-5XTI2\");export default Framerjpwn_a0xU;Framerjpwn_a0xU.displayName=\"All About Merch\";Framerjpwn_a0xU.defaultProps={height:6694,width:1440};addFonts(Framerjpwn_a0xU,[{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:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/EOHGWBZYYKO6R4PWP4S2B3FFWHHBEZN6/UWQLMF4AFWLXCJQCFV3WRVYC77KZXPRB/FYG6OCH7XOLUUSZTIZE65ATBZWF623O4.woff2\",weight:\"700\"},{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NC2MP33RO4WQTSTEEAWBJLAEXNCNEQVF/7F4U3COKLHQH4WUH3AXPC7N4UELEWJQN/JMWNCAGBH3TLANIVQPVABVAVNV5QERTH.woff2\",weight:\"400\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v22/pxiByp8kv8JHgFVrLGT9V15vFP-KUEg.woff2\",weight:\"500\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v22/pxiByp8kv8JHgFVrLEj6V15vFP-KUEg.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v22/pxiByp8kv8JHgFVrLCz7V15vFP-KUEg.woff2\",weight:\"700\"}]},...NavigationNavigationFonts,...BadgeFonts,...ListItemBulletsFonts,...ButtonMasterFonts,...CounterFonts,...VideoFonts,...ParticlesFonts,...CarouselImagesFonts,...AnimatorFonts,...CommonBadgeFonts,...FeatureCardFonts,...TypeformFonts,...CommonAccordionFonts,...FooterFooterFonts,...ContactFormFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerjpwn_a0xU\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"6694\",\"framerDisplayContentsDiv\":\"false\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerContractVersion\":\"1\",\"framerResponsiveScreen\":\"\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"iXBbiMK8f\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Sf8KrhhQp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"QmdGmfFMf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1440\",\"framerComponentViewportWidth\":\"true\",\"framerScrollSections\":\"{\\\"t7JaFIZX6\\\":{\\\"pattern\\\":\\\":t7JaFIZX6\\\",\\\"name\\\":\\\"\\\"},\\\"rBzMNkOnZ\\\":{\\\"pattern\\\":\\\":rBzMNkOnZ\\\",\\\"name\\\":\\\"\\\"},\\\"qWww4eKYM\\\":{\\\"pattern\\\":\\\":qWww4eKYM\\\",\\\"name\\\":\\\"content\\\"},\\\"lDsizLMHM\\\":{\\\"pattern\\\":\\\":lDsizLMHM\\\",\\\"name\\\":\\\"\\\"},\\\"n9NHDOmT9\\\":{\\\"pattern\\\":\\\":n9NHDOmT9\\\",\\\"name\\\":\\\"\\\"},\\\"EIIYta2wi\\\":{\\\"pattern\\\":\\\":EIIYta2wi\\\",\\\"name\\\":\\\"\\\"},\\\"fcBXrg7d3\\\":{\\\"pattern\\\":\\\":fcBXrg7d3\\\",\\\"name\\\":\\\"form\\\"}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "uqDASkB,SAARA,EAA0BC,EAAM,CAAiB,GAAK,CAAC,cAAAC,EAAc,KAAAC,EAAK,GAAAC,EAAG,QAAAC,EAAQ,WAAAC,EAAW,YAAAC,EAAY,MAAAC,EAAM,CAAC,EAAE,UAAAC,CAAS,EAAER,EAAuBS,EAAYC,GAAS,MAAMH,CAAK,EAAE,EAAuBI,EAAyBC,EAAM,MAAM,CAAC,MAAMC,GAAkB,SAAS,CAAcC,EAAK,MAAM,CAAC,MAAMC,GAAY,SAAS,cAAI,CAAC,EAAeD,EAAK,IAAI,CAAC,MAAME,GAAY,SAAS,oBAAoB,CAAC,EAAeF,EAAK,IAAI,CAAC,MAAMG,GAAe,SAAS,oDAAoD,CAAC,CAAC,CAAC,CAAC,EAAE,GAAGR,EAAY,CAAoC,IAAMS,EAAWC,GAAcZ,CAAK,EAAQa,EAASD,GAAcD,EAAW,MAAM,GAAG,EAAQG,EAASpB,EAAc,OAAO,SAEtoBqB,EAAgB,CAAC,WAAW,CAAC,GAAGrB,EAAc,OAAOI,EAAW,IAAS,EAAE,WAAWC,EAAY,UAAUe,EAASpB,EAAc,UAAU,IAAIA,EAAc,UAAU,QAAQoB,EAASpB,EAAc,QAAQ,IAAIA,EAAc,OAAO,CAAC,EAAgDsB,EAAWC,GAAe,CAAC,EAAQC,EAAQC,GAAaH,EAAW,CAAC,EAAE,IAAI,EAAE,CAAC,EAAE,CAAC,CAAC,EAAQI,EAAW,CAAC,SAAS,CAAC,MAAM,CAAC,WAAWzB,EAAK,GAAG,EAAE,IAAI,CAAC,WAAWC,EAAG,GAAG,CAAC,EAAE,WAAWmB,CAAe,EAAqEM,EAASC,GAAa,QAAQ,IAAIA,GAAa,OAAwI,GAAxDD,IAAUjB,EAAYO,GAAqC,CAACU,GAAUR,EAAS,CAAsB,IAAIU,GAAWV,EAAS,MAAM,iBAAiB,EAAMW,EAAUC,GAAWC,GAAgBC,EAAkBC,EAAe,QAAUC,KAAWN,GAAeM,EAAQ,SAAS,IAAI,IAAGL,EAAMM,GAAgBD,CAAO,GAAMA,EAAQ,SAAS,SAAS,IAAGJ,GAAOK,GAAgBD,CAAO,GAAMA,EAAQ,SAAS,eAAe,IAAGH,GAAYI,GAAgBD,CAAO,GAAMA,EAAQ,SAAS,iBAAiB,IAAGF,EAAcG,GAAgBD,CAAO,GAAMA,EAAQ,SAAS,kBAAkB,IAAGD,EAAeE,GAAgBD,CAAO,GAAsB,IAAIE,EAAWA,EAAWlB,EAAS,MAAM,UAAU,EAAE,CAAC,EAAEkB,EAAWA,EAAW,MAAM,GAAG,EAAE,CAAC,EAAEA,EAAWA,EAAW,QAAQ,iBAAiB,IAAI,EAAE3B,EAAyBG,EAAKyB,EAAO,IAAI,CAAC,QAAQX,GAAUxB,IAAU,GAAM,GAAM,QAAQ,QAAQwB,GAAUxB,IAAU,GAAM,GAAM,MAAM,MAAM,CAAC,MAAM,OAAO,OAAO,OAAO,QAAQ,OAAO,aAAa,SAAS,WAAW,SAAS,gBAAgB,cAAc,SAAS,QAAQ,EAAE,SAAsBU,EAAKyB,EAAO,IAAI,CAAC,MAAM,6BAA6B,MAAM,OAAO,OAAO,OAAO,QAAQD,EAAW,SAAsBxB,EAAKyB,EAAO,KAAK,CAAC,GAAGZ,EAAW,EAAEI,EAAM,OAAOC,GAAO,YAAYC,GAAY,eAAeE,EAAe,cAAcD,EAAc,KAAK,cAAc,MAAM,CAAC1B,GAAW,CAAC,WAAAe,EAAW,QAAAE,CAAO,EAAE,QAAQG,GAAUxB,IAAU,GAAM,GAAM,QAAQ,QAAQwB,GAAUxB,IAAU,GAAM,GAAM,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,CAAC,OAAOO,CAAY,CAAyBZ,EAAS,aAAa,CAAC,QAAQ,GAAK,WAAW,GAAM,YAAY,UAAU,KAAK,EAAE,GAAG,IAAI,cAAc,CAAC,KAAK,QAAQ,SAAS,CAAC,EAAE,UAAU,EAAI,EAAyByC,GAAoBzC,EAAS,CAAC,MAAM,CAAC,KAAK0C,EAAY,kBAAkB,MAAM,UAAU,EAAE,QAAQ,CAAC,MAAM,UAAU,KAAKA,EAAY,QAAQ,aAAa1C,EAAS,aAAa,QAAQ,aAAa,OAAO,cAAc,OAAO,EAAE,WAAW,CAAC,MAAM,OAAO,KAAK0C,EAAY,QAAQ,aAAa1C,EAAS,aAAa,WAAW,aAAa,OAAO,cAAc,QAAQ,OAAOC,EAAM,CAAC,OAAOA,EAAM,UAAU,EAAM,CAAC,EAAE,YAAY,CAAC,KAAKyC,EAAY,KAAK,MAAM,OAAO,aAAa1C,EAAS,aAAa,YAAY,QAAQ,CAAC,OAAO,UAAU,QAAQ,EAAE,aAAa,CAAC,OAAO,UAAU,QAAQ,EAAE,OAAOC,EAAM,CAAC,OAAOA,EAAM,aAAa,EAAM,CAAC,EAAE,UAAU,CAAC,MAAM,aAAa,KAAKyC,EAAY,QAAQ,aAAa1C,EAAS,aAAa,UAAU,aAAa,OAAO,cAAc,OAAO,OAAOC,EAAM,CAAC,OAAOA,EAAM,UAAU,EAAM,CAAC,EAAE,KAAK,CAAC,MAAM,OAAO,KAAKyC,EAAY,OAAO,IAAI,EAAE,IAAI,IAAI,eAAe,GAAK,KAAK,EAAE,aAAa1C,EAAS,aAAa,KAAK,KAAK,IAAI,OAAOC,EAAM,CAAC,OAAOA,EAAM,UAAU,EAAM,CAAC,EAAE,GAAG,CAAC,MAAM,KAAK,KAAKyC,EAAY,OAAO,IAAI,EAAE,IAAI,IAAI,eAAe,GAAK,KAAK,EAAE,aAAa1C,EAAS,aAAa,GAAG,KAAK,IAAI,OAAOC,EAAM,CAAC,OAAOA,EAAM,UAAU,EAAM,CAAC,EAAE,cAAc,CAAC,MAAM,IAAI,KAAKyC,EAAY,WAAW,aAAa1C,EAAS,aAAa,cAAc,OAAOC,EAAM,CAAC,OAAOA,EAAM,UAAU,EAAM,CAAC,CAAC,CAAC,EAA2C,IAAMqC,GAAgBK,GAAgBA,EAAO,MAAM,GAAG,EAAE,CAAC,EAAE,QAAQ,SAAS,EAAE,EAAuC,SAASvB,GAAcZ,EAAM,CAAC,IAAIW,EAAW,OAAAR,GAAS,IAAIH,EAAMoC,GAAO,CAAIzB,IAAa,SAAWA,EAAWyB,EAAO,CAAC,EAASzB,CAAW,CAAa,IAAML,GAAkB,CAAC,QAAQ,OAAO,MAAM,OAAO,OAAO,OAAO,aAAa,SAAS,WAAW,SAAS,cAAc,SAAS,MAAM,OAAO,WAAW,0BAA0B,SAAS,GAAG,SAAS,QAAQ,EAAQE,GAAY,CAAC,SAAS,GAAG,aAAa,EAAE,EAAQC,GAAY,CAAC,OAAO,EAAE,aAAa,GAAG,WAAW,IAAI,UAAU,QAAQ,EAAQC,GAAe,CAAC,OAAO,EAAE,QAAQ,GAAG,SAAS,IAAI,WAAW,IAAI,UAAU,QAAQ,ECVp0H,IAAM2B,GAAYC,GAAOC,EAAK,EAAQC,GAAeF,GAAOG,CAAQ,EAAQC,GAAgBJ,GAAOK,EAAO,GAAG,EAAQC,GAAW,CAAC,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,iBAAiB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAkBC,GAAW,OAAOA,GAAQ,UAAUA,IAAQ,MAAM,OAAOA,EAAM,KAAM,SAAiBA,EAAc,OAAOA,GAAQ,SAAS,CAAC,IAAIA,CAAK,EAAE,OAAkBC,GAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,CAAC,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,IAAI,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAoBH,GAAO,CAAC,GAAG,OAAOA,GAAQ,SAAS,OAAOA,EAAM,GAAI,OAAO,SAASA,CAAK,EAAmB,OAAO,KAAK,IAAI,EAAEA,CAAK,EAAE,IAAK,EAAQI,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,IAAI,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,IAAI,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAP,EAAM,SAAAQ,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,EAAmB,EAAQC,EAAWZ,GAAmCS,EAAO,WAAiBI,EAAmBC,GAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,GAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAAS3B,EAAO,OAAa4B,CAAQ,EAAQC,GAAwB,CAAC,YAAY,YAAY,WAAW,YAAY,SAAS,WAAW,EAAQC,GAAS,CAAC,CAAC,MAAAC,EAAM,OAAAC,EAAO,YAAAC,EAAY,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,QAAAC,EAAQ,MAAAC,EAAM,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAKC,EAAMC,EAAMC,EAAMC,EAAMC,EAAMC,EAAuCC,EAAM,MAAM,CAAC,GAAGR,EAAM,WAAWC,EAAKV,GAAmCS,EAAM,aAAa,MAAMC,IAAO,OAAOA,EAAK,wEAAwE,WAAWC,EAAMV,GAAsCQ,EAAM,aAAa,MAAME,IAAQ,OAAOA,EAAM,eAAe,WAAWC,EAAMP,GAAmCI,EAAM,aAAa,MAAMG,IAAQ,OAAOA,EAAM,CAAC,IAAI,qEAAqE,EAAE,WAAWC,EAAMX,GAAqDO,EAAM,aAAa,MAAMI,IAAQ,OAAOA,EAAM,wBAAwB,WAAWC,EAAMP,GAAmCE,EAAM,aAAa,MAAMK,IAAQ,OAAOA,EAAM,QAAQ,WAAWC,EAAMT,GAAyCG,EAAM,aAAa,MAAMM,IAAQ,OAAOA,EAAM,sBAAsB,SAASE,GAAOD,EAAuClB,GAAwBW,EAAM,OAAO,KAAK,MAAMO,IAAyC,OAAOA,EAAuCP,EAAM,WAAW,MAAMQ,IAAQ,OAAOA,EAAM,WAAW,CAAE,EAAQC,GAAuB,CAACT,EAAMlC,IAAekC,EAAM,iBAAwBlC,EAAS,KAAK,GAAG,EAAEkC,EAAM,iBAAwBlC,EAAS,KAAK,GAAG,EAAU4C,GAA6BC,GAAW,SAASX,EAAMY,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAlD,EAAQ,UAAAmD,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAEnC,GAASU,CAAK,EAAO,CAAC,YAAA0B,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,GAAe,UAAAC,EAAU,gBAAAC,GAAgB,WAAAC,GAAW,SAAAnE,CAAQ,EAAEoE,GAAgB,CAAC,WAAAzE,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQwE,EAAiB1B,GAAuBT,EAAMlC,CAAQ,EAAQsE,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,GAAM,EAAQC,EAAsB,CAAavB,GAAuBA,EAAS,EAAQwB,EAAkBC,GAAqB,EAAE,OAAoBxD,EAAKyD,GAAY,CAAC,GAAGzB,GAA4CoB,EAAgB,SAAsBpD,EAAKC,GAAS,CAAC,QAAQrB,EAAS,QAAQ,GAAM,SAAsBoB,EAAKR,GAAW,CAAC,MAAMT,GAAY,SAAsB2E,EAAMpF,EAAO,IAAI,CAAC,GAAGiE,EAAU,GAAGI,EAAgB,UAAUgB,GAAGnF,GAAkB,GAAG8E,EAAsB,gBAAgBvB,EAAUU,CAAU,EAAE,mBAAmB,WAAW,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIvB,GAA6BwB,EAAK,MAAM,CAAC,gBAAgB,yBAAyB,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,GAAGpB,CAAK,EAAE,GAAGpD,GAAqB,CAAC,UAAU,CAAC,mBAAmB,YAAY,EAAE,UAAU,CAAC,mBAAmB,WAAW,CAAC,EAAE8D,EAAYI,EAAc,EAAE,SAAS,CAAc5C,EAAKhC,GAAY,CAAC,kBAAkB,CAAC,WAAWmB,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAU,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,QAAQ,GAAGF,GAAkBkD,CAAS,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,UAAU,iBAAiBe,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,qBAAqB,IAAI,EAAE,GAAGvE,GAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQkF,GAAwFL,GAAkB,GAAI,IAAI,KAAkEA,GAAkB,QAAS,KAAK,GAAG,KAAK,EAAE,EAAE,MAAM,QAAQ,GAAGvE,GAAkBkD,CAAS,CAAC,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,QAAQ,GAAGlD,GAAkBkD,CAAS,CAAC,CAAC,CAAC,EAAEM,EAAYI,EAAc,CAAC,CAAC,EAAec,EAAMrF,GAAgB,CAAC,kBAAkB,CAAC,WAAWiB,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,iBAAiB4D,EAAiB,SAAS,YAAY,MAAM,CAAC,YAAY7D,GAAoBkD,CAAS,EAAE,qBAAqB,IAAI,EAAE,SAAS,CAActC,EAAK5B,EAAS,CAAC,sBAAsB,GAAK,SAAsB4B,EAAWE,EAAS,CAAC,SAAsBF,EAAK1B,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,yEAAyE,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiB2E,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,gDAAgD,2BAA2B,mBAAmB,gCAAgC,YAAY,2CAA2Cb,CAAS,EAAE,KAAKH,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAejC,EAAK7B,GAAe,CAAC,kBAAkB,CAAC,WAAWoB,EAAW,EAAE,sBAAsB,GAAK,gBAAgBF,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,SAAsBW,EAAWE,EAAS,CAAC,SAAsBF,EAAK1B,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,wEAAwE,EAAE,SAAS,uBAAuB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiB2E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,gDAAgD,2BAA2B,mBAAmB,gCAAgC,YAAY,2CAA2CZ,EAAU,qBAAqB,IAAI,EAAE,KAAKF,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQ0B,GAAI,CAAC,kFAAkF,kFAAkF,6PAA6P,sQAAsQ,kSAAkS,oMAAoM,ulBAAulB,oGAAoG,qUAAqU,wHAAwH,gFAAgF,iEAAiE,+GAA+G,yaAAya,GAAeA,GAAI,GAAgBA,EAAG,EASr5WC,GAAgBC,GAAQvC,GAAUqC,GAAI,cAAc,EAASG,EAAQF,GAAgBA,GAAgB,YAAY,cAAcA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAG,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,WAAW,aAAa,WAAW,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,QAAQ,gBAAgB,GAAM,MAAM,QAAQ,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,wBAAwB,kHAAkH,MAAM,QAAQ,KAAKA,EAAY,eAAe,EAAE,UAAU,CAAC,aAAa,wBAAwB,gBAAgB,GAAM,MAAM,cAAc,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,+FAA+F,MAAM,QAAQ,KAAKA,EAAY,KAAK,EAAE,UAAU,CAAC,aAAa,eAAe,MAAM,UAAU,KAAKA,EAAY,KAAK,EAAE,UAAU,CAAC,aAAa,sBAAsB,MAAM,UAAU,KAAKA,EAAY,OAAO,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGM,GAAoCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECT3vE,IAAMC,GAAiBC,EAASC,CAAW,EAAQC,GAAeF,EAASG,EAAS,EAAQC,GAAW,CAAC,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,OAAO,EAAQC,EAAkBC,GAAW,OAAOA,GAAQ,UAAUA,IAAQ,MAAM,OAAOA,EAAM,KAAM,SAAiBA,EAAc,OAAOA,GAAQ,SAAS,CAAC,IAAIA,CAAK,EAAE,OAAkBC,GAAW,CAAC,CAAC,MAAAD,EAAM,SAAAE,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,EAAmB,EAAQC,EAAWN,GAAmCG,EAAO,WAAiBI,EAAmBC,GAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,GAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,eAAe,YAAY,QAAQ,YAAY,MAAM,YAAY,OAAO,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,OAAAC,EAAO,QAAAC,EAAQ,QAAAC,EAAQ,QAAAC,EAAQ,WAAAC,EAAW,OAAAC,EAAO,WAAAC,EAAW,OAAAC,EAAO,WAAAC,EAAW,OAAAC,EAAO,WAAAC,EAAW,OAAAC,EAAO,WAAAC,EAAW,OAAAC,EAAO,WAAAC,EAAW,OAAAC,EAAO,WAAAC,EAAW,OAAAC,GAAO,OAAAC,EAAO,OAAAC,GAAO,OAAAC,GAAO,OAAAC,EAAO,MAAAC,EAAM,MAAAC,EAAM,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAKC,GAAMC,GAAMC,GAAMC,GAAMC,GAAMC,GAAMC,GAAMC,GAAuCC,GAAMC,GAAMC,GAAOC,GAAOC,GAAO,MAAM,CAAC,GAAGd,EAAM,UAAUJ,GAAsCI,EAAM,UAAU,UAAUf,GAAkDe,EAAM,UAAU,UAAUnB,GAAkDmB,EAAM,UAAU,UAAUX,GAAkDW,EAAM,UAAU,WAAWC,EAAKnB,GAAsCkB,EAAM,aAAa,MAAMC,IAAO,OAAOA,EAAK,CAAC,IAAI,oEAAoE,EAAE,WAAWC,GAAMxB,GAAyCsB,EAAM,aAAa,MAAME,KAAQ,OAAOA,GAAM,CAAC,IAAI,qEAAqE,OAAO,mKAAmK,EAAE,UAAUJ,GAAmCE,EAAM,UAAU,UAAUT,GAAkDS,EAAM,UAAU,WAAWG,GAAM3B,GAAyCwB,EAAM,aAAa,MAAMG,KAAQ,OAAOA,GAAM,CAAC,IAAI,qEAAqE,OAAO,mKAAmK,EAAE,UAAUhB,GAAkDa,EAAM,UAAU,WAAWI,GAAMxB,GAAsCoB,EAAM,aAAa,MAAMI,KAAQ,OAAOA,GAAM,CAAC,IAAI,sEAAsE,EAAE,WAAWC,GAAMf,GAAsCU,EAAM,aAAa,MAAMK,KAAQ,OAAOA,GAAM,CAAC,IAAI,qEAAqE,OAAO,mKAAmK,EAAE,UAAUX,IAAsCM,EAAM,UAAU,UAAUjB,GAAkDiB,EAAM,UAAU,UAAUrB,GAAkDqB,EAAM,UAAU,WAAWM,GAAM/B,GAAsCyB,EAAM,aAAa,MAAMM,KAAQ,OAAOA,GAAM,CAAC,IAAI,sEAAsE,OAAO,mQAAmQ,EAAE,WAAWC,GAAM9B,GAAyCuB,EAAM,aAAa,MAAMO,KAAQ,OAAOA,GAAM,CAAC,IAAI,qEAAqE,OAAO,mKAAmK,EAAE,UAAUZ,IAAsCK,EAAM,UAAU,WAAWQ,GAAMhB,IAAsCQ,EAAM,aAAa,MAAMQ,KAAQ,OAAOA,GAAM,CAAC,IAAI,qEAAqE,OAAO,mKAAmK,EAAE,SAASE,IAAOD,GAAuCtC,GAAwB6B,EAAM,OAAO,KAAK,MAAMS,KAAyC,OAAOA,GAAuCT,EAAM,WAAW,MAAMU,KAAQ,OAAOA,GAAM,YAAY,WAAWC,GAAM3B,GAAsCgB,EAAM,aAAa,MAAMW,KAAQ,OAAOA,GAAM,CAAC,IAAI,sEAAsE,OAAO,mQAAmQ,EAAE,WAAWC,GAAOxB,GAAsCY,EAAM,aAAa,MAAMY,KAAS,OAAOA,GAAO,CAAC,IAAI,qEAAqE,EAAE,WAAWC,GAAO3B,GAAsCc,EAAM,aAAa,MAAMa,KAAS,OAAOA,GAAO,CAAC,IAAI,qEAAqE,EAAE,WAAWC,GAAOrB,GAAsCO,EAAM,aAAa,MAAMc,KAAS,OAAOA,GAAO,CAAC,IAAI,qEAAqE,OAAO,mKAAmK,EAAE,UAAUjB,GAAmCG,EAAM,SAAS,CAAE,EAAQe,GAAuB,CAACf,EAAM/C,IAAe+C,EAAM,iBAAwB/C,EAAS,KAAK,GAAG,EAAE+C,EAAM,iBAAwB/C,EAAS,KAAK,GAAG,EAAU+D,GAA6BC,GAAW,SAASjB,EAAMkB,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAArE,EAAQ,UAAAsE,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,GAAU,UAAAC,EAAU,UAAAC,GAAU,UAAAC,GAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,GAAU,UAAAC,GAAU,UAAAC,GAAU,GAAGC,EAAS,EAAE7E,GAAS4B,CAAK,EAAO,CAAC,YAAAkD,GAAY,WAAAC,GAAW,oBAAAC,GAAoB,gBAAAC,GAAgB,eAAAC,GAAe,UAAAC,GAAU,gBAAAC,GAAgB,WAAAC,GAAW,SAAAxG,EAAQ,EAAEyG,GAAgB,CAAC,WAAA9G,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ6G,EAAiB5C,GAAuBf,EAAM/C,EAAQ,EAAO,CAAC,sBAAA2G,EAAsB,MAAAC,EAAK,EAAEC,GAAyBZ,EAAW,EAAQa,GAAgBH,EAAsB,SAASI,KAAO,CAACP,GAAW,WAAW,CAAE,CAAC,EAAQQ,GAAWC,EAAO,IAAI,EAAQC,GAAsBC,GAAM,EAAQC,GAAsB,CAAC,EAAQC,GAAkBC,GAAqB,EAAE,OAAoBxG,EAAKyG,GAAY,CAAC,GAAGhD,GAA4C2C,GAAgB,SAAsBpG,EAAKC,GAAS,CAAC,QAAQf,GAAS,QAAQ,GAAM,SAAsBc,EAAKR,GAAW,CAAC,MAAMH,GAAY,SAAsBW,EAAKE,EAAO,IAAI,CAAC,GAAGgF,GAAU,GAAGI,GAAgB,UAAUoB,GAAG5H,GAAkB,GAAGwH,GAAsB,iBAAiB9C,EAAU4B,EAAU,EAAE,mBAAmB,UAAU,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIzC,GAA6B+C,GAAK,MAAM,CAAC,GAAG3C,CAAK,EAAE,GAAGvE,GAAqB,CAAC,UAAU,CAAC,mBAAmB,OAAO,EAAE,UAAU,CAAC,mBAAmB,QAAQ,EAAE,UAAU,CAAC,mBAAmB,cAAc,CAAC,EAAEmG,GAAYI,EAAc,EAAE,SAAsBvF,EAAK2G,EAA0B,CAAC,SAAsB3G,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB0F,EAAiB,SAAS,sBAAsB,SAAsB5F,EAAKpB,GAAU,CAAC,UAAU,SAAS,aAAa,CAAC,UAAU,qBAAqB,SAAS,GAAG,aAAa,GAAG,mBAAmB,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,gBAAgB,EAAE,cAAc,OAAO,YAAY,GAAG,kBAAkB,GAAM,iBAAiB,GAAK,UAAU,GAAG,kBAAkB,EAAI,EAAE,gBAAgB,GAAK,aAAa,EAAE,UAAU,QAAQ,YAAY,GAAK,eAAe,CAAC,aAAa,GAAK,eAAe,EAAE,mBAAmB,KAAK,cAAc,EAAE,aAAa,CAAC,EAAE,YAAY,CAAC,UAAU,EAAE,YAAY,GAAM,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,GAAG,OAAO,OAAO,GAAG,YAAY,gBAAgB,EAAE,WAAW,EAAE,SAAS,YAAY,QAAQ,GAAG,cAAc,GAAG,YAAY,GAAG,eAAe,GAAK,aAAa,GAAG,WAAW,GAAG,gBAAgB,CAAC,kBAAkB,EAAE,eAAe,qBAAqB,SAAS,EAAE,SAAS,qBAAqB,QAAQ,GAAG,UAAU,GAAG,QAAQ,GAAG,YAAY,GAAG,YAAY,GAAG,WAAW,GAAG,iBAAiB,EAAK,EAAE,MAAM,CAAcoB,EAAK2G,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,SAAsB3G,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB0F,EAAiB,SAAS,sBAAsB,SAAsB5F,EAAKtB,EAAY,CAAC,UAAUY,EAAkBoE,CAAS,EAAE,UAAU,GAAG,UAAUC,EAAU,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,UAAUqC,GAAgB,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehG,EAAK2G,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,SAAsB3G,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB0F,EAAiB,SAAS,sBAAsB,SAAsB5F,EAAKtB,EAAY,CAAC,UAAUY,EAAkBsE,CAAS,EAAE,UAAU,GAAG,UAAUC,EAAU,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe7D,EAAK2G,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,SAAsB3G,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB0F,EAAiB,SAAS,sBAAsB,SAAsB5F,EAAKtB,EAAY,CAAC,UAAUY,EAAkBwE,CAAS,EAAE,UAAU,GAAG,UAAUC,EAAU,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/D,EAAK2G,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,SAAsB3G,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB0F,EAAiB,SAAS,sBAAsB,SAAsB5F,EAAKtB,EAAY,CAAC,UAAUY,EAAkB0E,CAAS,EAAE,UAAU,GAAG,UAAUC,EAAU,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAejE,EAAK2G,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,SAAsB3G,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB0F,EAAiB,SAAS,sBAAsB,SAAsB5F,EAAKtB,EAAY,CAAC,UAAUY,EAAkB4E,CAAS,EAAE,UAAU,GAAG,UAAUC,EAAU,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAenE,EAAK2G,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,SAAsB3G,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB0F,EAAiB,SAAS,sBAAsB,SAAsB5F,EAAKtB,EAAY,CAAC,UAAUY,EAAkB8E,CAAS,EAAE,UAAU,GAAG,UAAUC,GAAU,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAerE,EAAK2G,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,SAAsB3G,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB0F,EAAiB,SAAS,sBAAsB,SAAsB5F,EAAKtB,EAAY,CAAC,UAAUY,EAAkBgF,CAAS,EAAE,UAAU,GAAG,UAAUC,GAAU,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAevE,EAAK2G,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,SAAsB3G,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB0F,EAAiB,SAAS,sBAAsB,SAAsB5F,EAAKtB,EAAY,CAAC,UAAUY,EAAkBwE,CAAS,EAAE,UAAU,GAAG,UAAUC,EAAU,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/D,EAAK2G,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,SAAsB3G,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB0F,EAAiB,SAAS,sBAAsB,SAAsB5F,EAAKtB,EAAY,CAAC,UAAUY,EAAkBkF,EAAS,EAAE,UAAU,GAAG,UAAUC,EAAU,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAezE,EAAK2G,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,SAAsB3G,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB0F,EAAiB,SAAS,sBAAsB,SAAsB5F,EAAKtB,EAAY,CAAC,UAAUY,EAAkBsF,CAAS,EAAE,UAAU,GAAG,UAAUC,EAAU,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe7E,EAAK2G,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,SAAsB3G,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB0F,EAAiB,SAAS,sBAAsB,SAAsB5F,EAAKtB,EAAY,CAAC,UAAUY,EAAkBoF,CAAS,EAAE,UAAU,GAAG,UAAUC,EAAU,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe3E,EAAK2G,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,SAAsB3G,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB0F,EAAiB,SAAS,sBAAsB,SAAsB5F,EAAKtB,EAAY,CAAC,UAAUY,EAAkBwF,CAAS,EAAE,UAAU,GAAG,UAAUC,GAAU,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/E,EAAK2G,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,SAAsB3G,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB0F,EAAiB,SAAS,sBAAsB,SAAsB5F,EAAKtB,EAAY,CAAC,UAAUY,EAAkB0F,EAAS,EAAE,UAAU,GAAG,UAAUC,GAAU,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,SAAS,OAAO,MAAM,MAAM,EAAE,kBAAkB,CAAC,OAAO,GAAG,MAAM,EAAE,SAAS,IAAI,KAAK,QAAQ,EAAE,MAAM,OAAO,GAAGjG,GAAqB,CAAC,UAAU,CAAC,aAAa,CAAC,UAAU,qBAAqB,SAAS,GAAG,aAAa,GAAG,mBAAmB,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,gBAAgB,EAAE,cAAc,OAAO,YAAY,GAAG,kBAAkB,GAAM,iBAAiB,GAAK,UAAU,GAAG,kBAAkB,EAAK,EAAE,IAAI,GAAG,WAAW,EAAE,YAAY,EAAE,gBAAgB,CAAC,kBAAkB,EAAE,eAAe,qBAAqB,SAAS,EAAE,SAAS,qBAAqB,QAAQ,GAAG,UAAU,GAAG,QAAQ,EAAE,YAAY,GAAG,YAAY,GAAG,WAAW,GAAG,iBAAiB,EAAI,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,EAAE,UAAU,CAAC,IAAI,EAAE,WAAW,EAAE,eAAe,EAAK,CAAC,EAAEmG,GAAYI,EAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQqB,GAAI,CAAC,kFAAkF,gFAAgF,4OAA4O,6HAA6H,umBAAumB,6WAA6W,iEAAiE,iFAAiF,uGAAuG,iEAAiE,EASvnkBC,GAAgBC,GAAQ7D,GAAU2D,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,kBAAkBA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,IAAI,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,UAAU,SAAS,QAAQ,cAAc,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,wBAAwB,oHAAoH,MAAM,UAAU,KAAKA,EAAY,eAAe,EAAE,UAAU,CAAC,MAAM,eAAe,KAAKA,EAAY,IAAI,EAAE,UAAU,CAAC,wBAAwB,4HAA4H,MAAM,UAAU,KAAKA,EAAY,eAAe,EAAE,UAAU,CAAC,MAAM,gBAAgB,KAAKA,EAAY,IAAI,EAAE,UAAU,CAAC,wBAAwB,+GAA+G,MAAM,UAAU,KAAKA,EAAY,eAAe,EAAE,UAAU,CAAC,MAAM,eAAe,KAAKA,EAAY,IAAI,EAAE,UAAU,CAAC,wBAAwB,mHAAmH,MAAM,UAAU,KAAKA,EAAY,eAAe,EAAE,UAAU,CAAC,MAAM,eAAe,KAAKA,EAAY,IAAI,EAAE,UAAU,CAAC,wBAAwB,uHAAuH,MAAM,UAAU,KAAKA,EAAY,eAAe,EAAE,UAAU,CAAC,MAAM,eAAe,KAAKA,EAAY,IAAI,EAAE,UAAU,CAAC,wBAAwB,qHAAqH,MAAM,UAAU,KAAKA,EAAY,eAAe,EAAE,UAAU,CAAC,MAAM,eAAe,KAAKA,EAAY,IAAI,EAAE,UAAU,CAAC,wBAAwB,uHAAuH,MAAM,UAAU,KAAKA,EAAY,eAAe,EAAE,UAAU,CAAC,MAAM,eAAe,KAAKA,EAAY,IAAI,EAAE,UAAU,CAAC,wBAAwB,uHAAuH,MAAM,UAAU,KAAKA,EAAY,eAAe,EAAE,UAAU,CAAC,MAAM,SAAS,KAAKA,EAAY,IAAI,EAAE,UAAU,CAAC,wBAAwB,uHAAuH,MAAM,UAAU,KAAKA,EAAY,eAAe,EAAE,UAAU,CAAC,MAAM,SAAS,KAAKA,EAAY,IAAI,EAAE,UAAU,CAAC,wBAAwB,uHAAuH,MAAM,WAAW,KAAKA,EAAY,eAAe,EAAE,UAAU,CAAC,MAAM,UAAU,KAAKA,EAAY,IAAI,EAAE,UAAU,CAAC,wBAAwB,uHAAuH,MAAM,WAAW,KAAKA,EAAY,eAAe,EAAE,UAAU,CAAC,MAAM,UAAU,KAAKA,EAAY,IAAI,EAAE,UAAU,CAAC,wBAAwB,uHAAuH,MAAM,WAAW,KAAKA,EAAY,eAAe,EAAE,UAAU,CAAC,MAAM,UAAU,KAAKA,EAAY,IAAI,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,EAAE,GAAGrI,GAAiB,GAAGG,EAAc,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECTh/G,IAAMwI,GAAiB,CAAC,UAAU,IAAIC,GAAU,IAAI,OAAO,4BAAkB,CAAC,EAAE,UAAU,IAAIA,GAAU,IAAI,OAAO,4BAAkB,CAAC,EAAE,UAAU,IAAIA,GAAU,IAAI,OAAO,4BAAkB,CAAC,CAAC,EAAiB,SAARC,EAAmCC,EAAIC,EAAO,CAAC,KAAMA,GAAO,CAAC,IAAMC,EAAOL,GAAiBI,EAAO,EAAE,EAAE,GAAGC,EAAO,CAAC,IAAMC,EAAMD,EAAO,KAAK,EAAEF,CAAG,EAAE,GAAGG,EAAM,OAAOA,CAAM,CAACF,EAAOA,EAAO,QAAS,CAAC,CAAC,SAASG,GAAQH,EAAO,CAAC,IAAMI,EAAS,CAAC,EAAE,KAAMJ,GAAO,CAAC,IAAMC,EAAOL,GAAiBI,EAAO,EAAE,EAAE,GAAGC,EAAO,CAAC,IAAMI,EAAQJ,EAAO,QAAQ,EAAKI,GAAQD,EAAS,KAAKC,CAAO,CAAE,CAACL,EAAOA,EAAO,QAAS,CAAC,GAAGI,EAAS,OAAO,EAAE,OAAO,QAAQ,IAAIA,CAAQ,CAAE,CAAQ,SAASE,GAA0BN,EAAO,CAAC,IAAMO,EAAeJ,GAAQH,CAAM,EAAE,GAAGO,EAAe,MAAMA,CAAe,CCA64D,IAAMC,GAA0BC,EAASC,EAAoB,EAAQC,GAAWF,EAASG,EAAK,EAAQC,GAAmCC,GAA0BC,CAAS,EAAQC,GAAkCF,GAA0BG,CAAQ,EAAQC,GAAmCJ,GAA0BK,EAAO,GAAG,EAAQC,GAAqBX,EAASY,EAAe,EAAQC,GAAkBb,EAASc,EAAY,EAAQC,GAAaf,EAASgB,CAAO,EAAQC,EAAgBC,GAAOR,EAAO,GAAG,EAAQS,GAAWnB,EAASoB,EAAK,EAAQC,GAAerB,EAASsB,EAAS,EAAQC,EAAYL,GAAOM,EAAK,EAAQC,GAAeP,GAAOV,CAAQ,EAAQkB,GAAoB1B,EAAS2B,EAAc,EAAQC,GAAc5B,EAAS6B,CAAQ,EAAQC,GAAiB9B,EAAS+B,EAAW,EAAQC,GAAgBd,GAAOZ,CAAS,EAAQ2B,GAAiBjC,EAASkC,CAAW,EAAQC,GAAcnC,EAASoC,EAAQ,EAAQC,GAAqBrC,EAASsC,EAAe,EAAQC,GAAkBvC,EAASwC,EAAY,EAAQC,GAAiBzC,EAAS0C,EAAW,EAAQC,GAAY,CAAC,UAAU,6CAA6C,UAAU,qBAAqB,UAAU,sBAAsB,UAAU,2CAA2C,EAAQC,GAAU,IAAI,OAAO,SAAW,IAAkBC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,iBAAiB,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,IAAI,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAU,CAAC,QAAQ,EAAE,OAAO,GAAG,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAW,CAAC,QAAQ,KAAK,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAW,CAAC,QAAQ,KAAK,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,GAAG,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,IAAI,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,EAAY,CAAC,MAAM,EAAE,SAAS,IAAI,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,GAAG,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,IAAI,EAAE,GAAG,EAAQC,EAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,IAAI,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,GAAG,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,CAAC,EAAQC,EAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,IAAI,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWZ,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQa,GAAY,CAAC,QAAQ,KAAK,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,GAAG,EAAQC,EAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,IAAI,UAAU,IAAI,KAAK,QAAQ,EAAQC,EAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,IAAI,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAY,CAAC,OAAO,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,QAAQ,EAAQC,GAAmB,CAACC,EAAEC,IAAI,yBAAyBA,CAAC,GAASC,GAAY,CAAC,QAAQ,EAAE,OAAO,GAAG,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,IAAI,EAAE,IAAI,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,GAAG,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,IAAI,EAAE,GAAG,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,GAAG,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,IAAI,EAAE,GAAG,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,GAAG,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,IAAI,EAAE,GAAG,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,GAAG,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,IAAI,EAAE,GAAG,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,GAAG,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,KAAK,EAAE,GAAG,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,GAAG,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,IAAI,EAAE,IAAI,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,IAAI,EAAE,CAAC,EAAQC,EAAY,CAACC,EAAMC,IAAM,CAAC,GAAG,GAACD,GAAO,OAAOA,GAAQ,UAAkB,MAAM,CAAC,GAAGA,EAAM,IAAAC,CAAG,CAAE,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,GAAG,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,KAAK,EAAE,EAAE,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,GAAG,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,GAAG,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,IAAI,EAAE,GAAG,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,GAAG,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,IAAI,EAAE,EAAE,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,GAAG,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,GAAG,EAAE,EAAE,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,IAAI,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,IAAI,EAAE,GAAG,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,IAAI,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,KAAK,EAAE,GAAG,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,IAAI,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,IAAI,EAAE,EAAE,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,IAAI,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,IAAI,EAAE,EAAE,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,GAAG,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,KAAK,EAAE,EAAE,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,GAAG,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,KAAK,EAAE,EAAE,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,GAAG,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,IAAI,EAAE,GAAG,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,IAAI,EAAE,CAAC,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,GAAG,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,IAAI,EAAE,GAAG,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,GAAG,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,IAAI,EAAE,GAAG,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,GAAG,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,KAAK,EAAE,EAAE,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,GAAG,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,KAAK,EAAE,CAAC,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,IAAI,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,GAAG,EAAE,GAAG,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,IAAI,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,KAAK,EAAE,GAAG,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,IAAI,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,KAAK,EAAE,GAAG,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,IAAI,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,GAAG,EAAE,GAAG,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,IAAI,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,IAAI,EAAE,EAAE,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,IAAI,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,IAAI,EAAE,EAAE,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,GAAG,EAAE,CAAC,EAAQC,GAAa,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAa,EAAE,GAAG,EAAE,CAAC,EAAQE,GAAY,CAAC,QAAQ,EAAE,OAAO,GAAG,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,KAAK,EAAE,GAAG,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,IAAI,EAAE,GAAG,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,IAAI,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,IAAI,EAAE,GAAG,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,GAAG,EAAE,IAAI,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,IAAI,EAAE,CAAC,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,GAAG,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,KAAK,EAAE,EAAE,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,GAAG,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,IAAI,EAAE,CAAC,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,KAAK,EAAE,CAAC,EAAQC,GAAa,IAAY,SAAS,cAAc,mBAAmB,GAAG,SAAS,cAAc,UAAU,GAAG,SAAS,KAAaC,GAAQ,CAAC,CAAC,SAAAC,EAAS,uBAAAC,EAAuB,QAAAC,EAAQ,EAAI,IAAI,CAAC,GAAK,CAACC,EAAQC,CAAU,EAAEC,GAAgB,CAAC,uBAAAJ,CAAsB,CAAC,EAAE,OAAOD,EAAS,CAAC,KAAK,IAAII,EAAW,EAAK,EAAE,KAAK,IAAIA,EAAW,EAAI,EAAE,OAAO,IAAIA,EAAW,CAACD,CAAO,EAAE,QAAQD,GAASC,CAAO,CAAC,CAAE,EAAQG,GAAU,CAAC,CAAC,MAAAC,CAAK,IAAoBC,GAAoB,EAAqB,KAAyBC,EAAK,QAAQ,CAAC,wBAAwB,CAAC,OAAOF,CAAK,EAAE,yBAAyB,EAAE,CAAC,EAAUG,GAAwB,CAAC,gBAAgB,YAAY,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,GAA6BC,GAAW,SAASF,EAAMG,EAAI,CAAC,IAAMC,EAAYC,EAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,GAAM,EAAO,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAQC,EAAkBC,GAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,GAAGC,CAAS,EAAEtB,GAASI,CAAK,EAAQmB,GAAU,IAAI,CAAC,IAAMC,EAASA,GAAiB,OAAUX,CAAY,EAAE,GAAGW,EAAS,OAAO,CAAC,IAAIC,GAAU,SAAS,cAAc,qBAAqB,EAAKA,GAAWA,GAAU,aAAa,UAAUD,EAAS,MAAM,GAAQC,GAAU,SAAS,cAAc,MAAM,EAAEA,GAAU,aAAa,OAAO,QAAQ,EAAEA,GAAU,aAAa,UAAUD,EAAS,MAAM,EAAE,SAAS,KAAK,YAAYC,EAAS,EAAG,CAAC,EAAE,CAAC,OAAUZ,CAAY,CAAC,EAAQa,GAAmB,IAAI,CAAC,IAAMF,EAASA,GAAiB,OAAUX,CAAY,EAAE,SAAS,MAAMW,EAAS,OAAO,GAAMA,EAAS,UAAU,SAAS,cAAc,uBAAuB,GAAG,aAAa,UAAUA,EAAS,QAAQ,CAAG,EAAE,CAAC,OAAUX,CAAY,CAAC,EAAE,GAAK,CAACc,EAAYC,CAAmB,EAAEC,GAA8BR,EAAQrH,GAAY,EAAK,EAAQ8H,EAAe,OAAe,CAAC,sBAAAC,EAAsB,MAAAC,CAAK,EAAEC,GAAyB,MAAS,EAAQC,EAAgB,CAAC,CAAC,QAAAC,EAAQ,SAAAC,EAAQ,IAAIL,EAAsB,SAASM,KAAO,CAACF,EAAQ,OAAO,CAAE,CAAC,EAAsMG,EAAkBC,GAAGrI,GAAkB,GAA/M,CAAaiH,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,EAAS,CAAuE,EAAEqB,GAA0B3B,CAAY,EAAE,IAAM4B,GAAUC,GAAkB,WAAW,EAAQC,GAAOC,GAAU,EAAQC,EAAWpC,EAAO,IAAI,EAAQqC,EAAY,IAAS7I,GAAU,EAAiB0H,IAAc,YAAtB,GAAmEoB,EAAa,IAAQ,CAAC9I,GAAU,GAAiB0H,IAAc,YAA6CqB,EAAWN,GAAkB,WAAW,EAAQO,EAAWxC,EAAO,IAAI,EAAQyC,EAAa,IAASjJ,GAAU,EAAiB0H,IAAc,YAAtB,GAAmEwB,GAAWT,GAAkB,WAAW,EAAQU,GAAW3C,EAAO,IAAI,EAAQ4C,GAAWX,GAAkB,WAAW,EAAQY,GAAW7C,EAAO,IAAI,EAAQ8C,GAAa,IAAStJ,GAAU,EAAiB,EAAC,YAAY,WAAW,EAAE,SAAS0H,CAAW,EAAtD,GAAyF6B,GAAa,IAAQ,CAACvJ,GAAU,GAAiB0H,IAAc,YAA6C8B,GAAa,IAASxJ,GAAU,EAAiB0H,IAAc,YAAtB,GAAmE+B,GAAWhB,GAAkB,WAAW,EAAQiB,GAAWlD,EAAO,IAAI,EAAQmD,GAAWlB,GAAkB,WAAW,EAAQmB,GAAWpD,EAAO,IAAI,EAAQqD,GAAWpB,GAAkB,WAAW,EAAQqB,GAAWtD,EAAO,IAAI,EAAQuD,EAAa,IAAQ,CAAC/J,GAAU,GAAiB0H,IAAc,YAAuC,OAAAsC,GAAiB,CAAC,CAAC,EAAsBnE,EAAKoE,GAA0B,SAAS,CAAC,MAAM,CAAC,iBAAiB,YAAY,kBAAA/J,EAAiB,EAAE,SAAsBgK,EAAMC,GAAY,CAAC,GAAGhD,GAAUT,EAAgB,SAAS,CAAcb,EAAKH,GAAU,CAAC,MAAM,+CAA+C,CAAC,EAAewE,EAAMpM,EAAO,IAAI,CAAC,GAAGuJ,EAAU,UAAUiB,GAAGD,EAAkB,gBAAgBnB,CAAS,EAAE,IAAIT,EAAW,MAAM,CAAC,GAAGQ,CAAK,EAAE,SAAS,CAAcpB,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,MAAS,EAAE,UAAU,CAAC,EAAE,MAAS,CAAC,EAAE,SAAsB7B,EAAKwE,EAA0B,CAAC,OAAO,IAAI,MAAMtD,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,SAAsBlB,EAAKnI,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBmI,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAKxI,GAAqB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewI,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,eAAe,SAAsBA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,SAAsBqE,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,uBAAuB,SAAS,CAAcrE,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,kCAAkC,SAAsBqE,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,0BAA0B,SAAS,CAAcrE,EAAKwE,EAA0B,CAAC,SAAsBxE,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,OAAU,QAAQ,OAAU,UAAU,OAAU,MAAM,CAAC,CAAC,EAAE,UAAU,CAAC,QAAQ,OAAU,QAAQ,OAAU,UAAU,OAAU,MAAM,CAAC,CAAC,CAAC,EAAE,SAAsB7B,EAAKrI,GAAmC,CAAC,QAAQ4C,GAAU,UAAU,0BAA0B,wBAAwB,SAAS,QAAQC,GAAW,iBAAiB,GAAK,OAAO,YAAY,UAAU,GAAK,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,OAAO,GAAG,qBAAqB,IAAI,EAAE,SAAsBwF,EAAKtI,GAAM,CAAC,WAAW,uEAAuE,OAAO,OAAO,KAAK,GAAK,GAAG,YAAY,SAAS,YAAY,KAAK+M,EAAkB,KAAK1D,CAAY,GAAG,wBAAwB,UAAU,wEAAwE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAef,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,OAAU,QAAQ,OAAU,UAAU,OAAU,MAAM,CAAC,CAAC,CAAC,EAAE,SAAsBwC,EAAMrM,GAAmC,CAAC,QAAQ0C,GAAW,UAAU,iBAAiB,wBAAwB,UAAU,mBAAmB,mBAAmB,QAAQC,GAAW,UAAU,GAAK,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAcqF,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,SAAS4C,EAAkB,KAAK1D,CAAY,GAAgBf,EAAW0E,EAAS,CAAC,SAAsB1E,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,sCAAsC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAASyE,EAAkB,KAAK1D,CAAY,GAAgBf,EAAW0E,EAAS,CAAC,SAAsB1E,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,sCAAsC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKjI,EAAS,CAAC,sBAAsB,GAAK,SAAS0M,EAAkB,KAAK1D,CAAY,GAAgBf,EAAW0E,EAAS,CAAC,SAAsB1E,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,sCAAsC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,aAAa,MAAM,CAAC,OAAO,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,OAAU,SAAS4C,EAAkB,KAAK1D,CAAY,GAAgBf,EAAW0E,EAAS,CAAC,SAAsB1E,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,mIAAmI,CAAC,CAAC,CAAC,EAAE,QAAQ,OAAU,UAAU,MAAS,EAAE,UAAU,CAAC,SAASyE,EAAkB,KAAK1D,CAAY,GAAgBf,EAAW0E,EAAS,CAAC,SAAsB1E,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,mIAAmI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKlI,GAAkC,CAAC,sBAAsB,GAAK,QAAQ4C,GAAW,SAAS+J,EAAkB,KAAK1D,CAAY,GAAgBf,EAAW0E,EAAS,CAAC,SAAsB1E,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,mIAAmI,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,wBAAwB,SAAS,mBAAmB,YAAY,MAAM,CAAC,OAAO,EAAE,QAAQrF,GAAW,UAAU,GAAK,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqF,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,SAAsBA,EAAKhI,GAAmC,CAAC,QAAQ6C,GAAW,UAAU,eAAe,wBAAwB,QAAQ,mBAAmB,mBAAmB,QAAQL,GAAW,UAAU,GAAK,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsBwF,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,QAAQ,GAAGX,GAAmB,GAAG,GAAG,EAAE,IAAI,EAAE,EAAE,GAAG,EAAE,KAAK,EAAE,EAAE,EAAE,IAAI,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,MAAM,QAAQ,EAAE,MAAS,EAAE,UAAU,CAAC,MAAM,QAAQ,EAAE,MAAS,CAAC,EAAE,SAAsBlB,EAAKwE,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAQ,GAAGtD,GAAmB,GAAG,GAAG,EAAE,IAAI,EAAE,EAAE,EAAE,EAAE,KAAK,EAAE,EAAE,EAAE,IAAI,EAAE,EAAE,EAAE,SAAsBlB,EAAKnI,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBmI,EAAK7H,GAAgB,CAAC,UAAU,wEAAwE,OAAO,OAAO,UAAU,GAAG,GAAG,YAAY,UAAU,wEAAwE,SAAS,YAAY,UAAUsM,EAAkB,KAAK1D,CAAY,GAAG,2DAA2D,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,uEAAuE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAef,EAAK2E,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASC,GAA4B5E,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGX,GAAmB,GAAG,GAAG,EAAE,IAAI,EAAE,EAAE,GAAG,EAAE,KAAK,EAAE,EAAE,EAAE,GAAG,EAAE,UAAU,CAAC,EAAE,MAAS,EAAE,UAAU,CAAC,EAAE,MAAS,CAAC,EAAE,SAAsBlB,EAAKwE,EAA0B,CAAC,OAAO,GAAG,GAAGtD,GAAmB,GAAG,GAAG,EAAE,IAAI,EAAE,EAAE,EAAE,EAAE,KAAK,EAAE,EAAE,EAAE,IAAI,SAAsBlB,EAAKnI,EAAU,CAAC,UAAU,0BAA0B,GAAG8K,GAAU,OAAO,YAAY,IAAII,EAAK,QAAQ,YAAY,SAAsB/C,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU+C,EAAc,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAc,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAc,CAAC,CAAC,CAAC,EAAE,SAAsB5E,EAAK3H,GAAa,CAAC,UAAUoM,EAAkB,KAAK1D,CAAY,GAAG,YAAY,UAAU6D,EAAc,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,GAAM,UAAU,GAAK,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeP,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,gBAAgB,SAAS,CAAcrE,EAAKxH,EAAgB,CAAC,eAAeuC,GAAW,4BAA4B,GAAK,0BAA0B,GAAG,yBAAyB,SAAS,yBAAyBD,EAAY,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,mBAAmB,eAAe,SAAsBuJ,EAAM,MAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,EAAE,UAAU,gBAAgB,SAAS,CAAcrE,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAKwE,EAA0B,CAAC,SAAsBxE,EAAKnI,EAAU,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBmI,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,SAAS,EAAE,EAAE,UAAU,CAAC,SAAS,EAAE,EAAE,UAAU,CAAC,SAAS,EAAE,CAAC,EAAE,SAAsB7B,EAAKzH,EAAQ,CAAC,qBAAqB,SAAS,IAAI,GAAG,QAAQ,EAAE,OAAO,OAAO,GAAG,YAAY,cAAc,UAAU,SAAS,YAAY,KAAK,GAAM,YAAY,eAAe,WAAW,CAAC,WAAW,+CAA+C,UAAU,SAAS,WAAW,GAAG,EAAE,WAAW,IAAI,kBAAkB,GAAM,aAAa,CAAC,WAAW,+CAA+C,oBAAoB,SAAS,UAAU,SAAS,WAAW,GAAG,EAAE,MAAM,GAAG,MAAM,EAAE,gBAAgB,GAAK,YAAY,qBAAqB,WAAW,CAAC,WAAW,+CAA+C,UAAU,SAAS,WAAW,GAAG,EAAE,WAAW,IAAI,UAAU,kBAAkB,SAAS,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe8L,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcrE,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQgD,GAA2B3D,GAAmB,GAAG,GAAG,EAAE,IAAI,EAAE,EAAE,GAAG,EAAE,EAAE,KAAK,EAAE,GAAG,GAAG,IAAI,EAAE,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,CAAC,CAAC,EAAE,SAAsBlB,EAAKjH,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQ8L,GAA2B3D,GAAmB,GAAG,GAAG,EAAE,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,MAAM,EAAE,GAAG,GAAG,IAAI,EAAE,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,EAAE,UAAU,eAAe,CAAC,CAAC,CAAC,EAAelB,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAW0E,EAAS,CAAC,SAAsB1E,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,MAAM,uBAAuB,OAAO,0BAA0B,OAAO,sBAAsB,oEAAoE,EAAE,SAAS,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKjI,EAAS,CAAC,sBAAsB,GAAK,SAAsBiI,EAAW0E,EAAS,CAAC,SAAsB1E,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,MAAM,uBAAuB,OAAO,0BAA0B,OAAO,sBAAsB,oEAAoE,EAAE,SAAS,eAAe,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,gBAAgB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQgD,GAA2B3D,GAAmB,GAAG,GAAG,EAAE,IAAI,EAAE,EAAE,GAAG,EAAE,EAAE,GAAG,CAAC,EAAE,YAAY,IAAI,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,sKAAsK,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,IAAI,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,sKAAsK,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,IAAI,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,sKAAsK,CAAC,CAAC,EAAE,SAAsBmD,EAAMtL,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQ8L,GAA2B3D,GAAmB,GAAG,GAAG,EAAE,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,CAAC,EAAE,YAAY,IAAI,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,sKAAsK,EAAE,UAAU,iBAAiB,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAclB,EAAKwE,EAA0B,CAAC,SAAsBxE,EAAKnI,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBmI,EAAKrH,GAAM,CAAC,gBAAgB,mBAAmB,aAAa,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,SAAS,GAAM,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,SAAS,YAAY,KAAK,GAAK,MAAM,GAAK,UAAU,QAAQ,QAAQ,GAAK,cAAc,GAAM,QAAQ,sEAAsE,QAAQ,SAAS,OAAO8L,EAAkB,KAAK1D,CAAY,GAAG,oHAAoH,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,cAAc,EAAE,eAAe,EAAE,OAAO,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAef,EAAKwE,EAA0B,CAAC,SAAsBxE,EAAKnI,EAAU,CAAC,UAAU,0BAA0B,GAAG,SAAS,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBmI,EAAKnH,GAAU,CAAC,WAAW,mBAAmB,aAAa,CAAC,aAAa,GAAK,WAAW,QAAQ,EAAE,MAAM,oBAAoB,OAAO,CAAC,EAAE,eAAe,CAAC,YAAY,IAAI,cAAc,GAAM,cAAc,IAAI,EAAE,WAAW,GAAG,OAAO,OAAO,aAAa,CAAC,aAAa,GAAK,WAAW,GAAG,WAAW,OAAO,cAAc,GAAK,YAAY,EAAE,EAAE,GAAG,YAAY,SAAS,YAAY,aAAa,CAAC,WAAW,qBAAqB,cAAc,IAAI,aAAa,GAAM,aAAa,GAAG,WAAW,CAAC,EAAE,YAAY,CAAC,eAAe,IAAI,eAAe,GAAG,WAAW,GAAG,gBAAgB,IAAI,oBAAoB,GAAG,cAAc,GAAG,aAAa,IAAI,iBAAiB,GAAG,aAAa,EAAE,eAAe,EAAE,gBAAgB,IAAI,gBAAgB,IAAI,WAAW,GAAG,cAAc,EAAE,EAAE,YAAY,CAAC,oBAAoB,IAAI,mBAAmB,GAAM,cAAc,OAAO,YAAY,GAAK,wBAAwB,EAAE,mBAAmB,GAAM,oBAAoB,EAAE,QAAQ,MAAM,WAAW,GAAM,UAAU,GAAG,qBAAqB,EAAE,gBAAgB,GAAM,aAAa,GAAM,gBAAgB,IAAI,iBAAiB,GAAM,YAAY,EAAK,EAAE,OAAO,GAAG,eAAe,CAAC,QAAQ,GAAG,WAAW,EAAE,WAAW,EAAE,YAAY,EAAK,EAAE,YAAY,MAAM,OAAO,EAAE,cAAc,CAAC,gBAAgB,GAAM,gBAAgB,SAAS,YAAY,EAAE,WAAW,GAAM,YAAY,CAAC,EAAE,aAAa,CAAC,cAAc,YAAK,YAAY,GAAG,YAAY,uEAAuE,WAAW,GAAG,UAAU,OAAO,EAAE,YAAY,CAAC,KAAK,EAAE,QAAQ,GAAG,QAAQ,EAAE,SAAS,EAAK,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewL,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,eAAe,SAAS,CAAcrE,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKjI,EAAS,CAAC,sBAAsB,GAAK,SAAsBiI,EAAW0E,EAAS,CAAC,SAAsB1E,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,sBAAsB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeqE,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,gBAAgB,SAAS,CAAcrE,EAAK8E,GAAK,CAAC,KAAK,qCAAqC,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBT,EAAMpM,EAAO,EAAE,CAAC,UAAU,8BAA8B,mBAAmB,UAAU,SAAS,CAAc+H,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,iBAAiB,IAAI,MAAM,QAAQgD,GAA2B3D,GAAmB,GAAG,GAAG,EAAE,IAAI,GAAG,GAAG,EAAE,EAAE,EAAE,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,iBAAiB,IAAI,MAAM,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,iBAAiB,IAAI,MAAM,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,CAAC,EAAE,SAAsBlB,EAAKlH,EAAY,CAAC,kBAAkB,CAAC,WAAWmC,CAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAW,eAAeE,GAAW,4BAA4B,GAAK,0BAA0B,GAAG,yBAAyB,SAAS,yBAAyBJ,EAAY,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,iBAAiB,IAAI,MAAM,QAAQ+J,GAA2B3D,GAAmB,GAAG,GAAG,EAAE,IAAI,IAAI,GAAG,EAAE,EAAE,EAAE,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,MAAM,CAAC,OAAO,EAAE,qBAAqB,IAAI,EAAE,SAAsBlB,EAAKwE,EAA0B,CAAC,SAAsBxE,EAAKnI,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBmI,EAAKzH,EAAQ,CAAC,qBAAqB,OAAO,IAAI,IAAI,QAAQ,EAAE,OAAO,OAAO,GAAG,YAAY,cAAc,UAAU,SAAS,YAAY,KAAK,GAAM,YAAY,qBAAqB,WAAW,CAAC,WAAW,+CAA+C,UAAU,SAAS,WAAW,GAAG,EAAE,WAAW,GAAG,kBAAkB,GAAK,aAAa,CAAC,WAAW,+CAA+C,oBAAoB,SAAS,UAAU,SAAS,WAAW,GAAG,EAAE,MAAM,GAAG,MAAM,EAAE,gBAAgB,GAAK,YAAY,qBAAqB,WAAW,CAAC,WAAW,+CAA+C,UAAU,SAAS,WAAW,GAAG,EAAE,WAAW,IAAI,UAAU,qBAAqB,SAAS,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeyH,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQgD,GAA2B3D,GAAmB,GAAG,GAAG,EAAE,IAAI,GAAG,GAAG,EAAE,GAAG,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,aAAa,IAAI,qEAAqE,OAAO,yEAAyE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,IAAI,WAAW,IAAI,MAAM,aAAa,IAAI,qEAAqE,OAAO,yEAAyE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,IAAI,WAAW,IAAI,MAAM,aAAa,IAAI,qEAAqE,OAAO,yEAAyE,CAAC,CAAC,EAAE,SAAsBlB,EAAKlH,EAAY,CAAC,kBAAkB,CAAC,WAAWsC,CAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQ0J,GAA2B3D,GAAmB,GAAG,GAAG,EAAE,IAAI,IAAI,GAAG,EAAE,GAAG,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,aAAa,IAAI,qEAAqE,OAAO,yEAAyE,EAAE,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,OAAO,MAAM,CAAC,qBAAqB,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelB,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAW0E,EAAS,CAAC,SAAsB1E,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,qEAAqE,0BAA0B,WAAW,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAW0E,EAAS,CAAC,SAAsB1E,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,qEAAqE,0BAA0B,WAAW,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAW0E,EAAS,CAAC,SAAsB1E,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,qEAAqE,0BAA0B,WAAW,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKlI,GAAkC,CAAC,sBAAsB,GAAK,QAAQuD,GAAW,SAAsB2E,EAAW0E,EAAS,CAAC,SAAsB1E,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,qEAAqE,0BAA0B,WAAW,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,wBAAwB,UAAU,MAAM,CAAC,gBAAgB,EAAE,QAAQ1E,GAAY,UAAU,GAAK,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe0E,EAAK8E,GAAK,CAAC,KAAK,uCAAuC,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBT,EAAMpM,EAAO,EAAE,CAAC,UAAU,+BAA+B,mBAAmB,UAAU,SAAS,CAAc+H,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,iBAAiB,IAAI,MAAM,QAAQgD,GAA2B3D,GAAmB,GAAG,GAAG,EAAE,IAAI,GAAG,GAAG,EAAE,EAAE,EAAE,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,iBAAiB,IAAI,MAAM,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,iBAAiB,IAAI,MAAM,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,CAAC,EAAE,SAAsBlB,EAAKlH,EAAY,CAAC,kBAAkB,CAAC,WAAWmC,CAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAW,eAAeE,GAAW,4BAA4B,GAAK,0BAA0B,GAAG,yBAAyB,SAAS,yBAAyBJ,EAAY,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,iBAAiB,IAAI,MAAM,QAAQ+J,GAA2B3D,GAAmB,GAAG,GAAG,EAAE,IAAI,IAAI,GAAG,EAAE,EAAE,EAAE,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,MAAM,CAAC,OAAO,GAAG,qBAAqB,IAAI,EAAE,SAAsBlB,EAAKwE,EAA0B,CAAC,SAAsBxE,EAAKnI,EAAU,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBmI,EAAKzH,EAAQ,CAAC,qBAAqB,OAAO,IAAI,IAAI,QAAQ,EAAE,OAAO,OAAO,GAAG,YAAY,cAAc,UAAU,SAAS,YAAY,KAAK,GAAM,YAAY,qBAAqB,WAAW,CAAC,WAAW,+CAA+C,UAAU,SAAS,WAAW,GAAG,EAAE,WAAW,GAAG,kBAAkB,GAAK,aAAa,CAAC,WAAW,+CAA+C,oBAAoB,SAAS,UAAU,SAAS,WAAW,GAAG,EAAE,MAAM,GAAG,MAAM,EAAE,gBAAgB,GAAK,YAAY,qBAAqB,WAAW,CAAC,WAAW,+CAA+C,UAAU,SAAS,WAAW,GAAG,EAAE,WAAW,IAAI,UAAU,qBAAqB,SAAS,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeyH,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQgD,GAA2B3D,GAAmB,GAAG,GAAG,EAAE,IAAI,GAAG,GAAG,EAAE,GAAG,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,IAAI,oEAAoE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,IAAI,WAAW,IAAI,IAAI,oEAAoE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,IAAI,WAAW,IAAI,IAAI,oEAAoE,CAAC,CAAC,EAAE,SAAsBlB,EAAKlH,EAAY,CAAC,kBAAkB,CAAC,WAAWsC,CAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQ0J,GAA2B3D,GAAmB,GAAG,GAAG,EAAE,IAAI,IAAI,GAAG,EAAE,GAAG,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,IAAI,oEAAoE,EAAE,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,OAAO,MAAM,CAAC,qBAAqB,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelB,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAW0E,EAAS,CAAC,SAAsB1E,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,qEAAqE,0BAA0B,WAAW,EAAE,SAAS,eAAe,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAW0E,EAAS,CAAC,SAAsB1E,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,qEAAqE,0BAA0B,WAAW,EAAE,SAAS,eAAe,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAW0E,EAAS,CAAC,SAAsB1E,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,qEAAqE,0BAA0B,WAAW,EAAE,SAAS,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKlI,GAAkC,CAAC,sBAAsB,GAAK,QAAQuD,GAAW,SAAsB2E,EAAW0E,EAAS,CAAC,SAAsB1E,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,qEAAqE,0BAA0B,WAAW,EAAE,SAAS,eAAe,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,wBAAwB,UAAU,MAAM,CAAC,gBAAgB,EAAE,QAAQ1E,GAAY,UAAU,GAAK,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE0H,EAAY,GAAgBhD,EAAK8E,GAAK,CAAC,KAAK,8CAA8C,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBT,EAAMpM,EAAO,EAAE,CAAC,UAAU,4CAA4C,mBAAmB,UAAU,SAAS,CAAc+H,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,iBAAiB,IAAI,MAAM,QAAQgD,GAA2B3D,GAAmB,GAAG,GAAG,EAAE,IAAI,GAAG,GAAG,EAAE,EAAE,EAAE,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,iBAAiB,IAAI,MAAM,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,CAAC,EAAE,SAAsBlB,EAAKlH,EAAY,CAAC,kBAAkB,CAAC,WAAWmC,CAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAW,eAAeE,GAAW,4BAA4B,GAAK,0BAA0B,GAAG,yBAAyB,SAAS,yBAAyBJ,EAAY,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,iBAAiB,IAAI,MAAM,QAAQ+J,GAA2B3D,GAAmB,GAAG,GAAG,EAAE,IAAI,IAAI,GAAG,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,MAAM,CAAC,OAAO,EAAE,qBAAqB,IAAI,EAAE,SAAsBlB,EAAKwE,EAA0B,CAAC,SAAsBxE,EAAKnI,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBmI,EAAKzH,EAAQ,CAAC,qBAAqB,OAAO,IAAI,IAAI,QAAQ,EAAE,OAAO,OAAO,GAAG,YAAY,cAAc,UAAU,SAAS,YAAY,KAAK,GAAM,YAAY,qBAAqB,WAAW,CAAC,WAAW,+CAA+C,UAAU,SAAS,WAAW,GAAG,EAAE,WAAW,GAAG,kBAAkB,GAAK,aAAa,CAAC,WAAW,+CAA+C,oBAAoB,SAAS,UAAU,SAAS,WAAW,GAAG,EAAE,MAAM,GAAG,MAAM,EAAE,gBAAgB,GAAK,YAAY,qBAAqB,WAAW,CAAC,WAAW,+CAA+C,UAAU,SAAS,WAAW,GAAG,EAAE,WAAW,IAAI,UAAU,qBAAqB,SAAS,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeyH,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQgD,GAA2B3D,GAAmB,GAAG,GAAG,EAAE,IAAI,GAAG,GAAG,EAAE,GAAG,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,CAAC,CAAC,EAAE,SAAsBlB,EAAKlH,EAAY,CAAC,kBAAkB,CAAC,WAAWsC,CAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQ0J,GAA2B3D,GAAmB,GAAG,GAAG,EAAE,IAAI,IAAI,GAAG,EAAE,GAAG,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,OAAO,MAAM,CAAC,qBAAqB,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelB,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAW0E,EAAS,CAAC,SAAsB1E,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,qEAAqE,0BAA0B,WAAW,EAAE,SAAS,qBAAqB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAW0E,EAAS,CAAC,SAAsB1E,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,qEAAqE,0BAA0B,WAAW,EAAE,SAAS,qBAAqB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKlI,GAAkC,CAAC,sBAAsB,GAAK,QAAQuD,GAAW,SAAsB2E,EAAW0E,EAAS,CAAC,SAAsB1E,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,qEAAqE,0BAA0B,WAAW,EAAE,SAAS,qBAAqB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,wBAAwB,UAAU,MAAM,CAAC,gBAAgB,EAAE,QAAQ1E,GAAY,UAAU,GAAK,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE0H,EAAY,GAAgBhD,EAAK8E,GAAK,CAAC,KAAK,yCAAyC,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBT,EAAMpM,EAAO,EAAE,CAAC,UAAU,6CAA6C,mBAAmB,UAAU,SAAS,CAAc+H,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,iBAAiB,IAAI,MAAM,QAAQgD,GAA2B3D,GAAmB,GAAG,GAAG,EAAE,IAAI,GAAG,GAAG,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,iBAAiB,IAAI,MAAM,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,CAAC,EAAE,SAAsBlB,EAAKlH,EAAY,CAAC,kBAAkB,CAAC,WAAWmC,CAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAW,eAAeE,GAAW,4BAA4B,GAAK,0BAA0B,GAAG,yBAAyB,SAAS,yBAAyBJ,EAAY,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,iBAAiB,IAAI,MAAM,QAAQ+J,GAA2B3D,GAAmB,GAAG,GAAG,EAAE,IAAI,IAAI,GAAG,EAAE,EAAE,EAAE,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,MAAM,CAAC,OAAO,GAAG,qBAAqB,IAAI,EAAE,SAAsBlB,EAAKwE,EAA0B,CAAC,SAAsBxE,EAAKnI,EAAU,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBmI,EAAKzH,EAAQ,CAAC,qBAAqB,OAAO,IAAI,IAAI,QAAQ,EAAE,OAAO,OAAO,GAAG,YAAY,cAAc,UAAU,SAAS,YAAY,KAAK,GAAM,YAAY,qBAAqB,WAAW,CAAC,WAAW,+CAA+C,UAAU,SAAS,WAAW,GAAG,EAAE,WAAW,GAAG,kBAAkB,GAAK,aAAa,CAAC,WAAW,+CAA+C,oBAAoB,SAAS,UAAU,SAAS,WAAW,GAAG,EAAE,MAAM,GAAG,MAAM,EAAE,gBAAgB,GAAK,YAAY,qBAAqB,WAAW,CAAC,WAAW,+CAA+C,UAAU,SAAS,WAAW,GAAG,EAAE,WAAW,IAAI,UAAU,qBAAqB,SAAS,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeyH,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQgD,GAA2B3D,GAAmB,GAAG,GAAG,EAAE,IAAI,GAAG,GAAG,EAAE,GAAG,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,IAAI,qEAAqE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,IAAI,WAAW,IAAI,IAAI,qEAAqE,CAAC,CAAC,EAAE,SAAsBlB,EAAKlH,EAAY,CAAC,kBAAkB,CAAC,WAAWsC,CAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQ0J,GAA2B3D,GAAmB,GAAG,GAAG,EAAE,IAAI,IAAI,GAAG,EAAE,GAAG,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,OAAO,MAAM,CAAC,qBAAqB,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelB,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAW0E,EAAS,CAAC,SAAsB1E,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,qEAAqE,0BAA0B,WAAW,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAW0E,EAAS,CAAC,SAAsB1E,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,qEAAqE,0BAA0B,WAAW,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKlI,GAAkC,CAAC,sBAAsB,GAAK,QAAQuD,GAAW,SAAsB2E,EAAW0E,EAAS,CAAC,SAAsB1E,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,qEAAqE,0BAA0B,WAAW,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,wBAAwB,SAAS,MAAM,CAAC,gBAAgB,EAAE,QAAQ1E,GAAY,UAAU,GAAK,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE2H,EAAa,GAAgBoB,EAAM,MAAM,CAAC,UAAU,0DAA0D,mBAAmB,gBAAgB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAcrE,EAAKlH,EAAY,CAAC,kBAAkB,CAAC,WAAWmC,CAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAW,eAAeE,GAAW,4BAA4B,GAAK,0BAA0B,GAAG,yBAAyB,SAAS,yBAAyBJ,EAAY,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,iBAAiB,IAAI,MAAM,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,MAAM,CAAC,OAAO,EAAE,qBAAqB,IAAI,EAAE,SAAsBkF,EAAKwE,EAA0B,CAAC,SAAsBxE,EAAKnI,EAAU,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBmI,EAAKzH,EAAQ,CAAC,qBAAqB,OAAO,IAAI,IAAI,QAAQ,EAAE,OAAO,OAAO,GAAG,YAAY,cAAc,UAAU,SAAS,YAAY,KAAK,GAAM,YAAY,qBAAqB,WAAW,CAAC,WAAW,+CAA+C,UAAU,SAAS,WAAW,GAAG,EAAE,WAAW,GAAG,kBAAkB,GAAK,aAAa,CAAC,WAAW,+CAA+C,oBAAoB,SAAS,UAAU,SAAS,WAAW,GAAG,EAAE,MAAM,GAAG,MAAM,EAAE,gBAAgB,GAAK,YAAY,qBAAqB,WAAW,CAAC,WAAW,+CAA+C,UAAU,SAAS,WAAW,GAAG,EAAE,WAAW,IAAI,UAAU,qBAAqB,SAAS,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeyH,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAKlH,EAAY,CAAC,kBAAkB,CAAC,WAAWsC,CAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,EAAE,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,OAAO,MAAM,CAAC,qBAAqB,IAAI,CAAC,CAAC,CAAC,CAAC,EAAe6E,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKlI,GAAkC,CAAC,sBAAsB,GAAK,QAAQuD,GAAW,SAAsB2E,EAAW0E,EAAS,CAAC,SAAsB1E,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,qEAAqE,0BAA0B,WAAW,EAAE,SAAS,qBAAqB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,wBAAwB,SAAS,MAAM,CAAC,gBAAgB,EAAE,QAAQ1E,GAAY,UAAU,GAAK,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+I,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAcrE,EAAKlH,EAAY,CAAC,kBAAkB,CAAC,WAAWmC,CAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAW,eAAeE,GAAW,4BAA4B,GAAK,0BAA0B,GAAG,yBAAyB,SAAS,yBAAyBJ,EAAY,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,iBAAiB,IAAI,MAAM,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,MAAM,CAAC,OAAO,GAAG,qBAAqB,IAAI,EAAE,SAAsBkF,EAAKwE,EAA0B,CAAC,SAAsBxE,EAAKnI,EAAU,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBmI,EAAKzH,EAAQ,CAAC,qBAAqB,OAAO,IAAI,IAAI,QAAQ,EAAE,OAAO,OAAO,GAAG,YAAY,cAAc,UAAU,SAAS,YAAY,KAAK,GAAM,YAAY,qBAAqB,WAAW,CAAC,WAAW,+CAA+C,UAAU,SAAS,WAAW,GAAG,EAAE,WAAW,GAAG,kBAAkB,GAAK,aAAa,CAAC,WAAW,+CAA+C,oBAAoB,SAAS,UAAU,SAAS,WAAW,GAAG,EAAE,MAAM,GAAG,MAAM,EAAE,gBAAgB,GAAK,YAAY,qBAAqB,WAAW,CAAC,WAAW,+CAA+C,UAAU,SAAS,WAAW,GAAG,EAAE,WAAW,IAAI,UAAU,qBAAqB,SAAS,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeyH,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKlH,EAAY,CAAC,kBAAkB,CAAC,WAAWsC,CAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,IAAI,WAAW,IAAI,IAAI,qEAAqE,EAAE,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,OAAO,MAAM,CAAC,qBAAqB,IAAI,CAAC,CAAC,CAAC,CAAC,EAAe6E,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKlI,GAAkC,CAAC,sBAAsB,GAAK,QAAQuD,GAAW,SAAsB2E,EAAW0E,EAAS,CAAC,SAAsB1E,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,qEAAqE,0BAA0B,WAAW,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,wBAAwB,SAAS,MAAM,CAAC,gBAAgB,EAAE,QAAQ1E,GAAY,UAAU,GAAK,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe0E,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,SAAsBA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,SAAsBqE,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,kBAAkB,SAAS,CAAcrE,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,6BAA6B,SAAsBA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,6BAA6B,SAAsBqE,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,qBAAqB,SAAS,CAAcrE,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,mCAAmC,OAAU,MAAM,CAAC,CAAC,CAAC,EAAE,SAAsB7B,EAAKxH,EAAgB,CAAC,kBAAkB,CAAC,WAAWgD,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAY,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,mBAAmB,sBAAsB,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsByE,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,SAAS4C,EAAkB,KAAK1D,CAAY,GAAgBf,EAAW0E,EAAS,CAAC,SAAsBL,EAAM,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,CAAC,kBAA+BrE,EAAK,KAAK,CAAC,CAAC,EAAE,qCAAqC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAASyE,EAAkB,MAAM1D,CAAY,GAAgBf,EAAW0E,EAAS,CAAC,SAAsBL,EAAM,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,CAAC,kBAA+BrE,EAAK,KAAK,CAAC,CAAC,EAAE,qCAAqC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAASyE,EAAkB,MAAM1D,CAAY,GAAgBf,EAAW0E,EAAS,CAAC,SAAsBL,EAAM,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,CAAC,kBAA+BrE,EAAK,KAAK,CAAC,CAAC,EAAE,qCAAqC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKjI,EAAS,CAAC,sBAAsB,GAAK,SAAS0M,EAAkB,KAAK1D,CAAY,GAAgBf,EAAW0E,EAAS,CAAC,SAAsBL,EAAM,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,CAAC,kBAA+BrE,EAAK,KAAK,CAAC,CAAC,EAAE,qCAAqC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,SAAS4C,EAAkB,MAAM1D,CAAY,GAAgBsD,EAAYK,EAAS,CAAC,SAAS,CAAc1E,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,+GAA+G,CAAC,EAAeqE,EAAM,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,CAAcrE,EAAK,SAAS,CAAC,SAAS,2EAA2E,CAAC,EAAE,iEAAiE,CAAC,CAAC,EAAeqE,EAAM,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,CAAC,wGAAqHrE,EAAK,SAAS,CAAC,SAAS,8FAA+E,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAASyE,EAAkB,MAAM1D,CAAY,GAAgBsD,EAAYK,EAAS,CAAC,SAAS,CAAc1E,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,+GAA+G,CAAC,EAAeqE,EAAM,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,CAAcrE,EAAK,SAAS,CAAC,SAAS,2EAA2E,CAAC,EAAE,iEAAiE,CAAC,CAAC,EAAeqE,EAAM,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,CAAC,wGAAqHrE,EAAK,SAAS,CAAC,SAAS,8FAA+E,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,mCAAmC,OAAU,SAASyE,EAAkB,MAAM1D,CAAY,GAAgBsD,EAAYK,EAAS,CAAC,SAAS,CAAc1E,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,+GAA+G,CAAC,EAAeqE,EAAM,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,CAAcrE,EAAK,SAAS,CAAC,SAAS,2EAA2E,CAAC,EAAE,iEAAiE,CAAC,CAAC,EAAeqE,EAAM,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,CAAC,wGAAqHrE,EAAK,SAAS,CAAC,SAAS,8FAA+E,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKhH,GAAe,CAAC,kBAAkB,CAAC,WAAWyC,CAAW,EAAE,sBAAsB,GAAK,gBAAgBF,EAAY,mCAAmC,GAAK,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAASkJ,EAAkB,MAAM1D,CAAY,GAAgBsD,EAAYK,EAAS,CAAC,SAAS,CAAc1E,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,+GAA+G,CAAC,EAAeqE,EAAM,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,CAAcrE,EAAK,SAAS,CAAC,SAAS,2EAA2E,CAAC,EAAE,iEAAiE,CAAC,CAAC,EAAeqE,EAAM,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,CAAC,wGAAqHrE,EAAK,SAAS,CAAC,SAAS,8FAA+E,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,YAAY,MAAM,CAAC,QAAQ,YAAY,EAAE,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK2E,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASI,GAA6B/E,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGX,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,UAAU,CAAC,EAAE,MAAS,EAAE,UAAU,CAAC,EAAE,MAAS,CAAC,EAAE,SAAsBlB,EAAKwE,EAA0B,CAAC,OAAO,GAAG,GAAGtD,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,IAAI,SAAsBlB,EAAKnI,EAAU,CAAC,UAAU,2BAA2B,GAAGqL,EAAW,OAAO,YAAY,IAAIC,EAAK,QAAQ,YAAY,SAAsBnD,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUkD,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsB/E,EAAK3H,GAAa,CAAC,UAAUoM,EAAkB,MAAM1D,CAAY,GAAG,aAAa,UAAUgE,EAAe,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,GAAM,UAAU,GAAK,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeV,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,sBAAsB,SAAS,CAAcrE,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI4C,EAAkB,MAAM1D,CAAY,GAAG,qBAAqB,IAAI,OAAO,QAAQ8D,GAA2B3D,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,EAAE,EAAE,QAAQ,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,aAAa,IAAI,sEAAsE,OAAO,oQAAoQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAIuD,EAAkB,MAAM1D,CAAY,GAAG,qBAAqB,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,oBAAoBG,GAAmB,OAAO,OAAO,0CAA0C,IAAI,sEAAsE,OAAO,oQAAoQ,EAAE,kBAAkBvF,EAAkB,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI8I,EAAkB,MAAM1D,CAAY,GAAG,qBAAqB,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,iBAAiBG,GAAmB,OAAO,OAAO,qCAAqC,IAAI,sEAAsE,OAAO,oQAAoQ,CAAC,CAAC,EAAE,SAAsBlB,EAAKlH,EAAY,CAAC,kBAAkB,CAAC,WAAW4C,EAAW,EAAE,sBAAsB,GAAK,gBAAgBP,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAIsJ,EAAkB,MAAM1D,CAAY,GAAG,qBAAqB,IAAI,OAAO,QAAQ8D,GAA2B3D,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,EAAE,EAAE,OAAO,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,sEAAsE,OAAO,oQAAoQ,EAAE,UAAU,gBAAgB,MAAM,CAAC,qBAAqB,IAAI,CAAC,CAAC,CAAC,CAAC,EAAelB,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI4C,EAAkB,MAAM1D,CAAY,GAAG,gBAAgB,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQ8D,GAA2B3D,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,EAAE,EAAE,IAAI,QAAQ,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,aAAa,IAAI,uFAAuF,OAAO,iQAAiQ,CAAC,EAAE,UAAU,CAAC,gBAAgBlF,GAAY,WAAW,CAAC,IAAIyI,EAAkB,MAAM1D,CAAY,GAAG,gBAAgB,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,KAAK,WAAW,KAAK,MAAM,oBAAoBG,GAAmB,OAAO,OAAO,uCAAuC,IAAI,uFAAuF,OAAO,iQAAiQ,EAAE,MAAM,CAAC,OAAO,EAAE,EAAE,kBAAkBvF,EAAkB,EAAE,UAAU,CAAC,gBAAgBI,GAAY,WAAW,CAAC,IAAI0I,EAAkB,MAAM1D,CAAY,GAAG,gBAAgB,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,KAAK,WAAW,KAAK,MAAM,iBAAiBG,GAAmB,OAAO,OAAO,sCAAsC,IAAI,uFAAuF,OAAO,iQAAiQ,EAAE,MAAM,CAAC,OAAO,IAAI,qBAAqB,IAAI,CAAC,CAAC,EAAE,SAAsBlB,EAAKlH,EAAY,CAAC,kBAAkB,CAAC,WAAW2C,CAAW,EAAE,sBAAsB,GAAK,gBAAgBK,GAAY,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI2I,EAAkB,MAAM1D,CAAY,GAAG,gBAAgB,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQ8D,GAA2B3D,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,EAAE,EAAE,IAAI,GAAG,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uFAAuF,OAAO,iQAAiQ,EAAE,UAAU,gBAAgB,mBAAmB,kBAAkB,MAAM,CAAC,OAAO,GAAG,qBAAqB,IAAI,CAAC,CAAC,CAAC,CAAC,EAAEkC,EAAa,GAAgBpD,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI4C,EAAkB,MAAM1D,CAAY,GAAG,WAAW,IAAI,MAAM,gBAAgB,IAAI,eAAe,IAAI,QAAQ8D,GAA2B3D,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,EAAE,EAAE,MAAM,EAAE,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,aAAa,IAAI,uFAAuF,OAAO,yEAAyE,CAAC,EAAE,UAAU,CAAC,gBAAgBhF,GAAY,WAAW,CAAC,IAAIuI,EAAkB,MAAM1D,CAAY,GAAG,WAAW,IAAI,MAAM,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,iBAAiBG,GAAmB,OAAO,OAAO,sCAAsC,IAAI,uFAAuF,OAAO,yEAAyE,CAAC,CAAC,EAAE,SAAsBlB,EAAKlH,EAAY,CAAC,kBAAkB,CAAC,WAAW2C,CAAW,EAAE,sBAAsB,GAAK,gBAAgBQ,GAAY,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAIwI,EAAkB,MAAM1D,CAAY,GAAG,WAAW,IAAI,MAAM,gBAAgB,IAAI,eAAe,IAAI,QAAQ8D,GAA2B3D,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,uFAAuF,OAAO,yEAAyE,EAAE,UAAU,8BAA8B,mBAAmB,kBAAkB,MAAM,CAAC,qBAAqB,IAAI,CAAC,CAAC,CAAC,CAAC,EAAelB,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI4C,EAAkB,MAAM1D,CAAY,GAAG,sBAAsB,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQ8D,GAA2B3D,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,aAAa,IAAI,wFAAwF,OAAO,uKAAuK,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAIuD,EAAkB,MAAM1D,CAAY,GAAG,sBAAsB,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,KAAK,WAAW,KAAK,MAAM,oBAAoBG,GAAmB,OAAO,OAAO,uCAAuC,IAAI,wFAAwF,OAAO,uKAAuK,EAAE,kBAAkBvF,EAAkB,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI8I,EAAkB,MAAM1D,CAAY,GAAG,sBAAsB,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,KAAK,WAAW,KAAK,MAAM,iBAAiBG,GAAmB,OAAO,OAAO,sCAAsC,IAAI,wFAAwF,OAAO,uKAAuK,CAAC,CAAC,EAAE,SAAsBlB,EAAKlH,EAAY,CAAC,kBAAkB,CAAC,WAAW2C,CAAW,EAAE,sBAAsB,GAAK,gBAAgBU,GAAY,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAIsI,EAAkB,MAAM1D,CAAY,GAAG,sBAAsB,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQ8D,GAA2B3D,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wFAAwF,OAAO,uKAAuK,EAAE,UAAU,iBAAiB,mBAAmB,kBAAkB,MAAM,CAAC,OAAO,GAAG,qBAAqB,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelB,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,kBAAkB,CAAC,WAAWzG,CAAW,EAAE,gBAAgBiB,EAAW,CAAC,EAAE,SAAsB2D,EAAKxH,EAAgB,CAAC,kBAAkB,CAAC,WAAWiD,CAAW,EAAE,sBAAsB,GAAK,gBAAgBW,GAAY,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,WAAW,SAAsBiI,EAAM,MAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,EAAE,UAAU,iBAAiB,SAAS,CAAcrE,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAKwE,EAA0B,CAAC,SAAsBxE,EAAKnI,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBmI,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,SAAS,EAAE,EAAE,UAAU,CAAC,SAAS,EAAE,EAAE,UAAU,CAAC,SAAS,EAAE,CAAC,EAAE,SAAsB7B,EAAKzH,EAAQ,CAAC,qBAAqB,OAAO,IAAI,KAAK,QAAQ,EAAE,OAAO,OAAO,GAAG,YAAY,cAAc,UAAU,SAAS,YAAY,KAAK,GAAM,YAAY,eAAe,WAAW,CAAC,WAAW,+CAA+C,UAAU,SAAS,WAAW,GAAG,EAAE,WAAW,GAAG,kBAAkB,GAAM,aAAa,CAAC,WAAW,+CAA+C,oBAAoB,SAAS,UAAU,SAAS,WAAW,GAAG,EAAE,MAAM,EAAE,MAAM,IAAI,gBAAgB,GAAK,YAAY,qBAAqB,WAAW,CAAC,WAAW,+CAA+C,UAAU,SAAS,WAAW,GAAG,EAAE,WAAW,GAAG,UAAU,kBAAkB,SAAS,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeyH,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKjI,EAAS,CAAC,sBAAsB,GAAK,SAAS0M,EAAkB,MAAM1D,CAAY,GAAgBf,EAAW0E,EAAS,CAAC,SAAsB1E,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKxH,EAAgB,CAAC,kBAAkB,CAAC,WAAW4C,CAAW,EAAE,sBAAsB,GAAK,gBAAgBkB,GAAY,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,eAAe,cAAc,GAAK,mBAAmB,cAAc,SAAsB+H,EAAM,MAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,EAAE,UAAU,gBAAgB,SAAS,CAAcrE,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAKwE,EAA0B,CAAC,SAAsBxE,EAAKnI,EAAU,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBmI,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,SAAS,EAAE,EAAE,UAAU,CAAC,SAAS,EAAE,EAAE,UAAU,CAAC,SAAS,EAAE,CAAC,EAAE,SAAsB7B,EAAKzH,EAAQ,CAAC,qBAAqB,OAAO,IAAI,IAAI,QAAQ,EAAE,OAAO,OAAO,GAAG,YAAY,cAAc,UAAU,SAAS,YAAY,KAAK,GAAM,YAAY,eAAe,WAAW,CAAC,WAAW,+CAA+C,UAAU,SAAS,WAAW,GAAG,EAAE,WAAW,IAAI,kBAAkB,GAAM,aAAa,CAAC,WAAW,+CAA+C,oBAAoB,SAAS,UAAU,SAAS,WAAW,GAAG,EAAE,MAAM,EAAE,MAAM,IAAI,gBAAgB,GAAK,YAAY,qBAAqB,WAAW,CAAC,WAAW,+CAA+C,UAAU,SAAS,WAAW,GAAG,EAAE,WAAW,GAAG,UAAU,kBAAkB,SAAS,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeyH,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKjI,EAAS,CAAC,sBAAsB,GAAK,SAAS0M,EAAkB,MAAM1D,CAAY,GAAgBf,EAAW0E,EAAS,CAAC,SAAsB1E,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,OAAO,IAAI,GAAGX,GAAmB,GAAG,GAAG,EAAE,IAAI,EAAE,UAAU,CAAC,EAAE,MAAS,EAAE,UAAU,CAAC,OAAO,IAAI,EAAE,MAAS,CAAC,EAAE,SAAsBlB,EAAKwE,EAA0B,CAAC,OAAO,IAAI,MAAMtD,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,SAAsBlB,EAAKnI,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBmI,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAK9G,GAAe,CAAC,UAAUqD,EAAY,CAAC,IAAI,uEAAuE,OAAO,yKAAyK,EAAE,aAAa,EAAE,UAAUA,EAAY,CAAC,IAAI,mEAAmE,OAAO,uEAAuE,EAAE,iBAAiB,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUA,EAAY,CAAC,IAAI,qEAAqE,OAAO,qKAAqK,EAAE,iBAAiB,EAAE,UAAUA,EAAY,CAAC,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,qBAAqB,EAAE,UAAUA,EAAY,CAAC,IAAI,qEAAqE,OAAO,qKAAqK,EAAE,wBAAwB,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,UAAUA,EAAY,CAAC,IAAI,sEAAsE,OAAO,uKAAuK,EAAE,cAAc,EAAE,UAAUA,EAAY,CAAC,IAAI,uEAAuE,OAAO,2EAA2E,EAAE,WAAW,EAAE,UAAUA,EAAY,CAAC,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,cAAc,EAAE,QAAQ,YAAY,UAAUA,EAAY,CAAC,IAAI,qEAAqE,OAAO,qKAAqK,EAAE,cAAc,EAAE,UAAUA,EAAY,CAAC,IAAI,qEAAqE,OAAO,mKAAmK,EAAE,mBAAmB,EAAE,MAAM,OAAO,UAAUA,EAAY,CAAC,IAAI,sEAAsE,OAAO,oQAAoQ,EAAE,eAAe,EAAE,UAAUA,EAAY,CAAC,IAAI,uEAAuE,OAAO,qWAAqW,EAAE,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeyD,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,oBAAoB,GAAGqD,GAAW,IAAIC,GAAK,SAAsBtD,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,SAAsBqE,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,kBAAkB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,sBAAsB,SAAS,CAAcrE,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,wCAAwC,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,QAAQgD,GAA2B3D,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,IAAI,EAAE,EAAE,YAAY,KAAK,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,iBAAiBA,GAAmB,OAAO,OAAO,oCAAoC,IAAI,qEAAqE,OAAO,oKAAoK,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,wCAAwC,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,oBAAoBA,GAAmB,OAAO,OAAO,0CAA0C,IAAI,qEAAqE,OAAO,oKAAoK,CAAC,EAAE,UAAU,CAAC,mCAAmC,OAAU,WAAW,CAAC,IAAI,wCAAwC,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,iBAAiBA,GAAmB,OAAO,OAAO,qCAAqC,IAAI,qEAAqE,OAAO,oKAAoK,EAAE,MAAM,CAAC,EAAE,kBAAkB,MAAS,CAAC,EAAE,SAAsBlB,EAAKlH,EAAY,CAAC,kBAAkB,CAAC,WAAW4C,EAAW,EAAE,sBAAsB,GAAK,gBAAgBP,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,wCAAwC,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,QAAQ0J,GAA2B3D,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,KAAK,IAAI,EAAE,YAAY,KAAK,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,qEAAqE,OAAO,oKAAoK,EAAE,UAAU,iBAAiB,mBAAmB,gBAAgB,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkBvF,EAAkB,CAAC,CAAC,CAAC,EAAeqE,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,gBAAgBjF,GAAY,eAAeC,GAAY,WAAW,CAAC,IAAI,eAAe,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,QAAQgI,GAA2B3D,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,IAAI,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,OAAO,IAAI,wFAAwF,OAAO,4VAA4V,CAAC,EAAE,UAAU,CAAC,gBAAgBlE,GAAY,eAAeC,GAAY,WAAW,CAAC,IAAI,eAAe,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,OAAO,IAAI,wFAAwF,OAAO,4VAA4V,CAAC,EAAE,UAAU,CAAC,gBAAgBH,GAAY,eAAeC,GAAY,WAAW,CAAC,IAAI,eAAe,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,iBAAiBmE,GAAmB,OAAO,OAAO,sCAAsC,IAAI,wFAAwF,OAAO,4VAA4V,CAAC,CAAC,EAAE,SAAsBlB,EAAKlH,EAAY,CAAC,kBAAkB,CAAC,WAAW2C,CAAW,EAAE,sBAAsB,GAAK,gBAAgBiB,GAAY,eAAeC,GAAY,4BAA4B,GAAK,0BAA0B,GAAG,yBAAyB,SAAS,yBAAyB7B,EAAY,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,eAAe,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,QAAQ+J,GAA2B3D,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,KAAK,GAAG,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,OAAO,IAAI,wFAAwF,OAAO,4VAA4V,EAAE,UAAU,iBAAiB,mBAAmB,gBAAgB,MAAM,CAAC,qBAAqB,IAAI,CAAC,CAAC,CAAC,CAAC,EAAelB,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,gBAAgB1E,GAAY,WAAW,CAAC,IAAI,gBAAgB,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,QAAQ0H,GAA2B3D,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,IAAI,IAAI,EAAE,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,uEAAuE,OAAO,uKAAuK,CAAC,EAAE,UAAU,CAAC,gBAAgB7D,GAAY,WAAW,CAAC,IAAI,gBAAgB,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,uEAAuE,OAAO,uKAAuK,CAAC,EAAE,UAAU,CAAC,gBAAgBD,GAAY,WAAW,CAAC,IAAI,gBAAgB,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,iBAAiB8D,GAAmB,OAAO,OAAO,sCAAsC,IAAI,uEAAuE,OAAO,uKAAuK,CAAC,CAAC,EAAE,SAAsBlB,EAAKlH,EAAY,CAAC,kBAAkB,CAAC,WAAW2C,CAAW,EAAE,sBAAsB,GAAK,gBAAgByB,GAAY,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,gBAAgB,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,QAAQ2H,GAA2B3D,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,KAAK,IAAI,EAAE,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,uEAAuE,OAAO,uKAAuK,EAAE,UAAU,gBAAgB,mBAAmB,gBAAgB,MAAM,CAAC,OAAO,EAAE,qBAAqB,IAAI,CAAC,CAAC,CAAC,CAAC,EAAelB,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,kBAAkB,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,QAAQgD,GAA2B3D,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,IAAI,KAAK,EAAE,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,0EAA0E,CAAC,EAAE,UAAU,CAAC,gBAAgB1D,GAAY,WAAW,CAAC,IAAI,kBAAkB,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,0EAA0E,CAAC,EAAE,UAAU,CAAC,gBAAgBD,GAAY,WAAW,CAAC,IAAI,kBAAkB,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,iBAAiB2D,GAAmB,OAAO,OAAO,sCAAsC,IAAI,sEAAsE,OAAO,0EAA0E,CAAC,CAAC,EAAE,SAAsBlB,EAAKlH,EAAY,CAAC,kBAAkB,CAAC,WAAW2C,CAAW,EAAE,sBAAsB,GAAK,gBAAgB6B,GAAY,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,kBAAkB,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,QAAQuH,GAA2B3D,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,KAAK,KAAK,EAAE,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,0EAA0E,EAAE,UAAU,gBAAgB,mBAAmB,gBAAgB,MAAM,CAAC,OAAO,GAAG,qBAAqB,IAAI,CAAC,CAAC,CAAC,CAAC,EAAelB,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,gBAAgBpE,EAAW,CAAC,EAAE,SAAsBuC,EAAKxH,EAAgB,CAAC,kBAAkB,CAAC,WAAW4C,CAAW,EAAE,sBAAsB,GAAK,gBAAgBkB,GAAY,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,WAAW,SAAsB+H,EAAM,MAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,EAAE,UAAU,iBAAiB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcrE,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQgD,GAA2B3D,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,IAAI,GAAG,EAAE,GAAG,IAAI,EAAE,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,CAAC,EAAE,SAAsBlB,EAAKjH,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQ8L,GAA2B3D,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAelB,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAW0E,EAAS,CAAC,SAAsB1E,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,MAAM,uBAAuB,OAAO,0BAA0B,OAAO,sBAAsB,oEAAoE,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKjI,EAAS,CAAC,sBAAsB,GAAK,SAAsBiI,EAAW0E,EAAS,CAAC,SAAsB1E,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,MAAM,uBAAuB,OAAO,0BAA0B,OAAO,sBAAsB,oEAAoE,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,gBAAgB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAKwE,EAA0B,CAAC,SAAsBxE,EAAKnI,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBmI,EAAK5G,EAAS,CAAC,QAAQ,GAAK,UAAU,GAAK,KAAK,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,YAAY,UAAU,cAAc,CAAC,MAAM,EAAE,SAAS,EAAE,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,OAAO,EAAE,WAAW,GAAK,MAAM,CAAc4G,EAAKgF,GAAI,CAAC,UAAU,gBAAgB,OAAO,WAAW,QAAQ,EAAE,IAAI,8UAA8U,aAAa,YAAY,mBAAmB,EAAI,CAAC,CAAC,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,GAAG,IAAI,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeX,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcrE,EAAKgF,GAAI,CAAC,UAAU,gBAAgB,OAAO,WAAW,QAAQ,EAAE,IAAI,uSAAuS,aAAa,YAAY,mBAAmB,EAAI,CAAC,EAAehF,EAAKgF,GAAI,CAAC,UAAU,gBAAgB,OAAO,WAAW,QAAQ,EAAE,IAAI,+RAA+R,aAAa,YAAY,mBAAmB,EAAI,CAAC,EAAehF,EAAKgF,GAAI,CAAC,UAAU,iBAAiB,OAAO,WAAW,QAAQ,EAAE,IAAI,+RAA+R,aAAa,YAAY,mBAAmB,EAAI,CAAC,EAAehF,EAAKgF,GAAI,CAAC,UAAU,gBAAgB,OAAO,WAAW,QAAQ,EAAE,IAAI,+RAA+R,aAAa,YAAY,mBAAmB,EAAI,CAAC,EAAehF,EAAKgF,GAAI,CAAC,UAAU,iBAAiB,OAAO,WAAW,QAAQ,EAAE,IAAI,+RAA+R,aAAa,YAAY,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehF,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,CAAC,MAAM,EAAE,EAAE,kBAAkBlG,EAAkB,EAAE,UAAU,CAAC,MAAM,CAAC,MAAM,EAAE,CAAC,EAAE,UAAU,CAAC,gBAAgB+B,GAAY,MAAM,CAAC,MAAM,EAAE,CAAC,CAAC,EAAE,SAAsBsC,EAAKxH,EAAgB,CAAC,kBAAkB,CAAC,WAAWiD,CAAW,EAAE,sBAAsB,GAAK,gBAAgBW,GAAY,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,WAAW,SAAsBiI,EAAM,MAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,EAAE,UAAU,iBAAiB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcrE,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQgD,GAA2B3D,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,IAAI,SAAS,EAAE,GAAG,IAAI,EAAE,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,mEAAmE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,mEAAmE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,mEAAmE,CAAC,CAAC,EAAE,SAAsBlB,EAAKjH,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQ8L,GAA2B3D,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,KAAK,IAAI,EAAE,GAAG,IAAI,EAAE,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,mEAAmE,EAAE,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAelB,EAAKjI,EAAS,CAAC,sBAAsB,GAAK,SAAsBiI,EAAW0E,EAAS,CAAC,SAAsB1E,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,MAAM,uBAAuB,OAAO,0BAA0B,OAAO,sBAAsB,oEAAoE,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,gBAAgB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeqE,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcrE,EAAKgF,GAAI,CAAC,UAAU,iBAAiB,OAAO,WAAW,QAAQ,EAAE,IAAI,+RAA+R,aAAa,YAAY,mBAAmB,EAAI,CAAC,EAAehF,EAAKgF,GAAI,CAAC,UAAU,gBAAgB,OAAO,WAAW,QAAQ,EAAE,IAAI,+RAA+R,aAAa,YAAY,mBAAmB,EAAI,CAAC,EAAehF,EAAKgF,GAAI,CAAC,UAAU,gBAAgB,OAAO,WAAW,QAAQ,EAAE,IAAI,+RAA+R,aAAa,YAAY,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAehF,EAAKwE,EAA0B,CAAC,SAAsBxE,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,CAAC,MAAM,EAAE,CAAC,CAAC,EAAE,SAAsB7B,EAAKnI,EAAU,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,kBAAkB8D,GAAmB,SAAsBqE,EAAK5G,EAAS,CAAC,QAAQ,GAAK,UAAU,GAAK,KAAK,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,YAAY,UAAU,cAAc,CAAC,MAAM,EAAE,SAAS,EAAE,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,OAAO,EAAE,WAAW,GAAK,MAAM,CAAc4G,EAAKgF,GAAI,CAAC,UAAU,iBAAiB,OAAO,WAAW,QAAQ,EAAE,IAAI,0YAA0Y,aAAa,YAAY,mBAAmB,EAAI,CAAC,CAAC,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,GAAG,IAAI,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehF,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,eAAe,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,QAAQgD,GAA2B3D,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,IAAI,KAAK,EAAE,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,OAAO,IAAI,oEAAoE,OAAO,iKAAiK,CAAC,EAAE,UAAU,CAAC,gBAAgBpD,GAAY,WAAW,CAAC,IAAI,eAAe,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,OAAO,IAAI,oEAAoE,OAAO,iKAAiK,CAAC,EAAE,UAAU,CAAC,gBAAgBD,GAAY,WAAW,CAAC,IAAI,eAAe,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,iBAAiBqD,GAAmB,OAAO,OAAO,sCAAsC,IAAI,oEAAoE,OAAO,iKAAiK,CAAC,CAAC,EAAE,SAAsBlB,EAAKlH,EAAY,CAAC,kBAAkB,CAAC,WAAW2C,CAAW,EAAE,sBAAsB,GAAK,gBAAgBkC,GAAY,eAAeC,GAAY,4BAA4B,GAAK,0BAA0B,GAAG,yBAAyB,SAAS,yBAAyB9C,EAAY,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,eAAe,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,QAAQ+J,GAA2B3D,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,KAAK,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,OAAO,IAAI,oEAAoE,OAAO,iKAAiK,EAAE,UAAU,gBAAgB,mBAAmB,gBAAgB,MAAM,CAAC,qBAAqB,IAAI,CAAC,CAAC,CAAC,CAAC,EAAelB,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,gBAAgB5D,GAAY,WAAW,CAAC,IAAI,aAAa,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,QAAQ4G,GAA2B3D,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,IAAI,IAAI,EAAE,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,gBAAgB/C,GAAY,WAAW,CAAC,IAAI,aAAa,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,gBAAgBD,GAAY,WAAW,CAAC,IAAI,aAAa,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,CAAC,EAAE,SAAsB8B,EAAKlH,EAAY,CAAC,kBAAkB,CAAC,WAAW2C,CAAW,EAAE,sBAAsB,GAAK,gBAAgBsC,GAAY,eAAeC,GAAY,4BAA4B,GAAK,0BAA0B,GAAG,yBAAyB,SAAS,yBAAyBlD,EAAY,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,aAAa,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,QAAQ+J,GAA2B3D,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,KAAK,GAAG,EAAE,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,mBAAmB,gBAAgB,MAAM,CAAC,qBAAqB,IAAI,CAAC,CAAC,CAAC,CAAC,EAAelB,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,cAAc,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,QAAQgD,GAA2B3D,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,IAAI,GAAG,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,OAAO,IAAI,uEAAuE,OAAO,sQAAsQ,CAAC,EAAE,UAAU,CAAC,gBAAgB5C,GAAY,eAAeC,GAAY,WAAW,CAAC,IAAI,cAAc,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,OAAO,IAAI,uEAAuE,OAAO,sQAAsQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,cAAc,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,iBAAiB2C,GAAmB,OAAO,OAAO,sCAAsC,IAAI,uEAAuE,OAAO,sQAAsQ,CAAC,CAAC,EAAE,SAAsBlB,EAAKlH,EAAY,CAAC,kBAAkB,CAAC,WAAW2C,CAAW,EAAE,sBAAsB,GAAK,gBAAgB2C,GAAY,eAAeC,GAAY,4BAA4B,GAAK,0BAA0B,GAAG,yBAAyB,SAAS,yBAAyBvD,EAAY,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,cAAc,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,QAAQ+J,GAA2B3D,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,KAAK,GAAG,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,OAAO,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,UAAU,iBAAiB,mBAAmB,gBAAgB,MAAM,CAAC,qBAAqB,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelB,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,6BAA6B,SAAsBqE,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,sBAAsB,SAAS,CAAcrE,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGX,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,EAAE,MAAS,EAAE,UAAU,CAAC,EAAE,MAAS,CAAC,EAAE,SAAsBlB,EAAKwE,EAA0B,CAAC,OAAO,GAAG,GAAGtD,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,SAAsBlB,EAAKzG,GAAgB,CAAC,kBAAkB,CAAC,WAAW6B,CAAW,EAAE,sBAAsB,GAAK,gBAAgBoD,GAAY,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,0BAA0B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,OAAO,GAAG,qBAAqB,IAAI,EAAE,SAAsBwB,EAAK1G,GAAY,CAAC,UAAU,wEAAwE,UAAU,kBAAkB,UAAU,wEAAwE,OAAO,OAAO,GAAG,YAAY,UAAUmL,EAAkB,MAAM1D,CAAY,GAAG,aAAa,UAAU,wEAAwE,SAAS,YAAY,UAAU,GAAM,UAAU,GAAM,UAAU,WAAW,UAAU,WAAW,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAef,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,mCAAmC,OAAU,MAAM,CAAC,CAAC,CAAC,EAAE,SAAsB7B,EAAKxH,EAAgB,CAAC,kBAAkB,CAAC,WAAWgD,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAY,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,mBAAmB,uBAAuB,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsByE,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,SAAS4C,EAAkB,MAAM1D,CAAY,GAAgBf,EAAW0E,EAAS,CAAC,SAAsB1E,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,wBAAwB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAASyE,EAAkB,MAAM1D,CAAY,GAAgBf,EAAW0E,EAAS,CAAC,SAAsB1E,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,wBAAwB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAASyE,EAAkB,MAAM1D,CAAY,GAAgBf,EAAW0E,EAAS,CAAC,SAAsB1E,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,wBAAwB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKjI,EAAS,CAAC,sBAAsB,GAAK,SAAS0M,EAAkB,MAAM1D,CAAY,GAAgBf,EAAW0E,EAAS,CAAC,SAAsB1E,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,wBAAwB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,SAAS4C,EAAkB,MAAM1D,CAAY,GAAgBsD,EAAYK,EAAS,CAAC,SAAS,CAAc1E,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,sHAAiH,CAAC,EAAeA,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,qIAAqI,CAAC,EAAeqE,EAAM,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,CAAC,8BAA2CrE,EAAK,SAAS,CAAC,SAAS,wEAAwE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAASyE,EAAkB,MAAM1D,CAAY,GAAgBsD,EAAYK,EAAS,CAAC,SAAS,CAAc1E,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,sHAAiH,CAAC,EAAeA,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,qIAAqI,CAAC,EAAeqE,EAAM,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,CAAC,8BAA2CrE,EAAK,SAAS,CAAC,SAAS,wEAAwE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,mCAAmC,OAAU,SAASyE,EAAkB,MAAM1D,CAAY,GAAgBsD,EAAYK,EAAS,CAAC,SAAS,CAAc1E,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,sHAAiH,CAAC,EAAeA,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,qIAAqI,CAAC,EAAeqE,EAAM,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,CAAC,8BAA2CrE,EAAK,SAAS,CAAC,SAAS,wEAAwE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKhH,GAAe,CAAC,kBAAkB,CAAC,WAAWyC,CAAW,EAAE,sBAAsB,GAAK,gBAAgBF,EAAY,mCAAmC,GAAK,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAASkJ,EAAkB,MAAM1D,CAAY,GAAgBsD,EAAYK,EAAS,CAAC,SAAS,CAAc1E,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,sHAAiH,CAAC,EAAeA,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,qIAAqI,CAAC,EAAeqE,EAAM,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,CAAC,8BAA2CrE,EAAK,SAAS,CAAC,SAAS,wEAAwE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,YAAY,MAAM,CAAC,QAAQ,YAAY,EAAE,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK2E,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASM,GAA6BjF,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGX,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,UAAU,CAAC,EAAE,MAAS,EAAE,UAAU,CAAC,EAAE,MAAS,CAAC,EAAE,SAAsBlB,EAAKwE,EAA0B,CAAC,OAAO,GAAG,GAAGtD,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,IAAI,SAAsBlB,EAAKnI,EAAU,CAAC,UAAU,2BAA2B,GAAG0L,GAAW,OAAO,YAAY,IAAIC,GAAK,QAAQ,YAAY,SAAsBxD,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUoD,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsBjF,EAAK3H,GAAa,CAAC,UAAUoM,EAAkB,MAAM1D,CAAY,GAAG,aAAa,UAAUkE,EAAe,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,GAAM,UAAU,GAAK,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAejF,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,gBAAgB,SAAsBA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,SAAsBA,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,kBAAkB,CAAC,WAAWrG,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAY,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,MAAM,CAAC,qBAAqB,IAAI,CAAC,EAAE,UAAU,CAAC,kBAAkB,CAAC,WAAWC,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAY,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,MAAM,CAAC,qBAAqB,IAAI,CAAC,CAAC,EAAE,SAAsB8I,EAAM7L,EAAgB,CAAC,UAAU,gBAAgB,mBAAmB,wBAAwB,SAAS,CAAcwH,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,mCAAmC,OAAU,MAAM,CAAC,CAAC,EAAE,UAAU,CAAC,kBAAkB,CAAC,WAAWrG,EAAW,CAAC,CAAC,EAAE,SAAsBwE,EAAKhH,GAAe,CAAC,kBAAkB,CAAC,WAAWoC,CAAW,EAAE,sBAAsB,GAAK,gBAAgBG,EAAY,mCAAmC,GAAK,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAASkJ,EAAkB,MAAM1D,CAAY,GAAgBf,EAAW0E,EAAS,CAAC,SAAsB1E,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,sBAAsB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,gBAAgB,MAAM,CAAC,OAAO,EAAE,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeqE,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,qBAAqB,SAAS,CAAcrE,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,mCAAmC,OAAU,MAAM,CAAC,CAAC,EAAE,UAAU,CAAC,mCAAmC,OAAU,MAAM,CAAC,CAAC,CAAC,EAAE,SAAsBwC,EAAM7L,EAAgB,CAAC,kBAAkB,CAAC,WAAWkG,EAAY,EAAE,sBAAsB,GAAK,gBAAgBD,GAAY,eAAeE,GAAY,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,mBAAmB,eAAe,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAcqB,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,cAAc,IAAI,MAAM,QAAQgD,GAA2B3D,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,cAAc,IAAI,MAAM,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,cAAc,IAAI,MAAM,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,CAAC,EAAE,SAAsBlB,EAAKjH,GAAM,CAAC,WAAW,CAAC,IAAI,cAAc,IAAI,MAAM,QAAQ8L,GAA2B3D,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,eAAe,CAAC,CAAC,CAAC,EAAelB,EAAKjI,EAAS,CAAC,sBAAsB,GAAK,SAAS0M,EAAkB,MAAM1D,CAAY,GAAgBf,EAAW0E,EAAS,CAAC,SAAsB1E,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,sBAAsB,oEAAoE,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,gBAAgB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,mCAAmC,OAAU,MAAM,CAAC,CAAC,EAAE,UAAU,CAAC,mCAAmC,OAAU,MAAM,CAAC,CAAC,CAAC,EAAE,SAAsBwC,EAAM7L,EAAgB,CAAC,kBAAkB,CAAC,WAAWkG,EAAY,EAAE,sBAAsB,GAAK,gBAAgBD,GAAY,eAAeE,GAAY,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,mBAAmB,eAAe,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAcqB,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,cAAc,IAAI,MAAM,QAAQgD,GAA2B3D,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,OAAO,IAAI,sEAAsE,OAAO,gWAAgW,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,cAAc,IAAI,MAAM,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,OAAO,IAAI,sEAAsE,OAAO,gWAAgW,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,cAAc,IAAI,MAAM,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,OAAO,IAAI,sEAAsE,OAAO,gWAAgW,CAAC,CAAC,EAAE,SAAsBlB,EAAKjH,GAAM,CAAC,WAAW,CAAC,IAAI,cAAc,IAAI,MAAM,QAAQ8L,GAA2B3D,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,OAAO,IAAI,sEAAsE,OAAO,gWAAgW,EAAE,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAelB,EAAKjI,EAAS,CAAC,sBAAsB,GAAK,SAAS0M,EAAkB,MAAM1D,CAAY,GAAgBf,EAAW0E,EAAS,CAAC,SAAsB1E,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,sBAAsB,oEAAoE,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,gBAAgB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,mCAAmC,OAAU,MAAM,CAAC,CAAC,EAAE,UAAU,CAAC,mCAAmC,OAAU,MAAM,CAAC,CAAC,CAAC,EAAE,SAAsBwC,EAAM7L,EAAgB,CAAC,kBAAkB,CAAC,WAAWkG,EAAY,EAAE,sBAAsB,GAAK,gBAAgBD,GAAY,eAAeE,GAAY,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,mBAAmB,eAAe,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAcqB,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,gBAAgB,IAAI,MAAM,QAAQgD,GAA2B3D,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,gBAAgB,IAAI,MAAM,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,gBAAgB,IAAI,MAAM,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,CAAC,EAAE,SAAsBlB,EAAKjH,GAAM,CAAC,WAAW,CAAC,IAAI,gBAAgB,IAAI,MAAM,QAAQ8L,GAA2B3D,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,eAAe,CAAC,CAAC,CAAC,EAAelB,EAAKjI,EAAS,CAAC,sBAAsB,GAAK,SAAS0M,EAAkB,MAAM1D,CAAY,GAAgBf,EAAW0E,EAAS,CAAC,SAAsB1E,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,sBAAsB,oEAAoE,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,gBAAgB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,mCAAmC,OAAU,MAAM,CAAC,CAAC,EAAE,UAAU,CAAC,mCAAmC,OAAU,MAAM,CAAC,CAAC,CAAC,EAAE,SAAsBwC,EAAM7L,EAAgB,CAAC,kBAAkB,CAAC,WAAWkG,EAAY,EAAE,sBAAsB,GAAK,gBAAgBD,GAAY,eAAeE,GAAY,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,mBAAmB,eAAe,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAcqB,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,eAAe,IAAI,MAAM,QAAQgD,GAA2B3D,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,eAAe,IAAI,MAAM,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,eAAe,IAAI,MAAM,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,CAAC,CAAC,EAAE,SAAsBlB,EAAKjH,GAAM,CAAC,WAAW,CAAC,IAAI,eAAe,IAAI,MAAM,QAAQ8L,GAA2B3D,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,EAAE,UAAU,eAAe,CAAC,CAAC,CAAC,EAAelB,EAAKjI,EAAS,CAAC,sBAAsB,GAAK,SAAS0M,EAAkB,MAAM1D,CAAY,GAAgBf,EAAW0E,EAAS,CAAC,SAAsB1E,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,sBAAsB,oEAAoE,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,gBAAgB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEyD,GAAa,GAAgBzD,EAAK,MAAM,CAAC,UAAU,6CAA6C,mBAAmB,SAAS,SAAsBqE,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,wBAAwB,SAAS,CAAcrE,EAAKhH,GAAe,CAAC,kBAAkB,CAAC,WAAWoC,CAAW,EAAE,sBAAsB,GAAK,gBAAgBG,EAAY,mCAAmC,GAAK,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAASkJ,EAAkB,MAAM1D,CAAY,GAAgBf,EAAW0E,EAAS,CAAC,SAAsB1E,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,eAAe,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,gBAAgB,MAAM,CAAC,OAAO,EAAE,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAeA,EAAKhH,GAAe,CAAC,kBAAkB,CAAC,WAAWoC,CAAW,EAAE,sBAAsB,GAAK,gBAAgBG,EAAY,mCAAmC,GAAK,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAASkJ,EAAkB,MAAM1D,CAAY,GAAgBf,EAAW0E,EAAS,CAAC,SAAsB1E,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,wCAAwC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,gBAAgB,MAAM,CAAC,OAAO,EAAE,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeqE,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,0BAA0B,SAAS,CAACX,GAAa,GAAgBW,EAAM,MAAM,CAAC,UAAU,8BAA8B,SAAS,CAAcrE,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGX,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,IAAI,GAAG,IAAI,EAAE,CAAC,EAAE,SAAsBlB,EAAKwE,EAA0B,CAAC,OAAO,IAAI,SAAsBxE,EAAKnI,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBmI,EAAKvG,EAAY,CAAC,UAAU,wEAAwE,UAAU,wEAAwE,UAAU8C,EAAY,CAAC,IAAI,sEAAsE,EAAE,+DAA+D,EAAE,OAAO,OAAO,UAAUkI,EAAkB,MAAM1D,CAAY,GAAG,mJAAmJ,GAAG,YAAY,SAAS,YAAY,UAAU0D,EAAkB,MAAM1D,CAAY,GAAG,sBAAsB,UAAU,mBAAmB,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAef,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGX,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,IAAI,GAAG,IAAI,EAAE,CAAC,EAAE,SAAsBlB,EAAKwE,EAA0B,CAAC,OAAO,IAAI,SAAsBxE,EAAKnI,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBmI,EAAKvG,EAAY,CAAC,UAAU,wEAAwE,UAAU,wEAAwE,UAAU8C,EAAY,CAAC,IAAI,sEAAsE,EAAE,0CAA0C,EAAE,OAAO,OAAO,UAAUkI,EAAkB,MAAM1D,CAAY,GAAG,wHAAwH,GAAG,YAAY,SAAS,YAAY,UAAU0D,EAAkB,MAAM1D,CAAY,GAAG,uBAAuB,UAAU,mBAAmB,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAesD,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcrE,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGX,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,IAAI,GAAG,EAAE,EAAE,CAAC,EAAE,SAAsBlB,EAAKwE,EAA0B,CAAC,OAAO,IAAI,GAAGtD,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,GAAG,GAAG,GAAG,EAAE,GAAG,SAAsBlB,EAAKnI,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBmI,EAAKvG,EAAY,CAAC,UAAU,wEAAwE,UAAU,wEAAwE,UAAU8C,EAAY,CAAC,IAAI,sEAAsE,EAAE,mCAAmC,EAAE,OAAO,OAAO,UAAUkI,EAAkB,MAAM1D,CAAY,GAAG,qHAAqH,GAAG,YAAY,SAAS,YAAY,UAAU0D,EAAkB,MAAM1D,CAAY,GAAG,oBAAoB,UAAU,mBAAmB,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAef,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,OAAU,GAAGX,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,IAAI,GAAG,EAAE,EAAE,CAAC,EAAE,SAAsBlB,EAAKwE,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,GAAGtD,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,GAAG,GAAG,GAAG,EAAE,GAAG,SAAsBlB,EAAKnI,EAAU,CAAC,UAAU,2BAA2B,GAAG,UAAU,OAAO,YAAY,QAAQ,YAAY,SAAsBmI,EAAKvG,EAAY,CAAC,UAAU,wEAAwE,UAAU,wEAAwE,UAAU8C,EAAY,CAAC,IAAI,qEAAqE,EAAE,8BAA8B,EAAE,OAAO,OAAO,UAAUkI,EAAkB,MAAM1D,CAAY,GAAG,4IAA4I,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU0D,EAAkB,MAAM1D,CAAY,GAAG,wBAAwB,UAAU,mBAAmB,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE4C,GAAa,GAAgB3D,EAAKwE,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,GAAGtD,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,GAAG,GAAG,GAAG,EAAE,GAAG,SAAsBlB,EAAKnI,EAAU,CAAC,UAAU,wCAAwC,OAAO,YAAY,QAAQ,YAAY,SAAsBmI,EAAKvG,EAAY,CAAC,UAAU,wEAAwE,UAAU,wEAAwE,UAAU8C,EAAY,CAAC,IAAI,sEAAsE,EAAE,gCAAgC,EAAE,OAAO,OAAO,UAAUkI,EAAkB,MAAM1D,CAAY,GAAG,mJAAmJ,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU0D,EAAkB,MAAM1D,CAAY,GAAG,sBAAsB,UAAU,mBAAmB,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE4C,GAAa,GAAgB3D,EAAKwE,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,GAAGtD,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,GAAG,GAAG,GAAG,EAAE,GAAG,SAAsBlB,EAAKnI,EAAU,CAAC,UAAU,yCAAyC,OAAO,YAAY,QAAQ,YAAY,SAAsBmI,EAAKvG,EAAY,CAAC,UAAU,wEAAwE,UAAU,wEAAwE,UAAU8C,EAAY,CAAC,IAAI,qEAAqE,EAAE,wCAAwC,EAAE,OAAO,OAAO,UAAUkI,EAAkB,MAAM1D,CAAY,GAAG,wHAAwH,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU0D,EAAkB,MAAM1D,CAAY,GAAG,uBAAuB,UAAU,mBAAmB,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAef,EAAK2E,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASO,GAA6BlF,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGX,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,GAAG,CAAC,EAAE,SAAsBlB,EAAKwE,EAA0B,CAAC,OAAO,GAAG,GAAGtD,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,GAAG,IAAI,SAAsBlB,EAAKnI,EAAU,CAAC,UAAU,0BAA0B,GAAG+L,GAAW,OAAO,YAAY,IAAIC,GAAK,QAAQ,YAAY,SAAsB7D,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUqD,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsBlF,EAAK3H,GAAa,CAAC,UAAUoM,EAAkB,MAAM1D,CAAY,GAAG,aAAa,UAAUmE,EAAe,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,GAAM,UAAU,GAAK,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelF,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,sBAAsB,SAAsBA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,SAAsBqE,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,kBAAkB,SAAS,CAAcrE,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,6BAA6B,SAAsBA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,6BAA6B,SAAsBqE,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,qBAAqB,SAAS,CAAcrE,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,mCAAmC,OAAU,MAAM,CAAC,CAAC,CAAC,EAAE,SAAsB7B,EAAKxH,EAAgB,CAAC,kBAAkB,CAAC,WAAWgD,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAY,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,mBAAmB,sBAAsB,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsByE,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,SAAS4C,EAAkB,MAAM1D,CAAY,GAAgBf,EAAW0E,EAAS,CAAC,SAAsB1E,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,qBAAqB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAASyE,EAAkB,MAAM1D,CAAY,GAAgBf,EAAW0E,EAAS,CAAC,SAAsB1E,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,qBAAqB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAASyE,EAAkB,MAAM1D,CAAY,GAAgBf,EAAW0E,EAAS,CAAC,SAAsB1E,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,qBAAqB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKjI,EAAS,CAAC,sBAAsB,GAAK,SAAS0M,EAAkB,MAAM1D,CAAY,GAAgBf,EAAW0E,EAAS,CAAC,SAAsB1E,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,qBAAqB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,SAAS4C,EAAkB,MAAM1D,CAAY,GAAgBf,EAAW0E,EAAS,CAAC,SAAsBL,EAAM,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,CAAC,6GAA0HrE,EAAK,KAAK,CAAC,CAAC,EAAeA,EAAK,KAAK,CAAC,CAAC,EAAE,uIAAoJA,EAAK,KAAK,CAAC,CAAC,EAAeA,EAAK,KAAK,CAAC,CAAC,EAAE,4CAAyDA,EAAK,SAAS,CAAC,SAAS,8CAA8C,CAAC,EAAE,KAAkBA,EAAK,KAAK,CAAC,CAAC,EAAeA,EAAK,KAAK,CAAC,CAAC,EAAE,gEAAgE,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,mCAAmC,OAAU,SAASyE,EAAkB,MAAM1D,CAAY,GAAgBf,EAAW0E,EAAS,CAAC,SAAsBL,EAAM,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,CAAC,6GAA0HrE,EAAK,KAAK,CAAC,CAAC,EAAeA,EAAK,KAAK,CAAC,CAAC,EAAE,uIAAoJA,EAAK,KAAK,CAAC,CAAC,EAAeA,EAAK,KAAK,CAAC,CAAC,EAAE,4CAAyDA,EAAK,SAAS,CAAC,SAAS,8CAA8C,CAAC,EAAE,KAAkBA,EAAK,KAAK,CAAC,CAAC,EAAeA,EAAK,KAAK,CAAC,CAAC,EAAE,gEAAgE,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKhH,GAAe,CAAC,kBAAkB,CAAC,WAAWyC,CAAW,EAAE,sBAAsB,GAAK,gBAAgBF,EAAY,mCAAmC,GAAK,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAASkJ,EAAkB,MAAM1D,CAAY,GAAgBf,EAAW0E,EAAS,CAAC,SAAsBL,EAAM,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,CAAC,6GAA0HrE,EAAK,KAAK,CAAC,CAAC,EAAeA,EAAK,KAAK,CAAC,CAAC,EAAE,uIAAoJA,EAAK,KAAK,CAAC,CAAC,EAAeA,EAAK,KAAK,CAAC,CAAC,EAAE,4CAAyDA,EAAK,SAAS,CAAC,SAAS,8CAA8C,CAAC,EAAE,KAAkBA,EAAK,KAAK,CAAC,CAAC,EAAeA,EAAK,KAAK,CAAC,CAAC,EAAE,gEAAgE,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,YAAY,MAAM,CAAC,QAAQ,YAAY,EAAE,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK2E,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASQ,GAA6BnF,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGX,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,UAAU,CAAC,EAAE,MAAS,EAAE,UAAU,CAAC,EAAE,MAAS,CAAC,EAAE,SAAsBlB,EAAKwE,EAA0B,CAAC,OAAO,GAAG,GAAGtD,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,IAAI,SAAsBlB,EAAKnI,EAAU,CAAC,UAAU,0BAA0B,GAAGiM,GAAW,OAAO,YAAY,IAAIC,GAAK,QAAQ,YAAY,SAAsB/D,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUsD,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsBnF,EAAK3H,GAAa,CAAC,UAAUoM,EAAkB,MAAM1D,CAAY,GAAG,aAAa,UAAUoE,EAAe,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,GAAM,UAAU,GAAK,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAed,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,SAAS,CAAcrE,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,kBAAkB,IAAI,MAAM,QAAQgD,GAA2B3D,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,EAAE,OAAO,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,uEAAuE,OAAO,qWAAqW,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,kBAAkB,IAAI,MAAM,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,oBAAoBA,GAAmB,OAAO,OAAO,0CAA0C,IAAI,uEAAuE,OAAO,qWAAqW,EAAE,kBAAkBvF,EAAkB,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,kBAAkB,IAAI,MAAM,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,aAAa,IAAI,uEAAuE,OAAO,qWAAqW,CAAC,CAAC,EAAE,SAAsBqE,EAAKlH,EAAY,CAAC,kBAAkB,CAAC,WAAWmC,CAAW,EAAE,sBAAsB,GAAK,gBAAgB2D,GAAY,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,kBAAkB,IAAI,MAAM,QAAQiG,GAA2B3D,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,EAAE,OAAO,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,YAAY,IAAI,uEAAuE,OAAO,qWAAqW,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,qBAAqB,IAAI,CAAC,CAAC,CAAC,CAAC,EAAelB,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,iCAAiC,IAAI,MAAM,QAAQgD,GAA2B3D,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,uEAAuE,OAAO,qWAAqW,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,iCAAiC,IAAI,MAAM,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,oBAAoBA,GAAmB,OAAO,OAAO,0CAA0C,IAAI,uEAAuE,OAAO,qWAAqW,EAAE,kBAAkBvF,EAAkB,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,iCAAiC,IAAI,MAAM,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,aAAa,IAAI,uEAAuE,OAAO,qWAAqW,CAAC,CAAC,EAAE,SAAsBqE,EAAKlH,EAAY,CAAC,kBAAkB,CAAC,WAAWmC,CAAW,EAAE,sBAAsB,GAAK,gBAAgB4D,GAAY,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,iCAAiC,IAAI,MAAM,QAAQgG,GAA2B3D,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,EAAE,OAAO,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,aAAa,IAAI,uEAAuE,OAAO,qWAAqW,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,GAAG,qBAAqB,IAAI,CAAC,CAAC,CAAC,CAAC,EAAelB,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,0BAA0B,IAAI,MAAM,QAAQgD,GAA2B3D,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,EAAE,IAAI,GAAG,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,iWAAiW,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,0BAA0B,IAAI,MAAM,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,oBAAoBA,GAAmB,OAAO,OAAO,yCAAyC,IAAI,sEAAsE,OAAO,iWAAiW,EAAE,kBAAkBvF,EAAkB,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,0BAA0B,IAAI,MAAM,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,aAAa,IAAI,sEAAsE,OAAO,iWAAiW,CAAC,CAAC,EAAE,SAAsBqE,EAAKlH,EAAY,CAAC,kBAAkB,CAAC,WAAWmC,CAAW,EAAE,sBAAsB,GAAK,gBAAgB6D,GAAY,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,0BAA0B,IAAI,MAAM,QAAQ+F,GAA2B3D,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,EAAE,IAAI,QAAQ,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,aAAa,IAAI,sEAAsE,OAAO,iWAAiW,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,GAAG,qBAAqB,IAAI,CAAC,CAAC,CAAC,CAAC,EAAelB,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,0BAA0B,IAAI,MAAM,QAAQgD,GAA2B3D,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,EAAE,IAAI,GAAG,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,oQAAoQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,0BAA0B,IAAI,MAAM,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,oQAAoQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,0BAA0B,IAAI,MAAM,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,aAAa,IAAI,sEAAsE,OAAO,oQAAoQ,CAAC,CAAC,EAAE,SAAsBlB,EAAKlH,EAAY,CAAC,kBAAkB,CAAC,WAAWmC,CAAW,EAAE,sBAAsB,GAAK,gBAAgB8D,GAAY,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,0BAA0B,IAAI,MAAM,QAAQ8F,GAA2B3D,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,EAAE,IAAI,QAAQ,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,aAAa,IAAI,sEAAsE,OAAO,oQAAoQ,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,qBAAqB,IAAI,CAAC,CAAC,CAAC,CAAC,EAAelB,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,wCAAwC,IAAI,OAAO,QAAQgD,GAA2B3D,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,EAAE,QAAQ,EAAE,YAAY,GAAG,WAAW,IAAI,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,wCAAwC,IAAI,OAAO,YAAY,GAAG,WAAW,IAAI,IAAI,sEAAsE,EAAE,kBAAkBvF,EAAkB,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,wCAAwC,IAAI,OAAO,YAAY,GAAG,WAAW,IAAI,IAAI,sEAAsE,CAAC,CAAC,EAAE,SAAsBqE,EAAKlH,EAAY,CAAC,kBAAkB,CAAC,WAAWmC,CAAW,EAAE,sBAAsB,GAAK,gBAAgB+D,GAAY,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,wCAAwC,IAAI,OAAO,QAAQ6F,GAA2B3D,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,EAAE,QAAQ,EAAE,YAAY,GAAG,WAAW,IAAI,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,MAAM,CAAC,qBAAqB,IAAI,CAAC,CAAC,CAAC,CAAC,EAAelB,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,iBAAiB,IAAI,MAAM,QAAQgD,GAA2B3D,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,EAAE,OAAO,EAAE,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,iBAAiB,IAAI,MAAM,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,iBAAiB,IAAI,MAAM,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,CAAC,EAAE,SAAsBlB,EAAKlH,EAAY,CAAC,kBAAkB,CAAC,WAAWmC,CAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAW,eAAeE,GAAW,4BAA4B,GAAK,0BAA0B,GAAG,yBAAyB,SAAS,yBAAyBJ,EAAY,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,iBAAiB,IAAI,MAAM,QAAQ+J,GAA2B3D,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,EAAE,QAAQ,EAAE,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,MAAM,CAAC,OAAO,EAAE,qBAAqB,IAAI,EAAE,SAAsBlB,EAAKwE,EAA0B,CAAC,SAAsBxE,EAAKnI,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBmI,EAAKzH,EAAQ,CAAC,qBAAqB,OAAO,IAAI,GAAG,QAAQ,EAAE,OAAO,OAAO,GAAG,YAAY,cAAc,UAAU,SAAS,YAAY,KAAK,GAAM,YAAY,qBAAqB,WAAW,CAAC,WAAW,+CAA+C,UAAU,SAAS,WAAW,GAAG,EAAE,WAAW,GAAG,kBAAkB,GAAK,aAAa,CAAC,WAAW,+CAA+C,oBAAoB,SAAS,UAAU,SAAS,WAAW,GAAG,EAAE,MAAM,GAAG,MAAM,EAAE,gBAAgB,GAAK,YAAY,qBAAqB,WAAW,CAAC,WAAW,+CAA+C,UAAU,SAAS,WAAW,GAAG,EAAE,WAAW,IAAI,UAAU,qBAAqB,SAAS,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeyH,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,aAAa,IAAI,MAAM,QAAQgD,GAA2B3D,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,EAAE,QAAQ,EAAE,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,oEAAoE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,aAAa,IAAI,MAAM,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,oEAAoE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,aAAa,IAAI,MAAM,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,oEAAoE,CAAC,CAAC,EAAE,SAAsBlB,EAAKlH,EAAY,CAAC,kBAAkB,CAAC,WAAWmC,CAAW,EAAE,sBAAsB,GAAK,gBAAgBgE,GAAY,eAAeC,GAAY,4BAA4B,GAAK,0BAA0B,GAAG,yBAAyB,SAAS,yBAAyBpE,EAAY,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,aAAa,IAAI,MAAM,QAAQ+J,GAA2B3D,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,EAAE,QAAQ,EAAE,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,oEAAoE,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,MAAM,CAAC,OAAO,GAAG,qBAAqB,IAAI,EAAE,SAAsBlB,EAAKwE,EAA0B,CAAC,SAAsBxE,EAAKnI,EAAU,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBmI,EAAKzH,EAAQ,CAAC,qBAAqB,OAAO,IAAI,GAAG,QAAQ,EAAE,OAAO,OAAO,GAAG,YAAY,cAAc,UAAU,SAAS,YAAY,KAAK,GAAM,YAAY,qBAAqB,WAAW,CAAC,WAAW,+CAA+C,UAAU,SAAS,WAAW,GAAG,EAAE,WAAW,GAAG,kBAAkB,GAAK,aAAa,CAAC,WAAW,+CAA+C,oBAAoB,SAAS,UAAU,SAAS,WAAW,GAAG,EAAE,MAAM,GAAG,MAAM,EAAE,gBAAgB,GAAK,YAAY,qBAAqB,WAAW,CAAC,WAAW,+CAA+C,UAAU,SAAS,WAAW,GAAG,EAAE,WAAW,IAAI,UAAU,qBAAqB,SAAS,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeyH,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,wCAAwC,IAAI,OAAO,QAAQgD,GAA2B3D,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,EAAE,IAAI,EAAE,EAAE,YAAY,GAAG,WAAW,IAAI,IAAI,oEAAoE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,wCAAwC,IAAI,OAAO,YAAY,GAAG,WAAW,IAAI,IAAI,oEAAoE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,wCAAwC,IAAI,OAAO,YAAY,GAAG,WAAW,IAAI,IAAI,oEAAoE,CAAC,CAAC,EAAE,SAAsBlB,EAAKlH,EAAY,CAAC,kBAAkB,CAAC,WAAW0C,EAAW,EAAE,sBAAsB,GAAK,gBAAgB2D,GAAY,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,wCAAwC,IAAI,OAAO,QAAQ0F,GAA2B3D,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,EAAE,IAAI,EAAE,EAAE,YAAY,GAAG,WAAW,IAAI,IAAI,oEAAoE,EAAE,UAAU,iBAAiB,MAAM,CAAC,qBAAqB,IAAI,CAAC,CAAC,CAAC,CAAC,EAAelB,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,wCAAwC,IAAI,MAAM,QAAQgD,GAA2B3D,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,wCAAwC,IAAI,MAAM,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,wCAAwC,IAAI,MAAM,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,CAAC,EAAE,SAAsBlB,EAAKlH,EAAY,CAAC,kBAAkB,CAAC,WAAWmC,CAAW,EAAE,sBAAsB,GAAK,gBAAgBmE,GAAY,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,wCAAwC,IAAI,MAAM,QAAQyF,GAA2B3D,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,EAAE,MAAM,EAAE,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,iBAAiB,MAAM,CAAC,qBAAqB,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelB,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,GAAGgE,GAAW,IAAIC,GAAK,SAAsBjE,EAAKwE,EAA0B,CAAC,SAAsBxE,EAAKnI,EAAU,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBmI,EAAKrG,GAAS,CAAC,UAAU,GAAK,OAAO,WAAW,OAAO,OAAO,WAAW,GAAK,YAAY,GAAK,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEuK,EAAa,GAAgBlE,EAAK,MAAM,CAAC,UAAU,2DAA2D,mBAAmB,SAAS,SAAsBqE,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,wBAAwB,SAAS,CAAcrE,EAAKhH,GAAe,CAAC,kBAAkB,CAAC,WAAWoC,CAAW,EAAE,sBAAsB,GAAK,gBAAgBG,EAAY,mCAAmC,GAAK,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAASkJ,EAAkB,MAAM1D,CAAY,GAAgBf,EAAW0E,EAAS,CAAC,SAAsB1E,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,eAAe,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,gBAAgB,MAAM,CAAC,OAAO,EAAE,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAeA,EAAKhH,GAAe,CAAC,kBAAkB,CAAC,WAAWoC,CAAW,EAAE,sBAAsB,GAAK,gBAAgBG,EAAY,mCAAmC,GAAK,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAASkJ,EAAkB,MAAM1D,CAAY,GAAgBf,EAAW0E,EAAS,CAAC,SAAsB1E,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,wCAAwC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,gBAAgB,MAAM,CAAC,OAAO,EAAE,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,0BAA0B,SAAsBqE,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcrE,EAAKwE,EAA0B,CAAC,OAAO,IAAI,SAAsBxE,EAAKnI,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBmI,EAAKvG,EAAY,CAAC,UAAU,wEAAwE,UAAU,wEAAwE,UAAU8C,EAAY,CAAC,IAAI,sEAAsE,EAAE,+DAA+D,EAAE,OAAO,OAAO,UAAUkI,EAAkB,MAAM1D,CAAY,GAAG,mJAAmJ,GAAG,YAAY,SAAS,YAAY,UAAU0D,EAAkB,MAAM1D,CAAY,GAAG,sBAAsB,UAAU,mBAAmB,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAef,EAAKwE,EAA0B,CAAC,OAAO,IAAI,SAAsBxE,EAAKnI,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBmI,EAAKvG,EAAY,CAAC,UAAU,wEAAwE,UAAU,wEAAwE,UAAU8C,EAAY,CAAC,IAAI,sEAAsE,EAAE,0CAA0C,EAAE,OAAO,OAAO,UAAUkI,EAAkB,MAAM1D,CAAY,GAAG,wHAAwH,GAAG,YAAY,SAAS,YAAY,UAAU0D,EAAkB,MAAM1D,CAAY,GAAG,uBAAuB,UAAU,mBAAmB,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAef,EAAKwE,EAA0B,CAAC,OAAO,IAAI,SAAsBxE,EAAKnI,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBmI,EAAKvG,EAAY,CAAC,UAAU,wEAAwE,UAAU,wEAAwE,UAAU8C,EAAY,CAAC,IAAI,sEAAsE,EAAE,wCAAwC,EAAE,OAAO,OAAO,UAAUkI,EAAkB,MAAM1D,CAAY,GAAG,qHAAqH,GAAG,YAAY,SAAS,YAAY,UAAU0D,EAAkB,MAAM1D,CAAY,GAAG,oBAAoB,UAAU,mBAAmB,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAef,EAAKwE,EAA0B,CAAC,OAAO,IAAI,SAAsBxE,EAAKnI,EAAU,CAAC,UAAU,0BAA0B,GAAG,SAAS,OAAO,YAAY,QAAQ,YAAY,SAAsBmI,EAAKvG,EAAY,CAAC,UAAU,wEAAwE,UAAU,wEAAwE,UAAU8C,EAAY,CAAC,IAAI,qEAAqE,EAAE,uDAAuD,EAAE,OAAO,OAAO,UAAUkI,EAAkB,MAAM1D,CAAY,GAAG,4IAA4I,GAAG,YAAY,SAAS,YAAY,UAAU0D,EAAkB,MAAM1D,CAAY,GAAG,wBAAwB,UAAU,mBAAmB,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEkC,EAAa,GAAgBjD,EAAK,MAAM,CAAC,UAAU,2DAA2D,mBAAmB,SAAS,SAAsBqE,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,wBAAwB,SAAS,CAAcrE,EAAKhH,GAAe,CAAC,kBAAkB,CAAC,WAAWoC,CAAW,EAAE,sBAAsB,GAAK,gBAAgBG,EAAY,mCAAmC,GAAK,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAASkJ,EAAkB,MAAM1D,CAAY,GAAgBf,EAAW0E,EAAS,CAAC,SAAsB1E,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,eAAe,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,gBAAgB,MAAM,CAAC,OAAO,EAAE,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAeA,EAAKhH,GAAe,CAAC,kBAAkB,CAAC,WAAWoC,CAAW,EAAE,sBAAsB,GAAK,gBAAgBG,EAAY,mCAAmC,GAAK,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAASkJ,EAAkB,MAAM1D,CAAY,GAAgBf,EAAW0E,EAAS,CAAC,SAAsB1E,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,wCAAwC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,gBAAgB,MAAM,CAAC,OAAO,EAAE,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeqE,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,0BAA0B,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcrE,EAAKwE,EAA0B,CAAC,OAAO,IAAI,SAAsBxE,EAAKnI,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBmI,EAAKvG,EAAY,CAAC,UAAU,wEAAwE,UAAU,wEAAwE,UAAU8C,EAAY,CAAC,IAAI,sEAAsE,EAAE,+DAA+D,EAAE,OAAO,OAAO,UAAUkI,EAAkB,MAAM1D,CAAY,GAAG,mJAAmJ,GAAG,YAAY,SAAS,YAAY,UAAU0D,EAAkB,MAAM1D,CAAY,GAAG,sBAAsB,UAAU,mBAAmB,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAef,EAAKwE,EAA0B,CAAC,OAAO,IAAI,SAAsBxE,EAAKnI,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBmI,EAAKvG,EAAY,CAAC,UAAU,wEAAwE,UAAU,wEAAwE,UAAU8C,EAAY,CAAC,IAAI,sEAAsE,EAAE,0CAA0C,EAAE,OAAO,OAAO,UAAUkI,EAAkB,MAAM1D,CAAY,GAAG,wHAAwH,GAAG,YAAY,SAAS,YAAY,UAAU0D,EAAkB,MAAM1D,CAAY,GAAG,uBAAuB,UAAU,mBAAmB,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAesD,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcrE,EAAKwE,EAA0B,CAAC,OAAO,IAAI,SAAsBxE,EAAKnI,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBmI,EAAKvG,EAAY,CAAC,UAAU,wEAAwE,UAAU,wEAAwE,UAAU8C,EAAY,CAAC,IAAI,sEAAsE,EAAE,wCAAwC,EAAE,OAAO,OAAO,UAAUkI,EAAkB,MAAM1D,CAAY,GAAG,qHAAqH,GAAG,YAAY,SAAS,YAAY,UAAU0D,EAAkB,MAAM1D,CAAY,GAAG,oBAAoB,UAAU,mBAAmB,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAef,EAAKwE,EAA0B,CAAC,OAAO,IAAI,SAAsBxE,EAAKnI,EAAU,CAAC,UAAU,0BAA0B,GAAG,SAAS,OAAO,YAAY,QAAQ,YAAY,SAAsBmI,EAAKvG,EAAY,CAAC,UAAU,wEAAwE,UAAU,wEAAwE,UAAU8C,EAAY,CAAC,IAAI,qEAAqE,EAAE,uDAAuD,EAAE,OAAO,OAAO,UAAUkI,EAAkB,MAAM1D,CAAY,GAAG,4IAA4I,GAAG,YAAY,SAAS,YAAY,UAAU0D,EAAkB,MAAM1D,CAAY,GAAG,wBAAwB,UAAU,mBAAmB,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAef,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,kBAAkB,CAAC,WAAWrG,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAY,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,MAAM,CAAC,qBAAqB,IAAI,CAAC,CAAC,EAAE,SAAsByE,EAAKxH,EAAgB,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,SAAsBwH,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,SAAsBqE,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,sBAAsB,SAAS,CAAcrE,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,kBAAkB,CAAC,WAAWzG,CAAW,EAAE,sBAAsB,GAAK,gBAAgBG,EAAY,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,MAAM,CAAC,qBAAqB,IAAI,CAAC,CAAC,EAAE,SAAsByE,EAAKxH,EAAgB,CAAC,UAAU,iBAAiB,mBAAmB,wBAAwB,SAAsBwH,EAAKxH,EAAgB,CAAC,kBAAkB,CAAC,WAAW4C,CAAW,EAAE,sBAAsB,GAAK,gBAAgBG,EAAY,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,mBAAmB,sBAAsB,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsByE,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,SAAS4C,EAAkB,MAAM1D,CAAY,GAAgBf,EAAW0E,EAAS,CAAC,SAAsB1E,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,4BAA4B,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAASyE,EAAkB,MAAM1D,CAAY,GAAgBf,EAAW0E,EAAS,CAAC,SAAsB1E,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,4BAA4B,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAASyE,EAAkB,MAAM1D,CAAY,GAAgBf,EAAW0E,EAAS,CAAC,SAAsB1E,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,4BAA4B,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKjI,EAAS,CAAC,sBAAsB,GAAK,SAAS0M,EAAkB,MAAM1D,CAAY,GAAgBf,EAAW0E,EAAS,CAAC,SAAsB1E,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,4BAA4B,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqE,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcrE,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGX,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,MAAM,gBAAgBA,GAAmB,OAAO,OAAO,mCAAmC,EAAE,MAAS,EAAE,UAAU,CAAC,EAAE,MAAS,CAAC,EAAE,SAAsBlB,EAAKwE,EAA0B,CAAC,OAAO,GAAG,GAAGtD,GAAmB,GAAG,GAAG,EAAE,KAAK,IAAI,EAAE,EAAE,EAAE,EAAE,IAAI,EAAE,EAAE,EAAE,SAAsBlB,EAAKnI,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBmI,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,CAAC,MAAM,MAAM,CAAC,CAAC,EAAE,SAAsB7B,EAAKnG,GAAgB,CAAC,UAAU4K,EAAkB,MAAM1D,CAAY,GAAG,mdAA8c,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU0D,EAAkB,MAAM1D,CAAY,GAAG,2CAA2C,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAef,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGX,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,UAAU,CAAC,MAAM,gBAAgBA,GAAmB,OAAO,OAAO,mCAAmC,EAAE,MAAS,EAAE,UAAU,CAAC,EAAE,MAAS,CAAC,EAAE,SAAsBlB,EAAKwE,EAA0B,CAAC,OAAO,GAAG,GAAGtD,GAAmB,GAAG,GAAG,EAAE,KAAK,IAAI,EAAE,EAAE,EAAE,EAAE,IAAI,EAAE,EAAE,GAAG,SAAsBlB,EAAKnI,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBmI,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,CAAC,MAAM,MAAM,CAAC,CAAC,EAAE,SAAsB7B,EAAKnG,GAAgB,CAAC,UAAU4K,EAAkB,MAAM1D,CAAY,GAAG,qgBAA2f,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU0D,EAAkB,MAAM1D,CAAY,GAAG,2CAA2C,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAef,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGX,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,UAAU,CAAC,MAAM,gBAAgBA,GAAmB,OAAO,OAAO,mCAAmC,EAAE,MAAS,EAAE,UAAU,CAAC,EAAE,MAAS,CAAC,EAAE,SAAsBlB,EAAKwE,EAA0B,CAAC,OAAO,GAAG,GAAGtD,GAAmB,GAAG,GAAG,EAAE,KAAK,IAAI,EAAE,EAAE,EAAE,EAAE,IAAI,EAAE,EAAE,IAAI,SAAsBlB,EAAKnI,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBmI,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,CAAC,MAAM,MAAM,CAAC,CAAC,EAAE,SAAsB7B,EAAKnG,GAAgB,CAAC,UAAU4K,EAAkB,MAAM1D,CAAY,GAAG,yPAAyP,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU0D,EAAkB,MAAM1D,CAAY,GAAG,kDAAkD,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAef,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGX,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,UAAU,CAAC,MAAM,gBAAgBA,GAAmB,OAAO,OAAO,mCAAmC,EAAE,MAAS,EAAE,UAAU,CAAC,EAAE,MAAS,CAAC,EAAE,SAAsBlB,EAAKwE,EAA0B,CAAC,OAAO,GAAG,GAAGtD,GAAmB,GAAG,GAAG,EAAE,KAAK,IAAI,EAAE,EAAE,EAAE,EAAE,IAAI,EAAE,EAAE,IAAI,SAAsBlB,EAAKnI,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBmI,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,CAAC,MAAM,MAAM,CAAC,CAAC,EAAE,SAAsB7B,EAAKnG,GAAgB,CAAC,UAAU4K,EAAkB,MAAM1D,CAAY,GAAG,yKAAyK,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU0D,EAAkB,MAAM1D,CAAY,GAAG,gDAAgD,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAesD,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcrE,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGX,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,IAAI,EAAE,CAAC,EAAE,UAAU,CAAC,MAAM,gBAAgBA,GAAmB,OAAO,OAAO,mCAAmC,EAAE,MAAS,EAAE,UAAU,CAAC,EAAE,MAAS,CAAC,EAAE,SAAsBlB,EAAKwE,EAA0B,CAAC,OAAO,GAAG,GAAGtD,GAAmB,GAAG,GAAG,EAAE,KAAK,IAAI,EAAE,EAAE,EAAE,EAAE,IAAI,EAAE,EAAE,EAAE,SAAsBlB,EAAKnI,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBmI,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,CAAC,MAAM,MAAM,CAAC,CAAC,EAAE,SAAsB7B,EAAKnG,GAAgB,CAAC,UAAU4K,EAAkB,MAAM1D,CAAY,GAAG,2MAA2M,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU0D,EAAkB,MAAM1D,CAAY,GAAG,kDAAkD,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAef,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGX,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,IAAI,EAAE,EAAE,EAAE,UAAU,CAAC,MAAM,gBAAgBA,GAAmB,OAAO,OAAO,mCAAmC,EAAE,MAAS,EAAE,UAAU,CAAC,EAAE,MAAS,CAAC,EAAE,SAAsBlB,EAAKwE,EAA0B,CAAC,OAAO,GAAG,GAAGtD,GAAmB,GAAG,GAAG,EAAE,KAAK,IAAI,EAAE,EAAE,EAAE,EAAE,IAAI,EAAE,EAAE,GAAG,SAAsBlB,EAAKnI,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBmI,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,CAAC,MAAM,MAAM,CAAC,CAAC,EAAE,SAAsB7B,EAAKnG,GAAgB,CAAC,UAAU4K,EAAkB,MAAM1D,CAAY,GAAG,qRAAqR,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU0D,EAAkB,MAAM1D,CAAY,GAAG,sDAAsD,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAef,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGX,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,IAAI,EAAE,GAAG,EAAE,UAAU,CAAC,MAAM,gBAAgBA,GAAmB,OAAO,OAAO,mCAAmC,EAAE,MAAS,EAAE,UAAU,CAAC,EAAE,MAAS,CAAC,EAAE,SAAsBlB,EAAKwE,EAA0B,CAAC,OAAO,GAAG,GAAGtD,GAAmB,GAAG,GAAG,EAAE,KAAK,IAAI,EAAE,EAAE,EAAE,EAAE,IAAI,EAAE,EAAE,IAAI,SAAsBlB,EAAKnI,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBmI,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,CAAC,MAAM,MAAM,CAAC,CAAC,EAAE,SAAsB7B,EAAKnG,GAAgB,CAAC,UAAU4K,EAAkB,MAAM1D,CAAY,GAAG,+RAAqR,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU0D,EAAkB,MAAM1D,CAAY,GAAG,iDAAiD,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAef,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGX,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,IAAI,EAAE,GAAG,EAAE,UAAU,CAAC,MAAM,gBAAgBA,GAAmB,OAAO,OAAO,mCAAmC,EAAE,MAAS,EAAE,UAAU,CAAC,EAAE,MAAS,CAAC,EAAE,SAAsBlB,EAAKwE,EAA0B,CAAC,OAAO,GAAG,GAAGtD,GAAmB,GAAG,GAAG,EAAE,KAAK,IAAI,EAAE,EAAE,EAAE,EAAE,IAAI,EAAE,EAAE,IAAI,SAAsBlB,EAAKnI,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBmI,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,CAAC,MAAM,MAAM,CAAC,CAAC,EAAE,SAAsB7B,EAAKnG,GAAgB,CAAC,UAAU4K,EAAkB,MAAM1D,CAAY,GAAG,ySAAyS,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU0D,EAAkB,MAAM1D,CAAY,GAAG,uCAAuC,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAef,EAAKV,GAAQ,CAAC,SAAS+C,GAAsBrC,EAAKoF,GAAU,CAAC,SAAsBpF,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGX,GAAmB,GAAG,GAAG,EAAE,IAAI,EAAE,UAAU,CAAC,EAAE,MAAS,EAAE,UAAU,CAAC,EAAE,MAAS,CAAC,EAAE,SAAsBlB,EAAKwE,EAA0B,CAAC,OAAO,IAAI,MAAMtD,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,SAAsBmD,EAAMxM,EAAU,CAAC,UAAU,2BAA2B,GAAG,UAAU,OAAO,YAAY,QAAQ,YAAY,SAAS,CAAcmI,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAKjG,GAAa,CAAC,UAAU0K,EAAkB,MAAM1D,CAAY,GAAG,4CAA4C,UAAU0D,EAAkB,MAAM1D,CAAY,GAAG,4CAA4C,UAAU0D,EAAkB,MAAM1D,CAAY,GAAG,6CAA6C,OAAO,OAAO,UAAUqB,EAAgB,CAAC,QAAAC,CAAO,CAAC,EAAE,GAAG,YAAY,SAAS,YAAY,UAAU,GAAK,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAUoC,EAAkB,MAAM1D,CAAY,GAAG,2CAA2C,CAAC,CAAC,CAAC,EAAef,EAAKqF,GAAgB,CAAC,SAAShD,EAAQ,SAAsBrC,EAAKoF,GAAU,CAAC,SAA+BE,GAA0BjB,EAAYK,EAAS,CAAC,SAAS,CAAc1E,EAAK/H,EAAO,IAAI,CAAC,QAAQ,CAAC,QAAQ,EAAE,WAAW,CAAC,MAAM,EAAE,SAAS,EAAE,KAAK,CAAC,GAAG,EAAE,IAAI,GAAG,EAAE,KAAK,OAAO,CAAC,EAAE,UAAUwK,GAAGD,EAAkB,eAAe,EAAE,wBAAwB,UAAU,KAAK,CAAC,QAAQ,EAAE,WAAW,CAAC,MAAM,EAAE,SAAS,EAAE,KAAK,CAAC,IAAI,IAAI,GAAG,CAAC,EAAE,KAAK,OAAO,CAAC,EAAE,QAAQ,CAAC,QAAQ,CAAC,EAAE,MAAM,IAAIH,EAAQ,KAAK,CAAC,EAAE,WAAW,EAAerC,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,OAAO,CAAC,EAAE,SAAsB7B,EAAKwE,EAA0B,CAAC,MAAM,QAAQ,SAAsBxE,EAAKnI,EAAU,CAAC,UAAU4K,GAAGD,EAAkB,0BAA0B,EAAE,wBAAwB,UAAU,gBAAgB,GAAK,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBxC,EAAKuE,EAAkB,CAAC,WAAW1C,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAK/F,GAAY,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEoF,GAAa,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeW,EAAK,MAAM,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQuF,GAAI,CAAC,kFAAkF,gFAAgF,kSAAkS,6HAA6H,6VAA6V,uSAAuS,ySAAyS,oSAAoS,yVAAyV,2KAA2K,4VAA4V,iLAAiL,uOAAuO,+SAA+S,kWAAkW,0GAA0G,ioCAAioC,+RAA+R,mnBAAmnB,2RAA2R,wIAAwI,+JAA+J,iTAAiT,0LAA0L,uTAAuT,kJAAkJ,kMAAkM,sKAAsK,8UAA8U,oSAAoS,iPAAiP,4SAA4S,0gBAA0gB,sRAAsR,yWAAyW,4eAA4e,orBAAorB,saAAsa,4aAA4a,6cAA6c,sPAAsP,uPAAuP,sRAAsR,2SAA2S,sbAAsb,qPAAqP,0nBAA0nB,qRAAqR,+RAA+R,gVAAgV,0TAA0T,8UAA8U,yUAAyU,0UAA0U,mLAAmL,sLAAsL,qVAAqV,mKAAmK,gRAAgR,wRAAwR,+QAA+Q,mwBAAmwB,uTAAuT,0aAA0a,mwBAAmwB,mRAAmR,0GAA0G,2RAA2R,sUAAsU,sVAAsV,gPAAgP,gMAAgM,qMAAqM,kMAAkM,gwBAAgwB,sRAAsR,oVAAoV,mHAAmH,8MAA8M,oFAAoF,oKAAoK,kLAAkL,kNAAkN,mNAAmN,iNAAiN,mLAAmL,+vBAA+vB,sRAAsR,8QAA8Q,wPAAwP,oFAAoF,gMAAgM,gMAAgM,gMAAgM,2RAA2R,2SAA2S,6TAA6T,iLAAiL,mMAAmM,2RAA2R,gRAAgR,uQAAuQ,yLAAyL,8UAA8U,0WAA0W,0SAA0S,kSAAkS,iNAAiN,2QAA2Q,mTAAmT,0RAA0R,iSAAiS,2LAA2L,2RAA2R,kLAAkL,uLAAuL,sVAAsV,0PAA0P,yPAAyP,6PAA6P,4PAA4P,oWAAoW,uTAAuT,wMAAwM,oTAAoT,yTAAyT,sTAAsT,uSAAuS,2GAA2G,yYAAyY,mUAAmU,gTAAgT,iUAAiU,qSAAqS,iTAAiT,kSAAkS,gSAAgS,+VAA+V,sSAAsS,yRAAyR,6RAA6R,kLAAkL,gSAAgS,+RAA+R,yGAAyG,oIAAoI,0MAA0M,o5jBAAo5jB,GAAeA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,gcAAgc,glRAAglR,ghWAAghW,mjdAAmjd,EAW94xSC,GAAgBC,GAAQlF,GAAUgF,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,kBAAkBA,GAAgB,aAAa,CAAC,OAAO,KAAK,MAAM,IAAI,EAAEG,GAASH,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,UAAU,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,EAAE,CAAC,OAAO,UAAU,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,EAAE,CAAC,OAAO,UAAU,OAAO,SAAS,MAAM,SAAS,IAAI,gFAAgF,OAAO,KAAK,EAAE,CAAC,OAAO,UAAU,OAAO,SAAS,MAAM,SAAS,IAAI,gFAAgF,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,uEAAuE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,uEAAuE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,UAAU,OAAO,SAAS,MAAM,SAAS,IAAI,gFAAgF,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGlO,GAA0B,GAAGG,GAAW,GAAGS,GAAqB,GAAGE,GAAkB,GAAGE,GAAa,GAAGI,GAAW,GAAGE,GAAe,GAAGK,GAAoB,GAAGE,GAAc,GAAGE,GAAiB,GAAGG,GAAiB,GAAGE,GAAc,GAAGE,GAAqB,GAAGE,GAAkB,GAAGE,GAAiB,GAAG4L,GAAoCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,EAC91J,IAAMC,GAAqB,CAAC,QAAU,CAAC,QAAU,CAAC,KAAO,iBAAiB,KAAO,kBAAkB,MAAQ,CAAC,EAAE,YAAc,CAAC,yBAA2B,OAAO,sBAAwB,OAAO,yBAA2B,QAAQ,4BAA8B,OAAO,sBAAwB,IAAI,uBAAyB,GAAG,oCAAsC,oMAA0O,qBAAuB,OAAO,6BAA+B,OAAO,qBAAuB,uVAA6Z,CAAC,EAAE,MAAQ,CAAC,KAAO,SAAS,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC",
  "names": ["Animator", "props", "pathAnimation", "from", "to", "animate", "shouldLoop", "loopOptions", "slots", "endCircle", "hasChildren", "j", "customShape", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "firstChild", "getFirstChild", "svgChild", "isSpring", "shapeTransition", "pathLength", "useMotionValue", "opacity", "useTransform", "shapeProps", "isCanvas", "RenderTarget", "attributes", "pathD", "stroke", "strokeWidth", "strokeLinecap", "strokeLinejoin", "element", "splitAndReplace", "svgViewbox", "motion", "addPropertyControls", "ControlType", "string", "child", "ImageWithFX", "withFX", "Image2", "RichTextWithFX", "RichText2", "MotionDivWithFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "animation", "transition2", "numberToPixelString", "animation1", "transition3", "transition4", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "color", "color2", "description", "height", "id", "image", "padding", "title", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "_ref5", "_humanReadableVariantMap_props_variant", "_ref6", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "ufxmdYg32", "eAAKapzJj", "HmCwtpszc", "dIqLusgod", "dnI2jWCoG", "USVd0KBmR", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "getLoadingLazyAtYPosition", "css", "FramerfDDsAtm3G", "withCSS", "fDDsAtm3G_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "ProductCardFonts", "getFonts", "W1zhKeI5d_default", "SlideshowFonts", "Slideshow", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "image1", "image10", "image11", "image12", "image1Link", "image2", "image2Link", "image3", "image3Link", "image4", "image4Link", "image5", "image5Link", "image6", "image6Link", "image7", "image7Link", "image8", "image9", "link10", "link11", "link12", "link8", "link9", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "_ref5", "_ref6", "_ref7", "_humanReadableVariantMap_props_variant", "_ref8", "_ref9", "_ref10", "_ref11", "_ref12", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "TiXrjFTDY", "T2n22t0TD", "nGES9VZPm", "FIxZNL0Ud", "gdcaEkw5m", "RSAPsSEui", "w1cGcZOOu", "DdrIVScPr", "wYseThRYq", "ncgBlLmbw", "wHy7feqW5", "FSwfyjpMG", "nKoL1MOJZ", "IDfSgRHFq", "uJCMmf_jD", "z7UFgur1Z", "yvxTKwYSi", "hwwOXRrJz", "n60LQfV0K", "QWTRfBXu1", "TsoLcK3kw", "ugazBM7Hw", "HAOADIUEq", "CzcAM6DpD", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "U1ltZLyIv3zqwy5", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "ComponentViewportProvider", "css", "FramerHs_fPa06Q", "withCSS", "Hs_fPa06Q_default", "addPropertyControls", "ControlType", "addFonts", "valuesByLocaleId", "LazyValue", "getLocalizedValue", "key", "locale", "values", "value", "preload", "promises", "promise", "usePreloadLocalizedValues", "preloadPromise", "NavigationNavigationFonts", "getFonts", "uCrN7F5yl_default", "BadgeFonts", "BtS3Sc6rf_default", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "RichTextWithOptimizedAppearEffect", "RichText2", "MotionDivWithOptimizedAppearEffect", "motion", "ListItemBulletsFonts", "RplTv7qVR_default", "ButtonMasterFonts", "fPhvVJY5K_default", "CounterFonts", "Counter", "MotionDivWithFX", "withFX", "VideoFonts", "Video", "ParticlesFonts", "ParticleWrapper", "ImageWithFX", "Image2", "RichTextWithFX", "CarouselImagesFonts", "Hs_fPa06Q_default", "AnimatorFonts", "Animator", "CommonBadgeFonts", "E6FNJa8Be_default", "ContainerWithFX", "FeatureCardFonts", "fDDsAtm3G_default", "TypeformFonts", "Typeform", "CommonAccordionFonts", "zsVubOwyK_default", "FooterFooterFonts", "yiv18JfQQ_default", "ContactFormFonts", "qPeoWncKJ_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "animation3", "transition3", "animation4", "transition4", "animation5", "animation6", "transition5", "animation7", "animation8", "transition6", "animation9", "animation10", "animation11", "transition7", "transition8", "transition9", "transformTemplate1", "_", "t", "animation12", "animation13", "animation14", "animation15", "animation16", "animation17", "animation18", "animation19", "animation20", "addImageAlt", "image", "alt", "animation21", "animation22", "animation23", "animation24", "animation25", "animation26", "animation27", "animation28", "animation29", "animation30", "animation31", "animation32", "animation33", "animation34", "animation35", "animation36", "animation37", "animation38", "animation39", "animation40", "animation41", "animation42", "animation43", "animation44", "animation45", "animation46", "animation47", "animation48", "animation49", "animation50", "animation51", "animation52", "transition10", "animation53", "animation54", "animation55", "animation56", "animation57", "animation58", "animation59", "animation60", "animation61", "animation62", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "hGJz0EPzb3bnx0g", "overlay", "loadMore", "args", "scopingClassNames", "cx", "usePreloadLocalizedValues", "elementId", "useRouteElementId", "router", "useRouter", "ref1", "isDisplayed", "isDisplayed1", "elementId1", "ref2", "isDisplayed2", "elementId2", "ref3", "elementId3", "ref4", "isDisplayed3", "isDisplayed4", "isDisplayed5", "elementId4", "ref5", "elementId5", "ref6", "elementId6", "ref7", "isDisplayed6", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "getLocalizedValue", "x", "ResolveLinks", "resolvedLinks", "getLoadingLazyAtYPosition", "Link", "resolvedLinks1", "SVG", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "l", "AnimatePresence", "Ga", "css", "Framerjpwn_a0xU", "withCSS", "jpwn_a0xU_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
