{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/72O11ApITvgaMZRvyQex/Ticker.js", "ssg:https://framerusercontent.com/modules/94EH0PniaWfA9qsBztf8/ujjCsZ4svxfjqGrcZ6EL/UPTlkEI59.js", "ssg:https://framerusercontent.com/modules/ZyhRMdUDbG6jCeXcX417/jAx0CM73yvy3ZCmtz6ry/xEopxbA_m.js"],
  "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,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;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=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);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(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(slots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===slots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(slots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.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 isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\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]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}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:isCanvas?\"auto\":\"transform\"},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=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\":{\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"400\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (ab692b1)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"DBmuToEYP\",\"Xev2aahUI\",\"H5LgnyYVG\",\"D3ZHbR1Ym\",\"O6HipA8pg\",\"Y00IOEaLg\",\"OGYkkth9f\",\"gaJb3J6RH\",\"gRIe7Gpm1\",\"YB7qWmRjm\",\"R6kxMXmOk\",\"xGp0uRRBG\",\"ZM8Qx3ZKp\",\"jvmsHQA0j\",\"bdSaWeeXI\",\"BkHGVnSl0\"];const serializationHash=\"framer-9uJsc\";const variantClassNames={bdSaWeeXI:\"framer-v-zk8uqm\",BkHGVnSl0:\"framer-v-imw3pd\",D3ZHbR1Ym:\"framer-v-908tc2\",DBmuToEYP:\"framer-v-7b8lja\",gaJb3J6RH:\"framer-v-17l4q51\",gRIe7Gpm1:\"framer-v-o5yc7n\",H5LgnyYVG:\"framer-v-1tqanrg\",jvmsHQA0j:\"framer-v-1y77f3f\",O6HipA8pg:\"framer-v-1fthmfe\",OGYkkth9f:\"framer-v-ma6v6k\",R6kxMXmOk:\"framer-v-1f9arjs\",Xev2aahUI:\"framer-v-1sr7nf1\",xGp0uRRBG:\"framer-v-14hq9q8\",Y00IOEaLg:\"framer-v-15wa1k5\",YB7qWmRjm:\"framer-v-j25r0o\",ZM8Qx3ZKp:\"framer-v-ss70hv\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"fisher-funds\":\"DBmuToEYP\",\"sbs-wealth\":\"R6kxMXmOk\",\"tewhatuora-health-nz\":\"Y00IOEaLg\",\"waka-kotahi-nzta\":\"O6HipA8pg\",anz:\"D3ZHbR1Ym\",bnz:\"gRIe7Gpm1\",farmlands:\"BkHGVnSl0\",kiwibank:\"H5LgnyYVG\",mediaworks:\"YB7qWmRjm\",mercury:\"bdSaWeeXI\",Movember:\"OGYkkth9f\",opes:\"jvmsHQA0j\",simplicity:\"xGp0uRRBG\",ssc:\"gaJb3J6RH\",westpac:\"Xev2aahUI\",z:\"ZM8Qx3ZKp\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"DBmuToEYP\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"DBmuToEYP\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\",intrinsicHeight:40,intrinsicWidth:90,loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:80,pixelWidth:180,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/TdL4C0nwB4SM5GRQ0YpQxb4ohRw.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/TdL4C0nwB4SM5GRQ0YpQxb4ohRw.png?scale-down-to=512 512w,https://framerusercontent.com/images/TdL4C0nwB4SM5GRQ0YpQxb4ohRw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/TdL4C0nwB4SM5GRQ0YpQxb4ohRw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/TdL4C0nwB4SM5GRQ0YpQxb4ohRw.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/TdL4C0nwB4SM5GRQ0YpQxb4ohRw.png 5511w\"},className:cx(scopingClassNames,\"framer-7b8lja\",className,classNames),\"data-framer-name\":\"fisher-funds\",layoutDependency:layoutDependency,layoutId:\"DBmuToEYP\",ref:refBinding,style:{...style},...addPropertyOverrides({bdSaWeeXI:{\"data-framer-name\":\"mercury\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:60,intrinsicWidth:377,loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:120,pixelWidth:264,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/pdXJLHzqRe7Zhd4eStIb7eAe67k.svg\"}},BkHGVnSl0:{\"data-framer-name\":\"farmlands\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:60,intrinsicWidth:377,loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:120,pixelWidth:212,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/m1j6GQS5Wdgf4Z7LrTQYltnJebg.svg\"}},D3ZHbR1Ym:{\"data-framer-name\":\"anz\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:160,intrinsicWidth:250,loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:160,pixelWidth:250,src:\"https://framerusercontent.com/images/BteTuCvNnMK7xPvRi8jpgjTu9c.png\"}},gaJb3J6RH:{\"data-framer-name\":\"ssc\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:80,intrinsicWidth:180,loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:80,pixelWidth:180,src:\"https://framerusercontent.com/images/xpVgT6f4FhgLZvx5cz45cH2KCEU.svg\"}},gRIe7Gpm1:{\"data-framer-name\":\"bnz\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:80,intrinsicWidth:180,loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:80,pixelWidth:180,src:\"https://framerusercontent.com/images/1KRQL92to4Zdwquw4qNBSc9XBuQ.svg\"}},H5LgnyYVG:{\"data-framer-name\":\"kiwibank\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:54,intrinsicWidth:54,loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:54,pixelWidth:54,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/0JTmAb6ARLLHkDHru7kyx4VjK6w.png\"}},jvmsHQA0j:{\"data-framer-name\":\"opes\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:60,intrinsicWidth:377,loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:120,pixelWidth:257,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/cfHkmjpO12M2ocO0HmRmJi0Tr8.svg\"}},O6HipA8pg:{\"data-framer-name\":\"waka-kotahi-nzta\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:1064,intrinsicWidth:3300,loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:1064,pixelWidth:3300,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/SWqhImHeZfjIhXsWhQ8YDPbO1s.png\",srcSet:\"https://framerusercontent.com/images/SWqhImHeZfjIhXsWhQ8YDPbO1s.png?scale-down-to=512 512w,https://framerusercontent.com/images/SWqhImHeZfjIhXsWhQ8YDPbO1s.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/SWqhImHeZfjIhXsWhQ8YDPbO1s.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/SWqhImHeZfjIhXsWhQ8YDPbO1s.png 3300w\"}},OGYkkth9f:{\"data-framer-name\":\"Movember\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:134,intrinsicWidth:318,loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:134,pixelWidth:318,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/7LTFsZ6rB2fQtjXIL196iRi7zd4.png\"}},R6kxMXmOk:{\"data-framer-name\":\"sbs-wealth\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:60,intrinsicWidth:377,loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:319,pixelWidth:725,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/DHy1EftY0SEE0N6ilW3upcDFZ1c.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/DHy1EftY0SEE0N6ilW3upcDFZ1c.png?scale-down-to=512 512w,https://framerusercontent.com/images/DHy1EftY0SEE0N6ilW3upcDFZ1c.png 725w\"}},Xev2aahUI:{\"data-framer-name\":\"westpac\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:134,intrinsicWidth:318,loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:134,pixelWidth:318,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/0J8bjU3ZBeMKTM2K8lTlOLC9UyI.png\"}},xGp0uRRBG:{\"data-framer-name\":\"simplicity\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:60,intrinsicWidth:377,loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:240,pixelWidth:540,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/Uy6ni8XaLY0hAduVVxtrC7R8zsc.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Uy6ni8XaLY0hAduVVxtrC7R8zsc.png?scale-down-to=512 512w,https://framerusercontent.com/images/Uy6ni8XaLY0hAduVVxtrC7R8zsc.png 540w\"}},Y00IOEaLg:{\"data-framer-name\":\"tewhatuora-health-nz\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:413,intrinsicWidth:1058,loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:413,pixelWidth:1058,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/HpcpEJhPn7CJ4gBc3tvot8yG7DU.png\",srcSet:\"https://framerusercontent.com/images/HpcpEJhPn7CJ4gBc3tvot8yG7DU.png?scale-down-to=512 512w,https://framerusercontent.com/images/HpcpEJhPn7CJ4gBc3tvot8yG7DU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HpcpEJhPn7CJ4gBc3tvot8yG7DU.png 1058w\"}},YB7qWmRjm:{\"data-framer-name\":\"mediaworks\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:60,intrinsicWidth:377,loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:60,pixelWidth:377,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/PfLmCiMHsWwTqmXuguNfQlQoCw.png\"}},ZM8Qx3ZKp:{\"data-framer-name\":\"z\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:60,intrinsicWidth:377,loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:120,pixelWidth:107,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/TnQV8epEUo8ZAkXadaShbgzN7AI.svg\"}}},baseVariant,gestureVariant)})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-9uJsc.framer-1u7f6jk, .framer-9uJsc .framer-1u7f6jk { display: block; }\",\".framer-9uJsc.framer-7b8lja { height: 60px; overflow: visible; position: relative; width: 167px; }\",\".framer-9uJsc.framer-v-1sr7nf1.framer-7b8lja { width: 140px; }\",\".framer-9uJsc.framer-v-1tqanrg.framer-7b8lja { overflow: hidden; width: 46px; }\",\".framer-9uJsc.framer-v-908tc2.framer-7b8lja { width: 116px; }\",\".framer-9uJsc.framer-v-1fthmfe.framer-7b8lja { width: 142px; }\",\".framer-9uJsc.framer-v-15wa1k5.framer-7b8lja { width: 139px; }\",\".framer-9uJsc.framer-v-ma6v6k.framer-7b8lja { width: 110px; }\",\".framer-9uJsc.framer-v-17l4q51.framer-7b8lja { width: 72px; }\",\".framer-9uJsc.framer-v-o5yc7n.framer-7b8lja { width: 85px; }\",\".framer-9uJsc.framer-v-j25r0o.framer-7b8lja, .framer-9uJsc.framer-v-1f9arjs.framer-7b8lja, .framer-9uJsc.framer-v-14hq9q8.framer-7b8lja, .framer-9uJsc.framer-v-zk8uqm.framer-7b8lja { width: 126px; }\",\".framer-9uJsc.framer-v-ss70hv.framer-7b8lja { width: 48px; }\",\".framer-9uJsc.framer-v-1y77f3f.framer-7b8lja { width: 137px; }\",\".framer-9uJsc.framer-v-imw3pd.framer-7b8lja { width: 114px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 60\n * @framerIntrinsicWidth 167\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"Xev2aahUI\":{\"layout\":[\"fixed\",\"fixed\"]},\"H5LgnyYVG\":{\"layout\":[\"fixed\",\"fixed\"]},\"D3ZHbR1Ym\":{\"layout\":[\"fixed\",\"fixed\"]},\"O6HipA8pg\":{\"layout\":[\"fixed\",\"fixed\"]},\"Y00IOEaLg\":{\"layout\":[\"fixed\",\"fixed\"]},\"OGYkkth9f\":{\"layout\":[\"fixed\",\"fixed\"]},\"gaJb3J6RH\":{\"layout\":[\"fixed\",\"fixed\"]},\"gRIe7Gpm1\":{\"layout\":[\"fixed\",\"fixed\"]},\"YB7qWmRjm\":{\"layout\":[\"fixed\",\"fixed\"]},\"R6kxMXmOk\":{\"layout\":[\"fixed\",\"fixed\"]},\"xGp0uRRBG\":{\"layout\":[\"fixed\",\"fixed\"]},\"ZM8Qx3ZKp\":{\"layout\":[\"fixed\",\"fixed\"]},\"jvmsHQA0j\":{\"layout\":[\"fixed\",\"fixed\"]},\"bdSaWeeXI\":{\"layout\":[\"fixed\",\"fixed\"]},\"BkHGVnSl0\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerUPTlkEI59=withCSS(Component,css,\"framer-9uJsc\");export default FramerUPTlkEI59;FramerUPTlkEI59.displayName=\"Customer Logos\";FramerUPTlkEI59.defaultProps={height:60,width:167};addPropertyControls(FramerUPTlkEI59,{variant:{options:[\"DBmuToEYP\",\"Xev2aahUI\",\"H5LgnyYVG\",\"D3ZHbR1Ym\",\"O6HipA8pg\",\"Y00IOEaLg\",\"OGYkkth9f\",\"gaJb3J6RH\",\"gRIe7Gpm1\",\"YB7qWmRjm\",\"R6kxMXmOk\",\"xGp0uRRBG\",\"ZM8Qx3ZKp\",\"jvmsHQA0j\",\"bdSaWeeXI\",\"BkHGVnSl0\"],optionTitles:[\"fisher-funds\",\"westpac\",\"kiwibank\",\"anz\",\"waka-kotahi-nzta\",\"tewhatuora-health-nz\",\"Movember\",\"ssc\",\"bnz\",\"mediaworks\",\"sbs-wealth\",\"simplicity\",\"z\",\"opes\",\"mercury\",\"farmlands\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerUPTlkEI59,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerUPTlkEI59\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"167\",\"framerIntrinsicHeight\":\"60\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Xev2aahUI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"H5LgnyYVG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"D3ZHbR1Ym\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"O6HipA8pg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Y00IOEaLg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"OGYkkth9f\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"gaJb3J6RH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"gRIe7Gpm1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"YB7qWmRjm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"R6kxMXmOk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"xGp0uRRBG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ZM8Qx3ZKp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"jvmsHQA0j\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"bdSaWeeXI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"BkHGVnSl0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UPTlkEI59.map", "// Generated by Framer (ab692b1)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/72O11ApITvgaMZRvyQex/Ticker.js\";import CustomerLogos from\"https://framerusercontent.com/modules/94EH0PniaWfA9qsBztf8/ujjCsZ4svxfjqGrcZ6EL/UPTlkEI59.js\";const CustomerLogosFonts=getFonts(CustomerLogos);const TickerFonts=getFonts(Ticker);const cycleOrder=[\"tSKQO7Lsu\",\"o5dUpDjJ2\",\"b4wplDp2o\",\"S8v5jcUNN\"];const serializationHash=\"framer-KYKIP\";const variantClassNames={b4wplDp2o:\"framer-v-m4x1d5\",o5dUpDjJ2:\"framer-v-1fhp5sj\",S8v5jcUNN:\"framer-v-ffdyl6\",tSKQO7Lsu:\"framer-v-10q4jme\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"tSKQO7Lsu\",Phone:\"S8v5jcUNN\",Tablet:\"b4wplDp2o\",Wide:\"o5dUpDjJ2\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"tSKQO7Lsu\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"tSKQO7Lsu\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-10q4jme\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"tSKQO7Lsu\",ref:refBinding,style:{...style},...addPropertyOverrides({b4wplDp2o:{\"data-framer-name\":\"Tablet\"},o5dUpDjJ2:{\"data-framer-name\":\"Wide\"},S8v5jcUNN:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-sdq22-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"v7FD3J4bg-container\",nodeId:\"v7FD3J4bg\",rendersWithMotion:true,scopeId:\"xEopxbA_m\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:60,height:\"100%\",hoverFactor:1,id:\"v7FD3J4bg\",layoutId:\"v7FD3J4bg\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"148px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-18n18js-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"QbDCq_Nx3-container\",nodeId:\"QbDCq_Nx3\",rendersWithMotion:true,scopeId:\"xEopxbA_m\",children:/*#__PURE__*/_jsx(CustomerLogos,{height:\"100%\",id:\"QbDCq_Nx3\",layoutId:\"QbDCq_Nx3\",style:{height:\"100%\",width:\"100%\"},variant:\"DBmuToEYP\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"148px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1x3pbl4-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"D159e1bWy-container\",nodeId:\"D159e1bWy\",rendersWithMotion:true,scopeId:\"xEopxbA_m\",children:/*#__PURE__*/_jsx(CustomerLogos,{height:\"100%\",id:\"D159e1bWy\",layoutId:\"D159e1bWy\",style:{height:\"100%\",width:\"100%\"},variant:\"Xev2aahUI\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"148px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1xke9k1-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"S29y4qzI1-container\",nodeId:\"S29y4qzI1\",rendersWithMotion:true,scopeId:\"xEopxbA_m\",children:/*#__PURE__*/_jsx(CustomerLogos,{height:\"100%\",id:\"S29y4qzI1\",layoutId:\"S29y4qzI1\",style:{height:\"100%\",width:\"100%\"},variant:\"H5LgnyYVG\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"148px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1yqo196-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"KmxkzzzyG-container\",nodeId:\"KmxkzzzyG\",rendersWithMotion:true,scopeId:\"xEopxbA_m\",children:/*#__PURE__*/_jsx(CustomerLogos,{height:\"100%\",id:\"KmxkzzzyG\",layoutId:\"KmxkzzzyG\",style:{height:\"100%\",width:\"100%\"},variant:\"D3ZHbR1Ym\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"148px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-eca7w0-container\",\"data-framer-name\":\"Waka Kotahi\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"lUXJyM1J0-container\",name:\"Waka Kotahi\",nodeId:\"lUXJyM1J0\",rendersWithMotion:true,scopeId:\"xEopxbA_m\",children:/*#__PURE__*/_jsx(CustomerLogos,{height:\"100%\",id:\"lUXJyM1J0\",layoutId:\"lUXJyM1J0\",name:\"Waka Kotahi\",style:{height:\"100%\",width:\"100%\"},variant:\"O6HipA8pg\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"148px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1dm5fcx-container\",\"data-framer-name\":\"TWO\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"knY9uPhJA-container\",name:\"TWO\",nodeId:\"knY9uPhJA\",rendersWithMotion:true,scopeId:\"xEopxbA_m\",children:/*#__PURE__*/_jsx(CustomerLogos,{height:\"100%\",id:\"knY9uPhJA\",layoutId:\"knY9uPhJA\",name:\"TWO\",style:{height:\"100%\",width:\"100%\"},variant:\"Y00IOEaLg\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"148px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-oswrea-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"wQPBo0Rwz-container\",nodeId:\"wQPBo0Rwz\",rendersWithMotion:true,scopeId:\"xEopxbA_m\",children:/*#__PURE__*/_jsx(CustomerLogos,{height:\"100%\",id:\"wQPBo0Rwz\",layoutId:\"wQPBo0Rwz\",style:{height:\"100%\",width:\"100%\"},variant:\"OGYkkth9f\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"148px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-3sw36r-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"ll7YCi8Qq-container\",nodeId:\"ll7YCi8Qq\",rendersWithMotion:true,scopeId:\"xEopxbA_m\",children:/*#__PURE__*/_jsx(CustomerLogos,{height:\"100%\",id:\"ll7YCi8Qq\",layoutId:\"ll7YCi8Qq\",style:{height:\"100%\",width:\"100%\"},variant:\"gaJb3J6RH\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"148px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-gsmoox-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"WwLN7r3hj-container\",nodeId:\"WwLN7r3hj\",rendersWithMotion:true,scopeId:\"xEopxbA_m\",children:/*#__PURE__*/_jsx(CustomerLogos,{height:\"100%\",id:\"WwLN7r3hj\",layoutId:\"WwLN7r3hj\",style:{height:\"100%\",width:\"100%\"},variant:\"gRIe7Gpm1\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"148px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1127vbm-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"Yx8cC3koj-container\",nodeId:\"Yx8cC3koj\",rendersWithMotion:true,scopeId:\"xEopxbA_m\",children:/*#__PURE__*/_jsx(CustomerLogos,{height:\"100%\",id:\"Yx8cC3koj\",layoutId:\"Yx8cC3koj\",style:{height:\"100%\",width:\"100%\"},variant:\"R6kxMXmOk\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"148px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-apmzla-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"ItKiZcM9p-container\",nodeId:\"ItKiZcM9p\",rendersWithMotion:true,scopeId:\"xEopxbA_m\",children:/*#__PURE__*/_jsx(CustomerLogos,{height:\"100%\",id:\"ItKiZcM9p\",layoutId:\"ItKiZcM9p\",style:{height:\"100%\",width:\"100%\"},variant:\"xGp0uRRBG\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"65px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-16bexh-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"f4xN_aBgt-container\",nodeId:\"f4xN_aBgt\",rendersWithMotion:true,scopeId:\"xEopxbA_m\",children:/*#__PURE__*/_jsx(CustomerLogos,{height:\"100%\",id:\"f4xN_aBgt\",layoutId:\"f4xN_aBgt\",style:{height:\"100%\",width:\"100%\"},variant:\"ZM8Qx3ZKp\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"115px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ndayuw-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"yITNxCYt5-container\",nodeId:\"yITNxCYt5\",rendersWithMotion:true,scopeId:\"xEopxbA_m\",children:/*#__PURE__*/_jsx(CustomerLogos,{height:\"100%\",id:\"yITNxCYt5\",layoutId:\"yITNxCYt5\",style:{height:\"100%\",width:\"100%\"},variant:\"jvmsHQA0j\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"115px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1vhf784-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"eBcUoOwUt-container\",nodeId:\"eBcUoOwUt\",rendersWithMotion:true,scopeId:\"xEopxbA_m\",children:/*#__PURE__*/_jsx(CustomerLogos,{height:\"100%\",id:\"eBcUoOwUt\",layoutId:\"eBcUoOwUt\",style:{height:\"100%\",width:\"100%\"},variant:\"bdSaWeeXI\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"95px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-7nxb6u-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"cV9goKPdr-container\",nodeId:\"cV9goKPdr\",rendersWithMotion:true,scopeId:\"xEopxbA_m\",children:/*#__PURE__*/_jsx(CustomerLogos,{height:\"100%\",id:\"cV9goKPdr\",layoutId:\"cV9goKPdr\",style:{height:\"100%\",width:\"100%\"},variant:\"BkHGVnSl0\",width:\"100%\"})})})],speed:80,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({S8v5jcUNN:{gap:40}},baseVariant,gestureVariant)})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-KYKIP.framer-1iw57r6, .framer-KYKIP .framer-1iw57r6 { display: block; }\",\".framer-KYKIP.framer-10q4jme { height: 130px; overflow: hidden; position: relative; width: 1200px; }\",\".framer-KYKIP .framer-sdq22-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-KYKIP .framer-18n18js-container, .framer-KYKIP .framer-1x3pbl4-container, .framer-KYKIP .framer-1xke9k1-container, .framer-KYKIP .framer-1yqo196-container, .framer-KYKIP .framer-eca7w0-container, .framer-KYKIP .framer-1dm5fcx-container, .framer-KYKIP .framer-oswrea-container, .framer-KYKIP .framer-3sw36r-container, .framer-KYKIP .framer-gsmoox-container, .framer-KYKIP .framer-1127vbm-container, .framer-KYKIP .framer-apmzla-container { aspect-ratio: 3.0833333333333335 / 1; height: var(--framer-aspect-ratio-supported, 48px); position: relative; width: 148px; }\",\".framer-KYKIP .framer-16bexh-container { aspect-ratio: 1.3541666666666667 / 1; height: var(--framer-aspect-ratio-supported, 48px); position: relative; width: 65px; }\",\".framer-KYKIP .framer-ndayuw-container, .framer-KYKIP .framer-1vhf784-container { aspect-ratio: 2.3958333333333335 / 1; height: var(--framer-aspect-ratio-supported, 48px); position: relative; width: 115px; }\",\".framer-KYKIP .framer-7nxb6u-container { aspect-ratio: 1.9791666666666667 / 1; height: var(--framer-aspect-ratio-supported, 48px); position: relative; width: 95px; }\",\".framer-KYKIP.framer-v-1fhp5sj.framer-10q4jme { width: 1600px; }\",\".framer-KYKIP.framer-v-m4x1d5.framer-10q4jme { width: 810px; }\",\".framer-KYKIP.framer-v-ffdyl6.framer-10q4jme { width: 390px; }\",\".framer-KYKIP.framer-v-ffdyl6 .framer-sdq22-container { aspect-ratio: 3 / 1; bottom: unset; height: var(--framer-aspect-ratio-supported, 130px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 130\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"o5dUpDjJ2\":{\"layout\":[\"fixed\",\"fixed\"]},\"b4wplDp2o\":{\"layout\":[\"fixed\",\"fixed\"]},\"S8v5jcUNN\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerxEopxbA_m=withCSS(Component,css,\"framer-KYKIP\");export default FramerxEopxbA_m;FramerxEopxbA_m.displayName=\"ticker-customers\";FramerxEopxbA_m.defaultProps={height:130,width:1200};addPropertyControls(FramerxEopxbA_m,{variant:{options:[\"tSKQO7Lsu\",\"o5dUpDjJ2\",\"b4wplDp2o\",\"S8v5jcUNN\"],optionTitles:[\"Desktop\",\"Wide\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerxEopxbA_m,[{explicitInter:true,fonts:[]},...CustomerLogosFonts,...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerxEopxbA_m\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"o5dUpDjJ2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"b4wplDp2o\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"S8v5jcUNN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"130\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./xEopxbA_m.map"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "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", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "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", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "Image2", "getLoadingLazyAtYPosition", "css", "FramerUPTlkEI59", "withCSS", "UPTlkEI59_default", "addPropertyControls", "ControlType", "addFonts", "CustomerLogosFonts", "getFonts", "UPTlkEI59_default", "TickerFonts", "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", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerxEopxbA_m", "withCSS", "xEopxbA_m_default", "addPropertyControls", "ControlType", "addFonts"]
}
