{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/yQBudOZJfqOu99rJSn6p/Ticker.js", "ssg:https://framerusercontent.com/modules/tW1ExjbbJRt9YcZ0Gyxk/7xLQ6of7kXWmBUVuRiYG/Spotify.js", "ssg:https://framerusercontent.com/modules/cZq6cd711B58xw4zZKqL/Iy1122Yf1g6lVDGYBuUy/MRjeUKLwg.js", "ssg:https://framerusercontent.com/modules/ExwxPRPVkwZy9SL0sicG/ZqemWt77KMDFgjHBXa1R/N3K3QZzlK.js", "ssg:https://framerusercontent.com/modules/GiBaIEjxaDRU3FhqBfdA/ibIjGQyFYFpTu35a46Ha/mXBStQ3Xs.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup}from\"framer-motion\";import{resize}from\"@motionone/dom\";import{wrap}from\"popmotion\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export default function Ticker(props){/* Props */ const{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */ const isCanvas=RenderTarget.current()===RenderTarget.canvas;const hasChildren=Children.count(slots)>0;const isHorizontal=direction===\"left\"||direction===\"right\";/* Refs and State */ const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/ createRef(),/*#__PURE__*/ createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */ let clonedChildren=[];let dupedChildren=[];/* Duplicate value */ let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=20;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;opacity=1;}/* Measure parent and child */ const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);/* Add refs to first and last child */ if(hasChildren){if(!isCanvas){useLayoutEffect(()=>{measure();},[]);/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */ let initialResize=useRef(true);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){measure();}initialResize.current=false;});},[]);}clonedChildren=Children.map(slots,(child,index)=>{var ref,ref1,ref2,ref3;let ref4;if(index===0){ref4=childrenRef[0];}if(index===slots.length-1){ref4=childrenRef[1];}return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{style:{display:\"contents\"},children:/*#__PURE__*/ cloneElement(child,{ref:ref4,style:{...(ref=child.props)===null||ref===void 0?void 0:ref.style,width:widthType?(ref1=child.props)===null||ref1===void 0?void 0:ref1.width:\"100%\",height:heightType?(ref2=child.props)===null||ref2===void 0?void 0:ref2.height:\"100%\",flexShrink:0}},(ref3=child.props)===null||ref3===void 0?void 0:ref3.children)})});});}for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(slots,(child,childIndex)=>{var ref,ref1,ref2,ref3;return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{style:{display:\"contents\"},children:/*#__PURE__*/ cloneElement(child,{key:i+\" \"+childIndex,style:{...(ref=child.props)===null||ref===void 0?void 0:ref.style,width:widthType?(ref1=child.props)===null||ref1===void 0?void 0:ref1.width:\"100%\",height:heightType?(ref2=child.props)===null||ref2===void 0?void 0:ref2.height:\"100%\",flexShrink:0}},(ref3=child.props)===null||ref3===void 0?void 0:ref3.children)})});}),];}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const transformRef=useRef(null);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();useAnimationFrame(t=>{if(!transformRef.current||!animateToValue||isReducedMotion){return;}/**\n         * In case this animation is delayed from starting because we're running a bunch\n         * of other work, we want to set an initial time rather than counting from 0.\n         * That ensures that if the animation is delayed, it starts from the first frame\n         * rather than jumping.\n         */ if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);/* Direction */ if(direction===\"left\"){transformRef.current.style.transform=`translateX(-${xOrY.current}px)`;}if(direction===\"right\"){transformRef.current.style.transform=`translateX(${xOrY.current}px)`;}if(direction===\"top\"){transformRef.current.style.transform=`translateY(-${xOrY.current}px)`;}if(direction===\"bottom\"){transformRef.current.style.transform=`translateY(${xOrY.current}px)`;}prevTime.current=t;});/* Fades */ const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */ if(!hasChildren){return /*#__PURE__*/ _jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/ _jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/ _jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/ _jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/ _jsx(\"section\",{style:{...containerStyle,opacity:opacity,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\"},ref:parentRef,children:/*#__PURE__*/ _jsxs(\"ul\",{style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&-animateToValue,left:direction===\"right\"&&-animateToValue,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style},ref:transformRef,onMouseEnter:()=>isHover.current=true,onMouseLeave:()=>isHover.current=false,children:[clonedChildren,dupedChildren]})});};/* Default Properties */ Ticker.defaultProps={gap:10,padding:10,transitionControl:{type:\"tween\",ease:\"linear\",duration:10},sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */ addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\",],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:.5,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */ const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */ const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */ const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import{useCallback}from\"react\";const urlRegex=/(https?:\\/\\/[^ ]*)/;/**\n * SPOTIFY\n *\n * @framerIntrinsicWidth 280\n * @framerIntrinsicHeight 350\n */ export function Spotify(props){const{theme,url:sourceUrl}=props;const createEmbedUrl=useCallback(()=>{if(sourceUrl.length<5)return null;// If someone pastes the embed code lets still try to render it\nconst strippedUrl=sourceUrl.includes(\"iframe\")?sourceUrl.match(urlRegex)[1].replace(`\"`,\"\"):sourceUrl;const url=new URL(strippedUrl);// Add embed prefix if needed\nif(!url.pathname.includes(\"embed\"))url.pathname=`/embed${url.pathname}`;// Remove params\nurl.search=`theme=${theme}`;// @ben you could add all other bools in here like\n// url.search = `theme=${theme}&dog=${cat}`\nreturn url.toString();},[theme,sourceUrl]);const identifier=createEmbedUrl();return(/*#__PURE__*/ _jsx(\"iframe\",{style:{height:\"100%\",width:\"100%\"},frameBorder:0,src:identifier}));}Spotify.defaultProps={url:\"https://open.spotify.com/album/31qVWUdRrlb8thMvts0yYL?si=Jl-8Mnc3RNGuOtqRC7NXVg\",width:280,height:350,theme:1};addPropertyControls(Spotify,{url:{type:ControlType.String,title:\"URL\"},theme:{type:ControlType.Enum,displaySegmentedControl:true,options:[1,0],optionTitles:[\"On\",\"Off\"]}});\nexport const __FramerMetadata__ = {\"exports\":{\"Spotify\":{\"type\":\"reactComponent\",\"name\":\"Spotify\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"350\",\"framerIntrinsicWidth\":\"280\"}}}}\n//# sourceMappingURL=./Spotify.map", "// Generated by Framer (41c59c7)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/f8BAhUiI14cfIPNudoDS/OayWLjbAUo8Qg4qMMHK6/NDmuOrlzm.js\";const enabledGestures={f5iOZjicx:{hover:true}};const cycleOrder=[\"f5iOZjicx\"];const serializationHash=\"framer-rRzkp\";const variantClassNames={f5iOZjicx:\"framer-v-1nsyb5y\"};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={duration:0,type:\"tween\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({background,height,id,image,link,title,width,...props})=>{var _ref,_ref1,_ref2;return{...props,cfQpReN3l:(_ref=background!==null&&background!==void 0?background:props.cfQpReN3l)!==null&&_ref!==void 0?_ref:\"rgb(158, 255, 205)\",fjCLWJ9ZN:(_ref1=image!==null&&image!==void 0?image:props.fjCLWJ9ZN)!==null&&_ref1!==void 0?_ref1:{src:\"https://framerusercontent.com/images/fPriV0fqiKdX3TI1ZgjTgKMf1EA.png\"},PufR35eQg:(_ref2=title!==null&&title!==void 0?title:props.PufR35eQg)!==null&&_ref2!==void 0?_ref2:\"EQT Ventures\",VF9a0DDNT:link!==null&&link!==void 0?link:props.VF9a0DDNT};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,PufR35eQg,fjCLWJ9ZN,cfQpReN3l,VF9a0DDNT,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"f5iOZjicx\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:VF9a0DDNT,openInNewTab:true,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1nsyb5y\",className,classNames)} framer-s0n74d`,\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"f5iOZjicx\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-8d488548-93bd-4ba6-84a6-b83856ce8099, rgba(0, 0, 0, 0.04))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-e15c6e73-18ad-462b-bd37-afed3dce332d, rgba(17, 17, 18, 0.05))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style},variants:{\"f5iOZjicx-hover\":{backgroundColor:cfQpReN3l}},...addPropertyOverrides({\"f5iOZjicx-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:200,pixelWidth:200,sizes:\"60px\",...toResponsiveImage(fjCLWJ9ZN)},className:\"framer-ykqen7\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"a3V5CafMz\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-1dfe004\",\"data-styles-preset\":\"NDmuOrlzm\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-1ee0f094-645d-4d86-a4ef-e7dc53764ad5, rgb(0, 0, 0)))\"},children:\"EQT Ventures\"})}),className:\"framer-12gfgtl\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"TH8VF9t7o\",style:{\"--extracted-gdpscs\":\"var(--token-1ee0f094-645d-4d86-a4ef-e7dc53764ad5, rgb(0, 0, 0))\",\"--framer-link-text-decoration\":\"underline\"},text:PufR35eQg,verticalAlignment:\"top\",withExternalLayout:true})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-rRzkp.framer-s0n74d, .framer-rRzkp .framer-s0n74d { display: block; }\",\".framer-rRzkp.framer-1nsyb5y { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 8px 24px 8px 8px; position: relative; text-decoration: none; width: min-content; }\",\".framer-rRzkp .framer-ykqen7 { flex: none; height: 60px; overflow: visible; position: relative; width: 60px; }\",\".framer-rRzkp .framer-12gfgtl { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-rRzkp.framer-1nsyb5y { gap: 0px; } .framer-rRzkp.framer-1nsyb5y > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-rRzkp.framer-1nsyb5y > :first-child { margin-left: 0px; } .framer-rRzkp.framer-1nsyb5y > :last-child { margin-right: 0px; } }\",...sharedStyle.css,'.framer-rRzkp[data-border=\"true\"]::after, .framer-rRzkp [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 76\n * @framerIntrinsicWidth 242.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"HaE_l_pOY\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"PufR35eQg\":\"title\",\"fjCLWJ9ZN\":\"image\",\"cfQpReN3l\":\"background\",\"VF9a0DDNT\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerMRjeUKLwg=withCSS(Component,css,\"framer-rRzkp\");export default FramerMRjeUKLwg;FramerMRjeUKLwg.displayName=\"InvestorCard\";FramerMRjeUKLwg.defaultProps={height:76,width:242.5};addPropertyControls(FramerMRjeUKLwg,{PufR35eQg:{defaultValue:\"EQT Ventures\",displayTextArea:false,title:\"Title\",type:ControlType.String},fjCLWJ9ZN:{__defaultAssetReference:\"fPriV0fqiKdX3TI1ZgjTgKMf1EA.png\",title:\"Image\",type:ControlType.ResponsiveImage},cfQpReN3l:{defaultValue:\"rgb(158, 255, 205)\",title:\"Background\",type:ControlType.Color},VF9a0DDNT:{title:\"Link\",type:ControlType.Link}});addFonts(FramerMRjeUKLwg,[{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://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerMRjeUKLwg\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"PufR35eQg\\\":\\\"title\\\",\\\"fjCLWJ9ZN\\\":\\\"image\\\",\\\"cfQpReN3l\\\":\\\"background\\\",\\\"VF9a0DDNT\\\":\\\"link\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"HaE_l_pOY\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"242.5\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"76\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (6266459)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/4pxcIt6NAcibacE3sb6z/bylAlQoXk68kpECb2P2t/AmNwjWP4r.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/lo1KS0mTwSbqQ02RYM7X/FAalU4QGNNCcWnvkFeIl/pko1pRTEB.js\";const serializationHash=\"framer-snGa5\";const variantClassNames={pZuwDjjG6:\"framer-v-1u8km6x\"};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 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 getProps=({content,height,id,image,title,width,...props})=>{var _ref,_ref1;return{...props,VUh6lLktF:(_ref=content!==null&&content!==void 0?content:props.VUh6lLktF)!==null&&_ref!==void 0?_ref:\"Content\",xMQuYkYHY:image!==null&&image!==void 0?image:props.xMQuYkYHY,yPYBbbdqX:(_ref1=title!==null&&title!==void 0?title:props.yPYBbbdqX)!==null&&_ref1!==void 0?_ref1:\"Play\"};};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,yPYBbbdqX,VUh6lLktF,xMQuYkYHY,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"pZuwDjjG6\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1u8km6x\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"pZuwDjjG6\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1j5ye2u\",layoutDependency:layoutDependency,layoutId:\"aGJIg6QB7\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+0),sizes:\"140px\",...toResponsiveImage(xMQuYkYHY)},className:\"framer-k2nwc7\",layoutDependency:layoutDependency,layoutId:\"Jjqvc0o7n\"})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11n3c5n\",layoutDependency:layoutDependency,layoutId:\"BzzwvigQf\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1jkb1g2\",\"data-styles-preset\":\"pko1pRTEB\",children:\"Play\"})}),className:\"framer-oliti8\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"J9KOxHJ9S\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:yPYBbbdqX,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1uxh02h\",\"data-styles-preset\":\"AmNwjWP4r\",children:\"We don\u2019t just want to be another boring software company. We want to create an experience around Kive that makes people feel things. We want to help users feel inspired and be creative in their work. We do right by our users and we keep their interests in mind when making decisions.\"})}),className:\"framer-i6gvqd\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"jEpj0pR3j\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:VUh6lLktF,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-snGa5.framer-1s006le, .framer-snGa5 .framer-1s006le { display: block; }\",\".framer-snGa5.framer-1u8km6x { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: 251px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 676px; }\",\".framer-snGa5 .framer-1j5ye2u { 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: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-snGa5 .framer-k2nwc7 { flex: none; height: 92px; position: relative; width: 140px; }\",\".framer-snGa5 .framer-11n3c5n { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-snGa5 .framer-oliti8 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-snGa5 .framer-i6gvqd { flex: none; height: auto; max-width: 500px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-snGa5.framer-1u8km6x, .framer-snGa5 .framer-1j5ye2u, .framer-snGa5 .framer-11n3c5n { gap: 0px; } .framer-snGa5.framer-1u8km6x > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-snGa5.framer-1u8km6x > :first-child, .framer-snGa5 .framer-1j5ye2u > :first-child, .framer-snGa5 .framer-11n3c5n > :first-child { margin-top: 0px; } .framer-snGa5.framer-1u8km6x > :last-child, .framer-snGa5 .framer-1j5ye2u > :last-child, .framer-snGa5 .framer-11n3c5n > :last-child { margin-bottom: 0px; } .framer-snGa5 .framer-1j5ye2u > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-snGa5 .framer-11n3c5n > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 251\n * @framerIntrinsicWidth 676\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"yPYBbbdqX\":\"title\",\"VUh6lLktF\":\"content\",\"xMQuYkYHY\":\"image\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerN3K3QZzlK=withCSS(Component,css,\"framer-snGa5\");export default FramerN3K3QZzlK;FramerN3K3QZzlK.displayName=\"Values New2\";FramerN3K3QZzlK.defaultProps={height:251,width:676};addPropertyControls(FramerN3K3QZzlK,{yPYBbbdqX:{defaultValue:\"Play\",displayTextArea:false,title:\"Title\",type:ControlType.String},VUh6lLktF:{defaultValue:\"Content\",displayTextArea:false,title:\"Content\",type:ControlType.String},xMQuYkYHY:{description:\"\",title:\"Image\",type:ControlType.ResponsiveImage}});addFonts(FramerN3K3QZzlK,[{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\":\"FramerN3K3QZzlK\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"yPYBbbdqX\\\":\\\"title\\\",\\\"VUh6lLktF\\\":\\\"content\\\",\\\"xMQuYkYHY\\\":\\\"image\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"251\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"676\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./N3K3QZzlK.map", "// Generated by Framer (46c9ef7)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useQueryData,useRouter,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/yQBudOZJfqOu99rJSn6p/Ticker.js\";import{Spotify}from\"https://framerusercontent.com/modules/tW1ExjbbJRt9YcZ0Gyxk/7xLQ6of7kXWmBUVuRiYG/Spotify.js\";import CareerHeading from\"#framer/local/canvasComponent/BG9VG33N6/BG9VG33N6.js\";import PerkCard from\"#framer/local/canvasComponent/GD49SUwEK/GD49SUwEK.js\";import InvestorCard from\"#framer/local/canvasComponent/MRjeUKLwg/MRjeUKLwg.js\";import ValuesNew2 from\"#framer/local/canvasComponent/N3K3QZzlK/N3K3QZzlK.js\";import CareerHeader from\"#framer/local/canvasComponent/odEwyEzgE/odEwyEzgE.js\";import Footer from\"#framer/local/canvasComponent/U4rLkGgl7/U4rLkGgl7.js\";import Position from\"#framer/local/canvasComponent/uMfsAjWCz/uMfsAjWCz.js\";import Jobs from\"#framer/local/collection/IxK_M1lgr/IxK_M1lgr.js\";import PerksBenefits from\"#framer/local/collection/KnyNoxsla/KnyNoxsla.js\";import*as sharedStyle from\"#framer/local/css/MvnS5TzFe/MvnS5TzFe.js\";import metadataProvider from\"#framer/local/webPageMetadata/mXBStQ3Xs/mXBStQ3Xs.js\";const CareerHeaderFonts=getFonts(CareerHeader);const TickerFonts=getFonts(Ticker);const CareerHeadingFonts=getFonts(CareerHeading);const PositionFonts=getFonts(Position);const PerkCardFonts=getFonts(PerkCard);const ValuesNew2Fonts=getFonts(ValuesNew2);const InvestorCardFonts=getFonts(InvestorCard);const SpotifyFonts=getFonts(Spotify);const ContainerWithFX=withFX(Container);const FooterFonts=getFonts(Footer);const breakpoints={kqOHcehtA:\"(max-width: 809px)\",l8vDmIB6O:\"(min-width: 1400px)\",YOqobnoC9:\"(min-width: 810px) and (max-width: 1399px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-66k3q\";const variantClassNames={kqOHcehtA:\"framer-v-5arzxn\",l8vDmIB6O:\"framer-v-1b684ma\",YOqobnoC9:\"framer-v-jd6a7o\"};const equals=(a,b)=>{return typeof a===\"string\"&&typeof b===\"string\"?a.toLowerCase()===b.toLowerCase():a===b;};const negate=value=>{return!value;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"l8vDmIB6O\",Phone:\"kqOHcehtA\",Tablet:\"YOqobnoC9\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"l8vDmIB6O\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,hKOCX0Y2fvqZxEZWdq,LyRTawoM_vqZxEZWdq,eKFFYnQV9vqZxEZWdq,kUVPat2mpvqZxEZWdq,idvqZxEZWdq,uNriG5TG3I6M3wKd1c,dXJZifROXI6M3wKd1c,HYoHgmm3oI6M3wKd1c,qQRy7xr4qI6M3wKd1c,idI6M3wKd1c,uNriG5TG3ww8jg0mQI,dXJZifROXww8jg0mQI,HYoHgmm3oww8jg0mQI,qQRy7xr4qww8jg0mQI,idww8jg0mQI,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-66k3q`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-66k3q`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const router=useRouter();const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"l8vDmIB6O\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1b684ma\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-f5m1k0\",\"data-framer-name\":\"Gradient 1\",name:\"Gradient 1\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1krsi9y\",\"data-framer-name\":\"Gradient 2\",name:\"Gradient 2\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-15u58l5\",\"data-framer-name\":\"Gradient 3\",name:\"Gradient 3\"}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"h_6gBoRE9\"},implicitPathVariables:undefined},{href:{webPageId:\"h_6gBoRE9\"},implicitPathVariables:undefined},{href:{webPageId:\"h_6gBoRE9\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-16ovp8v-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kqOHcehtA:{bwQK66B5g:resolvedLinks[1],variant:\"Tf95RxxUB\"},YOqobnoC9:{bwQK66B5g:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(CareerHeader,{bwQK66B5g:resolvedLinks[0],height:\"100%\",id:\"VP_m0q9se\",layoutId:\"VP_m0q9se\",style:{width:\"100%\"},variant:\"G_hIApKBBPsFGZ6yre\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mz4a5p-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:0,overflow:false},gap:32,height:\"100%\",hoverFactor:.5,id:\"QoQsNnoLX\",layoutId:\"QoQsNnoLX\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qr5db5\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-elle8r\",\"data-styles-preset\":\"MvnS5TzFe\",style:{\"--framer-text-color\":\"var(--token-1ee0f094-645d-4d86-a4ef-e7dc53764ad5, rgb(0, 0, 0))\"},children:\"join\"})}),className:\"framer-169h9cx\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1d9uhk5\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-elle8r\",\"data-styles-preset\":\"MvnS5TzFe\",style:{\"--framer-text-color\":\"var(--token-1ee0f094-645d-4d86-a4ef-e7dc53764ad5, rgb(0, 0, 0))\"},children:\"the\"})}),className:\"framer-csmrwq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-bovr7p\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-elle8r\",\"data-styles-preset\":\"MvnS5TzFe\",style:{\"--framer-text-color\":\"var(--token-1ee0f094-645d-4d86-a4ef-e7dc53764ad5, rgb(0, 0, 0))\"},children:\"team\"})}),className:\"framer-vs1htu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:256,intrinsicWidth:256,pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/DrfdtBpIWGc8IGBVK4pj51XKKI.gif\"},className:\"framer-q3eabn\",\"data-framer-name\":\"Kive_Banana\",name:\"Kive_Banana\"})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fbkv5e\",\"data-framer-name\":\"Main\",name:\"Main\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kqOHcehtA:{y:251.23201438848923},YOqobnoC9:{y:810.2320143884892}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:140,width:\"100vw\",y:794.2320143884892,children:/*#__PURE__*/_jsx(Container,{className:\"framer-tf5u8l-container\",children:/*#__PURE__*/_jsx(CareerHeading,{BgmmM8DTq:\"Building the best workplace for creative hearts, technical minds and ambitious souls.\",height:\"100%\",id:\"KU2G8gNu7\",KYp7xDHkC:\"var(--token-1ee0f094-645d-4d86-a4ef-e7dc53764ad5, rgb(0, 0, 0))\",layoutId:\"KU2G8gNu7\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kqOHcehtA:{y:401.23201438848923},YOqobnoC9:{y:960.2320143884892}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:140,width:\"100vw\",y:944.2320143884892,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gkiohr-container\",children:/*#__PURE__*/_jsx(CareerHeading,{BgmmM8DTq:\"We're a small team of highly ambitious, humble, curious and optimistic people on a mission to make the world more creative and creativity more collaborative.\",height:\"100%\",id:\"i6ZQ2SPXH\",KYp7xDHkC:\"var(--token-5d008fe8-dbcc-4ea6-a097-a35459dc8095, rgba(0, 0, 0, 0.25))\",layoutId:\"i6ZQ2SPXH\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kxlpcr-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"flex-start\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:0,overflow:false},gap:16,height:\"100%\",hoverFactor:.5,id:\"BL4CFz_hc\",layoutId:\"BL4CFz_hc\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:768,pixelHeight:1024,pixelWidth:768,src:\"https://framerusercontent.com/images/GrlKFGvC8ZevInl6xK2TXtfetgM.jpeg\"},className:\"framer-1nax2g1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:384,pixelHeight:1024,pixelWidth:768,sizes:\"300px\",src:\"https://framerusercontent.com/images/LjDX69bMnv4ZWsHgw73Tcc8ek.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/LjDX69bMnv4ZWsHgw73Tcc8ek.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/LjDX69bMnv4ZWsHgw73Tcc8ek.jpg 1024w\"},className:\"framer-151dpjx\",\"data-framer-name\":\"IMG_2562\",name:\"IMG_2562\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:768,pixelHeight:2048,pixelWidth:1536,sizes:\"300px\",src:\"https://framerusercontent.com/images/IAe0pVJtMR0Svs6ih7A8n3K2cc.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/IAe0pVJtMR0Svs6ih7A8n3K2cc.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/IAe0pVJtMR0Svs6ih7A8n3K2cc.jpg 1536w\"},className:\"framer-1hwdw1x\",\"data-framer-name\":\"$9554E7DA_1741_491F_8E26_598167AC3D14\",name:\"$9554E7DA_1741_491F_8E26_598167AC3D14\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:962,intrinsicWidth:721.5,pixelHeight:1924,pixelWidth:1443,sizes:\"300px\",src:\"https://framerusercontent.com/images/xEChSjy89ep7Pvxx93xTFiv6gyg.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/xEChSjy89ep7Pvxx93xTFiv6gyg.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/xEChSjy89ep7Pvxx93xTFiv6gyg.jpg 1443w\"},className:\"framer-rmk1r7\",\"data-framer-name\":\"B404EBFF_BA6E_4B5F_BF57_6162EB2E8244\",name:\"B404EBFF_BA6E_4B5F_BF57_6162EB2E8244\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:768,pixelHeight:2048,pixelWidth:1536,sizes:\"300px\",src:\"https://framerusercontent.com/images/sL6NDi0Y3VW1TATjNjrmxNIqayM.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/sL6NDi0Y3VW1TATjNjrmxNIqayM.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/sL6NDi0Y3VW1TATjNjrmxNIqayM.jpg 1536w\"},className:\"framer-1jdyeli\",\"data-framer-name\":\"DA70F195_915C_4916_8EB1_7C6862BEF56E\",name:\"DA70F195_915C_4916_8EB1_7C6862BEF56E\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:384,pixelHeight:1024,pixelWidth:768,sizes:\"300px\",src:\"https://framerusercontent.com/images/I8N5zXIjhQ5QmpCJiX4rmGNVoUM.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/I8N5zXIjhQ5QmpCJiX4rmGNVoUM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/I8N5zXIjhQ5QmpCJiX4rmGNVoUM.jpg 1024w\"},className:\"framer-3r3rb8\",\"data-framer-name\":\"IMG_2576\",name:\"IMG_2576\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1232,intrinsicWidth:928,pixelHeight:2464,pixelWidth:1856,sizes:\"302px\",src:\"https://framerusercontent.com/images/2LjBGHGNCVq4me3V0eQAJmjgZpo.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/2LjBGHGNCVq4me3V0eQAJmjgZpo.jpg?scale-down-to=1024 771w,https://framerusercontent.com/images/2LjBGHGNCVq4me3V0eQAJmjgZpo.jpg?scale-down-to=2048 1542w,https://framerusercontent.com/images/2LjBGHGNCVq4me3V0eQAJmjgZpo.jpg 1856w\"},className:\"framer-tkypv4\",\"data-framer-name\":\"Ads_Frame_58\",name:\"Ads_Frame_58\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:668,intrinsicWidth:1e3,pixelHeight:1336,pixelWidth:2e3,sizes:\"599px\",src:\"https://framerusercontent.com/images/ZEm9EMPZmXFAAG89MEJ4qjJKLg.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/ZEm9EMPZmXFAAG89MEJ4qjJKLg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ZEm9EMPZmXFAAG89MEJ4qjJKLg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZEm9EMPZmXFAAG89MEJ4qjJKLg.jpg 2000w\"},className:\"framer-1w5lxf8\",\"data-framer-name\":\"L1016352\",name:\"L1016352\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1232,intrinsicWidth:928,pixelHeight:2464,pixelWidth:1856,sizes:\"302px\",src:\"https://framerusercontent.com/images/9qV2Ptl4aImDdEOVNhDldRFj4o.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/9qV2Ptl4aImDdEOVNhDldRFj4o.jpg?scale-down-to=1024 771w,https://framerusercontent.com/images/9qV2Ptl4aImDdEOVNhDldRFj4o.jpg?scale-down-to=2048 1542w,https://framerusercontent.com/images/9qV2Ptl4aImDdEOVNhDldRFj4o.jpg 1856w\"},className:\"framer-1ynvss0\",\"data-framer-name\":\"Ads_Frame_66\",name:\"Ads_Frame_66\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:668,pixelHeight:2e3,pixelWidth:1336,sizes:\"267px\",src:\"https://framerusercontent.com/images/dgF5nQ89Sh5HoeIyip2LFx7xAQ.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/dgF5nQ89Sh5HoeIyip2LFx7xAQ.jpg?scale-down-to=1024 684w,https://framerusercontent.com/images/dgF5nQ89Sh5HoeIyip2LFx7xAQ.jpg 1336w\"},className:\"framer-8cfvfi\",\"data-framer-name\":\"L1016371\",name:\"L1016371\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2016,intrinsicWidth:1512,pixelHeight:4032,pixelWidth:3024,sizes:\"300px\",src:\"https://framerusercontent.com/images/RRFnJPGqcLTdTPZvvSoYGQUIRN8.jpeg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/RRFnJPGqcLTdTPZvvSoYGQUIRN8.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/RRFnJPGqcLTdTPZvvSoYGQUIRN8.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/RRFnJPGqcLTdTPZvvSoYGQUIRN8.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/RRFnJPGqcLTdTPZvvSoYGQUIRN8.jpeg 4032w\"},className:\"framer-1nf11fn\",\"data-framer-name\":\"IMG_9288\",name:\"IMG_9288\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1232,intrinsicWidth:928,pixelHeight:2464,pixelWidth:1856,sizes:\"302px\",src:\"https://framerusercontent.com/images/6zYKSnhDGp87Rkn7B5NTo7Y2g.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/6zYKSnhDGp87Rkn7B5NTo7Y2g.png?scale-down-to=1024 771w,https://framerusercontent.com/images/6zYKSnhDGp87Rkn7B5NTo7Y2g.png?scale-down-to=2048 1542w,https://framerusercontent.com/images/6zYKSnhDGp87Rkn7B5NTo7Y2g.png 1856w\"},className:\"framer-1002zvo\",\"data-framer-name\":\"Ads_Frame_50\",name:\"Ads_Frame_50\"})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kqOHcehtA:{y:961.2320143884892},YOqobnoC9:{y:1520.2320143884892}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:140,width:\"100vw\",y:1504.2320143884892,children:/*#__PURE__*/_jsx(Container,{className:\"framer-rpdkyg-container\",children:/*#__PURE__*/_jsx(CareerHeading,{BgmmM8DTq:\"Open positions\",height:\"100%\",id:\"Q3kxsfV54\",KYp7xDHkC:\"var(--token-1ee0f094-645d-4d86-a4ef-e7dc53764ad5, rgb(0, 0, 0))\",layoutId:\"Q3kxsfV54\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-r4vxcp\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-969rss\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"vqZxEZWdq\",data:Jobs,type:\"Collection\"},select:[{collection:\"vqZxEZWdq\",name:\"hKOCX0Y2f\",type:\"Identifier\"},{collection:\"vqZxEZWdq\",name:\"LyRTawoM_\",type:\"Identifier\"},{collection:\"vqZxEZWdq\",name:\"eKFFYnQV9\",type:\"Identifier\"},{collection:\"vqZxEZWdq\",name:\"kUVPat2mp\",type:\"Identifier\"},{collection:\"vqZxEZWdq\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection.map(({eKFFYnQV9:eKFFYnQV9vqZxEZWdq,hKOCX0Y2f:hKOCX0Y2fvqZxEZWdq,id:idvqZxEZWdq,kUVPat2mp:kUVPat2mpvqZxEZWdq,LyRTawoM_:LyRTawoM_vqZxEZWdq},i)=>{hKOCX0Y2fvqZxEZWdq!==null&&hKOCX0Y2fvqZxEZWdq!==void 0?hKOCX0Y2fvqZxEZWdq:hKOCX0Y2fvqZxEZWdq=true;LyRTawoM_vqZxEZWdq!==null&&LyRTawoM_vqZxEZWdq!==void 0?LyRTawoM_vqZxEZWdq:LyRTawoM_vqZxEZWdq=\"\";eKFFYnQV9vqZxEZWdq!==null&&eKFFYnQV9vqZxEZWdq!==void 0?eKFFYnQV9vqZxEZWdq:eKFFYnQV9vqZxEZWdq=\"\";kUVPat2mpvqZxEZWdq!==null&&kUVPat2mpvqZxEZWdq!==void 0?kUVPat2mpvqZxEZWdq:kUVPat2mpvqZxEZWdq=\"\";const visible=negate(equals(hKOCX0Y2fvqZxEZWdq,true));return /*#__PURE__*/_jsx(LayoutGroup,{id:`vqZxEZWdq-${idvqZxEZWdq}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{kUVPat2mp:kUVPat2mpvqZxEZWdq},children:visible&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"HrYQgiFnQ\"},implicitPathVariables:{kUVPat2mp:kUVPat2mpvqZxEZWdq}},{href:{webPageId:\"HrYQgiFnQ\"},implicitPathVariables:{kUVPat2mp:kUVPat2mpvqZxEZWdq}},{href:{webPageId:\"HrYQgiFnQ\"},implicitPathVariables:{kUVPat2mp:kUVPat2mpvqZxEZWdq}}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kqOHcehtA:{width:\"min(100vw, 1432px)\",y:1633.2320143884892},YOqobnoC9:{y:2192.232014388489}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:58,width:\"max(min(100vw, 1432px), 1px)\",y:2176.232014388489,children:/*#__PURE__*/_jsx(Container,{className:\"framer-4p5f5i-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kqOHcehtA:{kqDFvh5Vq:resolvedLinks1[1]},YOqobnoC9:{kqDFvh5Vq:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(Position,{height:\"100%\",id:\"b1ohluBqJ\",kqDFvh5Vq:resolvedLinks1[0],layoutId:\"b1ohluBqJ\",style:{width:\"100%\"},variant:\"bkwWAIFWm\",waQuJBqEC:eKFFYnQV9vqZxEZWdq,width:\"100%\",X7479lBk8:LyRTawoM_vqZxEZWdq})})})})})})})},idvqZxEZWdq);})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kqOHcehtA:{y:1137.2320143884892}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:140,width:\"100vw\",y:1680.2320143884892,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1si5wcc-container\",children:/*#__PURE__*/_jsx(CareerHeading,{BgmmM8DTq:\"Benefits and life balance\",height:\"100%\",id:\"IIsrYZ9HV\",KYp7xDHkC:\"var(--token-1ee0f094-645d-4d86-a4ef-e7dc53764ad5, rgb(0, 0, 0))\",layoutId:\"IIsrYZ9HV\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kqOHcehtA:{y:1287.2320143884892}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:140,width:\"100vw\",y:1830.2320143884892,children:/*#__PURE__*/_jsx(Container,{className:\"framer-mjhe2u-container\",children:/*#__PURE__*/_jsx(CareerHeading,{BgmmM8DTq:\"Being a Kiver has its perks. Our benefits reflect what we value and are available to every member of the team.\",height:\"100%\",id:\"zYIo79p_c\",KYp7xDHkC:\"var(--token-5d008fe8-dbcc-4ea6-a097-a35459dc8095, rgba(0, 0, 0, 0.25))\",layoutId:\"zYIo79p_c\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pu1obl\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bzblf3\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-2xe8gx\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"I6M3wKd1c\",data:PerksBenefits,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},select:[{collection:\"I6M3wKd1c\",name:\"uNriG5TG3\",type:\"Identifier\"},{collection:\"I6M3wKd1c\",name:\"dXJZifROX\",type:\"Identifier\"},{collection:\"I6M3wKd1c\",name:\"HYoHgmm3o\",type:\"Identifier\"},{collection:\"I6M3wKd1c\",name:\"qQRy7xr4q\",type:\"Identifier\"},{collection:\"I6M3wKd1c\",name:\"id\",type:\"Identifier\"}]},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1.map(({dXJZifROX:dXJZifROXI6M3wKd1c,HYoHgmm3o:HYoHgmm3oI6M3wKd1c,id:idI6M3wKd1c,qQRy7xr4q:qQRy7xr4qI6M3wKd1c,uNriG5TG3:uNriG5TG3I6M3wKd1c},i)=>{uNriG5TG3I6M3wKd1c!==null&&uNriG5TG3I6M3wKd1c!==void 0?uNriG5TG3I6M3wKd1c:uNriG5TG3I6M3wKd1c=\"\";dXJZifROXI6M3wKd1c!==null&&dXJZifROXI6M3wKd1c!==void 0?dXJZifROXI6M3wKd1c:dXJZifROXI6M3wKd1c=\"\";HYoHgmm3oI6M3wKd1c!==null&&HYoHgmm3oI6M3wKd1c!==void 0?HYoHgmm3oI6M3wKd1c:HYoHgmm3oI6M3wKd1c=\"\";qQRy7xr4qI6M3wKd1c!==null&&qQRy7xr4qI6M3wKd1c!==void 0?qQRy7xr4qI6M3wKd1c:qQRy7xr4qI6M3wKd1c=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`I6M3wKd1c-${idI6M3wKd1c}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{qQRy7xr4q:qQRy7xr4qI6M3wKd1c},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kqOHcehtA:{width:\"calc(min(100vw, 1432px) - 32px)\",y:1693.2320143884892}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"max((min(100vw, 1432px) - 48px) / 2, 1px)\",y:2236.232014388489,children:/*#__PURE__*/_jsx(Container,{className:\"framer-18s94vk-container\",children:/*#__PURE__*/_jsx(PerkCard,{aaw0wHYIH:dXJZifROXI6M3wKd1c,BWwr37fCt:uNriG5TG3I6M3wKd1c,height:\"100%\",iAwCOWy8E:HYoHgmm3oI6M3wKd1c,id:\"Vfr3EV4W1\",layoutId:\"Vfr3EV4W1\",style:{width:\"100%\"},variant:\"WEoBrfaCc\",width:\"100%\"})})})})})},idI6M3wKd1c);})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1iezlqj\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"ww8jg0mQI\",data:PerksBenefits,type:\"Collection\"},limit:{type:\"LiteralValue\",value:5},offset:{type:\"LiteralValue\",value:4},select:[{collection:\"ww8jg0mQI\",name:\"uNriG5TG3\",type:\"Identifier\"},{collection:\"ww8jg0mQI\",name:\"dXJZifROX\",type:\"Identifier\"},{collection:\"ww8jg0mQI\",name:\"HYoHgmm3o\",type:\"Identifier\"},{collection:\"ww8jg0mQI\",name:\"qQRy7xr4q\",type:\"Identifier\"},{collection:\"ww8jg0mQI\",name:\"id\",type:\"Identifier\"}]},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2.map(({dXJZifROX:dXJZifROXww8jg0mQI,HYoHgmm3o:HYoHgmm3oww8jg0mQI,id:idww8jg0mQI,qQRy7xr4q:qQRy7xr4qww8jg0mQI,uNriG5TG3:uNriG5TG3ww8jg0mQI},i)=>{uNriG5TG3ww8jg0mQI!==null&&uNriG5TG3ww8jg0mQI!==void 0?uNriG5TG3ww8jg0mQI:uNriG5TG3ww8jg0mQI=\"\";dXJZifROXww8jg0mQI!==null&&dXJZifROXww8jg0mQI!==void 0?dXJZifROXww8jg0mQI:dXJZifROXww8jg0mQI=\"\";HYoHgmm3oww8jg0mQI!==null&&HYoHgmm3oww8jg0mQI!==void 0?HYoHgmm3oww8jg0mQI:HYoHgmm3oww8jg0mQI=\"\";qQRy7xr4qww8jg0mQI!==null&&qQRy7xr4qww8jg0mQI!==void 0?qQRy7xr4qww8jg0mQI:qQRy7xr4qww8jg0mQI=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`ww8jg0mQI-${idww8jg0mQI}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{qQRy7xr4q:qQRy7xr4qww8jg0mQI},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kqOHcehtA:{width:\"calc(min(100vw, 1432px) - 32px)\",y:2013.2320143884892}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"max((min(100vw, 1432px) - 48px) / 2, 1px)\",y:2236.232014388489,children:/*#__PURE__*/_jsx(Container,{className:\"framer-5ri3t7-container\",children:/*#__PURE__*/_jsx(PerkCard,{aaw0wHYIH:dXJZifROXww8jg0mQI,BWwr37fCt:uNriG5TG3ww8jg0mQI,height:\"100%\",iAwCOWy8E:HYoHgmm3oww8jg0mQI,id:\"disl9_DqN\",layoutId:\"disl9_DqN\",style:{width:\"100%\"},variant:\"WEoBrfaCc\",width:\"100%\"})})})})})},idww8jg0mQI);})})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kqOHcehtA:{y:2103.232014388489}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:140,width:\"100vw\",y:2326.232014388489,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1j7o1ya-container\",children:/*#__PURE__*/_jsx(CareerHeading,{BgmmM8DTq:\"Location\",height:\"100%\",id:\"eNSB0zTaj\",KYp7xDHkC:\"var(--token-1ee0f094-645d-4d86-a4ef-e7dc53764ad5, rgb(0, 0, 0))\",layoutId:\"eNSB0zTaj\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kqOHcehtA:{y:2253.232014388489}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:140,width:\"100vw\",y:2476.232014388489,children:/*#__PURE__*/_jsx(Container,{className:\"framer-6yabu8-container\",children:/*#__PURE__*/_jsx(CareerHeading,{BgmmM8DTq:\"We just moved into our new airy office located in the heart of Stockholm's creative neighborhood S\\xf6dermalm, on the corner of Nytorget.\",height:\"100%\",id:\"u6Vx8IjiD\",KYp7xDHkC:\"var(--token-5d008fe8-dbcc-4ea6-a097-a35459dc8095, rgba(0, 0, 0, 0.25))\",layoutId:\"u6Vx8IjiD\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kqOHcehtA:{y:2403.232014388489}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:140,width:\"100vw\",y:2626.232014388489,children:/*#__PURE__*/_jsx(Container,{className:\"framer-92zdc-container\",children:/*#__PURE__*/_jsx(CareerHeading,{BgmmM8DTq:\"Our values\",height:\"100%\",id:\"pzeiU_NaQ\",KYp7xDHkC:\"var(--token-1ee0f094-645d-4d86-a4ef-e7dc53764ad5, rgb(0, 0, 0))\",layoutId:\"pzeiU_NaQ\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1c3neqk\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7gdpj8\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kqOHcehtA:{width:\"max(min(100vw, 1432px) - 32px, 50px)\",y:2569.232014388489},YOqobnoC9:{width:\"max((max(min(100vw, 1432px) - 32px, 1px) - 16px) / 2, 50px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:251,width:\"max((max(min(100vw, 1432px) - 32px, 1px) - 56px) / 2, 50px)\",y:2792.232014388489,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1oiqz4-container\",children:/*#__PURE__*/_jsx(ValuesNew2,{height:\"100%\",id:\"D4FmhWtDL\",layoutId:\"D4FmhWtDL\",style:{height:\"100%\",width:\"100%\"},VUh6lLktF:\"We don\u2019t just want to be another boring software company. We want to create an experience around Kive that makes people feel things. We want to help users feel inspired and be creative in their work. We do right by our users and we keep their interests in mind when making decisions.\",width:\"100%\",xMQuYkYHY:addImageAlt({src:\"https://framerusercontent.com/images/lBQcMbUxbNTWeDYOYdLkY74lqQ.png\"},\"\"),yPYBbbdqX:\"Put user experience first\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kqOHcehtA:{width:\"max(min(100vw, 1432px) - 32px, 50px)\",y:2876.232014388489},YOqobnoC9:{width:\"max((max(min(100vw, 1432px) - 32px, 1px) - 16px) / 2, 50px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:251,width:\"max((max(min(100vw, 1432px) - 32px, 1px) - 56px) / 2, 50px)\",y:2792.232014388489,children:/*#__PURE__*/_jsx(Container,{className:\"framer-bd4tci-container\",children:/*#__PURE__*/_jsx(ValuesNew2,{height:\"100%\",id:\"RyfFrtS_g\",layoutId:\"RyfFrtS_g\",style:{height:\"100%\",width:\"100%\"},VUh6lLktF:\"Velocity is the most crucial thing for any startup. We prioritize speed to increase our opportunities for success, enabling us to experiment and iterate rapidly. We always strive to surpass our own expectations of speed.\",width:\"100%\",xMQuYkYHY:addImageAlt({src:\"https://framerusercontent.com/images/twKCoee2cdtRFaEjCEBDH243Ys.png\"},\"\"),yPYBbbdqX:\"Add momentum\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kqOHcehtA:{width:\"max(min(100vw, 1432px) - 32px, 50px)\",y:3183.232014388489},YOqobnoC9:{width:\"max((max(min(100vw, 1432px) - 32px, 1px) - 16px) / 2, 50px)\",y:3059.232014388489}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:251,width:\"max((max(min(100vw, 1432px) - 32px, 1px) - 56px) / 2, 50px)\",y:3099.232014388489,children:/*#__PURE__*/_jsx(Container,{className:\"framer-y45204-container\",children:/*#__PURE__*/_jsx(ValuesNew2,{height:\"100%\",id:\"xPSvrtpr1\",layoutId:\"xPSvrtpr1\",style:{height:\"100%\",width:\"100%\"},VUh6lLktF:\"Having a small amount of knowledge and assuming you understand it deeply can lead you astray. We try to approach things with a beginners mind, and we love learning new things and sharing them with others.\",width:\"100%\",xMQuYkYHY:addImageAlt({src:\"https://framerusercontent.com/images/twKCoee2cdtRFaEjCEBDH243Ys.png\"},\"\"),yPYBbbdqX:\"Be relentlessly curious \"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kqOHcehtA:{width:\"max(min(100vw, 1432px) - 32px, 50px)\",y:3490.232014388489},YOqobnoC9:{width:\"max((max(min(100vw, 1432px) - 32px, 1px) - 16px) / 2, 50px)\",y:3059.232014388489}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:251,width:\"max((max(min(100vw, 1432px) - 32px, 1px) - 56px) / 2, 50px)\",y:3099.232014388489,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fljz78-container\",children:/*#__PURE__*/_jsx(ValuesNew2,{height:\"100%\",id:\"khSsCF9Qg\",layoutId:\"khSsCF9Qg\",style:{height:\"100%\",width:\"100%\"},VUh6lLktF:\"It's not just about being talented. It's about your willingness and ability to help others improve and succeed. The key question for you is not 'how did you improve,' but 'how did you help the team and others get better? How did you lift this place higher than it was when you arrived?\",width:\"100%\",xMQuYkYHY:addImageAlt({src:\"https://framerusercontent.com/images/ZvuilsoGQ3hNpunLZqrmJhJprPQ.png\"},\"\"),yPYBbbdqX:\"Step up for the team  \"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kqOHcehtA:{width:\"max(min(100vw, 1432px) - 32px, 50px)\",y:3797.232014388489},YOqobnoC9:{width:\"max((max(min(100vw, 1432px) - 32px, 1px) - 16px) / 2, 50px)\",y:3326.232014388489}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:251,width:\"max((max(min(100vw, 1432px) - 32px, 1px) - 56px) / 2, 50px)\",y:3406.232014388489,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tn19ix-container\",children:/*#__PURE__*/_jsx(ValuesNew2,{height:\"100%\",id:\"BHwL7Dahc\",layoutId:\"BHwL7Dahc\",style:{height:\"100%\",width:\"100%\"},VUh6lLktF:\"We believe play unlocks creativity and innovation. When we allow ourselves to explore and experiment without strict expectations or structure, we can find unexpected ideas, solutions and opportunities.\",width:\"100%\",xMQuYkYHY:addImageAlt({src:\"https://framerusercontent.com/images/v7Pyennc8PYN1JH49WWBdILg.png\"},\"\"),yPYBbbdqX:\"Play\"})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kqOHcehtA:{y:4074.232014388489},YOqobnoC9:{y:3603.232014388489}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:140,width:\"100vw\",y:3683.232014388489,children:/*#__PURE__*/_jsx(Container,{className:\"framer-w6akr7-container\",children:/*#__PURE__*/_jsx(CareerHeading,{BgmmM8DTq:\"Backed by renowned investors\",height:\"100%\",id:\"mVTFzEP3G\",KYp7xDHkC:\"var(--token-1ee0f094-645d-4d86-a4ef-e7dc53764ad5, rgb(0, 0, 0))\",layoutId:\"mVTFzEP3G\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tt55jw\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kqOHcehtA:{y:4224.232014388489},YOqobnoC9:{y:3753.232014388489}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,y:3833.232014388489,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hhrsjg-container\",children:/*#__PURE__*/_jsx(InvestorCard,{cfQpReN3l:\"var(--token-ad87806f-c522-456f-9d52-aae32aa3f25f, rgb(96, 130, 88))\",fjCLWJ9ZN:addImageAlt({src:\"https://framerusercontent.com/images/YG014aalhvGd6poCtP0al0AIIM.png\"},\"\"),height:\"100%\",id:\"F9ZHf98ZN\",layoutId:\"F9ZHf98ZN\",PufR35eQg:\"Creandum\",VF9a0DDNT:\"creandum.com\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kqOHcehtA:{y:4316.232014388489},YOqobnoC9:{y:3753.232014388489}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,y:3833.232014388489,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1reides-container\",children:/*#__PURE__*/_jsx(InvestorCard,{cfQpReN3l:\"var(--token-8666782c-50a6-4306-a388-4bfadcd46a21, rgb(165, 138, 255))\",height:\"100%\",id:\"B62nyoTe6\",layoutId:\"B62nyoTe6\",PufR35eQg:\"EQT Ventures\",VF9a0DDNT:\"eqtventures.com\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kqOHcehtA:{y:4408.232014388489},YOqobnoC9:{y:3753.232014388489}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,y:3833.232014388489,children:/*#__PURE__*/_jsx(Container,{className:\"framer-dvp4a6-container\",children:/*#__PURE__*/_jsx(InvestorCard,{cfQpReN3l:\"var(--token-ad87806f-c522-456f-9d52-aae32aa3f25f, rgb(96, 130, 88))\",fjCLWJ9ZN:addImageAlt({src:\"https://framerusercontent.com/images/A9YkI7ZXyMUPUoAsGVF2hGmKWI.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/A9YkI7ZXyMUPUoAsGVF2hGmKWI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/A9YkI7ZXyMUPUoAsGVF2hGmKWI.jpg 1000w\"},\"\"),height:\"100%\",id:\"UAVXlprFi\",layoutId:\"UAVXlprFi\",PufR35eQg:\"Heartcore\",VF9a0DDNT:\"https://www.heartcore.com/\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kqOHcehtA:{y:4510.232014388489},YOqobnoC9:{y:3855.232014388489}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:140,width:\"100vw\",y:3935.232014388489,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qta6q2-container\",children:/*#__PURE__*/_jsx(CareerHeading,{BgmmM8DTq:\"Fuelled by good playlists\",height:\"100%\",id:\"UczPfcLV5\",KYp7xDHkC:\"var(--token-1ee0f094-645d-4d86-a4ef-e7dc53764ad5, rgb(0, 0, 0))\",layoutId:\"UczPfcLV5\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18ateaa\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-112ytc2\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:100}},{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,className:\"framer-1hyapml-container\",children:/*#__PURE__*/_jsx(Spotify,{height:\"100%\",id:\"cQoIMs3U_\",layoutId:\"cQoIMs3U_\",style:{height:\"100%\",width:\"100%\"},theme:0,url:\"https://open.spotify.com/playlist/6okv0tOpufUrUpTtaUEln0?si=42eb45edb655479f\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:120}},{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,className:\"framer-1c3bfd1-container\",children:/*#__PURE__*/_jsx(Spotify,{height:\"100%\",id:\"jkozsi1gm\",layoutId:\"jkozsi1gm\",style:{height:\"100%\",width:\"100%\"},theme:0,url:\"https://open.spotify.com/playlist/7D0f37y2ngsbF01iZYVQH0?si=aced8edb69a244f9\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:140}},{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,className:\"framer-l74u15-container\",children:/*#__PURE__*/_jsx(Spotify,{height:\"100%\",id:\"hrSA4HXPK\",layoutId:\"hrSA4HXPK\",style:{height:\"100%\",width:\"100%\"},theme:0,url:\"https://open.spotify.com/playlist/2MnUoAb5PEniApUovMX4Ks?si=6fe160f5d6a84477\",width:\"100%\"})})})]})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kqOHcehtA:{y:4890.482014388489},YOqobnoC9:{y:4938.482014388489}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:526,width:\"100vw\",y:4986.482014388489,children:/*#__PURE__*/_jsx(Container,{className:\"framer-afaunn-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kqOHcehtA:{variant:\"VM7EBToGP\"},YOqobnoC9:{variant:\"VM7EBToGP\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"cRzTTpciv\",layoutId:\"cRzTTpciv\",style:{width:\"100%\"},variant:\"m0Z0TqtkM\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kqOHcehtA:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:181.5,intrinsicWidth:256,loading:getLoadingLazyAtYPosition(5448.482014388489),pixelHeight:363,pixelWidth:512,src:\"https://framerusercontent.com/images/twKCoee2cdtRFaEjCEBDH243Ys.png\"}},YOqobnoC9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:181.5,intrinsicWidth:256,loading:getLoadingLazyAtYPosition(5512.482014388489),pixelHeight:363,pixelWidth:512,src:\"https://framerusercontent.com/images/twKCoee2cdtRFaEjCEBDH243Ys.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:181.5,intrinsicWidth:256,loading:getLoadingLazyAtYPosition(5576.482014388489),pixelHeight:363,pixelWidth:512,src:\"https://framerusercontent.com/images/twKCoee2cdtRFaEjCEBDH243Ys.png\"},className:\"framer-18e8kze\",\"data-framer-name\":\"Image\",name:\"Image\"})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-66k3q { background: var(--token-fd4e2bbb-69d3-465d-93b7-b4f82e2fcc58, rgb(245, 245, 245)) /* {\"name\":\"Background\"} */; }`,\".framer-66k3q.framer-ybstsc, .framer-66k3q .framer-ybstsc { display: block; }\",\".framer-66k3q.framer-1b684ma { align-content: center; align-items: center; background-color: var(--token-fd4e2bbb-69d3-465d-93b7-b4f82e2fcc58, #f5f5f5); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1400px; }\",\".framer-66k3q .framer-f5m1k0 { background: radial-gradient(75% 26.5% at 50% 12%, rgba(148, 94, 255, 0.09) 0%, rgba(187, 153, 255, 0) 100%); bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-66k3q .framer-1krsi9y { background: radial-gradient(95.47135246453439% 23.3% at 0% 43.6%, rgba(194, 138, 255, 0.1) 0%, rgba(187, 153, 255, 0) 100%); bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-66k3q .framer-15u58l5 { background: radial-gradient(95.47135246453439% 46.800000000000004% at 86% 93.30000000000001%, rgba(255, 189, 145, 0.08) 0%, rgba(187, 153, 255, 0) 100%); bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\".framer-66k3q .framer-16ovp8v-container { flex: none; height: auto; position: sticky; top: 0px; width: 100%; will-change: transform; z-index: 3; }\",\".framer-66k3q .framer-1mz4a5p-container { flex: none; height: 373px; position: relative; width: 100%; }\",\".framer-66k3q .framer-1qr5db5, .framer-66k3q .framer-1d9uhk5, .framer-66k3q .framer-bovr7p { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-66k3q .framer-169h9cx, .framer-66k3q .framer-csmrwq, .framer-66k3q .framer-vs1htu { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-66k3q .framer-q3eabn { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 69px); overflow: visible; position: relative; width: 69px; }\",\".framer-66k3q .framer-1fbkv5e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 4350px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-66k3q .framer-tf5u8l-container, .framer-66k3q .framer-1gkiohr-container, .framer-66k3q .framer-rpdkyg-container, .framer-66k3q .framer-4p5f5i-container, .framer-66k3q .framer-1si5wcc-container, .framer-66k3q .framer-mjhe2u-container, .framer-66k3q .framer-18s94vk-container, .framer-66k3q .framer-5ri3t7-container, .framer-66k3q .framer-1j7o1ya-container, .framer-66k3q .framer-6yabu8-container, .framer-66k3q .framer-92zdc-container, .framer-66k3q .framer-w6akr7-container, .framer-66k3q .framer-1qta6q2-container, .framer-66k3q .framer-afaunn-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-66k3q .framer-1kxlpcr-container { flex: none; height: 400px; position: relative; width: 100%; }\",\".framer-66k3q .framer-1nax2g1 { aspect-ratio: 0.7580372250423012 / 1; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; height: var(--framer-aspect-ratio-supported, 400px); overflow: visible; position: relative; width: 303px; }\",\".framer-66k3q .framer-151dpjx, .framer-66k3q .framer-1hwdw1x, .framer-66k3q .framer-rmk1r7, .framer-66k3q .framer-1jdyeli, .framer-66k3q .framer-3r3rb8, .framer-66k3q .framer-1nf11fn { aspect-ratio: 0.75 / 1; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; height: var(--framer-aspect-ratio-supported, 400px); overflow: visible; position: relative; width: 300px; }\",\".framer-66k3q .framer-tkypv4, .framer-66k3q .framer-1ynvss0, .framer-66k3q .framer-1002zvo { aspect-ratio: 0.7532467532467533 / 1; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; height: var(--framer-aspect-ratio-supported, 401px); overflow: visible; position: relative; width: 302px; }\",\".framer-66k3q .framer-1w5lxf8 { aspect-ratio: 1.4970059880239521 / 1; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; height: var(--framer-aspect-ratio-supported, 400px); overflow: visible; position: relative; width: 599px; }\",\".framer-66k3q .framer-8cfvfi { aspect-ratio: 0.668 / 1; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; height: var(--framer-aspect-ratio-supported, 400px); overflow: visible; position: relative; width: 267px; }\",\".framer-66k3q .framer-r4vxcp { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; max-width: 1432px; overflow: visible; padding: 0px 0px 16px 0px; position: relative; width: 100%; }\",\".framer-66k3q .framer-969rss { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-66k3q .framer-1pu1obl { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; max-width: 1432px; overflow: visible; padding: 16px; position: relative; width: 100%; }\",\".framer-66k3q .framer-1bzblf3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-66k3q .framer-2xe8gx, .framer-66k3q .framer-1iezlqj { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-66k3q .framer-1c3neqk { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; max-width: 1432px; overflow: visible; padding: 16px; position: relative; width: 100%; }\",\".framer-66k3q .framer-7gdpj8 { display: grid; flex: 1 0 0px; gap: 56px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-66k3q .framer-1oiqz4-container, .framer-66k3q .framer-bd4tci-container, .framer-66k3q .framer-y45204-container, .framer-66k3q .framer-1fljz78-container, .framer-66k3q .framer-1tn19ix-container { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; width: 100%; }\",\".framer-66k3q .framer-tt55jw, .framer-66k3q .framer-18ateaa { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; max-width: 1400px; overflow: visible; padding: 0px 0px 16px 0px; position: relative; width: 100%; }\",\".framer-66k3q .framer-1hhrsjg-container, .framer-66k3q .framer-1reides-container, .framer-66k3q .framer-dvp4a6-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-66k3q .framer-112ytc2 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: 60vh; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-66k3q .framer-1hyapml-container, .framer-66k3q .framer-1c3bfd1-container, .framer-66k3q .framer-l74u15-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-66k3q .framer-18e8kze { aspect-ratio: 1.4104683195592287 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 182px); overflow: visible; position: relative; width: 256px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-66k3q.framer-1b684ma, .framer-66k3q .framer-1qr5db5, .framer-66k3q .framer-1d9uhk5, .framer-66k3q .framer-bovr7p, .framer-66k3q .framer-1fbkv5e, .framer-66k3q .framer-r4vxcp, .framer-66k3q .framer-969rss, .framer-66k3q .framer-1pu1obl, .framer-66k3q .framer-1bzblf3, .framer-66k3q .framer-2xe8gx, .framer-66k3q .framer-1iezlqj, .framer-66k3q .framer-1c3neqk, .framer-66k3q .framer-tt55jw, .framer-66k3q .framer-18ateaa, .framer-66k3q .framer-112ytc2 { gap: 0px; } .framer-66k3q.framer-1b684ma > *, .framer-66k3q .framer-1pu1obl > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-66k3q.framer-1b684ma > :first-child, .framer-66k3q .framer-1fbkv5e > :first-child, .framer-66k3q .framer-969rss > :first-child, .framer-66k3q .framer-1pu1obl > :first-child, .framer-66k3q .framer-2xe8gx > :first-child, .framer-66k3q .framer-1iezlqj > :first-child { margin-top: 0px; } .framer-66k3q.framer-1b684ma > :last-child, .framer-66k3q .framer-1fbkv5e > :last-child, .framer-66k3q .framer-969rss > :last-child, .framer-66k3q .framer-1pu1obl > :last-child, .framer-66k3q .framer-2xe8gx > :last-child, .framer-66k3q .framer-1iezlqj > :last-child { margin-bottom: 0px; } .framer-66k3q .framer-1qr5db5 > *, .framer-66k3q .framer-1d9uhk5 > *, .framer-66k3q .framer-bovr7p > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-66k3q .framer-1qr5db5 > :first-child, .framer-66k3q .framer-1d9uhk5 > :first-child, .framer-66k3q .framer-bovr7p > :first-child, .framer-66k3q .framer-r4vxcp > :first-child, .framer-66k3q .framer-1bzblf3 > :first-child, .framer-66k3q .framer-1c3neqk > :first-child, .framer-66k3q .framer-tt55jw > :first-child, .framer-66k3q .framer-18ateaa > :first-child, .framer-66k3q .framer-112ytc2 > :first-child { margin-left: 0px; } .framer-66k3q .framer-1qr5db5 > :last-child, .framer-66k3q .framer-1d9uhk5 > :last-child, .framer-66k3q .framer-bovr7p > :last-child, .framer-66k3q .framer-r4vxcp > :last-child, .framer-66k3q .framer-1bzblf3 > :last-child, .framer-66k3q .framer-1c3neqk > :last-child, .framer-66k3q .framer-tt55jw > :last-child, .framer-66k3q .framer-18ateaa > :last-child, .framer-66k3q .framer-112ytc2 > :last-child { margin-right: 0px; } .framer-66k3q .framer-1fbkv5e > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-66k3q .framer-r4vxcp > *, .framer-66k3q .framer-1c3neqk > * { margin: 0px; margin-left: calc(64px / 2); margin-right: calc(64px / 2); } .framer-66k3q .framer-969rss > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-66k3q .framer-1bzblf3 > *, .framer-66k3q .framer-tt55jw > *, .framer-66k3q .framer-18ateaa > *, .framer-66k3q .framer-112ytc2 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-66k3q .framer-2xe8gx > *, .framer-66k3q .framer-1iezlqj > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",...sharedStyle.css,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-66k3q { background: var(--token-fd4e2bbb-69d3-465d-93b7-b4f82e2fcc58, rgb(245, 245, 245)) /* {\"name\":\"Background\"} */; } .framer-66k3q.framer-1b684ma { gap: 32px; width: 390px; } .framer-66k3q .framer-r4vxcp, .framer-66k3q .framer-1bzblf3, .framer-66k3q .framer-1c3neqk, .framer-66k3q .framer-18ateaa { flex-direction: column; } .framer-66k3q .framer-969rss, .framer-66k3q .framer-2xe8gx, .framer-66k3q .framer-1iezlqj { flex: none; width: 100%; } .framer-66k3q .framer-7gdpj8 { flex: none; grid-template-columns: repeat(1, minmax(50px, 1fr)); width: 100%; } .framer-66k3q .framer-tt55jw { align-content: flex-start; align-items: flex-start; flex-direction: column; } .framer-66k3q .framer-112ytc2 { flex: none; flex-direction: column; gap: 32px; height: min-content; width: 100%; } .framer-66k3q .framer-1hyapml-container, .framer-66k3q .framer-1c3bfd1-container { flex: none; height: 125px; width: 100%; } .framer-66k3q .framer-l74u15-container { flex: none; height: 126px; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-66k3q.framer-1b684ma, .framer-66k3q .framer-r4vxcp, .framer-66k3q .framer-1bzblf3, .framer-66k3q .framer-1c3neqk, .framer-66k3q .framer-tt55jw, .framer-66k3q .framer-18ateaa, .framer-66k3q .framer-112ytc2 { gap: 0px; } .framer-66k3q.framer-1b684ma > *, .framer-66k3q .framer-112ytc2 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-66k3q.framer-1b684ma > :first-child, .framer-66k3q .framer-r4vxcp > :first-child, .framer-66k3q .framer-1bzblf3 > :first-child, .framer-66k3q .framer-1c3neqk > :first-child, .framer-66k3q .framer-tt55jw > :first-child, .framer-66k3q .framer-18ateaa > :first-child, .framer-66k3q .framer-112ytc2 > :first-child { margin-top: 0px; } .framer-66k3q.framer-1b684ma > :last-child, .framer-66k3q .framer-r4vxcp > :last-child, .framer-66k3q .framer-1bzblf3 > :last-child, .framer-66k3q .framer-1c3neqk > :last-child, .framer-66k3q .framer-tt55jw > :last-child, .framer-66k3q .framer-18ateaa > :last-child, .framer-66k3q .framer-112ytc2 > :last-child { margin-bottom: 0px; } .framer-66k3q .framer-r4vxcp > *, .framer-66k3q .framer-1c3neqk > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-66k3q .framer-1bzblf3 > *, .framer-66k3q .framer-tt55jw > *, .framer-66k3q .framer-18ateaa > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }}`,`@media (min-width: 810px) and (max-width: 1399px) { .${metadata.bodyClassName}-framer-66k3q { background: var(--token-fd4e2bbb-69d3-465d-93b7-b4f82e2fcc58, rgb(245, 245, 245)) /* {\"name\":\"Background\"} */; } .framer-66k3q.framer-1b684ma { gap: 48px; width: 810px; } .framer-66k3q .framer-r4vxcp { padding: 0px; } .framer-66k3q .framer-7gdpj8 { gap: 16px; grid-template-rows: repeat(3, minmax(0, 1fr)); } .framer-66k3q .framer-112ytc2 { padding: 16px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-66k3q.framer-1b684ma, .framer-66k3q .framer-7gdpj8 { gap: 0px; } .framer-66k3q.framer-1b684ma > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-66k3q.framer-1b684ma > :first-child { margin-top: 0px; } .framer-66k3q.framer-1b684ma > :last-child { margin-bottom: 0px; } .framer-66k3q .framer-7gdpj8 > *, .framer-66k3q .framer-7gdpj8 > :first-child, .framer-66k3q .framer-7gdpj8 > :last-child { margin: 0px; } }}`];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5758\n * @framerIntrinsicWidth 1400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"kqOHcehtA\":{\"layout\":[\"fixed\",\"auto\"]},\"YOqobnoC9\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramermXBStQ3Xs=withCSS(Component,css,\"framer-66k3q\");export default FramermXBStQ3Xs;FramermXBStQ3Xs.displayName=\"Careers\";FramermXBStQ3Xs.defaultProps={height:5758,width:1400};addFonts(FramermXBStQ3Xs,[{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\"}]},...CareerHeaderFonts,...TickerFonts,...CareerHeadingFonts,...PositionFonts,...PerkCardFonts,...ValuesNew2Fonts,...InvestorCardFonts,...SpotifyFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramermXBStQ3Xs\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kqOHcehtA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"YOqobnoC9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1400\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"5758\",\"framerResponsiveScreen\":\"\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "w6CASmB,SAARA,GAAwBC,EAAM,CAAa,GAAK,CAAC,MAAAC,EAAM,IAAAC,EAAI,QAAAC,EAAQ,eAAAC,EAAe,WAAAC,EAAW,aAAAC,EAAa,cAAAC,EAAc,YAAAC,EAAY,MAAAC,EAAM,YAAAC,EAAY,UAAAC,EAAU,UAAAC,GAAU,cAAAC,GAAc,YAAAC,GAAY,MAAAC,EAAK,EAAEf,EAAW,CAAC,YAAAgB,EAAY,SAAAC,GAAS,UAAAC,EAAU,UAAAC,EAAU,UAAAC,CAAS,EAAEN,GAAiB,CAAC,UAAAO,EAAU,WAAAC,CAAU,EAAET,GAAoBU,GAAanB,EAAe,GAAGC,OAAgBC,OAAkBC,OAAmBC,MAAgB,GAAGL,MAA+BqB,EAASC,GAAa,QAAQ,IAAIA,GAAa,OAAaC,EAAYC,GAAS,MAAM1B,CAAK,EAAE,EAAQ2B,GAAajB,IAAY,QAAQA,IAAY,QAAmCkB,EAAUC,EAAO,IAAI,EAAQC,EAAYC,GAAQ,IAAW,CAAeC,GAAU,EAAgBA,GAAU,CAAC,EAAI,CAAC,CAAC,EAAO,CAACC,EAAKC,EAAO,EAAEC,GAAS,CAAC,OAAO,KAAK,SAAS,IAAI,CAAC,EAAmBC,EAAe,CAAC,EAAMC,EAAc,CAAC,EAA4BC,EAAY,EAAMC,EAAQ,EAAKhB,IAAUe,EAAY,GAAGC,EAAQ,GAAM,CAAChB,GAAUE,GAAaQ,EAAK,SAAQK,EAAY,KAAK,MAAML,EAAK,OAAOA,EAAK,SAAS,CAAC,EAAE,EAAEM,EAAQ,GAAkC,IAAMC,EAAQC,GAAY,IAAI,CAAC,GAAGhB,GAAaG,EAAU,QAAQ,CAAC,IAAMc,EAAaf,GAAaC,EAAU,QAAQ,YAAYA,EAAU,QAAQ,aAAmBe,EAAMb,EAAY,CAAC,EAAE,QAAQH,GAAaG,EAAY,CAAC,EAAE,QAAQ,WAAWA,EAAY,CAAC,EAAE,QAAQ,UAAU,EAAkMc,GAAtLd,EAAY,CAAC,EAAE,QAAQH,GAAaG,EAAY,CAAC,EAAE,QAAQ,WAAWA,EAAY,CAAC,EAAE,QAAQ,YAAYA,EAAY,CAAC,EAAE,QAAQ,UAAUA,EAAY,CAAC,EAAE,QAAQ,aAAa,GAA2Ba,EAAM1C,EAAIiC,GAAQ,CAAC,OAAOQ,EAAa,SAASE,CAAc,CAAC,EAAG,EAAE,CAAC,CAAC,EAAyC,GAAGnB,EAAY,CAAC,GAAG,CAACF,EAAS,CAACsB,GAAgB,IAAI,CAACL,EAAQ,CAAE,EAAE,CAAC,CAAC,EAGpuD,IAAIM,EAAcjB,EAAO,EAAI,EAAEkB,GAAU,IAAYC,GAAOpB,EAAU,QAAQ,CAAC,CAAC,YAAAqB,CAAW,IAAI,CAAI,CAACH,EAAc,UAAUG,EAAY,OAAOA,EAAY,SAAST,EAAQ,EAAGM,EAAc,QAAQ,EAAM,CAAC,EAAI,CAAC,CAAC,EAAGV,EAAeV,GAAS,IAAI1B,EAAM,CAACkD,EAAMC,IAAQ,CAAC,IAAIC,EAAIC,EAAKC,EAAKC,EAAK,IAAIC,GAAK,OAAGL,IAAQ,IAAGK,GAAK1B,EAAY,CAAC,GAAMqB,IAAQnD,EAAM,OAAO,IAAGwD,GAAK1B,EAAY,CAAC,GAAwB2B,EAAKC,EAAY,CAAC,QAAQ,KAAK,SAAuBD,EAAK,KAAK,CAAC,MAAM,CAAC,QAAQ,UAAU,EAAE,SAAuBE,GAAaT,EAAM,CAAC,IAAIM,GAAK,MAAM,CAAC,IAAIJ,EAAIF,EAAM,SAAS,MAAME,IAAM,OAAO,OAAOA,EAAI,MAAM,MAAMhC,GAAWiC,EAAKH,EAAM,SAAS,MAAMG,IAAO,OAAO,OAAOA,EAAK,MAAM,OAAO,OAAOhC,GAAYiC,EAAKJ,EAAM,SAAS,MAAMI,IAAO,OAAO,OAAOA,EAAK,OAAO,OAAO,WAAW,CAAC,CAAC,GAAGC,EAAKL,EAAM,SAAS,MAAMK,IAAO,OAAO,OAAOA,EAAK,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAG,QAAQK,EAAE,EAAEA,EAAEtB,EAAYsB,IAAKvB,EAAc,CAAC,GAAGA,EAAc,GAAGX,GAAS,IAAI1B,EAAM,CAACkD,EAAMW,IAAa,CAAC,IAAIT,EAAIC,EAAKC,EAAKC,GAAK,OAAqBE,EAAKC,EAAY,CAAC,QAAQ,KAAK,SAAuBD,EAAK,KAAK,CAAC,MAAM,CAAC,QAAQ,UAAU,EAAE,SAAuBE,GAAaT,EAAM,CAAC,IAAIU,EAAE,IAAIC,EAAW,MAAM,CAAC,IAAIT,EAAIF,EAAM,SAAS,MAAME,IAAM,OAAO,OAAOA,EAAI,MAAM,MAAMhC,GAAWiC,EAAKH,EAAM,SAAS,MAAMG,IAAO,OAAO,OAAOA,EAAK,MAAM,OAAO,OAAOhC,GAAYiC,EAAKJ,EAAM,SAAS,MAAMI,IAAO,OAAO,OAAOA,EAAK,OAAO,OAAO,WAAW,CAAC,CAAC,GAAGC,GAAKL,EAAM,SAAS,MAAMK,KAAO,OAAO,OAAOA,GAAK,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,CAAE,EAAG,IAAMO,EAAe7B,EAAK,SAASA,EAAK,SAAS,KAAK,MAAMA,EAAK,OAAOA,EAAK,QAAQ,EAAQ8B,EAAalC,EAAO,IAAI,EAAQmC,EAAYnC,EAAO,IAAI,EAAQoC,GAASpC,EAAO,IAAI,EAAQqC,EAAKrC,EAAO,CAAC,EAAQsC,EAAQtC,EAAO,EAAK,EAAQuC,GAAgBC,GAAiB,EAAEC,GAAkBC,GAAG,CAAC,GAAG,CAACR,EAAa,SAAS,CAACD,GAAgBM,GAAiB,OAKhzDJ,EAAY,UAAU,OAAMA,EAAY,QAAQO,GAAGA,EAAEA,EAAEP,EAAY,QAAqE,IAAIQ,GAAjDP,GAAS,UAAU,KAAK,EAAEM,EAAEN,GAAS,UAA6BzD,EAAM,KAAQ2D,EAAQ,UAASK,GAAO/D,GAAayD,EAAK,SAASM,EAAMN,EAAK,QAAQO,GAAK,EAAEX,EAAeI,EAAK,OAAO,EAAqBxD,IAAY,SAAQqD,EAAa,QAAQ,MAAM,UAAU,eAAeG,EAAK,cAAiBxD,IAAY,UAASqD,EAAa,QAAQ,MAAM,UAAU,cAAcG,EAAK,cAAiBxD,IAAY,QAAOqD,EAAa,QAAQ,MAAM,UAAU,eAAeG,EAAK,cAAiBxD,IAAY,WAAUqD,EAAa,QAAQ,MAAM,UAAU,cAAcG,EAAK,cAAcD,GAAS,QAAQM,CAAE,CAAC,EAAc,IAAMG,GAAc/C,GAAa,WAAW,YAAkBgD,GAAe1D,EAAU,EAAQ2D,GAAa,IAAI3D,EAAU,EAAQ4D,GAAeC,GAAM5D,EAAU,EAAEyD,EAAc,EAAQI,GAAa,IAAI7D,EAAgB8D,GAAS,mBAAmBN,qBAAgCvD,MAAc0D,yBAAqCF,yBAAqCC,sBAAgCzD,MAAc4D,OAAmC,OAAItD,EAAuWgC,EAAK,UAAU,CAAC,MAAM,CAAC,GAAGwB,GAAe,QAAQ1C,EAAQ,QAAQjB,GAAa,gBAAgBP,EAAYiE,GAAS,OAAU,aAAajE,EAAYiE,GAAS,OAAU,UAAUjE,EAAYiE,GAAS,OAAU,SAAShE,GAAS,UAAU,QAAQ,EAAE,IAAIY,EAAU,SAAuBsD,EAAM,KAAK,CAAC,MAAM,CAAC,GAAGD,GAAe,IAAIhF,EAAI,IAAIS,IAAY,UAAU,CAACoD,EAAe,KAAKpD,IAAY,SAAS,CAACoD,EAAe,WAAWnD,GAAU,SAAS,WAAW,cAAcgB,GAAa,MAAM,SAAS,GAAGb,EAAK,EAAE,IAAIiD,EAAa,aAAa,IAAII,EAAQ,QAAQ,GAAK,aAAa,IAAIA,EAAQ,QAAQ,GAAM,SAAS,CAAC/B,EAAeC,CAAa,CAAC,CAAC,CAAC,CAAC,EAAx8B6C,EAAM,UAAU,CAAC,MAAMC,GAAkB,SAAS,CAAe1B,EAAK,MAAM,CAAC,MAAM2B,GAAY,SAAS,QAAG,CAAC,EAAgB3B,EAAK,IAAI,CAAC,MAAM4B,GAAY,SAAS,oBAAoB,CAAC,EAAgB5B,EAAK,IAAI,CAAC,MAAM6B,GAAe,SAAS,2DAA2D,CAAC,CAAC,CAAC,CAAC,CAA6pB,CAA2BxF,GAAO,aAAa,CAAC,IAAI,GAAG,QAAQ,GAAG,kBAAkB,CAAC,KAAK,QAAQ,KAAK,SAAS,SAAS,EAAE,EAAE,cAAc,CAAC,UAAU,GAAK,WAAW,EAAI,EAAE,YAAY,CAAC,YAAY,GAAK,SAAS,GAAM,UAAU,GAAG,UAAU,EAAE,UAAU,CAAC,EAAE,UAAU,EAAI,EAA0ByF,EAAoBzF,GAAO,CAAC,MAAM,CAAC,KAAK0F,EAAY,MAAM,MAAM,WAAW,QAAQ,CAAC,KAAKA,EAAY,iBAAiB,CAAC,EAAE,MAAM,CAAC,KAAKA,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,IAAI,aAAa,IAAI,KAAK,IAAI,eAAe,GAAK,KAAK,CAAC,EAAE,UAAU,CAAC,KAAKA,EAAY,KAAK,MAAM,YAAY,QAAQ,CAAC,OAAO,QAAQ,MAAM,QAAQ,EAAE,YAAY,CAAC,iBAAiB,kBAAkB,eAAe,gBAAiB,EAAE,aAAa,CAAC,OAAO,QAAQ,MAAM,QAAQ,EAAE,aAAa,OAAO,wBAAwB,EAAI,EAAE,UAAU,CAAC,KAAKA,EAAY,KAAK,MAAM,QAAQ,QAAQ,CAAC,aAAa,SAAS,UAAU,EAAE,YAAY,CAAC,UAAU,CAAC,MAAM,CAAC,YAAY,eAAe,cAAc,EAAE,KAAK,CAAC,YAAY,eAAe,cAAc,EAAE,IAAI,CAAC,aAAa,eAAe,aAAa,EAAE,OAAO,CAAC,aAAa,eAAe,aAAa,CAAC,CAAC,EAAE,aAAa,SAAS,wBAAwB,EAAI,EAAE,IAAI,CAAC,KAAKA,EAAY,OAAO,MAAM,KAAK,EAAE,QAAQ,CAAC,MAAM,UAAU,KAAKA,EAAY,YAAY,UAAU,iBAAiB,aAAa,CAAC,UAAU,kBAAkB,EAAE,UAAU,CAAC,aAAa,eAAe,gBAAgB,aAAc,EAAE,YAAY,CAAC,IAAI,IAAI,IAAI,GAAG,EAAE,IAAI,CAAC,EAAE,cAAc,CAAC,KAAKA,EAAY,OAAO,MAAM,SAAS,SAAS,CAAC,UAAU,CAAC,KAAKA,EAAY,QAAQ,MAAM,QAAQ,aAAa,OAAO,cAAc,UAAU,aAAa,EAAI,EAAE,WAAW,CAAC,KAAKA,EAAY,QAAQ,MAAM,SAAS,aAAa,OAAO,cAAc,UAAU,aAAa,EAAI,CAAC,CAAC,EAAE,YAAY,CAAC,KAAKA,EAAY,OAAO,MAAM,WAAW,SAAS,CAAC,YAAY,CAAC,KAAKA,EAAY,QAAQ,MAAM,OAAO,aAAa,EAAI,EAAE,SAAS,CAAC,KAAKA,EAAY,QAAQ,MAAM,WAAW,aAAa,OAAO,cAAc,OAAO,aAAa,GAAM,OAAOzF,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAK,CAAC,EAAE,UAAU,CAAC,KAAKyF,EAAY,OAAO,MAAM,QAAQ,aAAa,GAAG,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAOzF,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,EAAE,UAAU,CAAC,KAAKyF,EAAY,OAAO,MAAM,QAAQ,aAAa,EAAE,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAOzF,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,EAAE,UAAU,CAAC,KAAKyF,EAAY,OAAO,MAAM,UAAU,aAAa,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,OAAOzF,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,CAAC,CAAC,EAAE,YAAY,CAAC,KAAKyF,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,aAAa,GAAG,KAAK,GAAG,eAAe,GAAK,YAAY,8CAA8C,CAAC,CAAC,EAA2B,IAAMP,GAAe,CAAC,QAAQ,OAAO,MAAM,OAAO,OAAO,OAAO,SAAS,OAAO,UAAU,OAAO,WAAW,SAAS,OAAO,EAAE,QAAQ,EAAE,cAAc,OAAO,WAAW,MAAM,EAAqBE,GAAkB,CAAC,QAAQ,OAAO,MAAM,OAAO,OAAO,OAAO,aAAa,SAAS,WAAW,SAAS,cAAc,SAAS,MAAM,OAAO,WAAW,0BAA0B,SAAS,GAAG,SAAS,SAAS,QAAQ,qBAAqB,EAAQC,GAAY,CAAC,SAAS,GAAG,aAAa,EAAE,EAAQC,GAAY,CAAC,OAAO,EAAE,aAAa,GAAG,WAAW,IAAI,UAAU,QAAQ,EAAQC,GAAe,CAAC,OAAO,EAAE,QAAQ,GAAG,SAAS,IAAI,WAAW,IAAI,UAAU,QAAQ,EAAiDR,GAAM,CAACW,EAAIC,EAAIC,IAAM,KAAK,IAAI,KAAK,IAAIF,EAAIC,CAAG,EAAEC,CAAG,ECjB9zK,IAAMC,GAAS,qBAKlI,SAASC,GAAQC,EAAM,CAAC,GAAK,CAAC,MAAAC,EAAM,IAAIC,CAAS,EAAEF,EAKbG,EALwCC,GAAY,IAAI,CAAC,GAAGF,EAAU,OAAO,EAAE,OAAO,KACvI,IAAMG,EAAYH,EAAU,SAAS,QAAQ,EAAEA,EAAU,MAAMJ,EAAQ,EAAE,CAAC,EAAE,QAAQ,IAAI,EAAE,EAAEI,EAAgBI,EAAI,IAAI,IAAID,CAAW,EACnI,OAAIC,EAAI,SAAS,SAAS,OAAO,IAAEA,EAAI,SAAS,SAASA,EAAI,YAC7DA,EAAI,OAAO,SAASL,IAEbK,EAAI,SAAS,CAAE,EAAE,CAACL,EAAMC,CAAS,CAAC,EAAkC,EAAE,OAAqBK,EAAK,SAAS,CAAC,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,YAAY,EAAE,IAAIJ,CAAU,CAAC,CAAG,CAACJ,GAAQ,aAAa,CAAC,IAAI,kFAAkF,MAAM,IAAI,OAAO,IAAI,MAAM,CAAC,EAAES,EAAoBT,GAAQ,CAAC,IAAI,CAAC,KAAKU,EAAY,OAAO,MAAM,KAAK,EAAE,MAAM,CAAC,KAAKA,EAAY,KAAK,wBAAwB,GAAK,QAAQ,CAAC,EAAE,CAAC,EAAE,aAAa,CAAC,KAAK,KAAK,CAAC,CAAC,CAAC,ECTlD,IAAMC,GAAgB,CAAC,UAAU,CAAC,MAAM,EAAI,CAAC,EAAQC,GAAW,CAAC,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,SAAS,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,EAAmB,EAAQC,EAAWN,GAAmCG,EAAO,WAAiBI,EAAmBC,GAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,GAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAaC,CAAQ,EAAQC,GAAS,CAAC,CAAC,WAAAC,EAAW,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,KAAAC,EAAK,MAAAC,EAAM,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAKC,EAAMC,EAAM,MAAM,CAAC,GAAGH,EAAM,WAAWC,EAAKR,GAAkDO,EAAM,aAAa,MAAMC,IAAO,OAAOA,EAAK,qBAAqB,WAAWC,EAAMN,GAAmCI,EAAM,aAAa,MAAME,IAAQ,OAAOA,EAAM,CAAC,IAAI,sEAAsE,EAAE,WAAWC,EAAML,GAAmCE,EAAM,aAAa,MAAMG,IAAQ,OAAOA,EAAM,eAAe,UAAUN,GAAgCG,EAAM,SAAS,CAAE,EAAQI,GAAuB,CAACJ,EAAM1B,IAAWA,EAAS,KAAK,GAAG,EAAE0B,EAAM,iBAAuBK,GAA6BC,GAAW,SAASN,EAAMO,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAArC,EAAQ,UAAAsC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,GAAGC,EAAS,EAAE1B,GAASQ,CAAK,EAAO,CAAC,YAAAmB,GAAY,WAAAC,GAAW,eAAAC,GAAe,gBAAAC,EAAgB,WAAAC,GAAW,SAAAjD,CAAQ,EAAEkD,GAAgB,CAAC,WAAAvD,GAAW,eAAe,YAAY,gBAAAD,GAAgB,QAAAQ,EAAQ,kBAAAL,EAAiB,CAAC,EAAQsD,EAAiBrB,GAAuBJ,EAAM1B,CAAQ,EAAQoD,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,GAAM,EAAQC,EAAsB,CAAalB,EAAS,EAAQmB,GAAkBC,GAAqB,EAAE,OAAoB5C,EAAK6C,EAAY,CAAC,GAAGpB,GAA4Ce,EAAgB,SAAsBxC,EAAKC,GAAS,CAAC,QAAQf,EAAS,QAAQ,GAAM,SAAsBc,EAAKR,GAAW,CAAC,MAAMH,GAAY,SAAsBW,EAAK8C,GAAK,CAAC,KAAKjB,EAAU,aAAa,GAAK,SAAsBkB,EAAM7C,EAAO,EAAE,CAAC,GAAG4B,GAAU,UAAU,GAAGkB,GAAGlE,GAAkB,GAAG4D,EAAsB,iBAAiBlB,EAAUQ,EAAU,kBAAkB,cAAc,GAAK,mBAAmB,YAAY,iBAAiBK,EAAiB,SAAS,YAAY,WAAW,IAAIH,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,aAAa,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,MAAM,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,YAAY,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,WAAW,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,IAAIf,GAA6BmB,EAAK,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,yEAAyE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,4EAA4E,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,GAAGf,CAAK,EAAE,SAAS,CAAC,kBAAkB,CAAC,gBAAgBK,CAAS,CAAC,EAAE,GAAG5C,GAAqB,CAAC,kBAAkB,CAAC,mBAAmB,MAAS,CAAC,EAAE+C,GAAYE,EAAc,EAAE,SAAS,CAAcjC,EAAKiD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,MAAM,OAAO,GAAG3D,GAAkBqC,CAAS,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,iBAAiBU,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,CAAC,CAAC,EAAerC,EAAKkD,EAAS,CAAC,sBAAsB,GAAK,SAAsBlD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,0FAA0F,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiBmC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kEAAkE,gCAAgC,WAAW,EAAE,KAAKX,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQyB,GAAI,CAAC,kFAAkF,gFAAgF,iUAAiU,iHAAiH,oIAAoI,+WAA+W,GAAeA,GAAI,+bAA+b,EASrqNC,GAAgBC,GAAQpC,GAAUkC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,eAAeA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,KAAK,EAAEG,EAAoBH,GAAgB,CAAC,UAAU,CAAC,aAAa,eAAe,gBAAgB,GAAM,MAAM,QAAQ,KAAKI,EAAY,MAAM,EAAE,UAAU,CAAC,wBAAwB,kCAAkC,MAAM,QAAQ,KAAKA,EAAY,eAAe,EAAE,UAAU,CAAC,aAAa,qBAAqB,MAAM,aAAa,KAAKA,EAAY,KAAK,EAAE,UAAU,CAAC,MAAM,OAAO,KAAKA,EAAY,IAAI,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,qEAAqE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,kEAAkE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,kEAAkE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,uEAAuE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGM,GAAoCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECTrpD,IAAMC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,EAAkO,IAAMC,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,GAAW,CAAC,CAAC,MAAAD,EAAM,SAAAE,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,EAAmB,EAAQC,EAAWN,GAAmCG,EAAO,WAAiBI,EAAmBC,GAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,GAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAS,CAAC,CAAC,QAAAC,EAAQ,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,MAAAC,EAAM,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAKC,EAAM,MAAM,CAAC,GAAGF,EAAM,WAAWC,EAAKP,GAAyCM,EAAM,aAAa,MAAMC,IAAO,OAAOA,EAAK,UAAU,UAAUJ,GAAmCG,EAAM,UAAU,WAAWE,EAAMJ,GAAmCE,EAAM,aAAa,MAAME,IAAQ,OAAOA,EAAM,MAAM,CAAE,EAAQC,GAAuB,CAACH,EAAMI,IAAeJ,EAAM,iBAAwBI,EAAS,KAAK,GAAG,EAAEJ,EAAM,iBAAwBI,EAAS,KAAK,GAAG,EAAUC,GAA6BC,GAAW,SAASN,EAAMO,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAEzB,GAASO,CAAK,EAAO,CAAC,YAAAmB,GAAY,WAAAC,GAAW,oBAAAC,GAAoB,gBAAAC,GAAgB,eAAAC,EAAe,UAAAC,GAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAAtB,CAAQ,EAAEuB,GAAgB,CAAC,eAAe,YAAY,QAAAb,EAAQ,kBAAAc,EAAiB,CAAC,EAAQC,EAAiB1B,GAAuBH,EAAMI,CAAQ,EAAQ0B,EAAWC,EAAO,IAAI,EAAQC,GAAsBC,GAAM,EAAQC,EAAsB,CAAatB,GAAuBA,EAAS,EAAQuB,EAAkBC,GAAqB,EAAE,OAAoB/C,EAAKgD,EAAY,CAAC,GAAGxB,GAA4CmB,GAAgB,SAAsB3C,EAAKC,GAAS,CAAC,QAAQc,EAAS,QAAQ,GAAM,SAAsBf,EAAKR,GAAW,CAAC,MAAMH,GAAY,SAAsB4D,EAAM/C,EAAO,IAAI,CAAC,GAAG2B,EAAU,GAAGI,GAAgB,UAAUiB,GAAGC,GAAkB,GAAGN,EAAsB,iBAAiBtB,EAAUQ,EAAU,EAAE,mBAAmB,YAAY,iBAAiBS,EAAiB,SAAS,YAAY,IAAItB,GAA6BuB,EAAK,MAAM,CAAC,GAAGnB,CAAK,EAAE,SAAS,CAActB,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBsC,EAAiB,SAAS,YAAY,SAAsBxC,EAAKoD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQC,IAAwFP,GAAkB,GAAI,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,MAAM,QAAQ,GAAGxD,GAAkBsC,CAAS,CAAC,EAAE,UAAU,gBAAgB,iBAAiBY,EAAiB,SAAS,WAAW,CAAC,CAAC,CAAC,EAAeS,EAAM/C,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBsC,EAAiB,SAAS,YAAY,SAAS,CAAcxC,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAAsBtD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiBsC,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,KAAKd,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe1B,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAAsBtD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,kSAA6R,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiBsC,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,KAAKb,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQ4B,GAAI,CAAC,kFAAkF,kFAAkF,kQAAkQ,uRAAuR,+FAA+F,wRAAwR,oKAAoK,sLAAsL,6zBAA6zB,GAAeA,GAAI,GAAgBA,EAAG,EASztOC,GAAgBC,GAAQzC,GAAUuC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,cAAcA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAG,EAAEG,EAAoBH,GAAgB,CAAC,UAAU,CAAC,aAAa,OAAO,gBAAgB,GAAM,MAAM,QAAQ,KAAKI,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,UAAU,gBAAgB,GAAM,MAAM,UAAU,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,YAAY,GAAG,MAAM,QAAQ,KAAKA,EAAY,eAAe,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGM,GAAoCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECT1rB,IAAMC,GAAkBC,EAASC,EAAY,EAAQC,GAAYF,EAASG,EAAM,EAAQC,GAAmBJ,EAASK,CAAa,EAAQC,GAAcN,EAASO,EAAQ,EAAQC,GAAcR,EAASS,EAAQ,EAAQC,GAAgBV,EAASW,EAAU,EAAQC,GAAkBZ,EAASa,EAAY,EAAQC,GAAad,EAASe,EAAO,EAAQC,GAAgBC,GAAOC,CAAS,EAAQC,GAAYnB,EAASoB,EAAM,EAAQC,GAAY,CAAC,UAAU,qBAAqB,UAAU,sBAAsB,UAAU,4CAA4C,EAAoD,IAAMC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,iBAAiB,EAAQC,GAAO,CAACC,EAAEC,IAAY,OAAOD,GAAI,UAAU,OAAOC,GAAI,SAASD,EAAE,YAAY,IAAIC,EAAE,YAAY,EAAED,IAAIC,EAAUC,GAAOC,GAAc,CAACA,EAAcC,GAAU,CAAC,CAAC,MAAAC,EAAM,SAAAC,EAAS,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAKC,GAAaJ,CAAK,EAAE,OAAOE,EAASC,CAAI,CAAE,EAAQE,GAAY,CAACC,EAAMC,IAAM,CAAC,GAAG,GAACD,GAAO,OAAOA,GAAQ,UAAkB,MAAM,CAAC,GAAGA,EAAM,IAAAC,CAAG,CAAE,EAAQC,GAASA,GAAiB,EAAQC,GAAwB,CAAC,QAAQ,YAAY,MAAM,YAAY,OAAO,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAuCC,EAAK,MAAM,CAAC,GAAGF,EAAM,SAASE,GAAMD,EAAuCN,GAAwBK,EAAM,OAAO,KAAK,MAAMC,IAAyC,OAAOA,EAAuCD,EAAM,WAAW,MAAME,IAAO,OAAOA,EAAK,WAAW,CAAE,EAAQC,GAA6BC,GAAW,SAASJ,EAAMK,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,mBAAAC,EAAmB,mBAAAC,EAAmB,mBAAAC,EAAmB,mBAAAC,EAAmB,YAAAC,GAAY,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,EAAmB,YAAAC,GAAY,mBAAAC,EAAmB,mBAAAC,EAAmB,mBAAAC,EAAmB,mBAAAC,EAAmB,YAAAC,EAAY,GAAGC,EAAS,EAAEhC,GAASI,CAAK,EAAQ6B,GAAU,IAAI,CAAC,IAAMC,EAAUpC,GAAiB,OAAUY,CAAY,EAAE,GAAGwB,EAAU,OAAO,CAAC,IAAIC,EAAU,SAAS,cAAc,qBAAqB,EAAKA,EAAWA,EAAU,aAAa,UAAUD,EAAU,MAAM,GAAQC,EAAU,SAAS,cAAc,MAAM,EAAEA,EAAU,aAAa,OAAO,QAAQ,EAAEA,EAAU,aAAa,UAAUD,EAAU,MAAM,EAAE,SAAS,KAAK,YAAYC,CAAS,GAAI,EAAE,CAAC,OAAUzB,CAAY,CAAC,EAAQ0B,GAAmB,IAAI,CAAC,IAAMF,EAAUpC,GAAiB,OAAUY,CAAY,EAAqC,GAAnC,SAAS,MAAMwB,EAAU,OAAO,GAAMA,EAAU,SAAS,CAAC,IAAIG,GAAyBA,EAAwB,SAAS,cAAc,uBAAuB,KAAK,MAAMA,IAA0B,QAAcA,EAAwB,aAAa,UAAUH,EAAU,QAAQ,EAAG,IAAMI,EAAQJ,EAAU,cAAc,GAAGI,EAAQ,CAAC,IAAMC,EAAK,SAAS,KAAKA,EAAK,UAAU,QAAQC,GAAGA,EAAE,WAAW,cAAc,GAAGD,EAAK,UAAU,OAAOC,CAAC,CAAC,EAAED,EAAK,UAAU,IAAI,GAAGL,EAAU,4BAA4B,EAAG,MAAM,IAAI,CAAII,GAAQ,SAAS,KAAK,UAAU,OAAO,GAAGJ,EAAU,4BAA4B,CAAE,CAAE,EAAE,CAAC,OAAUxB,CAAY,CAAC,EAAE,GAAK,CAAC+B,EAAYC,CAAmB,EAAEC,GAA8B3B,EAAQ4B,GAAY,EAAK,EAAQC,GAAe,OAAgBC,EAAWC,EAAO,IAAI,EAAQC,EAAOC,GAAU,EAAQC,EAAsBC,GAAM,EAAQC,GAAsB,CAAatC,EAAS,EAAE,OAAAuC,GAAiB,CAAC,CAAC,EAAsBC,EAAKC,GAA0B,SAAS,CAAC,MAAM,CAAC,iBAAiB,YAAY,kBAAAxE,EAAiB,EAAE,SAAsByE,EAAMC,EAAY,CAAC,GAAG1C,GAA4CmC,EAAgB,SAAS,CAAcM,EAAME,EAAO,IAAI,CAAC,GAAG1B,GAAU,UAAU2B,GAAG7E,GAAkB,GAAGsE,GAAsB,iBAAiBtC,CAAS,EAAE,IAAIL,GAA6BqC,EAAK,MAAM,CAAC,GAAGjC,CAAK,EAAE,SAAS,CAAcyC,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,KAAK,YAAY,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,KAAK,YAAY,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,KAAK,YAAY,CAAC,EAAeA,EAAKM,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,GAA4BP,EAAKQ,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAQ,EAAE,EAAE,SAAsBR,EAAKS,EAAU,CAAC,UAAU,2BAA2B,SAAsBT,EAAKU,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUoB,EAAc,CAAC,EAAE,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,EAAc,CAAC,CAAC,CAAC,EAAE,SAAsBP,EAAKW,GAAa,CAAC,UAAUJ,EAAc,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,qBAAqB,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeP,EAAKQ,EAA0B,CAAC,SAAsBR,EAAKS,EAAU,CAAC,UAAU,2BAA2B,SAAsBT,EAAKY,GAAO,CAAC,UAAU,SAAS,UAAU,OAAO,YAAY,CAAC,UAAU,EAAE,YAAY,GAAM,UAAU,EAAE,UAAU,EAAE,SAAS,EAAK,EAAE,IAAI,GAAG,OAAO,OAAO,YAAY,GAAG,GAAG,YAAY,SAAS,YAAY,QAAQ,GAAG,cAAc,GAAG,YAAY,GAAG,eAAe,GAAM,aAAa,GAAG,WAAW,GAAG,cAAc,CAAC,WAAW,GAAK,UAAU,EAAI,EAAE,MAAM,CAAcZ,EAAKI,EAAO,IAAI,CAAC,UAAU,iBAAiB,SAAsBJ,EAAKa,EAAS,CAAC,sBAAsB,GAAK,SAAsBb,EAAWc,EAAS,CAAC,SAAsBd,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,iEAAiE,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKI,EAAO,IAAI,CAAC,UAAU,iBAAiB,SAAsBJ,EAAKa,EAAS,CAAC,sBAAsB,GAAK,SAAsBb,EAAWc,EAAS,CAAC,SAAsBd,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,iEAAiE,EAAE,SAAS,KAAK,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKI,EAAO,IAAI,CAAC,UAAU,gBAAgB,SAAsBJ,EAAKa,EAAS,CAAC,sBAAsB,GAAK,SAAsBb,EAAWc,EAAS,CAAC,SAAsBd,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,iEAAiE,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKe,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,mBAAmB,cAAc,KAAK,aAAa,CAAC,CAAC,EAAE,MAAM,IAAI,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeb,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,KAAK,OAAO,SAAS,CAAcF,EAAKU,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,kBAAkB,EAAE,UAAU,CAAC,EAAE,iBAAiB,CAAC,EAAE,SAAsBa,EAAKQ,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,EAAE,kBAAkB,SAAsBR,EAAKS,EAAU,CAAC,UAAU,0BAA0B,SAAsBT,EAAKgB,EAAc,CAAC,UAAU,wFAAwF,OAAO,OAAO,GAAG,YAAY,UAAU,kEAAkE,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehB,EAAKU,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,kBAAkB,EAAE,UAAU,CAAC,EAAE,iBAAiB,CAAC,EAAE,SAAsBa,EAAKQ,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,EAAE,kBAAkB,SAAsBR,EAAKS,EAAU,CAAC,UAAU,2BAA2B,SAAsBT,EAAKgB,EAAc,CAAC,UAAU,gKAAgK,OAAO,OAAO,GAAG,YAAY,UAAU,yEAAyE,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehB,EAAKQ,EAA0B,CAAC,SAAsBR,EAAKS,EAAU,CAAC,UAAU,2BAA2B,SAAsBT,EAAKY,GAAO,CAAC,UAAU,aAAa,UAAU,OAAO,YAAY,CAAC,UAAU,EAAE,YAAY,GAAM,UAAU,EAAE,UAAU,EAAE,SAAS,EAAK,EAAE,IAAI,GAAG,OAAO,OAAO,YAAY,GAAG,GAAG,YAAY,SAAS,YAAY,QAAQ,EAAE,cAAc,EAAE,YAAY,EAAE,eAAe,GAAM,aAAa,EAAE,WAAW,EAAE,cAAc,CAAC,WAAW,GAAK,UAAU,EAAI,EAAE,MAAM,CAAcZ,EAAKe,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,IAAI,YAAY,KAAK,WAAW,IAAI,IAAI,uEAAuE,EAAE,UAAU,gBAAgB,CAAC,EAAef,EAAKe,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,KAAK,WAAW,IAAI,MAAM,QAAQ,IAAI,uFAAuF,OAAO,oKAAoK,EAAE,UAAU,iBAAiB,mBAAmB,WAAW,KAAK,UAAU,CAAC,EAAef,EAAKe,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,IAAI,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,yFAAyF,OAAO,uKAAuK,EAAE,UAAU,iBAAiB,mBAAmB,wCAAwC,KAAK,uCAAuC,CAAC,EAAef,EAAKe,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,MAAM,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,0FAA0F,OAAO,yKAAyK,EAAE,UAAU,gBAAgB,mBAAmB,uCAAuC,KAAK,sCAAsC,CAAC,EAAef,EAAKe,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,IAAI,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,0FAA0F,OAAO,yKAAyK,EAAE,UAAU,iBAAiB,mBAAmB,uCAAuC,KAAK,sCAAsC,CAAC,EAAef,EAAKe,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,KAAK,WAAW,IAAI,MAAM,QAAQ,IAAI,yFAAyF,OAAO,wKAAwK,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,KAAK,UAAU,CAAC,EAAef,EAAKe,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,IAAI,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,0FAA0F,OAAO,uQAAuQ,EAAE,UAAU,gBAAgB,mBAAmB,eAAe,KAAK,cAAc,CAAC,EAAef,EAAKe,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,KAAK,WAAW,IAAI,MAAM,QAAQ,IAAI,yFAAyF,OAAO,mQAAmQ,EAAE,UAAU,iBAAiB,mBAAmB,WAAW,KAAK,UAAU,CAAC,EAAef,EAAKe,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,IAAI,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,yFAAyF,OAAO,oQAAoQ,EAAE,UAAU,iBAAiB,mBAAmB,eAAe,KAAK,cAAc,CAAC,EAAef,EAAKe,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,KAAK,MAAM,QAAQ,IAAI,yFAAyF,OAAO,uKAAuK,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,KAAK,UAAU,CAAC,EAAef,EAAKe,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,2FAA2F,OAAO,wWAAwW,EAAE,UAAU,iBAAiB,mBAAmB,WAAW,KAAK,UAAU,CAAC,EAAef,EAAKe,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,IAAI,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wFAAwF,OAAO,iQAAiQ,EAAE,UAAU,iBAAiB,mBAAmB,eAAe,KAAK,cAAc,CAAC,CAAC,EAAE,MAAM,IAAI,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAef,EAAKU,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,iBAAiB,EAAE,UAAU,CAAC,EAAE,kBAAkB,CAAC,EAAE,SAAsBa,EAAKQ,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,EAAE,mBAAmB,SAAsBR,EAAKS,EAAU,CAAC,UAAU,0BAA0B,SAAsBT,EAAKgB,EAAc,CAAC,UAAU,iBAAiB,OAAO,OAAO,GAAG,YAAY,UAAU,kEAAkE,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehB,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAKiB,GAAmB,CAAC,SAAsBjB,EAAKjE,GAAU,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,YAAY,KAAKmF,GAAK,KAAK,YAAY,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,CAAC,EAAE,SAAS,CAACC,EAAWC,EAAeC,IAAwBrB,EAAKsB,GAAU,CAAC,SAASH,EAAW,IAAI,CAAC,CAAC,UAAUtD,EAAmB,UAAUF,EAAmB,GAAGI,EAAY,UAAUD,EAAmB,UAAUF,CAAkB,EAAE2D,KAAI,CAAC5D,IAA0EA,EAAmB,IAAKC,IAA0EA,EAAmB,IAAGC,IAA0EA,EAAmB,IAAGC,IAA0EA,EAAmB,IAAG,IAAM0D,EAAQ3F,GAAOH,GAAOiC,EAAmB,EAAI,CAAC,EAAE,OAAoBqC,EAAKG,EAAY,CAAC,GAAG,aAAapC,IAAc,SAAsBiC,EAAKyB,GAAqB,SAAS,CAAC,MAAM,CAAC,UAAU3D,CAAkB,EAAE,SAAS0D,GAAsBxB,EAAKM,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,CAAC,UAAUxC,CAAkB,CAAC,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,CAAC,UAAUA,CAAkB,CAAC,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,CAAC,UAAUA,CAAkB,CAAC,CAAC,EAAE,SAAS4D,GAA6B1B,EAAKU,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,qBAAqB,EAAE,kBAAkB,EAAE,UAAU,CAAC,EAAE,iBAAiB,CAAC,EAAE,SAAsBa,EAAKQ,EAA0B,CAAC,OAAO,GAAG,MAAM,+BAA+B,EAAE,kBAAkB,SAAsBR,EAAKS,EAAU,CAAC,UAAU,0BAA0B,SAAsBT,EAAKU,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUuC,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsB1B,EAAK2B,GAAS,CAAC,OAAO,OAAO,GAAG,YAAY,UAAUD,EAAe,CAAC,EAAE,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAU7D,EAAmB,MAAM,OAAO,UAAUD,CAAkB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEG,CAAW,CAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeiC,EAAKU,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,kBAAkB,CAAC,EAAE,SAAsBa,EAAKQ,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,EAAE,mBAAmB,SAAsBR,EAAKS,EAAU,CAAC,UAAU,2BAA2B,SAAsBT,EAAKgB,EAAc,CAAC,UAAU,4BAA4B,OAAO,OAAO,GAAG,YAAY,UAAU,kEAAkE,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehB,EAAKU,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,kBAAkB,CAAC,EAAE,SAAsBa,EAAKQ,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,EAAE,mBAAmB,SAAsBR,EAAKS,EAAU,CAAC,UAAU,0BAA0B,SAAsBT,EAAKgB,EAAc,CAAC,UAAU,iHAAiH,OAAO,OAAO,GAAG,YAAY,UAAU,yEAAyE,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehB,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBE,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcF,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAKiB,GAAmB,CAAC,SAAsBjB,EAAKjE,GAAU,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,YAAY,KAAK6F,GAAc,KAAK,YAAY,EAAE,MAAM,CAAC,KAAK,eAAe,MAAM,CAAC,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,CAAC,EAAE,SAAS,CAACC,EAAYC,EAAgBC,IAAyB/B,EAAKsB,GAAU,CAAC,SAASO,EAAY,IAAI,CAAC,CAAC,UAAU5D,EAAmB,UAAUC,EAAmB,GAAGE,EAAY,UAAUD,EAAmB,UAAUH,CAAkB,EAAEuD,MAAKvD,IAA0EA,EAAmB,IAAGC,IAA0EA,EAAmB,IAAGC,IAA0EA,EAAmB,IAAGC,IAA0EA,EAAmB,IAAuB6B,EAAKG,EAAY,CAAC,GAAG,aAAa/B,IAAc,SAAsB4B,EAAKyB,GAAqB,SAAS,CAAC,MAAM,CAAC,UAAUtD,CAAkB,EAAE,SAAsB6B,EAAKU,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,kCAAkC,EAAE,kBAAkB,CAAC,EAAE,SAAsBa,EAAKQ,EAA0B,CAAC,OAAO,GAAG,MAAM,4CAA4C,EAAE,kBAAkB,SAAsBR,EAAKS,EAAU,CAAC,UAAU,2BAA2B,SAAsBT,EAAKgC,GAAS,CAAC,UAAU/D,EAAmB,UAAUD,EAAmB,OAAO,OAAO,UAAUE,EAAmB,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEE,CAAW,EAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe4B,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKiB,GAAmB,CAAC,SAAsBjB,EAAKjE,GAAU,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,YAAY,KAAK6F,GAAc,KAAK,YAAY,EAAE,MAAM,CAAC,KAAK,eAAe,MAAM,CAAC,EAAE,OAAO,CAAC,KAAK,eAAe,MAAM,CAAC,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,CAAC,EAAE,SAAS,CAACK,EAAYC,EAAgBC,IAAyBnC,EAAKsB,GAAU,CAAC,SAASW,EAAY,IAAI,CAAC,CAAC,UAAU3D,EAAmB,UAAUC,EAAmB,GAAGE,EAAY,UAAUD,EAAmB,UAAUH,CAAkB,EAAEkD,MAAKlD,IAA0EA,EAAmB,IAAGC,IAA0EA,EAAmB,IAAGC,IAA0EA,EAAmB,IAAGC,IAA0EA,EAAmB,IAAuBwB,EAAKG,EAAY,CAAC,GAAG,aAAa1B,IAAc,SAAsBuB,EAAKyB,GAAqB,SAAS,CAAC,MAAM,CAAC,UAAUjD,CAAkB,EAAE,SAAsBwB,EAAKU,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,kCAAkC,EAAE,kBAAkB,CAAC,EAAE,SAAsBa,EAAKQ,EAA0B,CAAC,OAAO,GAAG,MAAM,4CAA4C,EAAE,kBAAkB,SAAsBR,EAAKS,EAAU,CAAC,UAAU,0BAA0B,SAAsBT,EAAKgC,GAAS,CAAC,UAAU1D,EAAmB,UAAUD,EAAmB,OAAO,OAAO,UAAUE,EAAmB,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEE,CAAW,EAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuB,EAAKU,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,iBAAiB,CAAC,EAAE,SAAsBa,EAAKQ,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,EAAE,kBAAkB,SAAsBR,EAAKS,EAAU,CAAC,UAAU,2BAA2B,SAAsBT,EAAKgB,EAAc,CAAC,UAAU,WAAW,OAAO,OAAO,GAAG,YAAY,UAAU,kEAAkE,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehB,EAAKU,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,iBAAiB,CAAC,EAAE,SAAsBa,EAAKQ,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,EAAE,kBAAkB,SAAsBR,EAAKS,EAAU,CAAC,UAAU,0BAA0B,SAAsBT,EAAKgB,EAAc,CAAC,UAAU,4IAA4I,OAAO,OAAO,GAAG,YAAY,UAAU,yEAAyE,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehB,EAAKU,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,iBAAiB,CAAC,EAAE,SAAsBa,EAAKQ,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,EAAE,kBAAkB,SAAsBR,EAAKS,EAAU,CAAC,UAAU,yBAAyB,SAAsBT,EAAKgB,EAAc,CAAC,UAAU,aAAa,OAAO,OAAO,GAAG,YAAY,UAAU,kEAAkE,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehB,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBE,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcF,EAAKU,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,uCAAuC,EAAE,iBAAiB,EAAE,UAAU,CAAC,MAAM,6DAA6D,CAAC,EAAE,SAAsBa,EAAKQ,EAA0B,CAAC,OAAO,IAAI,MAAM,8DAA8D,EAAE,kBAAkB,SAAsBR,EAAKS,EAAU,CAAC,UAAU,0BAA0B,SAAsBT,EAAKoC,GAAW,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,UAAU,mSAA8R,MAAM,OAAO,UAAU/F,GAAY,CAAC,IAAI,qEAAqE,EAAE,EAAE,EAAE,UAAU,2BAA2B,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe2D,EAAKU,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,uCAAuC,EAAE,iBAAiB,EAAE,UAAU,CAAC,MAAM,6DAA6D,CAAC,EAAE,SAAsBa,EAAKQ,EAA0B,CAAC,OAAO,IAAI,MAAM,8DAA8D,EAAE,kBAAkB,SAAsBR,EAAKS,EAAU,CAAC,UAAU,0BAA0B,SAAsBT,EAAKoC,GAAW,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,UAAU,+NAA+N,MAAM,OAAO,UAAU/F,GAAY,CAAC,IAAI,qEAAqE,EAAE,EAAE,EAAE,UAAU,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe2D,EAAKU,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,uCAAuC,EAAE,iBAAiB,EAAE,UAAU,CAAC,MAAM,8DAA8D,EAAE,iBAAiB,CAAC,EAAE,SAAsBa,EAAKQ,EAA0B,CAAC,OAAO,IAAI,MAAM,8DAA8D,EAAE,kBAAkB,SAAsBR,EAAKS,EAAU,CAAC,UAAU,0BAA0B,SAAsBT,EAAKoC,GAAW,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,UAAU,+MAA+M,MAAM,OAAO,UAAU/F,GAAY,CAAC,IAAI,qEAAqE,EAAE,EAAE,EAAE,UAAU,0BAA0B,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe2D,EAAKU,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,uCAAuC,EAAE,iBAAiB,EAAE,UAAU,CAAC,MAAM,8DAA8D,EAAE,iBAAiB,CAAC,EAAE,SAAsBa,EAAKQ,EAA0B,CAAC,OAAO,IAAI,MAAM,8DAA8D,EAAE,kBAAkB,SAAsBR,EAAKS,EAAU,CAAC,UAAU,2BAA2B,SAAsBT,EAAKoC,GAAW,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,UAAU,gSAAgS,MAAM,OAAO,UAAU/F,GAAY,CAAC,IAAI,sEAAsE,EAAE,EAAE,EAAE,UAAU,wBAAwB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe2D,EAAKU,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,uCAAuC,EAAE,iBAAiB,EAAE,UAAU,CAAC,MAAM,8DAA8D,EAAE,iBAAiB,CAAC,EAAE,SAAsBa,EAAKQ,EAA0B,CAAC,OAAO,IAAI,MAAM,8DAA8D,EAAE,kBAAkB,SAAsBR,EAAKS,EAAU,CAAC,UAAU,2BAA2B,SAAsBT,EAAKoC,GAAW,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,UAAU,4MAA4M,MAAM,OAAO,UAAU/F,GAAY,CAAC,IAAI,mEAAmE,EAAE,EAAE,EAAE,UAAU,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe2D,EAAKU,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,iBAAiB,EAAE,UAAU,CAAC,EAAE,iBAAiB,CAAC,EAAE,SAAsBa,EAAKQ,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,EAAE,kBAAkB,SAAsBR,EAAKS,EAAU,CAAC,UAAU,0BAA0B,SAAsBT,EAAKgB,EAAc,CAAC,UAAU,+BAA+B,OAAO,OAAO,GAAG,YAAY,UAAU,kEAAkE,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAed,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcF,EAAKU,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,iBAAiB,EAAE,UAAU,CAAC,EAAE,iBAAiB,CAAC,EAAE,SAAsBa,EAAKQ,EAA0B,CAAC,OAAO,GAAG,EAAE,kBAAkB,SAAsBR,EAAKS,EAAU,CAAC,UAAU,2BAA2B,SAAsBT,EAAKqC,GAAa,CAAC,UAAU,sEAAsE,UAAUhG,GAAY,CAAC,IAAI,qEAAqE,EAAE,EAAE,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,WAAW,UAAU,eAAe,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe2D,EAAKU,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,iBAAiB,EAAE,UAAU,CAAC,EAAE,iBAAiB,CAAC,EAAE,SAAsBa,EAAKQ,EAA0B,CAAC,OAAO,GAAG,EAAE,kBAAkB,SAAsBR,EAAKS,EAAU,CAAC,UAAU,2BAA2B,SAAsBT,EAAKqC,GAAa,CAAC,UAAU,wEAAwE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,eAAe,UAAU,kBAAkB,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAerC,EAAKU,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,iBAAiB,EAAE,UAAU,CAAC,EAAE,iBAAiB,CAAC,EAAE,SAAsBa,EAAKQ,EAA0B,CAAC,OAAO,GAAG,EAAE,kBAAkB,SAAsBR,EAAKS,EAAU,CAAC,UAAU,0BAA0B,SAAsBT,EAAKqC,GAAa,CAAC,UAAU,sEAAsE,UAAUhG,GAAY,CAAC,IAAI,wFAAwF,OAAO,sKAAsK,EAAE,EAAE,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,YAAY,UAAU,6BAA6B,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe2D,EAAKU,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,iBAAiB,EAAE,UAAU,CAAC,EAAE,iBAAiB,CAAC,EAAE,SAAsBa,EAAKQ,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,EAAE,kBAAkB,SAAsBR,EAAKS,EAAU,CAAC,UAAU,2BAA2B,SAAsBT,EAAKgB,EAAc,CAAC,UAAU,4BAA4B,OAAO,OAAO,GAAG,YAAY,UAAU,kEAAkE,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehB,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBE,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcF,EAAKQ,EAA0B,CAAC,SAAsBR,EAAKsC,GAAgB,CAAC,iBAAiB,CAAC,QAAQ,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAE,sCAAsC,GAAK,2BAA2B,CAAC,CAAC,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,GAAG,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,UAAU,2BAA2B,SAAsBtC,EAAKuC,GAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,EAAE,IAAI,+EAA+E,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAevC,EAAKQ,EAA0B,CAAC,SAAsBR,EAAKsC,GAAgB,CAAC,iBAAiB,CAAC,QAAQ,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAE,sCAAsC,GAAK,2BAA2B,CAAC,CAAC,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,GAAG,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,UAAU,2BAA2B,SAAsBtC,EAAKuC,GAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,EAAE,IAAI,+EAA+E,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAevC,EAAKQ,EAA0B,CAAC,SAAsBR,EAAKsC,GAAgB,CAAC,iBAAiB,CAAC,QAAQ,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAE,sCAAsC,GAAK,2BAA2B,CAAC,CAAC,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,GAAG,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,UAAU,0BAA0B,SAAsBtC,EAAKuC,GAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,EAAE,IAAI,+EAA+E,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAevC,EAAKU,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,iBAAiB,EAAE,UAAU,CAAC,EAAE,iBAAiB,CAAC,EAAE,SAAsBa,EAAKQ,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,EAAE,kBAAkB,SAAsBR,EAAKS,EAAU,CAAC,UAAU,0BAA0B,SAAsBT,EAAKU,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBa,EAAKwC,GAAO,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,EAAexC,EAAKU,EAAkB,CAAC,WAAWvB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,MAAM,eAAe,IAAI,QAAQsD,GAA0B,iBAAiB,EAAE,YAAY,IAAI,WAAW,IAAI,IAAI,qEAAqE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,MAAM,eAAe,IAAI,QAAQA,GAA0B,iBAAiB,EAAE,YAAY,IAAI,WAAW,IAAI,IAAI,qEAAqE,CAAC,CAAC,EAAE,SAAsBzC,EAAKe,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,MAAM,eAAe,IAAI,QAAQ0B,GAA0B,iBAAiB,EAAE,YAAY,IAAI,WAAW,IAAI,IAAI,qEAAqE,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAezC,EAAK,MAAM,CAAC,UAAUK,GAAG7E,GAAkB,GAAGsE,EAAqB,EAAE,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQ4C,GAAI,CAAC,kFAAkF,IAAIlG,GAAS,gJAAgJ,gFAAgF,wVAAwV,4PAA4P,6QAA6Q,0SAA0S,qJAAqJ,0GAA0G,qUAAqU,6KAA6K,gKAAgK,2QAA2Q,onBAAonB,0GAA0G,oTAAoT,+bAA+b,iXAAiX,oTAAoT,sSAAsS,qTAAqT,0QAA0Q,iTAAiT,qRAAqR,0SAA0S,0SAA0S,8TAA8T,kTAAkT,oVAAoV,0LAA0L,yQAAyQ,4LAA4L,gMAAgM,k9FAAk9F,GAAekG,GAAI,gCAAgClG,GAAS,s5EAAs5E,wDAAwDA,GAAS,i5BAAi5B,EAS11qDmG,GAAgBC,GAAQ3F,GAAUyF,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,UAAUA,GAAgB,aAAa,CAAC,OAAO,KAAK,MAAM,IAAI,EAAEG,GAASH,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGI,GAAkB,GAAGC,GAAY,GAAGC,GAAmB,GAAGC,GAAc,GAAGC,GAAc,GAAGC,GAAgB,GAAGC,GAAkB,GAAGC,GAAa,GAAGC,GAAY,GAAGC,GAAoCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,EAC//D,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,sBAAwB,IAAI,oCAAsC,4JAA0L,qBAAuB,OAAO,6BAA+B,OAAO,yBAA2B,QAAQ,sBAAwB,OAAO,uBAAyB,GAAG,yBAA2B,MAAM,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC",
  "names": ["Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "hasChildren", "j", "isHorizontal", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "fe", "initialResize", "ue", "resize", "contentSize", "child", "index", "ref", "ref1", "ref2", "ref3", "ref4", "p", "LayoutGroup", "q", "i", "childIndex", "animateToValue", "transformRef", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "urlRegex", "Spotify", "props", "theme", "sourceUrl", "identifier", "te", "strippedUrl", "url", "p", "addPropertyControls", "ControlType", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "background", "height", "id", "image", "link", "title", "width", "props", "_ref", "_ref1", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "PufR35eQg", "fjCLWJ9ZN", "cfQpReN3l", "VF9a0DDNT", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "Image2", "RichText2", "css", "FramerMRjeUKLwg", "withCSS", "MRjeUKLwg_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "serializationHash", "variantClassNames", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "content", "height", "id", "image", "title", "width", "props", "_ref", "_ref1", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "yPYBbbdqX", "VUh6lLktF", "xMQuYkYHY", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "FramerN3K3QZzlK", "withCSS", "N3K3QZzlK_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "CareerHeaderFonts", "getFonts", "odEwyEzgE_default", "TickerFonts", "Ticker", "CareerHeadingFonts", "BG9VG33N6_default", "PositionFonts", "uMfsAjWCz_default", "PerkCardFonts", "GD49SUwEK_default", "ValuesNew2Fonts", "N3K3QZzlK_default", "InvestorCardFonts", "MRjeUKLwg_default", "SpotifyFonts", "Spotify", "ContainerWithFX", "withFX", "Container", "FooterFonts", "U4rLkGgl7_default", "breakpoints", "serializationHash", "variantClassNames", "equals", "a", "b", "negate", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "addImageAlt", "image", "alt", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "hKOCX0Y2fvqZxEZWdq", "LyRTawoM_vqZxEZWdq", "eKFFYnQV9vqZxEZWdq", "kUVPat2mpvqZxEZWdq", "idvqZxEZWdq", "uNriG5TG3I6M3wKd1c", "dXJZifROXI6M3wKd1c", "HYoHgmm3oI6M3wKd1c", "qQRy7xr4qI6M3wKd1c", "idI6M3wKd1c", "uNriG5TG3ww8jg0mQI", "dXJZifROXww8jg0mQI", "HYoHgmm3oww8jg0mQI", "qQRy7xr4qww8jg0mQI", "idww8jg0mQI", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "ref1", "pe", "router", "useRouter", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "Container", "PropertyOverrides2", "odEwyEzgE_default", "Ticker", "RichText2", "x", "Image2", "BG9VG33N6_default", "ChildrenCanSuspend", "IxK_M1lgr_default", "collection", "paginationInfo", "loadMore", "l", "i", "visible", "PathVariablesContext", "resolvedLinks1", "uMfsAjWCz_default", "KnyNoxsla_default", "collection1", "paginationInfo1", "loadMore1", "GD49SUwEK_default", "collection2", "paginationInfo2", "loadMore2", "N3K3QZzlK_default", "MRjeUKLwg_default", "ContainerWithFX", "Spotify", "U4rLkGgl7_default", "getLoadingLazyAtYPosition", "css", "FramermXBStQ3Xs", "withCSS", "mXBStQ3Xs_default", "addFonts", "CareerHeaderFonts", "TickerFonts", "CareerHeadingFonts", "PositionFonts", "PerkCardFonts", "ValuesNew2Fonts", "InvestorCardFonts", "SpotifyFonts", "FooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
