{"version":3,"file":"Chwg7yHFM.CGkMedaS.mjs","names":["css","addPropertyOverrides","cycleOrder","serializationHash","variantClassNames","transition1","Transition","Variants","getProps","createLayoutDependency","Component","className","css","LinkWithBadge","TimeDate","className"],"sources":["https:/framerusercontent.com/modules/HYcHVPAbe8jLEeU7c4mp/TcQV6SEsl3y6G9Op8tp0/Time.js","https:/framerusercontent.com/modules/W1GO1gvBmW8jOwPcPLPC/PMqcZG0fpG2mBO1J33lA/uItZe1Zdj.js","https:/framerusercontent.com/modules/ecBozlwrF9BatGSQc7vP/FNiPlR6faf0O0WCmau1A/VADRURQkG.js","https:/framerusercontent.com/modules/pkPLIGETEJTzYCUyYvYl/GEAMoEKLkU2Aj3ck2rby/Chwg7yHFM.js"],"sourcesContent":["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget,useLocaleCode}from\"framer\";import{useState,useEffect,useCallback}from\"react\";const fontStack=`\"Inter\", system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\"`;function useForceRender(){const[_,set]=useState(0);return useCallback(()=>set(v=>v+1),[]);}function formatTimeOrDate(outputType,{showYear,showMonth,showWeekday,showMinutes,showSeconds},timeFormat,monthFormat,localCode){const date=new Date;const onlyYearIsShown=!showWeekday&&!showMonth&&showYear;switch(outputType){case\"date\":return new Intl.DateTimeFormat(localCode,{weekday:showWeekday?\"long\":undefined,day:onlyYearIsShown?undefined:\"numeric\",month:showMonth?monthFormat:undefined,year:showYear?\"numeric\":undefined}).format(date);case\"time\":return new Intl.DateTimeFormat(localCode,{hour:\"numeric\",minute:showMinutes?\"numeric\":undefined,second:showSeconds&&showMinutes?\"numeric\":undefined,hour12:timeFormat===\"12h\"}).format(date);default:return new Intl.DateTimeFormat(localCode).format(date);}}/**\n * TIME AND DATE\n * FORKED FROM PROTOTYPING\n *\n *\n * @framerIntrinsicWidth 140\n * @framerIntrinsicHeight 20\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */export function Time(props){const{outputType,fontFamily,fontSize,fontWeight,timeFormat,showYear,showMonth,showWeekday,showHours,showMinutes,showSeconds,monthFormat,color,font,tabularFont,alignment}=props;const[visible,setIsVisible]=useState(false);const isCanvas=RenderTarget.current()===RenderTarget.canvas;const render=useForceRender();const localCode=useLocaleCode();const textContent=formatTimeOrDate(outputType,{showYear,showMonth,showWeekday,showHours,showMinutes,showSeconds},timeFormat,monthFormat,localCode);useEffect(()=>{setIsVisible(true);// Don’t want real time on Canvas\nif(isCanvas)return;const int=setInterval(()=>{render();});return()=>{clearInterval(int);};},[]);return /*#__PURE__*/_jsx(\"p\",{suppressHydrationWarning:true,style:{margin:0,padding:0,color,fontFamily:fontStack,fontWeight:500,fontSize:16,lineHeight:1,visibility:visible?\"visible\":\"hidden\",...font,fontVariantNumeric:tabularFont?\"tabular-nums\":\"normal\",whiteSpace:\"nowrap\"},children:textContent});}Time.defaultProps={height:20,width:140,outputType:\"time\",color:\"#999\",timeFormat:\"24h\",showYear:true,showMonth:true,showWeekday:true,showMinutes:true,showSeconds:true,monthFormat:\"long\",alignment:\"center\"};Time.displayName=\"Time & Date\";addPropertyControls(Time,{outputType:{title:\"Type\",type:ControlType.Enum,displaySegmentedControl:true,options:[\"date\",\"time\"],optionTitles:[\"Date\",\"Time\"],defaultValue:Time.defaultProps.outputType},showWeekday:{title:\"Day\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:Time.defaultProps.showWeekday,hidden:props=>props.outputType!==\"date\"},showMonth:{title:\"Month\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:Time.defaultProps.showMonth,hidden:props=>props.outputType!==\"date\"},monthFormat:{title:\"Format\",type:ControlType.Enum,options:[\"short\",\"long\",\"numeric\"],optionTitles:[\"Short\",\"Long\",\"Numeric\"],defaultValue:Time.defaultProps.monthFormat,hidden:props=>props.outputType!==\"date\"||!props.showMonth},showYear:{title:\"Year\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:Time.defaultProps.showYear,hidden:props=>props.outputType!==\"date\"},timeFormat:{title:\"Format\",type:ControlType.Enum,options:[\"12h\",\"24h\"],optionTitles:[\"12h\",\"24h\"],displaySegmentedControl:true,defaultValue:Time.defaultProps.timeFormat,hidden:props=>props.outputType!==\"time\"},// showHours: {\n//     title: \"Hours\",\n//     type: ControlType.Boolean,\n//     enabledTitle: \"Show\",\n//     disabledTitle: \"Hide\",\n//     defaultValue: Time.defaultProps.showHours,\n//     hidden: (props) => props.outputType !== \"time\",\n// },\nshowMinutes:{title:\"Minutes\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:Time.defaultProps.showMinutes,hidden:props=>props.outputType!==\"time\"},showSeconds:{title:\"Seconds\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:Time.defaultProps.showSeconds,hidden:props=>props.outputType!==\"time\"||!props.showMinutes},font:{type:ControlType.Font,controls:\"extended\"},tabularFont:{title:\"Tabular\",type:ControlType.Boolean,defaultValue:true},color:{type:ControlType.Color,defaultValue:Time.defaultProps.color}});\nexport const __FramerMetadata__ = {\"exports\":{\"Time\":{\"type\":\"reactComponent\",\"name\":\"Time\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"20\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"any\",\"framerSupportedLayoutHeight\":\"any\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"140\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Time.map","import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([]);export const fonts=[];export const css=[\".framer-zmiwJ .framer-styles-preset-qpy9ou:not(.rich-text-wrapper), .framer-zmiwJ .framer-styles-preset-qpy9ou.rich-text-wrapper a { --framer-link-current-text-color: #7D7D7D; --framer-link-current-text-decoration: none; --framer-link-hover-text-color: #383838; --framer-link-hover-text-decoration: none; --framer-link-text-color: #6b6b6b; --framer-link-text-decoration: none; }\"];export const className=\"framer-zmiwJ\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (1e08357)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={sel6NQEkx:{hover:true}};const cycleOrder=[\"sel6NQEkx\"];const serializationHash=\"framer-JUc7T\";const variantClassNames={sel6NQEkx:\"framer-v-1k8ycew\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.1,ease:[.44,0,.56,1],type:\"tween\"};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(React.Fragment);const getProps=({badge,height,id,link,newTab,title,width,...props})=>{var _ref,_ref1,_ref2;return{...props,C56xIJRJV:(_ref=title!==null&&title!==void 0?title:props.C56xIJRJV)!==null&&_ref!==void 0?_ref:\"Careers\",IgD2nXq9T:(_ref1=newTab!==null&&newTab!==void 0?newTab:props.IgD2nXq9T)!==null&&_ref1!==void 0?_ref1:true,N7T9Us4Id:(_ref2=badge!==null&&badge!==void 0?badge:props.N7T9Us4Id)!==null&&_ref2!==void 0?_ref2:\"We're hiring\",Yrm0aamVh:link!==null&&link!==void 0?link:props.Yrm0aamVh};};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,Yrm0aamVh,C56xIJRJV,N7T9Us4Id,IgD2nXq9T,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"sel6NQEkx\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:Yrm0aamVh,openInNewTab:IgD2nXq9T,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1k8ycew\",className,classNames)} framer-1o87a3y`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"sel6NQEkx\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"sel6NQEkx-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:\"Careers\"})}),className:\"framer-1j9wxge\",fonts:[\"GF;Inter-600\"],layoutDependency:layoutDependency,layoutId:\"oatqaj3c6\",style:{\"--extracted-r6o4lv\":\"rgb(102, 102, 102)\"},text:C56xIJRJV,variants:{\"sel6NQEkx-hover\":{\"--extracted-r6o4lv\":\"rgb(56, 56, 56)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"sel6NQEkx-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(56, 56, 56))\"},children:\"Careers\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-134szdk\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"h4g19xOud\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(0, 102, 204)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},variants:{\"sel6NQEkx-hover\":{backgroundColor:\"rgba(0, 102, 204, 0.05)\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(0, 102, 204))\"},children:\"We're hiring\"})}),className:\"framer-wdxrec\",fonts:[\"GF;Inter-500\"],layoutDependency:layoutDependency,layoutId:\"XpRsy4ptC\",style:{\"--extracted-r6o4lv\":\"rgb(0, 102, 204)\"},text:N7T9Us4Id,verticalAlignment:\"top\",withExternalLayout:true})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-JUc7T.framer-1o87a3y, .framer-JUc7T .framer-1o87a3y { display: block; }\",\".framer-JUc7T.framer-1k8ycew { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 164px; }\",\".framer-JUc7T .framer-1j9wxge, .framer-JUc7T .framer-wdxrec { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-JUc7T .framer-134szdk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: hidden; padding: 2px 6px 2px 6px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-JUc7T.framer-1k8ycew, .framer-JUc7T .framer-134szdk { gap: 0px; } .framer-JUc7T.framer-1k8ycew > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-JUc7T.framer-1k8ycew > :first-child, .framer-JUc7T .framer-134szdk > :first-child { margin-left: 0px; } .framer-JUc7T.framer-1k8ycew > :last-child, .framer-JUc7T .framer-134szdk > :last-child { margin-right: 0px; } .framer-JUc7T .framer-134szdk > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } }\",'.framer-JUc7T[data-border=\"true\"]::after, .framer-JUc7T [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 25\n * @framerIntrinsicWidth 164\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ZzbrrPUis\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"Yrm0aamVh\":\"link\",\"C56xIJRJV\":\"title\",\"N7T9Us4Id\":\"badge\",\"IgD2nXq9T\":\"newTab\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerVADRURQkG=withCSS(Component,css,\"framer-JUc7T\");export default FramerVADRURQkG;FramerVADRURQkG.displayName=\"Link with badge\";FramerVADRURQkG.defaultProps={height:25,width:164};addPropertyControls(FramerVADRURQkG,{Yrm0aamVh:{title:\"Link\",type:ControlType.Link},C56xIJRJV:{defaultValue:\"Careers\",displayTextArea:false,title:\"Title\",type:ControlType.String},N7T9Us4Id:{defaultValue:\"We're hiring\",displayTextArea:false,title:\"Badge\",type:ControlType.String},IgD2nXq9T:{defaultValue:true,title:\"New Tab\",type:ControlType.Boolean}});addFonts(FramerVADRURQkG,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\",weight:\"600\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerVADRURQkG\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"Yrm0aamVh\\\":\\\"link\\\",\\\"C56xIJRJV\\\":\\\"title\\\",\\\"N7T9Us4Id\\\":\\\"badge\\\",\\\"IgD2nXq9T\\\":\\\"newTab\\\"}\",\"framerIntrinsicWidth\":\"164\",\"framerIntrinsicHeight\":\"25\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZzbrrPUis\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./VADRURQkG.map","// Generated by Framer (3d4fa65)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Time as TimeDate}from\"https://framerusercontent.com/modules/HYcHVPAbe8jLEeU7c4mp/TcQV6SEsl3y6G9Op8tp0/Time.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/W1GO1gvBmW8jOwPcPLPC/PMqcZG0fpG2mBO1J33lA/uItZe1Zdj.js\";import LinkWithBadge from\"https://framerusercontent.com/modules/ecBozlwrF9BatGSQc7vP/FNiPlR6faf0O0WCmau1A/VADRURQkG.js\";const LinkWithBadgeFonts=getFonts(LinkWithBadge);const TimeDateFonts=getFonts(TimeDate);const cycleOrder=[\"bIGys4qlk\",\"orBqu4Y0m\",\"ykNihn5Zi\"];const serializationHash=\"framer-nvSTu\";const variantClassNames={bIGys4qlk:\"framer-v-1eku11l\",orBqu4Y0m:\"framer-v-8vg2m0\",ykNihn5Zi:\"framer-v-j4mxol\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const 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:\"bIGys4qlk\",Phone:\"ykNihn5Zi\",Tablet:\"orBqu4Y0m\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"bIGys4qlk\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"bIGys4qlk\",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.footer,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1eku11l\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"bIGys4qlk\",ref:refBinding,style:{backgroundColor:\"rgb(255, 255, 255)\",...style},...addPropertyOverrides({orBqu4Y0m:{\"data-framer-name\":\"Tablet\"},ykNihn5Zi:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16ns9tz\",\"data-framer-name\":\"Horizontal\",layoutDependency:layoutDependency,layoutId:\"CKweFbGEb\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"x1S1EX4av\",scopeId:\"Chwg7yHFM\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-gw7nik framer-ecn9mu\",\"data-framer-name\":\"VoiceLine Logo, coloured\",description:\"Links to the home page\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:265,intrinsicWidth:1e3,layoutDependency:layoutDependency,layoutId:\"x1S1EX4av\",svg:'<svg width=\"1000\" height=\"265\" viewBox=\"0 0 1000 265\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_126_15786)\">\\n<path d=\"M12.5739 207.177C5.02956 207.177 0 201.998 0 194.228V12.9486C0 5.17943 5.02954 0 12.5739 0C20.1181 0 25.1477 5.17943 25.1477 12.9486V194.228C25.1477 201.998 20.1181 207.177 12.5739 207.177Z\" fill=\"#25534D\"/>\\n<path d=\"M108.134 207.177C100.59 207.177 95.5605 201.998 95.5605 194.228V12.9486C95.5605 5.17943 100.59 0 108.134 0C115.678 0 120.708 5.17943 120.708 12.9486V194.228C120.708 201.998 115.678 207.177 108.134 207.177Z\" fill=\"#25534D\"/>\\n<path d=\"M60.3561 264.15C52.8118 264.15 47.7822 258.971 47.7822 251.202V69.9212C47.7822 62.1521 52.8118 56.9727 60.3561 56.9727C67.9004 56.9727 72.93 62.1521 72.93 69.9212V251.202C72.93 258.971 67.9004 264.15 60.3561 264.15Z\" fill=\"#25534D\"/>\\n<path d=\"M165.862 73.2746C164.684 69.7052 167.26 66 170.921 66H189.672C191.989 66 194.041 67.5365 194.756 69.8054L225.359 166.976L256.701 69.7689C257.427 67.5187 259.471 66 261.773 66H279.806C283.465 66 286.041 69.6997 284.868 73.2679L243.624 198.715C242.889 200.95 240.853 202.454 238.563 202.454H212.339C210.051 202.454 208.017 200.953 207.28 198.722L165.862 73.2746Z\" fill=\"#25534D\"/>\\n<path d=\"M331.912 203.62C321.691 203.62 312.667 201.541 304.843 197.381C297.145 193.093 291.151 187.05 286.86 179.253C282.696 171.456 280.614 162.489 280.614 152.352C280.614 142.215 282.696 133.248 286.86 125.451C291.151 117.654 297.145 111.675 304.843 107.517C312.667 103.228 321.691 101.084 331.912 101.084C342.134 101.084 351.094 103.228 358.792 107.517C366.616 111.675 372.61 117.654 376.775 125.451C381.065 133.248 383.21 142.215 383.21 152.352C383.21 162.618 381.065 171.65 376.775 179.447C372.61 187.115 366.616 193.093 358.792 197.381C351.094 201.541 342.134 203.62 331.912 203.62ZM331.912 181.202C339.358 181.202 345.226 178.538 349.516 173.209C353.933 167.881 356.142 160.929 356.142 152.352C356.142 143.775 353.933 136.822 349.516 131.493C345.226 126.165 339.358 123.502 331.912 123.502C324.593 123.502 318.725 126.165 314.308 131.493C310.017 136.822 307.872 143.775 307.872 152.352C307.872 160.929 310.017 167.881 314.308 173.209C318.725 178.538 324.593 181.202 331.912 181.202Z\" fill=\"#25534D\"/>\\n<path d=\"M410.062 60.5293C414.479 60.5293 418.139 62.0238 421.041 65.0128C423.944 67.8718 425.395 71.5106 425.395 75.9291C425.395 80.3476 423.944 84.0514 421.041 87.0404C418.139 90.0294 414.479 91.5239 410.062 91.5239C405.646 91.5239 401.923 90.0294 398.894 87.0404C395.991 84.0514 394.541 80.3476 394.541 75.9291C394.541 71.5106 395.991 67.8718 398.894 65.0128C401.923 62.0238 405.646 60.5293 410.062 60.5293ZM396.623 107.748C396.623 104.709 399.015 102.245 401.967 102.245H417.969C420.921 102.245 423.313 104.709 423.313 107.748V196.938C423.313 199.978 420.921 202.442 417.969 202.442H401.967C399.015 202.442 396.623 199.978 396.623 196.938V107.748Z\" fill=\"#25534D\"/>\\n<path d=\"M527.944 164.438C531.209 164.438 533.736 167.44 532.894 170.688C530.483 179.981 525.851 187.514 518.999 193.288C510.797 200.175 500.132 203.62 487.009 203.62C476.913 203.62 468.079 201.541 460.507 197.381C452.935 193.093 447.067 187.05 442.903 179.253C438.865 171.456 436.846 162.489 436.846 152.352C436.846 142.085 438.865 133.118 442.903 125.451C447.067 117.654 452.935 111.675 460.507 107.517C468.205 103.228 477.102 101.084 487.198 101.084C500.196 101.084 510.797 104.528 518.999 111.415C525.715 116.948 530.316 124.267 532.802 133.371C533.693 136.633 531.159 139.681 527.867 139.681H510.732C508.255 139.681 506.173 137.892 505.191 135.55C503.918 132.515 502.085 129.993 499.691 127.985C496.283 124.996 492.056 123.502 487.009 123.502C480.067 123.502 474.516 126.165 470.35 131.493C466.186 136.822 464.104 143.775 464.104 152.352C464.104 160.929 466.186 167.881 470.35 173.209C474.516 178.538 480.067 181.202 487.009 181.202C492.182 181.202 496.473 179.708 499.881 176.719C502.368 174.614 504.231 171.962 505.467 168.762C506.409 166.325 508.529 164.438 511.076 164.438H527.944Z\" fill=\"#25534D\"/>\\n<path d=\"M542.227 152.546C542.227 142.15 544.246 133.118 548.285 125.451C552.449 117.654 558.19 111.675 565.51 107.517C572.955 103.228 581.536 101.084 591.253 101.084C601.097 101.084 609.741 103.098 617.186 107.127C624.758 111.025 630.627 116.614 634.791 123.892C639.082 131.039 641.29 139.486 641.417 149.233C641.417 150.94 641.356 152.555 641.237 154.077C641.031 156.711 638.803 158.59 636.237 158.59H570.053V159.37C570.684 166.647 572.955 172.365 576.868 176.524C580.78 180.682 586.143 182.761 592.957 182.761C598.384 182.761 602.864 181.592 606.397 179.253C608.922 177.549 610.847 175.319 612.17 172.563C613.257 170.299 615.31 168.531 617.763 168.531H633.654C636.936 168.531 639.47 171.57 638.459 174.784C637.14 178.975 635.161 182.868 632.519 186.465C628.607 191.793 623.434 196.017 616.998 199.136C610.562 202.125 603.179 203.62 594.851 203.62C583.998 203.62 574.596 201.541 566.646 197.381C558.821 193.223 552.764 187.31 548.473 179.642C544.309 171.845 542.227 162.813 542.227 152.546ZM614.726 140.656C613.843 134.548 611.382 129.869 607.344 126.621C603.432 123.242 598.447 121.552 592.389 121.552C586.585 121.552 581.663 123.307 577.624 126.815C573.713 130.194 571.378 134.808 570.62 140.656H614.726Z\" fill=\"#25534D\"/>\\n<path d=\"M662.146 202.454C659.195 202.454 656.803 199.99 656.803 196.95V71.5031C656.803 68.4638 659.195 66 662.146 66H679.853C682.804 66 685.196 68.4638 685.196 71.5031V177.308H732.475C735.427 177.308 737.82 179.771 737.82 182.811V196.95C737.82 199.99 735.427 202.454 732.475 202.454H662.146Z\" fill=\"#25534D\"/>\\n<path d=\"M763.186 60.5293C767.603 60.5293 771.263 62.0238 774.165 65.0128C777.067 67.8718 778.519 71.5106 778.519 75.9291C778.519 80.3476 777.067 84.0514 774.165 87.0404C771.263 90.0294 767.603 91.5239 763.186 91.5239C758.769 91.5239 755.047 90.0294 752.018 87.0404C749.116 84.0514 747.665 80.3476 747.665 75.9291C747.665 71.5106 749.116 67.8718 752.018 65.0128C755.047 62.0238 758.769 60.5293 763.186 60.5293ZM749.747 107.748C749.747 104.709 752.139 102.245 755.09 102.245H771.093C774.045 102.245 776.437 104.709 776.437 107.748V196.938C776.437 199.978 774.045 202.442 771.093 202.442H755.09C752.139 202.442 749.747 199.978 749.747 196.938V107.748Z\" fill=\"#25534D\"/>\\n<path d=\"M849.598 101.084C860.955 101.084 870.294 104.723 877.613 112C884.932 119.278 888.592 131.299 888.592 148.063V196.946C888.592 199.986 886.2 202.45 883.248 202.45H867.246C864.294 202.45 861.902 199.986 861.902 196.946V149.623C861.902 132.339 855.339 123.696 842.215 123.696C835.274 123.696 829.911 126.101 826.125 130.909C822.339 135.717 820.447 142.475 820.447 151.182V196.946C820.447 199.986 818.054 202.45 815.103 202.45H799.1C796.149 202.45 793.756 199.986 793.756 196.946V107.757C793.756 104.717 796.149 102.254 799.1 102.254H812.671C815.213 102.254 817.403 104.096 817.908 106.661L819.5 114.729C822.907 110.441 827.008 107.127 831.804 104.788C836.6 102.319 842.531 101.084 849.598 101.084Z\" fill=\"#25534D\"/>\\n<path d=\"M900.344 152.546C900.344 142.15 902.363 133.118 906.402 125.451C910.566 117.654 916.309 111.675 923.627 107.517C931.073 103.228 939.654 101.084 949.37 101.084C959.219 101.084 967.861 103.098 975.304 107.127C982.879 111.025 988.747 116.614 992.908 123.892C997.2 131.039 999.408 139.486 999.53 149.233C999.53 150.94 999.474 152.555 999.351 154.077C999.144 156.711 996.917 158.59 994.351 158.59H928.171V159.37C928.801 166.647 931.073 172.365 934.985 176.524C938.897 180.682 944.257 182.761 951.078 182.761C956.502 182.761 960.983 181.592 964.511 179.253C967.04 177.549 968.964 175.319 970.285 172.563C971.379 170.299 973.427 168.531 975.879 168.531H991.776C995.049 168.531 997.587 171.57 996.577 174.784C995.257 178.975 993.276 182.868 990.634 186.465C986.728 191.793 981.549 196.017 975.115 199.136C968.681 202.125 961.294 203.62 952.964 203.62C942.115 203.62 932.713 201.541 924.763 197.381C916.939 193.223 910.882 187.31 906.591 179.642C902.427 171.845 900.344 162.813 900.344 152.546ZM972.842 140.656C971.964 134.548 969.502 129.869 965.464 126.621C961.549 123.242 956.568 121.552 950.511 121.552C944.7 121.552 939.78 123.307 935.743 126.815C931.83 130.194 929.495 134.808 928.739 140.656H972.842Z\" fill=\"#25534D\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_126_15786\">\\n<rect width=\"1000\" height=\"264.151\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',title:\"VoiceLine logo\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fbncgm\",\"data-framer-name\":\"Vertical\",layoutDependency:layoutDependency,layoutId:\"kg51DpeO5\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(51, 51, 51))\"},children:\"Company\"})}),className:\"framer-hc980p\",fonts:[\"GF;Inter-600\"],layoutDependency:layoutDependency,layoutId:\"oSH2PbpKe\",style:{\"--extracted-r6o4lv\":\"rgb(51, 51, 51)\",\"--framer-link-hover-text-color\":\"rgba(153, 153, 153, 0.6)\",\"--framer-link-text-decoration\":\"none\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-w0aua3\",layoutDependency:layoutDependency,layoutId:\"JovaHEb7d\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-yvioo\",layoutDependency:layoutDependency,layoutId:\"oPQxd3M34\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Kw6anmOyj\"},motionChild:true,nodeId:\"ZRa4Y1OMf\",openInNewTab:false,scopeId:\"Chwg7yHFM\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-qpy9ou\",\"data-styles-preset\":\"uItZe1Zdj\",children:\"About\"})})})}),className:\"framer-18n8gae\",fonts:[\"GF;Inter-600\"],layoutDependency:layoutDependency,layoutId:\"ZRa4Y1OMf\",style:{\"--extracted-r6o4lv\":\"rgb(102, 102, 102)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:25,width:\"164px\",...addPropertyOverrides({orBqu4Y0m:{width:\"152px\"},ykNihn5Zi:{width:`max(min(${componentViewport?.width||\"100vw\"} - 80px, 1000px), 1px)`,y:(componentViewport?.y||0)+60+(((componentViewport?.height||200)-90-696)/2+0+0)+0+74+0+39+0+0+34}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-3ys4xa-container\",layoutDependency:layoutDependency,layoutId:\"v0mwmsqwI-container\",nodeId:\"v0mwmsqwI\",rendersWithMotion:true,scopeId:\"Chwg7yHFM\",children:/*#__PURE__*/_jsx(LinkWithBadge,{C56xIJRJV:\"Careers\",height:\"100%\",id:\"v0mwmsqwI\",IgD2nXq9T:true,layoutId:\"v0mwmsqwI\",N7T9Us4Id:\"We're hiring\",style:{width:\"100%\"},width:\"100%\",Yrm0aamVh:\"https://voiceline.jobs.personio.de/\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:/*#__PURE__*/_jsx(Link,{href:\"mailto:hello@getvoiceline.com\",motionChild:true,nodeId:\"XXieX7wJg\",openInNewTab:true,scopeId:\"Chwg7yHFM\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-qpy9ou\",\"data-styles-preset\":\"uItZe1Zdj\",children:\"Contact\"})})})}),className:\"framer-1ibuoe5\",fonts:[\"GF;Inter-600\"],layoutDependency:layoutDependency,layoutId:\"XXieX7wJg\",style:{\"--extracted-r6o4lv\":\"rgb(102, 102, 102)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://trust.voiceline.ai/\",motionChild:true,nodeId:\"UpG2XT6cW\",openInNewTab:true,scopeId:\"Chwg7yHFM\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-qpy9ou\",\"data-styles-preset\":\"uItZe1Zdj\",children:\"Trust Center\"})})})}),className:\"framer-1aat2cp\",fonts:[\"GF;Inter-600\"],layoutDependency:layoutDependency,layoutId:\"UpG2XT6cW\",style:{\"--extracted-r6o4lv\":\"rgb(102, 102, 102)\"},verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-150neis\",\"data-framer-name\":\"Vertical\",layoutDependency:layoutDependency,layoutId:\"ssRe0qfd3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(51, 51, 51))\"},children:\"Product\"})}),className:\"framer-q3fy0a\",fonts:[\"GF;Inter-600\"],layoutDependency:layoutDependency,layoutId:\"X1RqMQo8w\",style:{\"--extracted-r6o4lv\":\"rgb(51, 51, 51)\",\"--framer-link-hover-text-color\":\"rgba(153, 153, 153, 0.6)\",\"--framer-link-text-decoration\":\"none\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16njioj\",layoutDependency:layoutDependency,layoutId:\"tnv5Bwn3H\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ZmT5hscNy\"},motionChild:true,nodeId:\"FKpy2hio2\",openInNewTab:false,scopeId:\"Chwg7yHFM\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-qpy9ou\",\"data-styles-preset\":\"uItZe1Zdj\",children:\"Legal Notice\"})})})}),className:\"framer-bxuwtp\",fonts:[\"GF;Inter-600\"],layoutDependency:layoutDependency,layoutId:\"FKpy2hio2\",style:{\"--extracted-r6o4lv\":\"rgb(102, 102, 102)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"nIP_h3uXv\"},motionChild:true,nodeId:\"XVS0Rn0QE\",openInNewTab:false,scopeId:\"Chwg7yHFM\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-qpy9ou\",\"data-styles-preset\":\"uItZe1Zdj\",children:\"Terms & Conditions\"})})})}),className:\"framer-1cqhqzs\",fonts:[\"GF;Inter-600\"],layoutDependency:layoutDependency,layoutId:\"XVS0Rn0QE\",style:{\"--extracted-r6o4lv\":\"rgb(102, 102, 102)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"WNXmXwoLW\"},motionChild:true,nodeId:\"ixkF0c7aZ\",openInNewTab:false,scopeId:\"Chwg7yHFM\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-qpy9ou\",\"data-styles-preset\":\"uItZe1Zdj\",children:\"Privacy Policy\"})})})}),className:\"framer-11cjter\",fonts:[\"GF;Inter-600\"],layoutDependency:layoutDependency,layoutId:\"ixkF0c7aZ\",style:{\"--extracted-r6o4lv\":\"rgb(102, 102, 102)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"D6UdcvF80\"},motionChild:true,nodeId:\"mMHa_yWin\",openInNewTab:true,scopeId:\"Chwg7yHFM\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-qpy9ou\",\"data-styles-preset\":\"uItZe1Zdj\",children:\"System status\"})})})}),className:\"framer-xf1tm9\",fonts:[\"GF;Inter-600\"],layoutDependency:layoutDependency,layoutId:\"mMHa_yWin\",style:{\"--extracted-r6o4lv\":\"rgb(102, 102, 102)\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1n0oa6p\",\"data-framer-name\":\"Vertical\",layoutDependency:layoutDependency,layoutId:\"bQHB_4VgH\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(51, 51, 51))\"},children:\"Follow us\"})}),className:\"framer-9lei21\",fonts:[\"GF;Inter-600\"],layoutDependency:layoutDependency,layoutId:\"CBlKRqaAR\",style:{\"--extracted-r6o4lv\":\"rgb(51, 51, 51)\",\"--framer-link-hover-text-color\":\"rgba(153, 153, 153, 0.6)\",\"--framer-link-text-decoration\":\"none\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3stau2\",layoutDependency:layoutDependency,layoutId:\"DmJb6hmxi\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/company/voiceline\",motionChild:true,nodeId:\"ILOTa7tEU\",openInNewTab:true,scopeId:\"Chwg7yHFM\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-qpy9ou\",\"data-styles-preset\":\"uItZe1Zdj\",children:\"Linkedin\"})})})}),className:\"framer-134jqpm\",fonts:[\"GF;Inter-600\"],layoutDependency:layoutDependency,layoutId:\"ILOTa7tEU\",style:{\"--extracted-r6o4lv\":\"rgb(102, 102, 102)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://twitter.com/getvoiceline\",motionChild:true,nodeId:\"MlDfggGBf\",openInNewTab:true,scopeId:\"Chwg7yHFM\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-qpy9ou\",\"data-styles-preset\":\"uItZe1Zdj\",children:\"Twitter\"})})})}),className:\"framer-1kabov8\",fonts:[\"GF;Inter-600\"],layoutDependency:layoutDependency,layoutId:\"MlDfggGBf\",style:{\"--extracted-r6o4lv\":\"rgb(102, 102, 102)\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1iedc32\",\"data-border\":true,\"data-framer-name\":\"Copyright\",layoutDependency:layoutDependency,layoutId:\"SZN4_tJ6J\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0.1)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-cx0ob7\",layoutDependency:layoutDependency,layoutId:\"H8pi8WKsA\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0Flb25payBNZWRpdW0=\",\"--framer-font-family\":'\"Aeonik Medium\", \"Aeonik Medium Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:\"\\xa9\"})}),className:\"framer-171fop2\",fonts:[\"CUSTOM;Aeonik Medium\"],layoutDependency:layoutDependency,layoutId:\"oP_c9Hpjm\",style:{\"--extracted-r6o4lv\":\"rgb(102, 102, 102)\",\"--framer-link-hover-text-color\":\"rgba(153, 153, 153, 0.6)\",\"--framer-link-text-decoration\":\"none\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-tja94u\",layoutDependency:layoutDependency,layoutId:\"omYL1NhuZ\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ushk7w-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"vVxHxOWrp-container\",nodeId:\"vVxHxOWrp\",rendersWithMotion:true,scopeId:\"Chwg7yHFM\",children:/*#__PURE__*/_jsx(TimeDate,{color:\"rgb(102, 102, 102)\",font:{fontFamily:'\"Aeonik Medium\", \"Aeonik Medium Placeholder\", sans-serif',fontSize:\"16px\",letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",id:\"vVxHxOWrp\",layoutId:\"vVxHxOWrp\",monthFormat:\"long\",outputType:\"date\",showMinutes:false,showMonth:false,showSeconds:true,showWeekday:false,showYear:true,tabularFont:true,timeFormat:\"24h\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0Flb25payBNZWRpdW0=\",\"--framer-font-family\":'\"Aeonik Medium\", \"Aeonik Medium Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(102, 102, 102))\"},children:\"VoiceLine\"})}),className:\"framer-1nxwbqj\",fonts:[\"CUSTOM;Aeonik Medium\"],layoutDependency:layoutDependency,layoutId:\"ZY1qG_TAr\",style:{\"--extracted-r6o4lv\":\"rgb(102, 102, 102)\",\"--framer-link-hover-text-color\":\"rgba(153, 153, 153, 0.6)\",\"--framer-link-text-decoration\":\"none\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-11ccs5f\",\"data-framer-name\":\"Icons\",layoutDependency:layoutDependency,layoutId:\"HEHCb6YC8\"})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-nvSTu.framer-ecn9mu, .framer-nvSTu .framer-ecn9mu { display: block; }\",\".framer-nvSTu.framer-1eku11l { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 60px 40px 30px 60px; position: relative; width: 1200px; }\",\".framer-nvSTu .framer-16ns9tz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; height: min-content; justify-content: space-between; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-nvSTu .framer-gw7nik { flex: none; height: 34px; position: relative; text-decoration: none; width: 129px; }\",\".framer-nvSTu .framer-fbncgm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 164px; }\",\".framer-nvSTu .framer-hc980p, .framer-nvSTu .framer-18n8gae, .framer-nvSTu .framer-1ibuoe5, .framer-nvSTu .framer-1aat2cp, .framer-nvSTu .framer-q3fy0a, .framer-nvSTu .framer-bxuwtp, .framer-nvSTu .framer-1cqhqzs, .framer-nvSTu .framer-11cjter, .framer-nvSTu .framer-xf1tm9, .framer-nvSTu .framer-9lei21, .framer-nvSTu .framer-134jqpm, .framer-nvSTu .framer-1kabov8, .framer-nvSTu .framer-171fop2, .framer-nvSTu .framer-1nxwbqj { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-nvSTu .framer-w0aua3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-nvSTu .framer-yvioo { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-nvSTu .framer-3ys4xa-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-nvSTu .framer-150neis, .framer-nvSTu .framer-1n0oa6p { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 152px; }\",\".framer-nvSTu .framer-16njioj, .framer-nvSTu .framer-3stau2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-nvSTu .framer-1iedc32 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1000px; overflow: visible; padding: 30px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-nvSTu .framer-cx0ob7 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-nvSTu .framer-tja94u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0.5px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-nvSTu .framer-ushk7w-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-nvSTu .framer-11ccs5f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; min-height: 20px; min-width: 50px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-nvSTu.framer-v-8vg2m0.framer-1eku11l { width: 810px; }\",\".framer-nvSTu.framer-v-8vg2m0 .framer-fbncgm { width: 152px; }\",\".framer-nvSTu.framer-v-j4mxol.framer-1eku11l { padding: 60px 40px 30px 40px; width: 390px; }\",\".framer-nvSTu.framer-v-j4mxol .framer-16ns9tz { flex-direction: column; gap: 40px; justify-content: flex-start; }\",\".framer-nvSTu.framer-v-j4mxol .framer-fbncgm, .framer-nvSTu.framer-v-j4mxol .framer-150neis, .framer-nvSTu.framer-v-j4mxol .framer-1n0oa6p { width: 100%; }\",...sharedStyle.css,'.framer-nvSTu[data-border=\"true\"]::after, .framer-nvSTu [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 370\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"orBqu4Y0m\":{\"layout\":[\"fixed\",\"auto\"]},\"ykNihn5Zi\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerChwg7yHFM=withCSS(Component,css,\"framer-nvSTu\");export default FramerChwg7yHFM;FramerChwg7yHFM.displayName=\"Footer\";FramerChwg7yHFM.defaultProps={height:370,width:1200};addPropertyControls(FramerChwg7yHFM,{variant:{options:[\"bIGys4qlk\",\"orBqu4Y0m\",\"ykNihn5Zi\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerChwg7yHFM,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\",weight:\"600\"},{family:\"Aeonik Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/ZM823oZLpR9xSpxOTkJvfE0kFdY.ttf\"}]},...LinkWithBadgeFonts,...TimeDateFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerChwg7yHFM\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"orBqu4Y0m\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ykNihn5Zi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"370\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Chwg7yHFM.map"],"mappings":"suBAAgW,SAAS,GAAgB,CAAC,GAAK,CAAC,EAAE,EAAI,CAAC,EAAS,EAAE,CAAC,MAAO,GAAY,IAAI,EAAI,GAAG,EAAE,EAAE,CAAC,CAAE,EAAC,AAAE,UAAS,EAAiB,EAAW,CAAC,WAAS,YAAU,cAAY,cAAY,cAAY,CAAC,EAAW,EAAY,EAAU,CAAC,IAAM,EAAK,IAAI,KAAW,GAAiB,IAAc,GAAW,EAAS,OAAO,EAAP,CAAmB,IAAI,OAAO,MAAO,KAAI,KAAK,eAAe,EAAU,CAAC,QAAQ,EAAY,WAAA,GAAiB,IAAI,MAAA,GAA0B,UAAU,MAAM,EAAU,MAAA,GAAsB,KAAK,EAAS,cAAA,EAAoB,GAAE,OAAO,EAAK,CAAC,IAAI,OAAO,MAAO,KAAI,KAAK,eAAe,EAAU,CAAC,KAAK,UAAU,OAAO,EAAY,cAAA,GAAoB,OAAO,GAAa,EAAY,cAAA,GAAoB,OAAO,IAAa,KAAM,GAAE,OAAO,EAAK,CAAC,QAAQ,MAAO,KAAI,KAAK,eAAe,GAAW,OAAO,EAAK,AAAE,CAAC,CAY1nC,SAAgB,EAAK,EAAM,CAAC,GAAK,CAAC,aAAW,aAAW,WAAS,aAAW,aAAW,WAAS,YAAU,cAAY,YAAU,cAAY,cAAY,cAAY,QAAM,OAAK,cAAY,YAAU,CAAC,EAAW,CAAC,EAAQ,EAAa,CAAC,GAAS,EAAM,CAAO,EAAS,EAAa,SAAS,GAAG,EAAa,OAAa,EAAO,GAAgB,CAAO,EAAU,GAAe,CAAO,EAAY,EAAiB,EAAW,CAAC,WAAS,YAAU,cAAY,YAAU,cAAY,aAAY,EAAC,EAAW,EAAY,EAAU,CACva,MADwa,GAAU,IAAI,CACthB,GADuhB,GAAa,EAAK,CACtiB,EAAS,OAAO,IAAM,EAAI,YAAY,IAAI,CAAC,GAAQ,AAAE,EAAC,CAAC,MAAM,IAAI,CAAC,cAAc,EAAI,AAAE,CAAE,EAAC,CAAE,EAAC,CAAqB,EAAK,IAAI,CAAC,0BAAyB,EAAK,MAAM,CAAC,OAAO,EAAE,QAAQ,EAAE,QAAM,WAAW,EAAU,WAAW,IAAI,SAAS,GAAG,WAAW,EAAE,WAAW,EAAQ,UAAU,SAAS,GAAG,EAAK,mBAAmB,EAAY,eAAe,SAAS,WAAW,QAAS,EAAC,SAAS,CAAY,EAAC,AAAE,gBAA6O,AAbxnB,GAA2C,IAA+E,IAAkD,CAAM,EAAA,oKAayN,EAAK,aAAa,CAAC,OAAO,GAAG,MAAM,IAAI,WAAW,OAAO,MAAM,OAAO,WAAW,MAAM,UAAS,EAAK,WAAU,EAAK,aAAY,EAAK,aAAY,EAAK,aAAY,EAAK,YAAY,OAAO,UAAU,QAAS,EAAC,EAAK,YAAY,cAAc,EAAoB,EAAK,CAAC,WAAW,CAAC,MAAM,OAAO,KAAK,EAAY,KAAK,yBAAwB,EAAK,QAAQ,CAAC,OAAO,MAAO,EAAC,aAAa,CAAC,OAAO,MAAO,EAAC,aAAa,EAAK,aAAa,UAAW,EAAC,YAAY,CAAC,MAAM,MAAM,KAAK,EAAY,QAAQ,aAAa,OAAO,cAAc,OAAO,aAAa,EAAK,aAAa,YAAY,OAAO,GAAO,EAAM,aAAa,MAAO,EAAC,UAAU,CAAC,MAAM,QAAQ,KAAK,EAAY,QAAQ,aAAa,OAAO,cAAc,OAAO,aAAa,EAAK,aAAa,UAAU,OAAO,GAAO,EAAM,aAAa,MAAO,EAAC,YAAY,CAAC,MAAM,SAAS,KAAK,EAAY,KAAK,QAAQ,CAAC,QAAQ,OAAO,SAAU,EAAC,aAAa,CAAC,QAAQ,OAAO,SAAU,EAAC,aAAa,EAAK,aAAa,YAAY,OAAO,GAAO,EAAM,aAAa,SAAS,EAAM,SAAU,EAAC,SAAS,CAAC,MAAM,OAAO,KAAK,EAAY,QAAQ,aAAa,OAAO,cAAc,OAAO,aAAa,EAAK,aAAa,SAAS,OAAO,GAAO,EAAM,aAAa,MAAO,EAAC,WAAW,CAAC,MAAM,SAAS,KAAK,EAAY,KAAK,QAAQ,CAAC,MAAM,KAAM,EAAC,aAAa,CAAC,MAAM,KAAM,EAAC,yBAAwB,EAAK,aAAa,EAAK,aAAa,WAAW,OAAO,GAAO,EAAM,aAAa,MAAO,EAQxvD,YAAY,CAAC,MAAM,UAAU,KAAK,EAAY,QAAQ,aAAa,OAAO,cAAc,OAAO,aAAa,EAAK,aAAa,YAAY,OAAO,GAAO,EAAM,aAAa,MAAO,EAAC,YAAY,CAAC,MAAM,UAAU,KAAK,EAAY,QAAQ,aAAa,OAAO,cAAc,OAAO,aAAa,EAAK,aAAa,YAAY,OAAO,GAAO,EAAM,aAAa,SAAS,EAAM,WAAY,EAAC,KAAK,CAAC,KAAK,EAAY,KAAK,SAAS,UAAW,EAAC,YAAY,CAAC,MAAM,UAAU,KAAK,EAAY,QAAQ,cAAa,CAAK,EAAC,MAAM,CAAC,KAAK,EAAY,MAAM,aAAa,EAAK,aAAa,KAAM,CAAC,EAAC,oBCrBhE,AAAzf,GAA8B,IAAU,0BAA0B,CAAE,EAAC,CAAc,GAAM,CAAE,EAAcY,EAAI,CAAC,4XAA6X,EAAc,EAAU,iBCCvD,SAASX,EAAqB,EAAU,GAAG,EAAS,CAAC,IAAM,EAAc,CAAE,EAA+H,MAApF,CAA1C,GAAmD,QAAQ,GAAS,GAAS,OAAO,OAAO,EAAc,EAAU,GAAS,CAAC,CAAQ,CAAe,2CAS7I,AAT/hB,GAAyD,IAAyI,IAAkE,IAA4B,CAAM,EAAgB,CAAC,UAAU,CAAC,OAAM,CAAK,CAAC,EAAOC,EAAW,CAAC,WAAY,EAAOC,EAAkB,eAAqBC,EAAkB,CAAC,UAAU,kBAAmB,EAAuOC,EAAY,CAAC,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAE,EAAC,KAAK,OAAQ,EAAOC,EAAW,CAAC,CAAC,QAAM,WAAS,GAAG,CAAC,IAAM,EAAO,EAAiB,EAAoB,CAAO,EAAW,GAAmC,EAAO,WAAiB,EAAa,EAAc,KAAK,CAAC,GAAG,EAAO,YAAW,GAAE,CAAC,KAAK,UAAU,EAAW,AAAC,EAAC,CAAC,MAAoB,GAAK,EAAoB,SAAS,CAAC,MAAM,EAAsB,UAAS,EAAC,AAAE,EAAOC,EAAS,EAAA,EAAsB,CAAOC,EAAS,CAAC,CAAC,QAAM,SAAO,KAAG,OAAK,SAAO,QAAM,QAAM,GAAG,EAAM,GAAG,CAAC,IAAI,EAAK,EAAM,EAAM,MAAM,CAAC,GAAG,EAAM,WAAW,EAAK,GAAmC,EAAM,YAAsC,UAAU,WAAW,EAAM,GAAsC,EAAM,aAAwC,EAAK,WAAW,EAAM,GAAmC,EAAM,YAAwC,eAAe,UAAU,GAAgC,EAAM,SAAU,CAAE,EAAOC,EAAuB,CAAC,EAAM,IAAe,EAAM,iBAAwB,EAAS,KAAK,IAAI,CAAC,EAAM,iBAAwB,EAAS,KAAK,IAAI,CAASC,GAAuB,EAAiB,SAAS,EAAM,EAAI,CAAC,GAAK,CAAC,eAAa,YAAU,CAAC,IAAe,CAAM,CAAC,QAAM,UAAA,EAAU,WAAS,UAAQ,YAAU,YAAU,YAAU,YAAU,GAAG,EAAU,CAAC,EAAS,EAAM,CAAM,CAAC,cAAY,aAAW,sBAAoB,kBAAgB,iBAAe,aAAU,kBAAgB,aAAW,WAAS,CAAC,GAAgB,CAAC,WAAA,EAAW,eAAe,YAAY,kBAAgB,UAAQ,kBAAA,CAAkB,EAAC,CAAO,EAAiB,EAAuB,EAAM,EAAS,CAAO,EAAK,EAAa,KAAK,CAAO,EAAgB,GAAa,CAAO,EAAsB,CAAE,EAAO,EAAkB,GAAsB,CAAC,MAAoB,GAAK,EAAY,CAAC,GAAG,GAA4C,EAAgB,SAAsB,EAAKH,EAAS,CAAC,QAAQ,EAAS,SAAQ,EAAM,SAAsB,EAAKD,EAAW,CAAC,MAAMD,EAAY,SAAsB,EAAK,EAAK,CAAC,KAAK,EAAU,aAAa,EAAU,SAAsB,EAAM,EAAO,EAAE,CAAC,GAAG,EAAU,GAAG,EAAgB,aAAa,EAAGF,EAAkB,GAAG,EAAsB,iBAAiBY,EAAU,EAAW,CAAC,iBAAiB,mBAAmB,YAA6B,mBAAiB,SAAS,YAAY,IAAI,GAA6B,EAAK,MAAM,CAAC,GAAG,CAAM,EAAC,GAAG,EAAqB,CAAC,kBAAkB,CAAC,uBAAA,EAA6B,CAAC,EAAC,EAAY,EAAe,CAAC,SAAS,CAAc,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,uBAAuB,MAAM,0BAA0B,MAAM,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,6CAA8C,EAAC,SAAS,SAAU,EAAC,AAAC,EAAC,CAAC,UAAU,iBAAiB,MAAM,CAAC,cAAe,EAAkB,mBAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,oBAAqB,EAAC,KAAK,EAAU,SAAS,CAAC,kBAAkB,CAAC,qBAAqB,iBAAkB,CAAC,EAAC,kBAAkB,MAAM,oBAAmB,EAAK,GAAG,EAAqB,CAAC,kBAAkB,CAAC,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,uBAAuB,MAAM,0BAA0B,MAAM,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,0CAA2C,EAAC,SAAS,SAAU,EAAC,AAAC,EAAC,AAAC,CAAC,EAAC,EAAY,EAAe,AAAC,EAAC,CAAc,EAAK,EAAO,IAAI,CAAC,UAAU,iBAAiB,eAAc,EAAsB,mBAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,mBAAmB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,mBAAmB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAE,EAAC,SAAS,CAAC,kBAAkB,CAAC,gBAAgB,yBAA0B,CAAC,EAAC,SAAsB,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,MAAM,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,2CAA4C,EAAC,SAAS,cAAe,EAAC,AAAC,EAAC,CAAC,UAAU,gBAAgB,MAAM,CAAC,cAAe,EAAkB,mBAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAmB,EAAC,KAAK,EAAU,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,AAAC,EAAC,AAAC,CAAC,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,AAAE,EAAC,CAAOH,GAAI,CAAC,kFAAkF,kFAAkF,6SAA6S,kKAAkK,2VAA2V,mlBAAmlB,+bAAgc,EAS3/O,EAAgB,EAAQF,GAAUE,GAAI,eAAe,GAAgB,EAAgB,EAAgB,YAAY,kBAAkB,EAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,GAAI,EAAC,EAAoB,EAAgB,CAAC,UAAU,CAAC,MAAM,OAAO,KAAK,EAAY,IAAK,EAAC,UAAU,CAAC,aAAa,UAAU,iBAAgB,EAAM,MAAM,QAAQ,KAAK,EAAY,MAAO,EAAC,UAAU,CAAC,aAAa,eAAe,iBAAgB,EAAM,MAAM,QAAQ,KAAK,EAAY,MAAO,EAAC,UAAU,CAAC,cAAa,EAAK,MAAM,UAAU,KAAK,EAAY,OAAQ,CAAC,EAAC,CAAC,EAAS,EAAgB,CAAC,CAAC,eAAc,EAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,IAAI,0GAA0G,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,IAAI,0GAA0G,OAAO,KAAO,CAAA,CAAE,CAAA,EAAC,CAAC,8BAA6B,CAAK,EAAC,GCTkF,SAAS,GAAqB,EAAU,GAAG,EAAS,CAAC,IAAM,EAAc,CAAE,EAAsF,MAArF,IAAU,QAAQ,GAAS,GAAS,OAAO,OAAO,EAAc,EAAU,GAAS,CAAC,CAAQ,CAAe,2DAUn3B,AAVvW,GAAyD,IAAsO,IAAkE,IAA4B,CAA0B,GAAsH,KAAyH,KAAwH,CAAM,GAAmB,EAASC,EAAc,CAAO,GAAc,EAASC,EAAS,CAAO,GAAW,CAAC,YAAY,YAAY,WAAY,EAAO,GAAkB,eAAqB,GAAkB,CAAC,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,iBAAkB,EAA8L,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAS,EAAO,GAAW,CAAC,CAAC,QAAM,WAAS,GAAG,CAAC,IAAM,EAAO,EAAiB,EAAoB,CAAO,EAAW,GAAO,EAAO,WAAiB,EAAa,EAAc,KAAK,CAAC,GAAG,EAAO,YAAW,GAAE,CAAC,KAAK,UAAU,EAAW,AAAC,EAAC,CAAC,MAAoB,GAAK,EAAoB,SAAS,CAAC,MAAM,EAAsB,UAAS,EAAC,AAAE,EAAO,GAAS,EAAO,OAAA,EAAsB,CAAO,GAAwB,CAAC,QAAQ,YAAY,MAAM,YAAY,OAAO,WAAY,EAAO,GAAS,CAAC,CAAC,SAAO,KAAG,QAAM,GAAG,EAAM,IAAU,CAAC,GAAG,EAAM,QAAQ,GAAwB,EAAM,UAAU,EAAM,SAAS,WAAY,GAAS,GAAuB,CAAC,EAAM,IAAe,EAAM,iBAAwB,EAAS,KAAK,IAAI,CAAC,EAAM,iBAAwB,EAAS,KAAK,IAAI,CAAS,GAAuB,EAAiB,SAAS,EAAM,EAAI,CAAC,IAAM,EAAY,EAAO,KAAK,CAAO,EAAW,GAAK,EAAkB,EAAgB,GAAa,CAAM,CAAC,eAAa,YAAU,CAAC,IAAe,CAAO,EAAkB,GAAsB,CAAM,CAAC,QAAM,UAAA,EAAU,WAAS,UAAQ,GAAG,EAAU,CAAC,GAAS,EAAM,CAAM,CAAC,cAAY,aAAW,uBAAoB,kBAAgB,iBAAe,YAAU,kBAAgB,aAAW,WAAS,CAAC,GAAgB,CAAC,cAAW,eAAe,YAAY,IAAI,EAAW,UAAQ,oBAAkB,EAAC,CAAO,EAAiB,GAAuB,EAAM,EAAS,CAAO,EAAsB,CAAA,CAAuB,EAAO,EAAkB,EAAG,GAAkB,GAAG,EAAsB,CAAC,MAAoB,GAAK,EAAY,CAAC,GAAG,GAAU,EAAgB,SAAsB,EAAK,GAAS,CAAC,QAAQ,EAAS,SAAQ,EAAM,SAAsB,EAAK,GAAW,CAAC,MAAM,GAAY,SAAsB,EAAM,EAAO,OAAO,CAAC,GAAG,EAAU,GAAG,EAAgB,UAAU,EAAG,EAAkB,iBAAiBC,EAAU,EAAW,CAAC,mBAAmB,UAA2B,mBAAiB,SAAS,YAAY,IAAI,EAAW,MAAM,CAAC,gBAAgB,qBAAqB,GAAG,CAAM,EAAC,GAAG,GAAqB,CAAC,UAAU,CAAC,mBAAmB,QAAS,EAAC,UAAU,CAAC,mBAAmB,OAAQ,CAAC,EAAC,EAAY,EAAe,CAAC,SAAS,CAAc,EAAM,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,aAA8B,mBAAiB,SAAS,YAAY,SAAS,CAAc,EAAK,EAAK,CAAC,KAAK,CAAC,UAAU,WAAY,EAAC,aAAY,EAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB,EAAK,EAAI,CAAC,GAAG,IAAI,UAAU,8BAA8B,mBAAmB,2BAA2B,YAAY,yBAAyB,KAAK,gBAAgB,gBAAgB,IAAI,eAAe,IAAqB,mBAAiB,SAAS,YAAY,IAAI;;;;;;;;;;;;;;;;;;;;;EAAonQ,MAAM,iBAAiB,oBAAmB,CAAK,EAAC,AAAC,EAAC,CAAc,EAAM,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAA4B,mBAAiB,SAAS,YAAY,SAAS,CAAc,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,MAAM,0BAA0B,MAAM,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,0CAA2C,EAAC,SAAS,SAAU,EAAC,AAAC,EAAC,CAAC,UAAU,gBAAgB,MAAM,CAAC,cAAe,EAAkB,mBAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,iCAAiC,2BAA2B,gCAAgC,MAAO,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,CAAc,EAAK,EAAO,IAAI,CAAC,UAAU,gBAAiC,mBAAiB,SAAS,YAAY,SAAsB,EAAM,EAAO,IAAI,CAAC,UAAU,eAAgC,mBAAiB,SAAS,YAAY,SAAS,CAAc,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,MAAM,0BAA0B,MAAM,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,6CAA8C,EAAC,SAAsB,EAAK,EAAK,CAAC,KAAK,CAAC,UAAU,WAAY,EAAC,aAAY,EAAK,OAAO,YAAY,cAAa,EAAM,QAAQ,YAAY,cAAa,EAAM,SAAsB,EAAK,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,OAAQ,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,CAAC,UAAU,iBAAiB,MAAM,CAAC,cAAe,EAAkB,mBAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,oBAAqB,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAQ,GAAG,GAAqB,CAAC,UAAU,CAAC,MAAM,OAAQ,EAAC,UAAU,CAAC,OAAO,UAAU,GAAmB,OAAO,QAAQ,wBAAwB,GAAG,GAAmB,GAAG,GAAG,MAAM,GAAmB,QAAQ,KAAK,GAAG,KAAK,EAAE,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,EAAE,EAAG,CAAC,EAAC,EAAY,EAAe,CAAC,SAAsB,EAAK,EAA8B,CAAC,UAAU,0BAA2C,mBAAiB,SAAS,sBAAsB,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAKF,EAAc,CAAC,UAAU,UAAU,OAAO,OAAO,GAAG,YAAY,WAAU,EAAK,SAAS,YAAY,UAAU,eAAe,MAAM,CAAC,MAAM,MAAO,EAAC,MAAM,OAAO,UAAU,qCAAsC,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,MAAM,0BAA0B,MAAM,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,6CAA8C,EAAC,SAAsB,EAAK,EAAK,CAAC,KAAK,gCAAgC,aAAY,EAAK,OAAO,YAAY,cAAa,EAAK,QAAQ,YAAY,cAAa,EAAM,SAAsB,EAAK,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,SAAU,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,CAAC,UAAU,iBAAiB,MAAM,CAAC,cAAe,EAAkB,mBAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,oBAAqB,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,CAAc,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,uBAAuB,MAAM,0BAA0B,MAAM,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,6CAA8C,EAAC,SAAsB,EAAK,EAAK,CAAC,KAAK,8BAA8B,aAAY,EAAK,OAAO,YAAY,cAAa,EAAK,QAAQ,YAAY,cAAa,EAAM,SAAsB,EAAK,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,cAAe,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,CAAC,UAAU,iBAAiB,MAAM,CAAC,cAAe,EAAkB,mBAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,oBAAqB,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,AAAC,CAAC,EAAC,AAAC,EAAC,AAAC,CAAC,EAAC,CAAc,EAAM,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAA4B,mBAAiB,SAAS,YAAY,SAAS,CAAc,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,MAAM,0BAA0B,MAAM,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,0CAA2C,EAAC,SAAS,SAAU,EAAC,AAAC,EAAC,CAAC,UAAU,gBAAgB,MAAM,CAAC,cAAe,EAAkB,mBAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,iCAAiC,2BAA2B,gCAAgC,MAAO,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,CAAc,EAAM,EAAO,IAAI,CAAC,UAAU,iBAAkC,mBAAiB,SAAS,YAAY,SAAS,CAAc,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,MAAM,0BAA0B,MAAM,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,6CAA8C,EAAC,SAAsB,EAAK,EAAK,CAAC,KAAK,CAAC,UAAU,WAAY,EAAC,aAAY,EAAK,OAAO,YAAY,cAAa,EAAM,QAAQ,YAAY,cAAa,EAAM,SAAsB,EAAK,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,cAAe,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,CAAC,UAAU,gBAAgB,MAAM,CAAC,cAAe,EAAkB,mBAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,oBAAqB,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,CAAc,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,MAAM,0BAA0B,MAAM,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,6CAA8C,EAAC,SAAsB,EAAK,EAAK,CAAC,KAAK,CAAC,UAAU,WAAY,EAAC,aAAY,EAAK,OAAO,YAAY,cAAa,EAAM,QAAQ,YAAY,cAAa,EAAM,SAAsB,EAAK,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,oBAAqB,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,CAAC,UAAU,iBAAiB,MAAM,CAAC,cAAe,EAAkB,mBAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,oBAAqB,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,CAAc,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,MAAM,0BAA0B,MAAM,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,6CAA8C,EAAC,SAAsB,EAAK,EAAK,CAAC,KAAK,CAAC,UAAU,WAAY,EAAC,aAAY,EAAK,OAAO,YAAY,cAAa,EAAM,QAAQ,YAAY,cAAa,EAAM,SAAsB,EAAK,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,gBAAiB,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,CAAC,UAAU,iBAAiB,MAAM,CAAC,cAAe,EAAkB,mBAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,oBAAqB,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,CAAc,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,uBAAuB,MAAM,0BAA0B,MAAM,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,6CAA8C,EAAC,SAAsB,EAAK,EAAK,CAAC,KAAK,CAAC,UAAU,WAAY,EAAC,aAAY,EAAK,OAAO,YAAY,cAAa,EAAK,QAAQ,YAAY,cAAa,EAAM,SAAsB,EAAK,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,eAAgB,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,CAAC,UAAU,gBAAgB,MAAM,CAAC,cAAe,EAAkB,mBAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,oBAAqB,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,AAAC,CAAC,EAAC,AAAC,CAAC,EAAC,CAAc,EAAM,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAA4B,mBAAiB,SAAS,YAAY,SAAS,CAAc,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,MAAM,0BAA0B,MAAM,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,0CAA2C,EAAC,SAAS,WAAY,EAAC,AAAC,EAAC,CAAC,UAAU,gBAAgB,MAAM,CAAC,cAAe,EAAkB,mBAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,iCAAiC,2BAA2B,gCAAgC,MAAO,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,CAAc,EAAM,EAAO,IAAI,CAAC,UAAU,gBAAiC,mBAAiB,SAAS,YAAY,SAAS,CAAc,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,MAAM,0BAA0B,MAAM,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,6CAA8C,EAAC,SAAsB,EAAK,EAAK,CAAC,KAAK,6CAA6C,aAAY,EAAK,OAAO,YAAY,cAAa,EAAK,QAAQ,YAAY,cAAa,EAAM,SAAsB,EAAK,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,UAAW,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,CAAC,UAAU,iBAAiB,MAAM,CAAC,cAAe,EAAkB,mBAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,oBAAqB,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,CAAc,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,MAAM,0BAA0B,MAAM,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,6CAA8C,EAAC,SAAsB,EAAK,EAAK,CAAC,KAAK,mCAAmC,aAAY,EAAK,OAAO,YAAY,cAAa,EAAK,QAAQ,YAAY,cAAa,EAAM,SAAsB,EAAK,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,SAAU,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,CAAC,UAAU,iBAAiB,MAAM,CAAC,cAAe,EAAkB,mBAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,oBAAqB,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,AAAC,CAAC,EAAC,AAAC,CAAC,EAAC,AAAC,CAAC,EAAC,CAAc,EAAM,EAAO,IAAI,CAAC,UAAU,iBAAiB,eAAc,EAAK,mBAAmB,YAA6B,mBAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,qBAAqB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,KAAM,EAAC,SAAS,CAAc,EAAM,EAAO,IAAI,CAAC,UAAU,gBAAiC,mBAAiB,SAAS,YAAY,SAAS,CAAc,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,2DAA2D,0BAA0B,MAAM,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,6CAA8C,EAAC,SAAS,GAAO,EAAC,AAAC,EAAC,CAAC,UAAU,iBAAiB,MAAM,CAAC,sBAAuB,EAAkB,mBAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,iCAAiC,2BAA2B,gCAAgC,MAAO,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,CAAc,EAAK,EAAO,IAAI,CAAC,UAAU,gBAAiC,mBAAiB,SAAS,YAAY,SAAsB,EAAK,EAA0B,CAAC,SAAsB,EAAK,EAA8B,CAAC,UAAU,0BAA0B,kBAAiB,EAAK,kBAAiB,EAAsB,mBAAiB,SAAS,sBAAsB,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAKC,EAAS,CAAC,MAAM,qBAAqB,KAAK,CAAC,WAAW,2DAA2D,SAAS,OAAO,cAAc,MAAM,WAAW,KAAM,EAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,YAAY,OAAO,WAAW,OAAO,aAAY,EAAM,WAAU,EAAM,aAAY,EAAK,aAAY,EAAM,UAAS,EAAK,aAAY,EAAK,WAAW,MAAM,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,2DAA2D,0BAA0B,MAAM,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,6CAA8C,EAAC,SAAS,WAAY,EAAC,AAAC,EAAC,CAAC,UAAU,iBAAiB,MAAM,CAAC,sBAAuB,EAAkB,mBAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,iCAAiC,2BAA2B,gCAAgC,MAAO,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,AAAC,CAAC,EAAC,CAAc,EAAK,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAyB,mBAAiB,SAAS,WAAY,EAAC,AAAC,CAAC,EAAC,AAAC,CAAC,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,AAAE,EAAC,CAAO,GAAI,CAAC,kFAAkF,gFAAgF,sRAAsR,mSAAmS,sHAAsH,6RAA6R,khBAAkhB,6QAA6Q,6RAA6R,wGAAwG,6TAA6T,kUAAkU,0SAA0S,kRAAkR,sSAAsS,wGAAwG,4TAA4T,iEAAiE,iEAAiE,+FAA+F,oHAAoH,8JAA8J,GAAA,EAAmB,+bAAgc,EAUtt/B,EAAgB,EAAQ,GAAU,GAAI,eAAe,IAAgB,EAAgB,EAAgB,YAAY,SAAS,EAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,IAAK,EAAC,EAAoB,EAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,WAAY,EAAC,aAAa,CAAC,UAAU,SAAS,OAAQ,EAAC,MAAM,UAAU,KAAK,EAAY,IAAK,CAAC,EAAC,CAAC,EAAS,EAAgB,CAAC,CAAC,eAAc,EAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,IAAI,0GAA0G,OAAO,KAAM,EAAC,CAAC,OAAO,gBAAgB,OAAO,SAAS,IAAI,sEAAwE,CAAA,CAAC,EAAC,GAAG,GAAmB,GAAG,GAAc,GAAG,EAAA,GAA0C,AAAC,EAAC,CAAC,8BAA6B,CAAK,EAAC"}