{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/di3I91hUtBu0VRhoRBzF/whMPT9r5AGIJx5D5SVaz/Counter.js", "ssg:https://framerusercontent.com/modules/1HoGQ6QwD2LyK0GEQDFa/dIKwJomSAtcf6KAJzpfk/uQRBhygQf.js", "ssg:https://framerusercontent.com/modules/91U5KbIyfLWO0dQUqU9n/qLVBiliJkYrAyYxSAFHw/aH7yeXBVj.js", "ssg:https://framerusercontent.com/modules/nebkh16FHpj1VnDkHlaL/cRGoufTW08WyCllSX2Aj/JDguMTCRG.js", "ssg:https://framerusercontent.com/modules/zlysxE7z4SNjBXgpT1no/OKQXHLX1TmosubnokI6r/ZkokeclFd.js", "ssg:https://framerusercontent.com/modules/rjmhHjzjJUqO0GGY3QLS/PTo7Ej5Qtcrg35gieOAN/eSOfEPmfr.js", "ssg:https://framerusercontent.com/modules/jPK77aLdaxnymH4XO4Q0/3APtReou5hfioOFVSnoj/hvQAZuTE8.js", "ssg:https://framerusercontent.com/modules/xXzuCfPncZnDWLrYmtNO/d2zRurFeeTcEsDvokAYB/DPl1XeZ47.js", "ssg:https://framerusercontent.com/modules/ubaoLrqscz1y6wnxY7pe/7sxwEmDrNqkpoWEcCeCk/jFWuJpyza.js", "ssg:https://framerusercontent.com/modules/nP7CNy9viXWmp4619egi/tzOk1jkTmCOostKRkw6E/P9ubNxmwe.js", "ssg:https://framerusercontent.com/modules/FeO5ATKuCP3VEPmlfMr8/pbl44vEVUxvdzZi1Bl5o/W96ZH6Gnz.js", "ssg:https://framerusercontent.com/modules/t779FP3JFjYFEKkiNBST/T92W8LylIwGC6DDrzlEh/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useState,useEffect,useRef}from\"react\";import{motion}from\"framer-motion\";import{addPropertyControls,ControlType}from\"framer\";export function Counter({start=0,end=100,speed=100,gapSize=4,prefixText=\"\",suffixText=\"\",prefixFont,suffixFont,prefixColor,suffixColor,loop=false,decimalSeparatorType=\"comma\",textSize=36,selectedFont={fontFamily:\"Inter\",fontWeight:500,systemFont:true},textColor=\"#D3D3D3\",startOnViewport=false,restartOnViewport=false,incrementType=\"integer\"}){const[count,setCount]=useState(start);const[isVisible,setIsVisible]=useState(false);const containerRef=useRef(null);useEffect(()=>{const observer=new IntersectionObserver(([entry])=>{setIsVisible(entry.isIntersecting);});if(containerRef.current)observer.observe(containerRef.current);return()=>observer.disconnect();},[]);useEffect(()=>{if(!(isVisible||!startOnViewport)||start===end)return;const increment=incrementType===\"integer\"?1:.1;const intervalId=setInterval(()=>{setCount(prev=>prev+increment>=end?end:parseFloat((prev+increment).toFixed(2)));},speed);return()=>clearInterval(intervalId);},[isVisible,start,end,speed,startOnViewport,incrementType]);useEffect(()=>{if(restartOnViewport&&isVisible)setCount(start);},[isVisible,restartOnViewport,start]);const formatNumber=number=>{if(decimalSeparatorType===\"comma\")return number.toLocaleString(\"en-US\");if(decimalSeparatorType===\"period\")return number.toLocaleString(\"en-US\").replace(/,/g,\".\");return number.toFixed(incrementType===\"integer\"?0:1);};return /*#__PURE__*/_jsxs(motion.div,{ref:containerRef,style:{display:\"flex\",gap:`${gapSize}px`,alignItems:\"center\",fontSize:`${textSize}px`,fontFamily:selectedFont.fontFamily,fontWeight:selectedFont.fontWeight,color:textColor,letterSpacing:\"-0.07em\"},children:[prefixText&&/*#__PURE__*/_jsx(\"span\",{style:{fontFamily:prefixFont?.fontFamily,fontWeight:prefixFont?.fontWeight,color:prefixColor},children:prefixText}),/*#__PURE__*/_jsx(\"span\",{children:formatNumber(count)}),suffixText&&/*#__PURE__*/_jsx(\"span\",{style:{fontFamily:suffixFont?.fontFamily,fontWeight:suffixFont?.fontWeight,color:suffixColor},children:suffixText})]});}addPropertyControls(Counter,{startOnViewport:{type:ControlType.Boolean,title:\"Viewport\",defaultValue:false},restartOnViewport:{type:ControlType.Boolean,title:\"Replay\",defaultValue:false},selectedFont:{title:\"Font\",type:ControlType.Font,defaultValue:{fontFamily:\"Inter\",fontWeight:500,systemFont:true}},textSize:{title:\"Font Size\",type:ControlType.Number,min:8,max:240,step:1},textColor:{type:ControlType.Color,title:\"Font Color\"},start:{type:ControlType.Number,title:\"Start Number\",defaultValue:0},end:{type:ControlType.Number,title:\"End Number\",defaultValue:10},decimalSeparatorType:{type:ControlType.Enum,title:\"Separator\",defaultValue:\"comma\",options:[\"comma\",\"period\",\"none\"]},incrementType:{type:ControlType.Enum,title:\"Increment Type\",defaultValue:\"integer\",options:[\"integer\",\"decimal\"]},prefixText:{type:ControlType.String,title:\"Prefix\",defaultValue:\"\"},prefixFont:{title:\"Prefix Font\",type:ControlType.Font},prefixColor:{type:ControlType.Color,title:\"Prefix Color\"},suffixText:{type:ControlType.String,title:\"Suffix\",defaultValue:\"\"},suffixFont:{title:\"Suffix Font\",type:ControlType.Font},suffixColor:{type:ControlType.Color,title:\"Suffix Color\"},gapSize:{type:ControlType.Number,title:\"Gap Size\",defaultValue:4,min:0,max:100},speed:{type:ControlType.Number,title:\"Speed (ms)\",defaultValue:100,min:0,max:2e3},loop:{type:ControlType.Boolean,title:\"Loop Animation\",defaultValue:false}});\nexport const __FramerMetadata__ = {\"exports\":{\"Counter\":{\"type\":\"reactComponent\",\"name\":\"Counter\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Counter.map", "// Generated by Framer (7f69244)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-SemiBold\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-SemiBoldItalic\"]);export const fonts=[{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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.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:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/vxBnBhH8768IFAXAb4Qf6wQHKs.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/zSsEuoJdh8mcFVk976C05ZfQr8.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/b8ezwLrN7h2AUoPEENcsTMVJ0.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/mvNEIBLyHbscgHtwfsByjXUz3XY.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/6FI2EneKzM3qBy5foOZXey7coCA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/qrVgiXNd6RuQjETYQiVQ9nqCk.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/NHHeAKJVP0ZWHk5YZnQQChIsBM.woff2\",weight:\"600\"}]}];export const css=['.framer-nNZda .framer-styles-preset-ddjjzx:not(.rich-text-wrapper), .framer-nNZda .framer-styles-preset-ddjjzx.rich-text-wrapper h3 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 26px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 600; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 600; --framer-letter-spacing: -0.04em; --framer-line-height: 1.3em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, #0c0c0c); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-nNZda .framer-styles-preset-ddjjzx:not(.rich-text-wrapper), .framer-nNZda .framer-styles-preset-ddjjzx.rich-text-wrapper h3 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 22px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 600; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 600; --framer-letter-spacing: -0.04em; --framer-line-height: 120%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, #0c0c0c); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-nNZda .framer-styles-preset-ddjjzx:not(.rich-text-wrapper), .framer-nNZda .framer-styles-preset-ddjjzx.rich-text-wrapper h3 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 600; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 600; --framer-letter-spacing: -0.04em; --framer-line-height: 1.3em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, #0c0c0c); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-nNZda\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (4ba8877)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getPropertyControls,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Counter}from\"https://framerusercontent.com/modules/di3I91hUtBu0VRhoRBzF/whMPT9r5AGIJx5D5SVaz/Counter.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/1HoGQ6QwD2LyK0GEQDFa/dIKwJomSAtcf6KAJzpfk/uQRBhygQf.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/oMgXPBeR6YdHTzKPyOpl/EoE1kmmGpZHB3Wts7nST/xNIXLfFSf.js\";const CounterFonts=getFonts(Counter);const CounterControls=getPropertyControls(Counter);const cycleOrder=[\"rU6L3C7CP\",\"cgtZ872x4\",\"GafEYaEBD\"];const serializationHash=\"framer-KGMCY\";const variantClassNames={cgtZ872x4:\"framer-v-kd3l4t\",GafEYaEBD:\"framer-v-11s36qo\",rU6L3C7CP:\"framer-v-1t1ct45\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableEnumMap={Decimal:\"decimal\",Integer:\"integer\"};const humanReadableVariantMap={Desktop:\"rU6L3C7CP\",Phone:\"GafEYaEBD\",Tablet:\"cgtZ872x4\"};const getProps=({description,h3Title,height,id,incrementType,number,speedMs,suffix,width,...props})=>{return{...props,BU4_wyR9A:number??props.BU4_wyR9A??17,ezNYwgiIW:h3Title??props.ezNYwgiIW??\"H3 Title\",MTE4RiHaV:description??props.MTE4RiHaV??\"Description\",OhLeOem3o:speedMs??props.OhLeOem3o??60,uvfNqUND5:suffix??props.uvfNqUND5??\"+\",variant:humanReadableVariantMap[props.variant]??props.variant??\"rU6L3C7CP\",XbDSLtZLO:humanReadableEnumMap[incrementType]??incrementType??props.XbDSLtZLO??\"integer\"};};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,BU4_wyR9A,uvfNqUND5,XbDSLtZLO,OhLeOem3o,ezNYwgiIW,MTE4RiHaV,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"rU6L3C7CP\",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??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-1t1ct45\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"rU6L3C7CP\",ref:ref??ref1,style:{...style},...addPropertyOverrides({cgtZ872x4:{\"data-framer-name\":\"Tablet\"},GafEYaEBD:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-rnq1xt-container\",layoutDependency:layoutDependency,layoutId:\"SCstb8RtQ-container\",children:/*#__PURE__*/_jsx(Counter,{decimalSeparatorType:\"none\",end:BU4_wyR9A,gapSize:0,height:\"100%\",id:\"SCstb8RtQ\",incrementType:XbDSLtZLO,layoutId:\"SCstb8RtQ\",loop:false,prefixColor:\"rgb(255, 255, 255)\",prefixFont:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:700},prefixText:\"\",restartOnViewport:false,selectedFont:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:600},speed:OhLeOem3o,start:0,startOnViewport:true,suffixColor:\"var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12))\",suffixFont:{},suffixText:uvfNqUND5,textColor:\"var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12))\",textSize:90,width:\"100%\",...addPropertyOverrides({cgtZ872x4:{textSize:66},GafEYaEBD:{textSize:44}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11g5wz4\",\"data-border\":true,\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"KM6RVAnzp\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgb(214, 214, 214)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-ddjjzx\",\"data-styles-preset\":\"uQRBhygQf\",children:\"Websites launched\"})}),className:\"framer-10l1onq\",\"data-framer-name\":\"Websites launched\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"BCdPzBs67\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:ezNYwgiIW,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-jnye1g\",\"data-styles-preset\":\"xNIXLfFSf\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(12, 12, 12, 0.6))\"},children:\"Helping brands make their mark online.\"})}),className:\"framer-1yj06m6\",\"data-framer-name\":\"Helping brands make their mark online.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"KQ5BFZosn\",style:{\"--extracted-r6o4lv\":\"rgba(12, 12, 12, 0.6)\",\"--framer-paragraph-spacing\":\"0px\"},text:MTE4RiHaV,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-KGMCY.framer-zp4nlz, .framer-KGMCY .framer-zp4nlz { display: block; }\",\".framer-KGMCY.framer-1t1ct45 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 400px; }\",\".framer-KGMCY .framer-rnq1xt-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-KGMCY .framer-11g5wz4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 40px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-KGMCY .framer-10l1onq { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-KGMCY .framer-1yj06m6 { --framer-text-wrap-override: balance; flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-KGMCY.framer-1t1ct45, .framer-KGMCY .framer-11g5wz4 { gap: 0px; } .framer-KGMCY.framer-1t1ct45 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-KGMCY.framer-1t1ct45 > :first-child, .framer-KGMCY .framer-11g5wz4 > :first-child { margin-top: 0px; } .framer-KGMCY.framer-1t1ct45 > :last-child, .framer-KGMCY .framer-11g5wz4 > :last-child { margin-bottom: 0px; } .framer-KGMCY .framer-11g5wz4 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }\",\".framer-KGMCY.framer-v-kd3l4t.framer-1t1ct45 { gap: 24px; }\",\".framer-KGMCY.framer-v-kd3l4t .framer-11g5wz4 { gap: 6px; padding: 32px 0px 0px 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-KGMCY.framer-v-kd3l4t.framer-1t1ct45, .framer-KGMCY.framer-v-kd3l4t .framer-11g5wz4 { gap: 0px; } .framer-KGMCY.framer-v-kd3l4t.framer-1t1ct45 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-KGMCY.framer-v-kd3l4t.framer-1t1ct45 > :first-child, .framer-KGMCY.framer-v-kd3l4t .framer-11g5wz4 > :first-child { margin-top: 0px; } .framer-KGMCY.framer-v-kd3l4t.framer-1t1ct45 > :last-child, .framer-KGMCY.framer-v-kd3l4t .framer-11g5wz4 > :last-child { margin-bottom: 0px; } .framer-KGMCY.framer-v-kd3l4t .framer-11g5wz4 > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } }\",\".framer-KGMCY.framer-v-11s36qo.framer-1t1ct45 { gap: 20px; }\",\".framer-KGMCY.framer-v-11s36qo .framer-11g5wz4 { gap: 6px; padding: 24px 0px 0px 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-KGMCY.framer-v-11s36qo.framer-1t1ct45, .framer-KGMCY.framer-v-11s36qo .framer-11g5wz4 { gap: 0px; } .framer-KGMCY.framer-v-11s36qo.framer-1t1ct45 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-KGMCY.framer-v-11s36qo.framer-1t1ct45 > :first-child, .framer-KGMCY.framer-v-11s36qo .framer-11g5wz4 > :first-child { margin-top: 0px; } .framer-KGMCY.framer-v-11s36qo.framer-1t1ct45 > :last-child, .framer-KGMCY.framer-v-11s36qo .framer-11g5wz4 > :last-child { margin-bottom: 0px; } .framer-KGMCY.framer-v-11s36qo .framer-11g5wz4 > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-KGMCY[data-border=\"true\"]::after, .framer-KGMCY [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 242\n * @framerIntrinsicWidth 400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"cgtZ872x4\":{\"layout\":[\"fixed\",\"auto\"]},\"GafEYaEBD\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"BU4_wyR9A\":\"number\",\"uvfNqUND5\":\"suffix\",\"XbDSLtZLO\":\"incrementType\",\"OhLeOem3o\":\"speedMs\",\"ezNYwgiIW\":\"h3Title\",\"MTE4RiHaV\":\"description\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameraH7yeXBVj=withCSS(Component,css,\"framer-KGMCY\");export default FrameraH7yeXBVj;FrameraH7yeXBVj.displayName=\"Numbers / Item\";FrameraH7yeXBVj.defaultProps={height:242,width:400};addPropertyControls(FrameraH7yeXBVj,{variant:{options:[\"rU6L3C7CP\",\"cgtZ872x4\",\"GafEYaEBD\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},BU4_wyR9A:{defaultValue:17,displayStepper:true,title:\"Number\",type:ControlType.Number},uvfNqUND5:{defaultValue:\"+\",title:\"Suffix\",type:ControlType.String},XbDSLtZLO:CounterControls?.[\"incrementType\"]&&{...CounterControls[\"incrementType\"],defaultValue:\"integer\",description:undefined,hidden:undefined,title:\"Increment Type\"},OhLeOem3o:{defaultValue:60,max:2e3,min:0,step:10,title:\"Speed Ms\",type:ControlType.Number},ezNYwgiIW:{defaultValue:\"H3 Title\",displayTextArea:false,title:\"H3 Title\",type:ControlType.String},MTE4RiHaV:{defaultValue:\"Description\",displayTextArea:false,title:\"Description\",type:ControlType.String}});addFonts(FrameraH7yeXBVj,[{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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.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:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...CounterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraH7yeXBVj\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"cgtZ872x4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GafEYaEBD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"242\",\"framerIntrinsicWidth\":\"400\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"BU4_wyR9A\\\":\\\"number\\\",\\\"uvfNqUND5\\\":\\\"suffix\\\",\\\"XbDSLtZLO\\\":\\\"incrementType\\\",\\\"OhLeOem3o\\\":\\\"speedMs\\\",\\\"ezNYwgiIW\\\":\\\"h3Title\\\",\\\"MTE4RiHaV\\\":\\\"description\\\"}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (c07a8c1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/ioXxHPtND3Fu9702Kdo7/lB5ru9sQrnJoIHwUnpEo/q35quwzCc.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/vbMXG3jyoGXvgV0OHRfE/TKRwEd0wR9zhq0oeKpxR/xNIXLfFSf.js\";const cycleOrder=[\"hDbCvcxst\",\"KVvKXtHq9\"];const serializationHash=\"framer-J4UNP\";const variantClassNames={hDbCvcxst:\"framer-v-145ktc9\",KVvKXtHq9:\"framer-v-yd3s1d\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Phone:\"KVvKXtHq9\",Primary:\"hDbCvcxst\"};const getProps=({description,height,id,title,width,...props})=>{return{...props,iU68ScBCY:description??props.iU68ScBCY??\"Description\",M6makQZJz:title??props.M6makQZJz??\"Title\",variant:humanReadableVariantMap[props.variant]??props.variant??\"hDbCvcxst\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,M6makQZJz,iU68ScBCY,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"hDbCvcxst\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-145ktc9\",className,classNames),\"data-framer-name\":\"Primary\",layoutDependency:layoutDependency,layoutId:\"hDbCvcxst\",ref:refBinding,style:{...style},...addPropertyOverrides({KVvKXtHq9:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11zx5yf\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"XGsulj8pd\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-jnye1g\",\"data-styles-preset\":\"xNIXLfFSf\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255)))\"},children:\"Title\"})}),className:\"framer-1qxv4mt\",\"data-framer-name\":\"Branding\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"b2S116wtB\",style:{\"--extracted-r6o4lv\":\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\",opacity:.6},text:M6makQZJz,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1dmjd5e\",\"data-styles-preset\":\"q35quwzCc\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255)))\"},children:\"Description\"})}),className:\"framer-1q2ai5c\",\"data-framer-name\":\"We create impactful brand identities that differentiate your business and connect with your audience.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"lEPU50rVm\",style:{\"--extracted-r6o4lv\":\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},text:iU68ScBCY,verticalAlignment:\"top\",withExternalLayout:true})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-J4UNP.framer-g71a2p, .framer-J4UNP .framer-g71a2p { display: block; }\",\".framer-J4UNP.framer-145ktc9 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 180px; }\",\".framer-J4UNP .framer-11zx5yf { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-J4UNP .framer-1qxv4mt { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-J4UNP .framer-1q2ai5c { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-J4UNP.framer-v-yd3s1d.framer-145ktc9 { gap: 32px; }\",\".framer-J4UNP.framer-v-yd3s1d .framer-11zx5yf { gap: 10px; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 65.5\n * @framerIntrinsicWidth 180\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"KVvKXtHq9\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"M6makQZJz\":\"title\",\"iU68ScBCY\":\"description\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerJDguMTCRG=withCSS(Component,css,\"framer-J4UNP\");export default FramerJDguMTCRG;FramerJDguMTCRG.displayName=\"Services / Items / Description\";FramerJDguMTCRG.defaultProps={height:65.5,width:180};addPropertyControls(FramerJDguMTCRG,{variant:{options:[\"hDbCvcxst\",\"KVvKXtHq9\"],optionTitles:[\"Primary\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},M6makQZJz:{defaultValue:\"Title\",displayTextArea:false,placeholder:\"\",title:\"Title\",type:ControlType.String},iU68ScBCY:{defaultValue:\"Description\",displayTextArea:false,title:\"Description\",type:ControlType.String}});addFonts(FramerJDguMTCRG,[{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\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerJDguMTCRG\",\"slots\":[],\"annotations\":{\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KVvKXtHq9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"180\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"65.5\",\"framerColorSyntax\":\"true\",\"framerVariables\":\"{\\\"M6makQZJz\\\":\\\"title\\\",\\\"iU68ScBCY\\\":\\\"description\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./JDguMTCRG.map", "// Generated by Framer (c07a8c1)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"I5anvyWOt\",\"wNupTgeBX\",\"D_0PvXkKg\",\"sU_9MvVyf\",\"DY4InP0NL\",\"OM0T28LIR\"];const serializationHash=\"framer-2mB4q\";const variantClassNames={D_0PvXkKg:\"framer-v-pz4gxq\",DY4InP0NL:\"framer-v-1wdw0ve\",I5anvyWOt:\"framer-v-1vftdq5\",OM0T28LIR:\"framer-v-16tri3p\",sU_9MvVyf:\"framer-v-1hgpdev\",wNupTgeBX:\"framer-v-10t5t6l\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:30,y:0};const transition1={delay:0,duration:1,ease:[.22,1,.36,1],type:\"tween\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:30,y:0};const transition2={delay:0,duration:.4,ease:[.68,0,.16,.97],type:\"tween\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:20,y:0};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:20,y:0};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop active\":\"I5anvyWOt\",\"Desktop inactive\":\"wNupTgeBX\",\"Phone active\":\"DY4InP0NL\",\"Phone inactive\":\"OM0T28LIR\",\"Tablet active\":\"D_0PvXkKg\",\"Tablet inative\":\"sU_9MvVyf\"};const getProps=({height,id,mouseEnter,title,width,...props})=>{return{...props,fErYKCICq:title??props.fErYKCICq??\"Title\",KrXbsPILD:mouseEnter??props.KrXbsPILD,variant:humanReadableVariantMap[props.variant]??props.variant??\"I5anvyWOt\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,fErYKCICq,KrXbsPILD,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"I5anvyWOt\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnter10pbwk0=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});if(KrXbsPILD){const res=await KrXbsPILD(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition2,children:/*#__PURE__*/_jsx(MotionDivWithFX,{...restProps,...gestureHandlers,__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:cx(scopingClassNames,\"framer-1vftdq5\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop active\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"I5anvyWOt\",onMouseEnter:onMouseEnter10pbwk0,ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(50, 50, 50)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",...style},...addPropertyOverrides({D_0PvXkKg:{\"data-framer-name\":\"Tablet active\"},DY4InP0NL:{__framer__enter:animation2,__framer__exit:animation3,\"data-framer-name\":\"Phone active\"},OM0T28LIR:{__framer__enter:animation2,__framer__exit:animation3,\"data-framer-name\":\"Phone inactive\"},sU_9MvVyf:{\"data-framer-name\":\"Tablet inative\"},wNupTgeBX:{\"data-framer-name\":\"Desktop inactive\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1i8uvxx\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"AibRWKCID\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"102px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.07em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Title\"})}),className:\"framer-t8hhz4\",\"data-framer-name\":\"Websites\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"ElqYy4OYu\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",opacity:1},text:fErYKCICq,variants:{D_0PvXkKg:{opacity:1},DY4InP0NL:{opacity:1},OM0T28LIR:{opacity:.2},sU_9MvVyf:{opacity:.15},wNupTgeBX:{opacity:.15}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({D_0PvXkKg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"72px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.07em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Title\"})})},DY4InP0NL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.07em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Title\"})})},OM0T28LIR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.07em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Title\"})})},sU_9MvVyf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"72px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.07em\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Title\"})})}},baseVariant,gestureVariant)})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-2mB4q.framer-1g1xgga, .framer-2mB4q .framer-1g1xgga { display: block; }\",\".framer-2mB4q.framer-1vftdq5 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 26px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 10px 0px 20px 16px; position: relative; width: 725px; }\",\".framer-2mB4q .framer-1i8uvxx { 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: 100%; }\",\".framer-2mB4q .framer-t8hhz4 { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-2mB4q.framer-v-10t5t6l.framer-1vftdq5 { padding: 10px 0px 20px 0px; }\",\".framer-2mB4q.framer-v-10t5t6l .framer-1i8uvxx, .framer-2mB4q.framer-v-pz4gxq .framer-1i8uvxx { gap: 20px; }\",\".framer-2mB4q.framer-v-pz4gxq.framer-1vftdq5, .framer-2mB4q.framer-v-1hgpdev.framer-1vftdq5 { gap: 14px; padding: 12px 0px 26px 0px; }\",\".framer-2mB4q.framer-v-1hgpdev .framer-1i8uvxx { gap: 16px; }\",\".framer-2mB4q.framer-v-1wdw0ve.framer-1vftdq5 { gap: 14px; padding: 0px 0px 16px 0px; width: 320px; }\",\".framer-2mB4q.framer-v-1wdw0ve .framer-1i8uvxx, .framer-2mB4q.framer-v-16tri3p .framer-1i8uvxx { gap: 12px; }\",\".framer-2mB4q.framer-v-16tri3p.framer-1vftdq5 { gap: 10px; padding: 0px 0px 16px 0px; width: 320px; }\",'.framer-2mB4q[data-border=\"true\"]::after, .framer-2mB4q [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 142\n * @framerIntrinsicWidth 725\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"wNupTgeBX\":{\"layout\":[\"fixed\",\"auto\"]},\"D_0PvXkKg\":{\"layout\":[\"fixed\",\"auto\"]},\"sU_9MvVyf\":{\"layout\":[\"fixed\",\"auto\"]},\"DY4InP0NL\":{\"layout\":[\"fixed\",\"auto\"]},\"OM0T28LIR\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"fErYKCICq\":\"title\",\"KrXbsPILD\":\"mouseEnter\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerZkokeclFd=withCSS(Component,css,\"framer-2mB4q\");export default FramerZkokeclFd;FramerZkokeclFd.displayName=\"Services / Items / Item\";FramerZkokeclFd.defaultProps={height:142,width:725};addPropertyControls(FramerZkokeclFd,{variant:{options:[\"I5anvyWOt\",\"wNupTgeBX\",\"D_0PvXkKg\",\"sU_9MvVyf\",\"DY4InP0NL\",\"OM0T28LIR\"],optionTitles:[\"Desktop active\",\"Desktop inactive\",\"Tablet active\",\"Tablet inative\",\"Phone active\",\"Phone inactive\"],title:\"Variant\",type:ControlType.Enum},fErYKCICq:{defaultValue:\"Title\",displayTextArea:false,title:\"Title\",type:ControlType.String},KrXbsPILD:{title:\"Mouse Enter\",type:ControlType.EventHandler}});addFonts(FramerZkokeclFd,[{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZkokeclFd\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wNupTgeBX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"D_0PvXkKg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"sU_9MvVyf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"DY4InP0NL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"OM0T28LIR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"142\",\"framerColorSyntax\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"725\",\"framerVariables\":\"{\\\"fErYKCICq\\\":\\\"title\\\",\\\"KrXbsPILD\\\":\\\"mouseEnter\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ZkokeclFd.map", "// Generated by Framer (c07a8c1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import ServicesItemsDescription from\"https://framerusercontent.com/modules/nebkh16FHpj1VnDkHlaL/cRGoufTW08WyCllSX2Aj/JDguMTCRG.js\";import ServicesItemsItem from\"https://framerusercontent.com/modules/zlysxE7z4SNjBXgpT1no/OKQXHLX1TmosubnokI6r/ZkokeclFd.js\";const ServicesItemsDescriptionFonts=getFonts(ServicesItemsDescription);const MotionDivWithFX=withFX(motion.div);const ServicesItemsItemFonts=getFonts(ServicesItemsItem);const cycleOrder=[\"vl7fPkW6x\",\"xrEj7YEsU\",\"CDtoZNgtA\",\"jupkLvHBO\",\"cHwDp_s5i\",\"fci5zB1JM\",\"TLxLam4YZ\",\"YEnTeNdRP\",\"fNHB6YKk0\",\"ueg3wT1lw\",\"UiRdOhXvT\",\"FPEMd0pOj\",\"y1cmM3CL5\",\"VE5xIiPuL\",\"VGwYuVR2s\",\"FxHnXRW2z\",\"CYu4a7neK\",\"hpOMYgQXf\"];const serializationHash=\"framer-hhM0P\";const variantClassNames={CDtoZNgtA:\"framer-v-1ur73tn\",cHwDp_s5i:\"framer-v-ganesh\",CYu4a7neK:\"framer-v-mkl476\",fci5zB1JM:\"framer-v-11qo17c\",fNHB6YKk0:\"framer-v-1lhle6x\",FPEMd0pOj:\"framer-v-oq2w7w\",FxHnXRW2z:\"framer-v-lofp2d\",hpOMYgQXf:\"framer-v-dtfqpu\",jupkLvHBO:\"framer-v-x4igo9\",TLxLam4YZ:\"framer-v-1t7ta8b\",ueg3wT1lw:\"framer-v-c7xmxb\",UiRdOhXvT:\"framer-v-hhhalw\",VE5xIiPuL:\"framer-v-mqhzof\",VGwYuVR2s:\"framer-v-pdjrec\",vl7fPkW6x:\"framer-v-dif0uf\",xrEj7YEsU:\"framer-v-1635f9f\",y1cmM3CL5:\"framer-v-aie38q\",YEnTeNdRP:\"framer-v-o3l3yy\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.4,ease:[.68,0,.16,.97],type:\"tween\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition2={bounce:.1,delay:0,duration:1.2,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop 2\":\"xrEj7YEsU\",\"Desktop 3\":\"CDtoZNgtA\",\"Desktop 4\":\"jupkLvHBO\",\"Desktop 5\":\"cHwDp_s5i\",\"Desktop 6\":\"fci5zB1JM\",\"Desktop main\":\"vl7fPkW6x\",\"Phone 2\":\"VE5xIiPuL\",\"Phone 3\":\"VGwYuVR2s\",\"Phone 4\":\"FxHnXRW2z\",\"Phone 5\":\"CYu4a7neK\",\"Phone 6\":\"hpOMYgQXf\",\"Phone main\":\"y1cmM3CL5\",\"Tablet 2\":\"YEnTeNdRP\",\"Tablet 3\":\"fNHB6YKk0\",\"Tablet 4\":\"ueg3wT1lw\",\"Tablet 5\":\"UiRdOhXvT\",\"Tablet 6\":\"FPEMd0pOj\",\"Tablet main\":\"TLxLam4YZ\"};const getProps=({_01Description,_01Image,_01Title,_02Description,_02Image,_02Title,_03Description,_03Image,_03Title,_04Description,_04Image,_04Title,_05Description,_05Image,_05Title,_06Description,_06Image,_06Title,height,id,width,...props})=>{return{...props,AChBv6mnx:_02Title??props.AChBv6mnx??\"02 Title\",AtsGqKbqe:_03Image??props.AtsGqKbqe,DP3k2sIwB:_05Description??props.DP3k2sIwB??\"05 Description\",DvMnYDgLq:_05Title??props.DvMnYDgLq??\"05 Title\",dym8aGlmH:_02Description??props.dym8aGlmH??\"02 Description\",dYspAHvCn:_06Title??props.dYspAHvCn??\"06 Title\",FhHZF40Gc:_05Image??props.FhHZF40Gc,gRgZAVMwJ:_04Image??props.gRgZAVMwJ,is0Kmy_LC:_06Image??props.is0Kmy_LC,kGMjQGWFg:_02Image??props.kGMjQGWFg,L5bVOjC54:_01Image??props.L5bVOjC54,nfr3_vd4_:_01Description??props.nfr3_vd4_??\"01 Description\",rd_VK8DcK:_04Title??props.rd_VK8DcK??\"04 Title\",T3Zvj4lLt:_04Description??props.T3Zvj4lLt??\"04 Description\",u2WQNcukZ:_03Description??props.u2WQNcukZ??\"03 Description\",variant:humanReadableVariantMap[props.variant]??props.variant??\"vl7fPkW6x\",Xgqdpwxoc:_01Title??props.Xgqdpwxoc??\"01 Title\",Y7m9L8sgJ:_03Title??props.Y7m9L8sgJ??\"03 Title\",yIZLGI3IM:_06Description??props.yIZLGI3IM??\"06 Description\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,L5bVOjC54,Xgqdpwxoc,nfr3_vd4_,kGMjQGWFg,AChBv6mnx,dym8aGlmH,AtsGqKbqe,Y7m9L8sgJ,u2WQNcukZ,gRgZAVMwJ,rd_VK8DcK,T3Zvj4lLt,FhHZF40Gc,DvMnYDgLq,DP3k2sIwB,is0Kmy_LC,dYspAHvCn,yIZLGI3IM,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"vl7fPkW6x\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const KrXbsPILD1xtnafx=activeVariantCallback(async(...args)=>{setVariant(\"vl7fPkW6x\");});const KrXbsPILD1ov8v4r=activeVariantCallback(async(...args)=>{setVariant(\"TLxLam4YZ\");});const KrXbsPILDgko28l=activeVariantCallback(async(...args)=>{setVariant(\"y1cmM3CL5\");});const KrXbsPILDjnvuu0=activeVariantCallback(async(...args)=>{setVariant(\"xrEj7YEsU\");});const KrXbsPILDkhapmg=activeVariantCallback(async(...args)=>{setVariant(\"YEnTeNdRP\");});const KrXbsPILDbr4mb1=activeVariantCallback(async(...args)=>{setVariant(\"VE5xIiPuL\");});const KrXbsPILD11xbel4=activeVariantCallback(async(...args)=>{setVariant(\"CDtoZNgtA\");});const KrXbsPILD8caf5w=activeVariantCallback(async(...args)=>{setVariant(\"fNHB6YKk0\");});const KrXbsPILD1i08jbh=activeVariantCallback(async(...args)=>{setVariant(\"VGwYuVR2s\");});const KrXbsPILD1mf45pp=activeVariantCallback(async(...args)=>{setVariant(\"jupkLvHBO\");});const KrXbsPILD1undss3=activeVariantCallback(async(...args)=>{setVariant(\"ueg3wT1lw\");});const KrXbsPILDyokc1j=activeVariantCallback(async(...args)=>{setVariant(\"FxHnXRW2z\");});const KrXbsPILD1uxowba=activeVariantCallback(async(...args)=>{setVariant(\"cHwDp_s5i\");});const KrXbsPILDnbjzmd=activeVariantCallback(async(...args)=>{setVariant(\"UiRdOhXvT\");});const KrXbsPILDvu4x=activeVariantCallback(async(...args)=>{setVariant(\"CYu4a7neK\");});const KrXbsPILD1ext7ag=activeVariantCallback(async(...args)=>{setVariant(\"fci5zB1JM\");});const KrXbsPILDq1ltx0=activeVariantCallback(async(...args)=>{setVariant(\"FPEMd0pOj\");});const KrXbsPILD46k9fx=activeVariantCallback(async(...args)=>{setVariant(\"hpOMYgQXf\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const visible=isSet(AChBv6mnx);const visible1=isSet(Y7m9L8sgJ);const visible2=isSet(rd_VK8DcK);const visible3=isSet(DvMnYDgLq);const visible4=isSet(dYspAHvCn);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-dif0uf\",className,classNames),\"data-framer-name\":\"Desktop main\",layoutDependency:layoutDependency,layoutId:\"vl7fPkW6x\",ref:refBinding,style:{...style},...addPropertyOverrides({CDtoZNgtA:{\"data-framer-name\":\"Desktop 3\"},cHwDp_s5i:{\"data-framer-name\":\"Desktop 5\"},CYu4a7neK:{\"data-framer-name\":\"Phone 5\"},fci5zB1JM:{\"data-framer-name\":\"Desktop 6\"},fNHB6YKk0:{\"data-framer-name\":\"Tablet 3\"},FPEMd0pOj:{\"data-framer-name\":\"Tablet 6\"},FxHnXRW2z:{\"data-framer-name\":\"Phone 4\"},hpOMYgQXf:{\"data-framer-name\":\"Phone 6\"},jupkLvHBO:{\"data-framer-name\":\"Desktop 4\"},TLxLam4YZ:{\"data-framer-name\":\"Tablet main\"},ueg3wT1lw:{\"data-framer-name\":\"Tablet 4\"},UiRdOhXvT:{\"data-framer-name\":\"Tablet 5\"},VE5xIiPuL:{\"data-framer-name\":\"Phone 2\"},VGwYuVR2s:{\"data-framer-name\":\"Phone 3\"},xrEj7YEsU:{\"data-framer-name\":\"Desktop 2\"},y1cmM3CL5:{\"data-framer-name\":\"Phone main\"},YEnTeNdRP:{\"data-framer-name\":\"Tablet 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(MotionDivWithFX,{className:\"framer-vqugsr\",\"data-framer-name\":\"Description\",layoutDependency:layoutDependency,layoutId:\"dnnR9KUUK\",...addPropertyOverrides({y1cmM3CL5:{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:245,width:`calc(max((${componentViewport?.width||\"100vw\"} - 20px) / 3, 1px) / 2)`,y:(componentViewport?.y||0)+0+0,...addPropertyOverrides({CDtoZNgtA:{y:(componentViewport?.y||0)+0+100},cHwDp_s5i:{y:(componentViewport?.y||0)+0+200},CYu4a7neK:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+942+0},fci5zB1JM:{y:(componentViewport?.y||0)+0+250},fNHB6YKk0:{width:`calc(max((${componentViewport?.width||\"100vw\"} - 20px) / 4, 1px) * 0.8)`},FPEMd0pOj:{width:`calc(max((${componentViewport?.width||\"100vw\"} - 20px) / 4, 1px) * 0.8)`},FxHnXRW2z:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+942+0},hpOMYgQXf:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+942+0},jupkLvHBO:{y:(componentViewport?.y||0)+0+150},TLxLam4YZ:{width:`calc(max((${componentViewport?.width||\"100vw\"} - 20px) / 4, 1px) * 0.8)`},ueg3wT1lw:{width:`calc(max((${componentViewport?.width||\"100vw\"} - 20px) / 4, 1px) * 0.8)`},UiRdOhXvT:{width:`calc(max((${componentViewport?.width||\"100vw\"} - 20px) / 4, 1px) * 0.8)`},VE5xIiPuL:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+942+0},VGwYuVR2s:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+942+0},xrEj7YEsU:{y:(componentViewport?.y||0)+0+50},y1cmM3CL5:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+942+0},YEnTeNdRP:{width:`calc(max((${componentViewport?.width||\"100vw\"} - 20px) / 4, 1px) * 0.8)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-t6msbh-container\",layoutDependency:layoutDependency,layoutId:\"AxX6jMRFd-container\",nodeId:\"AxX6jMRFd\",rendersWithMotion:true,scopeId:\"eSOfEPmfr\",children:/*#__PURE__*/_jsx(ServicesItemsDescription,{height:\"100%\",id:\"AxX6jMRFd\",iU68ScBCY:nfr3_vd4_,layoutId:\"AxX6jMRFd\",M6makQZJz:Xgqdpwxoc,OtapoObdF:toResponsiveImage(L5bVOjC54),style:{width:\"100%\"},variant:\"hDbCvcxst\",width:\"100%\",...addPropertyOverrides({CDtoZNgtA:{iU68ScBCY:u2WQNcukZ,M6makQZJz:Y7m9L8sgJ,OtapoObdF:toResponsiveImage(AtsGqKbqe)},cHwDp_s5i:{iU68ScBCY:DP3k2sIwB,M6makQZJz:DvMnYDgLq,OtapoObdF:toResponsiveImage(FhHZF40Gc)},CYu4a7neK:{iU68ScBCY:DP3k2sIwB,M6makQZJz:DvMnYDgLq,OtapoObdF:toResponsiveImage(FhHZF40Gc),variant:\"KVvKXtHq9\"},fci5zB1JM:{iU68ScBCY:yIZLGI3IM,M6makQZJz:dYspAHvCn,OtapoObdF:toResponsiveImage(is0Kmy_LC)},fNHB6YKk0:{iU68ScBCY:u2WQNcukZ,M6makQZJz:Y7m9L8sgJ,OtapoObdF:toResponsiveImage(AtsGqKbqe)},FPEMd0pOj:{iU68ScBCY:yIZLGI3IM,M6makQZJz:dYspAHvCn,OtapoObdF:toResponsiveImage(is0Kmy_LC)},FxHnXRW2z:{iU68ScBCY:T3Zvj4lLt,M6makQZJz:rd_VK8DcK,OtapoObdF:toResponsiveImage(gRgZAVMwJ),variant:\"KVvKXtHq9\"},hpOMYgQXf:{iU68ScBCY:yIZLGI3IM,M6makQZJz:dYspAHvCn,OtapoObdF:toResponsiveImage(is0Kmy_LC),variant:\"KVvKXtHq9\"},jupkLvHBO:{iU68ScBCY:T3Zvj4lLt,M6makQZJz:rd_VK8DcK,OtapoObdF:toResponsiveImage(gRgZAVMwJ)},ueg3wT1lw:{iU68ScBCY:T3Zvj4lLt,M6makQZJz:rd_VK8DcK,OtapoObdF:toResponsiveImage(gRgZAVMwJ)},UiRdOhXvT:{iU68ScBCY:DP3k2sIwB,M6makQZJz:DvMnYDgLq,OtapoObdF:toResponsiveImage(FhHZF40Gc)},VE5xIiPuL:{iU68ScBCY:dym8aGlmH,M6makQZJz:AChBv6mnx,OtapoObdF:toResponsiveImage(kGMjQGWFg),variant:\"KVvKXtHq9\"},VGwYuVR2s:{iU68ScBCY:u2WQNcukZ,M6makQZJz:Y7m9L8sgJ,OtapoObdF:toResponsiveImage(AtsGqKbqe),variant:\"KVvKXtHq9\"},xrEj7YEsU:{iU68ScBCY:dym8aGlmH,M6makQZJz:AChBv6mnx,OtapoObdF:toResponsiveImage(kGMjQGWFg)},y1cmM3CL5:{variant:\"KVvKXtHq9\"},YEnTeNdRP:{iU68ScBCY:dym8aGlmH,M6makQZJz:AChBv6mnx,OtapoObdF:toResponsiveImage(kGMjQGWFg)}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-phl2vz\",\"data-framer-name\":\"Items\",layoutDependency:layoutDependency,layoutId:\"oeh8xrVP_\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:142,width:`max((${componentViewport?.width||\"100vw\"} - 20px) / 1.5, 1px)`,y:(componentViewport?.y||0)+0+0+0,...addPropertyOverrides({CYu4a7neK:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+0},fNHB6YKk0:{width:`max((${componentViewport?.width||\"100vw\"} - 20px) * 0.75, 1px)`},FPEMd0pOj:{width:`max((${componentViewport?.width||\"100vw\"} - 20px) * 0.75, 1px)`},FxHnXRW2z:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+0},hpOMYgQXf:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+0},TLxLam4YZ:{width:`max((${componentViewport?.width||\"100vw\"} - 20px) * 0.75, 1px)`},ueg3wT1lw:{width:`max((${componentViewport?.width||\"100vw\"} - 20px) * 0.75, 1px)`},UiRdOhXvT:{width:`max((${componentViewport?.width||\"100vw\"} - 20px) * 0.75, 1px)`},VE5xIiPuL:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+0},VGwYuVR2s:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+0},y1cmM3CL5:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+0},YEnTeNdRP:{width:`max((${componentViewport?.width||\"100vw\"} - 20px) * 0.75, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-nd4r9v-container\",layoutDependency:layoutDependency,layoutId:\"xX3J7kRZq-container\",nodeId:\"xX3J7kRZq\",rendersWithMotion:true,scopeId:\"eSOfEPmfr\",children:/*#__PURE__*/_jsx(ServicesItemsItem,{fErYKCICq:Xgqdpwxoc,height:\"100%\",id:\"xX3J7kRZq\",KrXbsPILD:KrXbsPILD1xtnafx,layoutId:\"xX3J7kRZq\",style:{width:\"100%\"},variant:\"I5anvyWOt\",width:\"100%\",...addPropertyOverrides({CDtoZNgtA:{variant:\"wNupTgeBX\"},cHwDp_s5i:{variant:\"wNupTgeBX\"},CYu4a7neK:{KrXbsPILD:KrXbsPILDgko28l,variant:\"OM0T28LIR\"},fci5zB1JM:{variant:\"wNupTgeBX\"},fNHB6YKk0:{KrXbsPILD:KrXbsPILD1ov8v4r,variant:\"sU_9MvVyf\"},FPEMd0pOj:{KrXbsPILD:KrXbsPILD1ov8v4r,variant:\"sU_9MvVyf\"},FxHnXRW2z:{KrXbsPILD:KrXbsPILDgko28l,variant:\"OM0T28LIR\"},hpOMYgQXf:{KrXbsPILD:KrXbsPILDgko28l,variant:\"OM0T28LIR\"},jupkLvHBO:{variant:\"wNupTgeBX\"},TLxLam4YZ:{KrXbsPILD:KrXbsPILD1ov8v4r,variant:\"D_0PvXkKg\"},ueg3wT1lw:{KrXbsPILD:KrXbsPILD1ov8v4r,variant:\"sU_9MvVyf\"},UiRdOhXvT:{KrXbsPILD:KrXbsPILD1ov8v4r,variant:\"sU_9MvVyf\"},VE5xIiPuL:{KrXbsPILD:KrXbsPILDgko28l,variant:\"OM0T28LIR\"},VGwYuVR2s:{KrXbsPILD:KrXbsPILDgko28l,variant:\"OM0T28LIR\"},xrEj7YEsU:{variant:\"wNupTgeBX\"},y1cmM3CL5:{KrXbsPILD:KrXbsPILDgko28l,variant:\"DY4InP0NL\"},YEnTeNdRP:{KrXbsPILD:KrXbsPILD1ov8v4r,variant:\"sU_9MvVyf\"}},baseVariant,gestureVariant)})})}),visible&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:142,width:`max((${componentViewport?.width||\"100vw\"} - 20px) / 1.5, 1px)`,y:(componentViewport?.y||0)+0+0+152,...addPropertyOverrides({CYu4a7neK:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+152},fNHB6YKk0:{width:`max((${componentViewport?.width||\"100vw\"} - 20px) * 0.75, 1px)`},FPEMd0pOj:{width:`max((${componentViewport?.width||\"100vw\"} - 20px) * 0.75, 1px)`},FxHnXRW2z:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+152},hpOMYgQXf:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+152},TLxLam4YZ:{width:`max((${componentViewport?.width||\"100vw\"} - 20px) * 0.75, 1px)`},ueg3wT1lw:{width:`max((${componentViewport?.width||\"100vw\"} - 20px) * 0.75, 1px)`},UiRdOhXvT:{width:`max((${componentViewport?.width||\"100vw\"} - 20px) * 0.75, 1px)`},VE5xIiPuL:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+152},VGwYuVR2s:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+152},y1cmM3CL5:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+152},YEnTeNdRP:{width:`max((${componentViewport?.width||\"100vw\"} - 20px) * 0.75, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1blppte-container\",layoutDependency:layoutDependency,layoutId:\"iowul08mJ-container\",nodeId:\"iowul08mJ\",rendersWithMotion:true,scopeId:\"eSOfEPmfr\",children:/*#__PURE__*/_jsx(ServicesItemsItem,{fErYKCICq:AChBv6mnx,height:\"100%\",id:\"iowul08mJ\",KrXbsPILD:KrXbsPILDjnvuu0,layoutId:\"iowul08mJ\",style:{width:\"100%\"},variant:\"wNupTgeBX\",width:\"100%\",...addPropertyOverrides({CYu4a7neK:{KrXbsPILD:KrXbsPILDbr4mb1,variant:\"OM0T28LIR\"},fNHB6YKk0:{KrXbsPILD:KrXbsPILDkhapmg,variant:\"sU_9MvVyf\"},FPEMd0pOj:{KrXbsPILD:KrXbsPILDkhapmg,variant:\"sU_9MvVyf\"},FxHnXRW2z:{KrXbsPILD:KrXbsPILDbr4mb1,variant:\"OM0T28LIR\"},hpOMYgQXf:{KrXbsPILD:KrXbsPILDbr4mb1,variant:\"OM0T28LIR\"},TLxLam4YZ:{KrXbsPILD:KrXbsPILDkhapmg,variant:\"sU_9MvVyf\"},ueg3wT1lw:{KrXbsPILD:KrXbsPILDkhapmg,variant:\"sU_9MvVyf\"},UiRdOhXvT:{KrXbsPILD:KrXbsPILDkhapmg,variant:\"sU_9MvVyf\"},VE5xIiPuL:{KrXbsPILD:KrXbsPILDbr4mb1,variant:\"DY4InP0NL\"},VGwYuVR2s:{KrXbsPILD:KrXbsPILDbr4mb1,variant:\"OM0T28LIR\"},xrEj7YEsU:{variant:\"I5anvyWOt\"},y1cmM3CL5:{KrXbsPILD:KrXbsPILDbr4mb1,variant:\"OM0T28LIR\"},YEnTeNdRP:{KrXbsPILD:KrXbsPILDkhapmg,variant:\"D_0PvXkKg\"}},baseVariant,gestureVariant)})})}),visible1&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:142,width:`max((${componentViewport?.width||\"100vw\"} - 20px) / 1.5, 1px)`,y:(componentViewport?.y||0)+0+0+304,...addPropertyOverrides({CYu4a7neK:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+304},fNHB6YKk0:{width:`max((${componentViewport?.width||\"100vw\"} - 20px) * 0.75, 1px)`},FPEMd0pOj:{width:`max((${componentViewport?.width||\"100vw\"} - 20px) * 0.75, 1px)`},FxHnXRW2z:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+304},hpOMYgQXf:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+304},TLxLam4YZ:{width:`max((${componentViewport?.width||\"100vw\"} - 20px) * 0.75, 1px)`},ueg3wT1lw:{width:`max((${componentViewport?.width||\"100vw\"} - 20px) * 0.75, 1px)`},UiRdOhXvT:{width:`max((${componentViewport?.width||\"100vw\"} - 20px) * 0.75, 1px)`},VE5xIiPuL:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+304},VGwYuVR2s:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+304},y1cmM3CL5:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+304},YEnTeNdRP:{width:`max((${componentViewport?.width||\"100vw\"} - 20px) * 0.75, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1d1lq8o-container\",layoutDependency:layoutDependency,layoutId:\"I6fdJ7qzg-container\",nodeId:\"I6fdJ7qzg\",rendersWithMotion:true,scopeId:\"eSOfEPmfr\",children:/*#__PURE__*/_jsx(ServicesItemsItem,{fErYKCICq:Y7m9L8sgJ,height:\"100%\",id:\"I6fdJ7qzg\",KrXbsPILD:KrXbsPILD11xbel4,layoutId:\"I6fdJ7qzg\",style:{width:\"100%\"},variant:\"wNupTgeBX\",width:\"100%\",...addPropertyOverrides({CDtoZNgtA:{variant:\"I5anvyWOt\"},CYu4a7neK:{KrXbsPILD:KrXbsPILD1i08jbh,variant:\"OM0T28LIR\"},fNHB6YKk0:{KrXbsPILD:KrXbsPILD8caf5w,variant:\"D_0PvXkKg\"},FPEMd0pOj:{KrXbsPILD:KrXbsPILD8caf5w,variant:\"sU_9MvVyf\"},FxHnXRW2z:{KrXbsPILD:KrXbsPILD1i08jbh,variant:\"OM0T28LIR\"},hpOMYgQXf:{KrXbsPILD:KrXbsPILD1i08jbh,variant:\"OM0T28LIR\"},TLxLam4YZ:{KrXbsPILD:KrXbsPILD8caf5w,variant:\"sU_9MvVyf\"},ueg3wT1lw:{KrXbsPILD:KrXbsPILD8caf5w,variant:\"sU_9MvVyf\"},UiRdOhXvT:{KrXbsPILD:KrXbsPILD8caf5w,variant:\"sU_9MvVyf\"},VE5xIiPuL:{KrXbsPILD:KrXbsPILD1i08jbh,variant:\"OM0T28LIR\"},VGwYuVR2s:{KrXbsPILD:KrXbsPILD1i08jbh,variant:\"DY4InP0NL\"},y1cmM3CL5:{KrXbsPILD:KrXbsPILD1i08jbh,variant:\"OM0T28LIR\"},YEnTeNdRP:{KrXbsPILD:KrXbsPILD8caf5w,variant:\"sU_9MvVyf\"}},baseVariant,gestureVariant)})})}),visible2&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:142,width:`max((${componentViewport?.width||\"100vw\"} - 20px) / 1.5, 1px)`,y:(componentViewport?.y||0)+0+0+456,...addPropertyOverrides({CYu4a7neK:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+456},fNHB6YKk0:{width:`max((${componentViewport?.width||\"100vw\"} - 20px) * 0.75, 1px)`},FPEMd0pOj:{width:`max((${componentViewport?.width||\"100vw\"} - 20px) * 0.75, 1px)`},FxHnXRW2z:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+456},hpOMYgQXf:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+456},TLxLam4YZ:{width:`max((${componentViewport?.width||\"100vw\"} - 20px) * 0.75, 1px)`},ueg3wT1lw:{width:`max((${componentViewport?.width||\"100vw\"} - 20px) * 0.75, 1px)`},UiRdOhXvT:{width:`max((${componentViewport?.width||\"100vw\"} - 20px) * 0.75, 1px)`},VE5xIiPuL:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+456},VGwYuVR2s:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+456},y1cmM3CL5:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+456},YEnTeNdRP:{width:`max((${componentViewport?.width||\"100vw\"} - 20px) * 0.75, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-bpv6go-container\",layoutDependency:layoutDependency,layoutId:\"HLaVc2GJP-container\",nodeId:\"HLaVc2GJP\",rendersWithMotion:true,scopeId:\"eSOfEPmfr\",children:/*#__PURE__*/_jsx(ServicesItemsItem,{fErYKCICq:rd_VK8DcK,height:\"100%\",id:\"HLaVc2GJP\",KrXbsPILD:KrXbsPILD1mf45pp,layoutId:\"HLaVc2GJP\",style:{width:\"100%\"},variant:\"wNupTgeBX\",width:\"100%\",...addPropertyOverrides({CYu4a7neK:{KrXbsPILD:KrXbsPILDyokc1j,variant:\"OM0T28LIR\"},fNHB6YKk0:{KrXbsPILD:KrXbsPILD1undss3,variant:\"sU_9MvVyf\"},FPEMd0pOj:{KrXbsPILD:KrXbsPILD1undss3,variant:\"sU_9MvVyf\"},FxHnXRW2z:{KrXbsPILD:KrXbsPILDyokc1j,variant:\"DY4InP0NL\"},hpOMYgQXf:{KrXbsPILD:KrXbsPILDyokc1j,variant:\"OM0T28LIR\"},jupkLvHBO:{variant:\"I5anvyWOt\"},TLxLam4YZ:{KrXbsPILD:KrXbsPILD1undss3,variant:\"sU_9MvVyf\"},ueg3wT1lw:{KrXbsPILD:KrXbsPILD1undss3,variant:\"D_0PvXkKg\"},UiRdOhXvT:{KrXbsPILD:KrXbsPILD1undss3,variant:\"sU_9MvVyf\"},VE5xIiPuL:{KrXbsPILD:KrXbsPILDyokc1j,variant:\"OM0T28LIR\"},VGwYuVR2s:{KrXbsPILD:KrXbsPILDyokc1j,variant:\"OM0T28LIR\"},y1cmM3CL5:{KrXbsPILD:KrXbsPILDyokc1j,variant:\"OM0T28LIR\"},YEnTeNdRP:{KrXbsPILD:KrXbsPILD1undss3,variant:\"sU_9MvVyf\"}},baseVariant,gestureVariant)})})}),visible3&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:142,width:`max((${componentViewport?.width||\"100vw\"} - 20px) / 1.5, 1px)`,y:(componentViewport?.y||0)+0+0+608,...addPropertyOverrides({CYu4a7neK:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+608},fNHB6YKk0:{width:`max((${componentViewport?.width||\"100vw\"} - 20px) * 0.75, 1px)`},FPEMd0pOj:{width:`max((${componentViewport?.width||\"100vw\"} - 20px) * 0.75, 1px)`},FxHnXRW2z:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+608},hpOMYgQXf:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+608},TLxLam4YZ:{width:`max((${componentViewport?.width||\"100vw\"} - 20px) * 0.75, 1px)`},ueg3wT1lw:{width:`max((${componentViewport?.width||\"100vw\"} - 20px) * 0.75, 1px)`},UiRdOhXvT:{width:`max((${componentViewport?.width||\"100vw\"} - 20px) * 0.75, 1px)`},VE5xIiPuL:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+608},VGwYuVR2s:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+608},y1cmM3CL5:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+608},YEnTeNdRP:{width:`max((${componentViewport?.width||\"100vw\"} - 20px) * 0.75, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-sb2gc-container\",layoutDependency:layoutDependency,layoutId:\"lSm5egHE_-container\",nodeId:\"lSm5egHE_\",rendersWithMotion:true,scopeId:\"eSOfEPmfr\",children:/*#__PURE__*/_jsx(ServicesItemsItem,{fErYKCICq:DvMnYDgLq,height:\"100%\",id:\"lSm5egHE_\",KrXbsPILD:KrXbsPILD1uxowba,layoutId:\"lSm5egHE_\",style:{width:\"100%\"},variant:\"wNupTgeBX\",width:\"100%\",...addPropertyOverrides({cHwDp_s5i:{variant:\"I5anvyWOt\"},CYu4a7neK:{KrXbsPILD:KrXbsPILDvu4x,variant:\"DY4InP0NL\"},fNHB6YKk0:{KrXbsPILD:KrXbsPILDnbjzmd,variant:\"sU_9MvVyf\"},FPEMd0pOj:{KrXbsPILD:KrXbsPILDnbjzmd,variant:\"sU_9MvVyf\"},FxHnXRW2z:{KrXbsPILD:KrXbsPILDvu4x,variant:\"OM0T28LIR\"},hpOMYgQXf:{KrXbsPILD:KrXbsPILDvu4x,variant:\"OM0T28LIR\"},TLxLam4YZ:{KrXbsPILD:KrXbsPILDnbjzmd,variant:\"sU_9MvVyf\"},ueg3wT1lw:{KrXbsPILD:KrXbsPILDnbjzmd,variant:\"sU_9MvVyf\"},UiRdOhXvT:{KrXbsPILD:KrXbsPILDnbjzmd,variant:\"D_0PvXkKg\"},VE5xIiPuL:{KrXbsPILD:KrXbsPILDvu4x,variant:\"OM0T28LIR\"},VGwYuVR2s:{KrXbsPILD:KrXbsPILDvu4x,variant:\"OM0T28LIR\"},y1cmM3CL5:{KrXbsPILD:KrXbsPILDvu4x,variant:\"OM0T28LIR\"},YEnTeNdRP:{KrXbsPILD:KrXbsPILDnbjzmd,variant:\"sU_9MvVyf\"}},baseVariant,gestureVariant)})})}),visible4&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:142,width:`max((${componentViewport?.width||\"100vw\"} - 20px) / 1.5, 1px)`,y:(componentViewport?.y||0)+0+0+760,...addPropertyOverrides({CYu4a7neK:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+760},fNHB6YKk0:{width:`max((${componentViewport?.width||\"100vw\"} - 20px) * 0.75, 1px)`},FPEMd0pOj:{width:`max((${componentViewport?.width||\"100vw\"} - 20px) * 0.75, 1px)`},FxHnXRW2z:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+760},hpOMYgQXf:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+760},TLxLam4YZ:{width:`max((${componentViewport?.width||\"100vw\"} - 20px) * 0.75, 1px)`},ueg3wT1lw:{width:`max((${componentViewport?.width||\"100vw\"} - 20px) * 0.75, 1px)`},UiRdOhXvT:{width:`max((${componentViewport?.width||\"100vw\"} - 20px) * 0.75, 1px)`},VE5xIiPuL:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+760},VGwYuVR2s:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+760},y1cmM3CL5:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+760},YEnTeNdRP:{width:`max((${componentViewport?.width||\"100vw\"} - 20px) * 0.75, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-cteh2s-container\",layoutDependency:layoutDependency,layoutId:\"MnFwFVMnY-container\",nodeId:\"MnFwFVMnY\",rendersWithMotion:true,scopeId:\"eSOfEPmfr\",children:/*#__PURE__*/_jsx(ServicesItemsItem,{fErYKCICq:dYspAHvCn,height:\"100%\",id:\"MnFwFVMnY\",KrXbsPILD:KrXbsPILD1ext7ag,layoutId:\"MnFwFVMnY\",style:{width:\"100%\"},variant:\"wNupTgeBX\",width:\"100%\",...addPropertyOverrides({CYu4a7neK:{KrXbsPILD:KrXbsPILD46k9fx,variant:\"OM0T28LIR\"},fci5zB1JM:{variant:\"I5anvyWOt\"},fNHB6YKk0:{KrXbsPILD:KrXbsPILDq1ltx0,variant:\"sU_9MvVyf\"},FPEMd0pOj:{KrXbsPILD:KrXbsPILDq1ltx0,variant:\"D_0PvXkKg\"},FxHnXRW2z:{KrXbsPILD:KrXbsPILD46k9fx,variant:\"OM0T28LIR\"},hpOMYgQXf:{KrXbsPILD:KrXbsPILD46k9fx,variant:\"DY4InP0NL\"},TLxLam4YZ:{KrXbsPILD:KrXbsPILDq1ltx0,variant:\"sU_9MvVyf\"},ueg3wT1lw:{KrXbsPILD:KrXbsPILDq1ltx0,variant:\"sU_9MvVyf\"},UiRdOhXvT:{KrXbsPILD:KrXbsPILDq1ltx0,variant:\"sU_9MvVyf\"},VE5xIiPuL:{KrXbsPILD:KrXbsPILD46k9fx,variant:\"OM0T28LIR\"},VGwYuVR2s:{KrXbsPILD:KrXbsPILD46k9fx,variant:\"OM0T28LIR\"},y1cmM3CL5:{KrXbsPILD:KrXbsPILD46k9fx,variant:\"OM0T28LIR\"},YEnTeNdRP:{KrXbsPILD:KrXbsPILDq1ltx0,variant:\"sU_9MvVyf\"}},baseVariant,gestureVariant)})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-hhM0P.framer-t4nuy2, .framer-hhM0P .framer-t4nuy2 { display: block; }\",\".framer-hhM0P.framer-dif0uf { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1128px; }\",\".framer-hhM0P .framer-vqugsr { align-content: flex-start; align-items: flex-start; display: flex; flex: 4 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-hhM0P .framer-t6msbh-container { flex: none; height: auto; position: relative; width: 50%; }\",\".framer-hhM0P .framer-phl2vz { align-content: flex-start; align-items: flex-start; display: flex; flex: 8 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-hhM0P .framer-nd4r9v-container, .framer-hhM0P .framer-1blppte-container, .framer-hhM0P .framer-1d1lq8o-container, .framer-hhM0P .framer-bpv6go-container, .framer-hhM0P .framer-sb2gc-container, .framer-hhM0P .framer-cteh2s-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-hhM0P.framer-v-1635f9f .framer-vqugsr { padding: 50px 0px 0px 0px; }\",\".framer-hhM0P.framer-v-1ur73tn .framer-vqugsr { padding: 100px 0px 0px 0px; }\",\".framer-hhM0P.framer-v-x4igo9 .framer-vqugsr { padding: 150px 0px 0px 0px; }\",\".framer-hhM0P.framer-v-ganesh .framer-vqugsr { padding: 200px 0px 0px 0px; }\",\".framer-hhM0P.framer-v-11qo17c .framer-vqugsr { padding: 250px 0px 0px 0px; }\",\".framer-hhM0P.framer-v-1t7ta8b .framer-vqugsr, .framer-hhM0P.framer-v-o3l3yy .framer-vqugsr, .framer-hhM0P.framer-v-1lhle6x .framer-vqugsr, .framer-hhM0P.framer-v-c7xmxb .framer-vqugsr, .framer-hhM0P.framer-v-hhhalw .framer-vqugsr, .framer-hhM0P.framer-v-oq2w7w .framer-vqugsr { flex: 3 0 0px; }\",\".framer-hhM0P.framer-v-1t7ta8b .framer-t6msbh-container, .framer-hhM0P.framer-v-o3l3yy .framer-t6msbh-container, .framer-hhM0P.framer-v-1lhle6x .framer-t6msbh-container, .framer-hhM0P.framer-v-c7xmxb .framer-t6msbh-container, .framer-hhM0P.framer-v-hhhalw .framer-t6msbh-container, .framer-hhM0P.framer-v-oq2w7w .framer-t6msbh-container { width: 80%; }\",\".framer-hhM0P.framer-v-1t7ta8b .framer-phl2vz, .framer-hhM0P.framer-v-o3l3yy .framer-phl2vz, .framer-hhM0P.framer-v-1lhle6x .framer-phl2vz, .framer-hhM0P.framer-v-c7xmxb .framer-phl2vz, .framer-hhM0P.framer-v-hhhalw .framer-phl2vz, .framer-hhM0P.framer-v-oq2w7w .framer-phl2vz { flex: 9 0 0px; }\",\".framer-hhM0P.framer-v-hhhalw .framer-nd4r9v-container, .framer-hhM0P.framer-v-oq2w7w .framer-nd4r9v-container { order: 0; }\",\".framer-hhM0P.framer-v-hhhalw .framer-1blppte-container, .framer-hhM0P.framer-v-oq2w7w .framer-1blppte-container { order: 1; }\",\".framer-hhM0P.framer-v-hhhalw .framer-1d1lq8o-container, .framer-hhM0P.framer-v-oq2w7w .framer-1d1lq8o-container { order: 2; }\",\".framer-hhM0P.framer-v-hhhalw .framer-bpv6go-container, .framer-hhM0P.framer-v-oq2w7w .framer-bpv6go-container { order: 3; }\",\".framer-hhM0P.framer-v-hhhalw .framer-sb2gc-container, .framer-hhM0P.framer-v-oq2w7w .framer-sb2gc-container { order: 4; }\",\".framer-hhM0P.framer-v-hhhalw .framer-cteh2s-container, .framer-hhM0P.framer-v-oq2w7w .framer-cteh2s-container { order: 5; }\",\".framer-hhM0P.framer-v-aie38q.framer-dif0uf, .framer-hhM0P.framer-v-mqhzof.framer-dif0uf, .framer-hhM0P.framer-v-pdjrec.framer-dif0uf, .framer-hhM0P.framer-v-lofp2d.framer-dif0uf, .framer-hhM0P.framer-v-mkl476.framer-dif0uf, .framer-hhM0P.framer-v-dtfqpu.framer-dif0uf { flex-direction: column; gap: 40px; width: 400px; }\",\".framer-hhM0P.framer-v-aie38q .framer-vqugsr, .framer-hhM0P.framer-v-mqhzof .framer-vqugsr, .framer-hhM0P.framer-v-pdjrec .framer-vqugsr, .framer-hhM0P.framer-v-lofp2d .framer-vqugsr, .framer-hhM0P.framer-v-mkl476 .framer-vqugsr, .framer-hhM0P.framer-v-dtfqpu .framer-vqugsr { flex: none; order: 1; width: 100%; }\",\".framer-hhM0P.framer-v-aie38q .framer-t6msbh-container, .framer-hhM0P.framer-v-mqhzof .framer-t6msbh-container, .framer-hhM0P.framer-v-pdjrec .framer-t6msbh-container, .framer-hhM0P.framer-v-lofp2d .framer-t6msbh-container, .framer-hhM0P.framer-v-mkl476 .framer-t6msbh-container, .framer-hhM0P.framer-v-dtfqpu .framer-t6msbh-container { width: 100%; }\",\".framer-hhM0P.framer-v-aie38q .framer-phl2vz, .framer-hhM0P.framer-v-mqhzof .framer-phl2vz, .framer-hhM0P.framer-v-pdjrec .framer-phl2vz, .framer-hhM0P.framer-v-lofp2d .framer-phl2vz, .framer-hhM0P.framer-v-mkl476 .framer-phl2vz, .framer-hhM0P.framer-v-dtfqpu .framer-phl2vz { flex: none; order: 0; width: 100%; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 903\n * @framerIntrinsicWidth 1128\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"xrEj7YEsU\":{\"layout\":[\"fixed\",\"auto\"]},\"CDtoZNgtA\":{\"layout\":[\"fixed\",\"auto\"]},\"jupkLvHBO\":{\"layout\":[\"fixed\",\"auto\"]},\"cHwDp_s5i\":{\"layout\":[\"fixed\",\"auto\"]},\"fci5zB1JM\":{\"layout\":[\"fixed\",\"auto\"]},\"TLxLam4YZ\":{\"layout\":[\"fixed\",\"auto\"]},\"YEnTeNdRP\":{\"layout\":[\"fixed\",\"auto\"]},\"fNHB6YKk0\":{\"layout\":[\"fixed\",\"auto\"]},\"ueg3wT1lw\":{\"layout\":[\"fixed\",\"auto\"]},\"UiRdOhXvT\":{\"layout\":[\"fixed\",\"auto\"]},\"FPEMd0pOj\":{\"layout\":[\"fixed\",\"auto\"]},\"y1cmM3CL5\":{\"layout\":[\"fixed\",\"auto\"]},\"VE5xIiPuL\":{\"layout\":[\"fixed\",\"auto\"]},\"VGwYuVR2s\":{\"layout\":[\"fixed\",\"auto\"]},\"FxHnXRW2z\":{\"layout\":[\"fixed\",\"auto\"]},\"CYu4a7neK\":{\"layout\":[\"fixed\",\"auto\"]},\"hpOMYgQXf\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"L5bVOjC54\":\"_01Image\",\"Xgqdpwxoc\":\"_01Title\",\"nfr3_vd4_\":\"_01Description\",\"kGMjQGWFg\":\"_02Image\",\"AChBv6mnx\":\"_02Title\",\"dym8aGlmH\":\"_02Description\",\"AtsGqKbqe\":\"_03Image\",\"Y7m9L8sgJ\":\"_03Title\",\"u2WQNcukZ\":\"_03Description\",\"gRgZAVMwJ\":\"_04Image\",\"rd_VK8DcK\":\"_04Title\",\"T3Zvj4lLt\":\"_04Description\",\"FhHZF40Gc\":\"_05Image\",\"DvMnYDgLq\":\"_05Title\",\"DP3k2sIwB\":\"_05Description\",\"is0Kmy_LC\":\"_06Image\",\"dYspAHvCn\":\"_06Title\",\"yIZLGI3IM\":\"_06Description\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramereSOfEPmfr=withCSS(Component,css,\"framer-hhM0P\");export default FramereSOfEPmfr;FramereSOfEPmfr.displayName=\"Services / Items\";FramereSOfEPmfr.defaultProps={height:903,width:1128};addPropertyControls(FramereSOfEPmfr,{variant:{options:[\"vl7fPkW6x\",\"xrEj7YEsU\",\"CDtoZNgtA\",\"jupkLvHBO\",\"cHwDp_s5i\",\"fci5zB1JM\",\"TLxLam4YZ\",\"YEnTeNdRP\",\"fNHB6YKk0\",\"ueg3wT1lw\",\"UiRdOhXvT\",\"FPEMd0pOj\",\"y1cmM3CL5\",\"VE5xIiPuL\",\"VGwYuVR2s\",\"FxHnXRW2z\",\"CYu4a7neK\",\"hpOMYgQXf\"],optionTitles:[\"Desktop main\",\"Desktop 2\",\"Desktop 3\",\"Desktop 4\",\"Desktop 5\",\"Desktop 6\",\"Tablet main\",\"Tablet 2\",\"Tablet 3\",\"Tablet 4\",\"Tablet 5\",\"Tablet 6\",\"Phone main\",\"Phone 2\",\"Phone 3\",\"Phone 4\",\"Phone 5\",\"Phone 6\"],title:\"Variant\",type:ControlType.Enum},L5bVOjC54:{title:\"01 Image\",type:ControlType.ResponsiveImage},Xgqdpwxoc:{defaultValue:\"01 Title\",displayTextArea:false,placeholder:\"\",title:\"01 Title\",type:ControlType.String},nfr3_vd4_:{defaultValue:\"01 Description\",displayTextArea:false,title:\"01 Description\",type:ControlType.String},kGMjQGWFg:{title:\"02 Image\",type:ControlType.ResponsiveImage},AChBv6mnx:{defaultValue:\"02 Title\",displayTextArea:false,placeholder:\"\",title:\"02 Title\",type:ControlType.String},dym8aGlmH:{defaultValue:\"02 Description\",displayTextArea:false,title:\"02 Description\",type:ControlType.String},AtsGqKbqe:{title:\"03 Image\",type:ControlType.ResponsiveImage},Y7m9L8sgJ:{defaultValue:\"03 Title\",displayTextArea:false,placeholder:\"\",title:\"03 Title\",type:ControlType.String},u2WQNcukZ:{defaultValue:\"03 Description\",description:\"\",displayTextArea:false,title:\"03 Description\",type:ControlType.String},gRgZAVMwJ:{title:\"04 Image\",type:ControlType.ResponsiveImage},rd_VK8DcK:{defaultValue:\"04 Title\",description:\"\",displayTextArea:false,placeholder:\"\",title:\"04 Title\",type:ControlType.String},T3Zvj4lLt:{defaultValue:\"04 Description\",description:\"\",displayTextArea:false,placeholder:\"\",title:\"04 Description\",type:ControlType.String},FhHZF40Gc:{title:\"05 Image\",type:ControlType.ResponsiveImage},DvMnYDgLq:{defaultValue:\"05 Title\",displayTextArea:false,placeholder:\"\",title:\"05 Title\",type:ControlType.String},DP3k2sIwB:{defaultValue:\"05 Description\",description:\"\",displayTextArea:false,title:\"05 Description\",type:ControlType.String},is0Kmy_LC:{title:\"06 Image\",type:ControlType.ResponsiveImage},dYspAHvCn:{defaultValue:\"06 Title\",displayTextArea:false,title:\"06 Title\",type:ControlType.String},yIZLGI3IM:{defaultValue:\"06 Description\",description:\"\",displayTextArea:false,title:\"06 Description\",type:ControlType.String}});addFonts(FramereSOfEPmfr,[{explicitInter:true,fonts:[]},...ServicesItemsDescriptionFonts,...ServicesItemsItemFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramereSOfEPmfr\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1128\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"903\",\"framerAutoSizeImages\":\"true\",\"framerVariables\":\"{\\\"L5bVOjC54\\\":\\\"_01Image\\\",\\\"Xgqdpwxoc\\\":\\\"_01Title\\\",\\\"nfr3_vd4_\\\":\\\"_01Description\\\",\\\"kGMjQGWFg\\\":\\\"_02Image\\\",\\\"AChBv6mnx\\\":\\\"_02Title\\\",\\\"dym8aGlmH\\\":\\\"_02Description\\\",\\\"AtsGqKbqe\\\":\\\"_03Image\\\",\\\"Y7m9L8sgJ\\\":\\\"_03Title\\\",\\\"u2WQNcukZ\\\":\\\"_03Description\\\",\\\"gRgZAVMwJ\\\":\\\"_04Image\\\",\\\"rd_VK8DcK\\\":\\\"_04Title\\\",\\\"T3Zvj4lLt\\\":\\\"_04Description\\\",\\\"FhHZF40Gc\\\":\\\"_05Image\\\",\\\"DvMnYDgLq\\\":\\\"_05Title\\\",\\\"DP3k2sIwB\\\":\\\"_05Description\\\",\\\"is0Kmy_LC\\\":\\\"_06Image\\\",\\\"dYspAHvCn\\\":\\\"_06Title\\\",\\\"yIZLGI3IM\\\":\\\"_06Description\\\"}\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xrEj7YEsU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CDtoZNgtA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jupkLvHBO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"cHwDp_s5i\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fci5zB1JM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TLxLam4YZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"YEnTeNdRP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fNHB6YKk0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ueg3wT1lw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UiRdOhXvT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FPEMd0pOj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"y1cmM3CL5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"VE5xIiPuL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"VGwYuVR2s\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FxHnXRW2z\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CYu4a7neK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hpOMYgQXf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (d74aa50)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/egXCqLvkChsdfeBX82wm/2v2Yj31D6plrBpsktSpz/uQRBhygQf.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/vbMXG3jyoGXvgV0OHRfE/TKRwEd0wR9zhq0oeKpxR/xNIXLfFSf.js\";const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"m9jSyhRqg\",\"gf_Ge1OgG\"];const serializationHash=\"framer-ME0NB\";const variantClassNames={gf_Ge1OgG:\"framer-v-1g7f7t6\",m9jSyhRqg:\"framer-v-1ebf3lc\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:50};const transition1={damping:33,delay:.1,mass:1,stiffness:180,type:\"spring\"};const transition2={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"m9jSyhRqg\",Phone:\"gf_Ge1OgG\"};const getProps=({description,heading,height,id,number,width,...props})=>{return{...props,DeMGKHWWt:description??props.DeMGKHWWt??\"Description\",variant:humanReadableVariantMap[props.variant]??props.variant??\"m9jSyhRqg\",XRBqy2pAy:number??props.XRBqy2pAy??\"00\",YEVw3BM0l:heading??props.YEVw3BM0l??\"Heading\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,XRBqy2pAy,YEVw3BM0l,DeMGKHWWt,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"m9jSyhRqg\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition2,children:/*#__PURE__*/_jsxs(MotionDivWithFX,{...restProps,...gestureHandlers,__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:cx(scopingClassNames,\"framer-1ebf3lc\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"m9jSyhRqg\",ref:refBinding,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgb(222, 222, 222)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\",...style},...addPropertyOverrides({gf_Ge1OgG:{__framer__enter:animation1,\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-107dl2g\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"jw2eOFN_2\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-l9eihn\",\"data-border\":true,\"data-framer-name\":\"Number\",layoutDependency:layoutDependency,layoutId:\"QeSAk7dAM\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(222, 222, 222)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"140%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(11, 11, 12))\"},children:\"01\"})}),className:\"framer-1bj3j2t\",\"data-framer-name\":\"01\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"saNLa9gTO\",style:{\"--extracted-r6o4lv\":\"rgb(11, 11, 12)\",\"--framer-paragraph-spacing\":\"0px\"},text:XRBqy2pAy,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-a670wo\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"tttdhmsg0\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-ddjjzx\",\"data-styles-preset\":\"uQRBhygQf\",children:\"Heading\"})}),className:\"framer-ofibl1\",\"data-framer-name\":\"Discovery & Strategy\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"g5rgaZJsZ\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:YEVw3BM0l,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-jnye1g\",\"data-styles-preset\":\"xNIXLfFSf\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(12, 12, 12, 0.6))\"},children:\"Choose the plan that best fits your needs. From a solid foundation to a fully optimized solution\"})}),className:\"framer-1lcu0le\",\"data-framer-name\":\"Choose the plan that best fits your needs. From a solid foundation to a fully optimized solution\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ipp45qvjf\",style:{\"--extracted-r6o4lv\":\"rgba(12, 12, 12, 0.6)\",\"--framer-paragraph-spacing\":\"0px\"},text:DeMGKHWWt,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-d976dv\",\"data-border\":true,\"data-framer-name\":\"Corner\",layoutDependency:layoutDependency,layoutId:\"BIVxC14ce\",style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"rgb(0, 128, 255)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",rotate:-90}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ME0NB.framer-15rae5b, .framer-ME0NB .framer-15rae5b { display: block; }\",\".framer-ME0NB.framer-1ebf3lc { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 40px 0px 0px 0px; position: relative; width: 554px; }\",\".framer-ME0NB .framer-107dl2g { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-ME0NB .framer-l9eihn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 10px; position: relative; width: 40px; }\",\".framer-ME0NB .framer-1bj3j2t { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-ME0NB .framer-a670wo { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-ME0NB .framer-ofibl1, .framer-ME0NB .framer-1lcu0le { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-ME0NB .framer-d976dv { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 9px); position: absolute; right: 0px; top: 30px; width: 9px; z-index: 1; }\",\".framer-ME0NB.framer-v-1g7f7t6.framer-1ebf3lc { padding: 30px 0px 0px 0px; }\",\".framer-ME0NB.framer-v-1g7f7t6 .framer-a670wo { gap: 8px; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-ME0NB[data-border=\"true\"]::after, .framer-ME0NB [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 107\n * @framerIntrinsicWidth 554\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"gf_Ge1OgG\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"XRBqy2pAy\":\"number\",\"YEVw3BM0l\":\"heading\",\"DeMGKHWWt\":\"description\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerhvQAZuTE8=withCSS(Component,css,\"framer-ME0NB\");export default FramerhvQAZuTE8;FramerhvQAZuTE8.displayName=\"Process / Item\";FramerhvQAZuTE8.defaultProps={height:107,width:554};addPropertyControls(FramerhvQAZuTE8,{variant:{options:[\"m9jSyhRqg\",\"gf_Ge1OgG\"],optionTitles:[\"Desktop\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},XRBqy2pAy:{defaultValue:\"00\",displayTextArea:false,title:\"Number\",type:ControlType.String},YEVw3BM0l:{defaultValue:\"Heading\",displayTextArea:false,title:\"Heading\",type:ControlType.String},DeMGKHWWt:{defaultValue:\"Description\",description:\"\",displayTextArea:false,title:\"Description\",type:ControlType.String}});addFonts(FramerhvQAZuTE8,[{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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.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/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\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerhvQAZuTE8\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"554\",\"framerVariables\":\"{\\\"XRBqy2pAy\\\":\\\"number\\\",\\\"YEVw3BM0l\\\":\\\"heading\\\",\\\"DeMGKHWWt\\\":\\\"description\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gf_Ge1OgG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"107\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./hvQAZuTE8.map", "// Generated by Framer (915daba)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-SemiBold\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-SemiBoldItalic\"]);export const fonts=[{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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.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:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/vxBnBhH8768IFAXAb4Qf6wQHKs.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/zSsEuoJdh8mcFVk976C05ZfQr8.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/b8ezwLrN7h2AUoPEENcsTMVJ0.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/mvNEIBLyHbscgHtwfsByjXUz3XY.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/6FI2EneKzM3qBy5foOZXey7coCA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/qrVgiXNd6RuQjETYQiVQ9nqCk.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/NHHeAKJVP0ZWHk5YZnQQChIsBM.woff2\",weight:\"600\"}]}];export const css=['.framer-ew0vz .framer-styles-preset-5jibgy:not(.rich-text-wrapper), .framer-ew0vz .framer-styles-preset-5jibgy.rich-text-wrapper p { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 36px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 600; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 600; --framer-letter-spacing: -0.04em; --framer-line-height: 1.3em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-ew0vz .framer-styles-preset-5jibgy:not(.rich-text-wrapper), .framer-ew0vz .framer-styles-preset-5jibgy.rich-text-wrapper p { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 32px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 600; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 600; --framer-letter-spacing: -0.04em; --framer-line-height: 1.3em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-ew0vz .framer-styles-preset-5jibgy:not(.rich-text-wrapper), .framer-ew0vz .framer-styles-preset-5jibgy.rich-text-wrapper p { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 26px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 600; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 600; --framer-letter-spacing: -0.04em; --framer-line-height: 1.3em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, #ffffff); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-ew0vz\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (a2bd428)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/xXzuCfPncZnDWLrYmtNO/d2zRurFeeTcEsDvokAYB/DPl1XeZ47.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/99CfbQ0g2aHd3wkMunJ6/y1C7t0UV7hgBOIy2DUxd/q35quwzCc.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/0JLPmaxZxenFQzSWFxwu/qJpZiXfAIi1MBZmmNkaC/sw01V2bJD.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/oMgXPBeR6YdHTzKPyOpl/EoE1kmmGpZHB3Wts7nST/xNIXLfFSf.js\";const PhosphorFonts=getFonts(Phosphor);const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"WN0gvTTUg\",\"p0HhGt1NQ\"];const serializationHash=\"framer-lXGbj\";const variantClassNames={p0HhGt1NQ:\"framer-v-7my9cv\",WN0gvTTUg:\"framer-v-1vlo0dx\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:30};const transition2={delay:0,duration:1.6,ease:[.68,0,0,.99],type:\"tween\"};const transition3={delay:.2,duration:1.6,ease:[.68,0,0,.99],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??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"WN0gvTTUg\",Phone:\"p0HhGt1NQ\"};const getProps=({_01Description,_01Number,_02Description,_02Number,avatar,bGColor,borderColor,height,id,name1,occupation,starColor,testimonial,textColor,width,...props})=>{return{...props,AM46op7Lx:textColor??props.AM46op7Lx??\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\",d4lzmm0YL:_01Description??props.d4lzmm0YL??\"01 description\",DMTP3vKWw:bGColor??props.DMTP3vKWw??\"var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12))\",F9uW9JjKI:_02Number??props.F9uW9JjKI??\"+00%\",HZi8Dk5hs:_01Number??props.HZi8Dk5hs??\"+00%\",jjg85LuOE:starColor??props.jjg85LuOE??\"var(--token-1662617d-fd18-4319-b3da-aa36e5415705, rgb(249, 69, 45))\",qXDjeqRcY:name1??props.qXDjeqRcY??\"Name\",V5EvMzZAA:occupation??props.V5EvMzZAA??\"Occupation\",variant:humanReadableVariantMap[props.variant]??props.variant??\"WN0gvTTUg\",VZf4KPRV3:borderColor??props.VZf4KPRV3??{borderBottomWidth:0,borderColor:\"rgba(255, 255, 255, 0.2)\",borderLeftWidth:0,borderRightWidth:0,borderStyle:\"solid\",borderTopWidth:1},y8_auQFXP:avatar??props.y8_auQFXP,ysHGQbLqA:testimonial??props.ysHGQbLqA??\"Testimonial\",ZL3Q30CZC:_02Description??props.ZL3Q30CZC??\"02 description\"};};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,ysHGQbLqA,HZi8Dk5hs,d4lzmm0YL,F9uW9JjKI,ZL3Q30CZC,y8_auQFXP,qXDjeqRcY,V5EvMzZAA,jjg85LuOE,AM46op7Lx,DMTP3vKWw,VZf4KPRV3,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"WN0gvTTUg\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1vlo0dx\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"WN0gvTTUg\",ref:ref??ref1,style:{backgroundColor:DMTP3vKWw,...style},...addPropertyOverrides({p0HhGt1NQ:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-12mumlp\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"mjI_d21mT\",...addPropertyOverrides({p0HhGt1NQ:{__framer__styleAppearEffectEnabled:undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8ykqw6\",\"data-framer-name\":\"Rating\",layoutDependency:layoutDependency,layoutId:\"Ey1iEvZvz\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ir5b4p-container\",layoutDependency:layoutDependency,layoutId:\"cUgbsyVkQ-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:jjg85LuOE,height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"cUgbsyVkQ\",layoutId:\"cUgbsyVkQ\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-hlbcud-container\",layoutDependency:layoutDependency,layoutId:\"WRoglEIhJ-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:jjg85LuOE,height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"WRoglEIhJ\",layoutId:\"WRoglEIhJ\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-11urm9k-container\",layoutDependency:layoutDependency,layoutId:\"m86TiQSbX-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:jjg85LuOE,height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"m86TiQSbX\",layoutId:\"m86TiQSbX\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-4c742-container\",layoutDependency:layoutDependency,layoutId:\"Z9oQMc4o4-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:jjg85LuOE,height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"Z9oQMc4o4\",layoutId:\"Z9oQMc4o4\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-134ikfa-container\",layoutDependency:layoutDependency,layoutId:\"JGIusuIca-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:jjg85LuOE,height:\"100%\",iconSearch:\"star\",iconSelection:\"House\",id:\"JGIusuIca\",layoutId:\"JGIusuIca\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1dmjd5e\",\"data-styles-preset\":\"q35quwzCc\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-AM46op7Lx-jFWuJpyza))\"},children:\"Testimonial\"})}),className:\"framer-zayyxm\",\"data-framer-name\":\"They helped us shape our brand identity from scratch, giving us a website that perfectly reflects our values.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"S7EEAb6IP\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-AM46op7Lx-jFWuJpyza)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-AM46op7Lx-jFWuJpyza\":AM46op7Lx},text:ysHGQbLqA,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jzmwku\",\"data-framer-name\":\"filler\",layoutDependency:layoutDependency,layoutId:\"fbCYn2aeL\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-s21afs\",\"data-framer-name\":\"Bottom\",layoutDependency:layoutDependency,layoutId:\"HY2E_q649\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1pxa9se\",\"data-framer-name\":\"Numbers\",layoutDependency:layoutDependency,layoutId:\"zVK_oqsoo\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9umr1m\",\"data-framer-name\":\"1\",layoutDependency:layoutDependency,layoutId:\"dP3Kb0gwr\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-5jibgy\",\"data-styles-preset\":\"DPl1XeZ47\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-AM46op7Lx-jFWuJpyza))\"},children:\"+00%\"})}),className:\"framer-1cukkzp\",\"data-framer-name\":\"+28%\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"VC4CuEL2y\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-AM46op7Lx-jFWuJpyza)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-AM46op7Lx-jFWuJpyza\":AM46op7Lx},text:HZi8Dk5hs,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1hahlh8\",\"data-styles-preset\":\"sw01V2bJD\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-AM46op7Lx-jFWuJpyza))\"},children:\"01 description\"})}),className:\"framer-1x4w3rw\",\"data-framer-name\":\"Customer retention\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ZzPj1pnpR\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-AM46op7Lx-jFWuJpyza)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-AM46op7Lx-jFWuJpyza\":AM46op7Lx,opacity:.6},text:d4lzmm0YL,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qmhx46\",\"data-framer-name\":\"2\",layoutDependency:layoutDependency,layoutId:\"TPBFYWaH_\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-5jibgy\",\"data-styles-preset\":\"DPl1XeZ47\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-AM46op7Lx-jFWuJpyza))\"},children:\"+00%\"})}),className:\"framer-1v6icbu\",\"data-framer-name\":\"+61%\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"NrSNHJD42\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-AM46op7Lx-jFWuJpyza)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-AM46op7Lx-jFWuJpyza\":AM46op7Lx},text:F9uW9JjKI,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1hahlh8\",\"data-styles-preset\":\"sw01V2bJD\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-AM46op7Lx-jFWuJpyza))\"},children:\"02 description\"})}),className:\"framer-1vxe87z\",\"data-framer-name\":\"Conversion rate\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"IzKtHny8Z\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-AM46op7Lx-jFWuJpyza)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-AM46op7Lx-jFWuJpyza\":AM46op7Lx,opacity:.6},text:ZL3Q30CZC,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-agmp4k\",\"data-border\":true,\"data-framer-name\":\"Author\",layoutDependency:layoutDependency,layoutId:\"O8SYmcIEa\",style:{\"--border-bottom-width\":`${VZf4KPRV3.borderBottomWidth??VZf4KPRV3.borderWidth}px`,\"--border-color\":VZf4KPRV3.borderColor,\"--border-left-width\":`${VZf4KPRV3.borderLeftWidth??VZf4KPRV3.borderWidth}px`,\"--border-right-width\":`${VZf4KPRV3.borderRightWidth??VZf4KPRV3.borderWidth}px`,\"--border-style\":VZf4KPRV3.borderStyle,\"--border-top-width\":`${VZf4KPRV3.borderTopWidth??VZf4KPRV3.borderWidth}px`},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"44px\",...toResponsiveImage(y8_auQFXP),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-p5ewhc\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"IlZko4WFK\",style:{borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-198z9l7\",\"data-framer-name\":\"Name\",layoutDependency:layoutDependency,layoutId:\"Z17huBw_O\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-jnye1g\",\"data-styles-preset\":\"xNIXLfFSf\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-AM46op7Lx-jFWuJpyza))\"},children:\"Name\"})}),className:\"framer-y3w5y6\",\"data-framer-name\":\"Anna Karenina\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"BZwQtaazR\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-AM46op7Lx-jFWuJpyza)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-AM46op7Lx-jFWuJpyza\":AM46op7Lx},text:qXDjeqRcY,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1hahlh8\",\"data-styles-preset\":\"sw01V2bJD\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-AM46op7Lx-jFWuJpyza))\"},children:\"Occupation\"})}),className:\"framer-swhb0a\",\"data-framer-name\":\"Owner of a clothing E-commerce store\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"r9fOMI_KY\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-AM46op7Lx-jFWuJpyza)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-AM46op7Lx-jFWuJpyza\":AM46op7Lx,opacity:.6},text:V5EvMzZAA,verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-lXGbj.framer-1y36xfz, .framer-lXGbj .framer-1y36xfz { display: block; }\",\".framer-lXGbj.framer-1vlo0dx { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; height: 753px; justify-content: space-between; overflow: hidden; padding: 40px; position: relative; width: 267px; }\",\".framer-lXGbj .framer-12mumlp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-lXGbj .framer-8ykqw6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 1px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-lXGbj .framer-1ir5b4p-container, .framer-lXGbj .framer-hlbcud-container, .framer-lXGbj .framer-11urm9k-container, .framer-lXGbj .framer-4c742-container, .framer-lXGbj .framer-134ikfa-container { flex: none; height: 13px; position: relative; width: 13px; }\",\".framer-lXGbj .framer-zayyxm, .framer-lXGbj .framer-y3w5y6 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-lXGbj .framer-1jzmwku { flex: none; height: 40px; overflow: hidden; position: relative; width: 100%; }\",\".framer-lXGbj .framer-s21afs { 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: 100%; }\",\".framer-lXGbj .framer-1pxa9se { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-lXGbj .framer-9umr1m { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 30px 0px 0px; position: relative; width: min-content; }\",\".framer-lXGbj .framer-1cukkzp, .framer-lXGbj .framer-1x4w3rw, .framer-lXGbj .framer-1v6icbu, .framer-lXGbj .framer-1vxe87z { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-lXGbj .framer-qmhx46 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-lXGbj .framer-agmp4k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 26px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-lXGbj .framer-p5ewhc { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 44px); position: relative; width: 44px; }\",\".framer-lXGbj .framer-198z9l7 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-lXGbj .framer-swhb0a { --framer-text-wrap-override: balance; flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-lXGbj .framer-12mumlp, .framer-lXGbj .framer-8ykqw6, .framer-lXGbj .framer-s21afs, .framer-lXGbj .framer-1pxa9se, .framer-lXGbj .framer-9umr1m, .framer-lXGbj .framer-qmhx46, .framer-lXGbj .framer-agmp4k, .framer-lXGbj .framer-198z9l7 { gap: 0px; } .framer-lXGbj .framer-12mumlp > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-lXGbj .framer-12mumlp > :first-child, .framer-lXGbj .framer-s21afs > :first-child, .framer-lXGbj .framer-9umr1m > :first-child, .framer-lXGbj .framer-qmhx46 > :first-child, .framer-lXGbj .framer-198z9l7 > :first-child { margin-top: 0px; } .framer-lXGbj .framer-12mumlp > :last-child, .framer-lXGbj .framer-s21afs > :last-child, .framer-lXGbj .framer-9umr1m > :last-child, .framer-lXGbj .framer-qmhx46 > :last-child, .framer-lXGbj .framer-198z9l7 > :last-child { margin-bottom: 0px; } .framer-lXGbj .framer-8ykqw6 > * { margin: 0px; margin-left: calc(1px / 2); margin-right: calc(1px / 2); } .framer-lXGbj .framer-8ykqw6 > :first-child, .framer-lXGbj .framer-1pxa9se > :first-child, .framer-lXGbj .framer-agmp4k > :first-child { margin-left: 0px; } .framer-lXGbj .framer-8ykqw6 > :last-child, .framer-lXGbj .framer-1pxa9se > :last-child, .framer-lXGbj .framer-agmp4k > :last-child { margin-right: 0px; } .framer-lXGbj .framer-s21afs > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-lXGbj .framer-1pxa9se > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-lXGbj .framer-9umr1m > *, .framer-lXGbj .framer-qmhx46 > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-lXGbj .framer-agmp4k > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-lXGbj .framer-198z9l7 > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } }\",\".framer-lXGbj.framer-v-7my9cv.framer-1vlo0dx { padding: 30px; }\",\".framer-lXGbj.framer-v-7my9cv .framer-1jzmwku { height: 130px; }\",\".framer-lXGbj.framer-v-7my9cv .framer-s21afs { gap: 30px; }\",\".framer-lXGbj.framer-v-7my9cv .framer-1pxa9se { gap: 20px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-lXGbj.framer-v-7my9cv .framer-s21afs, .framer-lXGbj.framer-v-7my9cv .framer-1pxa9se { gap: 0px; } .framer-lXGbj.framer-v-7my9cv .framer-s21afs > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-lXGbj.framer-v-7my9cv .framer-s21afs > :first-child { margin-top: 0px; } .framer-lXGbj.framer-v-7my9cv .framer-s21afs > :last-child { margin-bottom: 0px; } .framer-lXGbj.framer-v-7my9cv .framer-1pxa9se > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-lXGbj.framer-v-7my9cv .framer-1pxa9se > :first-child { margin-left: 0px; } .framer-lXGbj.framer-v-7my9cv .framer-1pxa9se > :last-child { margin-right: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,'.framer-lXGbj[data-border=\"true\"]::after, .framer-lXGbj [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 753\n * @framerIntrinsicWidth 267\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"p0HhGt1NQ\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"ysHGQbLqA\":\"testimonial\",\"HZi8Dk5hs\":\"_01Number\",\"d4lzmm0YL\":\"_01Description\",\"F9uW9JjKI\":\"_02Number\",\"ZL3Q30CZC\":\"_02Description\",\"y8_auQFXP\":\"avatar\",\"qXDjeqRcY\":\"name1\",\"V5EvMzZAA\":\"occupation\",\"jjg85LuOE\":\"starColor\",\"AM46op7Lx\":\"textColor\",\"DMTP3vKWw\":\"bGColor\",\"VZf4KPRV3\":\"borderColor\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerjFWuJpyza=withCSS(Component,css,\"framer-lXGbj\");export default FramerjFWuJpyza;FramerjFWuJpyza.displayName=\"Testimoials / Item\";FramerjFWuJpyza.defaultProps={height:753,width:267};addPropertyControls(FramerjFWuJpyza,{variant:{options:[\"WN0gvTTUg\",\"p0HhGt1NQ\"],optionTitles:[\"Desktop\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},ysHGQbLqA:{defaultValue:\"Testimonial\",description:\"\",displayTextArea:false,title:\"Testimonial\",type:ControlType.String},HZi8Dk5hs:{defaultValue:\"+00%\",displayTextArea:false,title:\"01 number\",type:ControlType.String},d4lzmm0YL:{defaultValue:\"01 description\",description:\"\",displayTextArea:false,title:\"01 description\",type:ControlType.String},F9uW9JjKI:{defaultValue:\"+00%\",displayTextArea:false,title:\"02 number\",type:ControlType.String},ZL3Q30CZC:{defaultValue:\"02 description\",description:\"\",displayTextArea:false,title:\"02 description\",type:ControlType.String},y8_auQFXP:{title:\"Avatar\",type:ControlType.ResponsiveImage},qXDjeqRcY:{defaultValue:\"Name\",displayTextArea:false,title:\"Name\",type:ControlType.String},V5EvMzZAA:{defaultValue:\"Occupation\",displayTextArea:false,title:\"Occupation\",type:ControlType.String},jjg85LuOE:{defaultValue:'var(--token-1662617d-fd18-4319-b3da-aa36e5415705, rgb(249, 69, 45)) /* {\"name\":\"Primary\"} */',title:\"Star color\",type:ControlType.Color},AM46op7Lx:{defaultValue:'var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255)) /* {\"name\":\"White\"} */',title:\"Text color\",type:ControlType.Color},DMTP3vKWw:{defaultValue:'var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12)) /* {\"name\":\"Black\"} */',title:\"BG color\",type:ControlType.Color},VZf4KPRV3:{defaultValue:{borderBottomWidth:0,borderColor:\"rgba(255, 255, 255, 0.2)\",borderLeftWidth:0,borderRightWidth:0,borderStyle:\"solid\",borderTopWidth:1},title:\"Border color\",type:ControlType.Border}});addFonts(FramerjFWuJpyza,[{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\"}]},...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerjFWuJpyza\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"267\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"p0HhGt1NQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"ysHGQbLqA\\\":\\\"testimonial\\\",\\\"HZi8Dk5hs\\\":\\\"_01Number\\\",\\\"d4lzmm0YL\\\":\\\"_01Description\\\",\\\"F9uW9JjKI\\\":\\\"_02Number\\\",\\\"ZL3Q30CZC\\\":\\\"_02Description\\\",\\\"y8_auQFXP\\\":\\\"avatar\\\",\\\"qXDjeqRcY\\\":\\\"name1\\\",\\\"V5EvMzZAA\\\":\\\"occupation\\\",\\\"jjg85LuOE\\\":\\\"starColor\\\",\\\"AM46op7Lx\\\":\\\"textColor\\\",\\\"DMTP3vKWw\\\":\\\"bGColor\\\",\\\"VZf4KPRV3\\\":\\\"borderColor\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"753\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (0847096)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"UMGTZZ0f6\",\"jMWPy6G8Y\"];const serializationHash=\"framer-sT1mY\";const variantClassNames={jMWPy6G8Y:\"framer-v-1vpmlft\",UMGTZZ0f6:\"framer-v-t5m6nn\"};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={bounce:.2,delay:0,duration:.4,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"UMGTZZ0f6\",Phone:\"jMWPy6G8Y\"};const getProps=({amount,bGColor,border,height,id,image1,image2,image3,image4,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4,_ref5,_humanReadableVariantMap_props_variant,_ref6,_ref7;return{...props,dGWMhyRCs:(_ref=image1!==null&&image1!==void 0?image1:props.dGWMhyRCs)!==null&&_ref!==void 0?_ref:{src:\"https://framerusercontent.com/images/Qx5yBzgjmhI4ZhyOxhgNHDX4L5s.png\"},fwD6acpNS:(_ref1=image3!==null&&image3!==void 0?image3:props.fwD6acpNS)!==null&&_ref1!==void 0?_ref1:{src:\"https://framerusercontent.com/images/zfw44Zk0QT7qeSVw95UW4nDofo.png\"},H0Oo1Mfv9:(_ref2=image2!==null&&image2!==void 0?image2:props.H0Oo1Mfv9)!==null&&_ref2!==void 0?_ref2:{src:\"https://framerusercontent.com/images/GQOltmsmeeYSsbHJ9ijpOx0M.png\"},IYnqoNnsD:(_ref3=amount!==null&&amount!==void 0?amount:props.IYnqoNnsD)!==null&&_ref3!==void 0?_ref3:\"20+\",K01rPaGiO:(_ref4=bGColor!==null&&bGColor!==void 0?bGColor:props.K01rPaGiO)!==null&&_ref4!==void 0?_ref4:\"var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12))\",RDM7oqG69:(_ref5=border!==null&&border!==void 0?border:props.RDM7oqG69)!==null&&_ref5!==void 0?_ref5:{borderColor:\"rgba(255, 255, 255, 1)\",borderStyle:\"solid\",borderWidth:3},variant:(_ref6=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref6!==void 0?_ref6:\"UMGTZZ0f6\",vNAo0sswR:(_ref7=image4!==null&&image4!==void 0?image4:props.vNAo0sswR)!==null&&_ref7!==void 0?_ref7:{src:\"https://framerusercontent.com/images/tgyIqFImxk9E0TkgTI36r0dsss.png\"}};};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,dGWMhyRCs,H0Oo1Mfv9,fwD6acpNS,vNAo0sswR,RDM7oqG69,IYnqoNnsD,K01rPaGiO,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"UMGTZZ0f6\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();var _RDM7oqG69_borderBottomWidth,_RDM7oqG69_borderLeftWidth,_RDM7oqG69_borderRightWidth,_RDM7oqG69_borderTopWidth,_RDM7oqG69_borderBottomWidth1,_RDM7oqG69_borderLeftWidth1,_RDM7oqG69_borderRightWidth1,_RDM7oqG69_borderTopWidth1,_RDM7oqG69_borderBottomWidth2,_RDM7oqG69_borderLeftWidth2,_RDM7oqG69_borderRightWidth2,_RDM7oqG69_borderTopWidth2,_RDM7oqG69_borderBottomWidth3,_RDM7oqG69_borderLeftWidth3,_RDM7oqG69_borderRightWidth3,_RDM7oqG69_borderTopWidth3;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-t5m6nn\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"UMGTZZ0f6\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({jMWPy6G8Y:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||65)*.49230769230769256-27)),sizes:\"54px\",...toResponsiveImage(dGWMhyRCs),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1ju8bs4\",\"data-border\":true,\"data-framer-name\":\"1\",layoutDependency:layoutDependency,layoutId:\"h_zTsEiaq\",style:{\"--border-bottom-width\":`${(_RDM7oqG69_borderBottomWidth=RDM7oqG69.borderBottomWidth)!==null&&_RDM7oqG69_borderBottomWidth!==void 0?_RDM7oqG69_borderBottomWidth:RDM7oqG69.borderWidth}px`,\"--border-color\":RDM7oqG69.borderColor,\"--border-left-width\":`${(_RDM7oqG69_borderLeftWidth=RDM7oqG69.borderLeftWidth)!==null&&_RDM7oqG69_borderLeftWidth!==void 0?_RDM7oqG69_borderLeftWidth:RDM7oqG69.borderWidth}px`,\"--border-right-width\":`${(_RDM7oqG69_borderRightWidth=RDM7oqG69.borderRightWidth)!==null&&_RDM7oqG69_borderRightWidth!==void 0?_RDM7oqG69_borderRightWidth:RDM7oqG69.borderWidth}px`,\"--border-style\":RDM7oqG69.borderStyle,\"--border-top-width\":`${(_RDM7oqG69_borderTopWidth=RDM7oqG69.borderTopWidth)!==null&&_RDM7oqG69_borderTopWidth!==void 0?_RDM7oqG69_borderTopWidth:RDM7oqG69.borderWidth}px`,borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"},transformTemplate:transformTemplate1,...addPropertyOverrides({jMWPy6G8Y:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||48)*.49230769230769256-23)),sizes:\"46px\",...toResponsiveImage(dGWMhyRCs),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||65)*.49230769230769256-27)),sizes:\"54px\",...toResponsiveImage(H0Oo1Mfv9),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-h0yyxg\",\"data-border\":true,\"data-framer-name\":\"2\",layoutDependency:layoutDependency,layoutId:\"h3z5cl5hy\",style:{\"--border-bottom-width\":`${(_RDM7oqG69_borderBottomWidth1=RDM7oqG69.borderBottomWidth)!==null&&_RDM7oqG69_borderBottomWidth1!==void 0?_RDM7oqG69_borderBottomWidth1:RDM7oqG69.borderWidth}px`,\"--border-color\":RDM7oqG69.borderColor,\"--border-left-width\":`${(_RDM7oqG69_borderLeftWidth1=RDM7oqG69.borderLeftWidth)!==null&&_RDM7oqG69_borderLeftWidth1!==void 0?_RDM7oqG69_borderLeftWidth1:RDM7oqG69.borderWidth}px`,\"--border-right-width\":`${(_RDM7oqG69_borderRightWidth1=RDM7oqG69.borderRightWidth)!==null&&_RDM7oqG69_borderRightWidth1!==void 0?_RDM7oqG69_borderRightWidth1:RDM7oqG69.borderWidth}px`,\"--border-style\":RDM7oqG69.borderStyle,\"--border-top-width\":`${(_RDM7oqG69_borderTopWidth1=RDM7oqG69.borderTopWidth)!==null&&_RDM7oqG69_borderTopWidth1!==void 0?_RDM7oqG69_borderTopWidth1:RDM7oqG69.borderWidth}px`,borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"},transformTemplate:transformTemplate1,...addPropertyOverrides({jMWPy6G8Y:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||48)*.49230769230769256-23)),sizes:\"46px\",...toResponsiveImage(H0Oo1Mfv9),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||65)*.49230769230769256-27)),sizes:\"54px\",...toResponsiveImage(fwD6acpNS),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-yr5zjy\",\"data-border\":true,\"data-framer-name\":\"3\",layoutDependency:layoutDependency,layoutId:\"wPzNxeigp\",style:{\"--border-bottom-width\":`${(_RDM7oqG69_borderBottomWidth2=RDM7oqG69.borderBottomWidth)!==null&&_RDM7oqG69_borderBottomWidth2!==void 0?_RDM7oqG69_borderBottomWidth2:RDM7oqG69.borderWidth}px`,\"--border-color\":RDM7oqG69.borderColor,\"--border-left-width\":`${(_RDM7oqG69_borderLeftWidth2=RDM7oqG69.borderLeftWidth)!==null&&_RDM7oqG69_borderLeftWidth2!==void 0?_RDM7oqG69_borderLeftWidth2:RDM7oqG69.borderWidth}px`,\"--border-right-width\":`${(_RDM7oqG69_borderRightWidth2=RDM7oqG69.borderRightWidth)!==null&&_RDM7oqG69_borderRightWidth2!==void 0?_RDM7oqG69_borderRightWidth2:RDM7oqG69.borderWidth}px`,\"--border-style\":RDM7oqG69.borderStyle,\"--border-top-width\":`${(_RDM7oqG69_borderTopWidth2=RDM7oqG69.borderTopWidth)!==null&&_RDM7oqG69_borderTopWidth2!==void 0?_RDM7oqG69_borderTopWidth2:RDM7oqG69.borderWidth}px`,borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"},transformTemplate:transformTemplate1,...addPropertyOverrides({jMWPy6G8Y:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||48)*.49230769230769256-23)),sizes:\"46px\",...toResponsiveImage(fwD6acpNS),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||65)*.49230769230769256-27)),sizes:\"54px\",...toResponsiveImage(vNAo0sswR),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-rix1l1\",\"data-border\":true,\"data-framer-name\":\"4\",layoutDependency:layoutDependency,layoutId:\"S_S5ZVWiw\",style:{\"--border-bottom-width\":`${(_RDM7oqG69_borderBottomWidth3=RDM7oqG69.borderBottomWidth)!==null&&_RDM7oqG69_borderBottomWidth3!==void 0?_RDM7oqG69_borderBottomWidth3:RDM7oqG69.borderWidth}px`,\"--border-color\":RDM7oqG69.borderColor,\"--border-left-width\":`${(_RDM7oqG69_borderLeftWidth3=RDM7oqG69.borderLeftWidth)!==null&&_RDM7oqG69_borderLeftWidth3!==void 0?_RDM7oqG69_borderLeftWidth3:RDM7oqG69.borderWidth}px`,\"--border-right-width\":`${(_RDM7oqG69_borderRightWidth3=RDM7oqG69.borderRightWidth)!==null&&_RDM7oqG69_borderRightWidth3!==void 0?_RDM7oqG69_borderRightWidth3:RDM7oqG69.borderWidth}px`,\"--border-style\":RDM7oqG69.borderStyle,\"--border-top-width\":`${(_RDM7oqG69_borderTopWidth3=RDM7oqG69.borderTopWidth)!==null&&_RDM7oqG69_borderTopWidth3!==void 0?_RDM7oqG69_borderTopWidth3:RDM7oqG69.borderWidth}px`,borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"},transformTemplate:transformTemplate1,...addPropertyOverrides({jMWPy6G8Y:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||48)*.49230769230769256-23)),sizes:\"46px\",...toResponsiveImage(vNAo0sswR),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1so9i2b\",\"data-framer-name\":\"5\",layoutDependency:layoutDependency,layoutId:\"QiRd_uMkj\",style:{backgroundColor:K01rPaGiO,borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"20+\"})}),className:\"framer-mhdo1b\",\"data-framer-name\":\"20+\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"OygHkVJqf\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},text:IYnqoNnsD,transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({jMWPy6G8Y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"20+\"})})}},baseVariant,gestureVariant)})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-sT1mY.framer-3jiffd, .framer-sT1mY .framer-3jiffd { display: block; }\",\".framer-sT1mY.framer-t5m6nn { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; min-height: 65px; overflow: visible; padding: 0px; position: relative; width: 175px; }\",\".framer-sT1mY .framer-1ju8bs4 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 54px); left: 0px; position: absolute; top: 49%; width: 54px; z-index: 1; }\",\".framer-sT1mY .framer-h0yyxg { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 54px); left: 30px; position: absolute; top: 49%; width: 54px; z-index: 1; }\",\".framer-sT1mY .framer-yr5zjy { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 54px); left: 60px; position: absolute; top: 49%; width: 54px; z-index: 1; }\",\".framer-sT1mY .framer-rix1l1 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 54px); left: 90px; position: absolute; top: 49%; width: 54px; z-index: 1; }\",\".framer-sT1mY .framer-1so9i2b { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 54px); left: 120px; position: absolute; top: 49%; width: 54px; z-index: 1; }\",\".framer-sT1mY .framer-mhdo1b { flex: none; height: auto; left: 50%; position: absolute; top: 50%; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-sT1mY.framer-t5m6nn { gap: 0px; } .framer-sT1mY.framer-t5m6nn > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-sT1mY.framer-t5m6nn > :first-child { margin-left: 0px; } .framer-sT1mY.framer-t5m6nn > :last-child { margin-right: 0px; } }\",\".framer-sT1mY.framer-v-1vpmlft.framer-t5m6nn { height: 48px; min-height: unset; width: 150px; }\",\".framer-sT1mY.framer-v-1vpmlft .framer-1ju8bs4 { height: var(--framer-aspect-ratio-supported, 46px); width: 46px; }\",\".framer-sT1mY.framer-v-1vpmlft .framer-h0yyxg { height: var(--framer-aspect-ratio-supported, 46px); left: 26px; width: 46px; }\",\".framer-sT1mY.framer-v-1vpmlft .framer-yr5zjy { height: var(--framer-aspect-ratio-supported, 46px); left: 52px; width: 46px; }\",\".framer-sT1mY.framer-v-1vpmlft .framer-rix1l1 { height: var(--framer-aspect-ratio-supported, 46px); left: 78px; width: 46px; }\",\".framer-sT1mY.framer-v-1vpmlft .framer-1so9i2b { height: var(--framer-aspect-ratio-supported, 46px); left: 104px; width: 46px; }\",'.framer-sT1mY[data-border=\"true\"]::after, .framer-sT1mY [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 65\n * @framerIntrinsicWidth 175\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"jMWPy6G8Y\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"dGWMhyRCs\":\"image1\",\"H0Oo1Mfv9\":\"image2\",\"fwD6acpNS\":\"image3\",\"vNAo0sswR\":\"image4\",\"RDM7oqG69\":\"border\",\"IYnqoNnsD\":\"amount\",\"K01rPaGiO\":\"bGColor\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerP9ubNxmwe=withCSS(Component,css,\"framer-sT1mY\");export default FramerP9ubNxmwe;FramerP9ubNxmwe.displayName=\"Team / Avatar\";FramerP9ubNxmwe.defaultProps={height:65,width:175};addPropertyControls(FramerP9ubNxmwe,{variant:{options:[\"UMGTZZ0f6\",\"jMWPy6G8Y\"],optionTitles:[\"Desktop\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},dGWMhyRCs:{__defaultAssetReference:\"data:framer/asset-reference,Qx5yBzgjmhI4ZhyOxhgNHDX4L5s.png?originalFilename=Ellipse+9.png&preferredSize=auto\",title:\"Image 1\",type:ControlType.ResponsiveImage},H0Oo1Mfv9:{__defaultAssetReference:\"data:framer/asset-reference,GQOltmsmeeYSsbHJ9ijpOx0M.png?originalFilename=Ellipse+8.png&preferredSize=auto\",title:\"Image 2\",type:ControlType.ResponsiveImage},fwD6acpNS:{__defaultAssetReference:\"data:framer/asset-reference,zfw44Zk0QT7qeSVw95UW4nDofo.png?originalFilename=Ellipse+10.png&preferredSize=auto\",title:\"Image 3\",type:ControlType.ResponsiveImage},vNAo0sswR:{__defaultAssetReference:\"data:framer/asset-reference,tgyIqFImxk9E0TkgTI36r0dsss.png?originalFilename=Ellipse+11.png&preferredSize=auto\",title:\"Image 4\",type:ControlType.ResponsiveImage},RDM7oqG69:{defaultValue:{borderColor:\"rgba(255, 255, 255, 1)\",borderStyle:\"solid\",borderWidth:3},title:\"Border\",type:ControlType.Border},IYnqoNnsD:{defaultValue:\"20+\",displayTextArea:false,title:\"Amount\",type:ControlType.String},K01rPaGiO:{defaultValue:'var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12)) /* {\"name\":\"Black\"} */',title:\"BG color\",type:ControlType.Color}});addFonts(FramerP9ubNxmwe,[{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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerP9ubNxmwe\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"dGWMhyRCs\\\":\\\"image1\\\",\\\"H0Oo1Mfv9\\\":\\\"image2\\\",\\\"fwD6acpNS\\\":\\\"image3\\\",\\\"vNAo0sswR\\\":\\\"image4\\\",\\\"RDM7oqG69\\\":\\\"border\\\",\\\"IYnqoNnsD\\\":\\\"amount\\\",\\\"K01rPaGiO\\\":\\\"bGColor\\\"}\",\"framerIntrinsicHeight\":\"65\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jMWPy6G8Y\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"175\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./P9ubNxmwe.map", "// Generated by Framer (c07a8c1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/vbMXG3jyoGXvgV0OHRfE/TKRwEd0wR9zhq0oeKpxR/xNIXLfFSf.js\";const cycleOrder=[\"sARX1h65q\",\"k8_Zk7qCw\"];const serializationHash=\"framer-A7isA\";const variantClassNames={k8_Zk7qCw:\"framer-v-jmrins\",sARX1h65q:\"framer-v-1o5z7d9\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"sARX1h65q\",Phone:\"k8_Zk7qCw\"};const getProps=({bottom,height,id,number,top,width,...props})=>{return{...props,s0pskHPgi:number??props.s0pskHPgi??\"3\",sUuW11Svk:bottom??props.sUuW11Svk??\"and strategists\",variant:humanReadableVariantMap[props.variant]??props.variant??\"sARX1h65q\",xdRQ8fRTN:top??props.xdRQ8fRTN??\"Creative thinkers\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,s0pskHPgi,xdRQ8fRTN,sUuW11Svk,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"sARX1h65q\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1o5z7d9\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"sARX1h65q\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.24)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",...style},...addPropertyOverrides({k8_Zk7qCw:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"54px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.07em\",\"--framer-line-height\":\"115%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"3\"})}),className:\"framer-15n043j\",\"data-framer-name\":\"3\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"gRWOUUlXv\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},text:s0pskHPgi,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({k8_Zk7qCw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.07em\",\"--framer-line-height\":\"115%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"3\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18eodud\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"otIWNx5Ph\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-jnye1g\",\"data-styles-preset\":\"xNIXLfFSf\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255)))\"},children:\"Creative thinkers\"})}),className:\"framer-t4kels\",\"data-framer-name\":\"Creative thinkers and strategists\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"emPg231dB\",style:{\"--extracted-r6o4lv\":\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},text:xdRQ8fRTN,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-jnye1g\",\"data-styles-preset\":\"xNIXLfFSf\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.6))\"},children:\"and strategists\"})}),className:\"framer-138v28h\",\"data-framer-name\":\"Creative thinkers and strategists\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"SNk0V5XcF\",style:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.6)\",\"--framer-paragraph-spacing\":\"0px\"},text:sUuW11Svk,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-A7isA.framer-85t7wa, .framer-A7isA .framer-85t7wa { display: block; }\",\".framer-A7isA.framer-1o5z7d9 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 20px 0px; position: relative; width: 500px; }\",\".framer-A7isA .framer-15n043j { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-A7isA .framer-18eodud { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-A7isA .framer-t4kels, .framer-A7isA .framer-138v28h { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-A7isA.framer-v-jmrins.framer-1o5z7d9 { gap: 14px; padding: 0px 0px 18px 0px; }\",...sharedStyle.css,'.framer-A7isA[data-border=\"true\"]::after, .framer-A7isA [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 82\n * @framerIntrinsicWidth 500\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"k8_Zk7qCw\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"s0pskHPgi\":\"number\",\"xdRQ8fRTN\":\"top\",\"sUuW11Svk\":\"bottom\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerW96ZH6Gnz=withCSS(Component,css,\"framer-A7isA\");export default FramerW96ZH6Gnz;FramerW96ZH6Gnz.displayName=\"Team / Item\";FramerW96ZH6Gnz.defaultProps={height:82,width:500};addPropertyControls(FramerW96ZH6Gnz,{variant:{options:[\"sARX1h65q\",\"k8_Zk7qCw\"],optionTitles:[\"Desktop\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},s0pskHPgi:{defaultValue:\"3\",displayTextArea:false,title:\"Number\",type:ControlType.String},xdRQ8fRTN:{defaultValue:\"Creative thinkers\",displayTextArea:false,title:\"Top\",type:ControlType.String},sUuW11Svk:{defaultValue:\"and strategists\",displayTextArea:false,title:\"Bottom\",type:ControlType.String}});addFonts(FramerW96ZH6Gnz,[{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{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)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerW96ZH6Gnz\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"s0pskHPgi\\\":\\\"number\\\",\\\"xdRQ8fRTN\\\":\\\"top\\\",\\\"sUuW11Svk\\\":\\\"bottom\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"500\",\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"k8_Zk7qCw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"82\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./W96ZH6Gnz.map", "// Generated by Framer (861d57e)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,FormContainer,FormPlainTextInput,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useMetadata,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/PGrowqBrgWCViHduGfsA/SmoothScroll_Prod.js\";import NumbersItem from\"#framer/local/canvasComponent/aH7yeXBVj/aH7yeXBVj.js\";import ServicesItems from\"#framer/local/canvasComponent/eSOfEPmfr/eSOfEPmfr.js\";import LogoCarousel from\"#framer/local/canvasComponent/fuxa0eFsG/fuxa0eFsG.js\";import ProcessItem from\"#framer/local/canvasComponent/hvQAZuTE8/hvQAZuTE8.js\";import TestimoialsItem from\"#framer/local/canvasComponent/jFWuJpyza/jFWuJpyza.js\";import HeaderHeader from\"#framer/local/canvasComponent/O1fMzCErz/O1fMzCErz.js\";import UISocialLink from\"#framer/local/canvasComponent/Oy_aSAGbi/Oy_aSAGbi.js\";import Logo from\"#framer/local/canvasComponent/OY8jC43hH/OY8jC43hH.js\";import UIArrowButton from\"#framer/local/canvasComponent/ozPjcS5mp/ozPjcS5mp.js\";import TeamAvatar from\"#framer/local/canvasComponent/P9ubNxmwe/P9ubNxmwe.js\";import TeamItem from\"#framer/local/canvasComponent/W96ZH6Gnz/W96ZH6Gnz.js\";import UICategory from\"#framer/local/canvasComponent/wVLyqC_6X/wVLyqC_6X.js\";import*as sharedStyle1 from\"#framer/local/css/APPdj1VEF/APPdj1VEF.js\";import*as sharedStyle3 from\"#framer/local/css/hOrfMQMhw/hOrfMQMhw.js\";import*as sharedStyle from\"#framer/local/css/IAEAiqtru/IAEAiqtru.js\";import*as sharedStyle8 from\"#framer/local/css/jNXIpkS6r/jNXIpkS6r.js\";import*as sharedStyle4 from\"#framer/local/css/q35quwzCc/q35quwzCc.js\";import*as sharedStyle6 from\"#framer/local/css/sw01V2bJD/sw01V2bJD.js\";import*as sharedStyle5 from\"#framer/local/css/xNIXLfFSf/xNIXLfFSf.js\";import*as sharedStyle9 from\"#framer/local/css/yzgpMcORk/yzgpMcORk.js\";import*as sharedStyle7 from\"#framer/local/css/zPBE4sevH/zPBE4sevH.js\";import*as sharedStyle2 from\"#framer/local/css/zSSdVVb1R/zSSdVVb1R.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const HeaderHeaderFonts=getFonts(HeaderHeader);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const ImageWithOptimizedAppearEffect=withOptimizedAppearEffect(Image);const MotionSectionWithFX=withFX(motion.section);const UIArrowButtonFonts=getFonts(UIArrowButton);const RichTextWithFX=withFX(RichText);const NumbersItemFonts=getFonts(NumbersItem);const MotionDivWithFX=withFX(motion.div);const LogoFonts=getFonts(Logo);const UICategoryFonts=getFonts(UICategory);const ServicesItemsFonts=getFonts(ServicesItems);const LogoCarouselFonts=getFonts(LogoCarousel);const TeamAvatarFonts=getFonts(TeamAvatar);const TeamItemFonts=getFonts(TeamItem);const ContainerWithFX=withFX(Container);const ImageWithFX=withFX(Image);const ProcessItemFonts=getFonts(ProcessItem);const TestimoialsItemFonts=getFonts(TestimoialsItem);const SmoothScrollFonts=getFonts(SmoothScroll);const UISocialLinkFonts=getFonts(UISocialLink);const MotionSectionWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.section);const breakpoints={p4sQvxEP4:\"(max-width: 809px)\",toDtyncsd:\"(min-width: 810px) and (max-width: 1199px)\",WQLkyLRf1:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-2R7s4\";const variantClassNames={p4sQvxEP4:\"framer-v-233qk8\",toDtyncsd:\"framer-v-13dhfrl\",WQLkyLRf1:\"framer-v-72rtr7\"};const transition1={damping:27,delay:1.75,mass:.3,stiffness:121,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:60};const transition2={damping:27,delay:.5,mass:.3,stiffness:121,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:30};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition3={damping:27,delay:1.7,mass:.3,stiffness:121,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const transformTemplate2=(_,t)=>`translateY(-50%) ${t}`;const transition4={damping:27,delay:1.33,mass:.3,stiffness:121,type:\"spring\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation6={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-60};const transition5={damping:27,delay:.2,mass:.3,stiffness:121,type:\"spring\"};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const animation8={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:40};const animation9={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-70};const transition6={damping:27,delay:.1,mass:.3,stiffness:121,type:\"spring\"};const animation10={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const transition7={delay:1.15,duration:1.2,ease:[.05,.65,.22,.96],type:\"tween\"};const animation11={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition7,x:0,y:0};const animation12={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.5,skewX:0,skewY:0,x:0,y:160};const transition8={delay:0,duration:1.2,ease:[.05,.65,.59,1],type:\"tween\"};const animation13={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition8,x:0,y:0};const animation14={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.3,skewX:0,skewY:0,x:0,y:100};const animation15={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition9={bounce:.1,delay:.2,duration:1.2,type:\"spring\"};const animation16={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition9,x:0,y:0};const animation17={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition10={damping:27,delay:0,mass:.3,stiffness:121,type:\"spring\"};const animation18={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-40};const animation19={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition9,x:0,y:-40};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transition11={bounce:.1,delay:0,duration:1.2,type:\"spring\"};const animation20={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition11,x:0,y:0};const animation21={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:40};const transformTemplate3=(_,t)=>`translate(-50%, -50%) ${t}`;const transition12={bounce:.1,delay:.4,duration:1.2,type:\"spring\"};const animation22={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition12,x:0,y:0};const transition13={bounce:.1,delay:.6,duration:1.2,type:\"spring\"};const animation23={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition13,x:0,y:0};const transition14={delay:.15,duration:1,ease:[.68,0,.16,.97],type:\"tween\"};const animation24={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition14,x:0,y:0};const transition15={damping:27,delay:.15,mass:.3,stiffness:121,type:\"spring\"};const animation25={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition15,x:0,y:0};const transition16={delay:.2,duration:1.2,ease:[.22,1,.36,1],type:\"tween\"};const animation26={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition16,x:0,y:0};const formVariants=(form,variants,currentVariant)=>{switch(form.state){case\"success\":return variants.success??currentVariant;case\"pending\":return variants.pending??currentVariant;case\"error\":return variants.error??currentVariant;case\"incomplete\":return variants.incomplete??currentVariant;}};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"p4sQvxEP4\",Tablet:\"toDtyncsd\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};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,I2MGBGTUTv75Tpw1Yr,...restProps}=getProps(props);const metadata=React.useMemo(()=>metadataProvider(undefined,activeLocale),[undefined,activeLocale]);useMetadata(metadata);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"p4sQvxEP4\")return false;return true;};const router=useRouter();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",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-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:213,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{animate:animation2,initial:animation3}},children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-fyydzk-container\",\"data-framer-appear-id\":\"fyydzk\",initial:animation1,nodeId:\"zUjl5Cw3s\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{variant:\"XPCVor9Ih\"}},children:/*#__PURE__*/_jsx(HeaderHeader,{GcgGR2ESN:\"rgb(255, 255, 255)\",height:\"100%\",id:\"zUjl5Cw3s\",layoutId:\"zUjl5Cw3s\",style:{width:\"100%\"},variant:\"LoRRTE51b\",width:\"100%\"})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation4,className:\"framer-18ia252 hidden-233qk8\",\"data-framer-appear-id\":\"18ia252\",\"data-framer-name\":\"Projects number\",initial:animation1,optimized:true,transformTemplate:transformTemplate1}),/*#__PURE__*/_jsxs(\"main\",{className:\"framer-1ojost9\",\"data-framer-name\":\"Main\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__parallaxTransformEnabled:undefined}},children:/*#__PURE__*/_jsxs(MotionSectionWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:120,__perspectiveFX:false,__targetOpacity:1,className:\"framer-fbtq8l\",\"data-framer-name\":\"Hero\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n4wfg3\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1s8uq1m\",\"data-framer-name\":\"Top\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hlm8z3\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"245.11472291571138px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-line-height\":\"90%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Digital\"})}),viewBox:\"0 0 675.7068833749427 221\"},toDtyncsd:{viewBox:\"0 0 675.7068833749427 196\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"245.11472291571138px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-line-height\":\"80%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Digital\"})}),className:\"framer-8xowj5\",\"data-framer-name\":\"Digital\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",viewBox:\"0 0 676 196\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{animate:animation7,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Qkk7TFQgQXZvY2Fkby9SZWd1bGFyL3Yw\",\"--framer-font-family\":'\"LT Avocado\", sans-serif',\"--framer-font-size\":\"377.06741946197275px\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-line-height\":\"118%\",\"--framer-text-alignment\":\"center\"},children:\"PADA\"})}),initial:animation8,viewBox:\"0 0 522 445\",viewBoxScale:.36},toDtyncsd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Qkk7TFQgQXZvY2Fkby9SZWd1bGFyL3Yw\",\"--framer-font-family\":'\"LT Avocado\", sans-serif',\"--framer-font-size\":\"314.268578442312px\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-line-height\":\"118%\"},children:\"PADA\"})}),viewBox:\"0 0 799 371\"}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation5,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Qkk7TFQgQXZvY2Fkby9SZWd1bGFyL3Yw\",\"--framer-font-family\":'\"LT Avocado\", sans-serif',\"--framer-font-size\":\"171.93113647248228px\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-line-height\":\"118%\"},children:\"PADA\"})}),className:\"framer-17f7gii\",\"data-framer-appear-id\":\"17f7gii\",\"data-framer-name\":\"Digital\",fonts:[\"BI;LT Avocado/Regular/v0\"],initial:animation6,optimized:true,transformTemplate:transformTemplate2,verticalAlignment:\"top\",viewBox:\"0 0 437 203\",viewBoxScale:.77,withExternalLayout:true})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8axwti\",\"data-framer-name\":\"Bottom\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1d7ihmp\",\"data-framer-name\":\"Text\",children:isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1r8tsb6 hidden-233qk8\",\"data-framer-name\":\"Filler\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bmi8eo\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{viewBox:\"0 0 765.5607831654864 101\"},toDtyncsd:{viewBox:\"0 0 765.5607831654864 101\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"126.0130527581079px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-line-height\":\"80%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Design Studio\"})}),className:\"framer-1po5jnl\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",viewBox:\"0 0 766 101\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{animate:animation10,initial:animation8}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation4,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"157.04876819087465px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Design Lab\"})}),className:\"framer-skcre\",\"data-framer-appear-id\":\"skcre\",fonts:[\"Inter-Bold\"],initial:animation9,optimized:true,transformTemplate:transformTemplate2,verticalAlignment:\"top\",viewBox:\"0 0 765.4229260914525 188\",withExternalLayout:true})})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{animate:animation13,background:{alt:\"Artistic portrait with red and blue lighting creating a dramatic effect\",fit:\"fill\",pixelHeight:3901,pixelWidth:5852,positionX:\"59.6%\",positionY:\"50%\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/IaKF3dmOIg5J6ndH0GggBKoRm4A.jpg\",srcSet:\"https://framerusercontent.com/images/IaKF3dmOIg5J6ndH0GggBKoRm4A.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/IaKF3dmOIg5J6ndH0GggBKoRm4A.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/IaKF3dmOIg5J6ndH0GggBKoRm4A.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/IaKF3dmOIg5J6ndH0GggBKoRm4A.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/IaKF3dmOIg5J6ndH0GggBKoRm4A.jpg 5852w\"},initial:animation14},toDtyncsd:{background:{alt:\"Artistic portrait with red and blue lighting creating a dramatic effect\",fit:\"fill\",pixelHeight:3901,pixelWidth:5852,positionX:\"54.5%\",positionY:\"93.4%\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/IaKF3dmOIg5J6ndH0GggBKoRm4A.jpg\",srcSet:\"https://framerusercontent.com/images/IaKF3dmOIg5J6ndH0GggBKoRm4A.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/IaKF3dmOIg5J6ndH0GggBKoRm4A.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/IaKF3dmOIg5J6ndH0GggBKoRm4A.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/IaKF3dmOIg5J6ndH0GggBKoRm4A.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/IaKF3dmOIg5J6ndH0GggBKoRm4A.jpg 5852w\"}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation11,background:{alt:\"Artistic portrait with red and blue lighting creating a dramatic effect\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+0),pixelHeight:3901,pixelWidth:5852,positionX:\"54.5%\",positionY:\"93.4%\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/IaKF3dmOIg5J6ndH0GggBKoRm4A.jpg\",srcSet:\"https://framerusercontent.com/images/IaKF3dmOIg5J6ndH0GggBKoRm4A.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/IaKF3dmOIg5J6ndH0GggBKoRm4A.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/IaKF3dmOIg5J6ndH0GggBKoRm4A.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/IaKF3dmOIg5J6ndH0GggBKoRm4A.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/IaKF3dmOIg5J6ndH0GggBKoRm4A.jpg 5852w\"},className:\"framer-1tl276o\",\"data-framer-appear-id\":\"1tl276o\",\"data-framer-name\":\"BG\",initial:animation12,optimized:true})})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-7wclla\",\"data-framer-name\":\"Numbers\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation15,__framer__exit:animation16,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-cu0ogy\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7u8fwv\",\"data-framer-name\":\"Grid\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"dFLJuFvow\"},implicitPathVariables:undefined},{href:{webPageId:\"dFLJuFvow\"},implicitPathVariables:undefined},{href:{webPageId:\"dFLJuFvow\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{width:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 1848px), 50px)`,y:undefined},toDtyncsd:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,y:(componentViewport?.y||0)+0+0+0+1e3+160+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-63ob45-container\",nodeId:\"EJhWJXtz7\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{DmH_FL2P8:resolvedLinks[2],style:{width:\"100%\"},variant:\"z6E5vZ_I1\",vvMz6sarU:\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\",zvTGbXZx3:\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\"},toDtyncsd:{DmH_FL2P8:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(UIArrowButton,{DmH_FL2P8:resolvedLinks[0],height:\"100%\",id:\"EJhWJXtz7\",layoutId:\"EJhWJXtz7\",NeQkVIvJM:\"Let\u2019s talk\",variant:\"Ie74EE_Xj\",vvMz6sarU:\"rgb(74, 127, 231)\",width:\"100%\",yHWj4nAFV:\"arrow-elbow-down-right\",zvTGbXZx3:\"rgb(255, 255, 255)\"})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-v1szlu\",\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation17,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1t5qoig\",\"data-styles-preset\":\"IAEAiqtru\",style:{\"--framer-text-alignment\":\"left\"},children:\"Our work speaks through numbers. Here\u2019s what we\u2019ve achieved so far.\"})}),className:\"framer-5hxscb\",\"data-framer-name\":\"Our work speaks through numbers. Here\u2019s what we\u2019ve achieved so far.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tn9b2u\",\"data-framer-name\":\"Items\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{width:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 1848px), 50px)`,y:undefined},toDtyncsd:{width:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1848px) - 20px) / 2, 50px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:242,width:`max((min(${componentViewport?.width||\"100vw\"} - 72px, 1848px) - 60px) / 4, 50px)`,y:(componentViewport?.y||0)+0+0+0+1e3+160+0+0+170.6+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-135b06k-container\",nodeId:\"uKIp8RF8y\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{variant:\"GafEYaEBD\"},toDtyncsd:{variant:\"cgtZ872x4\"}},children:/*#__PURE__*/_jsx(NumbersItem,{BU4_wyR9A:100,ezNYwgiIW:\"Content and Design Strategy Experiences Launched\",height:\"100%\",id:\"uKIp8RF8y\",layoutId:\"uKIp8RF8y\",MTE4RiHaV:\"Tailored digital storefronts that convert and captivate.\",OhLeOem3o:80,style:{width:\"100%\"},uvfNqUND5:\"+\",variant:\"rU6L3C7CP\",width:\"100%\",XbDSLtZLO:\"integer\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{width:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 1848px), 50px)`,y:undefined},toDtyncsd:{width:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1848px) - 20px) / 2, 50px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:242,width:`max((min(${componentViewport?.width||\"100vw\"} - 72px, 1848px) - 60px) / 4, 50px)`,y:(componentViewport?.y||0)+0+0+0+1e3+160+0+0+170.6+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bof1so-container\",nodeId:\"yTnHgnGCA\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{variant:\"GafEYaEBD\"},toDtyncsd:{variant:\"cgtZ872x4\"}},children:/*#__PURE__*/_jsx(NumbersItem,{BU4_wyR9A:1.5,ezNYwgiIW:\"Users Engaged\",height:\"100%\",id:\"yTnHgnGCA\",layoutId:\"yTnHgnGCA\",MTE4RiHaV:\"Our user-centered designs power seamless journeys across the globe.\",OhLeOem3o:80,style:{width:\"100%\"},uvfNqUND5:\"M+\",variant:\"rU6L3C7CP\",width:\"100%\",XbDSLtZLO:\"decimal\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{width:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 1848px), 50px)`,y:undefined},toDtyncsd:{width:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1848px) - 20px) / 2, 50px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:242,width:`max((min(${componentViewport?.width||\"100vw\"} - 72px, 1848px) - 60px) / 4, 50px)`,y:(componentViewport?.y||0)+0+0+0+1e3+160+0+0+170.6+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-11zt7bn-container\",nodeId:\"cimfQ68Io\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{variant:\"GafEYaEBD\"},toDtyncsd:{variant:\"cgtZ872x4\"}},children:/*#__PURE__*/_jsx(NumbersItem,{BU4_wyR9A:98,ezNYwgiIW:\"Client satisfaction rate\",height:\"100%\",id:\"cimfQ68Io\",layoutId:\"cimfQ68Io\",MTE4RiHaV:\"We build long-term partnerships through proven results.\",OhLeOem3o:15,style:{width:\"100%\"},uvfNqUND5:\"%\",variant:\"rU6L3C7CP\",width:\"100%\",XbDSLtZLO:\"integer\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{width:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 1848px), 50px)`,y:undefined},toDtyncsd:{width:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1848px) - 20px) / 2, 50px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:242,width:`max((min(${componentViewport?.width||\"100vw\"} - 72px, 1848px) - 60px) / 4, 50px)`,y:(componentViewport?.y||0)+0+0+0+1e3+160+0+0+170.6+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1asny8-container\",nodeId:\"xbfCL0csL\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{variant:\"GafEYaEBD\"},toDtyncsd:{variant:\"cgtZ872x4\"}},children:/*#__PURE__*/_jsx(NumbersItem,{BU4_wyR9A:10,ezNYwgiIW:\"Years of Creative & Technical Expertise\",height:\"100%\",id:\"xbfCL0csL\",layoutId:\"xbfCL0csL\",MTE4RiHaV:\"A decade of delivering bold, high-performance digital solutions.\",OhLeOem3o:150,style:{width:\"100%\"},uvfNqUND5:\"+\",variant:\"rU6L3C7CP\",width:\"100%\",XbDSLtZLO:\"integer\"})})})})})]})]})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-xch8uj\",\"data-framer-name\":\"Services\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-49x5cw\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation18,__framer__exit:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-15w7kz1\",\"data-framer-name\":\"Top\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{y:undefined},toDtyncsd:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:26,y:(componentViewport?.y||0)+0+0+0+1632.6+0+0+36+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1l9ei7f-container\",nodeId:\"WPjzPOuqn\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Logo,{bkkXyXBrz:\"0px\",height:\"100%\",id:\"WPjzPOuqn\",layoutId:\"WPjzPOuqn\",V3Qt9yDai:\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{y:undefined},toDtyncsd:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:18,y:(componentViewport?.y||0)+0+0+0+1632.6+0+0+36+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-o7npay-container\",nodeId:\"T_R8Vr5uA\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(UICategory,{ce3V1WO4y:\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\",height:\"100%\",id:\"T_R8Vr5uA\",layoutId:\"T_R8Vr5uA\",N3gNITbco:\"Services\",width:\"100%\"})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uo7po2\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1848px)`,y:undefined},toDtyncsd:{width:`min(${componentViewport?.width||\"100vw\"} - 64px, 1848px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:903,width:`min(${componentViewport?.width||\"100vw\"} - 72px, 1848px)`,y:(componentViewport?.y||0)+0+0+0+1632.6+0+0+36+176+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-8jh6fz-container\",nodeId:\"TP6VXojlv\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{variant:\"y1cmM3CL5\"},toDtyncsd:{variant:\"TLxLam4YZ\"}},children:/*#__PURE__*/_jsx(ServicesItems,{AChBv6mnx:\"Social Media\",AtsGqKbqe:addImageAlt({pixelHeight:434,pixelWidth:599,src:\"https://framerusercontent.com/images/F5zSpVx8lP6Sy03URQXBu2RRUbg.jpg\",srcSet:\"https://framerusercontent.com/images/F5zSpVx8lP6Sy03URQXBu2RRUbg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/F5zSpVx8lP6Sy03URQXBu2RRUbg.jpg 599w\"},\"\"),DP3k2sIwB:\"\",DvMnYDgLq:\"\",dym8aGlmH:\"We craft bold social identities that spark connection and drive engagement. Helping your brand stand out, stay consistent, and truly resonate with your audience, one post at a time.\",dYspAHvCn:\"\",gRgZAVMwJ:addImageAlt({pixelHeight:434,pixelWidth:599,src:\"https://framerusercontent.com/images/AlJTmhoexT1QmxuwZ7OiLjeKtUM.jpg\",srcSet:\"https://framerusercontent.com/images/AlJTmhoexT1QmxuwZ7OiLjeKtUM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/AlJTmhoexT1QmxuwZ7OiLjeKtUM.jpg 599w\"},\"\"),height:\"100%\",id:\"TP6VXojlv\",kGMjQGWFg:addImageAlt({pixelHeight:434,pixelWidth:599,src:\"https://framerusercontent.com/images/SVNjJOBLJO0tL5qGNY8CExU1fA.jpg\",srcSet:\"https://framerusercontent.com/images/SVNjJOBLJO0tL5qGNY8CExU1fA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/SVNjJOBLJO0tL5qGNY8CExU1fA.jpg 599w\"},\"\"),L5bVOjC54:addImageAlt({pixelHeight:434,pixelWidth:599,src:\"https://framerusercontent.com/images/T5XSyGg3skqWFq4gynSvi2wGqHU.jpg\",srcSet:\"https://framerusercontent.com/images/T5XSyGg3skqWFq4gynSvi2wGqHU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/T5XSyGg3skqWFq4gynSvi2wGqHU.jpg 599w\"},\"\"),layoutId:\"TP6VXojlv\",nfr3_vd4_:\"We build standout eCommerce brands that connect and convert. Crafting impactful digital identities that set you apart and turn browsers into loyal customers.\",rd_VK8DcK:\"Design support\",style:{width:\"100%\"},T3Zvj4lLt:\"We provide ongoing design support that strengthens your brand and keeps you visually consistent. From daily assets to big campaigns, we help you stay polished, on-brand, and ready to impress.\",u2WQNcukZ:\"We design high-impact emails that reflect your brand and drive results. Bringing your identity to life in the inbox with engaging, conversion-focused designs that truly connect.\",variant:\"vl7fPkW6x\",width:\"100%\",Xgqdpwxoc:\"eCommerce\",Y7m9L8sgJ:\"Email Design\",yIZLGI3IM:\"\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12o9qbd\",\"data-framer-name\":\"Link\",children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-mcjrvm hidden-233qk8\",\"data-framer-name\":\"filler\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lkgyhh\",\"data-framer-name\":\"Link container\"})]})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{y:undefined},toDtyncsd:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+3037.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-6e3kvj-container\",nodeId:\"ySPyJARcU\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{variant:\"JQZ30bDwJ\"}},children:/*#__PURE__*/_jsx(LogoCarousel,{height:\"100%\",id:\"ySPyJARcU\",layoutId:\"ySPyJARcU\",style:{width:\"100%\"},variant:\"TyCkGq4e0\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-wfeje\",\"data-framer-name\":\"Team\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1doveij\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation18,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-mh4amm\",\"data-framer-name\":\"Top\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{y:undefined},toDtyncsd:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:26,y:(componentViewport?.y||0)+0+0+0+3237.6+0+0+36+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1uw1s80-container\",nodeId:\"dzPTO_M8i\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Logo,{bkkXyXBrz:\"0px\",height:\"100%\",id:\"dzPTO_M8i\",layoutId:\"dzPTO_M8i\",V3Qt9yDai:\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{y:undefined},toDtyncsd:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:65,y:(componentViewport?.y||0)+0+0+0+3237.6+0+0+36+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-493y8r-container\",nodeId:\"NLc7Jg1G5\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{variant:\"jMWPy6G8Y\"}},children:/*#__PURE__*/_jsx(TeamAvatar,{dGWMhyRCs:addImageAlt({pixelHeight:80,pixelWidth:80,src:\"https://framerusercontent.com/images/ZXCpA0RMgk9zRirfK6axVANy0.jpg\"},\"Fashion portrait photography\"),fwD6acpNS:addImageAlt({pixelHeight:80,pixelWidth:80,src:\"https://framerusercontent.com/images/ayt0nYDzrIv9bDydrpvgxci9tQ.jpg\"},\"Fashion portrait photography\"),H0Oo1Mfv9:addImageAlt({pixelHeight:80,pixelWidth:80,src:\"https://framerusercontent.com/images/WrKcjAfnmz73TNCDVcgUr6Xe1I.jpg\"},\"Fashion portrait photography\"),height:\"100%\",id:\"NLc7Jg1G5\",IYnqoNnsD:\"20+\",K01rPaGiO:\"var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12))\",layoutId:\"NLc7Jg1G5\",RDM7oqG69:{borderColor:\"rgb(255, 255, 255)\",borderStyle:\"solid\",borderWidth:3},variant:\"UMGTZZ0f6\",vNAo0sswR:addImageAlt({pixelHeight:80,pixelWidth:80,src:\"https://framerusercontent.com/images/ZckrSs9on0I8ygbtlBrvICVxt0.jpg\"},\"Fashion portrait photography\"),width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-unwsa7\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__animate:{transition:transition10},__framer__enter:animation17,__framer__exit:undefined}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation15,__framer__exit:animation20,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1nnrt9k\",\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1rle4b8\",\"data-styles-preset\":\"APPdj1VEF\",style:{\"--framer-text-color\":\"rgba(255, 255, 255, 0.6)\"},children:[\"A diverse group of \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"creators, strategists, and developers\"}),\" driven by a shared passion for crafting impactful digital experiences.\"]})}),className:\"framer-1oqoo67\",\"data-framer-name\":\"A diverse group of creators, strategists, and developers driven by a shared passion for crafting impactful digital experiences.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation21,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-129dri9\",\"data-framer-name\":\"Numbers\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1csplbm\",\"data-framer-name\":\"Items\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1848px)`,y:undefined},toDtyncsd:{width:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1848px) - 40px) / 3, 1px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:82,width:`max((max((min(${componentViewport?.width||\"100vw\"} - 72px, 1848px) - 20px) * 0.75, 1px) - 40px) / 3, 1px)`,y:(componentViewport?.y||0)+0+0+0+3237.6+0+0+36+482.6+0+189.4+0+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation17,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1}},children:/*#__PURE__*/_jsx(ContainerWithFX,{className:\"framer-4wsqim-container\",nodeId:\"d41uwvl_s\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{variant:\"k8_Zk7qCw\"}},children:/*#__PURE__*/_jsx(TeamItem,{height:\"100%\",id:\"d41uwvl_s\",layoutId:\"d41uwvl_s\",s0pskHPgi:\"3\",style:{width:\"100%\"},sUuW11Svk:\"and strategists\",variant:\"sARX1h65q\",width:\"100%\",xdRQ8fRTN:\"Creative thinkers\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1848px)`,y:undefined},toDtyncsd:{width:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1848px) - 40px) / 3, 1px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:82,width:`max((max((min(${componentViewport?.width||\"100vw\"} - 72px, 1848px) - 20px) * 0.75, 1px) - 40px) / 3, 1px)`,y:(componentViewport?.y||0)+0+0+0+3237.6+0+0+36+482.6+0+189.4+0+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation17,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1}},children:/*#__PURE__*/_jsx(ContainerWithFX,{className:\"framer-tndojr-container\",nodeId:\"e_YQTlNav\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{variant:\"k8_Zk7qCw\"}},children:/*#__PURE__*/_jsx(TeamItem,{height:\"100%\",id:\"e_YQTlNav\",layoutId:\"e_YQTlNav\",s0pskHPgi:\"7\",style:{width:\"100%\"},sUuW11Svk:\"attention to detail\",variant:\"sARX1h65q\",width:\"100%\",xdRQ8fRTN:\"Skilled developers with \"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1848px)`,y:undefined},toDtyncsd:{width:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1848px) - 40px) / 3, 1px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:82,width:`max((max((min(${componentViewport?.width||\"100vw\"} - 72px, 1848px) - 20px) * 0.75, 1px) - 40px) / 3, 1px)`,y:(componentViewport?.y||0)+0+0+0+3237.6+0+0+36+482.6+0+189.4+0+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation17,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1}},children:/*#__PURE__*/_jsx(ContainerWithFX,{className:\"framer-au6363-container\",nodeId:\"yfllcsdtN\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{variant:\"k8_Zk7qCw\"}},children:/*#__PURE__*/_jsx(TeamItem,{height:\"100%\",id:\"yfllcsdtN\",layoutId:\"yfllcsdtN\",s0pskHPgi:\"9\",style:{width:\"100%\"},sUuW11Svk:\"focused on user experience\",variant:\"sARX1h65q\",width:\"100%\",xdRQ8fRTN:\"Experienced designers \"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-tpau29\",\"data-framer-name\":\"Button\"})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__styleTransformEffectEnabled:undefined,background:{alt:\"Three people sitting on a couch in a room looking at mobile devices\",fit:\"fill\",pixelHeight:3648,pixelWidth:5472,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/XHPz0EGyDHGrkXluB5Ry0Qp96U.jpg\",srcSet:\"https://framerusercontent.com/images/XHPz0EGyDHGrkXluB5Ry0Qp96U.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/XHPz0EGyDHGrkXluB5Ry0Qp96U.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/XHPz0EGyDHGrkXluB5Ry0Qp96U.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/XHPz0EGyDHGrkXluB5Ry0Qp96U.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/XHPz0EGyDHGrkXluB5Ry0Qp96U.jpg 5472w\"}},toDtyncsd:{background:{alt:\"Three people sitting on a couch in a room looking at mobile devices\",fit:\"fill\",pixelHeight:1080,pixelWidth:1920,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/qNFMjq4OPL3IqHcl7D0sW5wXlU.jpg\",srcSet:\"https://framerusercontent.com/images/qNFMjq4OPL3IqHcl7D0sW5wXlU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/qNFMjq4OPL3IqHcl7D0sW5wXlU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/qNFMjq4OPL3IqHcl7D0sW5wXlU.jpg 1920w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,x:0,y:-270}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,background:{alt:\"Three people sitting on a couch in a room looking at mobile devices\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+3237.6+0),pixelHeight:3648,pixelWidth:5472,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/XHPz0EGyDHGrkXluB5Ry0Qp96U.jpg\",srcSet:\"https://framerusercontent.com/images/XHPz0EGyDHGrkXluB5Ry0Qp96U.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/XHPz0EGyDHGrkXluB5Ry0Qp96U.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/XHPz0EGyDHGrkXluB5Ry0Qp96U.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/XHPz0EGyDHGrkXluB5Ry0Qp96U.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/XHPz0EGyDHGrkXluB5Ry0Qp96U.jpg 5472w\"},className:\"framer-u8frfl\"})})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-9uktbq\",\"data-framer-name\":\"Process\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z1ykxh\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__styleAppearEffectEnabled:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation15,__framer__exit:animation20,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-wpoupd\",\"data-framer-name\":\"Left\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation17,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{className:\"framer-1ebndbp\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1usw2w6\",\"data-styles-preset\":\"zSSdVVb1R\",style:{\"--framer-text-alignment\":\"left\"},children:\"Our process\"})}),className:\"framer-4mz7x9\",\"data-framer-name\":\"Your goals, our priority\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1raml1m\",\"data-styles-preset\":\"hOrfMQMhw\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgba(12, 12, 12, 0.6)\"},children:\"Our four-step process keeps you informed and involved at every stage, ensuring the final result meets your goals and resonates with your audience.\"})}),className:\"framer-ia1bsg\",\"data-framer-name\":\"From concept to launch, we're committed to your success with rapid response times and personalized attention to detail.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"dFLJuFvow\"},implicitPathVariables:undefined},{href:{webPageId:\"dFLJuFvow\"},implicitPathVariables:undefined},{href:{webPageId:\"dFLJuFvow\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1848px)`,y:undefined},toDtyncsd:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,y:(componentViewport?.y||0)+0+0+0+4087.6+104+0+0+0+375.92,children:/*#__PURE__*/_jsx(Container,{className:\"framer-768sct-container\",nodeId:\"B3cxR060r\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{DmH_FL2P8:resolvedLinks1[2],style:{width:\"100%\"},variant:\"z6E5vZ_I1\",vvMz6sarU:\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\",zvTGbXZx3:\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\"},toDtyncsd:{DmH_FL2P8:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(UIArrowButton,{DmH_FL2P8:resolvedLinks1[0],height:\"100%\",id:\"B3cxR060r\",layoutId:\"B3cxR060r\",NeQkVIvJM:\"Schedule a consultation\",variant:\"Ie74EE_Xj\",vvMz6sarU:\"rgb(74, 127, 231)\",width:\"100%\",yHWj4nAFV:\"arrow-elbow-down-right\",zvTGbXZx3:\"rgb(255, 255, 255)\"})})})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18uagoo\",\"data-framer-name\":\"Items\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1848px)`,y:undefined},toDtyncsd:{width:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1848px) - 20px) / 2, 1px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:107,width:`max((min(${componentViewport?.width||\"100vw\"} - 72px, 1848px) - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+4087.6+104+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-zvvnvk-container\",nodeId:\"f57N7CsQ0\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{variant:\"gf_Ge1OgG\"}},children:/*#__PURE__*/_jsx(ProcessItem,{DeMGKHWWt:\"Choose the plan that best fits your needs. From a solid foundation to a fully optimized solution\",height:\"100%\",id:\"f57N7CsQ0\",layoutId:\"f57N7CsQ0\",style:{width:\"100%\"},variant:\"m9jSyhRqg\",width:\"100%\",XRBqy2pAy:\"01\",YEVw3BM0l:\"Discovery & Strategy\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1848px)`,y:undefined},toDtyncsd:{width:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1848px) - 20px) / 2, 1px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:107,width:`max((min(${componentViewport?.width||\"100vw\"} - 72px, 1848px) - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+4087.6+104+0+0+0+157,children:/*#__PURE__*/_jsx(Container,{className:\"framer-14ibmsa-container\",nodeId:\"B_AByxHcJ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{variant:\"gf_Ge1OgG\"}},children:/*#__PURE__*/_jsx(ProcessItem,{DeMGKHWWt:\"Our designers bring your vision to life with wireframes and prototypes, focusing on an engaging user experience.\",height:\"100%\",id:\"B_AByxHcJ\",layoutId:\"B_AByxHcJ\",style:{width:\"100%\"},variant:\"m9jSyhRqg\",width:\"100%\",XRBqy2pAy:\"02\",YEVw3BM0l:\"Design & Prototyping\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1848px)`,y:undefined},toDtyncsd:{width:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1848px) - 20px) / 2, 1px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:107,width:`max((min(${componentViewport?.width||\"100vw\"} - 72px, 1848px) - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+4087.6+104+0+0+0+314,children:/*#__PURE__*/_jsx(Container,{className:\"framer-zgjz6z-container\",nodeId:\"g7XfD8nZL\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{variant:\"gf_Ge1OgG\"}},children:/*#__PURE__*/_jsx(ProcessItem,{DeMGKHWWt:\"Choose the plan that best fits your needs. From a solid foundation to a fully optimized solution.\",height:\"100%\",id:\"g7XfD8nZL\",layoutId:\"g7XfD8nZL\",style:{width:\"100%\"},variant:\"m9jSyhRqg\",width:\"100%\",XRBqy2pAy:\"03\",YEVw3BM0l:\"Development & Integration\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1848px)`,y:undefined},toDtyncsd:{width:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1848px) - 20px) / 2, 1px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:107,width:`max((min(${componentViewport?.width||\"100vw\"} - 72px, 1848px) - 20px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+0+4087.6+104+0+0+0+471,children:/*#__PURE__*/_jsx(Container,{className:\"framer-2fii4d-container\",nodeId:\"pYM3oE4kB\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{variant:\"gf_Ge1OgG\"}},children:/*#__PURE__*/_jsx(ProcessItem,{DeMGKHWWt:\"After testing and final approvals, we launch the site and provide ongoing support.\",height:\"100%\",id:\"pYM3oE4kB\",layoutId:\"pYM3oE4kB\",style:{width:\"100%\"},variant:\"m9jSyhRqg\",width:\"100%\",XRBqy2pAy:\"04\",YEVw3BM0l:\"Launch & Support\"})})})})})]})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-a91qzl\",\"data-framer-name\":\"Testimonials\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-160yarg\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__threshold:.5}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation15,__framer__exit:animation20,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ebhyme\",\"data-border\":true,\"data-framer-name\":\"1\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1v1iijn\",\"data-border\":true,\"data-framer-name\":\"Corner\",style:{rotate:-90}}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jbd1ze\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{y:undefined},toDtyncsd:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:26,y:(componentViewport?.y||0)+0+0+0+4825.6+80+0+0+0+40+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hkn05x-container\",nodeId:\"ptxjEM8e0\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Logo,{bkkXyXBrz:\"0px\",height:\"100%\",id:\"ptxjEM8e0\",layoutId:\"ptxjEM8e0\",V3Qt9yDai:\"var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12))\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1t5qoig\",\"data-styles-preset\":\"IAEAiqtru\",children:[\"Success\",/*#__PURE__*/_jsx(\"br\",{}),\"stories\"]})}),className:\"framer-bd46t4\",\"data-framer-name\":\"Success stories\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1raml1m\",\"data-styles-preset\":\"hOrfMQMhw\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgba(12, 12, 12, 0.6)\"},children:\"Our work speaks for itself, but our clients say it even better.\"})}),className:\"framer-wglgnj\",\"data-framer-name\":\"Our work speaks for itself, but our clients say it even better.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__animate:{transition:transition11},__framer__exit:animation20,__framer__threshold:.5}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation15,__framer__exit:animation16,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-x2ck6z\",\"data-framer-name\":\"2\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rf2dkq\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1dmjd5e\",\"data-styles-preset\":\"q35quwzCc\",children:\"They helped us shape our brand identity from scratch, giving us a website that perfectly reflects our values.\"})}),className:\"framer-1m9kmth\",\"data-framer-name\":\"They helped us shape our brand identity from scratch, giving us a website that perfectly reflects our values.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zlt8us\",\"data-border\":true,\"data-framer-name\":\"Name\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-jnye1g\",\"data-styles-preset\":\"xNIXLfFSf\",style:{\"--framer-text-color\":\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\"},children:\"Sarah Morgan\"})}),className:\"framer-13so4od\",\"data-framer-name\":\"Sarah Morgan\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-plhywe\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hahlh8\",\"data-styles-preset\":\"sw01V2bJD\",style:{\"--framer-text-color\":\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\"},children:\"Founder of a Tech Startup\"})}),className:\"framer-1a5wuxk\",\"data-framer-name\":\"Founder of a Tech Startup\",fonts:[\"Inter\"],transformTemplate:transformTemplate3,verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-o1nyu7\",\"data-framer-name\":\"Gradient\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{background:{alt:\"Profile portrait with natural lighting featuring long blonde hair\",fit:\"fill\",pixelHeight:3688,pixelWidth:2459,sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 48px, 1848px) - 32px)`,src:\"https://framerusercontent.com/images/sbvkp3oVxhnvFxX2Esktsc8k4Y.jpg\",srcSet:\"https://framerusercontent.com/images/sbvkp3oVxhnvFxX2Esktsc8k4Y.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/sbvkp3oVxhnvFxX2Esktsc8k4Y.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/sbvkp3oVxhnvFxX2Esktsc8k4Y.jpg 2459w\"}},toDtyncsd:{background:{alt:\"Profile portrait with natural lighting featuring long blonde hair\",fit:\"fill\",pixelHeight:3688,pixelWidth:2459,sizes:`calc(max((min(${componentViewport?.width||\"100vw\"} - 64px, 1848px) - 20px) / 2, 50px) - 40px)`,src:\"https://framerusercontent.com/images/sbvkp3oVxhnvFxX2Esktsc8k4Y.jpg\",srcSet:\"https://framerusercontent.com/images/sbvkp3oVxhnvFxX2Esktsc8k4Y.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/sbvkp3oVxhnvFxX2Esktsc8k4Y.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/sbvkp3oVxhnvFxX2Esktsc8k4Y.jpg 2459w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Profile portrait with natural lighting featuring long blonde hair\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+4825.6+80+0+0+0+20),pixelHeight:3688,pixelWidth:2459,sizes:`calc(max((min(${componentViewport?.width||\"100vw\"} - 72px, 1848px) - 60px) / 4, 50px) - 40px)`,src:\"https://framerusercontent.com/images/sbvkp3oVxhnvFxX2Esktsc8k4Y.jpg\",srcSet:\"https://framerusercontent.com/images/sbvkp3oVxhnvFxX2Esktsc8k4Y.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/sbvkp3oVxhnvFxX2Esktsc8k4Y.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/sbvkp3oVxhnvFxX2Esktsc8k4Y.jpg 2459w\"},className:\"framer-1fhjvah\",\"data-framer-name\":\"BG 2\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{background:{alt:\"Profile portrait with natural lighting featuring long blonde hair\",fit:\"fill\",pixelHeight:3688,pixelWidth:2459,sizes:`min(${componentViewport?.width||\"100vw\"} - 48px, 1848px)`,src:\"https://framerusercontent.com/images/sbvkp3oVxhnvFxX2Esktsc8k4Y.jpg\",srcSet:\"https://framerusercontent.com/images/sbvkp3oVxhnvFxX2Esktsc8k4Y.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/sbvkp3oVxhnvFxX2Esktsc8k4Y.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/sbvkp3oVxhnvFxX2Esktsc8k4Y.jpg 2459w\"}},toDtyncsd:{background:{alt:\"Profile portrait with natural lighting featuring long blonde hair\",fit:\"fill\",pixelHeight:3688,pixelWidth:2459,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1848px) - 20px) / 2, 50px)`,src:\"https://framerusercontent.com/images/sbvkp3oVxhnvFxX2Esktsc8k4Y.jpg\",srcSet:\"https://framerusercontent.com/images/sbvkp3oVxhnvFxX2Esktsc8k4Y.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/sbvkp3oVxhnvFxX2Esktsc8k4Y.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/sbvkp3oVxhnvFxX2Esktsc8k4Y.jpg 2459w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Profile portrait with natural lighting featuring long blonde hair\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+4825.6+80+0+0+0+0),pixelHeight:3688,pixelWidth:2459,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 72px, 1848px) - 60px) / 4, 50px)`,src:\"https://framerusercontent.com/images/sbvkp3oVxhnvFxX2Esktsc8k4Y.jpg\",srcSet:\"https://framerusercontent.com/images/sbvkp3oVxhnvFxX2Esktsc8k4Y.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/sbvkp3oVxhnvFxX2Esktsc8k4Y.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/sbvkp3oVxhnvFxX2Esktsc8k4Y.jpg 2459w\"},className:\"framer-1gbwsde\",\"data-framer-name\":\"BG 1\"})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{height:60,width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1848px)`,y:undefined},toDtyncsd:{width:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1848px) - 20px) / 2, 50px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:753,width:`max((min(${componentViewport?.width||\"100vw\"} - 72px, 1848px) - 60px) / 4, 50px)`,y:(componentViewport?.y||0)+0+0+0+4825.6+80+0+0+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__animate:{transition:transition11},__framer__exit:animation20,__framer__threshold:.5}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation15,__framer__exit:animation22,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-zk3tam-container\",nodeId:\"If9IWUqPY\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{variant:\"p0HhGt1NQ\"}},children:/*#__PURE__*/_jsx(TestimoialsItem,{AM46op7Lx:\"var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, rgb(255, 255, 255))\",d4lzmm0YL:\"Customer retention\",DMTP3vKWw:\"var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12))\",F9uW9JjKI:\"+61%\",height:\"100%\",HZi8Dk5hs:\"+28%\",id:\"If9IWUqPY\",jjg85LuOE:\"var(--token-1662617d-fd18-4319-b3da-aa36e5415705, rgb(249, 69, 45))\",layoutId:\"If9IWUqPY\",qXDjeqRcY:\"Anna Karenina\",style:{height:\"100%\",width:\"100%\"},V5EvMzZAA:\"Owner of a clothing E-commerce store\",variant:\"WN0gvTTUg\",VZf4KPRV3:{borderBottomWidth:0,borderColor:\"rgba(255, 255, 255, 0.2)\",borderLeftWidth:0,borderRightWidth:0,borderStyle:\"solid\",borderTopWidth:1},width:\"100%\",y8_auQFXP:addImageAlt({pixelHeight:134,pixelWidth:134,src:\"https://framerusercontent.com/images/aWcD3Iz6LWFQERknQy3rwYGQBI.jpg\"},\"\"),ysHGQbLqA:\"We needed a full rebranding, and this agency delivered beyond our expectations. From the new logo to the website design, everything feels cohesive and professional.\",ZL3Q30CZC:\"Conversion rate\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{height:60,width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1848px)`,y:undefined},toDtyncsd:{width:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1848px) - 20px) / 2, 50px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:753,width:`max((min(${componentViewport?.width||\"100vw\"} - 72px, 1848px) - 60px) / 4, 50px)`,y:(componentViewport?.y||0)+0+0+0+4825.6+80+0+0+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__animate:{transition:transition11},__framer__exit:animation20,__framer__threshold:.5}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation15,__framer__exit:animation23,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-v0ypxc-container\",nodeId:\"dQFb4xsQD\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{variant:\"p0HhGt1NQ\"}},children:/*#__PURE__*/_jsx(TestimoialsItem,{AM46op7Lx:\"var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12))\",d4lzmm0YL:\"Customer retention\",DMTP3vKWw:\"var(--token-0fe6d6b7-818b-4083-a138-519768e5d126, rgb(245, 245, 245))\",F9uW9JjKI:\"+52%\",height:\"100%\",HZi8Dk5hs:\"+11%\",id:\"dQFb4xsQD\",jjg85LuOE:\"var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12))\",layoutId:\"dQFb4xsQD\",qXDjeqRcY:\"Andy Styles\",style:{height:\"100%\",width:\"100%\"},V5EvMzZAA:\"Founder of a Tech Startup\",variant:\"WN0gvTTUg\",VZf4KPRV3:{borderBottomWidth:0,borderColor:\"rgba(0, 0, 0, 0.2)\",borderLeftWidth:0,borderRightWidth:0,borderStyle:\"solid\",borderTopWidth:1},width:\"100%\",y8_auQFXP:addImageAlt({pixelHeight:134,pixelWidth:134,src:\"https://framerusercontent.com/images/nDtXYMMvDJ6YMQxXZSaJjxXSb8c.jpg\"},\"\"),ysHGQbLqA:\"Working with this team was a pleasure! Our sales increased by 30% in the first month. Thank you for the amazing job!\",ZL3Q30CZC:\"Conversion rate\"})})})})})})]})})]}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dsur25-container hidden-233qk8\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ET5iqXTes\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"ET5iqXTes\",intensity:10,layoutId:\"ET5iqXTes\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{animate:animation25}},children:/*#__PURE__*/_jsx(MotionSectionWithOptimizedAppearEffect,{animate:animation24,className:\"framer-a9n568\",\"data-framer-appear-id\":\"a9n568\",\"data-framer-name\":\"Form\",initial:animation3,optimized:true,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ye7gxf\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i85ofc\",\"data-framer-name\":\"1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{__framer__parallaxTransformEnabled:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:90,__perspectiveFX:false,__targetOpacity:1,className:\"framer-e9vdya\",\"data-framer-name\":\"Heading\",children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-om0c7t hidden-233qk8\",\"data-framer-name\":\"filler\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-lzby6w\",\"data-styles-preset\":\"zPBE4sevH\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"Let's talk\"})}),className:\"framer-1n5v4cs\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-129ug7w\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1618jfa\",\"data-framer-name\":\"1\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{animate:undefined,initial:undefined,optimized:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation26,className:\"framer-13ifls4\",\"data-framer-appear-id\":\"13ifls4\",\"data-framer-name\":\"Quote\",initial:animation3,optimized:true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-jnye1g\",\"data-styles-preset\":\"xNIXLfFSf\",style:{\"--framer-text-color\":\"rgba(12, 12, 12, 0.6)\"},children:\"Whether it\u2019s a new project or a quick question, we\u2019re here to connect.\"})}),className:\"framer-1y9r4p7\",\"data-framer-name\":\"We aimed to bring Vero\u2019s vision of authentic social interaction to life by focusing on seamless design and user privacy.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jxwtf\",\"data-framer-name\":\"Manager\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{background:{alt:\"Profile portrait of a man in a white shirt against a light background\",fit:\"fill\",pixelHeight:5304,pixelWidth:7952,sizes:\"50px\",src:\"https://framerusercontent.com/images/zR7lnp5MLMMMD3mx9EGbAV0GdU.jpg\",srcSet:\"https://framerusercontent.com/images/zR7lnp5MLMMMD3mx9EGbAV0GdU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/zR7lnp5MLMMMD3mx9EGbAV0GdU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/zR7lnp5MLMMMD3mx9EGbAV0GdU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/zR7lnp5MLMMMD3mx9EGbAV0GdU.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/zR7lnp5MLMMMD3mx9EGbAV0GdU.jpg 7952w\"}},toDtyncsd:{background:{alt:\"Profile portrait of a man in a white shirt against a light background\",fit:\"fill\",pixelHeight:5304,pixelWidth:7952,sizes:\"50px\",src:\"https://framerusercontent.com/images/zR7lnp5MLMMMD3mx9EGbAV0GdU.jpg\",srcSet:\"https://framerusercontent.com/images/zR7lnp5MLMMMD3mx9EGbAV0GdU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/zR7lnp5MLMMMD3mx9EGbAV0GdU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/zR7lnp5MLMMMD3mx9EGbAV0GdU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/zR7lnp5MLMMMD3mx9EGbAV0GdU.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/zR7lnp5MLMMMD3mx9EGbAV0GdU.jpg 7952w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Profile portrait of a man in a white shirt against a light background\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5914.6+0+28+0+0+171.36+0+0+0+0+0+138+88),pixelHeight:5304,pixelWidth:7952,sizes:\"50px\",src:\"https://framerusercontent.com/images/zR7lnp5MLMMMD3mx9EGbAV0GdU.jpg\",srcSet:\"https://framerusercontent.com/images/zR7lnp5MLMMMD3mx9EGbAV0GdU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/zR7lnp5MLMMMD3mx9EGbAV0GdU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/zR7lnp5MLMMMD3mx9EGbAV0GdU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/zR7lnp5MLMMMD3mx9EGbAV0GdU.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/zR7lnp5MLMMMD3mx9EGbAV0GdU.jpg 7952w\"},className:\"framer-17n1t86\",\"data-framer-name\":\"image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-80p6q3\",\"data-framer-name\":\"Frame 80\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1raml1m\",\"data-styles-preset\":\"hOrfMQMhw\",style:{\"--framer-text-color\":\"rgb(186, 186, 186)\"},children:\"Stephen\"})}),className:\"framer-57bmih\",\"data-framer-name\":\"John Taylor\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hahlh8\",\"data-styles-preset\":\"sw01V2bJD\",style:{\"--framer-text-color\":\"rgba(12, 12, 12, 0.6)\"},children:\"Member of the team\"})}),className:\"framer-1diesy\",\"data-framer-name\":\"Member of the team\",fonts:[\"Inter\"],text:I2MGBGTUTv75Tpw1Yr,verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-g1w06j\",\"data-framer-name\":\"Form\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1m0u25v\",\"data-framer-name\":\"Info\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-kmrjca\",\"data-framer-name\":\"Phone + Email\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{viewBox:\"0 0 295.05017673388375 35\"},toDtyncsd:{viewBox:\"0 0 295.05017673388375 35\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"29.288239055482098px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.07em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(186, 186, 186)\"},children:/*#__PURE__*/_jsx(Link,{href:\"mailto:hello@lyniqstudio.com\",motionChild:true,nodeId:\"IWE2CLIPU\",openInNewTab:true,relValues:[],scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-bq16ho\",\"data-styles-preset\":\"jNXIpkS6r\",children:\"hello@padadesign.com\"})})})}),className:\"framer-1gv05wk\",\"data-framer-name\":\"hello@lyniqstudio.com\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",viewBox:\"0 0 295 35\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-196y76v\",\"data-framer-name\":\"Address + Links\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-idrsp3\",\"data-framer-name\":\"Address\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1t7xg48\",\"data-framer-name\":\"1\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-175eqev\",\"data-framer-name\":\"2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(186, 186, 186)\"},children:\"Office Hours\"})}),className:\"framer-1tw46p0\",\"data-framer-name\":\"Office Hours\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-jnye1g\",\"data-styles-preset\":\"xNIXLfFSf\",style:{\"--framer-text-color\":\"rgba(12, 12, 12, 0.6)\"},children:\"Monday to Friday: 9:00 AM \u2013 6:00 PM\"})}),className:\"framer-vfv1m8\",\"data-framer-name\":\"Monday to Friday: 9:00 AM \u2013 6:00 PM\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qoz8bl\",\"data-framer-name\":\"Social\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:25,children:/*#__PURE__*/_jsx(Container,{className:\"framer-5v9t50-container\",nodeId:\"UZXhAUOfN\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(UISocialLink,{height:\"100%\",id:\"UZXhAUOfN\",layoutId:\"UZXhAUOfN\",nwkMnZeTZ:\"var(--token-1662617d-fd18-4319-b3da-aa36e5415705, rgb(249, 69, 45))\",ROqHCutRR:\"rgb(186, 186, 186)\",Rtgbg4J5D:\"https://www.linkedin.com/company/bypada\",W4B7i4tPx:\"rgb(61, 166, 252)\",width:\"100%\",Z6pc2VMPJ:\"LinkedIn\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:25,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1r6zmm5-container\",nodeId:\"T5SVGfs9S\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(UISocialLink,{height:\"100%\",id:\"T5SVGfs9S\",layoutId:\"T5SVGfs9S\",nwkMnZeTZ:\"var(--token-1662617d-fd18-4319-b3da-aa36e5415705, rgb(249, 69, 45))\",ROqHCutRR:\"rgb(186, 186, 186)\",Rtgbg4J5D:\"https://www.instagram.com/padadesignlab?igsh=eHczM2FmY2c2NDdj&utm_source=qr\",W4B7i4tPx:\"rgb(61, 166, 252)\",width:\"100%\",Z6pc2VMPJ:\"Instagram\"})})})]})]})]}),/*#__PURE__*/_jsx(FormContainer,{action:\"https://api.framer.com/forms/v1/forms/e15fa177-99dc-43e2-9a3f-004d882c6e44/submit\",className:\"framer-1g1u2td\",nodeId:\"Rb6wayjqg\",redirectUrl:{webPageId:\"FbOITtSyU\"},children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-icjkbm\",\"data-framer-name\":\"Inputs\",children:[/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-14x0pi0\",inputName:\"Name\",placeholder:\"Name *\",required:true,type:\"text\"}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-fietbu\",inputName:\"E-mail\",placeholder:\"E-mail *\",required:true,type:\"email\"}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-whuhxd\",inputName:\"Phone\",placeholder:\"Phone\",required:false,type:\"tel\"}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-tp1d5f\",inputName:\"Message\",placeholder:\"Message (Tell us about your project)\",required:false,type:\"textarea\"})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p4sQvxEP4:{y:undefined},toDtyncsd:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,y:(componentViewport?.y||0)+0+5914.6+0+28+0+0+171.36+0+0+70+0+372,children:/*#__PURE__*/_jsx(Container,{className:\"framer-nv9mfd-container\",nodeId:\"leolXYY56\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(UIArrowButton,{height:\"100%\",id:\"leolXYY56\",layoutId:\"leolXYY56\",NeQkVIvJM:\"Get in touch\",type:\"submit\",variant:formVariants(formState,{pending:\"YBW8tBeK1\",success:\"wKwDQmM1Z\"},\"Ie74EE_Xj\"),vvMz6sarU:\"rgb(74, 127, 231)\",width:\"100%\",yHWj4nAFV:\"arrow-elbow-down-right\",zvTGbXZx3:\"rgb(186, 186, 186)\"})})})})]})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-161htoh\",\"data-framer-name\":\"2\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-o20z4c\",\"data-framer-name\":\"Quote\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1w5ktr9\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2tyqn8\",\"data-styles-preset\":\"yzgpMcORk\",children:\"We\u2019d love to hear from you. Whether you\u2019re starting a new project, need help refining an idea, or just want to say hello, we\u2019re here to help.\"})}),className:\"framer-1w6433w\",\"data-framer-name\":\"This project reinforced the importance of building user-centered features that offer value beyond aesthetics, especially in social networking. The app\u2019s launch exceeded initial user growth targets, and the client received positive feedback on the app\u2019s intuitive design and ad-free experience.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1dmjd5e\",\"data-styles-preset\":\"q35quwzCc\",style:{\"--framer-text-color\":\"rgba(12, 12, 12, 0.6)\"},children:\"Fill out the form below or reach out via email\u2014we\u2019ll get back to you as soon as possible. Let\u2019s create something great together.\"})}),className:\"framer-vrqusx\",\"data-framer-name\":\"We aimed to bring Vero\u2019s vision of authentic social interaction to life by focusing on seamless design and user privacy.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-2R7s4.framer-lux5qc, .framer-2R7s4 .framer-lux5qc { display: block; }\",\".framer-2R7s4.framer-72rtr7 { 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: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-2R7s4 .framer-fyydzk-container { flex: none; height: auto; left: 0px; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-effect-override, transform); z-index: 9; }\",\".framer-2R7s4 .framer-18ia252 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-end; left: 50%; min-height: 77px; mix-blend-mode: difference; overflow: hidden; padding: 0px; position: absolute; top: 22px; transform: translateX(-50%); width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 2; }\",\".framer-2R7s4 .framer-1ojost9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-2R7s4 .framer-fbtq8l { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100vh; justify-content: flex-end; overflow: hidden; padding: 0px 36px 56px 36px; position: sticky; top: 0px; width: 100%; z-index: 1; }\",\".framer-2R7s4 .framer-1n4wfg3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-2R7s4 .framer-1s8uq1m { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-2R7s4 .framer-1hlm8z3 { 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: 0px; position: relative; width: 60%; }\",\".framer-2R7s4 .framer-8xowj5, .framer-2R7s4 .framer-1po5jnl { --framer-paragraph-spacing: 0px; -webkit-user-select: none; flex: none; height: auto; opacity: 0; position: relative; user-select: none; white-space: pre; width: 100%; z-index: 1; }\",\".framer-2R7s4 .framer-17f7gii { --framer-paragraph-spacing: 0px; -webkit-user-select: none; flex: none; height: auto; position: absolute; right: -320px; top: -18%; transform: translateY(-50%); user-select: none; white-space: pre; width: 153%; will-change: var(--framer-will-change-effect-override, transform); z-index: 2; }\",\".framer-2R7s4 .framer-8axwti { align-content: flex-end; align-items: flex-end; 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-2R7s4 .framer-1d7ihmp { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-2R7s4 .framer-1r8tsb6 { align-self: stretch; flex: none; height: auto; overflow: hidden; pointer-events: none; position: relative; width: 15%; }\",\".framer-2R7s4 .framer-1bmi8eo { 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: 0px; position: relative; width: 68%; }\",\".framer-2R7s4 .framer-skcre { --framer-paragraph-spacing: 0px; -webkit-user-select: none; flex: none; height: auto; mix-blend-mode: overlay; position: absolute; right: 37px; top: -47%; transform: translateY(-50%); user-select: none; white-space: pre; width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 2; }\",\".framer-2R7s4 .framer-1tl276o { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-effect-override, transform); z-index: 0; }\",\".framer-2R7s4 .framer-7wclla { align-content: center; align-items: center; background-color: var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 160px 36px 60px 36px; position: relative; width: 100%; z-index: 2; }\",\".framer-2R7s4 .framer-cu0ogy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; max-width: 1848px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-2R7s4 .framer-7u8fwv { display: grid; flex: none; gap: 20px; grid-auto-rows: min-content; grid-template-columns: repeat(4, minmax(50px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-2R7s4 .framer-63ob45-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: fit-content; }\",\".framer-2R7s4 .framer-v1szlu { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; grid-column: span 3; height: min-content; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-2R7s4 .framer-5hxscb { --framer-paragraph-spacing: 0px; --framer-text-wrap-override: balance; flex: 1 0 0px; height: auto; max-width: 840px; position: relative; width: 1px; }\",\".framer-2R7s4 .framer-1tn9b2u { display: grid; flex: none; gap: 20px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(4, minmax(50px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-2R7s4 .framer-135b06k-container, .framer-2R7s4 .framer-1bof1so-container, .framer-2R7s4 .framer-11zt7bn-container, .framer-2R7s4 .framer-1asny8-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 100%; }\",\".framer-2R7s4 .framer-xch8uj { align-content: center; align-items: center; background-color: var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, #0c0c0c); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 36px 180px 36px; position: relative; width: 100%; z-index: 2; }\",\".framer-2R7s4 .framer-49x5cw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 150px; height: min-content; justify-content: flex-start; max-width: 1848px; overflow: visible; padding: 36px 0px 0px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-2R7s4 .framer-15w7kz1, .framer-2R7s4 .framer-mh4amm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-2R7s4 .framer-1l9ei7f-container, .framer-2R7s4 .framer-o7npay-container, .framer-2R7s4 .framer-1uw1s80-container, .framer-2R7s4 .framer-493y8r-container, .framer-2R7s4 .framer-768sct-container, .framer-2R7s4 .framer-1hkn05x-container, .framer-2R7s4 .framer-1dsur25-container, .framer-2R7s4 .framer-5v9t50-container, .framer-2R7s4 .framer-1r6zmm5-container, .framer-2R7s4 .framer-nv9mfd-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-2R7s4 .framer-uo7po2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 110px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-2R7s4 .framer-8jh6fz-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-2R7s4 .framer-12o9qbd, .framer-2R7s4 .framer-129dri9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-2R7s4 .framer-mcjrvm { align-self: stretch; flex: 4 0 0px; height: auto; overflow: hidden; position: relative; width: 1px; }\",\".framer-2R7s4 .framer-1lkgyhh { align-content: center; align-items: center; display: flex; flex: 8 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; min-height: 29px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-2R7s4 .framer-6e3kvj-container { flex: none; height: auto; position: relative; width: 100%; z-index: 2; }\",\".framer-2R7s4 .framer-wfeje { align-content: center; align-items: center; background-color: #000000; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 85vh; justify-content: flex-start; overflow: hidden; padding: 0px 36px 60px 36px; position: relative; width: 100%; z-index: 2; }\",\".framer-2R7s4 .framer-1doveij { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 1px; justify-content: space-between; max-width: 1848px; overflow: visible; padding: 36px 0px 0px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-2R7s4 .framer-unwsa7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 140px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-2R7s4 .framer-1nnrt9k { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-2R7s4 .framer-1oqoo67 { --framer-paragraph-spacing: 0px; --framer-text-wrap-override: balance; flex: none; height: auto; max-width: 520px; position: relative; width: 100%; }\",\".framer-2R7s4 .framer-1csplbm { align-content: center; align-items: center; display: flex; flex: 3 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-2R7s4 .framer-4wsqim-container, .framer-2R7s4 .framer-tndojr-container, .framer-2R7s4 .framer-au6363-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-2R7s4 .framer-tpau29 { align-content: flex-end; align-items: flex-end; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: auto; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-2R7s4 .framer-u8frfl { -webkit-mask: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0.9) 28.000000000000004%, rgba(0, 0, 0, 0.05) 100%) add; bottom: 0px; flex: none; gap: 10px; left: 0px; mask: linear-gradient(180deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 28.000000000000004%, rgba(0, 0, 0, 0.05) 100%) add; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-2R7s4 .framer-9uktbq { align-content: center; align-items: center; background-color: var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 104px 36px 56px 36px; position: relative; width: 100%; z-index: 2; }\",\".framer-2R7s4 .framer-z1ykxh { 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: center; max-width: 1848px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-2R7s4 .framer-wpoupd { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 70px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-2R7s4 .framer-1ebndbp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-2R7s4 .framer-4mz7x9, .framer-2R7s4 .framer-bd46t4, .framer-2R7s4 .framer-1m9kmth, .framer-2R7s4 .framer-13so4od, .framer-2R7s4 .framer-57bmih, .framer-2R7s4 .framer-1diesy, .framer-2R7s4 .framer-1tw46p0 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-2R7s4 .framer-ia1bsg { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 510px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-2R7s4 .framer-18uagoo { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-2R7s4 .framer-zvvnvk-container, .framer-2R7s4 .framer-14ibmsa-container, .framer-2R7s4 .framer-zgjz6z-container, .framer-2R7s4 .framer-2fii4d-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\".framer-2R7s4 .framer-a91qzl { align-content: center; align-items: center; background-color: var(--token-d74d16c5-23aa-4649-a2ad-0da8c936dade, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 80px 36px 56px 36px; position: relative; width: 100%; z-index: 2; }\",\".framer-2R7s4 .framer-160yarg { display: grid; flex: none; gap: 20px; grid-auto-rows: min-content; grid-template-columns: repeat(4, minmax(50px, 1fr)); grid-template-rows: repeat(1, min-content); height: min-content; justify-content: center; max-width: 1848px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-2R7s4 .framer-ebhyme { --border-bottom-width: 1px; --border-color: rgba(0, 0, 0, 0.13); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 100%; justify-content: space-between; justify-self: start; min-height: 600px; overflow: hidden; padding: 40px; position: relative; width: 100%; }\",\".framer-2R7s4 .framer-1v1iijn { --border-bottom-width: 2px; --border-color: #ffbb00; --border-left-width: 0px; --border-right-width: 2px; --border-style: solid; --border-top-width: 0px; aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 9px); left: 228px; position: absolute; top: 30px; width: 9px; z-index: 1; }\",\".framer-2R7s4 .framer-1jbd1ze { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-2R7s4 .framer-wglgnj, .framer-2R7s4 .framer-vfv1m8 { --framer-paragraph-spacing: 0px; --framer-text-wrap-override: balance; flex: none; height: auto; position: relative; width: 100%; }\",\".framer-2R7s4 .framer-x2ck6z { align-content: flex-start; align-items: flex-start; align-self: start; background-color: var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, #0c0c0c); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 100%; justify-content: flex-end; justify-self: start; min-height: 600px; overflow: hidden; padding: 50px; position: relative; width: 100%; }\",\".framer-2R7s4 .framer-rf2dkq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 3; }\",\".framer-2R7s4 .framer-zlt8us { --border-bottom-width: 0px; --border-color: rgba(255, 255, 255, 0.3); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 30px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-2R7s4 .framer-plhywe { flex: none; height: 19px; overflow: hidden; position: relative; width: 100%; }\",\".framer-2R7s4 .framer-1a5wuxk { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 50%; opacity: 0.8; position: absolute; top: 47%; transform: translate(-50%, -50%); white-space: pre-wrap; width: 167px; word-break: break-word; word-wrap: break-word; }\",\".framer-2R7s4 .framer-o1nyu7 { -webkit-mask: linear-gradient(180deg, rgba(0, 0, 0, 0) 15.000000000000002%, rgba(0, 0, 0, 0.9) 100%) add; background-color: #044969; bottom: 20px; flex: none; left: 20px; mask: linear-gradient(180deg, rgba(0,0,0,0) 15.000000000000002%, rgba(0, 0, 0, 0.9) 100%) add; overflow: hidden; position: absolute; right: 20px; top: 20px; z-index: 2; }\",\".framer-2R7s4 .framer-1fhjvah { bottom: 20px; flex: none; left: 20px; overflow: hidden; position: absolute; right: 20px; top: 20px; z-index: 1; }\",\".framer-2R7s4 .framer-1gbwsde { bottom: 0px; flex: none; left: 0px; opacity: 0.87; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-2R7s4 .framer-zk3tam-container, .framer-2R7s4 .framer-v0ypxc-container { align-self: start; flex: none; height: 100%; justify-self: start; min-height: 600px; position: relative; width: 100%; }\",\".framer-2R7s4 .framer-a9n568 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px 36px 0px 36px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-2R7s4 .framer-1ye7gxf { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 36px; height: min-content; justify-content: center; max-width: 1848px; overflow: visible; padding: 28px 0px 28px 0px; position: relative; width: 1px; }\",\".framer-2R7s4 .framer-i85ofc { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-2R7s4 .framer-e9vdya { background-color: #ffffff; display: grid; flex: none; gap: 20px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(4, minmax(50px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: hidden; padding: 20px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-2R7s4 .framer-om0c7t { align-self: start; flex: none; height: 100%; justify-self: start; overflow: hidden; position: relative; width: 100%; }\",\".framer-2R7s4 .framer-1n5v4cs { align-self: start; flex: none; grid-column: span 3; height: 100%; justify-self: start; max-width: 100%; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-2R7s4 .framer-129ug7w { display: grid; flex: none; gap: 20px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(4, minmax(50px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-2R7s4 .framer-1618jfa { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 34px; height: 100%; justify-content: flex-start; justify-self: start; overflow: visible; padding: 0px 30px 0px 0px; position: relative; width: 100%; }\",\".framer-2R7s4 .framer-13ifls4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 34px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-2R7s4 .framer-1y9r4p7 { --framer-paragraph-spacing: 0px; --framer-text-wrap-override: balance; flex: none; height: auto; max-width: 320px; position: relative; width: 100%; }\",\".framer-2R7s4 .framer-1jxwtf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-2R7s4 .framer-17n1t86 { aspect-ratio: 1 / 1; border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; flex: none; height: var(--framer-aspect-ratio-supported, 50px); position: relative; width: 50px; }\",\".framer-2R7s4 .framer-80p6q3 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-2R7s4 .framer-g1w06j { align-content: flex-start; align-items: flex-start; align-self: start; background-color: var(--token-0fe6d6b7-818b-4083-a138-519768e5d126, #f5f5f5); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; grid-column: span 3; height: 100%; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 70px; position: relative; width: 100%; }\",\".framer-2R7s4 .framer-1m0u25v { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: auto; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 45%; }\",\".framer-2R7s4 .framer-kmrjca { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 20px 0px 0px; position: relative; width: 100%; }\",\".framer-2R7s4 .framer-1gv05wk { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 446px; position: relative; white-space: pre; width: 100%; }\",\".framer-2R7s4 .framer-196y76v { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 46px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-2R7s4 .framer-idrsp3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-2R7s4 .framer-1t7xg48 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; min-height: 21px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-2R7s4 .framer-175eqev { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-2R7s4 .framer-qoz8bl { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-2R7s4 .framer-1g1u2td { 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; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-2R7s4 .framer-icjkbm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 34px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",'.framer-2R7s4 .framer-14x0pi0, .framer-2R7s4 .framer-fietbu, .framer-2R7s4 .framer-whuhxd { --framer-input-border-bottom-width: 1px; --framer-input-border-color: rgba(0, 0, 0, 0.18); --framer-input-border-left-width: 0px; --framer-input-border-right-width: 0px; --framer-input-border-style: solid; --framer-input-border-top-width: 0px; --framer-input-focused-border-color: var(--token-1662617d-fd18-4319-b3da-aa36e5415705, #f9452d); --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 0px 0px 1px 0px; --framer-input-focused-transition: all 0.3s cubic-bezier(0.44,0,0.56,1) 0s; --framer-input-font-color: var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, #0c0c0c); --framer-input-font-family: \"Inter\"; --framer-input-font-letter-spacing: -0.04em; --framer-input-font-line-height: 1.4em; --framer-input-font-size: 20px; --framer-input-font-weight: 500; --framer-input-icon-color: #999999; --framer-input-padding: 0px 0px 18px 0px; --framer-input-placeholder-color: rgba(12, 12, 12, 0.5); flex: none; height: 46px; position: relative; width: 100%; }','.framer-2R7s4 .framer-tp1d5f { --framer-input-border-bottom-width: 1px; --framer-input-border-color: rgba(0, 0, 0, 0.18); --framer-input-border-left-width: 0px; --framer-input-border-right-width: 0px; --framer-input-border-style: solid; --framer-input-border-top-width: 0px; --framer-input-focused-border-color: var(--token-1662617d-fd18-4319-b3da-aa36e5415705, #f9452d); --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 0px 0px 1px 0px; --framer-input-font-color: var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, #0c0c0c); --framer-input-font-family: \"Inter\"; --framer-input-font-letter-spacing: -0.04em; --framer-input-font-line-height: 1.4em; --framer-input-font-size: 20px; --framer-input-font-weight: 500; --framer-input-icon-color: #999999; --framer-input-padding: 0px 0px 18px 0px; --framer-input-placeholder-color: rgba(12, 12, 12, 0.5); flex: none; height: 92px; position: relative; width: 100%; }',\".framer-2R7s4 .framer-161htoh { display: grid; flex: none; gap: 20px; grid-auto-rows: min-content; grid-template-columns: repeat(4, minmax(50px, 1fr)); grid-template-rows: repeat(1, min-content); height: min-content; justify-content: center; max-width: 1848px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-2R7s4 .framer-o20z4c { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 34px; height: auto; justify-content: flex-start; justify-self: start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-2R7s4 .framer-1w5ktr9 { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; grid-column: span 3; height: auto; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 27px 0px 27px 0px; position: relative; width: 100%; }\",\".framer-2R7s4 .framer-1w6433w { --framer-paragraph-spacing: 0px; --framer-text-wrap-override: none; flex: none; height: auto; max-width: 910px; position: relative; width: 100%; }\",\".framer-2R7s4 .framer-vrqusx { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 910px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,'.framer-2R7s4[data-border=\"true\"]::after, .framer-2R7s4 [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: 810px) and (max-width: 1199px) { .framer-2R7s4.framer-72rtr7 { width: 810px; } .framer-2R7s4 .framer-fyydzk-container { order: 1; } .framer-2R7s4 .framer-18ia252 { order: 2; } .framer-2R7s4 .framer-1ojost9 { order: 3; } .framer-2R7s4 .framer-fbtq8l { gap: 10px; height: 90vh; padding: 0px 32px 40px 32px; } .framer-2R7s4 .framer-1n4wfg3 { gap: 16px; } .framer-2R7s4 .framer-1hlm8z3 { order: 0; width: 70%; } .framer-2R7s4 .framer-17f7gii { right: -256px; top: -12%; width: 154%; } .framer-2R7s4 .framer-8axwti { flex-direction: column; gap: 26px; justify-content: flex-start; } .framer-2R7s4 .framer-1d7ihmp, .framer-2R7s4 .framer-1csplbm { flex: none; order: 1; width: 100%; } .framer-2R7s4 .framer-1bmi8eo { order: 0; width: 100%; } .framer-2R7s4 .framer-skcre { right: 0px; top: -42%; width: 100%; } .framer-2R7s4 .framer-7wclla { padding: 26px 32px 26px 32px; } .framer-2R7s4 .framer-cu0ogy, .framer-2R7s4 .framer-i85ofc { gap: 70px; } .framer-2R7s4 .framer-7u8fwv { grid-template-rows: repeat(1, min-content); } .framer-2R7s4 .framer-1tn9b2u, .framer-2R7s4 .framer-160yarg { grid-template-columns: repeat(2, minmax(50px, 1fr)); } .framer-2R7s4 .framer-xch8uj { padding: 0px 32px 120px 32px; } .framer-2R7s4 .framer-49x5cw { gap: 100px; } .framer-2R7s4 .framer-uo7po2 { gap: 80px; } .framer-2R7s4 .framer-mcjrvm { flex: 3 0 0px; } .framer-2R7s4 .framer-1lkgyhh { flex: 9 0 0px; } .framer-2R7s4 .framer-wfeje { height: 90vh; padding: 0px 32px 50px 32px; } .framer-2R7s4 .framer-unwsa7, .framer-2R7s4 .framer-1jbd1ze { gap: 50px; } .framer-2R7s4 .framer-129dri9 { flex-direction: column; gap: 80px; } .framer-2R7s4 .framer-tpau29 { align-content: flex-start; align-items: flex-start; align-self: unset; flex: none; height: min-content; justify-content: flex-start; order: 0; width: 100%; } .framer-2R7s4 .framer-u8frfl { -webkit-mask: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0.8) 20%, rgba(0, 0, 0, 0) 100%) add; mask: linear-gradient(180deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 20%, rgba(0, 0, 0, 0) 100%) add; } .framer-2R7s4 .framer-9uktbq { padding: 120px 32px 0px 32px; } .framer-2R7s4 .framer-1ebndbp, .framer-2R7s4 .framer-18uagoo, .framer-2R7s4 .framer-196y76v { gap: 40px; } .framer-2R7s4 .framer-a91qzl { padding: 130px 32px 48px 32px; } .framer-2R7s4 .framer-1v1iijn { left: unset; right: 30px; } .framer-2R7s4 .framer-1dsur25-container { order: 4; } .framer-2R7s4 .framer-a9n568 { order: 6; padding: 0px 32px 0px 32px; } .framer-2R7s4 .framer-1ye7gxf { gap: 120px; } .framer-2R7s4 .framer-1jxwtf { align-content: flex-start; align-items: flex-start; flex-direction: column; } .framer-2R7s4 .framer-80p6q3, .framer-2R7s4 .framer-1g1u2td { flex: none; width: 100%; } .framer-2R7s4 .framer-g1w06j { flex-direction: column; gap: 50px; padding: 46px; } .framer-2R7s4 .framer-1m0u25v { align-self: unset; gap: 20px; height: min-content; justify-content: center; width: 100%; } .framer-2R7s4 .framer-icjkbm { gap: 26px; } .framer-2R7s4 .framer-14x0pi0, .framer-2R7s4 .framer-fietbu, .framer-2R7s4 .framer-whuhxd, .framer-2R7s4 .framer-tp1d5f { --framer-input-font-size: 18px; }}\",\"@media (max-width: 809px) { .framer-2R7s4.framer-72rtr7 { width: 390px; } .framer-2R7s4 .framer-fbtq8l { height: 700px; padding: 0px 24px 34px 24px; position: relative; top: unset; } .framer-2R7s4 .framer-1n4wfg3 { order: 1; } .framer-2R7s4 .framer-1s8uq1m { flex-direction: column; gap: 40px; } .framer-2R7s4 .framer-1hlm8z3, .framer-2R7s4 .framer-63ob45-container, .framer-2R7s4 .framer-768sct-container { order: 1; width: 100%; } .framer-2R7s4 .framer-17f7gii { right: -46px; top: 100%; width: 157%; } .framer-2R7s4 .framer-8axwti { flex-direction: column; gap: 26px; justify-content: flex-start; } .framer-2R7s4 .framer-1d7ihmp { flex: none; min-height: 63px; order: 1; width: 100%; } .framer-2R7s4 .framer-1bmi8eo { order: 0; width: 100%; } .framer-2R7s4 .framer-skcre { right: 7px; top: 158%; width: 100%; } .framer-2R7s4 .framer-1tl276o { order: 3; } .framer-2R7s4 .framer-7wclla { padding: 50px 24px 50px 24px; } .framer-2R7s4 .framer-cu0ogy { gap: 32px; } .framer-2R7s4 .framer-7u8fwv { gap: 26px; grid-template-columns: repeat(1, minmax(50px, 1fr)); } .framer-2R7s4 .framer-v1szlu { grid-column: span 1; order: 0; } .framer-2R7s4 .framer-1tn9b2u { gap: 16px; grid-template-columns: repeat(1, minmax(50px, 1fr)); } .framer-2R7s4 .framer-xch8uj { padding: 0px 24px 50px 24px; } .framer-2R7s4 .framer-49x5cw { gap: 70px; } .framer-2R7s4 .framer-15w7kz1, .framer-2R7s4 .framer-mh4amm, .framer-2R7s4 .framer-e9vdya { overflow: visible; } .framer-2R7s4 .framer-uo7po2 { gap: 40px; overflow: visible; } .framer-2R7s4 .framer-1lkgyhh { flex: 1 0 0px; } .framer-2R7s4 .framer-wfeje { height: min-content; padding: 0px 24px 50px 24px; } .framer-2R7s4 .framer-1doveij { flex: none; gap: 80px; height: min-content; justify-content: center; } .framer-2R7s4 .framer-unwsa7 { gap: 50px; overflow: visible; } .framer-2R7s4 .framer-129dri9, .framer-2R7s4 .framer-z1ykxh { flex-direction: column; gap: 50px; } .framer-2R7s4 .framer-1csplbm { flex: none; flex-direction: column; gap: 26px; order: 0; width: 100%; } .framer-2R7s4 .framer-4wsqim-container, .framer-2R7s4 .framer-tndojr-container, .framer-2R7s4 .framer-au6363-container { flex: none; width: 100%; } .framer-2R7s4 .framer-tpau29 { align-content: flex-start; align-items: flex-start; align-self: unset; flex: none; height: min-content; order: 1; width: 100%; } .framer-2R7s4 .framer-u8frfl { -webkit-mask: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0.8) 21.723606418918923%, rgba(0, 0, 0, 0.05) 100%) add; mask: linear-gradient(180deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 21.723606418918923%, rgba(0, 0, 0, 0.05) 100%) add; } .framer-2R7s4 .framer-9uktbq { padding: 50px 24px 0px 24px; } .framer-2R7s4 .framer-wpoupd, .framer-2R7s4 .framer-18uagoo, .framer-2R7s4 .framer-1g1u2td { flex: none; gap: 34px; width: 100%; } .framer-2R7s4 .framer-1ebndbp { gap: 20px; order: 0; } .framer-2R7s4 .framer-4mz7x9 { max-width: 270px; } .framer-2R7s4 .framer-a91qzl { padding: 60px 24px 32px 24px; } .framer-2R7s4 .framer-160yarg, .framer-2R7s4 .framer-161htoh { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; justify-content: flex-start; } .framer-2R7s4 .framer-ebhyme { align-self: unset; height: 24%; min-height: 500px; padding: 30px; } .framer-2R7s4 .framer-1v1iijn { left: unset; right: 30px; } .framer-2R7s4 .framer-1jbd1ze { gap: 40px; } .framer-2R7s4 .framer-x2ck6z { align-self: unset; min-height: 500px; padding: 40px; } .framer-2R7s4 .framer-o1nyu7, .framer-2R7s4 .framer-1fhjvah { bottom: 16px; left: 16px; right: 16px; top: 16px; } .framer-2R7s4 .framer-zk3tam-container, .framer-2R7s4 .framer-v0ypxc-container { align-self: unset; min-height: unset; } .framer-2R7s4 .framer-a9n568 { padding: 0px 24px 0px 24px; } .framer-2R7s4 .framer-1ye7gxf { gap: 50px; } .framer-2R7s4 .framer-i85ofc, .framer-2R7s4 .framer-196y76v { gap: 30px; } .framer-2R7s4 .framer-1n5v4cs { grid-column: span 4; } .framer-2R7s4 .framer-129ug7w { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 34px; justify-content: flex-start; } .framer-2R7s4 .framer-1618jfa, .framer-2R7s4 .framer-1w5ktr9 { align-self: unset; height: min-content; } .framer-2R7s4 .framer-13ifls4 { gap: 24px; will-change: unset; } .framer-2R7s4 .framer-g1w06j { align-self: unset; flex-direction: column; gap: 40px; height: min-content; padding: 34px; } .framer-2R7s4 .framer-1m0u25v { align-self: unset; gap: 30px; height: min-content; justify-content: center; width: 100%; } .framer-2R7s4 .framer-icjkbm { gap: 18px; } .framer-2R7s4 .framer-14x0pi0, .framer-2R7s4 .framer-fietbu, .framer-2R7s4 .framer-whuhxd, .framer-2R7s4 .framer-tp1d5f { --framer-input-font-size: 16px; } .framer-2R7s4 .framer-o20z4c { align-self: unset; height: min-content; min-height: 21px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7251\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"toDtyncsd\":{\"layout\":[\"fixed\",\"auto\"]},\"p4sQvxEP4\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-2R7s4\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:7251,width:1200};addFonts(FrameraugiA20Il,[{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/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:\"LT Avocado\",source:\"builtIn\",style:\"normal\",url:\"https://framerusercontent.com/assets/zIFc7EzlqXavRjR9hpBhQIT8hzo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...HeaderHeaderFonts,...UIArrowButtonFonts,...NumbersItemFonts,...LogoFonts,...UICategoryFonts,...ServicesItemsFonts,...LogoCarouselFonts,...TeamAvatarFonts,...TeamItemFonts,...ProcessItemFonts,...TestimoialsItemFonts,...SmoothScrollFonts,...UISocialLinkFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"toDtyncsd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"p4sQvxEP4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"7251\",\"framerColorSyntax\":\"true\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerComponentViewportWidth\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "ogDAAmM,SAASA,GAAQ,CAAC,MAAAC,EAAM,EAAE,IAAAC,EAAI,IAAI,MAAAC,EAAM,IAAI,QAAAC,EAAQ,EAAE,WAAAC,EAAW,GAAG,WAAAC,EAAW,GAAG,WAAAC,EAAW,WAAAC,EAAW,YAAAC,EAAY,YAAAC,EAAY,KAAAC,EAAK,GAAM,qBAAAC,EAAqB,QAAQ,SAAAC,EAAS,GAAG,aAAAC,EAAa,CAAC,WAAW,QAAQ,WAAW,IAAI,WAAW,EAAI,EAAE,UAAAC,EAAU,UAAU,gBAAAC,EAAgB,GAAM,kBAAAC,EAAkB,GAAM,cAAAC,EAAc,SAAS,EAAE,CAAC,GAAK,CAACC,EAAMC,CAAQ,EAAEC,GAASpB,CAAK,EAAO,CAACqB,EAAUC,CAAY,EAAEF,GAAS,EAAK,EAAQG,EAAaC,EAAO,IAAI,EAAEC,GAAU,IAAI,CAAC,IAAMC,EAAS,IAAI,qBAAqB,CAAC,CAACC,CAAK,IAAI,CAACL,EAAaK,EAAM,cAAc,CAAE,CAAC,EAAE,OAAGJ,EAAa,SAAQG,EAAS,QAAQH,EAAa,OAAO,EAAQ,IAAIG,EAAS,WAAW,CAAE,EAAE,CAAC,CAAC,EAAED,GAAU,IAAI,CAAC,GAAG,EAAEJ,GAAW,CAACN,IAAkBf,IAAQC,EAAI,OAAO,IAAM2B,EAAUX,IAAgB,UAAU,EAAE,GAASY,EAAW,YAAY,IAAI,CAACV,EAASW,IAAMA,GAAKF,GAAW3B,EAAIA,EAAI,YAAY6B,GAAKF,GAAW,QAAQ,CAAC,CAAC,CAAC,CAAE,EAAE1B,CAAK,EAAE,MAAM,IAAI,cAAc2B,CAAU,CAAE,EAAE,CAACR,EAAUrB,EAAMC,EAAIC,EAAMa,EAAgBE,CAAa,CAAC,EAAEQ,GAAU,IAAI,CAAIT,GAAmBK,GAAUF,EAASnB,CAAK,CAAE,EAAE,CAACqB,EAAUL,EAAkBhB,CAAK,CAAC,EAAE,IAAM+B,EAAaC,GAAYrB,IAAuB,QAAeqB,EAAO,eAAe,OAAO,EAAKrB,IAAuB,SAAgBqB,EAAO,eAAe,OAAO,EAAE,QAAQ,KAAK,GAAG,EAASA,EAAO,QAAQf,IAAgB,UAAU,EAAE,CAAC,EAAI,OAAoBgB,EAAMC,EAAO,IAAI,CAAC,IAAIX,EAAa,MAAM,CAAC,QAAQ,OAAO,IAAI,GAAGpB,CAAO,KAAK,WAAW,SAAS,SAAS,GAAGS,CAAQ,KAAK,WAAWC,EAAa,WAAW,WAAWA,EAAa,WAAW,MAAMC,EAAU,cAAc,SAAS,EAAE,SAAS,CAACV,GAAyB+B,EAAK,OAAO,CAAC,MAAM,CAAC,WAAW7B,GAAY,WAAW,WAAWA,GAAY,WAAW,MAAME,CAAW,EAAE,SAASJ,CAAU,CAAC,EAAe+B,EAAK,OAAO,CAAC,SAASJ,EAAab,CAAK,CAAC,CAAC,EAAEb,GAAyB8B,EAAK,OAAO,CAAC,MAAM,CAAC,WAAW5B,GAAY,WAAW,WAAWA,GAAY,WAAW,MAAME,CAAW,EAAE,SAASJ,CAAU,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC+B,EAAoBrC,GAAQ,CAAC,gBAAgB,CAAC,KAAKsC,EAAY,QAAQ,MAAM,WAAW,aAAa,EAAK,EAAE,kBAAkB,CAAC,KAAKA,EAAY,QAAQ,MAAM,SAAS,aAAa,EAAK,EAAE,aAAa,CAAC,MAAM,OAAO,KAAKA,EAAY,KAAK,aAAa,CAAC,WAAW,QAAQ,WAAW,IAAI,WAAW,EAAI,CAAC,EAAE,SAAS,CAAC,MAAM,YAAY,KAAKA,EAAY,OAAO,IAAI,EAAE,IAAI,IAAI,KAAK,CAAC,EAAE,UAAU,CAAC,KAAKA,EAAY,MAAM,MAAM,YAAY,EAAE,MAAM,CAAC,KAAKA,EAAY,OAAO,MAAM,eAAe,aAAa,CAAC,EAAE,IAAI,CAAC,KAAKA,EAAY,OAAO,MAAM,aAAa,aAAa,EAAE,EAAE,qBAAqB,CAAC,KAAKA,EAAY,KAAK,MAAM,YAAY,aAAa,QAAQ,QAAQ,CAAC,QAAQ,SAAS,MAAM,CAAC,EAAE,cAAc,CAAC,KAAKA,EAAY,KAAK,MAAM,iBAAiB,aAAa,UAAU,QAAQ,CAAC,UAAU,SAAS,CAAC,EAAE,WAAW,CAAC,KAAKA,EAAY,OAAO,MAAM,SAAS,aAAa,EAAE,EAAE,WAAW,CAAC,MAAM,cAAc,KAAKA,EAAY,IAAI,EAAE,YAAY,CAAC,KAAKA,EAAY,MAAM,MAAM,cAAc,EAAE,WAAW,CAAC,KAAKA,EAAY,OAAO,MAAM,SAAS,aAAa,EAAE,EAAE,WAAW,CAAC,MAAM,cAAc,KAAKA,EAAY,IAAI,EAAE,YAAY,CAAC,KAAKA,EAAY,MAAM,MAAM,cAAc,EAAE,QAAQ,CAAC,KAAKA,EAAY,OAAO,MAAM,WAAW,aAAa,EAAE,IAAI,EAAE,IAAI,GAAG,EAAE,MAAM,CAAC,KAAKA,EAAY,OAAO,MAAM,aAAa,aAAa,IAAI,IAAI,EAAE,IAAI,GAAG,EAAE,KAAK,CAAC,KAAKA,EAAY,QAAQ,MAAM,iBAAiB,aAAa,EAAK,CAAC,CAAC,ECC58GC,GAAU,UAAU,CAAC,iBAAiB,aAAa,mBAAmB,sBAAsB,CAAC,EAAS,IAAMC,GAAM,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,yEAAyE,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,yEAAyE,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,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,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,wEAAwE,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,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,yEAAyE,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,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,uEAAuE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,yEAAyE,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,wEAAwE,OAAO,KAAK,CAAC,CAAC,CAAC,EAAeC,GAAI,CAAC,unCAAunC,4qCAA4qC,yqCAAyqC,EAAeC,GAAU,eCA/lS,IAAMC,GAAaC,EAASC,EAAO,EAAQC,GAAgBC,GAAoBF,EAAO,EAAQG,GAAW,CAAC,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAAAD,GAAU,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,OAAO,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,CAAmB,EAAQC,EAAWL,GAAOE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAqB,CAAC,QAAQ,UAAU,QAAQ,SAAS,EAAQC,GAAwB,CAAC,QAAQ,YAAY,MAAM,YAAY,OAAO,WAAW,EAAQC,GAAS,CAAC,CAAC,YAAAC,EAAY,QAAAC,EAAQ,OAAAC,EAAO,GAAAC,EAAG,cAAAC,EAAc,OAAAC,EAAO,QAAAC,EAAQ,OAAAC,EAAO,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,UAAUJ,GAAQI,EAAM,WAAW,GAAG,UAAUR,GAASQ,EAAM,WAAW,WAAW,UAAUT,GAAaS,EAAM,WAAW,cAAc,UAAUH,GAASG,EAAM,WAAW,GAAG,UAAUF,GAAQE,EAAM,WAAW,IAAI,QAAQX,GAAwBW,EAAM,OAAO,GAAGA,EAAM,SAAS,YAAY,UAAUZ,GAAqBO,CAAa,GAAGA,GAAeK,EAAM,WAAW,SAAS,GAAUC,GAAuB,CAACD,EAAM7B,IAAe6B,EAAM,iBAAwB7B,EAAS,KAAK,GAAG,EAAE6B,EAAM,iBAAwB7B,EAAS,KAAK,GAAG,EAAU+B,GAA6BC,EAAW,SAASH,EAAMI,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAArC,EAAQ,UAAAsC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAE3B,GAASU,CAAK,EAAO,CAAC,YAAAkB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAAtD,CAAQ,EAAEuD,GAAgB,CAAC,WAAA5D,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ2D,EAAiB1B,GAAuBD,EAAM7B,CAAQ,EAAQyD,EAAWC,EAAO,IAAI,EAAQC,GAAsBC,EAAM,EAAQC,GAAsB,CAAavB,GAAuBA,EAAS,EAAQwB,GAAkBC,EAAqB,EAAE,OAAoBlD,EAAKmD,EAAY,CAAC,GAAGzB,GAAUoB,GAAgB,SAAsB9C,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsB8D,EAAMlD,EAAO,IAAI,CAAC,GAAG+B,EAAU,GAAGI,EAAgB,UAAUgB,EAAGtE,GAAkB,GAAGiE,GAAsB,iBAAiBvB,EAAUU,CAAU,EAAE,mBAAmB,UAAU,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIvB,GAAKwB,EAAK,MAAM,CAAC,GAAGpB,CAAK,EAAE,GAAGvC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,QAAQ,EAAE,UAAU,CAAC,mBAAmB,OAAO,CAAC,EAAEiD,EAAYI,CAAc,EAAE,SAAS,CAActC,EAAKsD,EAA0B,CAAC,SAAsBtD,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiByC,EAAiB,SAAS,sBAAsB,SAAsB3C,EAAKrB,GAAQ,CAAC,qBAAqB,OAAO,IAAIgD,EAAU,QAAQ,EAAE,OAAO,OAAO,GAAG,YAAY,cAAcE,EAAU,SAAS,YAAY,KAAK,GAAM,YAAY,qBAAqB,WAAW,CAAC,WAAW,2CAA2C,UAAU,SAAS,WAAW,GAAG,EAAE,WAAW,GAAG,kBAAkB,GAAM,aAAa,CAAC,WAAW,2CAA2C,UAAU,SAAS,WAAW,GAAG,EAAE,MAAMC,EAAU,MAAM,EAAE,gBAAgB,GAAK,YAAY,qEAAqE,WAAW,CAAC,EAAE,WAAWF,EAAU,UAAU,qEAAqE,SAAS,GAAG,MAAM,OAAO,GAAG3C,GAAqB,CAAC,UAAU,CAAC,SAAS,EAAE,EAAE,UAAU,CAAC,SAAS,EAAE,CAAC,EAAEiD,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAMlD,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,OAAO,iBAAiByC,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,qBAAqB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,KAAK,EAAE,SAAS,CAAc3C,EAAKuD,EAAS,CAAC,sBAAsB,GAAK,SAAsBvD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,mBAAmB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,oBAAoB,MAAM,CAAC,OAAO,EAAE,iBAAiByC,EAAiB,SAAS,YAAY,MAAM,CAAC,6BAA6B,KAAK,EAAE,KAAKZ,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe/B,EAAKuD,EAAS,CAAC,sBAAsB,GAAK,SAAsBvD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,gDAAgD,EAAE,SAAS,wCAAwC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,yCAAyC,MAAM,CAAC,OAAO,EAAE,iBAAiByC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wBAAwB,6BAA6B,KAAK,EAAE,KAAKX,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQwB,GAAI,CAAC,kFAAkF,gFAAgF,iRAAiR,wGAAwG,ySAAyS,qKAAqK,qIAAqI,qlBAAqlB,8DAA8D,yFAAyF,qtBAAqtB,+DAA+D,0FAA0F,6tBAA6tB,GAAeA,GAAI,GAAgBA,GAAI,+bAA+b,EASjgUC,GAAgBC,EAAQxC,GAAUsC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,iBAAiBA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAG,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,UAAU,SAAS,OAAO,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,GAAG,eAAe,GAAK,MAAM,SAAS,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,IAAI,MAAM,SAAS,KAAKA,EAAY,MAAM,EAAE,UAAUjF,IAAkB,eAAkB,CAAC,GAAGA,GAAgB,cAAiB,aAAa,UAAU,YAAY,OAAU,OAAO,OAAU,MAAM,gBAAgB,EAAE,UAAU,CAAC,aAAa,GAAG,IAAI,IAAI,IAAI,EAAE,KAAK,GAAG,MAAM,WAAW,KAAKiF,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,WAAW,gBAAgB,GAAM,MAAM,WAAW,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,cAAc,gBAAgB,GAAM,MAAM,cAAc,KAAKA,EAAY,MAAM,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,yEAAyE,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,yEAAyE,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,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,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,GAAGhF,GAAa,GAAGsF,EAAoCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECTnsK,IAAMC,GAAW,CAAC,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,iBAAiB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAAAD,GAAU,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,OAAO,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,CAAmB,EAAQC,EAAWL,GAAOE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,MAAM,YAAY,QAAQ,WAAW,EAAQC,GAAS,CAAC,CAAC,YAAAC,EAAY,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,UAAUL,GAAaK,EAAM,WAAW,cAAc,UAAUF,GAAOE,EAAM,WAAW,QAAQ,QAAQP,GAAwBO,EAAM,OAAO,GAAGA,EAAM,SAAS,WAAW,GAAUC,GAAuB,CAACD,EAAMxB,IAAewB,EAAM,iBAAwBxB,EAAS,KAAK,GAAG,EAAEwB,EAAM,iBAAwBxB,EAAS,KAAK,GAAG,EAAU0B,GAA6BC,EAAW,SAASH,EAAMI,EAAI,CAAC,IAAMC,EAAYC,EAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,EAAM,EAAO,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAQC,EAAkBC,EAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAvC,EAAQ,UAAAwC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAE1B,GAASM,CAAK,EAAO,CAAC,YAAAqB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAApD,CAAQ,EAAEqD,GAAgB,CAAC,WAAA1D,GAAW,eAAe,YAAY,IAAIoC,EAAW,QAAA7B,EAAQ,kBAAAL,EAAiB,CAAC,EAAQyD,EAAiB7B,GAAuBD,EAAMxB,CAAQ,EAAmFuD,GAAkBC,EAAG5D,GAAkB,GAA5F,CAAa4C,GAAuBA,EAAS,CAAuE,EAAE,OAAoB3B,EAAK4C,EAAY,CAAC,GAAGhB,GAAUT,EAAgB,SAAsBnB,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBU,EAAKE,EAAO,IAAI,CAAC,GAAG6B,EAAU,GAAGI,EAAgB,UAAUQ,EAAGD,GAAkB,iBAAiBf,EAAUM,CAAU,EAAE,mBAAmB,UAAU,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIvB,EAAW,MAAM,CAAC,GAAGQ,CAAK,EAAE,GAAGzC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,OAAO,CAAC,EAAE+C,EAAYI,CAAc,EAAE,SAAsBS,EAAM3C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,iBAAiBuC,EAAiB,SAAS,YAAY,SAAS,CAAczC,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,gGAAgG,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,WAAW,MAAM,CAAC,OAAO,EAAE,iBAAiBuC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,6BAA6B,MAAM,QAAQ,EAAE,EAAE,KAAKZ,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe7B,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,gGAAgG,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,wGAAwG,MAAM,CAAC,OAAO,EAAE,iBAAiBuC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,6BAA6B,KAAK,EAAE,KAAKX,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQiB,GAAI,CAAC,kFAAkF,gFAAgF,oQAAoQ,4RAA4R,iHAAiH,qKAAqK,8DAA8D,+DAA+D,GAAeA,GAAI,GAAgBA,EAAG,EAWj0LC,GAAgBC,EAAQpC,GAAUkC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,iCAAiCA,GAAgB,aAAa,CAAC,OAAO,KAAK,MAAM,GAAG,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,UAAU,OAAO,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,QAAQ,gBAAgB,GAAM,YAAY,GAAG,MAAM,QAAQ,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,cAAc,gBAAgB,GAAM,MAAM,cAAc,KAAKA,EAAY,MAAM,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,EAAoCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECXh9D,IAAMC,GAAgBC,GAAOC,EAAO,GAAG,EAAQC,GAAW,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAAAD,GAAU,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,GAAG,EAAE,CAAC,EAAQC,GAAY,CAAC,MAAM,EAAE,SAAS,EAAE,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,WAAWD,GAAY,EAAE,GAAG,EAAE,CAAC,EAAQE,GAAY,CAAC,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,GAAG,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,GAAG,EAAE,CAAC,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWJ,GAAY,EAAE,GAAG,EAAE,CAAC,EAAQK,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,CAAmB,EAAQC,EAAWL,GAAOE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASzB,EAAO,OAAa0B,CAAQ,EAAQC,GAAwB,CAAC,iBAAiB,YAAY,mBAAmB,YAAY,eAAe,YAAY,iBAAiB,YAAY,gBAAgB,YAAY,iBAAiB,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,WAAAC,EAAW,MAAAC,EAAM,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,UAAUF,GAAOE,EAAM,WAAW,QAAQ,UAAUH,GAAYG,EAAM,UAAU,QAAQP,GAAwBO,EAAM,OAAO,GAAGA,EAAM,SAAS,WAAW,GAAUC,GAAuB,CAACD,EAAM5B,IAAe4B,EAAM,iBAAwB5B,EAAS,KAAK,GAAG,EAAE4B,EAAM,iBAAwB5B,EAAS,KAAK,GAAG,EAAU8B,GAA6BC,EAAW,SAASH,EAAMI,EAAI,CAAC,IAAMC,EAAYC,EAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,EAAM,EAAO,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAQC,EAAkBC,EAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAA3C,EAAQ,UAAA4C,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAE1B,GAASM,CAAK,EAAO,CAAC,YAAAqB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAAxD,CAAQ,EAAEyD,GAAgB,CAAC,WAAA9D,GAAW,eAAe,YAAY,IAAIwC,EAAW,QAAAjC,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ6D,EAAiB7B,GAAuBD,EAAM5B,CAAQ,EAAO,CAAC,sBAAA2D,EAAsB,MAAAC,EAAK,EAAEC,GAAyBZ,CAAW,EAAQa,GAAoBH,EAAsB,SAASI,IAAO,CAAmC,GAAlCR,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAKR,GAAqB,MAAMA,EAAU,GAAGgB,CAAI,IAAW,GAAM,MAAO,EAAO,CAAC,EAAuCC,EAAkBC,EAAGrE,GAAkB,GAAhD,CAAC,CAAuE,EAAE,OAAoBsB,EAAKgD,EAAY,CAAC,GAAGrB,GAAUT,EAAgB,SAAsBlB,EAAKC,GAAS,CAAC,QAAQnB,EAAS,QAAQ,GAAM,SAAsBkB,EAAKT,GAAW,CAAC,MAAMH,GAAY,SAAsBY,EAAK1B,GAAgB,CAAC,GAAGwD,EAAU,GAAGI,EAAgB,kBAAkB,CAAC,WAAWhD,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAU,eAAeE,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU4D,EAAGD,EAAkB,iBAAiBpB,EAAUM,CAAU,EAAE,cAAc,GAAK,mBAAmB,iBAAiB,iBAAiB,GAAK,iBAAiBQ,EAAiB,SAAS,YAAY,aAAaI,GAAoB,IAAI3B,EAAW,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,kBAAkB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,GAAGQ,CAAK,EAAE,GAAG7C,GAAqB,CAAC,UAAU,CAAC,mBAAmB,eAAe,EAAE,UAAU,CAAC,gBAAgBS,GAAW,eAAeC,GAAW,mBAAmB,cAAc,EAAE,UAAU,CAAC,gBAAgBD,GAAW,eAAeC,GAAW,mBAAmB,gBAAgB,EAAE,UAAU,CAAC,mBAAmB,gBAAgB,EAAE,UAAU,CAAC,mBAAmB,kBAAkB,CAAC,EAAEyC,EAAYI,CAAc,EAAE,SAAsBnC,EAAKxB,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiBgE,EAAiB,SAAS,YAAY,SAAsBxC,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWE,EAAS,CAAC,SAAsBF,EAAKxB,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,QAAQ,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,OAAO,sBAAsB,6CAA6C,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,MAAM,CAAC,cAAc,EAAE,iBAAiBgE,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,MAAM,QAAQ,CAAC,EAAE,KAAKZ,EAAU,SAAS,CAAC,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,EAAE,EAAE,UAAU,CAAC,QAAQ,GAAG,EAAE,UAAU,CAAC,QAAQ,GAAG,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGhD,GAAqB,CAAC,UAAU,CAAC,SAAsBoB,EAAWE,EAAS,CAAC,SAAsBF,EAAKxB,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,OAAO,sBAAsB,6CAA6C,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBwB,EAAWE,EAAS,CAAC,SAAsBF,EAAKxB,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,OAAO,sBAAsB,6CAA6C,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBwB,EAAWE,EAAS,CAAC,SAAsBF,EAAKxB,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,OAAO,sBAAsB,6CAA6C,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBwB,EAAWE,EAAS,CAAC,SAAsBF,EAAKxB,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,OAAO,sBAAsB,6CAA6C,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEuD,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQe,GAAI,CAAC,kFAAkF,kFAAkF,+RAA+R,0RAA0R,8JAA8J,gFAAgF,+GAA+G,yIAAyI,gEAAgE,wGAAwG,gHAAgH,wGAAwG,+bAA+b,EAWt1SC,GAAgBC,EAAQxC,GAAUsC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,0BAA0BA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAG,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,iBAAiB,mBAAmB,gBAAgB,iBAAiB,eAAe,gBAAgB,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,QAAQ,gBAAgB,GAAM,MAAM,QAAQ,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,MAAM,cAAc,KAAKA,EAAY,YAAY,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,uEAAuE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,uEAAuE,OAAO,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECX9mD,IAAMM,GAA8BC,EAASC,EAAwB,EAAQC,GAAgBC,GAAOC,EAAO,GAAG,EAAQC,GAAuBL,EAASM,EAAiB,EAAQC,GAAW,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,iBAAiB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAAAD,GAAU,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,GAAG,EAAE,KAAK,OAAO,EAAQC,GAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,EAAQC,GAAY,CAAC,OAAO,GAAG,MAAM,EAAE,SAAS,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAkBC,GAAW,OAAOA,GAAQ,UAAUA,IAAQ,MAAM,OAAOA,EAAM,KAAM,SAAiBA,EAAc,OAAOA,GAAQ,SAAS,CAAC,IAAIA,CAAK,EAAE,OAAkBC,GAAMD,GAAW,MAAM,QAAQA,CAAK,EAASA,EAAM,OAAO,EAA4BA,GAAQ,MAAMA,IAAQ,GAAWE,GAAW,CAAC,CAAC,MAAAF,EAAM,SAAAG,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,CAAmB,EAAQC,EAAWP,GAAOI,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAAS3B,EAAO,OAAa4B,CAAQ,EAAQC,GAAwB,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,eAAe,YAAY,UAAU,YAAY,UAAU,YAAY,UAAU,YAAY,UAAU,YAAY,UAAU,YAAY,aAAa,YAAY,WAAW,YAAY,WAAW,YAAY,WAAW,YAAY,WAAW,YAAY,WAAW,YAAY,cAAc,WAAW,EAAQC,GAAS,CAAC,CAAC,eAAAC,EAAe,SAAAC,EAAS,SAAAC,EAAS,eAAAC,EAAe,SAAAC,EAAS,SAAAC,EAAS,eAAAC,EAAe,SAAAC,EAAS,SAAAC,EAAS,eAAAC,EAAe,SAAAC,EAAS,SAAAC,EAAS,eAAAC,EAAe,SAAAC,EAAS,SAAAC,EAAS,eAAAC,EAAe,SAAAC,EAAS,SAAAC,EAAS,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,UAAUhB,GAAUgB,EAAM,WAAW,WAAW,UAAUd,GAAUc,EAAM,UAAU,UAAUT,GAAgBS,EAAM,WAAW,iBAAiB,UAAUP,GAAUO,EAAM,WAAW,WAAW,UAAUlB,GAAgBkB,EAAM,WAAW,iBAAiB,UAAUJ,GAAUI,EAAM,WAAW,WAAW,UAAUR,GAAUQ,EAAM,UAAU,UAAUX,GAAUW,EAAM,UAAU,UAAUL,GAAUK,EAAM,UAAU,UAAUjB,GAAUiB,EAAM,UAAU,UAAUpB,GAAUoB,EAAM,UAAU,UAAUrB,GAAgBqB,EAAM,WAAW,iBAAiB,UAAUV,GAAUU,EAAM,WAAW,WAAW,UAAUZ,GAAgBY,EAAM,WAAW,iBAAiB,UAAUf,GAAgBe,EAAM,WAAW,iBAAiB,QAAQvB,GAAwBuB,EAAM,OAAO,GAAGA,EAAM,SAAS,YAAY,UAAUnB,GAAUmB,EAAM,WAAW,WAAW,UAAUb,GAAUa,EAAM,WAAW,WAAW,UAAUN,GAAgBM,EAAM,WAAW,gBAAgB,GAAUC,GAAuB,CAACD,EAAM5C,IAAe4C,EAAM,iBAAwB5C,EAAS,KAAK,GAAG,EAAE4C,EAAM,iBAAwB5C,EAAS,KAAK,GAAG,EAAU8C,GAA6BC,EAAW,SAASH,EAAMI,EAAI,CAAC,IAAMC,EAAYC,EAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,EAAM,EAAO,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAQC,EAAkBC,EAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAA3D,EAAQ,UAAA4D,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,GAAU,UAAAC,GAAU,UAAAC,GAAU,UAAAC,EAAU,GAAGC,CAAS,EAAE1D,GAASsB,CAAK,EAAO,CAAC,YAAAqC,EAAY,WAAAC,GAAW,oBAAAC,GAAoB,gBAAAC,GAAgB,eAAAC,EAAe,UAAAC,GAAU,gBAAAC,GAAgB,WAAAC,EAAW,SAAAxF,EAAQ,EAAEyF,GAAgB,CAAC,WAAA9F,GAAW,eAAe,YAAY,IAAIwD,EAAW,QAAAjD,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ6F,GAAiB7C,GAAuBD,EAAM5C,EAAQ,EAAO,CAAC,sBAAA2F,EAAsB,MAAAC,EAAK,EAAEC,GAAyBZ,CAAW,EAAQa,GAAiBH,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQQ,GAAiBL,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQS,GAAgBN,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQU,GAAgBP,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQW,GAAgBR,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQY,GAAgBT,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQa,GAAiBV,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQc,GAAgBX,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQe,GAAiBZ,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQgB,GAAiBb,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQiB,GAAiBd,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQkB,GAAgBf,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQmB,GAAiBhB,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQoB,GAAgBjB,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQqB,GAAclB,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQsB,GAAiBnB,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQuB,GAAgBpB,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQwB,GAAgBrB,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAuCyB,GAAkBC,EAAGtH,GAAkB,GAAhD,CAAC,CAAuE,EAAQuH,GAAQ1G,GAAMyD,CAAS,EAAQkD,GAAS3G,GAAM4D,CAAS,EAAQgD,GAAS5G,GAAM+D,CAAS,EAAQ8C,GAAS7G,GAAMkE,CAAS,EAAQ4C,GAAS9G,GAAMqE,EAAS,EAAE,OAAoB5D,EAAKsG,EAAY,CAAC,GAAG3D,GAAUT,EAAgB,SAAsBlC,EAAKC,GAAS,CAAC,QAAQnB,GAAS,QAAQ,GAAM,SAAsBkB,EAAKR,GAAW,CAAC,MAAMP,GAAY,SAAsBsH,EAAMjI,EAAO,IAAI,CAAC,GAAGwF,EAAU,GAAGI,GAAgB,UAAU8B,EAAGD,GAAkB,gBAAgBrD,EAAUsB,EAAU,EAAE,mBAAmB,eAAe,iBAAiBQ,GAAiB,SAAS,YAAY,IAAIvC,EAAW,MAAM,CAAC,GAAGQ,CAAK,EAAE,GAAG7D,GAAqB,CAAC,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,SAAS,EAAE,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,UAAU,EAAE,UAAU,CAAC,mBAAmB,UAAU,EAAE,UAAU,CAAC,mBAAmB,SAAS,EAAE,UAAU,CAAC,mBAAmB,SAAS,EAAE,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,aAAa,EAAE,UAAU,CAAC,mBAAmB,UAAU,EAAE,UAAU,CAAC,mBAAmB,UAAU,EAAE,UAAU,CAAC,mBAAmB,SAAS,EAAE,UAAU,CAAC,mBAAmB,SAAS,EAAE,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,YAAY,EAAE,UAAU,CAAC,mBAAmB,UAAU,CAAC,EAAEmF,EAAYI,CAAc,EAAE,SAAS,CAAcnE,EAAK5B,GAAgB,CAAC,UAAU,gBAAgB,mBAAmB,cAAc,iBAAiBoG,GAAiB,SAAS,YAAY,GAAG5F,GAAqB,CAAC,UAAU,CAAC,kBAAkB,CAAC,WAAWO,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAU,eAAeE,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,CAAC,CAAC,EAAE2E,EAAYI,CAAc,EAAE,SAAsBnE,EAAKwG,EAA0B,CAAC,OAAO,IAAI,MAAM,aAAajE,GAAmB,OAAO,OAAO,0BAA0B,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,GAAG3D,GAAqB,CAAC,UAAU,CAAC,GAAG2D,GAAmB,GAAG,GAAG,EAAE,GAAG,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,GAAG,EAAE,UAAU,CAAC,MAAMA,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,IAAI,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,GAAG,EAAE,UAAU,CAAC,MAAM,aAAaA,GAAmB,OAAO,OAAO,2BAA2B,EAAE,UAAU,CAAC,MAAM,aAAaA,GAAmB,OAAO,OAAO,2BAA2B,EAAE,UAAU,CAAC,MAAMA,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,IAAI,CAAC,EAAE,UAAU,CAAC,MAAMA,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,IAAI,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,GAAG,EAAE,UAAU,CAAC,MAAM,aAAaA,GAAmB,OAAO,OAAO,2BAA2B,EAAE,UAAU,CAAC,MAAM,aAAaA,GAAmB,OAAO,OAAO,2BAA2B,EAAE,UAAU,CAAC,MAAM,aAAaA,GAAmB,OAAO,OAAO,2BAA2B,EAAE,UAAU,CAAC,MAAMA,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,IAAI,CAAC,EAAE,UAAU,CAAC,MAAMA,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,IAAI,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,UAAU,CAAC,MAAMA,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,IAAI,CAAC,EAAE,UAAU,CAAC,MAAM,aAAaA,GAAmB,OAAO,OAAO,2BAA2B,CAAC,EAAEwB,EAAYI,CAAc,EAAE,SAAsBnE,EAAKyG,GAA8B,CAAC,UAAU,0BAA0B,iBAAiBjC,GAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBxE,EAAK7B,GAAyB,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU2E,EAAU,SAAS,YAAY,UAAUD,EAAU,UAAUxD,GAAkBuD,CAAS,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,GAAGhE,GAAqB,CAAC,UAAU,CAAC,UAAUwE,EAAU,UAAUD,EAAU,UAAU9D,GAAkB6D,CAAS,CAAC,EAAE,UAAU,CAAC,UAAUQ,GAAU,UAAUD,EAAU,UAAUpE,GAAkBmE,CAAS,CAAC,EAAE,UAAU,CAAC,UAAUE,GAAU,UAAUD,EAAU,UAAUpE,GAAkBmE,CAAS,EAAE,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUK,EAAU,UAAUD,GAAU,UAAUvE,GAAkBsE,EAAS,CAAC,EAAE,UAAU,CAAC,UAAUP,EAAU,UAAUD,EAAU,UAAU9D,GAAkB6D,CAAS,CAAC,EAAE,UAAU,CAAC,UAAUW,EAAU,UAAUD,GAAU,UAAUvE,GAAkBsE,EAAS,CAAC,EAAE,UAAU,CAAC,UAAUJ,EAAU,UAAUD,EAAU,UAAUjE,GAAkBgE,CAAS,EAAE,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUQ,EAAU,UAAUD,GAAU,UAAUvE,GAAkBsE,EAAS,EAAE,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUJ,EAAU,UAAUD,EAAU,UAAUjE,GAAkBgE,CAAS,CAAC,EAAE,UAAU,CAAC,UAAUE,EAAU,UAAUD,EAAU,UAAUjE,GAAkBgE,CAAS,CAAC,EAAE,UAAU,CAAC,UAAUK,GAAU,UAAUD,EAAU,UAAUpE,GAAkBmE,CAAS,CAAC,EAAE,UAAU,CAAC,UAAUP,EAAU,UAAUD,EAAU,UAAU3D,GAAkB0D,CAAS,EAAE,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUK,EAAU,UAAUD,EAAU,UAAU9D,GAAkB6D,CAAS,EAAE,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUD,EAAU,UAAUD,EAAU,UAAU3D,GAAkB0D,CAAS,CAAC,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUE,EAAU,UAAUD,EAAU,UAAU3D,GAAkB0D,CAAS,CAAC,CAAC,EAAEgB,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeoC,EAAMjI,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,iBAAiBkG,GAAiB,SAAS,YAAY,SAAS,CAAcxE,EAAKwG,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQjE,GAAmB,OAAO,OAAO,uBAAuB,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,GAAG3D,GAAqB,CAAC,UAAU,CAAC,MAAM2D,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,uBAAuB,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,uBAAuB,EAAE,UAAU,CAAC,MAAMA,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,MAAMA,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,uBAAuB,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,uBAAuB,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,uBAAuB,EAAE,UAAU,CAAC,MAAMA,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,MAAMA,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,MAAMA,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,uBAAuB,CAAC,EAAEwB,EAAYI,CAAc,EAAE,SAAsBnE,EAAKyG,GAA8B,CAAC,UAAU,0BAA0B,iBAAiBjC,GAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBxE,EAAKxB,GAAkB,CAAC,UAAUqE,EAAU,OAAO,OAAO,GAAG,YAAY,UAAU+B,GAAiB,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,GAAGhG,GAAqB,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUmG,GAAgB,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUD,GAAiB,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,GAAiB,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUC,GAAgB,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,GAAgB,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUD,GAAiB,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,GAAiB,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,GAAiB,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUC,GAAgB,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,GAAgB,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,GAAgB,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUD,GAAiB,QAAQ,WAAW,CAAC,EAAEf,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE8B,IAAsBjG,EAAKwG,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQjE,GAAmB,OAAO,OAAO,uBAAuB,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,IAAI,GAAG3D,GAAqB,CAAC,UAAU,CAAC,MAAM2D,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,uBAAuB,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,uBAAuB,EAAE,UAAU,CAAC,MAAMA,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,UAAU,CAAC,MAAMA,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,uBAAuB,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,uBAAuB,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,uBAAuB,EAAE,UAAU,CAAC,MAAMA,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,UAAU,CAAC,MAAMA,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,UAAU,CAAC,MAAMA,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,uBAAuB,CAAC,EAAEwB,EAAYI,CAAc,EAAE,SAAsBnE,EAAKyG,GAA8B,CAAC,UAAU,2BAA2B,iBAAiBjC,GAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBxE,EAAKxB,GAAkB,CAAC,UAAUwE,EAAU,OAAO,OAAO,GAAG,YAAY,UAAUgC,GAAgB,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,GAAGpG,GAAqB,CAAC,UAAU,CAAC,UAAUsG,GAAgB,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUD,GAAgB,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,GAAgB,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUC,GAAgB,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,GAAgB,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUD,GAAgB,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,GAAgB,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,GAAgB,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUC,GAAgB,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,GAAgB,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,GAAgB,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUD,GAAgB,QAAQ,WAAW,CAAC,EAAElB,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE+B,IAAuBlG,EAAKwG,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQjE,GAAmB,OAAO,OAAO,uBAAuB,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,IAAI,GAAG3D,GAAqB,CAAC,UAAU,CAAC,MAAM2D,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,uBAAuB,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,uBAAuB,EAAE,UAAU,CAAC,MAAMA,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,UAAU,CAAC,MAAMA,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,uBAAuB,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,uBAAuB,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,uBAAuB,EAAE,UAAU,CAAC,MAAMA,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,UAAU,CAAC,MAAMA,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,UAAU,CAAC,MAAMA,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,uBAAuB,CAAC,EAAEwB,EAAYI,CAAc,EAAE,SAAsBnE,EAAKyG,GAA8B,CAAC,UAAU,2BAA2B,iBAAiBjC,GAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBxE,EAAKxB,GAAkB,CAAC,UAAU2E,EAAU,OAAO,OAAO,GAAG,YAAY,UAAUgC,GAAiB,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,GAAGvG,GAAqB,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUyG,GAAiB,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUD,GAAgB,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,GAAgB,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUC,GAAiB,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,GAAiB,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUD,GAAgB,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,GAAgB,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,GAAgB,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUC,GAAiB,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,GAAiB,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,GAAiB,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUD,GAAgB,QAAQ,WAAW,CAAC,EAAErB,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEgC,IAAuBnG,EAAKwG,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQjE,GAAmB,OAAO,OAAO,uBAAuB,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,IAAI,GAAG3D,GAAqB,CAAC,UAAU,CAAC,MAAM2D,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,uBAAuB,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,uBAAuB,EAAE,UAAU,CAAC,MAAMA,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,UAAU,CAAC,MAAMA,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,uBAAuB,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,uBAAuB,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,uBAAuB,EAAE,UAAU,CAAC,MAAMA,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,UAAU,CAAC,MAAMA,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,UAAU,CAAC,MAAMA,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,uBAAuB,CAAC,EAAEwB,EAAYI,CAAc,EAAE,SAAsBnE,EAAKyG,GAA8B,CAAC,UAAU,0BAA0B,iBAAiBjC,GAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBxE,EAAKxB,GAAkB,CAAC,UAAU8E,EAAU,OAAO,OAAO,GAAG,YAAY,UAAUgC,GAAiB,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,GAAG1G,GAAqB,CAAC,UAAU,CAAC,UAAU4G,GAAgB,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUD,GAAiB,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,GAAiB,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUC,GAAgB,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,GAAgB,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUD,GAAiB,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,GAAiB,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,GAAiB,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUC,GAAgB,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,GAAgB,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,GAAgB,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUD,GAAiB,QAAQ,WAAW,CAAC,EAAExB,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEiC,IAAuBpG,EAAKwG,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQjE,GAAmB,OAAO,OAAO,uBAAuB,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,IAAI,GAAG3D,GAAqB,CAAC,UAAU,CAAC,MAAM2D,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,uBAAuB,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,uBAAuB,EAAE,UAAU,CAAC,MAAMA,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,UAAU,CAAC,MAAMA,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,uBAAuB,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,uBAAuB,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,uBAAuB,EAAE,UAAU,CAAC,MAAMA,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,UAAU,CAAC,MAAMA,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,UAAU,CAAC,MAAMA,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,uBAAuB,CAAC,EAAEwB,EAAYI,CAAc,EAAE,SAAsBnE,EAAKyG,GAA8B,CAAC,UAAU,yBAAyB,iBAAiBjC,GAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBxE,EAAKxB,GAAkB,CAAC,UAAUiF,EAAU,OAAO,OAAO,GAAG,YAAY,UAAUgC,GAAiB,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,GAAG7G,GAAqB,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAU+G,GAAc,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUD,GAAgB,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,GAAgB,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUC,GAAc,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,GAAc,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUD,GAAgB,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,GAAgB,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,GAAgB,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUC,GAAc,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,GAAc,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,GAAc,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUD,GAAgB,QAAQ,WAAW,CAAC,EAAE3B,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEkC,IAAuBrG,EAAKwG,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQjE,GAAmB,OAAO,OAAO,uBAAuB,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,IAAI,GAAG3D,GAAqB,CAAC,UAAU,CAAC,MAAM2D,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,uBAAuB,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,uBAAuB,EAAE,UAAU,CAAC,MAAMA,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,UAAU,CAAC,MAAMA,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,uBAAuB,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,uBAAuB,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,uBAAuB,EAAE,UAAU,CAAC,MAAMA,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,UAAU,CAAC,MAAMA,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,UAAU,CAAC,MAAMA,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,uBAAuB,CAAC,EAAEwB,EAAYI,CAAc,EAAE,SAAsBnE,EAAKyG,GAA8B,CAAC,UAAU,0BAA0B,iBAAiBjC,GAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBxE,EAAKxB,GAAkB,CAAC,UAAUoF,GAAU,OAAO,OAAO,GAAG,YAAY,UAAUgC,GAAiB,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,GAAGhH,GAAqB,CAAC,UAAU,CAAC,UAAUkH,GAAgB,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUD,GAAgB,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,GAAgB,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUC,GAAgB,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,GAAgB,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUD,GAAgB,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,GAAgB,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,GAAgB,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUC,GAAgB,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,GAAgB,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,GAAgB,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUD,GAAgB,QAAQ,WAAW,CAAC,EAAE9B,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQuC,GAAI,CAAC,kFAAkF,gFAAgF,8QAA8Q,0RAA0R,uGAAuG,0RAA0R,iTAAiT,+EAA+E,gFAAgF,+EAA+E,+EAA+E,gFAAgF,0SAA0S,mWAAmW,0SAA0S,+HAA+H,iIAAiI,iIAAiI,+HAA+H,6HAA6H,+HAA+H,oUAAoU,4TAA4T,kWAAkW,2TAA2T,EAWhw/BC,GAAgBC,EAAQhF,GAAU8E,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,mBAAmBA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,IAAI,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,eAAe,YAAY,YAAY,YAAY,YAAY,YAAY,cAAc,WAAW,WAAW,WAAW,WAAW,WAAW,aAAa,UAAU,UAAU,UAAU,UAAU,SAAS,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,MAAM,WAAW,KAAKA,EAAY,eAAe,EAAE,UAAU,CAAC,aAAa,WAAW,gBAAgB,GAAM,YAAY,GAAG,MAAM,WAAW,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,iBAAiB,gBAAgB,GAAM,MAAM,iBAAiB,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,MAAM,WAAW,KAAKA,EAAY,eAAe,EAAE,UAAU,CAAC,aAAa,WAAW,gBAAgB,GAAM,YAAY,GAAG,MAAM,WAAW,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,iBAAiB,gBAAgB,GAAM,MAAM,iBAAiB,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,MAAM,WAAW,KAAKA,EAAY,eAAe,EAAE,UAAU,CAAC,aAAa,WAAW,gBAAgB,GAAM,YAAY,GAAG,MAAM,WAAW,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,iBAAiB,YAAY,GAAG,gBAAgB,GAAM,MAAM,iBAAiB,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,MAAM,WAAW,KAAKA,EAAY,eAAe,EAAE,UAAU,CAAC,aAAa,WAAW,YAAY,GAAG,gBAAgB,GAAM,YAAY,GAAG,MAAM,WAAW,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,iBAAiB,YAAY,GAAG,gBAAgB,GAAM,YAAY,GAAG,MAAM,iBAAiB,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,MAAM,WAAW,KAAKA,EAAY,eAAe,EAAE,UAAU,CAAC,aAAa,WAAW,gBAAgB,GAAM,YAAY,GAAG,MAAM,WAAW,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,iBAAiB,YAAY,GAAG,gBAAgB,GAAM,MAAM,iBAAiB,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,MAAM,WAAW,KAAKA,EAAY,eAAe,EAAE,UAAU,CAAC,aAAa,WAAW,gBAAgB,GAAM,MAAM,WAAW,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,iBAAiB,YAAY,GAAG,gBAAgB,GAAM,MAAM,iBAAiB,KAAKA,EAAY,MAAM,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,EAAE,GAAG1I,GAA8B,GAAGM,EAAsB,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECX9iE,IAAM0I,GAAgBC,GAAOC,EAAO,GAAG,EAAQC,GAAW,CAAC,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,kBAAkB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAAAD,GAAU,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAY,CAAC,OAAO,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,CAAmB,EAAQC,EAAWL,GAAOE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASvB,EAAO,OAAawB,CAAQ,EAAQC,GAAwB,CAAC,QAAQ,YAAY,MAAM,WAAW,EAAQC,GAAS,CAAC,CAAC,YAAAC,EAAY,QAAAC,EAAQ,OAAAC,EAAO,GAAAC,EAAG,OAAAC,EAAO,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,UAAUN,GAAaM,EAAM,WAAW,cAAc,QAAQR,GAAwBQ,EAAM,OAAO,GAAGA,EAAM,SAAS,YAAY,UAAUF,GAAQE,EAAM,WAAW,KAAK,UAAUL,GAASK,EAAM,WAAW,SAAS,GAAUC,GAAuB,CAACD,EAAM3B,IAAe2B,EAAM,iBAAwB3B,EAAS,KAAK,GAAG,EAAE2B,EAAM,iBAAwB3B,EAAS,KAAK,GAAG,EAAU6B,GAA6BC,EAAW,SAASH,EAAMI,EAAI,CAAC,IAAMC,EAAYC,EAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,EAAM,EAAO,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAQC,EAAkBC,EAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAA1C,EAAQ,UAAA2C,EAAU,UAAAC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAE5B,GAASO,CAAK,EAAO,CAAC,YAAAsB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAAxD,CAAQ,EAAEyD,GAAgB,CAAC,WAAA9D,GAAW,eAAe,YAAY,IAAIuC,EAAW,QAAAhC,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ6D,EAAiB9B,GAAuBD,EAAM3B,CAAQ,EAAmF2D,GAAkBC,EAAGhE,GAAkB,GAA5F,CAAa+C,GAAuBA,EAAS,CAAuE,EAAE,OAAoB3B,EAAK6C,EAAY,CAAC,GAAGjB,GAAUT,EAAgB,SAAsBnB,EAAKC,GAAS,CAAC,QAAQjB,EAAS,QAAQ,GAAM,SAAsBgB,EAAKT,GAAW,CAAC,MAAMF,GAAY,SAAsByD,EAAMtE,GAAgB,CAAC,GAAGwD,EAAU,GAAGI,EAAgB,kBAAkB,CAAC,WAAWhD,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAU,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAUyD,EAAGD,GAAkB,iBAAiBhB,EAAUO,CAAU,EAAE,cAAc,GAAK,mBAAmB,UAAU,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIxB,EAAW,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,qBAAqB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,wEAAwE,GAAGQ,CAAK,EAAE,GAAG5C,GAAqB,CAAC,UAAU,CAAC,gBAAgBQ,GAAW,mBAAmB,OAAO,CAAC,EAAE2C,EAAYI,CAAc,EAAE,SAAS,CAAcS,EAAMpE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,iBAAiBgE,EAAiB,SAAS,YAAY,SAAS,CAAc1C,EAAKtB,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,SAAS,iBAAiBgE,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,qBAAqB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,qBAAqB,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsB1C,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAKtB,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,0CAA0C,EAAE,SAAS,IAAI,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,KAAK,MAAM,CAAC,gBAAgB,EAAE,iBAAiBgE,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,KAAK,EAAE,KAAKb,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeiB,EAAMpE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,iBAAiBgE,EAAiB,SAAS,YAAY,SAAS,CAAc1C,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAKtB,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,uBAAuB,MAAM,CAAC,OAAO,EAAE,iBAAiBgE,EAAiB,SAAS,YAAY,MAAM,CAAC,6BAA6B,KAAK,EAAE,KAAKZ,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe9B,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWE,EAAS,CAAC,SAAsBF,EAAKtB,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,gDAAgD,EAAE,SAAS,kGAAkG,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,mGAAmG,MAAM,CAAC,OAAO,EAAE,iBAAiBgE,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wBAAwB,6BAA6B,KAAK,EAAE,KAAKX,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/B,EAAKtB,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,SAAS,iBAAiBgE,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,mBAAmB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,OAAO,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQM,GAAI,CAAC,kFAAkF,kFAAkF,0RAA0R,2RAA2R,0QAA0Q,iHAAiH,8RAA8R,mMAAmM,0LAA0L,+EAA+E,8DAA8D,GAAeA,GAAI,GAAgBA,GAAI,+bAA+b,EAWp7SC,GAAgBC,EAAQrC,GAAUmC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,iBAAiBA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAG,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,UAAU,OAAO,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,KAAK,gBAAgB,GAAM,MAAM,SAAS,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,UAAU,gBAAgB,GAAM,MAAM,UAAU,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,cAAc,YAAY,GAAG,gBAAgB,GAAM,MAAM,cAAc,KAAKA,EAAY,MAAM,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,yEAAyE,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,yEAAyE,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,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGM,EAAoCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECX12HC,GAAU,UAAU,CAAC,iBAAiB,aAAa,mBAAmB,sBAAsB,CAAC,EAAS,IAAMC,GAAM,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,yEAAyE,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,yEAAyE,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,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,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,wEAAwE,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,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,yEAAyE,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,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,uEAAuE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,yEAAyE,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,wEAAwE,OAAO,KAAK,CAAC,CAAC,CAAC,EAAeC,GAAI,CAAC,snCAAsnC,4qCAA4qC,wqCAAwqC,EAAeC,GAAU,eCAt2R,IAAMC,GAAcC,EAASC,EAAQ,EAAQC,GAAgBC,GAAOC,EAAO,GAAG,EAAQC,GAAW,CAAC,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,kBAAkB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAAAD,GAAU,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,OAAO,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,QAAQ,EAAQC,GAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAY,CAAC,MAAM,EAAE,SAAS,IAAI,KAAK,CAAC,IAAI,EAAE,EAAE,GAAG,EAAE,KAAK,OAAO,EAAQC,GAAY,CAAC,MAAM,GAAG,SAAS,IAAI,KAAK,CAAC,IAAI,EAAE,EAAE,GAAG,EAAE,KAAK,OAAO,EAAQC,GAAkBC,GAAW,OAAOA,GAAQ,UAAUA,IAAQ,MAAM,OAAOA,EAAM,KAAM,SAAiBA,EAAc,OAAOA,GAAQ,SAAS,CAAC,IAAIA,CAAK,EAAE,OAAkBC,GAAW,CAAC,CAAC,MAAAD,EAAM,SAAAE,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,CAAmB,EAAQC,EAAWN,GAAOG,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASxB,EAAO,OAAayB,CAAQ,EAAQC,GAAwB,CAAC,QAAQ,YAAY,MAAM,WAAW,EAAQC,GAAS,CAAC,CAAC,eAAAC,EAAe,UAAAC,EAAU,eAAAC,EAAe,UAAAC,EAAU,OAAAC,EAAO,QAAAC,EAAQ,YAAAC,EAAY,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,WAAAC,EAAW,UAAAC,EAAU,YAAAC,EAAY,UAAAC,EAAU,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,UAAUF,GAAWE,EAAM,WAAW,wEAAwE,UAAUf,GAAgBe,EAAM,WAAW,iBAAiB,UAAUV,GAASU,EAAM,WAAW,qEAAqE,UAAUZ,GAAWY,EAAM,WAAW,OAAO,UAAUd,GAAWc,EAAM,WAAW,OAAO,UAAUJ,GAAWI,EAAM,WAAW,sEAAsE,UAAUN,GAAOM,EAAM,WAAW,OAAO,UAAUL,GAAYK,EAAM,WAAW,aAAa,QAAQjB,GAAwBiB,EAAM,OAAO,GAAGA,EAAM,SAAS,YAAY,UAAUT,GAAaS,EAAM,WAAW,CAAC,kBAAkB,EAAE,YAAY,2BAA2B,gBAAgB,EAAE,iBAAiB,EAAE,YAAY,QAAQ,eAAe,CAAC,EAAE,UAAUX,GAAQW,EAAM,UAAU,UAAUH,GAAaG,EAAM,WAAW,cAAc,UAAUb,GAAgBa,EAAM,WAAW,gBAAgB,GAAUC,GAAuB,CAACD,EAAMrC,IAAeqC,EAAM,iBAAwBrC,EAAS,KAAK,GAAG,EAAEqC,EAAM,iBAAwBrC,EAAS,KAAK,GAAG,EAAUuC,GAA6BC,EAAW,SAASH,EAAMI,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAA7C,EAAQ,UAAA8C,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAEvC,GAASgB,CAAK,EAAO,CAAC,YAAAwB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,GAAU,gBAAAC,GAAgB,WAAAC,GAAW,SAAApE,CAAQ,EAAEqE,GAAgB,CAAC,WAAA1E,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQyE,EAAiBhC,GAAuBD,EAAMrC,CAAQ,EAAQuE,EAAWC,EAAO,IAAI,EAAQC,GAAsBC,EAAM,EAAQC,GAAsB,CAAa7B,GAAuBA,GAAuBA,GAAuBA,EAAS,EAAQ8B,GAAkBC,EAAqB,EAAE,OAAoB5D,EAAK6D,EAAY,CAAC,GAAG/B,GAAU0B,GAAgB,SAAsBxD,EAAKC,GAAS,CAAC,QAAQlB,EAAS,QAAQ,GAAM,SAAsBiB,EAAKR,GAAW,CAAC,MAAMN,GAAY,SAAsB4E,EAAMrF,EAAO,IAAI,CAAC,GAAGkE,EAAU,GAAGI,EAAgB,UAAUgB,EAAGpF,GAAkB,GAAG+E,GAAsB,iBAAiB7B,EAAUgB,CAAU,EAAE,mBAAmB,UAAU,iBAAiBQ,EAAiB,SAAS,YAAY,IAAI7B,GAAK8B,EAAK,MAAM,CAAC,gBAAgBb,EAAU,GAAGb,CAAK,EAAE,GAAG/C,GAAqB,CAAC,UAAU,CAAC,mBAAmB,OAAO,CAAC,EAAE+D,EAAYI,CAAc,EAAE,SAAS,CAAcc,EAAMvF,GAAgB,CAAC,kBAAkB,CAAC,WAAWa,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAU,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,iBAAiB,mBAAmB,MAAM,iBAAiBkE,EAAiB,SAAS,YAAY,GAAGxE,GAAqB,CAAC,UAAU,CAAC,mCAAmC,MAAS,CAAC,EAAE+D,EAAYI,CAAc,EAAE,SAAS,CAAcc,EAAMrF,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiB4E,EAAiB,SAAS,YAAY,SAAS,CAAcrD,EAAKgE,EAA0B,CAAC,SAAsBhE,EAAKvB,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB4E,EAAiB,SAAS,sBAAsB,SAAsBrD,EAAK1B,GAAS,CAAC,MAAMiE,EAAU,OAAO,OAAO,WAAW,OAAO,cAAc,QAAQ,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAM,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,OAAO,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAevC,EAAKgE,EAA0B,CAAC,SAAsBhE,EAAKvB,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB4E,EAAiB,SAAS,sBAAsB,SAAsBrD,EAAK1B,GAAS,CAAC,MAAMiE,EAAU,OAAO,OAAO,WAAW,OAAO,cAAc,QAAQ,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAM,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,OAAO,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAevC,EAAKgE,EAA0B,CAAC,SAAsBhE,EAAKvB,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB4E,EAAiB,SAAS,sBAAsB,SAAsBrD,EAAK1B,GAAS,CAAC,MAAMiE,EAAU,OAAO,OAAO,WAAW,OAAO,cAAc,QAAQ,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAM,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,OAAO,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAevC,EAAKgE,EAA0B,CAAC,SAAsBhE,EAAKvB,EAAO,IAAI,CAAC,UAAU,yBAAyB,iBAAiB4E,EAAiB,SAAS,sBAAsB,SAAsBrD,EAAK1B,GAAS,CAAC,MAAMiE,EAAU,OAAO,OAAO,WAAW,OAAO,cAAc,QAAQ,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAM,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,OAAO,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAevC,EAAKgE,EAA0B,CAAC,SAAsBhE,EAAKvB,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB4E,EAAiB,SAAS,sBAAsB,SAAsBrD,EAAK1B,GAAS,CAAC,MAAMiE,EAAU,OAAO,OAAO,WAAW,OAAO,cAAc,QAAQ,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAM,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,OAAO,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAevC,EAAKiE,EAAS,CAAC,sBAAsB,GAAK,SAAsBjE,EAAWE,EAAS,CAAC,SAAsBF,EAAKvB,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,wEAAwE,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,gHAAgH,MAAM,CAAC,OAAO,EAAE,iBAAiB4E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,gDAAgD,6BAA6B,MAAM,2CAA2Cb,CAAS,EAAE,KAAKT,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe/B,EAAKvB,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiB4E,EAAiB,SAAS,WAAW,CAAC,EAAeS,EAAMrF,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiB4E,EAAiB,SAAS,YAAY,SAAS,CAAcS,EAAMvF,GAAgB,CAAC,kBAAkB,CAAC,WAAWc,EAAW,EAAE,sBAAsB,GAAK,gBAAgBF,GAAU,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,iBAAiB,mBAAmB,UAAU,iBAAiBkE,EAAiB,SAAS,YAAY,SAAS,CAAcS,EAAMrF,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,IAAI,iBAAiB4E,EAAiB,SAAS,YAAY,SAAS,CAAcrD,EAAKiE,EAAS,CAAC,sBAAsB,GAAK,SAAsBjE,EAAWE,EAAS,CAAC,SAAsBF,EAAKvB,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,wEAAwE,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,MAAM,CAAC,OAAO,EAAE,iBAAiB4E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,gDAAgD,6BAA6B,MAAM,2CAA2Cb,CAAS,EAAE,KAAKR,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAehC,EAAKiE,EAAS,CAAC,sBAAsB,GAAK,SAAsBjE,EAAWE,EAAS,CAAC,SAAsBF,EAAKvB,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,wEAAwE,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,qBAAqB,MAAM,CAAC,OAAO,EAAE,iBAAiB4E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,gDAAgD,6BAA6B,MAAM,2CAA2Cb,EAAU,QAAQ,EAAE,EAAE,KAAKP,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe6B,EAAMrF,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,IAAI,iBAAiB4E,EAAiB,SAAS,YAAY,SAAS,CAAcrD,EAAKiE,EAAS,CAAC,sBAAsB,GAAK,SAAsBjE,EAAWE,EAAS,CAAC,SAAsBF,EAAKvB,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,wEAAwE,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,MAAM,CAAC,OAAO,EAAE,iBAAiB4E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,gDAAgD,6BAA6B,MAAM,2CAA2Cb,CAAS,EAAE,KAAKN,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAelC,EAAKiE,EAAS,CAAC,sBAAsB,GAAK,SAAsBjE,EAAWE,EAAS,CAAC,SAAsBF,EAAKvB,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,wEAAwE,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,kBAAkB,MAAM,CAAC,OAAO,EAAE,iBAAiB4E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,gDAAgD,6BAA6B,MAAM,2CAA2Cb,EAAU,QAAQ,EAAE,EAAE,KAAKL,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe2B,EAAMrF,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,SAAS,iBAAiB4E,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,GAAGX,EAAU,mBAAmBA,EAAU,WAAW,KAAK,iBAAiBA,EAAU,YAAY,sBAAsB,GAAGA,EAAU,iBAAiBA,EAAU,WAAW,KAAK,uBAAuB,GAAGA,EAAU,kBAAkBA,EAAU,WAAW,KAAK,iBAAiBA,EAAU,YAAY,qBAAqB,GAAGA,EAAU,gBAAgBA,EAAU,WAAW,IAAI,EAAE,SAAS,CAAc1C,EAAKkE,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,OAAO,GAAG5E,GAAkB8C,CAAS,EAAM,UAAU,SAAS,UAAU,QAAS,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,iBAAiBiB,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,CAAC,CAAC,EAAeS,EAAMrF,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,iBAAiB4E,EAAiB,SAAS,YAAY,SAAS,CAAcrD,EAAKiE,EAAS,CAAC,sBAAsB,GAAK,SAAsBjE,EAAWE,EAAS,CAAC,SAAsBF,EAAKvB,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,wEAAwE,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiB4E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,gDAAgD,6BAA6B,MAAM,2CAA2Cb,CAAS,EAAE,KAAKH,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAerC,EAAKiE,EAAS,CAAC,sBAAsB,GAAK,SAAsBjE,EAAWE,EAAS,CAAC,SAAsBF,EAAKvB,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,wEAAwE,EAAE,SAAS,YAAY,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,uCAAuC,MAAM,CAAC,OAAO,EAAE,iBAAiB4E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,gDAAgD,6BAA6B,MAAM,2CAA2Cb,EAAU,QAAQ,EAAE,EAAE,KAAKF,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQ6B,GAAI,CAAC,kFAAkF,kFAAkF,mQAAmQ,4RAA4R,8RAA8R,0QAA0Q,kMAAkM,iHAAiH,4RAA4R,wRAAwR,+SAA+S,8MAA8M,kSAAkS,8RAA8R,yJAAyJ,8RAA8R,oIAAoI,i5DAAi5D,kEAAkE,mEAAmE,8DAA8D,+DAA+D,kwBAAkwB,GAAeA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,+bAA+b,EASprrBC,GAAgBC,EAAQ/C,GAAU6C,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,qBAAqBA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAG,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,UAAU,OAAO,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,cAAc,YAAY,GAAG,gBAAgB,GAAM,MAAM,cAAc,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,OAAO,gBAAgB,GAAM,MAAM,YAAY,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,iBAAiB,YAAY,GAAG,gBAAgB,GAAM,MAAM,iBAAiB,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,OAAO,gBAAgB,GAAM,MAAM,YAAY,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,iBAAiB,YAAY,GAAG,gBAAgB,GAAM,MAAM,iBAAiB,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,MAAM,SAAS,KAAKA,EAAY,eAAe,EAAE,UAAU,CAAC,aAAa,OAAO,gBAAgB,GAAM,MAAM,OAAO,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,aAAa,gBAAgB,GAAM,MAAM,aAAa,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,+FAA+F,MAAM,aAAa,KAAKA,EAAY,KAAK,EAAE,UAAU,CAAC,aAAa,+FAA+F,MAAM,aAAa,KAAKA,EAAY,KAAK,EAAE,UAAU,CAAC,aAAa,4FAA4F,MAAM,WAAW,KAAKA,EAAY,KAAK,EAAE,UAAU,CAAC,aAAa,CAAC,kBAAkB,EAAE,YAAY,2BAA2B,gBAAgB,EAAE,iBAAiB,EAAE,YAAY,QAAQ,eAAe,CAAC,EAAE,MAAM,eAAe,KAAKA,EAAY,MAAM,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,GAAGhG,GAAc,GAAGsG,EAAoCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECTz0G,IAAMC,GAAW,CAAC,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,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,OAAO,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,QAAQ,EAAQC,GAAkBC,GAAW,OAAOA,GAAQ,UAAUA,IAAQ,MAAM,OAAOA,EAAM,KAAM,SAAiBA,EAAc,OAAOA,GAAQ,SAAS,CAAC,IAAIA,CAAK,EAAE,OAAkBC,GAAmB,CAACC,EAAEC,IAAI,oBAAoBA,CAAC,GAASC,GAAmB,CAACF,EAAEC,IAAI,yBAAyBA,CAAC,GAASE,GAAW,CAAC,CAAC,MAAAL,EAAM,SAAAM,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,CAAmB,EAAQC,EAAWV,GAAmCO,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,QAAQ,YAAY,MAAM,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,QAAAC,EAAQ,OAAAC,EAAO,OAAAC,EAAO,GAAAC,EAAG,OAAAC,EAAO,OAAAC,EAAO,OAAAC,EAAO,OAAAC,EAAO,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAKC,EAAMC,EAAMC,EAAMC,EAAMC,EAAMC,EAAuCC,EAAMC,EAAM,MAAM,CAAC,GAAGT,EAAM,WAAWC,EAAKN,GAAsCK,EAAM,aAAa,MAAMC,IAAO,OAAOA,EAAK,CAAC,IAAI,sEAAsE,EAAE,WAAWC,EAAML,GAAsCG,EAAM,aAAa,MAAME,IAAQ,OAAOA,EAAM,CAAC,IAAI,qEAAqE,EAAE,WAAWC,EAAMP,GAAsCI,EAAM,aAAa,MAAMG,IAAQ,OAAOA,EAAM,CAAC,IAAI,mEAAmE,EAAE,WAAWC,EAAMd,GAAsCU,EAAM,aAAa,MAAMI,IAAQ,OAAOA,EAAM,MAAM,WAAWC,EAAMd,GAAyCS,EAAM,aAAa,MAAMK,IAAQ,OAAOA,EAAM,qEAAqE,WAAWC,EAAMd,GAAsCQ,EAAM,aAAa,MAAMM,IAAQ,OAAOA,EAAM,CAAC,YAAY,yBAAyB,YAAY,QAAQ,YAAY,CAAC,EAAE,SAASE,GAAOD,EAAuCnB,GAAwBY,EAAM,OAAO,KAAK,MAAMO,IAAyC,OAAOA,EAAuCP,EAAM,WAAW,MAAMQ,IAAQ,OAAOA,EAAM,YAAY,WAAWC,EAAMX,GAAsCE,EAAM,aAAa,MAAMS,IAAQ,OAAOA,EAAM,CAAC,IAAI,qEAAqE,CAAC,CAAE,EAAQC,GAAuB,CAACV,EAAMlC,IAAekC,EAAM,iBAAwBlC,EAAS,KAAK,GAAG,EAAEkC,EAAM,iBAAwBlC,EAAS,KAAK,GAAG,EAAU6C,GAA6BC,EAAW,SAASZ,EAAMa,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAnD,EAAQ,UAAAoD,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAEtC,GAASW,CAAK,EAAO,CAAC,YAAA4B,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAArE,CAAQ,EAAEsE,GAAgB,CAAC,WAAA3E,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ0E,EAAiB3B,GAAuBV,EAAMlC,CAAQ,EAAQwE,GAAWC,EAAO,IAAI,EAAQC,GAAsBC,EAAM,EAAQC,GAAsB,CAAC,EAAQC,EAAkBC,EAAqB,EAAE,IAAIC,EAA6BC,EAA2BC,GAA4BC,GAA0BC,GAA8BC,EAA4BC,GAA6BC,GAA2BC,EAA8BC,GAA4BC,GAA6BC,EAA2BC,GAA8BC,GAA4BC,GAA6BC,GAA2B,OAAoB5E,EAAK6E,EAAY,CAAC,GAAG1C,GAA4CqB,GAAgB,SAAsBxD,EAAKC,GAAS,CAAC,QAAQnB,EAAS,QAAQ,GAAM,SAAsBkB,EAAKR,GAAW,CAAC,MAAMP,GAAY,SAAsB6F,EAAM5E,EAAO,IAAI,CAAC,GAAGyC,EAAU,GAAGI,EAAgB,UAAUgC,EAAGrG,GAAkB,GAAGgF,GAAsB,gBAAgBxB,EAAUW,CAAU,EAAE,mBAAmB,UAAU,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIxB,GAA6ByB,GAAK,MAAM,CAAC,GAAGrB,CAAK,EAAE,GAAGrD,GAAqB,CAAC,UAAU,CAAC,mBAAmB,OAAO,CAAC,EAAEgE,EAAYI,CAAc,EAAE,SAAS,CAAchD,EAAKgF,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,QAAQC,IAAwFtB,GAAkB,GAAI,KAAkEA,GAAkB,QAAS,IAAI,mBAAmB,GAAG,EAAE,MAAM,OAAO,GAAGzE,GAAkBkD,CAAS,EAAM,UAAU,SAAS,UAAU,QAAS,EAAE,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,IAAI,iBAAiBiB,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,IAAIQ,EAA6BrB,EAAU,qBAAqB,MAAMqB,IAA+B,OAAOA,EAA6BrB,EAAU,WAAW,KAAK,iBAAiBA,EAAU,YAAY,sBAAsB,IAAIsB,EAA2BtB,EAAU,mBAAmB,MAAMsB,IAA6B,OAAOA,EAA2BtB,EAAU,WAAW,KAAK,uBAAuB,IAAIuB,GAA4BvB,EAAU,oBAAoB,MAAMuB,KAA8B,OAAOA,GAA4BvB,EAAU,WAAW,KAAK,iBAAiBA,EAAU,YAAY,qBAAqB,IAAIwB,GAA0BxB,EAAU,kBAAkB,MAAMwB,KAA4B,OAAOA,GAA0BxB,EAAU,WAAW,KAAK,uBAAuB,OAAO,wBAAwB,OAAO,oBAAoB,OAAO,qBAAqB,MAAM,EAAE,kBAAkBpD,GAAmB,GAAGR,GAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,QAAQqG,IAAwFtB,GAAkB,GAAI,KAAkEA,GAAkB,QAAS,IAAI,mBAAmB,GAAG,EAAE,MAAM,OAAO,GAAGzE,GAAkBkD,CAAS,EAAM,UAAU,SAAS,UAAU,QAAS,CAAC,CAAC,EAAEQ,EAAYI,CAAc,CAAC,CAAC,EAAehD,EAAKgF,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,QAAQC,IAAwFtB,GAAkB,GAAI,KAAkEA,GAAkB,QAAS,IAAI,mBAAmB,GAAG,EAAE,MAAM,OAAO,GAAGzE,GAAkBmD,CAAS,EAAM,UAAU,SAAS,UAAU,QAAS,EAAE,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,IAAI,iBAAiBgB,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,IAAIY,GAA8BzB,EAAU,qBAAqB,MAAMyB,KAAgC,OAAOA,GAA8BzB,EAAU,WAAW,KAAK,iBAAiBA,EAAU,YAAY,sBAAsB,IAAI0B,EAA4B1B,EAAU,mBAAmB,MAAM0B,IAA8B,OAAOA,EAA4B1B,EAAU,WAAW,KAAK,uBAAuB,IAAI2B,GAA6B3B,EAAU,oBAAoB,MAAM2B,KAA+B,OAAOA,GAA6B3B,EAAU,WAAW,KAAK,iBAAiBA,EAAU,YAAY,qBAAqB,IAAI4B,GAA2B5B,EAAU,kBAAkB,MAAM4B,KAA6B,OAAOA,GAA2B5B,EAAU,WAAW,KAAK,uBAAuB,OAAO,wBAAwB,OAAO,oBAAoB,OAAO,qBAAqB,MAAM,EAAE,kBAAkBpD,GAAmB,GAAGR,GAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,QAAQqG,IAAwFtB,GAAkB,GAAI,KAAkEA,GAAkB,QAAS,IAAI,mBAAmB,GAAG,EAAE,MAAM,OAAO,GAAGzE,GAAkBmD,CAAS,EAAM,UAAU,SAAS,UAAU,QAAS,CAAC,CAAC,EAAEO,EAAYI,CAAc,CAAC,CAAC,EAAehD,EAAKgF,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,QAAQC,IAAwFtB,GAAkB,GAAI,KAAkEA,GAAkB,QAAS,IAAI,mBAAmB,GAAG,EAAE,MAAM,OAAO,GAAGzE,GAAkBoD,CAAS,EAAM,UAAU,SAAS,UAAU,QAAS,EAAE,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,IAAI,iBAAiBe,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,IAAIgB,EAA8B7B,EAAU,qBAAqB,MAAM6B,IAAgC,OAAOA,EAA8B7B,EAAU,WAAW,KAAK,iBAAiBA,EAAU,YAAY,sBAAsB,IAAI8B,GAA4B9B,EAAU,mBAAmB,MAAM8B,KAA8B,OAAOA,GAA4B9B,EAAU,WAAW,KAAK,uBAAuB,IAAI+B,GAA6B/B,EAAU,oBAAoB,MAAM+B,KAA+B,OAAOA,GAA6B/B,EAAU,WAAW,KAAK,iBAAiBA,EAAU,YAAY,qBAAqB,IAAIgC,EAA2BhC,EAAU,kBAAkB,MAAMgC,IAA6B,OAAOA,EAA2BhC,EAAU,WAAW,KAAK,uBAAuB,OAAO,wBAAwB,OAAO,oBAAoB,OAAO,qBAAqB,MAAM,EAAE,kBAAkBpD,GAAmB,GAAGR,GAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,QAAQqG,IAAwFtB,GAAkB,GAAI,KAAkEA,GAAkB,QAAS,IAAI,mBAAmB,GAAG,EAAE,MAAM,OAAO,GAAGzE,GAAkBoD,CAAS,EAAM,UAAU,SAAS,UAAU,QAAS,CAAC,CAAC,EAAEM,EAAYI,CAAc,CAAC,CAAC,EAAehD,EAAKgF,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,QAAQC,IAAwFtB,GAAkB,GAAI,KAAkEA,GAAkB,QAAS,IAAI,mBAAmB,GAAG,EAAE,MAAM,OAAO,GAAGzE,GAAkBqD,CAAS,EAAM,UAAU,SAAS,UAAU,QAAS,EAAE,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,IAAI,iBAAiBc,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,IAAIoB,GAA8BjC,EAAU,qBAAqB,MAAMiC,KAAgC,OAAOA,GAA8BjC,EAAU,WAAW,KAAK,iBAAiBA,EAAU,YAAY,sBAAsB,IAAIkC,GAA4BlC,EAAU,mBAAmB,MAAMkC,KAA8B,OAAOA,GAA4BlC,EAAU,WAAW,KAAK,uBAAuB,IAAImC,GAA6BnC,EAAU,oBAAoB,MAAMmC,KAA+B,OAAOA,GAA6BnC,EAAU,WAAW,KAAK,iBAAiBA,EAAU,YAAY,qBAAqB,IAAIoC,GAA2BpC,EAAU,kBAAkB,MAAMoC,KAA6B,OAAOA,GAA2BpC,EAAU,WAAW,KAAK,uBAAuB,OAAO,wBAAwB,OAAO,oBAAoB,OAAO,qBAAqB,MAAM,EAAE,kBAAkBpD,GAAmB,GAAGR,GAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,QAAQqG,IAAwFtB,GAAkB,GAAI,KAAkEA,GAAkB,QAAS,IAAI,mBAAmB,GAAG,EAAE,MAAM,OAAO,GAAGzE,GAAkBqD,CAAS,EAAM,UAAU,SAAS,UAAU,QAAS,CAAC,CAAC,EAAEK,EAAYI,CAAc,CAAC,CAAC,EAAehD,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,IAAI,iBAAiBmD,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgBX,EAAU,uBAAuB,OAAO,wBAAwB,OAAO,oBAAoB,OAAO,qBAAqB,MAAM,EAAE,kBAAkBtD,GAAmB,SAAsBY,EAAKkF,EAAS,CAAC,sBAAsB,GAAK,SAAsBlF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,KAAK,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,MAAM,MAAM,CAAC,gBAAgB,EAAE,iBAAiBmD,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,KAAK,EAAE,KAAKZ,EAAU,kBAAkBlD,GAAmB,kBAAkB,MAAM,mBAAmB,GAAK,GAAGX,GAAqB,CAAC,UAAU,CAAC,SAAsBoB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE0C,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQmC,GAAI,CAAC,kFAAkF,gFAAgF,kRAAkR,2LAA2L,2LAA2L,2LAA2L,2LAA2L,6LAA6L,qIAAqI,yWAAyW,kGAAkG,sHAAsH,iIAAiI,iIAAiI,iIAAiI,mIAAmI,+bAA+b,EASv9hBC,GAAgBC,EAAQ1D,GAAUwD,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,gBAAgBA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,GAAG,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,UAAU,OAAO,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,wBAAwB,gHAAgH,MAAM,UAAU,KAAKA,EAAY,eAAe,EAAE,UAAU,CAAC,wBAAwB,6GAA6G,MAAM,UAAU,KAAKA,EAAY,eAAe,EAAE,UAAU,CAAC,wBAAwB,gHAAgH,MAAM,UAAU,KAAKA,EAAY,eAAe,EAAE,UAAU,CAAC,wBAAwB,gHAAgH,MAAM,UAAU,KAAKA,EAAY,eAAe,EAAE,UAAU,CAAC,aAAa,CAAC,YAAY,yBAAyB,YAAY,QAAQ,YAAY,CAAC,EAAE,MAAM,SAAS,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,MAAM,gBAAgB,GAAM,MAAM,SAAS,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,4FAA4F,MAAM,WAAW,KAAKA,EAAY,KAAK,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,yEAAyE,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,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,uEAAuE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,yEAAyE,OAAO,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECTlqF,IAAMM,GAAW,CAAC,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,kBAAkB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAAAD,GAAU,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,OAAO,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,CAAmB,EAAQC,EAAWL,GAAOE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,QAAQ,YAAY,MAAM,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,OAAAC,EAAO,GAAAC,EAAG,OAAAC,EAAO,IAAAC,EAAI,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,UAAUH,GAAQG,EAAM,WAAW,IAAI,UAAUN,GAAQM,EAAM,WAAW,kBAAkB,QAAQR,GAAwBQ,EAAM,OAAO,GAAGA,EAAM,SAAS,YAAY,UAAUF,GAAKE,EAAM,WAAW,mBAAmB,GAAUC,GAAuB,CAACD,EAAMzB,IAAeyB,EAAM,iBAAwBzB,EAAS,KAAK,GAAG,EAAEyB,EAAM,iBAAwBzB,EAAS,KAAK,GAAG,EAAU2B,GAA6BC,EAAW,SAASH,EAAMI,EAAI,CAAC,IAAMC,EAAYC,EAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,EAAM,EAAO,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAQC,EAAkBC,EAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAxC,EAAQ,UAAAyC,EAAU,UAAAC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAE5B,GAASO,CAAK,EAAO,CAAC,YAAAsB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAAtD,CAAQ,EAAEuD,GAAgB,CAAC,WAAA5D,GAAW,eAAe,YAAY,IAAIqC,EAAW,QAAA9B,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ2D,EAAiB9B,GAAuBD,EAAMzB,CAAQ,EAA4DyD,GAAkBC,EAAG9D,GAAkB,GAArE,CAAa6C,EAAS,CAAuE,EAAE,OAAoB5B,EAAK8C,EAAY,CAAC,GAAGjB,GAAUT,EAAgB,SAAsBpB,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsByD,EAAM7C,EAAO,IAAI,CAAC,GAAG+B,EAAU,GAAGI,EAAgB,UAAUQ,EAAGD,GAAkB,iBAAiBhB,EAAUO,CAAU,EAAE,cAAc,GAAK,mBAAmB,UAAU,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIxB,EAAW,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,4BAA4B,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,GAAGQ,CAAK,EAAE,GAAG1C,GAAqB,CAAC,UAAU,CAAC,mBAAmB,OAAO,CAAC,EAAEiD,EAAYI,CAAc,EAAE,SAAS,CAActC,EAAKgD,EAAS,CAAC,sBAAsB,GAAK,SAAsBhD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,OAAO,sBAAsB,6CAA6C,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,IAAI,MAAM,CAAC,cAAc,EAAE,iBAAiByC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,KAAK,EAAE,KAAKb,EAAU,kBAAkB,MAAM,mBAAmB,GAAK,GAAG7C,GAAqB,CAAC,UAAU,CAAC,SAAsBe,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,OAAO,sBAAsB,6CAA6C,EAAE,SAAS,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEgC,EAAYI,CAAc,CAAC,CAAC,EAAeS,EAAM7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,iBAAiByC,EAAiB,SAAS,YAAY,SAAS,CAAc3C,EAAKgD,EAAS,CAAC,sBAAsB,GAAK,SAAsBhD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,gGAAgG,EAAE,SAAS,mBAAmB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,oCAAoC,MAAM,CAAC,OAAO,EAAE,iBAAiByC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,6BAA6B,KAAK,EAAE,KAAKZ,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe/B,EAAKgD,EAAS,CAAC,sBAAsB,GAAK,SAAsBhD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,mDAAmD,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,oCAAoC,MAAM,CAAC,OAAO,EAAE,iBAAiByC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,2BAA2B,6BAA6B,KAAK,EAAE,KAAKX,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQiB,GAAI,CAAC,kFAAkF,gFAAgF,mRAAmR,iHAAiH,8RAA8R,mMAAmM,yFAAyF,GAAeA,GAAI,+bAA+b,EAW15OC,GAAgBC,EAAQrC,GAAUmC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,cAAcA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,GAAG,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,UAAU,OAAO,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,IAAI,gBAAgB,GAAM,MAAM,SAAS,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,oBAAoB,gBAAgB,GAAM,MAAM,MAAM,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,kBAAkB,gBAAgB,GAAM,MAAM,SAAS,KAAKA,EAAY,MAAM,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,uEAAuE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,uEAAuE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGM,EAAoCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECX78C,IAAMC,GAAkBC,EAASC,EAAY,EAAQC,GAAmCC,GAA0BC,CAAS,EAAQC,GAAmCF,GAA0BG,EAAO,GAAG,EAAQC,GAAkCJ,GAA0BK,CAAQ,EAAQC,GAA+BN,GAA0BO,EAAK,EAAQC,GAAoBC,GAAON,EAAO,OAAO,EAAQO,GAAmBb,EAASc,EAAa,EAAQC,GAAeH,GAAOJ,CAAQ,EAAQQ,GAAiBhB,EAASiB,EAAW,EAAQC,GAAgBN,GAAON,EAAO,GAAG,EAAQa,GAAUnB,EAASoB,EAAI,EAAQC,GAAgBrB,EAASsB,EAAU,EAAQC,GAAmBvB,EAASwB,EAAa,EAAQC,GAAkBzB,EAAS0B,EAAY,EAAQC,GAAgB3B,EAAS4B,EAAU,EAAQC,GAAc7B,EAAS8B,EAAQ,EAAQC,GAAgBnB,GAAOR,CAAS,EAAQ4B,GAAYpB,GAAOF,EAAK,EAAQuB,GAAiBjC,EAASkC,EAAW,EAAQC,GAAqBnC,EAASoC,EAAe,EAAQC,GAAkBrC,EAASsC,EAAY,EAAQC,GAAkBvC,EAASwC,EAAY,EAAQC,GAAuCtC,GAA0BG,EAAO,OAAO,EAAQoC,GAAY,CAAC,UAAU,qBAAqB,UAAU,6CAA6C,UAAU,qBAAqB,EAAQC,GAAU,IAAI,OAAO,SAAW,IAAkBC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,iBAAiB,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,KAAK,KAAK,GAAG,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAW,CAAC,QAAQ,KAAK,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,GAAG,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAW,CAAC,QAAQ,KAAK,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAmB,CAACC,EAAEC,IAAI,oBAAoBA,CAAC,GAASC,GAAY,CAAC,QAAQ,GAAG,MAAM,IAAI,KAAK,GAAG,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAmB,CAACJ,EAAEC,IAAI,oBAAoBA,CAAC,GAASI,GAAY,CAAC,QAAQ,GAAG,MAAM,KAAK,KAAK,GAAG,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAW,CAAC,QAAQ,KAAK,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,GAAG,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,GAAG,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAW,CAAC,QAAQ,KAAK,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAW,CAAC,QAAQ,KAAK,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,GAAG,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,GAAG,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAY,CAAC,MAAM,KAAK,SAAS,IAAI,KAAK,CAAC,IAAI,IAAI,IAAI,GAAG,EAAE,KAAK,OAAO,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,IAAI,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,GAAG,EAAQC,GAAY,CAAC,MAAM,EAAE,SAAS,IAAI,KAAK,CAAC,IAAI,IAAI,IAAI,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,IAAI,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,EAAE,EAAE,EAAE,CAAC,EAAQC,GAAY,CAAC,OAAO,GAAG,MAAM,GAAG,SAAS,IAAI,KAAK,QAAQ,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAa,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,GAAG,UAAU,IAAI,KAAK,QAAQ,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,WAAWL,GAAY,EAAE,EAAE,EAAE,GAAG,EAAQM,GAAY,CAACC,EAAMC,IAAM,CAAC,GAAG,GAACD,GAAO,OAAOA,GAAQ,UAAkB,MAAM,CAAC,GAAGA,EAAM,IAAAC,CAAG,CAAE,EAAQC,GAAa,CAAC,OAAO,GAAG,MAAM,EAAE,SAAS,IAAI,KAAK,QAAQ,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAa,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAmB,CAACjC,EAAEC,IAAI,yBAAyBA,CAAC,GAASiC,GAAa,CAAC,OAAO,GAAG,MAAM,GAAG,SAAS,IAAI,KAAK,QAAQ,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAa,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAa,CAAC,OAAO,GAAG,MAAM,GAAG,SAAS,IAAI,KAAK,QAAQ,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAa,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAa,CAAC,MAAM,IAAI,SAAS,EAAE,KAAK,CAAC,IAAI,EAAE,IAAI,GAAG,EAAE,KAAK,OAAO,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAa,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAa,CAAC,QAAQ,GAAG,MAAM,IAAI,KAAK,GAAG,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAa,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAa,CAAC,MAAM,GAAG,SAAS,IAAI,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAa,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAa,CAACC,EAAKC,EAASC,IAAiB,CAAC,OAAOF,EAAK,MAAM,CAAC,IAAI,UAAU,OAAOC,EAAS,SAASC,EAAe,IAAI,UAAU,OAAOD,EAAS,SAASC,EAAe,IAAI,QAAQ,OAAOD,EAAS,OAAOC,EAAe,IAAI,aAAa,OAAOD,EAAS,YAAYC,CAAe,CAAC,EAAQC,GAAU,CAAC,CAAC,MAAAC,CAAK,IAAoBC,GAAoB,EAAqB,KAAyBC,EAAK,QAAQ,CAAC,wBAAwB,CAAC,OAAOF,CAAK,EAAE,yBAAyB,EAAE,CAAC,EAAUG,GAAwB,CAAC,QAAQ,YAAY,MAAM,YAAY,OAAO,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,QAAQL,GAAwBK,EAAM,OAAO,GAAGA,EAAM,SAAS,WAAW,GAAUC,GAA6BC,EAAW,SAASF,EAAMG,EAAI,CAAC,IAAMC,EAAYC,EAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,EAAM,EAAO,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAQC,EAAkBC,EAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,mBAAAC,EAAmB,GAAGC,CAAS,EAAEvB,GAASI,CAAK,EAAQoB,EAAeC,EAAQ,IAAID,GAAiB,OAAUX,CAAY,EAAE,CAAC,OAAUA,CAAY,CAAC,EAAEa,GAAYF,CAAQ,EAAE,GAAK,CAACG,EAAYC,CAAmB,EAAEC,GAA8BR,EAAQrF,GAAY,EAAK,EAAQ8F,EAAe,OAAmRC,EAAkBC,EAAG9F,GAAkB,GAApR,CAAaiF,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,EAAS,CAAuE,EAAQc,EAAY,IAAShG,GAAU,EAAiB0F,IAAc,YAAtB,GAAmEO,EAAOC,GAAU,EAAE,OAAAC,GAAiB,CAAC,CAAC,EAAsBtC,EAAKuC,GAA0B,SAAS,CAAC,MAAM,CAAC,iBAAiB,YAAY,kBAAAlG,EAAiB,EAAE,SAAsBmG,EAAMC,EAAY,CAAC,GAAGnB,GAAUT,EAAgB,SAAS,CAAcb,EAAKH,GAAU,CAAC,MAAM,+CAA+C,CAAC,EAAe2C,EAAM1I,EAAO,IAAI,CAAC,GAAG2H,EAAU,UAAUS,EAAGD,EAAkB,gBAAgBZ,CAAS,EAAE,IAAIT,EAAW,MAAM,CAAC,GAAGQ,CAAK,EAAE,SAAS,CAAcpB,EAAK0C,EAA0B,CAAC,OAAO,IAAI,MAAMxB,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,SAAsBlB,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQnF,GAAW,QAAQC,EAAU,CAAC,EAAE,SAAsBqD,EAAKtG,GAAmC,CAAC,QAAQ6C,GAAU,UAAU,0BAA0B,wBAAwB,SAAS,QAAQC,GAAW,OAAO,YAAY,UAAU,GAAK,kBAAkB,GAAK,QAAQ,YAAY,SAAsBwD,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAKvG,GAAa,CAAC,UAAU,qBAAqB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE0I,EAAY,GAAgBnC,EAAKnG,GAAmC,CAAC,QAAQmD,GAAW,UAAU,+BAA+B,wBAAwB,UAAU,mBAAmB,kBAAkB,QAAQR,GAAW,UAAU,GAAK,kBAAkBI,EAAkB,CAAC,EAAe4F,EAAM,OAAO,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,SAAS,CAAcxC,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,mCAAmC,MAAS,CAAC,EAAE,SAAsBW,EAAMrI,GAAoB,CAAC,yBAAyB,GAAM,iBAAiB,EAAE,mCAAmC,GAAK,gBAAgB,IAAI,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,SAAS,CAAcqI,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,SAAS,CAAcxC,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,SAAsBwC,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAcxC,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAW4C,EAAS,CAAC,SAAsB5C,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,uBAAuB,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,MAAM,sBAAsB,oBAAoB,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,QAAQ,2BAA2B,EAAE,UAAU,CAAC,QAAQ,2BAA2B,CAAC,EAAE,SAAsBA,EAAKhG,EAAS,CAAC,sBAAsB,GAAK,SAAsBgG,EAAW4C,EAAS,CAAC,SAAsB5C,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,uBAAuB,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,MAAM,sBAAsB,oBAAoB,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,MAAM,CAAC,YAAY,EAAE,kBAAkB,MAAM,QAAQ,cAAc,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQvE,GAAW,SAAsB0C,EAAW4C,EAAS,CAAC,SAAsB5C,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,2BAA2B,qBAAqB,uBAAuB,0BAA0B,UAAU,uBAAuB,OAAO,0BAA0B,QAAQ,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,QAAQzC,GAAW,QAAQ,cAAc,aAAa,GAAG,EAAE,UAAU,CAAC,SAAsByC,EAAW4C,EAAS,CAAC,SAAsB5C,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,2BAA2B,qBAAqB,qBAAqB,0BAA0B,UAAU,uBAAuB,MAAM,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,QAAQ,aAAa,CAAC,EAAE,SAAsBA,EAAKjG,GAAkC,CAAC,sBAAsB,GAAK,QAAQoD,GAAW,SAAsB6C,EAAW4C,EAAS,CAAC,SAAsB5C,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,2BAA2B,qBAAqB,uBAAuB,0BAA0B,UAAU,uBAAuB,MAAM,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,wBAAwB,UAAU,mBAAmB,UAAU,MAAM,CAAC,0BAA0B,EAAE,QAAQ5C,GAAW,UAAU,GAAK,kBAAkBH,GAAmB,kBAAkB,MAAM,QAAQ,cAAc,aAAa,IAAI,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuF,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,SAAS,CAAcxC,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,SAASmC,EAAY,GAAgBnC,EAAK,MAAM,CAAC,UAAU,+BAA+B,mBAAmB,QAAQ,CAAC,CAAC,CAAC,EAAewC,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAcxC,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,2BAA2B,EAAE,UAAU,CAAC,QAAQ,2BAA2B,CAAC,EAAE,SAAsB7B,EAAKhG,EAAS,CAAC,sBAAsB,GAAK,SAAsBgG,EAAW4C,EAAS,CAAC,SAAsB5C,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,sBAAsB,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,MAAM,sBAAsB,oBAAoB,EAAE,SAAS,eAAe,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,YAAY,EAAE,kBAAkB,MAAM,QAAQ,cAAc,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQnE,GAAY,QAAQH,EAAU,CAAC,EAAE,SAAsByC,EAAKjG,GAAkC,CAAC,sBAAsB,GAAK,QAAQiD,GAAW,SAAsBgD,EAAW4C,EAAS,CAAC,SAAsB5C,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,uBAAuB,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,YAAY,CAAC,CAAC,CAAC,EAAE,UAAU,eAAe,wBAAwB,QAAQ,MAAM,CAAC,YAAY,EAAE,QAAQxC,GAAW,UAAU,GAAK,kBAAkBP,GAAmB,kBAAkB,MAAM,QAAQ,4BAA4B,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+C,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ9D,GAAY,WAAW,CAAC,IAAI,0EAA0E,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,UAAU,QAAQ,UAAU,MAAM,MAAMmD,GAAmB,OAAO,QAAQ,IAAI,uEAAuE,OAAO,kcAAkc,EAAE,QAAQlD,EAAW,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,0EAA0E,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,UAAU,QAAQ,UAAU,QAAQ,MAAMkD,GAAmB,OAAO,QAAQ,IAAI,uEAAuE,OAAO,kcAAkc,CAAC,CAAC,EAAE,SAAsBlB,EAAK/F,GAA+B,CAAC,QAAQ2D,GAAY,WAAW,CAAC,IAAI,0EAA0E,IAAI,OAAO,QAAQiF,IAA2B3B,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,QAAQ,UAAU,QAAQ,MAAMA,GAAmB,OAAO,QAAQ,IAAI,uEAAuE,OAAO,kcAAkc,EAAE,UAAU,iBAAiB,wBAAwB,UAAU,mBAAmB,KAAK,QAAQrD,GAAY,UAAU,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAemC,EAAK,UAAU,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAsBA,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,mCAAmC,MAAS,CAAC,EAAE,SAAsBW,EAAM9H,GAAgB,CAAC,kBAAkB,CAAC,WAAWwD,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAY,eAAeE,GAAY,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,mBAAmB,YAAY,SAAS,CAAcqE,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,SAAS,CAAcxC,EAAK8C,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASC,GAA4B/C,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,WAAWX,GAAmB,OAAO,OAAO,0BAA0B,EAAE,MAAS,EAAE,UAAU,CAAC,EAAE,MAAS,CAAC,EAAE,SAAsBlB,EAAK0C,EAA0B,CAAC,OAAO,GAAG,GAAGxB,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,IAAI,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,SAAsBlB,EAAKpG,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBoG,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUkB,EAAc,CAAC,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAU,wEAAwE,UAAU,uEAAuE,EAAE,UAAU,CAAC,UAAUA,EAAc,CAAC,CAAC,CAAC,EAAE,SAAsB/C,EAAK1F,GAAc,CAAC,UAAUyI,EAAc,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,kBAAa,QAAQ,YAAY,UAAU,oBAAoB,MAAM,OAAO,UAAU,yBAAyB,UAAU,oBAAoB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAsBA,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,kBAAkB,CAAC,WAAWxD,EAAY,EAAE,sBAAsB,GAAK,gBAAgBD,GAAY,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,CAAC,CAAC,EAAE,SAAsB4B,EAAKzF,GAAe,CAAC,sBAAsB,GAAK,SAAsByF,EAAW4C,EAAS,CAAC,SAAsB5C,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,+EAAqE,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,gFAAsE,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewC,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,SAAS,CAAcxC,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,WAAWX,GAAmB,OAAO,OAAO,0BAA0B,EAAE,MAAS,EAAE,UAAU,CAAC,MAAM,YAAYA,GAAmB,OAAO,OAAO,sCAAsC,EAAE,MAAS,CAAC,EAAE,SAAsBlB,EAAK0C,EAA0B,CAAC,OAAO,IAAI,MAAM,YAAYxB,GAAmB,OAAO,OAAO,sCAAsC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,IAAI,IAAI,EAAE,EAAE,MAAM,EAAE,EAAE,SAAsBlB,EAAKpG,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBoG,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAKvF,GAAY,CAAC,UAAU,IAAI,UAAU,mDAAmD,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,2DAA2D,UAAU,GAAG,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,IAAI,QAAQ,YAAY,MAAM,OAAO,UAAU,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuF,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,WAAWX,GAAmB,OAAO,OAAO,0BAA0B,EAAE,MAAS,EAAE,UAAU,CAAC,MAAM,YAAYA,GAAmB,OAAO,OAAO,sCAAsC,EAAE,MAAS,CAAC,EAAE,SAAsBlB,EAAK0C,EAA0B,CAAC,OAAO,IAAI,MAAM,YAAYxB,GAAmB,OAAO,OAAO,sCAAsC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,IAAI,IAAI,EAAE,EAAE,MAAM,EAAE,EAAE,SAAsBlB,EAAKpG,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBoG,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAKvF,GAAY,CAAC,UAAU,IAAI,UAAU,gBAAgB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,sEAAsE,UAAU,GAAG,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,KAAK,QAAQ,YAAY,MAAM,OAAO,UAAU,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuF,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,WAAWX,GAAmB,OAAO,OAAO,0BAA0B,EAAE,MAAS,EAAE,UAAU,CAAC,MAAM,YAAYA,GAAmB,OAAO,OAAO,sCAAsC,EAAE,MAAS,CAAC,EAAE,SAAsBlB,EAAK0C,EAA0B,CAAC,OAAO,IAAI,MAAM,YAAYxB,GAAmB,OAAO,OAAO,sCAAsC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,IAAI,IAAI,EAAE,EAAE,MAAM,EAAE,EAAE,SAAsBlB,EAAKpG,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBoG,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAKvF,GAAY,CAAC,UAAU,GAAG,UAAU,2BAA2B,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,0DAA0D,UAAU,GAAG,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,IAAI,QAAQ,YAAY,MAAM,OAAO,UAAU,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuF,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,WAAWX,GAAmB,OAAO,OAAO,0BAA0B,EAAE,MAAS,EAAE,UAAU,CAAC,MAAM,YAAYA,GAAmB,OAAO,OAAO,sCAAsC,EAAE,MAAS,CAAC,EAAE,SAAsBlB,EAAK0C,EAA0B,CAAC,OAAO,IAAI,MAAM,YAAYxB,GAAmB,OAAO,OAAO,sCAAsC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,IAAI,IAAI,EAAE,EAAE,MAAM,EAAE,EAAE,SAAsBlB,EAAKpG,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBoG,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAKvF,GAAY,CAAC,UAAU,GAAG,UAAU,0CAA0C,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,mEAAmE,UAAU,IAAI,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,IAAI,QAAQ,YAAY,MAAM,OAAO,UAAU,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuF,EAAK,UAAU,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,SAAsBwC,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,SAAS,CAAcxC,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,mCAAmC,MAAS,CAAC,EAAE,SAAsBW,EAAM9H,GAAgB,CAAC,kBAAkB,CAAC,WAAWwD,EAAW,EAAE,sBAAsB,GAAK,gBAAgBI,GAAY,eAAeC,GAAY,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,mBAAmB,MAAM,SAAS,CAAcyB,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,MAAS,EAAE,UAAU,CAAC,EAAE,MAAS,CAAC,EAAE,SAAsB7B,EAAK0C,EAA0B,CAAC,OAAO,GAAG,GAAGxB,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,OAAO,EAAE,EAAE,GAAG,EAAE,EAAE,SAAsBlB,EAAKpG,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBoG,EAAKpF,GAAK,CAAC,UAAU,MAAM,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,wEAAwE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeoF,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,MAAS,EAAE,UAAU,CAAC,EAAE,MAAS,CAAC,EAAE,SAAsB7B,EAAK0C,EAA0B,CAAC,OAAO,GAAG,GAAGxB,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,OAAO,EAAE,EAAE,GAAG,EAAE,EAAE,SAAsBlB,EAAKpG,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBoG,EAAKlF,GAAW,CAAC,UAAU,wEAAwE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,WAAW,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe0H,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAcxC,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,OAAOX,GAAmB,OAAO,OAAO,mBAAmB,EAAE,MAAS,EAAE,UAAU,CAAC,MAAM,OAAOA,GAAmB,OAAO,OAAO,mBAAmB,EAAE,MAAS,CAAC,EAAE,SAAsBlB,EAAK0C,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAOxB,GAAmB,OAAO,OAAO,mBAAmB,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,OAAO,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,SAAsBlB,EAAKpG,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBoG,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAKhF,GAAc,CAAC,UAAU,eAAe,UAAUwD,GAAY,CAAC,YAAY,IAAI,WAAW,IAAI,IAAI,uEAAuE,OAAO,uKAAuK,EAAE,EAAE,EAAE,UAAU,GAAG,UAAU,GAAG,UAAU,wLAAwL,UAAU,GAAG,UAAUA,GAAY,CAAC,YAAY,IAAI,WAAW,IAAI,IAAI,uEAAuE,OAAO,uKAAuK,EAAE,EAAE,EAAE,OAAO,OAAO,GAAG,YAAY,UAAUA,GAAY,CAAC,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,OAAO,qKAAqK,EAAE,EAAE,EAAE,UAAUA,GAAY,CAAC,YAAY,IAAI,WAAW,IAAI,IAAI,uEAAuE,OAAO,uKAAuK,EAAE,EAAE,EAAE,SAAS,YAAY,UAAU,gKAAgK,UAAU,iBAAiB,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,kMAAkM,UAAU,oLAAoL,QAAQ,YAAY,MAAM,OAAO,UAAU,YAAY,UAAU,eAAe,UAAU,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegE,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,SAAS,CAACL,EAAY,GAAgBnC,EAAK,MAAM,CAAC,UAAU,8BAA8B,mBAAmB,QAAQ,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,MAAS,EAAE,UAAU,CAAC,EAAE,MAAS,CAAC,EAAE,SAAsB7B,EAAK0C,EAA0B,CAAC,OAAO,IAAI,MAAMxB,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,OAAO,SAAsBlB,EAAKpG,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBoG,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAK9E,GAAa,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,EAAesH,EAAM,UAAU,CAAC,UAAU,eAAe,mBAAmB,OAAO,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,SAAS,CAAcxC,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,mCAAmC,MAAS,CAAC,EAAE,SAAsBW,EAAM9H,GAAgB,CAAC,kBAAkB,CAAC,WAAWwD,EAAW,EAAE,sBAAsB,GAAK,gBAAgBI,GAAY,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,mBAAmB,MAAM,SAAS,CAAc0B,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,MAAS,EAAE,UAAU,CAAC,EAAE,MAAS,CAAC,EAAE,SAAsB7B,EAAK0C,EAA0B,CAAC,OAAO,GAAG,GAAGxB,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,OAAO,EAAE,EAAE,GAAG,EAAE,EAAE,SAAsBlB,EAAKpG,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBoG,EAAKpF,GAAK,CAAC,UAAU,MAAM,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,wEAAwE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeoF,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,MAAS,EAAE,UAAU,CAAC,EAAE,MAAS,CAAC,EAAE,SAAsB7B,EAAK0C,EAA0B,CAAC,OAAO,GAAG,GAAGxB,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,OAAO,EAAE,EAAE,GAAG,EAAE,EAAE,SAAsBlB,EAAKpG,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBoG,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAK5E,GAAW,CAAC,UAAUoD,GAAY,CAAC,YAAY,GAAG,WAAW,GAAG,IAAI,oEAAoE,EAAE,8BAA8B,EAAE,UAAUA,GAAY,CAAC,YAAY,GAAG,WAAW,GAAG,IAAI,qEAAqE,EAAE,8BAA8B,EAAE,UAAUA,GAAY,CAAC,YAAY,GAAG,WAAW,GAAG,IAAI,qEAAqE,EAAE,8BAA8B,EAAE,OAAO,OAAO,GAAG,YAAY,UAAU,MAAM,UAAU,qEAAqE,SAAS,YAAY,UAAU,CAAC,YAAY,qBAAqB,YAAY,QAAQ,YAAY,CAAC,EAAE,QAAQ,YAAY,UAAUA,GAAY,CAAC,YAAY,GAAG,WAAW,GAAG,IAAI,qEAAqE,EAAE,8BAA8B,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegE,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAcxC,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,kBAAkB,CAAC,WAAWxD,EAAY,EAAE,gBAAgBD,GAAY,eAAe,MAAS,CAAC,EAAE,SAAsB4B,EAAKtF,GAAgB,CAAC,kBAAkB,CAAC,WAAWiE,EAAY,EAAE,sBAAsB,GAAK,gBAAgBV,GAAY,eAAeW,GAAY,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,mBAAmB,UAAU,SAAsBoB,EAAKhG,EAAS,CAAC,sBAAsB,GAAK,SAAsBgG,EAAW4C,EAAS,CAAC,SAAsBJ,EAAM,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,0BAA0B,EAAE,SAAS,CAAC,sBAAmCxC,EAAK,OAAO,CAAC,MAAM,CAAC,sBAAsB,oBAAoB,EAAE,SAAS,uCAAuC,CAAC,EAAE,yEAAyE,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,kIAAkI,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewC,EAAM9H,GAAgB,CAAC,kBAAkB,CAAC,WAAWwD,EAAW,EAAE,sBAAsB,GAAK,gBAAgBW,GAAY,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAc2D,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,SAAS,CAAcxC,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,OAAOX,GAAmB,OAAO,OAAO,mBAAmB,EAAE,MAAS,EAAE,UAAU,CAAC,MAAM,YAAYA,GAAmB,OAAO,OAAO,qCAAqC,EAAE,MAAS,CAAC,EAAE,SAAsBlB,EAAK0C,EAA0B,CAAC,OAAO,GAAG,MAAM,iBAAiBxB,GAAmB,OAAO,OAAO,0DAA0D,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,OAAO,EAAE,EAAE,GAAG,MAAM,EAAE,MAAM,EAAE,EAAE,SAAsBlB,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,kBAAkB,CAAC,WAAWxD,EAAY,EAAE,sBAAsB,GAAK,gBAAgBD,GAAY,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,CAAC,CAAC,EAAE,SAAsB4B,EAAKzE,GAAgB,CAAC,UAAU,0BAA0B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsByE,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAK1E,GAAS,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,IAAI,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,kBAAkB,QAAQ,YAAY,MAAM,OAAO,UAAU,mBAAmB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe0E,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,OAAOX,GAAmB,OAAO,OAAO,mBAAmB,EAAE,MAAS,EAAE,UAAU,CAAC,MAAM,YAAYA,GAAmB,OAAO,OAAO,qCAAqC,EAAE,MAAS,CAAC,EAAE,SAAsBlB,EAAK0C,EAA0B,CAAC,OAAO,GAAG,MAAM,iBAAiBxB,GAAmB,OAAO,OAAO,0DAA0D,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,OAAO,EAAE,EAAE,GAAG,MAAM,EAAE,MAAM,EAAE,EAAE,SAAsBlB,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,kBAAkB,CAAC,WAAWxD,EAAY,EAAE,sBAAsB,GAAK,gBAAgBD,GAAY,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,CAAC,CAAC,EAAE,SAAsB4B,EAAKzE,GAAgB,CAAC,UAAU,0BAA0B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsByE,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAK1E,GAAS,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,IAAI,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,sBAAsB,QAAQ,YAAY,MAAM,OAAO,UAAU,0BAA0B,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe0E,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,OAAOX,GAAmB,OAAO,OAAO,mBAAmB,EAAE,MAAS,EAAE,UAAU,CAAC,MAAM,YAAYA,GAAmB,OAAO,OAAO,qCAAqC,EAAE,MAAS,CAAC,EAAE,SAAsBlB,EAAK0C,EAA0B,CAAC,OAAO,GAAG,MAAM,iBAAiBxB,GAAmB,OAAO,OAAO,0DAA0D,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,OAAO,EAAE,EAAE,GAAG,MAAM,EAAE,MAAM,EAAE,EAAE,SAAsBlB,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,kBAAkB,CAAC,WAAWxD,EAAY,EAAE,sBAAsB,GAAK,gBAAgBD,GAAY,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,CAAC,CAAC,EAAE,SAAsB4B,EAAKzE,GAAgB,CAAC,UAAU,0BAA0B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsByE,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAK1E,GAAS,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,IAAI,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,6BAA6B,QAAQ,YAAY,MAAM,OAAO,UAAU,wBAAwB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe0E,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,sCAAsC,OAAU,WAAW,CAAC,IAAI,sEAAsE,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAMX,GAAmB,OAAO,QAAQ,IAAI,sEAAsE,OAAO,6bAA6b,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,sEAAsE,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAMA,GAAmB,OAAO,QAAQ,IAAI,sEAAsE,OAAO,mQAAmQ,CAAC,CAAC,EAAE,SAAsBlB,EAAKxE,GAAY,CAAC,sCAAsC,GAAK,2BAA2B,CAAC,CAAC,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,IAAI,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,IAAI,CAAC,EAAE,CAAC,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,2BAA2B,WAAW,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,sEAAsE,IAAI,OAAO,QAAQqH,IAA2B3B,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,OAAO,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,MAAMA,GAAmB,OAAO,QAAQ,IAAI,sEAAsE,OAAO,6bAA6b,EAAE,UAAU,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelB,EAAK,UAAU,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAsBwC,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,SAAS,CAAcxC,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,mCAAmC,MAAS,CAAC,EAAE,SAAsBW,EAAM9H,GAAgB,CAAC,kBAAkB,CAAC,WAAWiE,EAAY,EAAE,sBAAsB,GAAK,gBAAgBV,GAAY,eAAeW,GAAY,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,SAAS,CAAcoB,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,kBAAkB,CAAC,WAAWxD,EAAY,EAAE,sBAAsB,GAAK,gBAAgBD,GAAY,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,CAAC,CAAC,EAAE,SAAsBoE,EAAM9H,GAAgB,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAcsF,EAAKhG,EAAS,CAAC,sBAAsB,GAAK,SAAsBgG,EAAW4C,EAAS,CAAC,SAAsB5C,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,2BAA2B,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKhG,EAAS,CAAC,sBAAsB,GAAK,SAAsBgG,EAAW4C,EAAS,CAAC,SAAsB5C,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,uBAAuB,EAAE,SAAS,oJAAoJ,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,0HAA0H,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK8C,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASE,GAA6BhD,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,OAAOX,GAAmB,OAAO,OAAO,mBAAmB,EAAE,MAAS,EAAE,UAAU,CAAC,EAAE,MAAS,CAAC,EAAE,SAAsBlB,EAAK0C,EAA0B,CAAC,OAAO,GAAG,GAAGxB,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,OAAO,IAAI,EAAE,EAAE,EAAE,OAAO,SAAsBlB,EAAKpG,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBoG,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUmB,EAAe,CAAC,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAU,wEAAwE,UAAU,uEAAuE,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsBhD,EAAK1F,GAAc,CAAC,UAAU0I,EAAe,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,0BAA0B,QAAQ,YAAY,UAAU,oBAAoB,MAAM,OAAO,UAAU,yBAAyB,UAAU,oBAAoB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeR,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,SAAS,CAAcxC,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,OAAOX,GAAmB,OAAO,OAAO,mBAAmB,EAAE,MAAS,EAAE,UAAU,CAAC,MAAM,YAAYA,GAAmB,OAAO,OAAO,qCAAqC,EAAE,MAAS,CAAC,EAAE,SAAsBlB,EAAK0C,EAA0B,CAAC,OAAO,IAAI,MAAM,YAAYxB,GAAmB,OAAO,OAAO,qCAAqC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,OAAO,IAAI,EAAE,EAAE,EAAE,EAAE,SAAsBlB,EAAKpG,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBoG,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAKtE,GAAY,CAAC,UAAU,mGAAmG,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,KAAK,UAAU,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAesE,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,OAAOX,GAAmB,OAAO,OAAO,mBAAmB,EAAE,MAAS,EAAE,UAAU,CAAC,MAAM,YAAYA,GAAmB,OAAO,OAAO,qCAAqC,EAAE,MAAS,CAAC,EAAE,SAAsBlB,EAAK0C,EAA0B,CAAC,OAAO,IAAI,MAAM,YAAYxB,GAAmB,OAAO,OAAO,qCAAqC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,OAAO,IAAI,EAAE,EAAE,EAAE,IAAI,SAAsBlB,EAAKpG,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBoG,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAKtE,GAAY,CAAC,UAAU,mHAAmH,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,KAAK,UAAU,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAesE,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,OAAOX,GAAmB,OAAO,OAAO,mBAAmB,EAAE,MAAS,EAAE,UAAU,CAAC,MAAM,YAAYA,GAAmB,OAAO,OAAO,qCAAqC,EAAE,MAAS,CAAC,EAAE,SAAsBlB,EAAK0C,EAA0B,CAAC,OAAO,IAAI,MAAM,YAAYxB,GAAmB,OAAO,OAAO,qCAAqC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,OAAO,IAAI,EAAE,EAAE,EAAE,IAAI,SAAsBlB,EAAKpG,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBoG,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAKtE,GAAY,CAAC,UAAU,oGAAoG,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,KAAK,UAAU,2BAA2B,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAesE,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,OAAOX,GAAmB,OAAO,OAAO,mBAAmB,EAAE,MAAS,EAAE,UAAU,CAAC,MAAM,YAAYA,GAAmB,OAAO,OAAO,qCAAqC,EAAE,MAAS,CAAC,EAAE,SAAsBlB,EAAK0C,EAA0B,CAAC,OAAO,IAAI,MAAM,YAAYxB,GAAmB,OAAO,OAAO,qCAAqC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,OAAO,IAAI,EAAE,EAAE,EAAE,IAAI,SAAsBlB,EAAKpG,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBoG,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAKtE,GAAY,CAAC,UAAU,qFAAqF,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,KAAK,UAAU,kBAAkB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAesE,EAAK,UAAU,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,SAAsBwC,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcxC,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,oBAAoB,EAAE,CAAC,EAAE,SAAsBW,EAAM9H,GAAgB,CAAC,kBAAkB,CAAC,WAAWiE,EAAY,EAAE,sBAAsB,GAAK,gBAAgBV,GAAY,eAAeW,GAAY,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,IAAI,SAAS,CAAcoB,EAAKlG,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,SAAS,MAAM,CAAC,OAAO,GAAG,CAAC,CAAC,EAAe0I,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAcxC,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,MAAS,EAAE,UAAU,CAAC,EAAE,MAAS,CAAC,EAAE,SAAsB7B,EAAK0C,EAA0B,CAAC,OAAO,GAAG,GAAGxB,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,OAAO,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,SAAsBlB,EAAKpG,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBoG,EAAKpF,GAAK,CAAC,UAAU,MAAM,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,qEAAqE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeoF,EAAKhG,EAAS,CAAC,sBAAsB,GAAK,SAAsBgG,EAAW4C,EAAS,CAAC,SAAsBJ,EAAM,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,CAAC,UAAuBxC,EAAK,KAAK,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,kBAAkB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKhG,EAAS,CAAC,sBAAsB,GAAK,SAAsBgG,EAAW4C,EAAS,CAAC,SAAsB5C,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,sBAAsB,uBAAuB,EAAE,SAAS,iEAAiE,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,kEAAkE,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,kBAAkB,CAAC,WAAWlD,EAAY,EAAE,eAAeC,GAAY,oBAAoB,EAAE,CAAC,EAAE,SAAsB4D,EAAM9H,GAAgB,CAAC,kBAAkB,CAAC,WAAWwD,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAY,eAAeE,GAAY,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,mBAAmB,IAAI,SAAS,CAAcqE,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAcxC,EAAKhG,EAAS,CAAC,sBAAsB,GAAK,SAAsBgG,EAAW4C,EAAS,CAAC,SAAsB5C,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,+GAA+G,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,gHAAgH,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAewC,EAAM,MAAM,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,OAAO,SAAS,CAAcxC,EAAKhG,EAAS,CAAC,sBAAsB,GAAK,SAAsBgG,EAAW4C,EAAS,CAAC,SAAsB5C,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,eAAe,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAKhG,EAAS,CAAC,sBAAsB,GAAK,SAAsBgG,EAAW4C,EAAS,CAAC,SAAsB5C,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,2BAA2B,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,4BAA4B,MAAM,CAAC,OAAO,EAAE,kBAAkBlB,GAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAekB,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,CAAC,EAAeA,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,oEAAoE,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,YAAYX,GAAmB,OAAO,OAAO,2BAA2B,IAAI,sEAAsE,OAAO,oQAAoQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,oEAAoE,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,iBAAiBA,GAAmB,OAAO,OAAO,8CAA8C,IAAI,sEAAsE,OAAO,oQAAoQ,CAAC,CAAC,EAAE,SAAsBlB,EAAK9F,GAAM,CAAC,WAAW,CAAC,IAAI,oEAAoE,IAAI,OAAO,QAAQ2I,IAA2B3B,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,OAAO,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,iBAAiBA,GAAmB,OAAO,OAAO,8CAA8C,IAAI,sEAAsE,OAAO,oQAAoQ,EAAE,UAAU,iBAAiB,mBAAmB,MAAM,CAAC,CAAC,CAAC,EAAelB,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,oEAAoE,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,OAAOX,GAAmB,OAAO,OAAO,mBAAmB,IAAI,sEAAsE,OAAO,oQAAoQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,oEAAoE,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,YAAYA,GAAmB,OAAO,OAAO,sCAAsC,IAAI,sEAAsE,OAAO,oQAAoQ,CAAC,CAAC,EAAE,SAAsBlB,EAAK9F,GAAM,CAAC,WAAW,CAAC,IAAI,oEAAoE,IAAI,OAAO,QAAQ2I,IAA2B3B,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,OAAO,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,YAAYA,GAAmB,OAAO,OAAO,sCAAsC,IAAI,sEAAsE,OAAO,oQAAoQ,EAAE,UAAU,iBAAiB,mBAAmB,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelB,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,OAAO,GAAG,MAAM,OAAOX,GAAmB,OAAO,OAAO,mBAAmB,EAAE,MAAS,EAAE,UAAU,CAAC,MAAM,YAAYA,GAAmB,OAAO,OAAO,sCAAsC,EAAE,MAAS,CAAC,EAAE,SAAsBlB,EAAK0C,EAA0B,CAAC,OAAO,IAAI,MAAM,YAAYxB,GAAmB,OAAO,OAAO,sCAAsC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,OAAO,GAAG,EAAE,EAAE,EAAE,SAAsBlB,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,kBAAkB,CAAC,WAAWlD,EAAY,EAAE,eAAeC,GAAY,oBAAoB,EAAE,CAAC,EAAE,SAAsBoB,EAAKzE,GAAgB,CAAC,kBAAkB,CAAC,WAAWwD,EAAY,EAAE,sBAAsB,GAAK,gBAAgBd,GAAY,eAAee,GAAY,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,0BAA0B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBgB,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAKpE,GAAgB,CAAC,UAAU,wEAAwE,UAAU,qBAAqB,UAAU,qEAAqE,UAAU,OAAO,OAAO,OAAO,UAAU,OAAO,GAAG,YAAY,UAAU,sEAAsE,SAAS,YAAY,UAAU,gBAAgB,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,UAAU,uCAAuC,QAAQ,YAAY,UAAU,CAAC,kBAAkB,EAAE,YAAY,2BAA2B,gBAAgB,EAAE,iBAAiB,EAAE,YAAY,QAAQ,eAAe,CAAC,EAAE,MAAM,OAAO,UAAU4C,GAAY,CAAC,YAAY,IAAI,WAAW,IAAI,IAAI,qEAAqE,EAAE,EAAE,EAAE,UAAU,uKAAuK,UAAU,iBAAiB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewB,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,OAAO,GAAG,MAAM,OAAOX,GAAmB,OAAO,OAAO,mBAAmB,EAAE,MAAS,EAAE,UAAU,CAAC,MAAM,YAAYA,GAAmB,OAAO,OAAO,sCAAsC,EAAE,MAAS,CAAC,EAAE,SAAsBlB,EAAK0C,EAA0B,CAAC,OAAO,IAAI,MAAM,YAAYxB,GAAmB,OAAO,OAAO,sCAAsC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,OAAO,GAAG,EAAE,EAAE,EAAE,SAAsBlB,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,kBAAkB,CAAC,WAAWlD,EAAY,EAAE,eAAeC,GAAY,oBAAoB,EAAE,CAAC,EAAE,SAAsBoB,EAAKzE,GAAgB,CAAC,kBAAkB,CAAC,WAAW0D,EAAY,EAAE,sBAAsB,GAAK,gBAAgBhB,GAAY,eAAeiB,GAAY,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,0BAA0B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBc,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAKpE,GAAgB,CAAC,UAAU,qEAAqE,UAAU,qBAAqB,UAAU,wEAAwE,UAAU,OAAO,OAAO,OAAO,UAAU,OAAO,GAAG,YAAY,UAAU,qEAAqE,SAAS,YAAY,UAAU,cAAc,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,UAAU,4BAA4B,QAAQ,YAAY,UAAU,CAAC,kBAAkB,EAAE,YAAY,qBAAqB,gBAAgB,EAAE,iBAAiB,EAAE,YAAY,QAAQ,eAAe,CAAC,EAAE,MAAM,OAAO,UAAU4C,GAAY,CAAC,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,EAAE,EAAE,EAAE,UAAU,uHAAuH,UAAU,iBAAiB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE2D,EAAY,GAAgBnC,EAAK0C,EAA0B,CAAC,SAAsB1C,EAAKpG,EAAU,CAAC,UAAU,yCAAyC,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBoG,EAAKlE,GAAa,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU,GAAG,SAAS,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAekE,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQvC,EAAW,CAAC,EAAE,SAAsBU,EAAK/D,GAAuC,CAAC,QAAQmD,GAAY,UAAU,gBAAgB,wBAAwB,SAAS,mBAAmB,OAAO,QAAQzC,GAAW,UAAU,GAAK,SAAsB6F,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,IAAI,SAAS,CAAcxC,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,mCAAmC,MAAS,CAAC,EAAE,SAAsBW,EAAM9H,GAAgB,CAAC,yBAAyB,GAAM,iBAAiB,EAAE,mCAAmC,GAAK,gBAAgB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAACyH,EAAY,GAAgBnC,EAAK,MAAM,CAAC,UAAU,8BAA8B,mBAAmB,QAAQ,CAAC,EAAeA,EAAKhG,EAAS,CAAC,sBAAsB,GAAK,SAAsBgG,EAAW4C,EAAS,CAAC,SAAsB5C,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,cAAc,EAAE,SAAS,YAAY,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewC,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcxC,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,IAAI,SAAsBA,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,OAAU,QAAQ,OAAU,UAAU,MAAS,CAAC,EAAE,SAAsBW,EAAM3I,GAAmC,CAAC,QAAQ2F,GAAY,UAAU,iBAAiB,wBAAwB,UAAU,mBAAmB,QAAQ,QAAQ7C,GAAW,UAAU,GAAK,SAAS,CAAcqD,EAAKhG,EAAS,CAAC,sBAAsB,GAAK,SAAsBgG,EAAW4C,EAAS,CAAC,SAAsB5C,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uBAAuB,EAAE,SAAS,kFAAwE,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,gIAA2H,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAewC,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAcxC,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,wEAAwE,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,OAAO,IAAI,sEAAsE,OAAO,6bAA6b,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,wEAAwE,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,OAAO,IAAI,sEAAsE,OAAO,6bAA6b,CAAC,CAAC,EAAE,SAAsB7B,EAAK9F,GAAM,CAAC,WAAW,CAAC,IAAI,wEAAwE,IAAI,OAAO,QAAQ2I,IAA2B3B,GAAmB,GAAG,GAAG,EAAE,OAAO,EAAE,GAAG,EAAE,EAAE,OAAO,EAAE,EAAE,EAAE,EAAE,EAAE,IAAI,EAAE,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,OAAO,IAAI,sEAAsE,OAAO,6bAA6b,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,CAAC,CAAC,CAAC,EAAesB,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,SAAS,CAAcxC,EAAKhG,EAAS,CAAC,sBAAsB,GAAK,SAAsBgG,EAAW4C,EAAS,CAAC,SAAsB5C,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oBAAoB,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,cAAc,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKhG,EAAS,CAAC,sBAAsB,GAAK,SAAsBgG,EAAW4C,EAAS,CAAC,SAAsB5C,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uBAAuB,EAAE,SAAS,oBAAoB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,qBAAqB,MAAM,CAAC,OAAO,EAAE,KAAKwB,EAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegB,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,SAAS,CAAcxC,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,gBAAgB,SAAsBA,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,2BAA2B,EAAE,UAAU,CAAC,QAAQ,2BAA2B,CAAC,EAAE,SAAsB7B,EAAKhG,EAAS,CAAC,sBAAsB,GAAK,SAAsBgG,EAAW4C,EAAS,CAAC,SAAsB5C,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,2CAA2C,qBAAqB,uBAAuB,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,OAAO,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAsBA,EAAKiD,GAAK,CAAC,KAAK,+BAA+B,YAAY,GAAK,OAAO,YAAY,aAAa,GAAK,UAAU,CAAC,EAAE,QAAQ,YAAY,aAAa,GAAM,SAAsBjD,EAAKlG,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,wBAAwB,MAAM,CAAC,gBAAgB,EAAE,kBAAkB,MAAM,QAAQ,aAAa,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe0I,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,kBAAkB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAcxC,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,GAAG,CAAC,EAAewC,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,IAAI,SAAS,CAAcxC,EAAKhG,EAAS,CAAC,sBAAsB,GAAK,SAAsBgG,EAAW4C,EAAS,CAAC,SAAsB5C,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,eAAe,MAAM,CAAC,cAAc,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKhG,EAAS,CAAC,sBAAsB,GAAK,SAAsBgG,EAAW4C,EAAS,CAAC,SAAsB5C,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uBAAuB,EAAE,SAAS,0CAAqC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,2CAAsC,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewC,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,SAAS,CAAcxC,EAAK0C,EAA0B,CAAC,OAAO,GAAG,SAAsB1C,EAAKpG,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBoG,EAAKhE,GAAa,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,sEAAsE,UAAU,qBAAqB,UAAU,0CAA0C,UAAU,oBAAoB,MAAM,OAAO,UAAU,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegE,EAAK0C,EAA0B,CAAC,OAAO,GAAG,SAAsB1C,EAAKpG,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBoG,EAAKhE,GAAa,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,sEAAsE,UAAU,qBAAqB,UAAU,8EAA8E,UAAU,oBAAoB,MAAM,OAAO,UAAU,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegE,EAAKkD,GAAc,CAAC,OAAO,oFAAoF,UAAU,iBAAiB,OAAO,YAAY,YAAY,CAAC,UAAU,WAAW,EAAE,SAASC,GAAwBX,EAAMY,GAAU,CAAC,SAAS,CAAcZ,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,SAAS,CAAcxC,EAAKqD,GAAmB,CAAC,UAAU,iBAAiB,UAAU,OAAO,YAAY,SAAS,SAAS,GAAK,KAAK,MAAM,CAAC,EAAerD,EAAKqD,GAAmB,CAAC,UAAU,gBAAgB,UAAU,SAAS,YAAY,WAAW,SAAS,GAAK,KAAK,OAAO,CAAC,EAAerD,EAAKqD,GAAmB,CAAC,UAAU,gBAAgB,UAAU,QAAQ,YAAY,QAAQ,SAAS,GAAM,KAAK,KAAK,CAAC,EAAerD,EAAKqD,GAAmB,CAAC,UAAU,gBAAgB,UAAU,UAAU,YAAY,uCAAuC,SAAS,GAAM,KAAK,UAAU,CAAC,CAAC,CAAC,CAAC,EAAerD,EAAK2C,EAAkB,CAAC,WAAWd,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,MAAS,EAAE,UAAU,CAAC,EAAE,MAAS,CAAC,EAAE,SAAsB7B,EAAK0C,EAA0B,CAAC,OAAO,GAAG,GAAGxB,GAAmB,GAAG,GAAG,EAAE,OAAO,EAAE,GAAG,EAAE,EAAE,OAAO,EAAE,EAAE,GAAG,EAAE,IAAI,SAAsBlB,EAAKpG,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBoG,EAAK1F,GAAc,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,eAAe,KAAK,SAAS,QAAQmF,GAAa0D,EAAU,CAAC,QAAQ,YAAY,QAAQ,WAAW,EAAE,WAAW,EAAE,UAAU,oBAAoB,MAAM,OAAO,UAAU,yBAAyB,UAAU,oBAAoB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeX,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,IAAI,SAAS,CAAcxC,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,CAAC,EAAewC,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,SAAS,CAAcxC,EAAKhG,EAAS,CAAC,sBAAsB,GAAK,SAAsBgG,EAAW4C,EAAS,CAAC,SAAsB5C,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,8JAA+I,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,kTAAwS,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKhG,EAAS,CAAC,sBAAsB,GAAK,SAAsBgG,EAAW4C,EAAS,CAAC,SAAsB5C,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uBAAuB,EAAE,SAAS,iJAAkI,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,gIAA2H,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQsD,GAAI,CAAC,kFAAkF,gFAAgF,mSAAmS,2MAA2M,8bAA8b,gRAAgR,qTAAqT,4RAA4R,yRAAyR,mRAAmR,sPAAsP,sUAAsU,6QAA6Q,uSAAuS,2JAA2J,mRAAmR,2VAA2V,mNAAmN,8XAA8X,oSAAoS,sTAAsT,uJAAuJ,4UAA4U,yLAAyL,8TAA8T,2QAA2Q,6XAA6X,yUAAyU,+SAA+S,qdAAqd,wRAAwR,wGAAwG,4SAA4S,uIAAuI,oSAAoS,oHAAoH,gUAAgU,4TAA4T,wRAAwR,6RAA6R,wLAAwL,+QAA+Q,0LAA0L,qSAAqS,yYAAyY,8XAA8X,wSAAwS,yRAAyR,6RAA6R,4XAA4X,uNAAuN,+RAA+R,6OAA6O,6XAA6X,0UAA0U,8eAA8e,sVAAsV,4RAA4R,mMAAmM,4ZAA4Z,wSAAwS,mdAAmd,gHAAgH,4QAA4Q,uXAAuX,oJAAoJ,+JAA+J,2MAA2M,yXAAyX,4TAA4T,2RAA2R,oWAAoW,wJAAwJ,mPAAmP,6TAA6T,2UAA2U,gWAAgW,wLAAwL,iRAAiR,0RAA0R,6RAA6R,6ZAA6Z,iSAAiS,wSAAwS,oKAAoK,6RAA6R,2RAA2R,8SAA8S,4RAA4R,uRAAuR,8RAA8R,2RAA2R,ujCAAujC,86BAA86B,2UAA2U,6TAA6T,gWAAgW,qLAAqL,uNAAuN,GAAeA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,gcAAgc,6iGAA6iG,ssJAAssJ,EAap3hHC,GAAgBC,EAAQjD,GAAU+C,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,OAAOA,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,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,aAAa,OAAO,UAAU,MAAM,SAAS,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,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,yEAAyE,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,yEAAyE,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,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,uEAAuE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,uEAAuE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGhK,GAAkB,GAAGc,GAAmB,GAAGG,GAAiB,GAAGG,GAAU,GAAGE,GAAgB,GAAGE,GAAmB,GAAGE,GAAkB,GAAGE,GAAgB,GAAGE,GAAc,GAAGI,GAAiB,GAAGE,GAAqB,GAAGE,GAAkB,GAAGE,GAAkB,GAAG4H,EAAoCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,EACrvO,IAAMC,GAAqB,CAAC,QAAU,CAAC,MAAQ,CAAC,KAAO,SAAS,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,QAAU,CAAC,KAAO,iBAAiB,KAAO,kBAAkB,MAAQ,CAAC,EAAE,YAAc,CAAC,qBAAuB,OAAO,oCAAsC,4JAA0L,yBAA2B,QAAQ,qBAAuB,OAAO,yBAA2B,OAAO,sBAAwB,IAAI,sBAAwB,OAAO,kBAAoB,OAAO,qBAAuB,4BAA4B,6BAA+B,OAAO,4BAA8B,MAAM,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC",
  "names": ["Counter", "start", "end", "speed", "gapSize", "prefixText", "suffixText", "prefixFont", "suffixFont", "prefixColor", "suffixColor", "loop", "decimalSeparatorType", "textSize", "selectedFont", "textColor", "startOnViewport", "restartOnViewport", "incrementType", "count", "setCount", "ye", "isVisible", "setIsVisible", "containerRef", "pe", "ue", "observer", "entry", "increment", "intervalId", "prev", "formatNumber", "number", "u", "motion", "p", "addPropertyControls", "ControlType", "fontStore", "fonts", "css", "className", "CounterFonts", "getFonts", "Counter", "CounterControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "description", "h3Title", "height", "id", "incrementType", "number", "speedMs", "suffix", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "BU4_wyR9A", "uvfNqUND5", "XbDSLtZLO", "OhLeOem3o", "ezNYwgiIW", "MTE4RiHaV", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "RichText", "css", "FrameraH7yeXBVj", "withCSS", "aH7yeXBVj_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "description", "height", "id", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "M6makQZJz", "iU68ScBCY", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "RichText", "css", "FramerJDguMTCRG", "withCSS", "JDguMTCRG_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "MotionDivWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "animation", "transition1", "animation1", "transition2", "animation2", "animation3", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "mouseEnter", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "fErYKCICq", "KrXbsPILD", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnter10pbwk0", "args", "scopingClassNames", "cx", "LayoutGroup", "RichText", "css", "FramerZkokeclFd", "withCSS", "ZkokeclFd_default", "addPropertyControls", "ControlType", "addFonts", "ServicesItemsDescriptionFonts", "getFonts", "JDguMTCRG_default", "MotionDivWithFX", "withFX", "motion", "ServicesItemsItemFonts", "ZkokeclFd_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "animation1", "toResponsiveImage", "value", "isSet", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "_01Description", "_01Image", "_01Title", "_02Description", "_02Image", "_02Title", "_03Description", "_03Image", "_03Title", "_04Description", "_04Image", "_04Title", "_05Description", "_05Image", "_05Title", "_06Description", "_06Image", "_06Title", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "L5bVOjC54", "Xgqdpwxoc", "nfr3_vd4_", "kGMjQGWFg", "AChBv6mnx", "dym8aGlmH", "AtsGqKbqe", "Y7m9L8sgJ", "u2WQNcukZ", "gRgZAVMwJ", "rd_VK8DcK", "T3Zvj4lLt", "FhHZF40Gc", "DvMnYDgLq", "DP3k2sIwB", "is0Kmy_LC", "dYspAHvCn", "yIZLGI3IM", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "KrXbsPILD1xtnafx", "args", "KrXbsPILD1ov8v4r", "KrXbsPILDgko28l", "KrXbsPILDjnvuu0", "KrXbsPILDkhapmg", "KrXbsPILDbr4mb1", "KrXbsPILD11xbel4", "KrXbsPILD8caf5w", "KrXbsPILD1i08jbh", "KrXbsPILD1mf45pp", "KrXbsPILD1undss3", "KrXbsPILDyokc1j", "KrXbsPILD1uxowba", "KrXbsPILDnbjzmd", "KrXbsPILDvu4x", "KrXbsPILD1ext7ag", "KrXbsPILDq1ltx0", "KrXbsPILD46k9fx", "scopingClassNames", "cx", "visible", "visible1", "visible2", "visible3", "visible4", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramereSOfEPmfr", "withCSS", "eSOfEPmfr_default", "addPropertyControls", "ControlType", "addFonts", "MotionDivWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "animation", "transition1", "transition2", "animation1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "description", "heading", "height", "id", "number", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "XRBqy2pAy", "YEVw3BM0l", "DeMGKHWWt", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "RichText", "css", "FramerhvQAZuTE8", "withCSS", "hvQAZuTE8_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "PhosphorFonts", "getFonts", "Icon", "MotionDivWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "transition3", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "_01Description", "_01Number", "_02Description", "_02Number", "avatar", "bGColor", "borderColor", "height", "id", "name1", "occupation", "starColor", "testimonial", "textColor", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "ysHGQbLqA", "HZi8Dk5hs", "d4lzmm0YL", "F9uW9JjKI", "ZL3Q30CZC", "y8_auQFXP", "qXDjeqRcY", "V5EvMzZAA", "jjg85LuOE", "AM46op7Lx", "DMTP3vKWw", "VZf4KPRV3", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "RichText", "Image2", "css", "FramerjFWuJpyza", "withCSS", "jFWuJpyza_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "transformTemplate1", "_", "t", "transformTemplate2", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "amount", "bGColor", "border", "height", "id", "image1", "image2", "image3", "image4", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "_ref5", "_humanReadableVariantMap_props_variant", "_ref6", "_ref7", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "dGWMhyRCs", "H0Oo1Mfv9", "fwD6acpNS", "vNAo0sswR", "RDM7oqG69", "IYnqoNnsD", "K01rPaGiO", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "_RDM7oqG69_borderBottomWidth", "_RDM7oqG69_borderLeftWidth", "_RDM7oqG69_borderRightWidth", "_RDM7oqG69_borderTopWidth", "_RDM7oqG69_borderBottomWidth1", "_RDM7oqG69_borderLeftWidth1", "_RDM7oqG69_borderRightWidth1", "_RDM7oqG69_borderTopWidth1", "_RDM7oqG69_borderBottomWidth2", "_RDM7oqG69_borderLeftWidth2", "_RDM7oqG69_borderRightWidth2", "_RDM7oqG69_borderTopWidth2", "_RDM7oqG69_borderBottomWidth3", "_RDM7oqG69_borderLeftWidth3", "_RDM7oqG69_borderRightWidth3", "_RDM7oqG69_borderTopWidth3", "LayoutGroup", "u", "cx", "Image2", "getLoadingLazyAtYPosition", "RichText", "css", "FramerP9ubNxmwe", "withCSS", "P9ubNxmwe_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "bottom", "height", "id", "number", "top", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "s0pskHPgi", "xdRQ8fRTN", "sUuW11Svk", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "RichText", "css", "FramerW96ZH6Gnz", "withCSS", "W96ZH6Gnz_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "HeaderHeaderFonts", "getFonts", "O1fMzCErz_default", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "MotionDivWithOptimizedAppearEffect", "motion", "RichTextWithOptimizedAppearEffect", "RichText", "ImageWithOptimizedAppearEffect", "Image2", "MotionSectionWithFX", "withFX", "UIArrowButtonFonts", "ozPjcS5mp_default", "RichTextWithFX", "NumbersItemFonts", "aH7yeXBVj_default", "MotionDivWithFX", "LogoFonts", "OY8jC43hH_default", "UICategoryFonts", "wVLyqC_6X_default", "ServicesItemsFonts", "eSOfEPmfr_default", "LogoCarouselFonts", "fuxa0eFsG_default", "TeamAvatarFonts", "P9ubNxmwe_default", "TeamItemFonts", "W96ZH6Gnz_default", "ContainerWithFX", "ImageWithFX", "ProcessItemFonts", "hvQAZuTE8_default", "TestimoialsItemFonts", "jFWuJpyza_default", "SmoothScrollFonts", "SmoothScroll_Prod_default", "UISocialLinkFonts", "Oy_aSAGbi_default", "MotionSectionWithOptimizedAppearEffect", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "animation3", "transformTemplate1", "_", "t", "transition3", "animation4", "transformTemplate2", "transition4", "animation5", "animation6", "transition5", "animation7", "animation8", "animation9", "transition6", "animation10", "transition7", "animation11", "animation12", "transition8", "animation13", "animation14", "animation15", "transition9", "animation16", "animation17", "transition10", "animation18", "animation19", "addImageAlt", "image", "alt", "transition11", "animation20", "animation21", "transformTemplate3", "transition12", "animation22", "transition13", "animation23", "transition14", "animation24", "transition15", "animation25", "transition16", "animation26", "formVariants", "form", "variants", "currentVariant", "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", "I2MGBGTUTv75Tpw1Yr", "restProps", "metadata", "se", "useMetadata", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "router", "useRouter", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "PropertyOverrides2", "x", "getLoadingLazyAtYPosition", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "Link", "FormContainer", "formState", "l", "FormPlainTextInput2", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
