{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/nFAy8p4fOASsyhPbo192/Ticker.js", "ssg:https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js", "ssg:https://framer.com/m/framer/randomID.js@^2.0.0", "ssg:https://framer.com/m/framer/useConstant.js@^1.0.0"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap}from\"framer-motion\";import{resize}from\"@motionone/dom\";const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export default function Ticker(props){/* Props */ let{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 numChildren=Children.count(slots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* 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 = 10\nduplicateBy=numChildren?Math.floor(10/numChildren):0;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});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */ if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\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(()=>{measure();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];}const size={width:widthType?(ref=child.props)===null||ref===void 0?void 0:ref.width:\"100%\",height:heightType?(ref1=child.props)===null||ref1===void 0?void 0:ref1.height:\"100%\"};return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{ref:ref4,style:size,children:/*#__PURE__*/ cloneElement(child,{style:{...(ref2=child.props)===null||ref2===void 0?void 0:ref2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(ref3=child.props)===null||ref3===void 0?void 0:ref3.children)})});});}if(!isCanvas){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\"},\"aria-hidden\":true,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,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(ref3=child.props)===null||ref3===void 0?void 0:ref3.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);}),];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isInView=useInView(parentRef);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */ if(!isCanvas){/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */ if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue),]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */ useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){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);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* 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,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/ _jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,transform:supportsAcceleratedAnimations?undefined:transform,willChange:\"transform\"},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){animationRef.current.updatePlaybackRate(hoverFactor);}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){animationRef.current.updatePlaybackRate(1);}},children:[clonedChildren,dupedChildren]})});};/* Default Properties */ Ticker.defaultProps={gap:10,padding: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:1,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);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "import{jsx as _jsx}from\"react/jsx-runtime\";// Generated by Framer (12cfc32)\nimport*as React from\"react\";import{motion,LayoutGroup}from\"framer-motion\";import{Image as Image1,addFonts,withCSS,addPropertyControls,ControlType,cx,useAddVariantProps,useVariantState,Stack}from\"framer\";import{useRandomID}from\"https://framer.com/m/framer/randomID.js@^2.0.0\";const cycleOrder=[\"AD1uRb789\",\"t6uYX0tBZ\",\"AnI2DvQZf\",\"JG7MxGgTY\",\"snFARdAmz\",\"Nz_Z2NTH0\",\"cHv8JY9g7\",\"tR7FlThNE\",\"bg0lLngd2\",\"FKNQjSL73\",\"UozSdcuUY\",\"EgLxQrxHD\",\"vol5AdrV3\",\"rbMcqs1eA\",\"OY_j7HdJV\",\"mcvPgNUgN\",\"Jj_gJ6raO\",\"UYFenO8zH\",\"RpMB9X2cU\",\"tExww8aRk\",\"anaA6RL0b\",\"y8osi5SA0\",\"v2n6jd8d8\",\"vrPxXX3Sq\",\"YC5psLXzO\",\"wQ9whLvFH\",\"hUi9TraZo\",\"ji0e3Gqv5\",\"nMHdUM1t6\",\"Stnp3oRU4\",\"TxmZTsvXB\",\"bNhqIdQoj\",\"OYkCSZPL0\",\"bOMpuyzc_\",\"NqCoJY2pH\"];const variantClassNames={\"AD1uRb789\":\"framer-v-rqhbs3\",\"t6uYX0tBZ\":\"framer-v-ina8tq\",\"AnI2DvQZf\":\"framer-v-lwbc2o\",\"JG7MxGgTY\":\"framer-v-vqryag\",\"snFARdAmz\":\"framer-v-kwp1i3\",\"Nz_Z2NTH0\":\"framer-v-1h8ejmh\",\"cHv8JY9g7\":\"framer-v-c75qsa\",\"tR7FlThNE\":\"framer-v-1ftwjq5\",\"bg0lLngd2\":\"framer-v-osfy8l\",\"FKNQjSL73\":\"framer-v-5qhg5s\",\"UozSdcuUY\":\"framer-v-5ats54\",\"EgLxQrxHD\":\"framer-v-z5mnn6\",\"vol5AdrV3\":\"framer-v-6xnqop\",\"rbMcqs1eA\":\"framer-v-xmx6ye\",\"OY_j7HdJV\":\"framer-v-a1v8wx\",\"mcvPgNUgN\":\"framer-v-1oj0oue\",\"Jj_gJ6raO\":\"framer-v-19e1lqz\",\"UYFenO8zH\":\"framer-v-16en86l\",\"RpMB9X2cU\":\"framer-v-1vzsblg\",\"tExww8aRk\":\"framer-v-1kgllbw\",\"anaA6RL0b\":\"framer-v-zia1yx\",\"y8osi5SA0\":\"framer-v-9mi1m7\",\"v2n6jd8d8\":\"framer-v-zgdwlg\",\"vrPxXX3Sq\":\"framer-v-1dgnypb\",\"YC5psLXzO\":\"framer-v-rum36c\",\"wQ9whLvFH\":\"framer-v-1u5c2u8\",\"hUi9TraZo\":\"framer-v-1dt8e1w\",\"ji0e3Gqv5\":\"framer-v-1rkl824\",\"nMHdUM1t6\":\"framer-v-17d51pb\",\"Stnp3oRU4\":\"framer-v-158neyh\",\"TxmZTsvXB\":\"framer-v-1atb71u\",\"bNhqIdQoj\":\"framer-v-1x8h963\",\"OYkCSZPL0\":\"framer-v-hblyuj\",\"bOMpuyzc_\":\"framer-v-cra8ie\",\"NqCoJY2pH\":\"framer-v-1sz721s\"};const humanReadableVariantMap={\"Jason\":\"AD1uRb789\",\"Jess\":\"t6uYX0tBZ\",\"Olli\":\"AnI2DvQZf\",\"Myah\":\"JG7MxGgTY\",\"Ammaar\":\"snFARdAmz\",\"Siena\":\"Nz_Z2NTH0\",\"Cheryl\":\"cHv8JY9g7\",\"Aleeza\":\"tR7FlThNE\",\"Elli\":\"bg0lLngd2\",\"Piotr\":\"FKNQjSL73\",\"Ayisha\":\"UozSdcuUY\",\"Nataniel\":\"EgLxQrxHD\",\"Nikita\":\"vol5AdrV3\",\"Tim\":\"rbMcqs1eA\",\"Carley\":\"OY_j7HdJV\",\"Arda\":\"mcvPgNUgN\",\"Lacey-Mae\":\"Jj_gJ6raO\",\"Bo\":\"UYFenO8zH\",\"Shelbie\":\"RpMB9X2cU\",\"Dillon\":\"tExww8aRk\",\"Selin\":\"OYkCSZPL0\",\"Rhian\":\"y8osi5SA0\",\"Ada\":\"v2n6jd8d8\",\"Lois\":\"vrPxXX3Sq\",\"Maisie\":\"YC5psLXzO\",\"Lori\":\"wQ9whLvFH\",\"Jardel\":\"hUi9TraZo\",\"Jethro\":\"ji0e3Gqv5\",\"Carmen\":\"nMHdUM1t6\",\"Patrik\":\"Stnp3oRU4\",\"Barry\":\"TxmZTsvXB\",\"Alejandro\":\"bNhqIdQoj\",\"Denny\":\"bOMpuyzc_\",\"Becca\":\"NqCoJY2pH\"};const transitions={\"default\":{\"type\":\"spring\",\"ease\":[0.44,0,0.56,1],\"duration\":0.3,\"delay\":0,\"stiffness\":500,\"damping\":60,\"mass\":1}};const Component=/*#__PURE__*/ React.forwardRef(function({style,className,layoutId,width,height,variant:outerVariant=\"AD1uRb789\",background:VurELiPqN=\"rgb(255, 219, 222)\",radius:Z2NuoQS1k=60,rotation:tc_6nmlts=0,...restProps},ref){const outerVariantId=humanReadableVariantMap[outerVariant];const variant=outerVariantId||outerVariant;const{variants,baseVariant,gestureVariant,classNames,transition,setVariant,setGestureState}=useVariantState({defaultVariant:\"AD1uRb789\",variant,transitions,variantClassNames,cycleOrder});const variantProps=React.useMemo(()=>({\"t6uYX0tBZ\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Jess\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/XfjXHJ2H7SzzlzPr1bGFm1T9BpI.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"AnI2DvQZf\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Olli\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/qCpU7HJtiveCC9wTFuh7L4wc8YM.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"JG7MxGgTY\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Myah\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/Q8IGGb6PvVKrjNuovM2HijDWFU.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"snFARdAmz\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Ammaar\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/iGk4x1NJSVgWzFvuQQADJp9I.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"Nz_Z2NTH0\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Siena\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/ikD34vgzaLM6N50MKdcR9HVBnk.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"cHv8JY9g7\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Cheryl\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/mUVPNgOqhd1MFYjLtFtiBwvxfY.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"tR7FlThNE\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Aleeza\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/62fnqd1V6QN3j0vPr4hlpB3HnQ.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"bg0lLngd2\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Elli\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/Vu8TxX7VMCMZDjoliFK7D0nOyX0.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"FKNQjSL73\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Piotr\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/ofIUD8MCjke7Xz8jkh29AWqajJo.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"UozSdcuUY\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Ayisha\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/5nnqp2inSINDktAAWpI7gxJei0w.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"EgLxQrxHD\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Nataniel\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/lKaaStgbmdIe8TfrIkFlKzHazV0.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"vol5AdrV3\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Nikita\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/bpeWvtoxuajqEtlukZhUFt9KM.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"rbMcqs1eA\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Tim\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/GoWNvgKZvVTzmZQKHoh2Ccnk4E.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"OY_j7HdJV\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Carley\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/40ioqcNOrsoBIVnpfGVsXh9jpM.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"mcvPgNUgN\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Arda\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/U8RU6HcYtcK32VUY2uTSF9QTqo.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"Jj_gJ6raO\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Lacey-Mae\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/1OwzdZHx9ElDw1ZAavs6WGWBSw.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"UYFenO8zH\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Bo\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/Tlwk5hINm0ferm6DGDyUoqL6pc.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"RpMB9X2cU\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Shelbie\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/Pm9TTOkN341IYtePLdPGmhG0E.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"tExww8aRk\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Dillon\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/GOsVbTpzcPHfZ9EMcOSPddNS6go.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"anaA6RL0b\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Selin\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/GaxkgrTkzKlxI7B3EJtZp4dabI.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"y8osi5SA0\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Rhian\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/LEd8c4Zf28fU29XZ4c04ImOzs.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"v2n6jd8d8\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Ada\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/3oPVBjvZEnTN9DZf7tUMW54TS2k.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"vrPxXX3Sq\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Lois\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/99qcDQP7xzsxlgXsq47uID7sAm4.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"YC5psLXzO\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Maisie\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/BRu6MhHhp9NjldqU9TTCEAEoGKg.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"wQ9whLvFH\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Lori\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/ebCaegtDakUaQGRtXSYmPR43Q.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"hUi9TraZo\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Jardel\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/B8580pOtLEBrg7wIFp62oXfFQ.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"ji0e3Gqv5\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Jethro\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/szTmT1K4f8nn5CutvLWFlBdt8k.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"nMHdUM1t6\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Carmen\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/e6GZhp0s96FXaIiLYSRyZYZYypo.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"Stnp3oRU4\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Patrik\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/6xGPl1j87mG8XoUzCwRYzEohM8.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"TxmZTsvXB\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Barry\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/mhC7dhzvLcqmUofPcC2BW8vh4.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"bNhqIdQoj\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Alejandro\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/YynUn6LSLWVQia4pOtIxhY77SSA.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"OYkCSZPL0\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Selin\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/u2K6WSbQVKHiOUvOF3auFya79y8.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"bOMpuyzc_\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Denny\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/BJytCbStiWSy9rxpQ0wU6I3SNiI.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}},\"NqCoJY2pH\":{\"AD1uRb789\":{\"center\":false,\"data-framer-name\":\"Becca\",\"__contentWrapperStyle\":{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"}},\"XGgsiaAin\":{\"background\":{\"src\":new URL(\"assets/xyIaIR0LhPm1PVVUVrQ7TDGTyA.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"intrinsicWidth\":440,\"intrinsicHeight\":440}}}),[]);const addVariantProps=useAddVariantProps(baseVariant,gestureVariant,variantProps);const defaultLayoutId=useRandomID();return(/*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{initial:variant,animate:variants,className:cx(\"framer-47hmZ\",classNames),style:{\"display\":\"contents\"},onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),children:/*#__PURE__*/ _jsx(Stack,{...restProps,layoutId:\"AD1uRb789\",className:cx(\"framer-rqhbs3\",className),style:{\"borderBottomLeftRadius\":Z2NuoQS1k,\"borderBottomRightRadius\":Z2NuoQS1k,\"borderTopRightRadius\":Z2NuoQS1k,\"borderTopLeftRadius\":Z2NuoQS1k,\"backgroundColor\":VurELiPqN,...style},direction:\"horizontal\",distribution:\"center\",alignment:\"center\",gap:10,__fromCanvasComponent:true,__contentWrapperStyle:{\"width\":\"100%\",\"height\":\"100%\",\"padding\":\"0px 0px 0px 0px\"},center:false,\"data-framer-name\":\"Jason\",transition:transition,ref:ref,...addVariantProps(\"AD1uRb789\"),children:/*#__PURE__*/ _jsx(Image1,{layoutId:\"XGgsiaAin\",className:\"framer-kj56m6\",style:{\"borderBottomLeftRadius\":60,\"borderBottomRightRadius\":60,\"borderTopRightRadius\":60,\"borderTopLeftRadius\":60,\"rotate\":tc_6nmlts},background:{\"src\":new URL(\"assets/CPGgYEBeFy4gDXe5dDzh1qjQG1w.png\",\"https://framerusercontent.com/modules/PLP5SWQpFPuFrn7tLf3t/suo2OcdmUu5xmjtBXZ7I/dkRfXNUhM.js\").href,\"pixelWidth\":440,\"pixelHeight\":440,\"intrinsicWidth\":440,\"intrinsicHeight\":440,\"fit\":\"fill\"},\"data-framer-name\":\"Avatar\",variants:{\"t6uYX0tBZ\":{\"borderBottomLeftRadius\":60,\"borderBottomRightRadius\":60,\"borderTopRightRadius\":60,\"borderTopLeftRadius\":60}},transition:transition,...addVariantProps(\"XGgsiaAin\")})})})}));});const css=[\".framer-47hmZ [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;}\",\".framer-47hmZ .framer-rqhbs3 { position: relative; overflow: hidden; width: 100px; height: 100px; }\",\".framer-47hmZ .framer-kj56m6 { position: relative; overflow: visible; width: 1px; height: 100%; flex: 1 0 0px; }\",\".framer-47hmZ.framer-v-ina8tq .framer-rqhbs3, .framer-47hmZ.framer-v-lwbc2o .framer-rqhbs3, .framer-47hmZ.framer-v-vqryag .framer-rqhbs3, .framer-47hmZ.framer-v-kwp1i3 .framer-rqhbs3, .framer-47hmZ.framer-v-1h8ejmh .framer-rqhbs3, .framer-47hmZ.framer-v-c75qsa .framer-rqhbs3, .framer-47hmZ.framer-v-1ftwjq5 .framer-rqhbs3, .framer-47hmZ.framer-v-osfy8l .framer-rqhbs3, .framer-47hmZ.framer-v-5qhg5s .framer-rqhbs3, .framer-47hmZ.framer-v-5ats54 .framer-rqhbs3, .framer-47hmZ.framer-v-z5mnn6 .framer-rqhbs3, .framer-47hmZ.framer-v-6xnqop .framer-rqhbs3, .framer-47hmZ.framer-v-xmx6ye .framer-rqhbs3, .framer-47hmZ.framer-v-a1v8wx .framer-rqhbs3, .framer-47hmZ.framer-v-1oj0oue .framer-rqhbs3, .framer-47hmZ.framer-v-19e1lqz .framer-rqhbs3, .framer-47hmZ.framer-v-16en86l .framer-rqhbs3, .framer-47hmZ.framer-v-1vzsblg .framer-rqhbs3, .framer-47hmZ.framer-v-1kgllbw .framer-rqhbs3, .framer-47hmZ.framer-v-zia1yx .framer-rqhbs3, .framer-47hmZ.framer-v-9mi1m7 .framer-rqhbs3, .framer-47hmZ.framer-v-zgdwlg .framer-rqhbs3, .framer-47hmZ.framer-v-1dgnypb .framer-rqhbs3, .framer-47hmZ.framer-v-rum36c .framer-rqhbs3, .framer-47hmZ.framer-v-1u5c2u8 .framer-rqhbs3, .framer-47hmZ.framer-v-1dt8e1w .framer-rqhbs3, .framer-47hmZ.framer-v-1rkl824 .framer-rqhbs3, .framer-47hmZ.framer-v-17d51pb .framer-rqhbs3, .framer-47hmZ.framer-v-158neyh .framer-rqhbs3, .framer-47hmZ.framer-v-1atb71u .framer-rqhbs3, .framer-47hmZ.framer-v-1x8h963 .framer-rqhbs3, .framer-47hmZ.framer-v-hblyuj .framer-rqhbs3, .framer-47hmZ.framer-v-cra8ie .framer-rqhbs3, .framer-47hmZ.framer-v-1sz721s .framer-rqhbs3 { width: 100px; height: 100px; }\",\".framer-47hmZ.framer-v-1ftwjq5 .framer-kj56m6, .framer-47hmZ.framer-v-osfy8l .framer-kj56m6 { width: 1px; height: 100%; right: auto; bottom: auto; left: auto; top: auto; flex: 1 0 0px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 100\n * @framerIntrinsicWidth 100\n * @framerCanvasComponentVariantDetails {\"propertyName\": \"variant\", \"data\": {\"default\": {\"layout\": [\"fixed\", \"fixed\"]}, \"t6uYX0tBZ\": {\"layout\": [\"fixed\", \"fixed\"]}, \"AnI2DvQZf\": {\"layout\": [\"fixed\", \"fixed\"]}, \"JG7MxGgTY\": {\"layout\": [\"fixed\", \"fixed\"]}, \"snFARdAmz\": {\"layout\": [\"fixed\", \"fixed\"]}, \"Nz_Z2NTH0\": {\"layout\": [\"fixed\", \"fixed\"]}, \"cHv8JY9g7\": {\"layout\": [\"fixed\", \"fixed\"]}, \"tR7FlThNE\": {\"layout\": [\"fixed\", \"fixed\"]}, \"bg0lLngd2\": {\"layout\": [\"fixed\", \"fixed\"]}, \"FKNQjSL73\": {\"layout\": [\"fixed\", \"fixed\"]}, \"UozSdcuUY\": {\"layout\": [\"fixed\", \"fixed\"]}, \"EgLxQrxHD\": {\"layout\": [\"fixed\", \"fixed\"]}, \"vol5AdrV3\": {\"layout\": [\"fixed\", \"fixed\"]}, \"rbMcqs1eA\": {\"layout\": [\"fixed\", \"fixed\"]}, \"OY_j7HdJV\": {\"layout\": [\"fixed\", \"fixed\"]}, \"mcvPgNUgN\": {\"layout\": [\"fixed\", \"fixed\"]}, \"Jj_gJ6raO\": {\"layout\": [\"fixed\", \"fixed\"]}, \"UYFenO8zH\": {\"layout\": [\"fixed\", \"fixed\"]}, \"RpMB9X2cU\": {\"layout\": [\"fixed\", \"fixed\"]}, \"tExww8aRk\": {\"layout\": [\"fixed\", \"fixed\"]}, \"anaA6RL0b\": {\"layout\": [\"fixed\", \"fixed\"]}, \"y8osi5SA0\": {\"layout\": [\"fixed\", \"fixed\"]}, \"v2n6jd8d8\": {\"layout\": [\"fixed\", \"fixed\"]}, \"vrPxXX3Sq\": {\"layout\": [\"fixed\", \"fixed\"]}, \"YC5psLXzO\": {\"layout\": [\"fixed\", \"fixed\"]}, \"wQ9whLvFH\": {\"layout\": [\"fixed\", \"fixed\"]}, \"hUi9TraZo\": {\"layout\": [\"fixed\", \"fixed\"]}, \"ji0e3Gqv5\": {\"layout\": [\"fixed\", \"fixed\"]}, \"nMHdUM1t6\": {\"layout\": [\"fixed\", \"fixed\"]}, \"Stnp3oRU4\": {\"layout\": [\"fixed\", \"fixed\"]}, \"TxmZTsvXB\": {\"layout\": [\"fixed\", \"fixed\"]}, \"bNhqIdQoj\": {\"layout\": [\"fixed\", \"fixed\"]}, \"OYkCSZPL0\": {\"layout\": [\"fixed\", \"fixed\"]}, \"bOMpuyzc_\": {\"layout\": [\"fixed\", \"fixed\"]}, \"NqCoJY2pH\": {\"layout\": [\"fixed\", \"fixed\"]}}}\n * @framerVariables {\"VurELiPqN\": \"background\", \"Z2NuoQS1k\": \"radius\", \"tc_6nmlts\": \"rotation\"}\n */ const FramerdkRfXNUhM=withCSS(Component,css);export default FramerdkRfXNUhM;FramerdkRfXNUhM.displayName=\"Memoji\";FramerdkRfXNUhM.defaultProps={\"width\":100,\"height\":100};addPropertyControls(FramerdkRfXNUhM,{\"variant\":{\"type\":ControlType.Enum,\"title\":\"Variant\",\"options\":[\"AD1uRb789\",\"t6uYX0tBZ\",\"AnI2DvQZf\",\"JG7MxGgTY\",\"snFARdAmz\",\"Nz_Z2NTH0\",\"cHv8JY9g7\",\"tR7FlThNE\",\"bg0lLngd2\",\"FKNQjSL73\",\"UozSdcuUY\",\"EgLxQrxHD\",\"vol5AdrV3\",\"rbMcqs1eA\",\"OY_j7HdJV\",\"mcvPgNUgN\",\"Jj_gJ6raO\",\"UYFenO8zH\",\"RpMB9X2cU\",\"tExww8aRk\",\"anaA6RL0b\",\"y8osi5SA0\",\"v2n6jd8d8\",\"vrPxXX3Sq\",\"YC5psLXzO\",\"wQ9whLvFH\",\"hUi9TraZo\",\"ji0e3Gqv5\",\"nMHdUM1t6\",\"Stnp3oRU4\",\"TxmZTsvXB\",\"bNhqIdQoj\",\"OYkCSZPL0\",\"bOMpuyzc_\",\"NqCoJY2pH\"],\"optionTitles\":[\"Jason\",\"Jess\",\"Olli\",\"Myah\",\"Ammaar\",\"Siena\",\"Cheryl\",\"Aleeza\",\"Elli\",\"Piotr\",\"Ayisha\",\"Nataniel\",\"Nikita\",\"Tim\",\"Carley\",\"Arda\",\"Lacey-Mae\",\"Bo\",\"Shelbie\",\"Dillon\",\"Selin\",\"Rhian\",\"Ada\",\"Lois\",\"Maisie\",\"Lori\",\"Jardel\",\"Jethro\",\"Carmen\",\"Patrik\",\"Barry\",\"Alejandro\",\"Selin\",\"Denny\",\"Becca\"]},\"VurELiPqN\":{\"type\":ControlType.Color,\"title\":\"Background\",\"defaultValue\":\"rgb(255, 219, 222)\"},\"Z2NuoQS1k\":{\"type\":ControlType.Number,\"title\":\"Radius\",\"defaultValue\":60,\"min\":0},\"tc_6nmlts\":{\"type\":ControlType.Number,\"title\":\"Rotation\",\"defaultValue\":0,\"min\":-180,\"max\":180,\"unit\":\"\u00B0\"}});addFonts(FramerdkRfXNUhM,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerdkRfXNUhM\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\": \\\"variant\\\", \\\"data\\\": {\\\"default\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"t6uYX0tBZ\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"AnI2DvQZf\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"JG7MxGgTY\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"snFARdAmz\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"Nz_Z2NTH0\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"cHv8JY9g7\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"tR7FlThNE\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"bg0lLngd2\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"FKNQjSL73\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"UozSdcuUY\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"EgLxQrxHD\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"vol5AdrV3\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"rbMcqs1eA\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"OY_j7HdJV\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"mcvPgNUgN\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"Jj_gJ6raO\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"UYFenO8zH\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"RpMB9X2cU\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"tExww8aRk\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"anaA6RL0b\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"y8osi5SA0\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"v2n6jd8d8\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"vrPxXX3Sq\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"YC5psLXzO\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"wQ9whLvFH\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"hUi9TraZo\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"ji0e3Gqv5\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"nMHdUM1t6\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"Stnp3oRU4\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"TxmZTsvXB\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"bNhqIdQoj\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"OYkCSZPL0\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"bOMpuyzc_\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}, \\\"NqCoJY2pH\\\": {\\\"layout\\\": [\\\"fixed\\\", \\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"100\",\"framerIntrinsicHeight\":\"100\",\"framerVariables\":\"{\\\"VurELiPqN\\\": \\\"background\\\", \\\"Z2NuoQS1k\\\": \\\"radius\\\", \\\"tc_6nmlts\\\": \\\"rotation\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./dkRfXNUhM.map", "import { useConstant } from \"https://framer.com/m/framer/useConstant.js@^1.0.0\";\nconst BASE62 = \"0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz\";\n/**\n * Generates a random string of BASE62 characters.\n */ export function randomID(length = 5) {\n    return Array(length).fill(0).map(()=>BASE62[Math.floor(Math.random() * BASE62.length)]\n    ).join(\"\");\n}\nexport function useRandomID(length = 5) {\n    return useConstant(()=>randomID(length)\n    );\n}\nconst defaultStorageKey = \"$$FramerRandomID\";\n/**\n * `randomID` but cached in localStorage.\n */ export function useCachedRandomID(storageKey = defaultStorageKey) {\n    return useConstant(()=>{\n        const storage = getLocalStorage();\n        if (!storage) return randomID(8);\n        const cachedValue = storage.getItem(storageKey);\n        if (cachedValue) return cachedValue;\n        const newID = randomID(8);\n        storage.setItem(storageKey, newID);\n        return newID;\n    });\n}\nfunction getLocalStorage() {\n    if (typeof window === undefined) return undefined;\n    try {\n        return window.localStorage;\n    } catch (err) {\n        return undefined;\n    }\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"useRandomID\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useCachedRandomID\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"randomID\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./randomID.map", "import { useRef } from \"react\";\n/**\n * Creates a constant value over the lifecycle of a component.\n *\n * Even if `useMemo` is provided an empty array as its final argument, it doesn't offer\n * a guarantee that it won't re-run for performance reasons later on.\n * By using `useConstant` you can ensure that initialisers don't execute twice or more.\n */ export function useConstant(init) {\n    const ref = useRef(null);\n    if (ref.current === null) {\n        ref.current = init();\n    }\n    return ref.current;\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"useConstant\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./useConstant.map"],
  "mappings": "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",
  "names": ["init_ssg_sandbox_shims", "directionTransformers", "offset", "supportsAcceleratedAnimations", "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", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "resize", "contentSize", "child", "index", "ref", "ref1", "ref2", "ref3", "ref4", "p", "LayoutGroup", "q", "i", "childIndex", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isInView", "useInView", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "useAnimationFrame", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "init_ssg_sandbox_shims", "init_ssg_sandbox_shims", "init_ssg_sandbox_shims", "useConstant", "init", "ref", "pe", "BASE62", "randomID", "length", "useRandomID", "useConstant", "cycleOrder", "variantClassNames", "humanReadableVariantMap", "transitions", "Component", "Y", "style", "className", "layoutId", "width", "height", "outerVariant", "VurELiPqN", "Z2NuoQS1k", "tc_6nmlts", "restProps", "ref", "variant", "variants", "baseVariant", "gestureVariant", "classNames", "transition", "setVariant", "setGestureState", "useVariantState", "variantProps", "se", "addVariantProps", "useAddVariantProps", "defaultLayoutId", "useRandomID", "p", "LayoutGroup", "motion", "cx", "Stack", "Image2", "css", "FramerdkRfXNUhM", "withCSS", "dkRfXNUhM_default", "addPropertyControls", "ControlType", "addFonts"]
}
