{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/HrxLgn3HodsTJEblZU6m/Ticker.js", "ssg:https://framerusercontent.com/modules/s26o3Do3WKOWWeNMSthl/FiuyAYYo3fhzDGOWYJXB/InDhY6QBM.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,useInView}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 numChildren=Children.count(slots);const hasChildren=numChildren>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 = 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});}},[]);/* 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){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)})});});}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\"},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)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);}),];}}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 isInView=useInView(parentRef);const isReducedMotion=useReducedMotion();useAnimationFrame(t=>{if(isCanvas||!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);prevTime.current=t;if(!isInView)return;/* 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)`;}});/* 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(\"ul\",{style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&-animateToValue,left:direction===\"right\"&&-animateToValue,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",willChange:\"transform\",...style},ref:transformRef,onMouseEnter:()=>isHover.current=true,onMouseLeave:()=>isHover.current=false,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:.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\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (e2fa450)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Image,Link,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/HrxLgn3HodsTJEblZU6m/Ticker.js\";const TickerFonts=getFonts(Ticker);const cycleOrder=[\"q36ezOuLQ\",\"MCOwgSIEo\"];const serializationHash=\"framer-GJ2I2\";const variantClassNames={MCOwgSIEo:\"framer-v-1kat83p\",q36ezOuLQ:\"framer-v-ucjhfd\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const 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 humanReadableVariantMap={\"Variant 2\":\"MCOwgSIEo\",Ticker:\"q36ezOuLQ\"};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:\"q36ezOuLQ\"};};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,oswG_FyJ1,jLWIz7sgZ,cK0u8JJIG,JdMROP_5x,MKRbq0x3u,k449Bn784,B7Ymv0o5T,jf61ZysyS,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"q36ezOuLQ\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap15kyqbt=activeVariantCallback(async(...args)=>{if(oswG_FyJ1){const res=await oswG_FyJ1(...args);if(res===false)return false;}});const onTap4ko1ha=activeVariantCallback(async(...args)=>{if(jLWIz7sgZ){const res=await jLWIz7sgZ(...args);if(res===false)return false;}});const onTapwjgfz9=activeVariantCallback(async(...args)=>{if(cK0u8JJIG){const res=await cK0u8JJIG(...args);if(res===false)return false;}});const onTapktmgym=activeVariantCallback(async(...args)=>{if(JdMROP_5x){const res=await JdMROP_5x(...args);if(res===false)return false;}});const onTap1i7f7fm=activeVariantCallback(async(...args)=>{if(MKRbq0x3u){const res=await MKRbq0x3u(...args);if(res===false)return false;}});const onTape3bckm=activeVariantCallback(async(...args)=>{if(k449Bn784){const res=await k449Bn784(...args);if(res===false)return false;}});const onTap9zc530=activeVariantCallback(async(...args)=>{if(B7Ymv0o5T){const res=await B7Ymv0o5T(...args);if(res===false)return false;}});const onTap1k77vtx=activeVariantCallback(async(...args)=>{if(jf61ZysyS){const res=await jf61ZysyS(...args);if(res===false)return false;}});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"MCOwgSIEo\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-ucjhfd\",className,classNames),\"data-framer-name\":\"Ticker\",layoutDependency:layoutDependency,layoutId:\"q36ezOuLQ\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({MCOwgSIEo:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-4yhw2q-container\",layoutDependency:layoutDependency,layoutId:\"PxcuJ2hc3-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:0,overflow:false},gap:25,height:\"100%\",hoverFactor:.5,id:\"PxcuJ2hc3\",layoutId:\"PxcuJ2hc3\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Link,{href:\"https://originalgames.io/\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{\"aria-label\":\"original games link\",className:\"framer-15z089l framer-jl7l7j\",\"data-framer-name\":\"OriginalGames\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Mmk3mIdOwQqgucR9oo\",onTap:onTap15kyqbt,style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-12vfyk4\",layoutDependency:layoutDependency,layoutId:\"F2qgIf4wN\",style:{backgroundColor:\"rgb(240, 240, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:54,intrinsicWidth:227,pixelHeight:80,pixelWidth:248,src:\"https://framerusercontent.com/images/elIU9tSUIxc5hl8oJYjLRcRb98.png\"},className:\"framer-eunhiz\",\"data-framer-name\":\"logo_original_games\",layoutDependency:layoutDependency,layoutId:\"Mmk3mIdOwkb1wRSIyh\"})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://snail.com/\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{\"aria-label\":\"snail games link\",className:\"framer-1jyc96e framer-jl7l7j\",\"data-framer-name\":\"SnailGames\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Mmk3mIdOwS6Zo2pUEk\",onTap:onTap4ko1ha,style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-5ncusu\",layoutDependency:layoutDependency,layoutId:\"jX8SPH2XE\",style:{backgroundColor:\"rgb(240, 240, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:86,intrinsicWidth:149,pixelHeight:107,pixelWidth:203,src:\"https://framerusercontent.com/images/KAW7GV3q42McMZE9BtjY4ebb0g.png\"},className:\"framer-1qvja17\",\"data-framer-name\":\"logo_snail_games\",layoutDependency:layoutDependency,layoutId:\"Mmk3mIdOwewx_kYbof\"})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://vertigogames.co/\",children:/*#__PURE__*/_jsx(motion.a,{\"aria-label\":\"vertigo link\",className:\"framer-1qgiyjk framer-jl7l7j\",\"data-framer-name\":\"Vertigo\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Mmk3mIdOwYKWu2JVl2\",onTap:onTapwjgfz9,style:{backgroundColor:\"rgb(240, 240, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-6ajefk\",layoutDependency:layoutDependency,layoutId:\"HnKlSyvVX\",style:{backgroundColor:\"rgb(240, 240, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1062,intrinsicWidth:3666,pixelHeight:94,pixelWidth:248,src:\"https://framerusercontent.com/images/5h5zVhBoxrpwqyDAd5QbqTiryw.png\"},className:\"framer-658mb7\",\"data-framer-name\":\"Vertigo\",layoutDependency:layoutDependency,layoutId:\"Mmk3mIdOwB_vmUF5bz\"})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.starberry.games/\",children:/*#__PURE__*/_jsx(motion.a,{\"aria-label\":\"strawberry link\",className:\"framer-1iujoi0 framer-jl7l7j\",\"data-framer-name\":\"Starberry\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Mmk3mIdOwatJW9WIG4\",onTap:onTapktmgym,style:{backgroundColor:\"rgb(240, 240, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-12oamwn\",layoutDependency:layoutDependency,layoutId:\"RxpT0NI9u\",style:{backgroundColor:\"rgb(240, 240, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:134,pixelWidth:223,src:\"https://framerusercontent.com/images/dySsGtkTAM8InDWkVBdW7ckss.png\"},className:\"framer-1v5ah6v\",\"data-framer-name\":\"StarBerry\",layoutDependency:layoutDependency,layoutId:\"Mmk3mIdOwYY1eZ1idO\"})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://bigwolf.com/\",children:/*#__PURE__*/_jsx(motion.a,{\"aria-label\":\"bigwolf link\",className:\"framer-1flw9y8 framer-jl7l7j\",\"data-framer-name\":\"BigWolf\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Mmk3mIdOwjCo9FrrTk\",onTap:onTap1i7f7fm,style:{backgroundColor:\"rgb(240, 240, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-10ehkyg\",layoutDependency:layoutDependency,layoutId:\"PGsaBlYHA\",style:{backgroundColor:\"rgb(240, 240, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:198,intrinsicWidth:832,pixelHeight:54,pixelWidth:208,src:\"https://framerusercontent.com/images/yP6fUzgAb4ZW0RYHlw7pNgiJR0.png\"},className:\"framer-16yq71p\",\"data-framer-name\":\"BigWolf\",layoutDependency:layoutDependency,layoutId:\"Mmk3mIdOwWuZ2cK6BJ\"})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://donut.games/\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{\"aria-label\":\"donut punks link\",className:\"framer-12oj1ss framer-jl7l7j\",\"data-framer-name\":\"DonutLab\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Mmk3mIdOwiGGTQ8nhn\",onTap:onTapwjgfz9,style:{backgroundColor:\"rgb(240, 240, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jyadad\",layoutDependency:layoutDependency,layoutId:\"q0d4C1UYn\",style:{backgroundColor:\"rgb(240, 240, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:199,intrinsicWidth:412,pixelHeight:98,pixelWidth:205,src:\"https://framerusercontent.com/images/kNZtk6iMrz4reoNJPAPzSqNOZPA.png\"},className:\"framer-1pth606\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"Mmk3mIdOwnh8taVwud\"})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://game-garden.com/games\",children:/*#__PURE__*/_jsx(motion.a,{\"aria-label\":\"game gerden link\",className:\"framer-1r510o3 framer-jl7l7j\",\"data-framer-name\":\"GameGarden\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Mmk3mIdOwcGfZ0acNF\",onTap:onTape3bckm,style:{backgroundColor:\"rgb(240, 240, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-11p4av0\",layoutDependency:layoutDependency,layoutId:\"iA7Exmpwj\",style:{backgroundColor:\"rgb(240, 240, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:724,intrinsicWidth:3540,pixelHeight:65,pixelWidth:232,src:\"https://framerusercontent.com/images/fzIlzyxEdwMd6Ptg5ASINOyR5s.png\"},className:\"framer-9myhpe\",\"data-framer-name\":\"$20e5553_1_1\",layoutDependency:layoutDependency,layoutId:\"Mmk3mIdOwCmx1MzTS8\"})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://hotsiberians.com/\",children:/*#__PURE__*/_jsx(motion.a,{\"aria-label\":\"getset link\",className:\"framer-fggplh framer-jl7l7j\",\"data-framer-name\":\"Getset\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Mmk3mIdOwFTdEAAYMQ\",onTap:onTap9zc530,style:{backgroundColor:\"rgb(240, 240, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ggow0f\",layoutDependency:layoutDependency,layoutId:\"QDOm2KsUc\",style:{backgroundColor:\"rgb(240, 240, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:606,intrinsicWidth:4032,pixelHeight:94,pixelWidth:188,src:\"https://framerusercontent.com/images/82ldx6UOVkfrjMQVgS0D0N2Po.png\"},className:\"framer-11tbr9\",\"data-framer-name\":\"Hot_Siberians\",layoutDependency:layoutDependency,layoutId:\"Mmk3mIdOwHKVeRbOSt\"})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://qenetech.com/\",children:/*#__PURE__*/_jsx(motion.a,{\"aria-label\":\"qene games link\",className:\"framer-19zgjza framer-jl7l7j\",\"data-framer-name\":\"QeneGames\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Mmk3mIdOwpcqFQt_L5\",onTap:onTap1k77vtx,style:{backgroundColor:\"rgb(240, 240, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-y4gfnf\",layoutDependency:layoutDependency,layoutId:\"QSyATePQ8\",style:{backgroundColor:\"rgb(240, 240, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:548,intrinsicWidth:378,pixelHeight:158,pixelWidth:112,src:\"https://framerusercontent.com/images/vZ8GxcueO97d6niJX4HmFf6nUo.png\"},className:\"framer-hvgy9x\",\"data-framer-name\":\"Qene Games\",layoutDependency:layoutDependency,layoutId:\"Mmk3mIdOwYUvWKOkD5\"})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.fuseboxgames.com/\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{\"aria-label\":\"fusebox link\",className:\"framer-26m3vs framer-jl7l7j\",\"data-framer-name\":\"Fusebox\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"y3qQ847MX\",onTap:onTap1k77vtx,style:{backgroundColor:\"rgb(240, 240, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-bryk5s\",layoutDependency:layoutDependency,layoutId:\"jSIdEQ47g\",style:{backgroundColor:\"rgb(240, 240, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:548,intrinsicWidth:378,pixelHeight:104,pixelWidth:450,src:\"https://framerusercontent.com/images/NxWIjp21QdyNZASYCWZ7imbOcG4.png\"},className:\"framer-bhrzze\",\"data-framer-name\":\"Qene Games\",layoutDependency:layoutDependency,layoutId:\"zOFQIJKkc\"})})})})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-GJ2I2.framer-jl7l7j, .framer-GJ2I2 .framer-jl7l7j { display: block; }\",\".framer-GJ2I2.framer-ucjhfd { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 140px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1540px; }\",\".framer-GJ2I2 .framer-4yhw2q-container { flex: none; height: 140px; position: relative; width: 100%; }\",\".framer-GJ2I2 .framer-15z089l, .framer-GJ2I2 .framer-1jyc96e, .framer-GJ2I2 .framer-1qgiyjk, .framer-GJ2I2 .framer-1iujoi0, .framer-GJ2I2 .framer-1flw9y8, .framer-GJ2I2 .framer-12oj1ss, .framer-GJ2I2 .framer-1r510o3, .framer-GJ2I2 .framer-fggplh, .framer-GJ2I2 .framer-19zgjza, .framer-GJ2I2 .framer-26m3vs { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 140px; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 140px; will-change: var(--framer-will-change-override, transform); }\",\".framer-GJ2I2 .framer-12vfyk4, .framer-GJ2I2 .framer-5ncusu, .framer-GJ2I2 .framer-6ajefk, .framer-GJ2I2 .framer-12oamwn, .framer-GJ2I2 .framer-10ehkyg, .framer-GJ2I2 .framer-1jyadad, .framer-GJ2I2 .framer-11p4av0, .framer-GJ2I2 .framer-1ggow0f, .framer-GJ2I2 .framer-y4gfnf, .framer-GJ2I2 .framer-bryk5s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: hidden; padding: 16px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-GJ2I2 .framer-eunhiz { aspect-ratio: 3.1666666666666665 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 35px); overflow: visible; position: relative; width: 113px; }\",\".framer-GJ2I2 .framer-1qvja17 { aspect-ratio: 1.9047619047619047 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 42px); overflow: visible; position: relative; width: 80px; }\",\".framer-GJ2I2 .framer-658mb7 { aspect-ratio: 2.5945945945945947 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 37px); overflow: visible; position: relative; width: 96px; }\",\".framer-GJ2I2 .framer-1v5ah6v { aspect-ratio: 1.6521739130434783 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 69px); overflow: hidden; position: relative; width: 114px; }\",\".framer-GJ2I2 .framer-16yq71p { aspect-ratio: 3.793103448275862 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 29px); overflow: visible; position: relative; width: 110px; }\",\".framer-GJ2I2 .framer-1pth606 { aspect-ratio: 2.07035175879397 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 38px); overflow: visible; position: relative; width: 78px; }\",\".framer-GJ2I2 .framer-9myhpe { aspect-ratio: 4.889502762430939 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 28px); overflow: visible; position: relative; width: 136px; }\",\".framer-GJ2I2 .framer-11tbr9 { aspect-ratio: 2.142857142857143 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 56px); overflow: visible; position: relative; width: 120px; }\",\".framer-GJ2I2 .framer-hvgy9x { aspect-ratio: 0.6897810218978102 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 66px); overflow: visible; position: relative; width: 45px; }\",\".framer-GJ2I2 .framer-bhrzze { aspect-ratio: 4.464285714285714 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 28px); overflow: visible; position: relative; width: 125px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-GJ2I2.framer-ucjhfd, .framer-GJ2I2 .framer-15z089l, .framer-GJ2I2 .framer-12vfyk4, .framer-GJ2I2 .framer-1jyc96e, .framer-GJ2I2 .framer-5ncusu, .framer-GJ2I2 .framer-1qgiyjk, .framer-GJ2I2 .framer-6ajefk, .framer-GJ2I2 .framer-1iujoi0, .framer-GJ2I2 .framer-12oamwn, .framer-GJ2I2 .framer-1flw9y8, .framer-GJ2I2 .framer-10ehkyg, .framer-GJ2I2 .framer-12oj1ss, .framer-GJ2I2 .framer-1jyadad, .framer-GJ2I2 .framer-1r510o3, .framer-GJ2I2 .framer-11p4av0, .framer-GJ2I2 .framer-fggplh, .framer-GJ2I2 .framer-1ggow0f, .framer-GJ2I2 .framer-19zgjza, .framer-GJ2I2 .framer-y4gfnf, .framer-GJ2I2 .framer-26m3vs, .framer-GJ2I2 .framer-bryk5s { gap: 0px; } .framer-GJ2I2.framer-ucjhfd > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-GJ2I2.framer-ucjhfd > :first-child { margin-top: 0px; } .framer-GJ2I2.framer-ucjhfd > :last-child { margin-bottom: 0px; } .framer-GJ2I2 .framer-15z089l > *, .framer-GJ2I2 .framer-1jyc96e > *, .framer-GJ2I2 .framer-1qgiyjk > *, .framer-GJ2I2 .framer-1iujoi0 > *, .framer-GJ2I2 .framer-1flw9y8 > *, .framer-GJ2I2 .framer-12oj1ss > *, .framer-GJ2I2 .framer-1r510o3 > *, .framer-GJ2I2 .framer-fggplh > *, .framer-GJ2I2 .framer-19zgjza > *, .framer-GJ2I2 .framer-26m3vs > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-GJ2I2 .framer-15z089l > :first-child, .framer-GJ2I2 .framer-12vfyk4 > :first-child, .framer-GJ2I2 .framer-1jyc96e > :first-child, .framer-GJ2I2 .framer-5ncusu > :first-child, .framer-GJ2I2 .framer-1qgiyjk > :first-child, .framer-GJ2I2 .framer-6ajefk > :first-child, .framer-GJ2I2 .framer-1iujoi0 > :first-child, .framer-GJ2I2 .framer-12oamwn > :first-child, .framer-GJ2I2 .framer-1flw9y8 > :first-child, .framer-GJ2I2 .framer-10ehkyg > :first-child, .framer-GJ2I2 .framer-12oj1ss > :first-child, .framer-GJ2I2 .framer-1jyadad > :first-child, .framer-GJ2I2 .framer-1r510o3 > :first-child, .framer-GJ2I2 .framer-11p4av0 > :first-child, .framer-GJ2I2 .framer-fggplh > :first-child, .framer-GJ2I2 .framer-1ggow0f > :first-child, .framer-GJ2I2 .framer-19zgjza > :first-child, .framer-GJ2I2 .framer-y4gfnf > :first-child, .framer-GJ2I2 .framer-26m3vs > :first-child, .framer-GJ2I2 .framer-bryk5s > :first-child { margin-left: 0px; } .framer-GJ2I2 .framer-15z089l > :last-child, .framer-GJ2I2 .framer-12vfyk4 > :last-child, .framer-GJ2I2 .framer-1jyc96e > :last-child, .framer-GJ2I2 .framer-5ncusu > :last-child, .framer-GJ2I2 .framer-1qgiyjk > :last-child, .framer-GJ2I2 .framer-6ajefk > :last-child, .framer-GJ2I2 .framer-1iujoi0 > :last-child, .framer-GJ2I2 .framer-12oamwn > :last-child, .framer-GJ2I2 .framer-1flw9y8 > :last-child, .framer-GJ2I2 .framer-10ehkyg > :last-child, .framer-GJ2I2 .framer-12oj1ss > :last-child, .framer-GJ2I2 .framer-1jyadad > :last-child, .framer-GJ2I2 .framer-1r510o3 > :last-child, .framer-GJ2I2 .framer-11p4av0 > :last-child, .framer-GJ2I2 .framer-fggplh > :last-child, .framer-GJ2I2 .framer-1ggow0f > :last-child, .framer-GJ2I2 .framer-19zgjza > :last-child, .framer-GJ2I2 .framer-y4gfnf > :last-child, .framer-GJ2I2 .framer-26m3vs > :last-child, .framer-GJ2I2 .framer-bryk5s > :last-child { margin-right: 0px; } .framer-GJ2I2 .framer-12vfyk4 > *, .framer-GJ2I2 .framer-5ncusu > *, .framer-GJ2I2 .framer-6ajefk > *, .framer-GJ2I2 .framer-12oamwn > *, .framer-GJ2I2 .framer-10ehkyg > *, .framer-GJ2I2 .framer-1jyadad > *, .framer-GJ2I2 .framer-11p4av0 > *, .framer-GJ2I2 .framer-1ggow0f > *, .framer-GJ2I2 .framer-y4gfnf > *, .framer-GJ2I2 .framer-bryk5s > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 140\n * @framerIntrinsicWidth 1540\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"MCOwgSIEo\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerInDhY6QBM=withCSS(Component,css,\"framer-GJ2I2\");export default FramerInDhY6QBM;FramerInDhY6QBM.displayName=\"Logo Ticker\";FramerInDhY6QBM.defaultProps={height:140,width:1540};addPropertyControls(FramerInDhY6QBM,{variant:{options:[\"q36ezOuLQ\",\"MCOwgSIEo\"],optionTitles:[\"Ticker\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerInDhY6QBM,[{explicitInter:true,fonts:[]},...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerInDhY6QBM\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"140\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"MCOwgSIEo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"1540\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./InDhY6QBM.map"],
  "mappings": "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",
  "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", "numChildren", "j", "hasChildren", "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", "childIndex", "animateToValue", "transformRef", "initialTime", "prevTime", "xOrY", "isHover", "isInView", "useInView", "isReducedMotion", "useReducedMotion", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "TickerFonts", "getFonts", "Ticker", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "oswG_FyJ1", "jLWIz7sgZ", "cK0u8JJIG", "JdMROP_5x", "MKRbq0x3u", "k449Bn784", "B7Ymv0o5T", "jf61ZysyS", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap15kyqbt", "args", "onTap4ko1ha", "onTapwjgfz9", "onTapktmgym", "onTap1i7f7fm", "onTape3bckm", "onTap9zc530", "onTap1k77vtx", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "ComponentViewportProvider", "Link", "Image2", "css", "FramerInDhY6QBM", "withCSS", "InDhY6QBM_default", "addPropertyControls", "ControlType", "addFonts"]
}
