{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/6YdWVZhgezRAHPsDckZo/Ticker.js", "ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/sK9q20UrvRztdebA5J7g/Ticker.js", "ssg:https://framerusercontent.com/modules/tNLIETBmbVi13JjV1pC7/4e1lAZvlRJoF1aguLz8o/aL1M4pcFt.js", "ssg:https://framerusercontent.com/modules/9m2EU25whsHxqf1DzSPH/KNMH0Dn04ovFGJyFQv48/BYfjwEyLq.js", "ssg:https://framerusercontent.com/modules/uU69jdxriAF0OTHtc8f9/N7vZs2ifCjL9NUoLUoGW/ciUsLNX81.js", "ssg:https://framerusercontent.com/modules/x0Bl02NSOiBtYfzkSg7v/MBwS60jnGMtIp7hfzVwW/EJYMli2vh.js", "ssg:https://framerusercontent.com/modules/mFDk8AAEIfAap24XCmZb/vH7kCwefT1ZG9KZsWuwh/JA1uj1NUe.js", "ssg:https://framerusercontent.com/modules/YaKJQZf58JqvmZN4iKa9/sG96rgN9EWArKNv1onRj/jwe_la75H.js", "ssg:https://framerusercontent.com/modules/hNtFNI9tW872c687Qe3H/7TX21TnbdDuFfAX04i4P/oXth8QW9p.js", "ssg:https://framerusercontent.com/modules/gLKmqvNozP0Sb8WJzos5/njP0k7hZbJj9ecO7ItR8/tUuAzSjlI.js", "ssg:https://framerusercontent.com/modules/aupbQ5qM4i0944XgUOOJ/NjrLkl3q8ESrtGs1yFMs/ySy1J882M.js", "ssg:https://framerusercontent.com/modules/hpGn3cuRCKkiJ6ZWL0xX/KgYbf5VygLXzrE4EnRMS/zUXS6m2Dq.js", "ssg:https://framerusercontent.com/modules/7iTQw81JuOVscMPXeurh/Rz70EQFsozYem32MVS5K/augiA20Il.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 currentTarget=RenderTarget.current();const isCanvas=currentTarget===RenderTarget.canvas||currentTarget===RenderTarget.export;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);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(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.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(filteredSlots,(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,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):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\":{\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "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,ref4,ref5;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\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/ cloneElement(child,{key:i+\" \"+childIndex,style:{...(ref2=child.props)===null||ref2===void 0?void 0:ref2.style,width:widthType?(ref3=child.props)===null||ref3===void 0?void 0:ref3.width:\"100%\",height:heightType?(ref4=child.props)===null||ref4===void 0?void 0:ref4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(ref5=child.props)===null||ref5===void 0?void 0:ref5.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]);}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\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (b2780b5)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={l4RLHSA6V:{hover:true}};const cycleOrder=[\"l4RLHSA6V\",\"Mt0Mip0FK\"];const serializationHash=\"framer-vkBTA\";const variantClassNames={l4RLHSA6V:\"framer-v-13iksw3\",Mt0Mip0FK:\"framer-v-1gfu0n0\"};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 toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Image:\"l4RLHSA6V\",Text:\"Mt0Mip0FK\"};const getProps=({height,id,image,textBG,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,HJYYGhJC3:(_ref=textBG!==null&&textBG!==void 0?textBG:props.HJYYGhJC3)!==null&&_ref!==void 0?_ref:\"rgb(218, 225, 25)\",shYZ8xZ6P:image!==null&&image!==void 0?image:props.shYZ8xZ6P,variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"l4RLHSA6V\"};};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,shYZ8xZ6P,HJYYGhJC3,b4EsfMO6DwoijqL5Mw,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"l4RLHSA6V\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"Mt0Mip0FK\")return true;return false;};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-13iksw3\",className,classNames),\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"l4RLHSA6V\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"l4RLHSA6V-hover\":{\"data-framer-name\":undefined},Mt0Mip0FK:{\"data-framer-name\":\"Text\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0),sizes:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||40)-0,...toResponsiveImage(shYZ8xZ6P)},className:\"framer-4rceim\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"FKFFQcwvq\",style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255))\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:99,borderBottomRightRadius:99,borderTopLeftRadius:99,borderTopRightRadius:99},variants:{Mt0Mip0FK:{backgroundColor:HJYYGhJC3}},...addPropertyOverrides({\"l4RLHSA6V-hover\":{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+-10),sizes:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||40)-0,...toResponsiveImage(shYZ8xZ6P)}},Mt0Mip0FK:{background:undefined}},baseVariant,gestureVariant),children:isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-b4EsfMO6D-woijqL5Mw))\"},children:\"+1k\"})}),className:\"framer-1f7j4lv\",fonts:[\"GF;Inter-600\"],layoutDependency:layoutDependency,layoutId:\"Kg1ynTzIM\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-b4EsfMO6D-woijqL5Mw)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-b4EsfMO6D-woijqL5Mw\":b4EsfMO6DwoijqL5Mw},transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-vkBTA.framer-31hwom, .framer-vkBTA .framer-31hwom { display: block; }\",\".framer-vkBTA.framer-13iksw3 { cursor: pointer; height: 40px; overflow: visible; position: relative; width: 28px; }\",\".framer-vkBTA .framer-4rceim { aspect-ratio: 1 / 1; bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; top: 0px; width: var(--framer-aspect-ratio-supported, 40px); z-index: 1; }\",\".framer-vkBTA .framer-1f7j4lv { flex: none; height: auto; left: 50%; position: absolute; top: 50%; white-space: pre; width: auto; z-index: 1; }\",\".framer-vkBTA.framer-v-1gfu0n0.framer-13iksw3 { cursor: unset; }\",\".framer-vkBTA.framer-v-13iksw3.hover .framer-4rceim { bottom: 10px; top: -10px; width: var(--framer-aspect-ratio-supported, 30px); }\",'.framer-vkBTA[data-border=\"true\"]::after, .framer-vkBTA [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 28\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"Mt0Mip0FK\":{\"layout\":[\"fixed\",\"fixed\"]},\"CXZuSKHYI\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"shYZ8xZ6P\":\"image\",\"HJYYGhJC3\":\"textBG\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameraL1M4pcFt=withCSS(Component,css,\"framer-vkBTA\");export default FrameraL1M4pcFt;FrameraL1M4pcFt.displayName=\"Avatar\";FrameraL1M4pcFt.defaultProps={height:40,width:28};addPropertyControls(FrameraL1M4pcFt,{variant:{options:[\"l4RLHSA6V\",\"Mt0Mip0FK\"],optionTitles:[\"Image\",\"Text\"],title:\"Variant\",type:ControlType.Enum},shYZ8xZ6P:{title:\"Image\",type:ControlType.ResponsiveImage},HJYYGhJC3:{defaultValue:\"rgb(218, 225, 25)\",title:\"Text BG\",type:ControlType.Color}});addFonts(FrameraL1M4pcFt,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\",weight:\"600\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraL1M4pcFt\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"shYZ8xZ6P\\\":\\\"image\\\",\\\"HJYYGhJC3\\\":\\\"textBG\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"40\",\"framerIntrinsicWidth\":\"28\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Mt0Mip0FK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"CXZuSKHYI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./aL1M4pcFt.map", "// Generated by Framer (b2780b5)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,getLoadingLazyAtYPosition,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const serializationHash=\"framer-xrWrh\";const variantClassNames={l_tIJr8HQ:\"framer-v-ugokga\"};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 transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"l_tIJr8HQ\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-ugokga\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"l_tIJr8HQ\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:356,intrinsicWidth:467,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||74)*.5000000000000002-31.5)),pixelHeight:712,pixelWidth:934,sizes:\"82px\",src:\"https://framerusercontent.com/images/mTDUu24UMjzJGDbooSJ4G9QncLc.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/mTDUu24UMjzJGDbooSJ4G9QncLc.png?scale-down-to=512 512w,https://framerusercontent.com/images/mTDUu24UMjzJGDbooSJ4G9QncLc.png 934w\"},className:\"framer-ulnq9c\",\"data-framer-name\":\"Images (1)\",layoutDependency:layoutDependency,layoutId:\"W0jOaBdPu\",transformTemplate:transformTemplate1})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-xrWrh.framer-ekx7ll, .framer-xrWrh .framer-ekx7ll { display: block; }\",\".framer-xrWrh.framer-ugokga { height: 74px; overflow: hidden; position: relative; width: 301px; }\",\".framer-xrWrh .framer-ulnq9c { aspect-ratio: 1.3117977528089888 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 63px); left: 50%; overflow: visible; position: absolute; top: 50%; width: 82px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 74\n * @framerIntrinsicWidth 301\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerBYfjwEyLq=withCSS(Component,css,\"framer-xrWrh\");export default FramerBYfjwEyLq;FramerBYfjwEyLq.displayName=\"OpenAI\";FramerBYfjwEyLq.defaultProps={height:74,width:301};addFonts(FramerBYfjwEyLq,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerBYfjwEyLq\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"301\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"74\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./BYfjwEyLq.map", "// Generated by Framer (b2780b5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,cx,getLoadingLazyAtYPosition,Image,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const serializationHash=\"framer-iLqjM\";const variantClassNames={dr8XT7KN9:\"framer-v-u861g4\"};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 transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"dr8XT7KN9\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-u861g4\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"dr8XT7KN9\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1rk0e72\",\"data-framer-name\":\"Splice\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"ygEg9_Tzh\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 317 100\"><g transform=\"translate(0 0.018)\" id=\"ss8919443865_1\"><path d=\"M 0 0 L 317 0 L 317 99.137 L 0 99.137 Z\" fill=\"transparent\"></path></g></svg>',svgContentId:8919443865,withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:307,intrinsicWidth:500,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||94)*.5000000000000002-29)),pixelHeight:614,pixelWidth:1e3,positionX:\"center\",positionY:\"center\",sizes:\"94px\",src:\"https://framerusercontent.com/images/5fk7WlgZSynzrORAtdgknjcCI.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/5fk7WlgZSynzrORAtdgknjcCI.png?scale-down-to=512 512w,https://framerusercontent.com/images/5fk7WlgZSynzrORAtdgknjcCI.png 1000w\"},className:\"framer-c7fnga\",\"data-framer-name\":\"E83mVYnVoAQ3UZW\",layoutDependency:layoutDependency,layoutId:\"UeTC6_2fu\",transformTemplate:transformTemplate1})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-iLqjM.framer-sr8x01, .framer-iLqjM .framer-sr8x01 { display: block; }\",\".framer-iLqjM.framer-u861g4 { height: 94px; overflow: hidden; position: relative; width: 299px; }\",\".framer-iLqjM .framer-1rk0e72 { flex: none; height: 100px; left: calc(52.842809364548515% - 317px / 2); position: absolute; top: calc(53.191489361702146% - 100px / 2); width: 317px; }\",\".framer-iLqjM .framer-c7fnga { aspect-ratio: 1.6286644951140066 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 58px); left: 50%; overflow: visible; position: absolute; top: 50%; width: 94px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 94\n * @framerIntrinsicWidth 299\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerciUsLNX81=withCSS(Component,css,\"framer-iLqjM\");export default FramerciUsLNX81;FramerciUsLNX81.displayName=\"Splice\";FramerciUsLNX81.defaultProps={height:94,width:299};addFonts(FramerciUsLNX81,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerciUsLNX81\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"299\",\"framerIntrinsicHeight\":\"94\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ciUsLNX81.map", "// Generated by Framer (b2780b5)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,getLoadingLazyAtYPosition,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const serializationHash=\"framer-qyczo\";const variantClassNames={KrJPGNiTm:\"framer-v-1ode962\"};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 transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"KrJPGNiTm\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1ode962\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"KrJPGNiTm\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:339,intrinsicWidth:474,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0),pixelHeight:678,pixelWidth:948,sizes:`calc(${((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||83)- -7} * 1.3982)`,src:\"https://framerusercontent.com/images/7KhkvYmYe4KOoDnvMiQFSkZ8c.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/7KhkvYmYe4KOoDnvMiQFSkZ8c.png?scale-down-to=512 512w,https://framerusercontent.com/images/7KhkvYmYe4KOoDnvMiQFSkZ8c.png 948w\"},className:\"framer-wr7mtg\",\"data-framer-name\":\"OSFC-Logo White_Outline\",layoutDependency:layoutDependency,layoutId:\"fcKpEaijI\",transformTemplate:transformTemplate1})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-qyczo.framer-1cuner7, .framer-qyczo .framer-1cuner7 { display: block; }\",\".framer-qyczo.framer-1ode962 { height: 83px; overflow: hidden; position: relative; width: 178px; }\",\".framer-qyczo .framer-wr7mtg { aspect-ratio: 1.3982300884955752 / 1; bottom: -7px; flex: none; left: 48%; overflow: visible; position: absolute; top: 0px; width: var(--framer-aspect-ratio-supported, 126px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 83\n * @framerIntrinsicWidth 178\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerEJYMli2vh=withCSS(Component,css,\"framer-qyczo\");export default FramerEJYMli2vh;FramerEJYMli2vh.displayName=\"Framer\";FramerEJYMli2vh.defaultProps={height:83,width:178};addFonts(FramerEJYMli2vh,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerEJYMli2vh\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"83\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"178\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./EJYMli2vh.map", "// Generated by Framer (b2780b5)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,getLoadingLazyAtYPosition,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const serializationHash=\"framer-Fl8Vg\";const variantClassNames={tpWFM5HMt:\"framer-v-ii1890\"};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 transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"tpWFM5HMt\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-ii1890\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"tpWFM5HMt\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:491,intrinsicWidth:491,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+-12),pixelHeight:982,pixelWidth:982,sizes:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||91)- -24,src:\"https://framerusercontent.com/images/PR4Khz3Pp6O340IpngoXirQVE.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/PR4Khz3Pp6O340IpngoXirQVE.png?scale-down-to=512 512w,https://framerusercontent.com/images/PR4Khz3Pp6O340IpngoXirQVE.png 982w\"},className:\"framer-xpajgl\",\"data-framer-name\":\"Images\",layoutDependency:layoutDependency,layoutId:\"Fti_hnmoq\",transformTemplate:transformTemplate1})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Fl8Vg.framer-1e7azaj, .framer-Fl8Vg .framer-1e7azaj { display: block; }\",\".framer-Fl8Vg.framer-ii1890 { height: 91px; overflow: hidden; position: relative; width: 300px; }\",\".framer-Fl8Vg .framer-xpajgl { aspect-ratio: 1 / 1; bottom: -12px; flex: none; left: 50%; overflow: visible; position: absolute; top: -12px; width: var(--framer-aspect-ratio-supported, 115px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 91\n * @framerIntrinsicWidth 300\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerJA1uj1NUe=withCSS(Component,css,\"framer-Fl8Vg\");export default FramerJA1uj1NUe;FramerJA1uj1NUe.displayName=\"amazon\";FramerJA1uj1NUe.defaultProps={height:91,width:300};addFonts(FramerJA1uj1NUe,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerJA1uj1NUe\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"300\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"91\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./JA1uj1NUe.map", "// Generated by Framer (b2780b5)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,getLoadingLazyAtYPosition,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const serializationHash=\"framer-B9qvh\";const variantClassNames={D9o8oygjX:\"framer-v-180xyfk\"};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 transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"D9o8oygjX\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-180xyfk\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"D9o8oygjX\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:321,intrinsicWidth:492,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||97)*.5051546391752579-25.5)),pixelHeight:642,pixelWidth:984,sizes:\"78px\",src:\"https://framerusercontent.com/images/xvy9DGvWPCo4SIHs5Yc1xgKtc.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/xvy9DGvWPCo4SIHs5Yc1xgKtc.png?scale-down-to=512 512w,https://framerusercontent.com/images/xvy9DGvWPCo4SIHs5Yc1xgKtc.png 984w\"},className:\"framer-16smlel\",\"data-framer-name\":\"Northern Territory_Football_League_(NTFL)_2021\\xe2\\x80\\x93_logo\",layoutDependency:layoutDependency,layoutId:\"RHjV3B8px\",transformTemplate:transformTemplate1})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-B9qvh.framer-1um04hp, .framer-B9qvh .framer-1um04hp { display: block; }\",\".framer-B9qvh.framer-180xyfk { height: 97px; overflow: hidden; position: relative; width: 205px; }\",\".framer-B9qvh .framer-16smlel { aspect-ratio: 1.5327102803738317 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 51px); left: 50%; overflow: visible; position: absolute; top: 51%; width: 78px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 97\n * @framerIntrinsicWidth 205\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerjwe_la75H=withCSS(Component,css,\"framer-B9qvh\");export default Framerjwe_la75H;Framerjwe_la75H.displayName=\"Tesla\";Framerjwe_la75H.defaultProps={height:97,width:205};addFonts(Framerjwe_la75H,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerjwe_la75H\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"205\",\"framerIntrinsicHeight\":\"97\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./jwe_la75H.map", "// Generated by Framer (b2780b5)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,getLoadingLazyAtYPosition,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const serializationHash=\"framer-Lv1nS\";const variantClassNames={UvmBGrUVd:\"framer-v-qbgs39\"};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 transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"UvmBGrUVd\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-qbgs39\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"UvmBGrUVd\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:148,intrinsicWidth:500,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0),pixelHeight:296,pixelWidth:1e3,positionX:\"center\",positionY:\"center\",sizes:`calc(${((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||78)- -2} * 3.3784)`,src:\"https://framerusercontent.com/images/CNvax1FSXsSJFhIOCSdbrzi141E.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/CNvax1FSXsSJFhIOCSdbrzi141E.png?scale-down-to=512 512w,https://framerusercontent.com/images/CNvax1FSXsSJFhIOCSdbrzi141E.png 1000w\"},className:\"framer-afsky4\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"Ix7gEFmFC\",transformTemplate:transformTemplate1})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Lv1nS.framer-uybtfq, .framer-Lv1nS .framer-uybtfq { display: block; }\",\".framer-Lv1nS.framer-qbgs39 { height: 78px; overflow: hidden; position: relative; width: 300px; }\",\".framer-Lv1nS .framer-afsky4 { aspect-ratio: 3.3783783783783785 / 1; bottom: -2px; flex: none; left: 50%; overflow: visible; position: absolute; top: 0px; width: var(--framer-aspect-ratio-supported, 270px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 78\n * @framerIntrinsicWidth 300\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameroXth8QW9p=withCSS(Component,css,\"framer-Lv1nS\");export default FrameroXth8QW9p;FrameroXth8QW9p.displayName=\"Pathlight\";FrameroXth8QW9p.defaultProps={height:78,width:300};addFonts(FrameroXth8QW9p,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameroXth8QW9p\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"300\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"78\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./oXth8QW9p.map", "// Generated by Framer (b2780b5)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,getLoadingLazyAtYPosition,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const serializationHash=\"framer-sRBsD\";const variantClassNames={i1730Tr_X:\"framer-v-1mp0d8i\"};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 transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"i1730Tr_X\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1mp0d8i\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"i1730Tr_X\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:359,intrinsicWidth:419,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||91)*.5054945054945057-29.5)),pixelHeight:718,pixelWidth:838,sizes:\"68px\",src:\"https://framerusercontent.com/images/MnZQ3GuxglQ37p9QAqR35xS3gM.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/MnZQ3GuxglQ37p9QAqR35xS3gM.png?scale-down-to=512 512w,https://framerusercontent.com/images/MnZQ3GuxglQ37p9QAqR35xS3gM.png 838w\"},className:\"framer-ee80ef\",\"data-framer-name\":\"Ovens murray_football_league_logo\",layoutDependency:layoutDependency,layoutId:\"DKMStaSaJ\",transformTemplate:transformTemplate1})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-sRBsD.framer-1phqcbm, .framer-sRBsD .framer-1phqcbm { display: block; }\",\".framer-sRBsD.framer-1mp0d8i { height: 91px; overflow: hidden; position: relative; width: 300px; }\",\".framer-sRBsD .framer-ee80ef { aspect-ratio: 1.1671309192200556 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 58px); left: 50%; overflow: visible; position: absolute; top: 51%; width: 68px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 91\n * @framerIntrinsicWidth 300\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramertUuAzSjlI=withCSS(Component,css,\"framer-sRBsD\");export default FramertUuAzSjlI;FramertUuAzSjlI.displayName=\"Spotify\";FramertUuAzSjlI.defaultProps={height:91,width:300};addFonts(FramertUuAzSjlI,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramertUuAzSjlI\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"91\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"300\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./tUuAzSjlI.map", "// Generated by Framer (b2780b5)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,getLoadingLazyAtYPosition,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const serializationHash=\"framer-oLM4r\";const variantClassNames={qIHFZPawr:\"framer-v-cyqfwy\"};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 transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"qIHFZPawr\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-cyqfwy\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"qIHFZPawr\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:322,intrinsicWidth:481,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||95)*.5052631578947371-26.5)),pixelHeight:644,pixelWidth:962,sizes:\"80px\",src:\"https://framerusercontent.com/images/qQcdGu6eR0Q0YHs2M3ZkISv2rk.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/qQcdGu6eR0Q0YHs2M3ZkISv2rk.png?scale-down-to=512 512w,https://framerusercontent.com/images/qQcdGu6eR0Q0YHs2M3ZkISv2rk.png 962w\"},className:\"framer-1w2w0ha\",\"data-framer-name\":\"Western magpies_afc_logo\",layoutDependency:layoutDependency,layoutId:\"smyrkvcWG\",transformTemplate:transformTemplate1})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-oLM4r.framer-1vdlfmy, .framer-oLM4r .framer-1vdlfmy { display: block; }\",\".framer-oLM4r.framer-cyqfwy { height: 95px; overflow: hidden; position: relative; width: 260px; }\",\".framer-oLM4r .framer-1w2w0ha { aspect-ratio: 1.4937888198757765 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 54px); left: 50%; overflow: visible; position: absolute; top: 51%; width: 80px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 95\n * @framerIntrinsicWidth 260\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerySy1J882M=withCSS(Component,css,\"framer-oLM4r\");export default FramerySy1J882M;FramerySy1J882M.displayName=\"Todoist\";FramerySy1J882M.defaultProps={height:95,width:260};addFonts(FramerySy1J882M,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerySy1J882M\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"260\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"95\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ySy1J882M.map", "// Generated by Framer (b2780b5)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Integral CF Heavy Oblique\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-SemiBoldItalic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Integral CF Heavy Oblique\",source:\"custom\",url:\"https://framerusercontent.com/assets/cvSIOCqxhKryddWEWxYVgbFioF8.woff2\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/vxBnBhH8768IFAXAb4Qf6wQHKs.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/zSsEuoJdh8mcFVk976C05ZfQr8.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/b8ezwLrN7h2AUoPEENcsTMVJ0.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/mvNEIBLyHbscgHtwfsByjXUz3XY.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/6FI2EneKzM3qBy5foOZXey7coCA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/qrVgiXNd6RuQjETYQiVQ9nqCk.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/NHHeAKJVP0ZWHk5YZnQQChIsBM.woff2\",weight:\"600\"}]}];export const css=['.framer-BOW1C .framer-styles-preset-1w6xhm:not(.rich-text-wrapper), .framer-BOW1C .framer-styles-preset-1w6xhm.rich-text-wrapper h6 { --framer-font-family: \"Integral CF Heavy Oblique\", \"Integral CF Heavy Oblique Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 100px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 600; --framer-letter-spacing: 0em; --framer-line-height: 80%; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: var(--token-f397b3cb-d77d-48f0-aeb9-53d767c5b5d2, #111621); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-BOW1C\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (48da836)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,withCSS,withFX,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/6YdWVZhgezRAHPsDckZo/Ticker.js\";import Ticker1 from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/sK9q20UrvRztdebA5J7g/Ticker.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js\";import Avatar from\"#framer/local/canvasComponent/aL1M4pcFt/aL1M4pcFt.js\";import OpenAI from\"#framer/local/canvasComponent/BYfjwEyLq/BYfjwEyLq.js\";import Splice from\"#framer/local/canvasComponent/ciUsLNX81/ciUsLNX81.js\";import FAQAccordion from\"#framer/local/canvasComponent/dV7SE9X5q/dV7SE9X5q.js\";import Framer from\"#framer/local/canvasComponent/EJYMli2vh/EJYMli2vh.js\";import CTALaunch from\"#framer/local/canvasComponent/gCkrcTKxp/gCkrcTKxp.js\";import Amazon from\"#framer/local/canvasComponent/JA1uj1NUe/JA1uj1NUe.js\";import Tesla from\"#framer/local/canvasComponent/jwe_la75H/jwe_la75H.js\";import FeatureSection from\"#framer/local/canvasComponent/L8yk06JFc/L8yk06JFc.js\";import Pathlight from\"#framer/local/canvasComponent/oXth8QW9p/oXth8QW9p.js\";import Footer from\"#framer/local/canvasComponent/qZ_XI3P7P/qZ_XI3P7P.js\";import Navigation from\"#framer/local/canvasComponent/RG7yJog90/RG7yJog90.js\";import Badge from\"#framer/local/canvasComponent/SXR9yB_tn/SXR9yB_tn.js\";import Spotify from\"#framer/local/canvasComponent/tUuAzSjlI/tUuAzSjlI.js\";import Buttons from\"#framer/local/canvasComponent/yORaTwldW/yORaTwldW.js\";import Todoist from\"#framer/local/canvasComponent/ySy1J882M/ySy1J882M.js\";import*as sharedStyle from\"#framer/local/css/bocXxd6oj/bocXxd6oj.js\";import*as sharedStyle6 from\"#framer/local/css/KcUpCwhm3/KcUpCwhm3.js\";import*as sharedStyle3 from\"#framer/local/css/PLUmuL3kC/PLUmuL3kC.js\";import*as sharedStyle5 from\"#framer/local/css/rHs4MAikW/rHs4MAikW.js\";import*as sharedStyle2 from\"#framer/local/css/vGUqSy_Vr/vGUqSy_Vr.js\";import*as sharedStyle4 from\"#framer/local/css/W5729J3pQ/W5729J3pQ.js\";import*as sharedStyle7 from\"#framer/local/css/XuM03kBo3/XuM03kBo3.js\";import*as sharedStyle1 from\"#framer/local/css/zUXS6m2Dq/zUXS6m2Dq.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavigationFonts=getFonts(Navigation);const NavigationWithVariantAppearEffect=withVariantAppearEffect(Navigation);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const AvatarFonts=getFonts(Avatar);const ButtonsFonts=getFonts(Buttons);const ImageWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(Image));const TickerFonts=getFonts(Ticker);const PathlightFonts=getFonts(Pathlight);const SpliceFonts=getFonts(Splice);const OpenAIFonts=getFonts(OpenAI);const TeslaFonts=getFonts(Tesla);const SpotifyFonts=getFonts(Spotify);const AmazonFonts=getFonts(Amazon);const TodoistFonts=getFonts(Todoist);const FramerFonts=getFonts(Framer);const Ticker1Fonts=getFonts(Ticker1);const MotionSectionWithFX=withFX(motion.section);const FeatureSectionFonts=getFonts(FeatureSection);const ContainerWithFX=withFX(Container);const CTALaunchFonts=getFonts(CTALaunch);const BadgeFonts=getFonts(Badge);const RichTextWithFX=withFX(RichText);const MotionDivWithFX=withFX(motion.div);const FAQAccordionFonts=getFonts(FAQAccordion);const EmbedFonts=getFonts(Embed);const FooterFonts=getFonts(Footer);const breakpoints={J3uB7PlJN:\"(max-width: 575px)\",PqpaQgc5e:\"(min-width: 992px) and (max-width: 1279px)\",WpCIbgkLd:\"(min-width: 576px) and (max-width: 991px)\",WQLkyLRf1:\"(min-width: 1280px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-wTXir\";const variantClassNames={J3uB7PlJN:\"framer-v-ujtbii\",PqpaQgc5e:\"framer-v-1uu7l1z\",WpCIbgkLd:\"framer-v-qqyzon\",WQLkyLRf1:\"framer-v-72rtr7\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition1={damping:30,delay:.2,mass:1,stiffness:150,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-70};const transition2={damping:40,delay:.1,mass:1,stiffness:150,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition3={delay:0,duration:.8,ease:[.44,0,0,1],type:\"tween\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const animation5={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:678,transition:transition3,x:0,y:0};const animation7={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:678,x:0,y:50};const transition4={delay:.2,duration:.8,ease:[.44,0,0,1],type:\"tween\"};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const transition5={delay:.3,duration:.8,ease:[.44,0,0,1],type:\"tween\"};const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:0};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transition6={damping:50,delay:.5,mass:1,stiffness:150,type:\"spring\"};const animation10={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition6,x:0,y:0};const transition7={damping:50,delay:.4,mass:1,stiffness:150,type:\"spring\"};const animation11={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:0,y:0};const transition8={damping:40,delay:.2,mass:1,stiffness:180,type:\"spring\"};const animation12={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition8,x:0,y:0};const animation13={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:.95,skewX:0,skewY:0,transformPerspective:1200,x:0,y:10};const animation14={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition9={delay:.2,duration:.6,ease:[.44,0,.56,1],type:\"tween\"};const transition10={delay:.3,duration:.6,ease:[.44,0,.56,1],type:\"tween\"};const animation15={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition10,x:0,y:0};const animation16={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:994,x:0,y:30};const transition11={damping:40,delay:.2,mass:1,stiffness:160,type:\"spring\"};const animation17={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:30};const transition12={damping:40,delay:.1,mass:1,stiffness:160,type:\"spring\"};const transition13={damping:40,delay:.2,mass:1,stiffness:150,type:\"spring\"};const animation18={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const animation19={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:20};const transition14={damping:40,delay:.4,mass:1,stiffness:160,type:\"spring\"};const transition15={damping:40,delay:.5,mass:1,stiffness:160,type:\"spring\"};const transition16={damping:40,delay:.3,mass:1,stiffness:150,type:\"spring\"};const transition17={damping:40,delay:.6,mass:1,stiffness:160,type:\"spring\"};const transition18={damping:40,delay:.7,mass:1,stiffness:160,type:\"spring\"};const transition19={damping:40,delay:.4,mass:1,stiffness:150,type:\"spring\"};const transition20={damping:40,delay:.8,mass:1,stiffness:160,type:\"spring\"};const transition21={damping:40,delay:.9,mass:1,stiffness:160,type:\"spring\"};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value}});};const humanReadableVariantMap={\"Desktop L\":\"WQLkyLRf1\",Desktop:\"PqpaQgc5e\",Phone:\"J3uB7PlJN\",Tablet:\"WpCIbgkLd\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const elementId=useRouteElementId(\"tws5NSJQ1\");const ref2=React.useRef(null);const ref3=React.useRef(null);const elementId1=useRouteElementId(\"jv_QmIFgl\");const ref4=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if([\"J3uB7PlJN\",\"WpCIbgkLd\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"J3uB7PlJN\")return false;return true;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"WpCIbgkLd\")return false;return true;};const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"J3uB7PlJN\")return true;return false;};const elementId2=useRouteElementId(\"zgsSv6D90\");const elementId3=useRouteElementId(\"SqZiK_A17\");const ref5=React.useRef(null);const elementId4=useRouteElementId(\"ZlTtx5UZP\");const ref6=React.useRef(null);const elementId5=useRouteElementId(\"UBJbDSrRr\");const ref7=React.useRef(null);const elementId6=useRouteElementId(\"SdJnzaJMc\");const ref8=React.useRef(null);const defaultLayoutId=React.useId();useCustomCursors({});const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:81,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{animate:undefined,initial:undefined,optimized:undefined}},children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-wde3po-container\",\"data-framer-appear-id\":\"wde3po\",id:elementId,initial:animation1,layoutScroll:true,optimized:true,ref:ref3,style:{transformPerspective:1200},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{__framer__variantAppearEffectEnabled:undefined,variant:\"CGsXOuuLs\"},WpCIbgkLd:{__framer__variantAppearEffectEnabled:undefined,variant:\"CGsXOuuLs\"}},children:/*#__PURE__*/_jsx(NavigationWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref2,target:\"TU_nbc0Zt\"}],__framer__threshold:1,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"tws5NSJQ1\",layoutId:\"tws5NSJQ1\",style:{width:\"100%\"},variant:\"KrPPG9bp_\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1yp8xwc\",\"data-framer-name\":\"Hero\",id:elementId1,ref:ref4,children:[isDisplayed()&&/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation2,className:\"framer-aeug7n hidden-ujtbii hidden-qqyzon\",\"data-framer-appear-id\":\"aeug7n\",\"data-framer-name\":\"gradient-top-right\",initial:animation3,optimized:true,style:{transformPerspective:1200}}),isDisplayed()&&/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation2,className:\"framer-1d13stc hidden-ujtbii hidden-qqyzon\",\"data-framer-appear-id\":\"1d13stc\",\"data-framer-name\":\"gradient-top-left\",initial:animation3,optimized:true,style:{transformPerspective:1200}}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17lqxjv\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9o2owm\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ng0tkn\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h5\",{className:\"framer-styles-preset-7qkaqj\",\"data-styles-preset\":\"vGUqSy_Vr\",style:{\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255))\"},children:\"GAME \"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255))\"},children:\"SET\"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255))\"},children:\"MATCH.\"})]})})},PqpaQgc5e:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h6\",{className:\"framer-styles-preset-1w6xhm\",\"data-styles-preset\":\"zUXS6m2Dq\",style:{\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255))\"},children:\"GAME \"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255))\"},children:\"SET\"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255))\"},children:\"MATCH.\"})]})})},WpCIbgkLd:{animate:animation6,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h5\",{className:\"framer-styles-preset-ynrxhu\",\"data-styles-preset\":\"PLUmuL3kC\",style:{\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255))\"},children:\"GAME \"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255))\"},children:\"SET\"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255))\"},children:\"MATCH.\"})]})}),initial:animation7}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation4,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-1l15rv8\",\"data-styles-preset\":\"bocXxd6oj\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255))\"},children:[\"GAME \",/*#__PURE__*/_jsx(\"br\",{}),\"SET\",/*#__PURE__*/_jsx(\"br\",{}),\"MATCH.\"]})}),className:\"framer-1uywckh\",\"data-framer-appear-id\":\"1uywckh\",\"data-framer-name\":\"Main Title\",fonts:[\"Inter\"],initial:animation5,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation8,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1adu8kc\",\"data-styles-preset\":\"W5729J3pQ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255))\"},children:\"Trainstop is the ultimate gamechanger in sports recruiting, connecting local clubs with top talent and opening doors for athletes to seize exciting new opportunities.\"})}),className:\"framer-u9emc7\",\"data-framer-appear-id\":\"u9emc7\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],initial:animation5,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation9,className:\"framer-1yt86wi\",\"data-framer-appear-id\":\"1yt86wi\",\"data-framer-name\":\"Social Trust\",initial:animation5,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u1w5f8\",\"data-framer-name\":\"Stacked Avatars\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{y:(componentViewport?.y||0)+0+0+160+0+0+0+0+356+0+0},PqpaQgc5e:{y:(componentViewport?.y||0)+0+0+137+0+0+0+0+457+0+0},WpCIbgkLd:{y:(componentViewport?.y||0)+0+0+160+0+0+0+0+401+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,width:\"25.2px\",y:(componentViewport?.y||0)+0+0+137+0+0+0+0+441+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-e3ehre-container\",children:/*#__PURE__*/_jsx(Avatar,{height:\"100%\",HJYYGhJC3:\"rgb(218, 225, 25)\",id:\"aEiuqGpXR\",layoutId:\"aEiuqGpXR\",shYZ8xZ6P:addImageAlt({src:\"https://framerusercontent.com/images/qLCbRJOWtoTc4YaXi5MOgH6h074.jpg\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"l4RLHSA6V\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{y:(componentViewport?.y||0)+0+0+160+0+0+0+0+356+0+0},PqpaQgc5e:{y:(componentViewport?.y||0)+0+0+137+0+0+0+0+457+0+0},WpCIbgkLd:{y:(componentViewport?.y||0)+0+0+160+0+0+0+0+401+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,width:\"25px\",y:(componentViewport?.y||0)+0+0+137+0+0+0+0+441+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-38qvku-container\",children:/*#__PURE__*/_jsx(Avatar,{height:\"100%\",HJYYGhJC3:\"rgb(218, 225, 25)\",id:\"hCOJepZ1f\",layoutId:\"hCOJepZ1f\",shYZ8xZ6P:addImageAlt({src:\"https://framerusercontent.com/images/t7E8gGuTCGS0SoZcgiu0zlSnZE.jpg\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"l4RLHSA6V\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{y:(componentViewport?.y||0)+0+0+160+0+0+0+0+356+0+0},PqpaQgc5e:{y:(componentViewport?.y||0)+0+0+137+0+0+0+0+457+0+0},WpCIbgkLd:{y:(componentViewport?.y||0)+0+0+160+0+0+0+0+401+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,width:\"25px\",y:(componentViewport?.y||0)+0+0+137+0+0+0+0+441+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ucnd8i-container\",children:/*#__PURE__*/_jsx(Avatar,{height:\"100%\",HJYYGhJC3:\"rgb(218, 225, 25)\",id:\"IfK7zrems\",layoutId:\"IfK7zrems\",shYZ8xZ6P:addImageAlt({src:\"https://framerusercontent.com/images/xt9u04TonR910DfOaib158SqoGk.png\",srcSet:\"https://framerusercontent.com/images/xt9u04TonR910DfOaib158SqoGk.png 418w\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"l4RLHSA6V\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{y:(componentViewport?.y||0)+0+0+160+0+0+0+0+356+0+0},PqpaQgc5e:{y:(componentViewport?.y||0)+0+0+137+0+0+0+0+457+0+0},WpCIbgkLd:{y:(componentViewport?.y||0)+0+0+160+0+0+0+0+401+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,width:\"25px\",y:(componentViewport?.y||0)+0+0+137+0+0+0+0+441+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-9a9af9-container\",children:/*#__PURE__*/_jsx(Avatar,{height:\"100%\",HJYYGhJC3:\"rgb(218, 225, 25)\",id:\"fox3PiEcJ\",layoutId:\"fox3PiEcJ\",shYZ8xZ6P:addImageAlt({src:\"https://framerusercontent.com/images/gvMc4mqPg9PC8MTFx9o2EbVBM.jpg\",srcSet:\"https://framerusercontent.com/images/gvMc4mqPg9PC8MTFx9o2EbVBM.jpg?scale-down-to=1024 1003w,https://framerusercontent.com/images/gvMc4mqPg9PC8MTFx9o2EbVBM.jpg 1626w\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"l4RLHSA6V\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1d78lqw\",\"data-styles-preset\":\"rHs4MAikW\",style:{\"--framer-text-color\":\"var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255))\"},children:\"5k athletes and counting\"})}),className:\"framer-18v5tzb\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-225hdf\",\"data-framer-name\":\"Actions\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{width:`calc((${componentViewport?.width||\"100vw\"} - 40px) * 0.6829)`,y:(componentViewport?.y||0)+0+0+160+0+0+452+0+0},PqpaQgc5e:{y:(componentViewport?.y||0)+0+0+137+0+0+526+0},WpCIbgkLd:{y:(componentViewport?.y||0)+0+0+160+0+0+477+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,y:(componentViewport?.y||0)+0+0+137+0+0+510+0,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation10,className:\"framer-15xh9ns-container\",\"data-framer-appear-id\":\"15xh9ns\",\"data-framer-name\":\"Button Secondary\",initial:animation3,name:\"Button Secondary\",optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Buttons,{bOwGuieUn:\"AppStoreLogo\",height:\"100%\",id:\"vUjU2CUgk\",layoutId:\"vUjU2CUgk\",name:\"Button Secondary\",variant:\"A3c35bzNR\",vjZWklrqI:\"https://apps.apple.com/au/app/trainstop/id1673557303\",width:\"100%\",xEfGs_njT:\"For Athletes\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{width:`calc((${componentViewport?.width||\"100vw\"} - 40px) * 0.6829)`,y:(componentViewport?.y||0)+0+0+160+0+0+452+0+65},PqpaQgc5e:{y:(componentViewport?.y||0)+0+0+137+0+0+526+0},WpCIbgkLd:{y:(componentViewport?.y||0)+0+0+160+0+0+477+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,y:(componentViewport?.y||0)+0+0+137+0+0+510+0,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation11,className:\"framer-1rzjr3l-container\",\"data-framer-appear-id\":\"1rzjr3l\",\"data-framer-name\":\"Button Primary\",initial:animation3,name:\"Button Primary\",optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Buttons,{bOwGuieUn:\"Desktop\",height:\"100%\",id:\"mQvQzX_fK\",layoutId:\"mQvQzX_fK\",name:\"Button Primary\",style:{height:\"100%\"},variant:\"mQ3MdL6TJ\",vjZWklrqI:\"trainstopclub.com\",width:\"100%\",xEfGs_njT:\"For Clubs\"})})})})})]})]}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-112xx8p hidden-ujtbii\",\"data-framer-name\":\"Main-visual\",children:isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-4wuq7g-container hidden-qqyzon\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"flex-start\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:0,overflow:true},gap:0,height:\"100%\",hoverFactor:.5,id:\"BcZnYH6F0\",layoutId:\"BcZnYH6F0\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:93,__perspectiveFX:false,__targetOpacity:1,animate:animation12,background:{alt:\"\",fit:\"fit\",intrinsicHeight:215,intrinsicWidth:186.5,pixelHeight:1718,pixelWidth:1173,positionX:\"center\",positionY:\"center\",sizes:\"261px\",src:\"https://framerusercontent.com/images/RZa9S1Zmpxc3fRDcW3s1nnUqg.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/RZa9S1Zmpxc3fRDcW3s1nnUqg.png?scale-down-to=1024 699w,https://framerusercontent.com/images/RZa9S1Zmpxc3fRDcW3s1nnUqg.png 1173w\"},className:\"framer-uhu4fe\",\"data-framer-appear-id\":\"uhu4fe\",\"data-framer-name\":\"widget_4_2x\",initial:animation13,optimized:true}),/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:93,__perspectiveFX:false,__targetOpacity:1,animate:animation12,background:{alt:\"\",fit:\"fit\",intrinsicHeight:215,intrinsicWidth:186.5,pixelHeight:1722,pixelWidth:1101,positionX:\"center\",positionY:\"center\",sizes:\"261px\",src:\"https://framerusercontent.com/images/FMNKP6gGKVV2zwnnZTrLotcLL0.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/FMNKP6gGKVV2zwnnZTrLotcLL0.png?scale-down-to=1024 654w,https://framerusercontent.com/images/FMNKP6gGKVV2zwnnZTrLotcLL0.png 1101w\"},className:\"framer-mgu3i4\",\"data-framer-appear-id\":\"mgu3i4\",\"data-framer-name\":\"widget_4_2x\",initial:animation13,optimized:true}),/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:93,__perspectiveFX:false,__targetOpacity:1,animate:animation12,background:{alt:\"\",fit:\"fit\",intrinsicHeight:215,intrinsicWidth:186.5,pixelHeight:1718,pixelWidth:1164,positionX:\"center\",positionY:\"center\",sizes:\"261px\",src:\"https://framerusercontent.com/images/zS32GYeWrsKAMTYcB9nRvFy0MzU.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/zS32GYeWrsKAMTYcB9nRvFy0MzU.png?scale-down-to=1024 693w,https://framerusercontent.com/images/zS32GYeWrsKAMTYcB9nRvFy0MzU.png 1164w\"},className:\"framer-1waxum7\",\"data-framer-appear-id\":\"1waxum7\",\"data-framer-name\":\"widget_4_2x\",initial:animation13,optimized:true}),/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:93,__perspectiveFX:false,__targetOpacity:1,animate:animation12,background:{alt:\"\",fit:\"fit\",intrinsicHeight:215,intrinsicWidth:186.5,pixelHeight:1722,pixelWidth:1101,positionX:\"center\",positionY:\"center\",sizes:\"261px\",src:\"https://framerusercontent.com/images/TIBH0438W99NPqtskSo9Fi6W5PE.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/TIBH0438W99NPqtskSo9Fi6W5PE.png?scale-down-to=1024 654w,https://framerusercontent.com/images/TIBH0438W99NPqtskSo9Fi6W5PE.png 1101w\"},className:\"framer-1djzoo\",\"data-framer-appear-id\":\"1djzoo\",\"data-framer-name\":\"widget_4_2x\",initial:animation13,optimized:true}),/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:93,__perspectiveFX:false,__targetOpacity:1,animate:animation12,background:{alt:\"\",fit:\"fit\",intrinsicHeight:215,intrinsicWidth:186.5,pixelHeight:1718,pixelWidth:1270,positionX:\"center\",positionY:\"center\",sizes:\"261px\",src:\"https://framerusercontent.com/images/cblLrHL2qAZQrmXCVds9aMbaGg.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/cblLrHL2qAZQrmXCVds9aMbaGg.png?scale-down-to=1024 756w,https://framerusercontent.com/images/cblLrHL2qAZQrmXCVds9aMbaGg.png 1270w\"},className:\"framer-kpgdod\",\"data-framer-appear-id\":\"kpgdod\",\"data-framer-name\":\"widget_4_2x\",initial:animation13,optimized:true}),/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:93,__perspectiveFX:false,__targetOpacity:1,animate:animation12,background:{alt:\"\",fit:\"fit\",intrinsicHeight:215,intrinsicWidth:186.5,pixelHeight:1722,pixelWidth:1192,positionX:\"center\",positionY:\"center\",sizes:\"261px\",src:\"https://framerusercontent.com/images/kgp6QjhmbWxWnHeMXBBBDi8dw7o.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/kgp6QjhmbWxWnHeMXBBBDi8dw7o.png?scale-down-to=1024 708w,https://framerusercontent.com/images/kgp6QjhmbWxWnHeMXBBBDi8dw7o.png 1192w\"},className:\"framer-qwu9g8\",\"data-framer-appear-id\":\"qwu9g8\",\"data-framer-name\":\"widget_4_2x\",initial:animation13,optimized:true}),/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:93,__perspectiveFX:false,__targetOpacity:1,animate:animation12,background:{alt:\"\",fit:\"fit\",intrinsicHeight:215,intrinsicWidth:186.5,pixelHeight:1718,pixelWidth:1135,positionX:\"center\",positionY:\"center\",sizes:\"261px\",src:\"https://framerusercontent.com/images/mlGNt0W2XzMnqkiuUl9vFkGIxKo.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/mlGNt0W2XzMnqkiuUl9vFkGIxKo.png?scale-down-to=1024 676w,https://framerusercontent.com/images/mlGNt0W2XzMnqkiuUl9vFkGIxKo.png 1135w\"},className:\"framer-19yd9zn\",\"data-framer-appear-id\":\"19yd9zn\",\"data-framer-name\":\"widget_4_2x\",initial:animation13,optimized:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2290.6666666666665,intrinsicWidth:1705.3333333333333,pixelHeight:1718,pixelWidth:1279,sizes:\"223.3411px\",src:\"https://framerusercontent.com/images/gWJhiOJTgzjtMVnImqclh23kgvw.png\",srcSet:\"https://framerusercontent.com/images/gWJhiOJTgzjtMVnImqclh23kgvw.png?scale-down-to=1024 762w,https://framerusercontent.com/images/gWJhiOJTgzjtMVnImqclh23kgvw.png 1279w\"},className:\"framer-197hixj\",\"data-framer-name\":\"Frame 221\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2296,intrinsicWidth:1468,pixelHeight:1722,pixelWidth:1101,sizes:\"193px\",src:\"https://framerusercontent.com/images/4iZiZmL3AhXbgjWwMKUyGapwys.png\",srcSet:\"https://framerusercontent.com/images/4iZiZmL3AhXbgjWwMKUyGapwys.png?scale-down-to=1024 654w,https://framerusercontent.com/images/4iZiZmL3AhXbgjWwMKUyGapwys.png 1101w\"},className:\"framer-iaaevk\",\"data-framer-name\":\"Frame 222\"})],speed:80,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-nur7dr-container hidden-72rtr7 hidden-1uu7l1z hidden-qqyzon\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:17,height:\"100%\",hoverFactor:.5,id:\"SlQJm3fff\",layoutId:\"SlQJm3fff\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:93,__perspectiveFX:false,__targetOpacity:1,animate:animation12,background:{alt:\"\",fit:\"fit\",intrinsicHeight:215,intrinsicWidth:186.5,pixelHeight:1718,pixelWidth:1173,positionX:\"center\",positionY:\"center\",sizes:\"261px\",src:\"https://framerusercontent.com/images/RZa9S1Zmpxc3fRDcW3s1nnUqg.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/RZa9S1Zmpxc3fRDcW3s1nnUqg.png?scale-down-to=1024 699w,https://framerusercontent.com/images/RZa9S1Zmpxc3fRDcW3s1nnUqg.png 1173w\"},className:\"framer-uhu4fe\",\"data-framer-appear-id\":\"uhu4fe-1\",\"data-framer-name\":\"widget_4_2x\",initial:animation13,optimized:true}),/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:93,__perspectiveFX:false,__targetOpacity:1,animate:animation12,background:{alt:\"\",fit:\"fit\",intrinsicHeight:215,intrinsicWidth:186.5,pixelHeight:1722,pixelWidth:1101,positionX:\"center\",positionY:\"center\",sizes:\"261px\",src:\"https://framerusercontent.com/images/FMNKP6gGKVV2zwnnZTrLotcLL0.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/FMNKP6gGKVV2zwnnZTrLotcLL0.png?scale-down-to=1024 654w,https://framerusercontent.com/images/FMNKP6gGKVV2zwnnZTrLotcLL0.png 1101w\"},className:\"framer-mgu3i4\",\"data-framer-appear-id\":\"mgu3i4-1\",\"data-framer-name\":\"widget_4_2x\",initial:animation13,optimized:true}),/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:93,__perspectiveFX:false,__targetOpacity:1,animate:animation12,background:{alt:\"\",fit:\"fit\",intrinsicHeight:215,intrinsicWidth:186.5,pixelHeight:1718,pixelWidth:1164,positionX:\"center\",positionY:\"center\",sizes:\"261px\",src:\"https://framerusercontent.com/images/zS32GYeWrsKAMTYcB9nRvFy0MzU.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/zS32GYeWrsKAMTYcB9nRvFy0MzU.png?scale-down-to=1024 693w,https://framerusercontent.com/images/zS32GYeWrsKAMTYcB9nRvFy0MzU.png 1164w\"},className:\"framer-1waxum7\",\"data-framer-appear-id\":\"1waxum7-1\",\"data-framer-name\":\"widget_4_2x\",initial:animation13,optimized:true}),/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:93,__perspectiveFX:false,__targetOpacity:1,animate:animation12,background:{alt:\"\",fit:\"fit\",intrinsicHeight:215,intrinsicWidth:186.5,pixelHeight:1722,pixelWidth:1101,positionX:\"center\",positionY:\"center\",sizes:\"261px\",src:\"https://framerusercontent.com/images/TIBH0438W99NPqtskSo9Fi6W5PE.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/TIBH0438W99NPqtskSo9Fi6W5PE.png?scale-down-to=1024 654w,https://framerusercontent.com/images/TIBH0438W99NPqtskSo9Fi6W5PE.png 1101w\"},className:\"framer-1djzoo\",\"data-framer-appear-id\":\"1djzoo-1\",\"data-framer-name\":\"widget_4_2x\",initial:animation13,optimized:true}),/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:93,__perspectiveFX:false,__targetOpacity:1,animate:animation12,background:{alt:\"\",fit:\"fit\",intrinsicHeight:215,intrinsicWidth:186.5,pixelHeight:1718,pixelWidth:1270,positionX:\"center\",positionY:\"center\",sizes:\"261px\",src:\"https://framerusercontent.com/images/cblLrHL2qAZQrmXCVds9aMbaGg.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/cblLrHL2qAZQrmXCVds9aMbaGg.png?scale-down-to=1024 756w,https://framerusercontent.com/images/cblLrHL2qAZQrmXCVds9aMbaGg.png 1270w\"},className:\"framer-kpgdod\",\"data-framer-appear-id\":\"kpgdod-1\",\"data-framer-name\":\"widget_4_2x\",initial:animation13,optimized:true}),/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:93,__perspectiveFX:false,__targetOpacity:1,animate:animation12,background:{alt:\"\",fit:\"fit\",intrinsicHeight:215,intrinsicWidth:186.5,pixelHeight:1722,pixelWidth:1192,positionX:\"center\",positionY:\"center\",sizes:\"261px\",src:\"https://framerusercontent.com/images/kgp6QjhmbWxWnHeMXBBBDi8dw7o.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/kgp6QjhmbWxWnHeMXBBBDi8dw7o.png?scale-down-to=1024 708w,https://framerusercontent.com/images/kgp6QjhmbWxWnHeMXBBBDi8dw7o.png 1192w\"},className:\"framer-qwu9g8\",\"data-framer-appear-id\":\"qwu9g8-1\",\"data-framer-name\":\"widget_4_2x\",initial:animation13,optimized:true}),/*#__PURE__*/_jsx(ImageWithFXWithOptimizedAppearEffect,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:93,__perspectiveFX:false,__targetOpacity:1,animate:animation12,background:{alt:\"\",fit:\"fit\",intrinsicHeight:215,intrinsicWidth:186.5,pixelHeight:1718,pixelWidth:1135,positionX:\"center\",positionY:\"center\",sizes:\"261px\",src:\"https://framerusercontent.com/images/mlGNt0W2XzMnqkiuUl9vFkGIxKo.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/mlGNt0W2XzMnqkiuUl9vFkGIxKo.png?scale-down-to=1024 676w,https://framerusercontent.com/images/mlGNt0W2XzMnqkiuUl9vFkGIxKo.png 1135w\"},className:\"framer-19yd9zn\",\"data-framer-appear-id\":\"19yd9zn-1\",\"data-framer-name\":\"widget_4_2x\",initial:animation13,optimized:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2290.6666666666665,intrinsicWidth:1705.3333333333333,pixelHeight:1718,pixelWidth:1279,sizes:\"223.3411px\",src:\"https://framerusercontent.com/images/gWJhiOJTgzjtMVnImqclh23kgvw.png\",srcSet:\"https://framerusercontent.com/images/gWJhiOJTgzjtMVnImqclh23kgvw.png?scale-down-to=1024 762w,https://framerusercontent.com/images/gWJhiOJTgzjtMVnImqclh23kgvw.png 1279w\"},className:\"framer-197hixj\",\"data-framer-name\":\"Frame 221\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2296,intrinsicWidth:1468,pixelHeight:1722,pixelWidth:1101,sizes:\"193px\",src:\"https://framerusercontent.com/images/4iZiZmL3AhXbgjWwMKUyGapwys.png\",srcSet:\"https://framerusercontent.com/images/4iZiZmL3AhXbgjWwMKUyGapwys.png?scale-down-to=1024 654w,https://framerusercontent.com/images/4iZiZmL3AhXbgjWwMKUyGapwys.png 1101w\"},className:\"framer-iaaevk\",\"data-framer-name\":\"Frame 222\"})],speed:80,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(MotionSectionWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation14,__framer__exit:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1j4nrae\",\"data-framer-name\":\"Brands\",id:elementId2,ref:ref2,style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xo0xl9\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1adu8kc\",\"data-styles-preset\":\"W5729J3pQ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(87, 87, 87)\"},children:\"Already used by leading clubs and leagues around the country\"})})},PqpaQgc5e:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1adu8kc\",\"data-styles-preset\":\"W5729J3pQ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(87, 87, 87)\"},children:\"Already used by leading clubs and leagues around the country\"})})},WpCIbgkLd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1adu8kc\",\"data-styles-preset\":\"W5729J3pQ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(87, 87, 87)\"},children:\"Already used by leading clubs and leagues around the country\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1adu8kc\",\"data-styles-preset\":\"W5729J3pQ\",style:{\"--framer-text-color\":\"rgb(87, 87, 87)\"},children:\"Already used by leading clubs and leagues around the country\"})}),className:\"framer-2a8b7p\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-yuhlz0-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:20,overflow:false},gap:30},PqpaQgc5e:{gap:60},WpCIbgkLd:{gap:60}},children:/*#__PURE__*/_jsx(Ticker1,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:5,fadeWidth:25,overflow:false},gap:80,height:\"100%\",hoverFactor:.5,id:\"XNtA_NGyt\",layoutId:\"XNtA_NGyt\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,width:\"146.1538px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-xnp448-container\",children:/*#__PURE__*/_jsx(Pathlight,{height:\"100%\",id:\"AlzSJghrD\",layoutId:\"AlzSJghrD\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:73,width:\"146px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-u964l4-container\",children:/*#__PURE__*/_jsx(Splice,{height:\"100%\",id:\"MG7NI1dFj\",layoutId:\"MG7NI1dFj\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:67,width:\"165px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-bcwbrm-container\",children:/*#__PURE__*/_jsx(OpenAI,{height:\"100%\",id:\"azpH2nALU\",layoutId:\"azpH2nALU\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,width:\"120px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1uzfvqj-container\",children:/*#__PURE__*/_jsx(Tesla,{height:\"100%\",id:\"Nlu6evgKg\",layoutId:\"Nlu6evgKg\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:\"120px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-dlvwqj-container\",children:/*#__PURE__*/_jsx(Spotify,{height:\"100%\",id:\"LCddUYaWb\",layoutId:\"LCddUYaWb\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:70,width:\"114px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1plc4e2-container\",children:/*#__PURE__*/_jsx(Amazon,{height:\"100%\",id:\"qN0f7JEN4\",layoutId:\"qN0f7JEN4\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:61,width:\"114px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1limjit-container\",children:/*#__PURE__*/_jsx(Todoist,{height:\"100%\",id:\"t_4kzfHaA\",layoutId:\"t_4kzfHaA\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:57,width:\"101px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-y4objz-container\",children:/*#__PURE__*/_jsx(Framer,{height:\"100%\",id:\"sTOSiVwZZ\",layoutId:\"sTOSiVwZZ\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1t5bw2x\",\"data-framer-name\":\"How It Works\",id:elementId3,ref:ref5,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{width:`calc(${componentViewport?.width||\"100vw\"} * 0.8897)`,y:(componentViewport?.y||0)+0+1479+20+0},PqpaQgc5e:{width:`calc(${componentViewport?.width||\"100vw\"} * 1.0796)`,y:(componentViewport?.y||0)+0+1389+30+0},WpCIbgkLd:{y:(componentViewport?.y||0)+0+1102+40+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:407,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+1440+30+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation16,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-q2olwh-container\",style:{transformPerspective:994},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{variant:\"pRL4OWPK5\"},WpCIbgkLd:{variant:\"Lc1zdY1RM\"}},children:/*#__PURE__*/_jsx(FeatureSection,{height:\"100%\",id:\"wcIcKWlxW\",layoutId:\"wcIcKWlxW\",MyzOwQ53a:\"Narrow your search with precision using advanced filters to find the ideal player for your team. Customise your criteria to match skill levels, positions, locations, and more, making recruitment fast, efficient, and tailored to your needs.\",NacojSf_1:addImageAlt({src:\"https://framerusercontent.com/images/aJoEdfUzt57tZjUOauWJn9Tejxs.png\",srcSet:\"https://framerusercontent.com/images/aJoEdfUzt57tZjUOauWJn9Tejxs.png?scale-down-to=512 512w,https://framerusercontent.com/images/aJoEdfUzt57tZjUOauWJn9Tejxs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/aJoEdfUzt57tZjUOauWJn9Tejxs.png 1738w\"},\"\"),Pn08AubqI:\"Filter Your Search To Find Your Perfect Player\",style:{width:\"100%\"},variant:\"vlKoatX9W\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{width:`calc(${componentViewport?.width||\"100vw\"} * 0.8846)`,y:(componentViewport?.y||0)+0+1479+20+427},PqpaQgc5e:{width:`calc(${componentViewport?.width||\"100vw\"} * 1.1079)`,y:(componentViewport?.y||0)+0+1389+30+447},WpCIbgkLd:{y:(componentViewport?.y||0)+0+1102+40+447}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:407,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+1440+30+447,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation17,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1c45g1f-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{variant:\"GL12cUzwk\"},PqpaQgc5e:{NacojSf_1:addImageAlt({src:\"https://framerusercontent.com/images/Is3C3PIFhQd6PcGtnLjVZNdaAPg.png\",srcSet:\"https://framerusercontent.com/images/Is3C3PIFhQd6PcGtnLjVZNdaAPg.png?scale-down-to=512 512w,https://framerusercontent.com/images/Is3C3PIFhQd6PcGtnLjVZNdaAPg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Is3C3PIFhQd6PcGtnLjVZNdaAPg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Is3C3PIFhQd6PcGtnLjVZNdaAPg.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/Is3C3PIFhQd6PcGtnLjVZNdaAPg.png 4501w\"},\"\")},WpCIbgkLd:{variant:\"IX9Nedfcw\"}},children:/*#__PURE__*/_jsx(FeatureSection,{height:\"100%\",id:\"b3QdyhuiE\",layoutId:\"b3QdyhuiE\",MyzOwQ53a:\"Connect with players through direct messaging to build strong relationships and streamline recruitment. Craft personalised offers to attract top talent and ensure a perfect fit for your team.\",NacojSf_1:addImageAlt({src:\"https://framerusercontent.com/images/IwNqXe8lsihefRfFamfuOYpun0A.png\",srcSet:\"https://framerusercontent.com/images/IwNqXe8lsihefRfFamfuOYpun0A.png?scale-down-to=512 512w,https://framerusercontent.com/images/IwNqXe8lsihefRfFamfuOYpun0A.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IwNqXe8lsihefRfFamfuOYpun0A.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/IwNqXe8lsihefRfFamfuOYpun0A.png 2567w\"},\"\"),Pn08AubqI:\"Chat directly with players and give tailored offers.\",style:{width:\"100%\"},variant:\"M2SieRvQ3\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{width:`calc(${componentViewport?.width||\"100vw\"} * 0.8846)`,y:(componentViewport?.y||0)+0+1479+20+854},PqpaQgc5e:{width:`calc(${componentViewport?.width||\"100vw\"} * 1.0867)`,y:(componentViewport?.y||0)+0+1389+30+894},WpCIbgkLd:{y:(componentViewport?.y||0)+0+1102+40+894}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:407,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+1440+30+894,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation17,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-cumeb4-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{variant:\"pRL4OWPK5\"},WpCIbgkLd:{variant:\"Lc1zdY1RM\"}},children:/*#__PURE__*/_jsx(FeatureSection,{height:\"100%\",id:\"DDFT3dPjG\",layoutId:\"DDFT3dPjG\",MyzOwQ53a:\"Trainstop gives athletes the power to apply to club ads viewed by over 5,000+ players. Ads are prominently featured in the app and across social platforms, maximising exposure and connecting clubs with top talent.\",NacojSf_1:addImageAlt({src:\"https://framerusercontent.com/images/hkioC3FN8Bti2fvAAiXrAHP6Y.png\",srcSet:\"https://framerusercontent.com/images/hkioC3FN8Bti2fvAAiXrAHP6Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/hkioC3FN8Bti2fvAAiXrAHP6Y.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hkioC3FN8Bti2fvAAiXrAHP6Y.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/hkioC3FN8Bti2fvAAiXrAHP6Y.png 3012w\"},\"\"),Pn08AubqI:\"Post ads and reach our database of players ready to apply.\",style:{width:\"100%\"},variant:\"vlKoatX9W\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{width:`calc(${componentViewport?.width||\"100vw\"} * 0.9103)`,y:(componentViewport?.y||0)+0+2760},PqpaQgc5e:{y:(componentViewport?.y||0)+0+2720},WpCIbgkLd:{y:(componentViewport?.y||0)+0+2443}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:511,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+2771,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation17,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-iusd5a-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{variant:\"dDfMYNgad\"},WpCIbgkLd:{variant:\"orCSEo06g\"}},children:/*#__PURE__*/_jsx(CTALaunch,{height:\"100%\",id:\"HCOSbFjIT\",layoutId:\"HCOSbFjIT\",style:{width:\"100%\"},variant:\"mFnVyQAza\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-4mqpuq\",\"data-framer-name\":\"Metrics\",id:elementId4,ref:ref6,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qcobr8\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f7r3jr\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{y:(componentViewport?.y||0)+0+3271+40+0+0+0+0+0},PqpaQgc5e:{y:(componentViewport?.y||0)+0+3231+60+0+0+0+0+0},WpCIbgkLd:{y:(componentViewport?.y||0)+0+2954+40+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:29,y:(componentViewport?.y||0)+0+3282+20+0+0+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation14,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref6,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-10omhun-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Badge,{abNWj2a4p:\"rgb(120, 120, 120)\",DTEBE1LHR:\"METRICS\",gxd9Te8kM:\"CATEGORY-NAME\",height:\"100%\",id:\"uwzf91ZBV\",j7oQQHdIz:\"var(--token-328d526d-52b3-499c-854f-6f2f938de898, rgb(0, 0, 0))\",layoutId:\"uwzf91ZBV\",mQiWJf8Hp:\"rgb(255, 245, 245)\",variant:\"A1hLNSIZ_\",VRSDhkFhV:\"PLAN\",width:\"100%\",xwIlK_F61:\"rgb(255, 245, 245)\",yHuYwr8Ni:\"var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255))\"})})})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation18,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref6,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-144ivnp\",\"data-styles-preset\":\"KcUpCwhm3\",style:{\"--framer-text-alignment\":\"center\"},children:\"Numbers speaking for themselves\"})}),className:\"framer-1rp0pmn\",\"data-framer-name\":\"Numbers speaking for themselves\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vpwr7o\",\"data-framer-name\":\"Numbers\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation14,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref6,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-7zxqpe\",\"data-border\":true,\"data-framer-name\":\"Item\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmUgVmlldG5hbSBQcm8tNTAw\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-font-size\":\"58px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-3px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7537a40e-335b-4616-ad9e-9ed17d62f8d0, rgb(237, 88, 69))\"},children:\"45+\"})})},PqpaQgc5e:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmUgVmlldG5hbSBQcm8tNTAw\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-font-size\":\"68px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-3px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7537a40e-335b-4616-ad9e-9ed17d62f8d0, rgb(237, 88, 69))\"},children:\"45+\"})})},WpCIbgkLd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmUgVmlldG5hbSBQcm8tNTAw\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-font-size\":\"58px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-3px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7537a40e-335b-4616-ad9e-9ed17d62f8d0, rgb(237, 88, 69))\"},children:\"45+\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition14},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref6,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmUgVmlldG5hbSBQcm8tNTAw\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-font-size\":\"80px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-3px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7537a40e-335b-4616-ad9e-9ed17d62f8d0, rgb(237, 88, 69))\"},children:\"45+\"})}),className:\"framer-2wrv3i\",\"data-framer-name\":\"Number\",fonts:[\"GF;Be Vietnam Pro-500\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition15},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref6,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1adu8kc\",\"data-styles-preset\":\"W5729J3pQ\",style:{\"--framer-text-alignment\":\"center\"},children:\"Leagues use Trainstop\"})}),className:\"framer-swfy82\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition16},__framer__animateOnce:true,__framer__enter:animation14,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref6,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-nh2hnf\",\"data-border\":true,\"data-framer-name\":\"Item\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmUgVmlldG5hbSBQcm8tNTAw\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-font-size\":\"58px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-3px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7537a40e-335b-4616-ad9e-9ed17d62f8d0, rgb(237, 88, 69))\"},children:\"5,100+\"})})},PqpaQgc5e:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmUgVmlldG5hbSBQcm8tNTAw\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-font-size\":\"68px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-3px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7537a40e-335b-4616-ad9e-9ed17d62f8d0, rgb(237, 88, 69))\"},children:\"5,100+\"})})},WpCIbgkLd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmUgVmlldG5hbSBQcm8tNTAw\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-font-size\":\"58px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-3px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7537a40e-335b-4616-ad9e-9ed17d62f8d0, rgb(237, 88, 69))\"},children:\"5,100+\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition17},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref6,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmUgVmlldG5hbSBQcm8tNTAw\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-font-size\":\"80px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-3px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7537a40e-335b-4616-ad9e-9ed17d62f8d0, rgb(237, 88, 69))\"},children:\"5,100+\"})}),className:\"framer-1fhe1sx\",\"data-framer-name\":\"Number\",fonts:[\"GF;Be Vietnam Pro-500\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition18},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref6,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1adu8kc\",\"data-styles-preset\":\"W5729J3pQ\",style:{\"--framer-text-alignment\":\"center\"},children:\"Athletes on the app\"})}),className:\"framer-1rcoess\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition19},__framer__animateOnce:true,__framer__enter:animation14,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref6,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-18rnzgc\",\"data-framer-name\":\"Item\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmUgVmlldG5hbSBQcm8tNTAw\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-font-size\":\"58px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-3px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7537a40e-335b-4616-ad9e-9ed17d62f8d0, rgb(237, 88, 69))\"},children:\"440+\"})})},PqpaQgc5e:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmUgVmlldG5hbSBQcm8tNTAw\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-font-size\":\"68px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-3px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7537a40e-335b-4616-ad9e-9ed17d62f8d0, rgb(237, 88, 69))\"},children:\"440+\"})})},WpCIbgkLd:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmUgVmlldG5hbSBQcm8tNTAw\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-font-size\":\"58px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-3px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7537a40e-335b-4616-ad9e-9ed17d62f8d0, rgb(237, 88, 69))\"},children:\"440+\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition20},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref6,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QmUgVmlldG5hbSBQcm8tNTAw\",\"--framer-font-family\":'\"Be Vietnam Pro\", \"Be Vietnam Pro Placeholder\", sans-serif',\"--framer-font-size\":\"80px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-3px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7537a40e-335b-4616-ad9e-9ed17d62f8d0, rgb(237, 88, 69))\"},children:\"440+\"})}),className:\"framer-1lyz8h0\",\"data-framer-name\":\"Number\",fonts:[\"GF;Be Vietnam Pro-500\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition21},__framer__animateOnce:true,__framer__enter:animation19,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref6,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1adu8kc\",\"data-styles-preset\":\"W5729J3pQ\",style:{\"--framer-text-alignment\":\"center\"},children:\"Clubs have used Trainstop\"})}),className:\"framer-1tpy5fl\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ovdge4\",\"data-framer-name\":\"Grid 1\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lilnrz\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{y:(componentViewport?.y||0)+0+4874.4+20+0+28+0},PqpaQgc5e:{y:(componentViewport?.y||0)+0+3970.4+20+0+28+0},WpCIbgkLd:{y:(componentViewport?.y||0)+0+4557.4+20+0+28+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:29,y:(componentViewport?.y||0)+0+4081.4+20+0+28+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1w1gje9-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Badge,{abNWj2a4p:\"rgb(120, 120, 120)\",DTEBE1LHR:\"RECRUITS\",gxd9Te8kM:\"CATEGORY-NAME\",height:\"100%\",id:\"syBm8yUkv\",j7oQQHdIz:\"var(--token-328d526d-52b3-499c-854f-6f2f938de898, rgb(0, 0, 0))\",layoutId:\"syBm8yUkv\",mQiWJf8Hp:\"rgb(255, 245, 245)\",variant:\"A1hLNSIZ_\",VRSDhkFhV:\"PLAN\",width:\"100%\",xwIlK_F61:\"rgb(255, 245, 245)\",yHuYwr8Ni:\"var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255))\"})})})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation18,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-g567mr\",\"data-styles-preset\":\"XuM03kBo3\",children:\"2024's Biggest Signings\"})}),className:\"framer-ee8yod\",\"data-framer-name\":\"Don\u2019t take our word for it\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3xjpyt\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-45vor2\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4874.4+20+183+0+0+0+0),pixelHeight:1929,pixelWidth:2048,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 80px, 1000px), 200px)`,src:\"https://framerusercontent.com/images/sogMOdxscWIfJtSLBiplJ9ULPU.jpg\",srcSet:\"https://framerusercontent.com/images/sogMOdxscWIfJtSLBiplJ9ULPU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/sogMOdxscWIfJtSLBiplJ9ULPU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/sogMOdxscWIfJtSLBiplJ9ULPU.jpg 2048w\"}},PqpaQgc5e:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3970.4+20+183+0+0+0+0),pixelHeight:1929,pixelWidth:2048,sizes:`max((min(min(1280px, ${componentViewport?.width||\"100vw\"}) - 80px, 1000px) - 120px) / 3, 200px)`,src:\"https://framerusercontent.com/images/sogMOdxscWIfJtSLBiplJ9ULPU.jpg\",srcSet:\"https://framerusercontent.com/images/sogMOdxscWIfJtSLBiplJ9ULPU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/sogMOdxscWIfJtSLBiplJ9ULPU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/sogMOdxscWIfJtSLBiplJ9ULPU.jpg 2048w\"}},WpCIbgkLd:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4557.4+20+183+0+0+0+0),pixelHeight:1929,pixelWidth:2048,sizes:`max((min(min(${componentViewport?.width||\"100vw\"} * 0.9913, ${componentViewport?.width||\"100vw\"}) - 80px, 1000px) - 60px) / 2, 200px)`,src:\"https://framerusercontent.com/images/sogMOdxscWIfJtSLBiplJ9ULPU.jpg\",srcSet:\"https://framerusercontent.com/images/sogMOdxscWIfJtSLBiplJ9ULPU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/sogMOdxscWIfJtSLBiplJ9ULPU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/sogMOdxscWIfJtSLBiplJ9ULPU.jpg 2048w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4081.4+20+183+0+0+0+0),pixelHeight:1929,pixelWidth:2048,sizes:`max((min(min(1280px, ${componentViewport?.width||\"100vw\"}) - 80px, 1000px) - 120px) / 3, 200px)`,src:\"https://framerusercontent.com/images/sogMOdxscWIfJtSLBiplJ9ULPU.jpg\",srcSet:\"https://framerusercontent.com/images/sogMOdxscWIfJtSLBiplJ9ULPU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/sogMOdxscWIfJtSLBiplJ9ULPU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/sogMOdxscWIfJtSLBiplJ9ULPU.jpg 2048w\"},className:\"framer-orqsjq\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e1e0at\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Jack McKay\"})}),className:\"framer-174j39m\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"Fitzroy FC to Upwey Tecoma\"})}),className:\"framer-hlkfok\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vhvp96\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4874.4+20+183+0+414+0+0),pixelHeight:571,pixelWidth:587,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 80px, 1000px), 200px)`,src:\"https://framerusercontent.com/images/X0oql7pUX1nUv28c268nYYohaY.webp\",srcSet:\"https://framerusercontent.com/images/X0oql7pUX1nUv28c268nYYohaY.webp?scale-down-to=512 512w,https://framerusercontent.com/images/X0oql7pUX1nUv28c268nYYohaY.webp 587w\"}},PqpaQgc5e:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3970.4+20+183+0+0+0+0),pixelHeight:571,pixelWidth:587,sizes:`max((min(min(1280px, ${componentViewport?.width||\"100vw\"}) - 80px, 1000px) - 120px) / 3, 200px)`,src:\"https://framerusercontent.com/images/X0oql7pUX1nUv28c268nYYohaY.webp\",srcSet:\"https://framerusercontent.com/images/X0oql7pUX1nUv28c268nYYohaY.webp?scale-down-to=512 512w,https://framerusercontent.com/images/X0oql7pUX1nUv28c268nYYohaY.webp 587w\"}},WpCIbgkLd:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4557.4+20+183+0+0+0+0),pixelHeight:571,pixelWidth:587,sizes:`max((min(min(${componentViewport?.width||\"100vw\"} * 0.9913, ${componentViewport?.width||\"100vw\"}) - 80px, 1000px) - 60px) / 2, 200px)`,src:\"https://framerusercontent.com/images/X0oql7pUX1nUv28c268nYYohaY.webp\",srcSet:\"https://framerusercontent.com/images/X0oql7pUX1nUv28c268nYYohaY.webp?scale-down-to=512 512w,https://framerusercontent.com/images/X0oql7pUX1nUv28c268nYYohaY.webp 587w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4081.4+20+183+0+0+0+0),pixelHeight:571,pixelWidth:587,sizes:`max((min(min(1280px, ${componentViewport?.width||\"100vw\"}) - 80px, 1000px) - 120px) / 3, 200px)`,src:\"https://framerusercontent.com/images/X0oql7pUX1nUv28c268nYYohaY.webp\",srcSet:\"https://framerusercontent.com/images/X0oql7pUX1nUv28c268nYYohaY.webp?scale-down-to=512 512w,https://framerusercontent.com/images/X0oql7pUX1nUv28c268nYYohaY.webp 587w\"},className:\"framer-14r18dk\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14tqae7\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Nick Hind\"})}),className:\"framer-13a1jxb\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"Essendon AFL to Darley FC\"})}),className:\"framer-1y60sid\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1udhpsr hidden-ujtbii\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PqpaQgc5e:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3970.4+20+183+0+0+0+0),pixelHeight:842,pixelWidth:630,positionX:\"left\",positionY:\"center\",sizes:`max((min(min(1280px, ${componentViewport?.width||\"100vw\"}) - 80px, 1000px) - 120px) / 3, 200px)`,src:\"https://framerusercontent.com/images/uAFZ3bQBcf94naecQlOu3XDBuQ.png\",srcSet:\"https://framerusercontent.com/images/uAFZ3bQBcf94naecQlOu3XDBuQ.png 630w\"}},WpCIbgkLd:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4557.4+20+183+0+414+0+0),pixelHeight:842,pixelWidth:630,sizes:`max((min(min(${componentViewport?.width||\"100vw\"} * 0.9913, ${componentViewport?.width||\"100vw\"}) - 80px, 1000px) - 60px) / 2, 200px)`,src:\"https://framerusercontent.com/images/uAFZ3bQBcf94naecQlOu3XDBuQ.png\",srcSet:\"https://framerusercontent.com/images/uAFZ3bQBcf94naecQlOu3XDBuQ.png 630w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4081.4+20+183+0+0+0+0),pixelHeight:842,pixelWidth:630,sizes:`max((min(min(1280px, ${componentViewport?.width||\"100vw\"}) - 80px, 1000px) - 120px) / 3, 200px)`,src:\"https://framerusercontent.com/images/uAFZ3bQBcf94naecQlOu3XDBuQ.png\",srcSet:\"https://framerusercontent.com/images/uAFZ3bQBcf94naecQlOu3XDBuQ.png 630w\"},className:\"framer-1iww9t8\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12cpm7l\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Exavier Whitnall\"})}),className:\"framer-k9vmdv\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"Lalor FC to Fitzroy Stars\"})}),className:\"framer-1qnyyyh\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d3lbhy\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4874.4+20+183+0+828+0+0),pixelHeight:1050,pixelWidth:808,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 80px, 1000px), 200px)`,src:\"https://framerusercontent.com/images/QJo6mCx7dyGPwPF60Fu9nslvXo.png\",srcSet:\"https://framerusercontent.com/images/QJo6mCx7dyGPwPF60Fu9nslvXo.png?scale-down-to=1024 787w,https://framerusercontent.com/images/QJo6mCx7dyGPwPF60Fu9nslvXo.png 808w\"}},PqpaQgc5e:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3970.4+20+183+0+414+0+0),pixelHeight:1050,pixelWidth:808,sizes:`max((min(min(1280px, ${componentViewport?.width||\"100vw\"}) - 80px, 1000px) - 120px) / 3, 200px)`,src:\"https://framerusercontent.com/images/QJo6mCx7dyGPwPF60Fu9nslvXo.png\",srcSet:\"https://framerusercontent.com/images/QJo6mCx7dyGPwPF60Fu9nslvXo.png?scale-down-to=1024 787w,https://framerusercontent.com/images/QJo6mCx7dyGPwPF60Fu9nslvXo.png 808w\"}},WpCIbgkLd:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4557.4+20+183+0+414+0+0),pixelHeight:1050,pixelWidth:808,sizes:`max((min(min(${componentViewport?.width||\"100vw\"} * 0.9913, ${componentViewport?.width||\"100vw\"}) - 80px, 1000px) - 60px) / 2, 200px)`,src:\"https://framerusercontent.com/images/QJo6mCx7dyGPwPF60Fu9nslvXo.png\",srcSet:\"https://framerusercontent.com/images/QJo6mCx7dyGPwPF60Fu9nslvXo.png?scale-down-to=1024 787w,https://framerusercontent.com/images/QJo6mCx7dyGPwPF60Fu9nslvXo.png 808w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4081.4+20+183+0+414+0+0),pixelHeight:1050,pixelWidth:808,sizes:`max((min(min(1280px, ${componentViewport?.width||\"100vw\"}) - 80px, 1000px) - 120px) / 3, 200px)`,src:\"https://framerusercontent.com/images/QJo6mCx7dyGPwPF60Fu9nslvXo.png\",srcSet:\"https://framerusercontent.com/images/QJo6mCx7dyGPwPF60Fu9nslvXo.png?scale-down-to=1024 787w,https://framerusercontent.com/images/QJo6mCx7dyGPwPF60Fu9nslvXo.png 808w\"},className:\"framer-crf55k\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pzrnki\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Nathan Wright\"})}),className:\"framer-316cn3\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"Labrador FC to Benalla Saints\"})}),className:\"framer-cyu6wb\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wpclk2\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4874.4+20+183+0+1242+0+0),pixelHeight:1024,pixelWidth:768,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 80px, 1000px), 200px)`,src:\"https://framerusercontent.com/images/EC9kYOc2ilh8oGkxYDZB1GERg8g.jpeg\",srcSet:\"https://framerusercontent.com/images/EC9kYOc2ilh8oGkxYDZB1GERg8g.jpeg 768w\"}},PqpaQgc5e:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3970.4+20+183+0+414+0+0),pixelHeight:1024,pixelWidth:768,sizes:`max((min(min(1280px, ${componentViewport?.width||\"100vw\"}) - 80px, 1000px) - 120px) / 3, 200px)`,src:\"https://framerusercontent.com/images/EC9kYOc2ilh8oGkxYDZB1GERg8g.jpeg\",srcSet:\"https://framerusercontent.com/images/EC9kYOc2ilh8oGkxYDZB1GERg8g.jpeg 768w\"}},WpCIbgkLd:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4557.4+20+183+0+828+0+0),pixelHeight:1024,pixelWidth:768,sizes:`max((min(min(${componentViewport?.width||\"100vw\"} * 0.9913, ${componentViewport?.width||\"100vw\"}) - 80px, 1000px) - 60px) / 2, 200px)`,src:\"https://framerusercontent.com/images/EC9kYOc2ilh8oGkxYDZB1GERg8g.jpeg\",srcSet:\"https://framerusercontent.com/images/EC9kYOc2ilh8oGkxYDZB1GERg8g.jpeg 768w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4081.4+20+183+0+414+0+0),pixelHeight:1024,pixelWidth:768,sizes:`max((min(min(1280px, ${componentViewport?.width||\"100vw\"}) - 80px, 1000px) - 120px) / 3, 200px)`,src:\"https://framerusercontent.com/images/EC9kYOc2ilh8oGkxYDZB1GERg8g.jpeg\",srcSet:\"https://framerusercontent.com/images/EC9kYOc2ilh8oGkxYDZB1GERg8g.jpeg 768w\"},className:\"framer-rzd9bf\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8hajv5\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Tom Baulch\"})}),className:\"framer-1erwtdy\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"Wangaratta Rovers to Blighty FC\"})}),className:\"framer-1q6siay\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-leu773\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PqpaQgc5e:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3970.4+20+183+0+414+0+0),pixelHeight:1076,pixelWidth:946,sizes:`max((min(min(1280px, ${componentViewport?.width||\"100vw\"}) - 80px, 1000px) - 120px) / 3, 200px)`,src:\"https://framerusercontent.com/images/AttsDVLiADag7KRDoeUOlr6JRbM.png\",srcSet:\"https://framerusercontent.com/images/AttsDVLiADag7KRDoeUOlr6JRbM.png?scale-down-to=1024 900w,https://framerusercontent.com/images/AttsDVLiADag7KRDoeUOlr6JRbM.png 946w\"}},WpCIbgkLd:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4557.4+20+183+0+828+0+0),pixelHeight:1076,pixelWidth:946,sizes:`max((min(min(${componentViewport?.width||\"100vw\"} * 0.9913, ${componentViewport?.width||\"100vw\"}) - 80px, 1000px) - 60px) / 2, 200px)`,src:\"https://framerusercontent.com/images/AttsDVLiADag7KRDoeUOlr6JRbM.png\",srcSet:\"https://framerusercontent.com/images/AttsDVLiADag7KRDoeUOlr6JRbM.png?scale-down-to=1024 900w,https://framerusercontent.com/images/AttsDVLiADag7KRDoeUOlr6JRbM.png 946w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4081.4+20+183+0+414+0+0),pixelHeight:1076,pixelWidth:946,sizes:`max((min(min(1280px, ${componentViewport?.width||\"100vw\"}) - 80px, 1000px) - 120px) / 3, 200px)`,src:\"https://framerusercontent.com/images/AttsDVLiADag7KRDoeUOlr6JRbM.png\",srcSet:\"https://framerusercontent.com/images/AttsDVLiADag7KRDoeUOlr6JRbM.png?scale-down-to=1024 900w,https://framerusercontent.com/images/AttsDVLiADag7KRDoeUOlr6JRbM.png 946w\"},className:\"framer-xz54sy hidden-ujtbii\",\"data-framer-name\":\"Image\"})}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-58cubq hidden-ujtbii\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Andrew Steele\"})}),className:\"framer-relpxi\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"Newcombe to East Geelong\"})}),className:\"framer-1w1ls3h\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-jirvc7\",\"data-framer-name\":\"FAQ\",id:elementId5,ref:ref7,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ptg2o\",\"data-framer-name\":\"Containter\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ttihow\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{y:(componentViewport?.y||0)+0+6773.4+0+0+0+0+0+0},PqpaQgc5e:{y:(componentViewport?.y||0)+0+4981.4+60+0+0+0+0+0},WpCIbgkLd:{y:(componentViewport?.y||0)+0+5982.4+40+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:29,y:(componentViewport?.y||0)+0+5092.4+40+0+0+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation14,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref7,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-cr5ewj-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Badge,{abNWj2a4p:\"rgb(120, 120, 120)\",DTEBE1LHR:\"FAQ\",gxd9Te8kM:\"CATEGORY-NAME\",height:\"100%\",id:\"qkr7BPjOj\",j7oQQHdIz:\"var(--token-328d526d-52b3-499c-854f-6f2f938de898, rgb(0, 0, 0))\",layoutId:\"qkr7BPjOj\",mQiWJf8Hp:\"rgb(255, 245, 245)\",variant:\"A1hLNSIZ_\",VRSDhkFhV:\"PLAN\",width:\"100%\",xwIlK_F61:\"rgb(255, 245, 245)\",yHuYwr8Ni:\"var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255))\"})})})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation18,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref7,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-g567mr\",\"data-styles-preset\":\"XuM03kBo3\",children:\"We\u2019ve got you covered\"})}),className:\"framer-vts9ei\",\"data-framer-name\":\"We\u2019ve got you covered\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{width:`min(${componentViewport?.width||\"100vw\"} * 0.959 - 40px, 1180px)`,y:(componentViewport?.y||0)+0+6773.4+0+0+0+145},PqpaQgc5e:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 80px, 1180px) * 0.66)`,y:(componentViewport?.y||0)+0+4981.4+60+0+0+145},WpCIbgkLd:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1180px)`,y:(componentViewport?.y||0)+0+5982.4+40+0+0+145}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:281,width:`calc(min(${componentViewport?.width||\"100vw\"} - 120px, 1180px) * 0.66)`,y:(componentViewport?.y||0)+0+5092.4+40+0+0+145,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation17,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-108hyr5-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(FAQAccordion,{height:\"100%\",id:\"z8dgI7mnb\",layoutId:\"z8dgI7mnb\",style:{width:\"100%\"},variant:\"WOHyQJqla\",width:\"100%\"})})})})]})}),isDisplayed2()&&/*#__PURE__*/_jsxs(\"section\",{className:\"framer-udlfp0 hidden-qqyzon\",\"data-framer-name\":\"Blog\",id:elementId6,ref:ref8,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fbqtm7\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{y:(componentViewport?.y||0)+0+7239.4+40+0+0+0},PqpaQgc5e:{y:(componentViewport?.y||0)+0+5527.4+60+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:29,y:(componentViewport?.y||0)+0+5598.4+60+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation14,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref8,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-8umt2j-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Badge,{abNWj2a4p:\"rgb(120, 120, 120)\",DTEBE1LHR:\"SOCIAL MEDIA\",gxd9Te8kM:\"CATEGORY-NAME\",height:\"100%\",id:\"LsBVQzEfI\",j7oQQHdIz:\"var(--token-328d526d-52b3-499c-854f-6f2f938de898, rgb(0, 0, 0))\",layoutId:\"LsBVQzEfI\",mQiWJf8Hp:\"rgb(255, 245, 245)\",variant:\"A1hLNSIZ_\",VRSDhkFhV:\"PLAN\",width:\"100%\",xwIlK_F61:\"rgb(255, 245, 245)\",yHuYwr8Ni:\"var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255))\"})})})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation18,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref8,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-g567mr\",\"data-styles-preset\":\"XuM03kBo3\",children:\"Club & Recruitment Updates\"})}),className:\"framer-w1f6wa\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-q4xp4s-container\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<!-- Place <div> tag where you want the feed to appear -->\\n<div id=\"curator-feed-default-feed-layout\"><a href=\"https://curator.io\" target=\"_blank\" class=\"crt-logo crt-tag\">Powered by Curator.io</a></div>\\n\\n<!-- The Javascript can be moved to the end of the html page before the </body> tag -->\\n<script type=\"text/javascript\">\\n/* curator-feed-default-feed-layout */\\n(function(){\\nvar i,e,d=document,s=\"script\";i=d.createElement(\"script\");i.async=1;i.charset=\"UTF-8\";\\ni.src=\"https://cdn.curator.io/published/05e6faf4-3977-49ff-8d31-41604dce399d.js\";\\ne=d.getElementsByTagName(s)[0];e.parentNode.insertBefore(i, e);\\n})();\\n</script>',id:\"jb207gh1x\",layoutId:\"jb207gh1x\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{y:(componentViewport?.y||0)+0+7239.4+40+964},PqpaQgc5e:{y:(componentViewport?.y||0)+0+5527.4+60+1086}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,y:(componentViewport?.y||0)+0+5598.4+60+1024,children:/*#__PURE__*/_jsx(Container,{className:\"framer-mlh6q6-container\",children:/*#__PURE__*/_jsx(Buttons,{bOwGuieUn:\"ArrowRight\",height:\"100%\",id:\"TGosIi0EZ\",layoutId:\"TGosIi0EZ\",variant:\"JiPCvmJb6\",vjZWklrqI:\"instagram.com/trainstopclub\",width:\"100%\",xEfGs_njT:\"See more\"})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{height:375,y:(componentViewport?.y||0)+0+8332.4},PqpaQgc5e:{y:(componentViewport?.y||0)+0+6782.4},WpCIbgkLd:{y:(componentViewport?.y||0)+0+6488.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:305,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+6791.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1t267rc-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J3uB7PlJN:{style:{height:\"100%\",width:\"100%\"},variant:\"IFm_nl1xI\"},WpCIbgkLd:{variant:\"kQqvilYYp\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"UdEOtZZh7\",layoutId:\"UdEOtZZh7\",style:{width:\"100%\"},variant:\"o7RQfo0Of\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-wTXir.framer-lux5qc, .framer-wTXir .framer-lux5qc { display: block; }\",\".framer-wTXir.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1280px; }\",\".framer-wTXir .framer-wde3po-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\",\".framer-wTXir .framer-1yp8xwc { align-content: center; align-items: center; background-color: #121212; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 121px; height: 1162px; justify-content: flex-start; overflow: hidden; padding: 137px 0px 538px 0px; position: relative; scroll-margin-top: 10px; width: 100%; }\",\".framer-wTXir .framer-aeug7n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 670px; justify-content: center; left: calc(69.84375000000003% - 772px / 2); overflow: visible; padding: 0px; position: absolute; top: -400px; width: 772px; z-index: 0; }\",\".framer-wTXir .framer-1d13stc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 670px; justify-content: center; left: calc(18.046875000000025% - 772px / 2); overflow: visible; padding: 0px; position: absolute; top: -400px; width: 772px; z-index: 0; }\",\".framer-wTXir .framer-17lqxjv { align-content: center; align-items: center; background-color: rgba(230, 230, 230, 0); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 33px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 60px 0px 60px; position: relative; width: 100%; }\",\".framer-wTXir .framer-9o2owm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 1180px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-wTXir .framer-1ng0tkn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 258px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-wTXir .framer-1uywckh { flex: none; height: 211px; position: relative; white-space: pre-wrap; width: 74%; word-break: break-word; word-wrap: break-word; }\",\".framer-wTXir .framer-u9emc7 { --framer-paragraph-spacing: 30px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 52%; word-break: break-word; word-wrap: break-word; }\",\".framer-wTXir .framer-1yt86wi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-wTXir .framer-u1w5f8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-wTXir .framer-e3ehre-container { aspect-ratio: 0.7 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 36px); position: relative; width: 25px; }\",\".framer-wTXir .framer-38qvku-container, .framer-wTXir .framer-ucnd8i-container, .framer-wTXir .framer-9a9af9-container { aspect-ratio: 0.6944444444444444 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 36px); position: relative; width: 25px; }\",\".framer-wTXir .framer-18v5tzb, .framer-wTXir .framer-w1f6wa { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-wTXir .framer-225hdf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-wTXir .framer-15xh9ns-container, .framer-wTXir .framer-10omhun-container, .framer-wTXir .framer-1w1gje9-container, .framer-wTXir .framer-cr5ewj-container, .framer-wTXir .framer-8umt2j-container, .framer-wTXir .framer-mlh6q6-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-wTXir .framer-1rzjr3l-container { align-self: stretch; flex: none; height: auto; position: relative; width: auto; }\",\".framer-wTXir .framer-112xx8p { align-content: center; align-items: center; bottom: 115px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 506px; overflow: visible; padding: 0px 60px 0px 60px; position: absolute; right: -254px; width: 100%; z-index: 1; }\",\".framer-wTXir .framer-4wuq7g-container { bottom: -115px; flex: none; height: 439px; left: -529px; position: absolute; right: -408px; z-index: 1; }\",\".framer-wTXir .framer-uhu4fe, .framer-wTXir .framer-mgu3i4, .framer-wTXir .framer-1waxum7, .framer-wTXir .framer-1djzoo, .framer-wTXir .framer-kpgdod, .framer-wTXir .framer-qwu9g8, .framer-wTXir .framer-19yd9zn { aspect-ratio: 0.87 / 1; border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; height: var(--framer-aspect-ratio-supported, 300px); overflow: visible; position: relative; width: 261px; z-index: 1; }\",\".framer-wTXir .framer-197hixj { aspect-ratio: 0.7444703143189756 / 1; height: var(--framer-aspect-ratio-supported, 300px); overflow: visible; position: relative; width: 223px; z-index: 1; }\",\".framer-wTXir .framer-iaaevk { aspect-ratio: 0.6393728222996515 / 1; height: var(--framer-aspect-ratio-supported, 302px); overflow: visible; position: relative; width: 193px; z-index: 1; }\",\".framer-wTXir .framer-nur7dr-container { bottom: 47px; flex: none; height: 339px; left: -25px; position: absolute; right: -9px; z-index: 1; }\",\".framer-wTXir .framer-1j4nrae { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 80px 60px 30px 60px; position: relative; width: 100%; }\",\".framer-wTXir .framer-xo0xl9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1180px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-wTXir .framer-2a8b7p { --framer-paragraph-spacing: 30px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-wTXir .framer-yuhlz0-container { flex: none; height: 131px; position: relative; width: 100%; }\",\".framer-wTXir .framer-xnp448-container { aspect-ratio: 3.8461538461538463 / 1; height: var(--framer-aspect-ratio-supported, 38px); position: relative; width: 146px; }\",\".framer-wTXir .framer-u964l4-container { height: 73px; position: relative; width: 146px; }\",\".framer-wTXir .framer-bcwbrm-container { height: 67px; position: relative; width: 165px; }\",\".framer-wTXir .framer-1uzfvqj-container { height: 54px; position: relative; width: 120px; }\",\".framer-wTXir .framer-dlvwqj-container { height: 72px; position: relative; width: 120px; }\",\".framer-wTXir .framer-1plc4e2-container { height: 70px; position: relative; width: 114px; }\",\".framer-wTXir .framer-1limjit-container { height: 61px; position: relative; width: 114px; }\",\".framer-wTXir .framer-y4objz-container { height: 57px; position: relative; width: 101px; }\",\".framer-wTXir .framer-1t5bw2x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 30px 0px 0px 0px; position: relative; scroll-margin-top: 80px; width: 100%; }\",\".framer-wTXir .framer-q2olwh-container, .framer-wTXir .framer-1c45g1f-container, .framer-wTXir .framer-cumeb4-container, .framer-wTXir .framer-iusd5a-container, .framer-wTXir .framer-1t267rc-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-wTXir .framer-4mqpuq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 20px 60px 120px 60px; position: relative; width: 100%; }\",\".framer-wTXir .framer-1qcobr8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 1180px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-wTXir .framer-1f7r3jr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 5px 0px; position: relative; width: 100%; }\",\".framer-wTXir .framer-1rp0pmn, .framer-wTXir .framer-2wrv3i, .framer-wTXir .framer-1fhe1sx, .framer-wTXir .framer-1lyz8h0 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-wTXir .framer-vpwr7o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-wTXir .framer-7zxqpe, .framer-wTXir .framer-nh2hnf { --border-bottom-width: 0px; --border-color: #b9bed1; --border-left-width: 0px; --border-right-width: 1px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-wTXir .framer-swfy82, .framer-wTXir .framer-1rcoess, .framer-wTXir .framer-1tpy5fl { --framer-paragraph-spacing: 30px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-wTXir .framer-18rnzgc { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-wTXir .framer-ovdge4 { align-content: center; align-items: center; background: linear-gradient(180deg, rgba(232, 232, 232, 0.34) 0%, rgb(255, 255, 255) 26.380824183558556%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 100%; overflow: hidden; padding: 20px 40px 40px 40px; position: relative; width: 1280px; }\",\".framer-wTXir .framer-1lilnrz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; max-width: 1180px; overflow: visible; padding: 28px 0px 50px 0px; position: relative; width: 97%; }\",\".framer-wTXir .framer-ee8yod, .framer-wTXir .framer-vts9ei { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 70%; word-break: break-word; word-wrap: break-word; }\",\".framer-wTXir .framer-3xjpyt { display: grid; flex: none; gap: 60px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(200px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-wTXir .framer-45vor2, .framer-wTXir .framer-vhvp96, .framer-wTXir .framer-1udhpsr, .framer-wTXir .framer-d3lbhy, .framer-wTXir .framer-1wpclk2, .framer-wTXir .framer-leu773 { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: auto; justify-content: center; justify-self: start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-wTXir .framer-orqsjq, .framer-wTXir .framer-14r18dk, .framer-wTXir .framer-1iww9t8 { align-content: center; align-items: center; aspect-ratio: 1 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 294px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-wTXir .framer-e1e0at, .framer-wTXir .framer-14tqae7, .framer-wTXir .framer-12cpm7l, .framer-wTXir .framer-1pzrnki, .framer-wTXir .framer-8hajv5, .framer-wTXir .framer-58cubq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-wTXir .framer-174j39m, .framer-wTXir .framer-13a1jxb, .framer-wTXir .framer-k9vmdv, .framer-wTXir .framer-316cn3, .framer-wTXir .framer-1erwtdy, .framer-wTXir .framer-relpxi { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-wTXir .framer-hlkfok, .framer-wTXir .framer-1y60sid, .framer-wTXir .framer-1qnyyyh, .framer-wTXir .framer-cyu6wb, .framer-wTXir .framer-1q6siay, .framer-wTXir .framer-1w1ls3h { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-wTXir .framer-crf55k, .framer-wTXir .framer-rzd9bf, .framer-wTXir .framer-xz54sy { align-content: center; align-items: center; aspect-ratio: 1 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 293px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-wTXir .framer-jirvc7 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: visible; padding: 40px 60px 40px 60px; position: relative; width: 100%; }\",\".framer-wTXir .framer-ptg2o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1180px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-wTXir .framer-1ttihow { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-wTXir .framer-108hyr5-container { flex: none; height: auto; position: relative; width: 66%; }\",\".framer-wTXir .framer-udlfp0 { align-content: center; align-items: center; background-color: var(--token-7bc77d28-260e-4b84-92a3-3084b520b0ce, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 60px; position: relative; width: 100%; }\",\".framer-wTXir .framer-fbqtm7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-wTXir .framer-q4xp4s-container { flex: none; height: 791px; position: relative; width: 1057px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-wTXir.framer-72rtr7, .framer-wTXir .framer-1yp8xwc, .framer-wTXir .framer-aeug7n, .framer-wTXir .framer-1d13stc, .framer-wTXir .framer-17lqxjv, .framer-wTXir .framer-9o2owm, .framer-wTXir .framer-1ng0tkn, .framer-wTXir .framer-1yt86wi, .framer-wTXir .framer-u1w5f8, .framer-wTXir .framer-225hdf, .framer-wTXir .framer-112xx8p, .framer-wTXir .framer-1j4nrae, .framer-wTXir .framer-xo0xl9, .framer-wTXir .framer-1t5bw2x, .framer-wTXir .framer-4mqpuq, .framer-wTXir .framer-1qcobr8, .framer-wTXir .framer-1f7r3jr, .framer-wTXir .framer-vpwr7o, .framer-wTXir .framer-7zxqpe, .framer-wTXir .framer-nh2hnf, .framer-wTXir .framer-18rnzgc, .framer-wTXir .framer-ovdge4, .framer-wTXir .framer-1lilnrz, .framer-wTXir .framer-45vor2, .framer-wTXir .framer-orqsjq, .framer-wTXir .framer-e1e0at, .framer-wTXir .framer-vhvp96, .framer-wTXir .framer-14r18dk, .framer-wTXir .framer-14tqae7, .framer-wTXir .framer-1udhpsr, .framer-wTXir .framer-1iww9t8, .framer-wTXir .framer-12cpm7l, .framer-wTXir .framer-d3lbhy, .framer-wTXir .framer-crf55k, .framer-wTXir .framer-1pzrnki, .framer-wTXir .framer-1wpclk2, .framer-wTXir .framer-rzd9bf, .framer-wTXir .framer-8hajv5, .framer-wTXir .framer-leu773, .framer-wTXir .framer-xz54sy, .framer-wTXir .framer-58cubq, .framer-wTXir .framer-jirvc7, .framer-wTXir .framer-ptg2o, .framer-wTXir .framer-1ttihow, .framer-wTXir .framer-udlfp0, .framer-wTXir .framer-fbqtm7 { gap: 0px; } .framer-wTXir.framer-72rtr7 > *, .framer-wTXir .framer-1j4nrae > *, .framer-wTXir .framer-ovdge4 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-wTXir.framer-72rtr7 > :first-child, .framer-wTXir .framer-1yp8xwc > :first-child, .framer-wTXir .framer-17lqxjv > :first-child, .framer-wTXir .framer-9o2owm > :first-child, .framer-wTXir .framer-1ng0tkn > :first-child, .framer-wTXir .framer-1j4nrae > :first-child, .framer-wTXir .framer-xo0xl9 > :first-child, .framer-wTXir .framer-1t5bw2x > :first-child, .framer-wTXir .framer-4mqpuq > :first-child, .framer-wTXir .framer-1qcobr8 > :first-child, .framer-wTXir .framer-1f7r3jr > :first-child, .framer-wTXir .framer-7zxqpe > :first-child, .framer-wTXir .framer-nh2hnf > :first-child, .framer-wTXir .framer-18rnzgc > :first-child, .framer-wTXir .framer-ovdge4 > :first-child, .framer-wTXir .framer-1lilnrz > :first-child, .framer-wTXir .framer-45vor2 > :first-child, .framer-wTXir .framer-orqsjq > :first-child, .framer-wTXir .framer-e1e0at > :first-child, .framer-wTXir .framer-vhvp96 > :first-child, .framer-wTXir .framer-14r18dk > :first-child, .framer-wTXir .framer-14tqae7 > :first-child, .framer-wTXir .framer-1udhpsr > :first-child, .framer-wTXir .framer-1iww9t8 > :first-child, .framer-wTXir .framer-12cpm7l > :first-child, .framer-wTXir .framer-d3lbhy > :first-child, .framer-wTXir .framer-crf55k > :first-child, .framer-wTXir .framer-1pzrnki > :first-child, .framer-wTXir .framer-1wpclk2 > :first-child, .framer-wTXir .framer-rzd9bf > :first-child, .framer-wTXir .framer-8hajv5 > :first-child, .framer-wTXir .framer-leu773 > :first-child, .framer-wTXir .framer-xz54sy > :first-child, .framer-wTXir .framer-58cubq > :first-child, .framer-wTXir .framer-jirvc7 > :first-child, .framer-wTXir .framer-ptg2o > :first-child, .framer-wTXir .framer-1ttihow > :first-child, .framer-wTXir .framer-udlfp0 > :first-child, .framer-wTXir .framer-fbqtm7 > :first-child { margin-top: 0px; } .framer-wTXir.framer-72rtr7 > :last-child, .framer-wTXir .framer-1yp8xwc > :last-child, .framer-wTXir .framer-17lqxjv > :last-child, .framer-wTXir .framer-9o2owm > :last-child, .framer-wTXir .framer-1ng0tkn > :last-child, .framer-wTXir .framer-1j4nrae > :last-child, .framer-wTXir .framer-xo0xl9 > :last-child, .framer-wTXir .framer-1t5bw2x > :last-child, .framer-wTXir .framer-4mqpuq > :last-child, .framer-wTXir .framer-1qcobr8 > :last-child, .framer-wTXir .framer-1f7r3jr > :last-child, .framer-wTXir .framer-7zxqpe > :last-child, .framer-wTXir .framer-nh2hnf > :last-child, .framer-wTXir .framer-18rnzgc > :last-child, .framer-wTXir .framer-ovdge4 > :last-child, .framer-wTXir .framer-1lilnrz > :last-child, .framer-wTXir .framer-45vor2 > :last-child, .framer-wTXir .framer-orqsjq > :last-child, .framer-wTXir .framer-e1e0at > :last-child, .framer-wTXir .framer-vhvp96 > :last-child, .framer-wTXir .framer-14r18dk > :last-child, .framer-wTXir .framer-14tqae7 > :last-child, .framer-wTXir .framer-1udhpsr > :last-child, .framer-wTXir .framer-1iww9t8 > :last-child, .framer-wTXir .framer-12cpm7l > :last-child, .framer-wTXir .framer-d3lbhy > :last-child, .framer-wTXir .framer-crf55k > :last-child, .framer-wTXir .framer-1pzrnki > :last-child, .framer-wTXir .framer-1wpclk2 > :last-child, .framer-wTXir .framer-rzd9bf > :last-child, .framer-wTXir .framer-8hajv5 > :last-child, .framer-wTXir .framer-leu773 > :last-child, .framer-wTXir .framer-xz54sy > :last-child, .framer-wTXir .framer-58cubq > :last-child, .framer-wTXir .framer-jirvc7 > :last-child, .framer-wTXir .framer-ptg2o > :last-child, .framer-wTXir .framer-1ttihow > :last-child, .framer-wTXir .framer-udlfp0 > :last-child, .framer-wTXir .framer-fbqtm7 > :last-child { margin-bottom: 0px; } .framer-wTXir .framer-1yp8xwc > * { margin: 0px; margin-bottom: calc(121px / 2); margin-top: calc(121px / 2); } .framer-wTXir .framer-aeug7n > *, .framer-wTXir .framer-1d13stc > *, .framer-wTXir .framer-112xx8p > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-wTXir .framer-aeug7n > :first-child, .framer-wTXir .framer-1d13stc > :first-child, .framer-wTXir .framer-1yt86wi > :first-child, .framer-wTXir .framer-u1w5f8 > :first-child, .framer-wTXir .framer-225hdf > :first-child, .framer-wTXir .framer-112xx8p > :first-child, .framer-wTXir .framer-vpwr7o > :first-child { margin-left: 0px; } .framer-wTXir .framer-aeug7n > :last-child, .framer-wTXir .framer-1d13stc > :last-child, .framer-wTXir .framer-1yt86wi > :last-child, .framer-wTXir .framer-u1w5f8 > :last-child, .framer-wTXir .framer-225hdf > :last-child, .framer-wTXir .framer-112xx8p > :last-child, .framer-wTXir .framer-vpwr7o > :last-child { margin-right: 0px; } .framer-wTXir .framer-17lqxjv > * { margin: 0px; margin-bottom: calc(33px / 2); margin-top: calc(33px / 2); } .framer-wTXir .framer-9o2owm > *, .framer-wTXir .framer-1qcobr8 > *, .framer-wTXir .framer-fbqtm7 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-wTXir .framer-1ng0tkn > *, .framer-wTXir .framer-1f7r3jr > *, .framer-wTXir .framer-1lilnrz > *, .framer-wTXir .framer-1ttihow > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-wTXir .framer-1yt86wi > *, .framer-wTXir .framer-225hdf > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-wTXir .framer-u1w5f8 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-wTXir .framer-xo0xl9 > *, .framer-wTXir .framer-e1e0at > *, .framer-wTXir .framer-14tqae7 > *, .framer-wTXir .framer-12cpm7l > *, .framer-wTXir .framer-1pzrnki > *, .framer-wTXir .framer-8hajv5 > *, .framer-wTXir .framer-58cubq > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-wTXir .framer-1t5bw2x > *, .framer-wTXir .framer-ptg2o > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-wTXir .framer-4mqpuq > *, .framer-wTXir .framer-jirvc7 > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-wTXir .framer-vpwr7o > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-wTXir .framer-7zxqpe > *, .framer-wTXir .framer-nh2hnf > *, .framer-wTXir .framer-18rnzgc > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-wTXir .framer-45vor2 > *, .framer-wTXir .framer-vhvp96 > *, .framer-wTXir .framer-1udhpsr > *, .framer-wTXir .framer-d3lbhy > *, .framer-wTXir .framer-1wpclk2 > *, .framer-wTXir .framer-leu773 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-wTXir .framer-orqsjq > *, .framer-wTXir .framer-14r18dk > *, .framer-wTXir .framer-1iww9t8 > *, .framer-wTXir .framer-crf55k > *, .framer-wTXir .framer-rzd9bf > *, .framer-wTXir .framer-xz54sy > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-wTXir .framer-udlfp0 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,'.framer-wTXir[data-border=\"true\"]::after, .framer-wTXir [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; }',\"@media (min-width: 992px) and (max-width: 1279px) { .framer-wTXir.framer-72rtr7 { width: 992px; } .framer-wTXir .framer-1yp8xwc { gap: 50px; padding: 137px 40px 538px 40px; } .framer-wTXir .framer-17lqxjv { padding: 0px; } .framer-wTXir .framer-9o2owm { gap: 32px; } .framer-wTXir .framer-1uywckh, .framer-wTXir .framer-u9emc7, .framer-wTXir .framer-vts9ei { width: 80%; } .framer-wTXir .framer-112xx8p { min-height: 439px; padding: 0px; } .framer-wTXir .framer-1j4nrae { padding: 60px 40px 30px 40px; } .framer-wTXir .framer-yuhlz0-container { height: 100px; } .framer-wTXir .framer-q2olwh-container { order: 0; width: 108%; } .framer-wTXir .framer-1c45g1f-container { order: 1; width: 111%; } .framer-wTXir .framer-cumeb4-container { order: 2; width: 109%; } .framer-wTXir .framer-4mqpuq { padding: 60px 40px 80px 40px; } .framer-wTXir .framer-ee8yod { width: 100%; } .framer-wTXir .framer-orqsjq, .framer-wTXir .framer-14r18dk, .framer-wTXir .framer-1iww9t8, .framer-wTXir .framer-crf55k, .framer-wTXir .framer-rzd9bf, .framer-wTXir .framer-xz54sy { height: var(--framer-aspect-ratio-supported, 264px); } .framer-wTXir .framer-jirvc7 { gap: 60px; padding: 60px 40px 60px 40px; } .framer-wTXir .framer-q4xp4s-container { height: 853px; width: 843px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-wTXir .framer-1yp8xwc, .framer-wTXir .framer-9o2owm, .framer-wTXir .framer-jirvc7 { gap: 0px; } .framer-wTXir .framer-1yp8xwc > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-wTXir .framer-1yp8xwc > :first-child, .framer-wTXir .framer-9o2owm > :first-child, .framer-wTXir .framer-jirvc7 > :first-child { margin-top: 0px; } .framer-wTXir .framer-1yp8xwc > :last-child, .framer-wTXir .framer-9o2owm > :last-child, .framer-wTXir .framer-jirvc7 > :last-child { margin-bottom: 0px; } .framer-wTXir .framer-9o2owm > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-wTXir .framer-jirvc7 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } }}\",\"@media (max-width: 575px) { .framer-wTXir.framer-72rtr7 { width: 390px; } .framer-wTXir .framer-1yp8xwc { gap: 40px; height: 1158px; padding: 160px 20px 40px 20px; } .framer-wTXir .framer-17lqxjv { gap: 60px; order: 2; padding: 0px; } .framer-wTXir .framer-9o2owm { gap: 25px; } .framer-wTXir .framer-1ng0tkn { gap: 24px; height: 171px; } .framer-wTXir .framer-1uywckh { height: 140px; width: 100%; } .framer-wTXir .framer-u9emc7, .framer-wTXir .framer-15xh9ns-container, .framer-wTXir .framer-ovdge4, .framer-wTXir .framer-vts9ei, .framer-wTXir .framer-108hyr5-container { width: 100%; } .framer-wTXir .framer-225hdf { flex-direction: column; width: 68%; } .framer-wTXir .framer-1rzjr3l-container { align-self: unset; width: 100%; } .framer-wTXir .framer-nur7dr-container { order: 4; } .framer-wTXir .framer-1j4nrae { padding: 60px 20px 30px 20px; } .framer-wTXir .framer-xo0xl9 { gap: 16px; order: 0; } .framer-wTXir .framer-2a8b7p { white-space: pre-wrap; width: 90%; word-break: break-word; word-wrap: break-word; } .framer-wTXir .framer-yuhlz0-container { height: 80px; } .framer-wTXir .framer-1t5bw2x { gap: 20px; padding: 20px 0px 0px 0px; } .framer-wTXir .framer-q2olwh-container { width: 89%; } .framer-wTXir .framer-1c45g1f-container, .framer-wTXir .framer-cumeb4-container { width: 88%; } .framer-wTXir .framer-iusd5a-container { width: 91%; } .framer-wTXir .framer-4mqpuq { gap: 40px; padding: 40px 20px 60px 20px; } .framer-wTXir .framer-vpwr7o { flex-direction: column; gap: 40px; } .framer-wTXir .framer-7zxqpe, .framer-wTXir .framer-nh2hnf { --border-bottom-width: unset; --border-left-width: unset; --border-right-width: unset; --border-top-width: unset; flex: none; width: 100%; } .framer-wTXir .framer-18rnzgc { flex: none; width: 100%; } .framer-wTXir .framer-ee8yod { width: 90%; } .framer-wTXir .framer-3xjpyt { grid-template-columns: repeat(1, minmax(200px, 1fr)); } .framer-wTXir .framer-orqsjq, .framer-wTXir .framer-14r18dk, .framer-wTXir .framer-crf55k, .framer-wTXir .framer-rzd9bf { height: var(--framer-aspect-ratio-supported, 310px); } .framer-wTXir .framer-jirvc7 { gap: 40px; padding: 0px 20px 40px 20px; width: 96%; } .framer-wTXir .framer-udlfp0 { padding: 40px 20px 40px 20px; } .framer-wTXir .framer-w1f6wa { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-wTXir .framer-q4xp4s-container { height: 731px; width: 253px; } .framer-wTXir .framer-1t267rc-container { height: 375px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-wTXir .framer-1yp8xwc, .framer-wTXir .framer-17lqxjv, .framer-wTXir .framer-9o2owm, .framer-wTXir .framer-1ng0tkn, .framer-wTXir .framer-225hdf, .framer-wTXir .framer-xo0xl9, .framer-wTXir .framer-1t5bw2x, .framer-wTXir .framer-4mqpuq, .framer-wTXir .framer-vpwr7o, .framer-wTXir .framer-jirvc7 { gap: 0px; } .framer-wTXir .framer-1yp8xwc > *, .framer-wTXir .framer-4mqpuq > *, .framer-wTXir .framer-vpwr7o > *, .framer-wTXir .framer-jirvc7 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-wTXir .framer-1yp8xwc > :first-child, .framer-wTXir .framer-17lqxjv > :first-child, .framer-wTXir .framer-9o2owm > :first-child, .framer-wTXir .framer-1ng0tkn > :first-child, .framer-wTXir .framer-225hdf > :first-child, .framer-wTXir .framer-xo0xl9 > :first-child, .framer-wTXir .framer-1t5bw2x > :first-child, .framer-wTXir .framer-4mqpuq > :first-child, .framer-wTXir .framer-vpwr7o > :first-child, .framer-wTXir .framer-jirvc7 > :first-child { margin-top: 0px; } .framer-wTXir .framer-1yp8xwc > :last-child, .framer-wTXir .framer-17lqxjv > :last-child, .framer-wTXir .framer-9o2owm > :last-child, .framer-wTXir .framer-1ng0tkn > :last-child, .framer-wTXir .framer-225hdf > :last-child, .framer-wTXir .framer-xo0xl9 > :last-child, .framer-wTXir .framer-1t5bw2x > :last-child, .framer-wTXir .framer-4mqpuq > :last-child, .framer-wTXir .framer-vpwr7o > :last-child, .framer-wTXir .framer-jirvc7 > :last-child { margin-bottom: 0px; } .framer-wTXir .framer-17lqxjv > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-wTXir .framer-9o2owm > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-wTXir .framer-1ng0tkn > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-wTXir .framer-225hdf > *, .framer-wTXir .framer-xo0xl9 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-wTXir .framer-1t5bw2x > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }}\",\"@media (min-width: 576px) and (max-width: 991px) { .framer-wTXir.framer-72rtr7 { width: 576px; } .framer-wTXir .framer-1yp8xwc { gap: 40px; height: 761px; padding: 160px 20px 60px 20px; } .framer-wTXir .framer-17lqxjv { gap: 40px; padding: 0px; } .framer-wTXir .framer-1ng0tkn { height: 218px; } .framer-wTXir .framer-1uywckh, .framer-wTXir .framer-u9emc7, .framer-wTXir .framer-ee8yod, .framer-wTXir .framer-vts9ei { width: 80%; } .framer-wTXir .framer-112xx8p { bottom: 58px; min-height: 325px; padding: 0px; } .framer-wTXir .framer-1j4nrae { padding: 60px 20px 30px 20px; } .framer-wTXir .framer-xo0xl9 { gap: 16px; } .framer-wTXir .framer-2a8b7p { white-space: pre-wrap; width: 90%; word-break: break-word; word-wrap: break-word; } .framer-wTXir .framer-yuhlz0-container { height: 100px; } .framer-wTXir .framer-1t5bw2x { padding: 40px 0px 0px 0px; } .framer-wTXir .framer-4mqpuq { gap: 60px; padding: 40px 20px 60px 20px; } .framer-wTXir .framer-vpwr7o { flex-direction: column; gap: 40px; } .framer-wTXir .framer-7zxqpe, .framer-wTXir .framer-nh2hnf { --border-bottom-width: unset; --border-left-width: unset; --border-right-width: unset; --border-top-width: unset; flex: none; width: 100%; } .framer-wTXir .framer-18rnzgc { flex: none; width: 100%; } .framer-wTXir .framer-ovdge4 { width: 99%; } .framer-wTXir .framer-3xjpyt { grid-template-columns: repeat(2, minmax(200px, 1fr)); } .framer-wTXir .framer-orqsjq, .framer-wTXir .framer-14r18dk, .framer-wTXir .framer-rzd9bf, .framer-wTXir .framer-xz54sy { height: var(--framer-aspect-ratio-supported, 215px); } .framer-wTXir .framer-1iww9t8, .framer-wTXir .framer-crf55k { height: var(--framer-aspect-ratio-supported, 216px); } .framer-wTXir .framer-jirvc7 { gap: 40px; padding: 40px 20px 40px 20px; } .framer-wTXir .framer-108hyr5-container { width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-wTXir .framer-1yp8xwc, .framer-wTXir .framer-17lqxjv, .framer-wTXir .framer-xo0xl9, .framer-wTXir .framer-4mqpuq, .framer-wTXir .framer-vpwr7o, .framer-wTXir .framer-jirvc7 { gap: 0px; } .framer-wTXir .framer-1yp8xwc > *, .framer-wTXir .framer-17lqxjv > *, .framer-wTXir .framer-vpwr7o > *, .framer-wTXir .framer-jirvc7 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-wTXir .framer-1yp8xwc > :first-child, .framer-wTXir .framer-17lqxjv > :first-child, .framer-wTXir .framer-xo0xl9 > :first-child, .framer-wTXir .framer-4mqpuq > :first-child, .framer-wTXir .framer-vpwr7o > :first-child, .framer-wTXir .framer-jirvc7 > :first-child { margin-top: 0px; } .framer-wTXir .framer-1yp8xwc > :last-child, .framer-wTXir .framer-17lqxjv > :last-child, .framer-wTXir .framer-xo0xl9 > :last-child, .framer-wTXir .framer-4mqpuq > :last-child, .framer-wTXir .framer-vpwr7o > :last-child, .framer-wTXir .framer-jirvc7 > :last-child { margin-bottom: 0px; } .framer-wTXir .framer-xo0xl9 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-wTXir .framer-4mqpuq > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7077\n * @framerIntrinsicWidth 1280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"PqpaQgc5e\":{\"layout\":[\"fixed\",\"auto\"]},\"J3uB7PlJN\":{\"layout\":[\"fixed\",\"auto\"]},\"WpCIbgkLd\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerLayoutTemplateCompatible true\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-wTXir\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:7077,width:1280};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Be Vietnam Pro\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/bevietnampro/v11/QdVMSTAyLFyeg_IDWvOJmVES_HTEJl83T7wrcwap.woff2\",weight:\"500\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"}]},...NavigationFonts,...AvatarFonts,...ButtonsFonts,...TickerFonts,...PathlightFonts,...SpliceFonts,...OpenAIFonts,...TeslaFonts,...SpotifyFonts,...AmazonFonts,...TodoistFonts,...FramerFonts,...Ticker1Fonts,...FeatureSectionFonts,...CTALaunchFonts,...BadgeFonts,...FAQAccordionFonts,...EmbedFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerResponsiveScreen\":\"\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"PqpaQgc5e\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"J3uB7PlJN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WpCIbgkLd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"7077\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1280\",\"framerLayoutTemplateCompatible\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "61CAAgY,IAAMA,GAAqB,IAAUC,GAAsB,CAAC,KAAKC,GAAQ,eAAeA,CAAM,MAAM,MAAMA,GAAQ,cAAcA,CAAM,MAAM,IAAIA,GAAQ,eAAeA,CAAM,MAAM,OAAOA,GAAQ,cAAcA,CAAM,KAAK,EAAQC,GAA8B,OAAO,UAAY,KAAa,OAAO,UAAU,UAAU,oBAAqB,WAS/rB,SAARC,GAAwBC,EAAM,CAAY,GAAG,CAAC,MAAAC,EAAM,IAAAC,EAAI,QAAAC,EAAQ,eAAAC,EAAe,WAAAC,EAAW,aAAAC,EAAa,cAAAC,EAAc,YAAAC,EAAY,MAAAC,EAAM,YAAAC,EAAY,UAAAC,EAAU,UAAAC,EAAU,cAAAC,GAAc,YAAAC,GAAY,MAAAC,EAAK,EAAEf,EAAW,CAAC,YAAAgB,EAAY,SAAAC,EAAS,UAAAC,EAAU,UAAAC,EAAU,UAAAC,CAAS,EAAEN,GAAiB,CAAC,UAAAO,EAAU,WAAAC,CAAU,EAAET,GAAoBU,GAAanB,EAAe,GAAGC,CAAU,MAAMC,CAAY,MAAMC,CAAa,MAAMC,CAAW,KAAK,GAAGL,CAAO,KAAuBqB,GAAcC,GAAa,QAAQ,EAAQC,GAASF,KAAgBC,GAAa,QAAQD,KAAgBC,GAAa,OACnkBE,EAAc1B,EAAM,OAAO,OAAO,EAAQ2B,GAAYC,GAAS,MAAMF,CAAa,EAAQG,EAAYF,GAAY,EAAKjB,IAAY,KAAMA,EAAU,QAAQ,IAAMoB,GAAapB,IAAY,QAAQA,IAAY,QAAcd,GAAOmC,GAAe,CAAC,EAAQC,GAAYrC,GAAsBe,CAAS,EAAQuB,GAAUC,GAAatC,GAAOoC,EAAW,EAA4BG,GAAUC,EAAO,IAAI,EAAQC,EAAYC,EAAQ,IAAW,CAAcC,GAAU,EAAeA,GAAU,CAAC,EAAI,CAAC,CAAC,EAAO,CAACC,EAAKC,EAAO,EAAEC,GAAS,CAAC,OAAO,KAAK,SAAS,IAAI,CAAC,EAAkBC,GAAe,CAAC,EAAMC,GAAc,CAAC,EAA2BC,GAAY,EAAMC,GAAQ,EAAKrB,KAAUoB,GAAYlB,GAAY,KAAK,MAAM,GAAGA,EAAW,EAAE,EAAEmB,GAAQ,GAAM,CAACrB,IAAUI,GAAaW,EAAK,SAAQK,GAAY,KAAK,MAAML,EAAK,OAAOA,EAAK,SAAS,CAAC,EAAE,EAAEK,GAAY,KAAK,IAAIA,GAAYnD,EAAoB,EAAEoD,GAAQ,GAAiC,IAAMC,GAAQC,GAAY,IAAI,CAAC,GAAGnB,GAAaM,GAAU,QAAQ,CAAC,IAAMc,EAAanB,GAAaK,GAAU,QAAQ,YAAYA,GAAU,QAAQ,aAAmBe,EAAMb,EAAY,CAAC,EAAE,QAAQP,GAAaO,EAAY,CAAC,EAAE,QAAQ,WAAWA,EAAY,CAAC,EAAE,QAAQ,UAAU,EAAkMc,GAAtLd,EAAY,CAAC,EAAE,QAAQP,GAAaO,EAAY,CAAC,EAAE,QAAQ,WAAWA,EAAY,CAAC,EAAE,QAAQ,YAAYA,EAAY,CAAC,EAAE,QAAQ,UAAUA,EAAY,CAAC,EAAE,QAAQ,aAAa,GAA2Ba,EAAMjD,EAAIwC,GAAQ,CAAC,OAAOQ,EAAa,SAASE,CAAc,CAAC,CAAE,CAAC,EAAE,CAAC,CAAC,EAAQC,GAAe3B,GAAS,CAAC,kBAAkB,MAAM,EAAE,CAAC,EAAwC,GAAGI,EAAY,CAChkD,GAAG,CAACJ,GAAS,CAGE,IAAI4B,EAAcjB,EAAO,EAAI,EAAEkB,GAAU,KAAKC,GAAM,KAAKR,EAAO,EAASS,GAAOrB,GAAU,QAAQ,CAAC,CAAC,YAAAsB,CAAW,IAAI,CAAI,CAACJ,EAAc,UAAUI,EAAY,OAAOA,EAAY,SAASF,GAAM,KAAKR,EAAO,EAAGM,EAAc,QAAQ,EAAM,CAAC,GAAI,CAAC,CAAC,CAAE,CAACV,GAAef,GAAS,IAAIF,EAAc,CAACgC,EAAMC,IAAQ,CAAC,IAAIC,GAAaC,EAAcC,GAAcC,GAAc,IAAIC,GAAOL,IAAQ,IAAGK,GAAI3B,EAAY,CAAC,GAAMsB,IAAQjC,EAAc,OAAO,IAAGsC,GAAI3B,EAAY,CAAC,GAAG,IAAMG,GAAK,CAAC,MAAMpB,GAAWwC,GAAaF,EAAM,SAAS,MAAME,KAAe,OAAO,OAAOA,GAAa,MAAM,OAAO,OAAOvC,GAAYwC,EAAcH,EAAM,SAAS,MAAMG,IAAgB,OAAO,OAAOA,EAAc,OAAO,MAAM,EAAE,OAAoBI,EAAKC,EAAY,CAAC,QAAQ,KAAK,SAAsBD,EAAK,KAAK,CAAC,IAAID,GAAI,MAAMxB,GAAK,SAAsB2B,GAAaT,EAAM,CAAC,MAAM,CAAC,IAAII,GAAcJ,EAAM,SAAS,MAAMI,KAAgB,OAAO,OAAOA,GAAc,MAAM,GAAGtB,GAAK,WAAW,EAAE,GAAGY,EAAc,EAAE,SAASM,EAAM,MAAM,SAASA,EAAM,MAAM,SAAS,aAAaC,EAAM,MAAS,GAAGI,GAAcL,EAAM,SAAS,MAAMK,KAAgB,OAAO,OAAOA,GAAc,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,CAAE,CAAC,GAAG,CAACtC,GAAU,QAAQ2C,EAAE,EAAEA,EAAEvB,GAAYuB,IAAKxB,GAAc,CAAC,GAAGA,GAAc,GAAGhB,GAAS,IAAIF,EAAc,CAACgC,EAAMW,KAAa,CAAC,IAAIT,EAAaC,GAAcC,GAAcC,GAAcO,GAAcC,GAAc,IAAM/B,GAAK,CAAC,MAAMpB,GAAWwC,EAAaF,EAAM,SAAS,MAAME,IAAe,OAAO,OAAOA,EAAa,MAAM,OAAO,OAAOvC,GAAYwC,GAAcH,EAAM,SAAS,MAAMG,KAAgB,OAAO,OAAOA,GAAc,OAAO,OAAO,WAAW,WAAW,EAAE,OAAoBI,EAAKC,EAAY,CAAC,QAAQ,KAAK,SAAsBD,EAAK,KAAK,CAAC,MAAMzB,GAAK,cAAc,GAAK,SAAsB2B,GAAaT,EAAM,CAAC,IAAIU,EAAE,IAAIC,GAAW,MAAM,CAAC,IAAIP,GAAcJ,EAAM,SAAS,MAAMI,KAAgB,OAAO,OAAOA,GAAc,MAAM,MAAM1C,GAAW2C,GAAcL,EAAM,SAAS,MAAMK,KAAgB,OAAO,OAAOA,GAAc,MAAM,OAAO,OAAO1C,GAAYiD,GAAcZ,EAAM,SAAS,MAAMY,KAAgB,OAAO,OAAOA,GAAc,OAAO,OAAO,WAAW,EAAE,GAAGlB,EAAc,EAAE,SAASM,EAAM,MAAM,SAASA,EAAM,MAAM,SAAS,SAASU,EAAE,MAAS,GAAGG,GAAcb,EAAM,SAAS,MAAMa,KAAgB,OAAO,OAAOA,GAAc,QAAQ,CAAC,EAAEH,EAAE,KAAKC,EAAU,CAAC,EAAED,EAAE,KAAKC,EAAU,CAAE,CAAC,CAAC,EAAI,IAAMG,GAAehC,EAAK,SAASA,EAAK,SAAS,KAAK,MAAMA,EAAK,OAAOA,EAAK,QAAQ,EAAQiC,GAAYrC,EAAO,IAAI,EAAQsC,GAAStC,EAAO,IAAI,EAAQuC,GAAKvC,EAAO,CAAC,EAAQwC,GAAQxC,EAAO,EAAK,EAAQyC,GAAgBC,GAAiB,EAAQC,GAAQ3C,EAAO,IAAI,EAAQ4C,GAAa5C,EAAO,IAAI,EAE7lF,GAAG,CAACX,GAAS,CAAC,IAAMwD,EAASC,GAAU/C,EAAS,EAEzCtC,IAA+ByD,GAAU,IAAI,CAAC,GAAG,EAAAuB,IAAiB,CAACL,IAAgB,CAAChE,GAAe,OAAAwE,GAAa,QAAQD,GAAQ,QAAQ,QAAQ,CAAC,UAAU,CAAC/C,GAAY,CAAC,EAAEA,GAAYwC,EAAc,CAAC,CAAC,EAAE,CAAC,SAAS,KAAK,IAAIA,EAAc,EAAEhE,EAAM,IAAI,WAAW,IAAS,OAAO,QAAQ,CAAC,EAAQ,IAAIwE,GAAa,QAAQ,OAAO,CAAE,EAAE,CAACvE,EAAY+D,GAAehE,CAAK,CAAC,EACtX8C,GAAU,IAAI,CAAK0B,GAAa,UAAkBC,GAAUD,GAAa,QAAQ,YAAY,SAAUA,GAAa,QAAQ,KAAK,EAAW,CAACC,GAAUD,GAAa,QAAQ,YAAY,WAAWA,GAAa,QAAQ,MAAM,EAAG,EAAE,CAACC,CAAQ,CAAC,GAG9NE,GAAkBC,GAAG,CAAC,GAAG,CAACZ,IAAgBK,IAAiBhF,GAA+B,OAKnF4E,GAAY,UAAU,OAAMA,GAAY,QAAQW,GAAGA,EAAEA,EAAEX,GAAY,QAAqE,IAAIY,GAAjDX,GAAS,UAAU,KAAK,EAAEU,EAAEV,GAAS,UAA6BlE,EAAM,KAAQoE,GAAQ,UAASS,GAAO5E,GAAakE,GAAK,SAASU,EAAMV,GAAK,QAAQW,GAAK,EAAEd,GAAeG,GAAK,OAAO,EAAED,GAAS,QAAQU,EAAMH,GAAgBrF,GAAO,IAAI+E,GAAK,OAAO,CAAE,CAAC,CAAG,CAAY,IAAMY,GAAczD,GAAa,WAAW,YAAkB0D,GAAevE,EAAU,EAAQwE,GAAa,IAAIxE,EAAU,EAAQyE,GAAeC,GAAMzE,EAAU,EAAEsE,EAAc,EAAQI,EAAa,IAAI1E,EAAgB2E,EAAS,mBAAmBN,EAAa,mBAAmBpE,CAAS,KAAKuE,EAAc,uBAAuBF,EAAc,uBAAuBC,EAAY,oBAAoBtE,CAAS,KAAKyE,CAAY,KAAsB,OAAI/D,EAAkWoC,EAAK,UAAU,CAAC,MAAM,CAAC,GAAG6B,GAAe,QAAQhD,GAAQ,gBAAgB/B,EAAY8E,EAAS,OAAU,aAAa9E,EAAY8E,EAAS,OAAU,UAAU9E,EAAY8E,EAAS,OAAU,SAAS7E,EAAS,UAAU,SAAS,QAAQM,EAAY,EAAE,IAAIa,GAAU,SAAsB4D,EAAMC,EAAO,GAAG,CAAC,IAAIjB,GAAQ,MAAM,CAAC,GAAGe,GAAe,IAAI7F,EAAI,IAAIS,IAAY,UAAUuF,GAAczB,EAAc,EAAE,CAACA,GAAe,OAAU,KAAK9D,IAAY,SAASuF,GAAczB,EAAc,EAAE,CAACA,GAAe,OAAU,WAAW7D,EAAU,SAAS,WAAW,cAAcmB,GAAa,MAAM,SAAS,GAAGhB,GAAM,WAAWW,GAAS,OAAO,YAAY,UAAU5B,GAA8BmC,GAAY,CAAC,EAAEC,EAAS,EAAE,aAAa,IAAI,CAAC2C,GAAQ,QAAQ,GAAQI,GAAa,UACz5DA,GAAa,QAAQ,aAAavE,EAAa,EAAE,aAAa,IAAI,CAACmE,GAAQ,QAAQ,GAASI,GAAa,UACzGA,GAAa,QAAQ,aAAa,EAAG,EAAE,SAAS,CAACrC,GAAeC,EAAa,CAAC,CAAC,CAAC,CAAC,EAF6wBmD,EAAM,UAAU,CAAC,MAAMG,GAAkB,SAAS,CAAcjC,EAAK,MAAM,CAAC,MAAMkC,GAAY,SAAS,QAAG,CAAC,EAAelC,EAAK,IAAI,CAAC,MAAMmC,GAAY,SAAS,oBAAoB,CAAC,EAAenC,EAAK,IAAI,CAAC,MAAMoC,GAAe,SAAS,2DAA2D,CAAC,CAAC,CAAC,CAAC,CAErjC,CAAyBvG,GAAO,aAAa,CAAC,IAAI,GAAG,QAAQ,GAAG,cAAc,CAAC,UAAU,GAAK,WAAW,EAAI,EAAE,YAAY,CAAC,YAAY,GAAK,SAAS,GAAM,UAAU,GAAG,UAAU,EAAE,UAAU,CAAC,EAAE,UAAU,EAAI,EAAyBwG,GAAoBxG,GAAO,CAAC,MAAM,CAAC,KAAKyG,EAAY,MAAM,MAAM,WAAW,QAAQ,CAAC,KAAKA,EAAY,iBAAiB,CAAC,EAAE,MAAM,CAAC,KAAKA,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,IAAI,aAAa,IAAI,KAAK,IAAI,eAAe,GAAK,KAAK,CAAC,EAAE,UAAU,CAAC,KAAKA,EAAY,KAAK,MAAM,YAAY,QAAQ,CAAC,OAAO,QAAQ,MAAM,QAAQ,EAAE,YAAY,CAAC,iBAAiB,kBAAkB,eAAe,gBAAgB,EAAE,aAAa,CAAC,OAAO,QAAQ,MAAM,QAAQ,EAAE,aAAa,OAAO,wBAAwB,EAAI,EAAE,UAAU,CAAC,KAAKA,EAAY,KAAK,MAAM,QAAQ,QAAQ,CAAC,aAAa,SAAS,UAAU,EAAE,YAAY,CAAC,UAAU,CAAC,MAAM,CAAC,YAAY,eAAe,cAAc,EAAE,KAAK,CAAC,YAAY,eAAe,cAAc,EAAE,IAAI,CAAC,aAAa,eAAe,aAAa,EAAE,OAAO,CAAC,aAAa,eAAe,aAAa,CAAC,CAAC,EAAE,aAAa,SAAS,wBAAwB,EAAI,EAAE,IAAI,CAAC,KAAKA,EAAY,OAAO,MAAM,KAAK,EAAE,QAAQ,CAAC,MAAM,UAAU,KAAKA,EAAY,YAAY,UAAU,iBAAiB,aAAa,CAAC,UAAU,kBAAkB,EAAE,UAAU,CAAC,aAAa,eAAe,gBAAgB,aAAa,EAAE,YAAY,CAAC,IAAI,IAAI,IAAI,GAAG,EAAE,IAAI,CAAC,EAAE,cAAc,CAAC,KAAKA,EAAY,OAAO,MAAM,SAAS,SAAS,CAAC,UAAU,CAAC,KAAKA,EAAY,QAAQ,MAAM,QAAQ,aAAa,OAAO,cAAc,UAAU,aAAa,EAAI,EAAE,WAAW,CAAC,KAAKA,EAAY,QAAQ,MAAM,SAAS,aAAa,OAAO,cAAc,UAAU,aAAa,EAAI,CAAC,CAAC,EAAE,YAAY,CAAC,KAAKA,EAAY,OAAO,MAAM,WAAW,SAAS,CAAC,YAAY,CAAC,KAAKA,EAAY,QAAQ,MAAM,OAAO,aAAa,EAAI,EAAE,SAAS,CAAC,KAAKA,EAAY,QAAQ,MAAM,WAAW,aAAa,OAAO,cAAc,OAAO,aAAa,GAAM,OAAOxG,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAK,CAAC,EAAE,UAAU,CAAC,KAAKwG,EAAY,OAAO,MAAM,QAAQ,aAAa,GAAG,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAOxG,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,EAAE,UAAU,CAAC,KAAKwG,EAAY,OAAO,MAAM,QAAQ,aAAa,EAAE,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAOxG,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,EAAE,UAAU,CAAC,KAAKwG,EAAY,OAAO,MAAM,UAAU,aAAa,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,OAAOxG,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,CAAC,CAAC,EAAE,YAAY,CAAC,KAAKwG,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,aAAa,EAAE,KAAK,GAAG,eAAe,GAAK,YAAY,8CAA8C,CAAC,CAAC,EAA0B,IAAMT,GAAe,CAAC,QAAQ,OAAO,MAAM,OAAO,OAAO,OAAO,SAAS,OAAO,UAAU,OAAO,WAAW,SAAS,OAAO,EAAE,QAAQ,EAAE,cAAc,OAAO,WAAW,MAAM,EAAoBI,GAAkB,CAAC,QAAQ,OAAO,MAAM,OAAO,OAAO,OAAO,aAAa,SAAS,WAAW,SAAS,cAAc,SAAS,MAAM,OAAO,WAAW,0BAA0B,SAAS,GAAG,SAAS,SAAS,QAAQ,qBAAqB,EAAQC,GAAY,CAAC,SAAS,GAAG,aAAa,EAAE,EAAQC,GAAY,CAAC,OAAO,EAAE,aAAa,GAAG,WAAW,IAAI,UAAU,QAAQ,EAAQC,GAAe,CAAC,OAAO,EAAE,QAAQ,GAAG,SAAS,IAAI,WAAW,IAAI,UAAU,QAAQ,EAAgDV,GAAM,CAACa,EAAIC,EAAIC,IAAM,KAAK,IAAI,KAAK,IAAIF,EAAIC,CAAG,EAAEC,CAAG,EAAQT,GAAcU,GAAO,OAAOA,GAAQ,UAAU,CAAC,MAAMA,CAAK,EC7BthG,IAAMC,GAAsB,CAAC,KAAKC,GAAQ,eAAeA,CAAM,MAAM,MAAMA,GAAQ,cAAcA,CAAM,MAAM,IAAIA,GAAQ,eAAeA,CAAM,MAAM,OAAOA,GAAQ,cAAcA,CAAM,KAAK,EAAQC,GAA8B,OAAO,UAAY,KAAa,OAAO,UAAU,UAAU,oBAAqB,WASzpB,SAARC,GAAwBC,EAAM,CAAa,GAAG,CAAC,MAAAC,EAAM,IAAAC,EAAI,QAAAC,EAAQ,eAAAC,EAAe,WAAAC,EAAW,aAAAC,EAAa,cAAAC,EAAc,YAAAC,EAAY,MAAAC,EAAM,YAAAC,EAAY,UAAAC,EAAU,UAAAC,EAAU,cAAAC,GAAc,YAAAC,GAAY,MAAAC,EAAK,EAAEf,EAAW,CAAC,YAAAgB,EAAY,SAAAC,EAAS,UAAAC,EAAU,UAAAC,EAAU,UAAAC,CAAS,EAAEN,GAAiB,CAAC,UAAAO,EAAU,WAAAC,CAAU,EAAET,GAAoBU,GAAanB,EAAe,GAAGC,CAAU,MAAMC,CAAY,MAAMC,CAAa,MAAMC,CAAW,KAAK,GAAGL,CAAO,KAAwBqB,GAASC,GAAa,QAAQ,IAAIA,GAAa,OAAaC,GAAYC,GAAS,MAAM1B,CAAK,EAAQ2B,EAAYF,GAAY,EAAKf,IAAY,KAAMA,EAAU,QAAQ,IAAMkB,GAAalB,IAAY,QAAQA,IAAY,QAAcd,EAAOiC,GAAe,CAAC,EAAQC,GAAYnC,GAAsBe,CAAS,EAAQqB,GAAUC,GAAapC,EAAOkC,EAAW,EAA6BG,GAAUC,EAAO,IAAI,EAAQC,GAAYC,EAAQ,IAAW,CAAeC,GAAU,EAAgBA,GAAU,CAAC,EAAI,CAAC,CAAC,EAAO,CAACC,GAAKC,CAAO,EAAEC,GAAS,CAAC,OAAO,KAAK,SAAS,IAAI,CAAC,EAAmBC,EAAe,CAAC,EAAMC,GAAc,CAAC,EAA4BC,GAAY,EAAMC,GAAQ,EAAKrB,KACvnCoB,GAAYlB,GAAY,KAAK,MAAM,GAAGA,EAAW,EAAE,EAAEmB,GAAQ,GAAM,CAACrB,IAAUI,GAAaW,GAAK,SAAQK,GAAY,KAAK,MAAML,GAAK,OAAOA,GAAK,SAAS,CAAC,EAAE,EAAEM,GAAQ,GAAkC,IAAMC,GAAQC,GAAY,IAAI,CAAC,GAAGnB,GAAaM,GAAU,QAAQ,CAAC,IAAMc,EAAanB,GAAaK,GAAU,QAAQ,YAAYA,GAAU,QAAQ,aAAmBe,EAAMb,GAAY,CAAC,EAAE,QAAQP,GAAaO,GAAY,CAAC,EAAE,QAAQ,WAAWA,GAAY,CAAC,EAAE,QAAQ,UAAU,EAAkMc,GAAtLd,GAAY,CAAC,EAAE,QAAQP,GAAaO,GAAY,CAAC,EAAE,QAAQ,WAAWA,GAAY,CAAC,EAAE,QAAQ,YAAYA,GAAY,CAAC,EAAE,QAAQ,UAAUA,GAAY,CAAC,EAAE,QAAQ,aAAa,GAA2Ba,EAAM/C,EAAIsC,EAAQ,CAAC,OAAOQ,EAAa,SAASE,CAAc,CAAC,CAAE,CAAC,EAAE,CAAC,CAAC,EAAQC,GAAe3B,GAAS,CAAC,kBAAkB,MAAM,EAAE,CAAC,EAAyC,GAAGI,EAAY,CACz2B,GAAG,CAACJ,GAAS,CAGG,IAAI4B,EAAcjB,EAAO,EAAI,EAAEkB,GAAU,KAAKP,GAAQ,EAASQ,GAAOpB,GAAU,QAAQ,CAAC,CAAC,YAAAqB,CAAW,IAAI,CAAI,CAACH,EAAc,UAAUG,EAAY,OAAOA,EAAY,SAAST,GAAQ,EAAGM,EAAc,QAAQ,EAAM,CAAC,GAAI,CAAC,CAAC,CAAE,CAACV,EAAef,GAAS,IAAI1B,EAAM,CAACuD,EAAMC,IAAQ,CAAC,IAAIC,EAAIC,EAAKC,GAAKC,EAAK,IAAIC,GAAQL,IAAQ,IAAGK,GAAK1B,GAAY,CAAC,GAAMqB,IAAQxD,EAAM,OAAO,IAAG6D,GAAK1B,GAAY,CAAC,GAAG,IAAMG,GAAK,CAAC,MAAMlB,GAAWqC,EAAIF,EAAM,SAAS,MAAME,IAAM,OAAO,OAAOA,EAAI,MAAM,OAAO,OAAOpC,GAAYqC,EAAKH,EAAM,SAAS,MAAMG,IAAO,OAAO,OAAOA,EAAK,OAAO,MAAM,EAAE,OAAqBI,EAAKC,EAAY,CAAC,QAAQ,KAAK,SAAuBD,EAAK,KAAK,CAAC,IAAID,GAAK,MAAMvB,GAAK,SAAuB0B,GAAaT,EAAM,CAAC,MAAM,CAAC,IAAII,GAAKJ,EAAM,SAAS,MAAMI,KAAO,OAAO,OAAOA,GAAK,MAAM,GAAGrB,GAAK,WAAW,EAAE,GAAGY,EAAc,EAAE,SAASK,EAAM,MAAM,SAASA,EAAM,MAAM,SAAS,aAAaC,EAAM,MAAS,GAAGI,EAAKL,EAAM,SAAS,MAAMK,IAAO,OAAO,OAAOA,EAAK,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,CAAE,CAAC,GAAG,CAACrC,GAAU,QAAQ0C,EAAE,EAAEA,EAAEtB,GAAYsB,IAAKvB,GAAc,CAAC,GAAGA,GAAc,GAAGhB,GAAS,IAAI1B,EAAM,CAACuD,EAAMW,IAAa,CAAC,IAAIT,EAAIC,GAAKC,EAAKC,GAAKC,GAAKM,GAAK,IAAM7B,GAAK,CAAC,MAAMlB,GAAWqC,EAAIF,EAAM,SAAS,MAAME,IAAM,OAAO,OAAOA,EAAI,MAAM,OAAO,OAAOpC,GAAYqC,GAAKH,EAAM,SAAS,MAAMG,KAAO,OAAO,OAAOA,GAAK,OAAO,MAAM,EAAE,OAAqBI,EAAKC,EAAY,CAAC,QAAQ,KAAK,SAAuBD,EAAK,KAAK,CAAC,MAAMxB,GAAK,cAAc,GAAK,SAAuB0B,GAAaT,EAAM,CAAC,IAAIU,EAAE,IAAIC,EAAW,MAAM,CAAC,IAAIP,EAAKJ,EAAM,SAAS,MAAMI,IAAO,OAAO,OAAOA,EAAK,MAAM,MAAMvC,GAAWwC,GAAKL,EAAM,SAAS,MAAMK,KAAO,OAAO,OAAOA,GAAK,MAAM,OAAO,OAAOvC,GAAYwC,GAAKN,EAAM,SAAS,MAAMM,KAAO,OAAO,OAAOA,GAAK,OAAO,OAAO,WAAW,EAAE,GAAGX,EAAc,EAAE,SAASK,EAAM,MAAM,SAASA,EAAM,MAAM,SAAS,SAASU,EAAE,MAAS,GAAGE,GAAKZ,EAAM,SAAS,MAAMY,KAAO,OAAO,OAAOA,GAAK,QAAQ,CAAC,EAAEF,EAAE,KAAKC,CAAU,CAAC,EAAED,EAAE,KAAKC,CAAU,CAAE,CAAC,CAAE,EAAI,IAAME,GAAe9B,GAAK,SAASA,GAAK,SAAS,KAAK,MAAMA,GAAK,OAAOA,GAAK,QAAQ,EAAQ+B,GAAYnC,EAAO,IAAI,EAAQoC,GAASpC,EAAO,IAAI,EAAQqC,GAAKrC,EAAO,CAAC,EAAQsC,GAAQtC,EAAO,EAAK,EAAQuC,GAAgBC,GAAiB,EAAQC,GAAQzC,EAAO,IAAI,EAAQ0C,GAAa1C,EAAO,IAAI,EAE7rE,GAAG,CAACX,GAAS,CAAC,IAAMsD,EAASC,GAAU7C,EAAS,EAEzCpC,GAA+BuD,GAAU,IAAI,CAAC,GAAG,EAAAqB,IAAiB,CAACL,IAAgB,CAAC5D,GAAe,OAAAoE,GAAa,QAAQD,GAAQ,QAAQ,QAAQ,CAAC,UAAU,CAAC7C,GAAY,CAAC,EAAEA,GAAYsC,EAAc,CAAE,CAAC,EAAE,CAAC,SAAS,KAAK,IAAIA,EAAc,EAAE5D,EAAM,IAAI,WAAW,IAAS,OAAO,QAAQ,CAAC,EAAQ,IAAIoE,GAAa,QAAQ,OAAO,CAAE,EAAE,CAACnE,EAAY2D,GAAe5D,CAAK,CAAC,EAGxWuE,GAAkBC,GAAG,CAAC,GAAG,CAACZ,IAAgBK,IAAiB5E,GAA+B,OAKnFwE,GAAY,UAAU,OAAMA,GAAY,QAAQW,GAAGA,EAAEA,EAAEX,GAAY,QAAqE,IAAIY,GAAjDX,GAAS,UAAU,KAAK,EAAEU,EAAEV,GAAS,UAA6B9D,EAAM,KAAQgE,GAAQ,UAASS,GAAOxE,GAAa8D,GAAK,SAASU,EAAMV,GAAK,QAAQW,GAAK,EAAEd,GAAeG,GAAK,OAAO,EAAED,GAAS,QAAQU,EAAMH,GAAgBjF,EAAO,IAAI2E,GAAK,OAAO,CAAE,CAAC,CAAG,CAAa,IAAMY,GAAcvD,GAAa,WAAW,YAAkBwD,GAAenE,EAAU,EAAQoE,GAAa,IAAIpE,EAAU,EAAQqE,GAAeC,GAAMrE,EAAU,EAAEkE,EAAc,EAAQI,GAAa,IAAItE,EAAgBuE,GAAS,mBAAmBN,EAAa,mBAAmBhE,CAAS,KAAKmE,EAAc,uBAAuBF,EAAc,uBAAuBC,EAAY,oBAAoBlE,CAAS,KAAKqE,EAAY,KAAuB,OAAI7D,EAAuWmC,EAAK,UAAU,CAAC,MAAM,CAAC,GAAG4B,GAAe,QAAQ9C,GAAQ,gBAAgB7B,EAAY0E,GAAS,OAAU,aAAa1E,EAAY0E,GAAS,OAAU,UAAU1E,EAAY0E,GAAS,OAAU,SAASzE,EAAS,UAAU,SAAS,QAAQM,EAAY,EAAE,IAAIW,GAAU,SAAuB0D,EAAMC,EAAO,GAAG,CAAC,IAAIjB,GAAQ,MAAM,CAAC,GAAGe,GAAe,IAAIzF,EAAI,IAAIS,IAAY,UAAUmF,GAAczB,EAAc,EAAE,CAACA,GAAe,OAAU,KAAK1D,IAAY,SAASmF,GAAczB,EAAc,EAAE,CAACA,GAAe,OAAU,WAAWzD,EAAU,SAAS,WAAW,cAAciB,GAAa,MAAM,SAAS,GAAGd,GAAM,UAAUjB,GAA8B,OAAUkC,GAAU,WAAW,WAAW,EAAE,aAAa,IAAI,CAACyC,GAAQ,QAAQ,GAAQI,GAAa,SAASA,GAAa,QAAQ,mBAAmBnE,CAAW,CAAG,EAAE,aAAa,IAAI,CAAC+D,GAAQ,QAAQ,GAASI,GAAa,SAASA,GAAa,QAAQ,mBAAmB,CAAC,CAAG,EAAE,SAAS,CAACnC,EAAeC,EAAa,CAAC,CAAC,CAAC,CAAC,EAArwCiD,EAAM,UAAU,CAAC,MAAMG,GAAkB,SAAS,CAAehC,EAAK,MAAM,CAAC,MAAMiC,GAAY,SAAS,QAAG,CAAC,EAAgBjC,EAAK,IAAI,CAAC,MAAMkC,GAAY,SAAS,oBAAoB,CAAC,EAAgBlC,EAAK,IAAI,CAAC,MAAMmC,GAAe,SAAS,2DAA2D,CAAC,CAAC,CAAC,CAAC,CAA09B,CAA2BnG,GAAO,aAAa,CAAC,IAAI,GAAG,QAAQ,GAAG,cAAc,CAAC,UAAU,GAAK,WAAW,EAAI,EAAE,YAAY,CAAC,YAAY,GAAK,SAAS,GAAM,UAAU,GAAG,UAAU,EAAE,UAAU,CAAC,EAAE,UAAU,EAAI,EAA0BoG,GAAoBpG,GAAO,CAAC,MAAM,CAAC,KAAKqG,EAAY,MAAM,MAAM,WAAW,QAAQ,CAAC,KAAKA,EAAY,iBAAiB,CAAC,EAAE,MAAM,CAAC,KAAKA,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,IAAI,aAAa,IAAI,KAAK,IAAI,eAAe,GAAK,KAAK,CAAC,EAAE,UAAU,CAAC,KAAKA,EAAY,KAAK,MAAM,YAAY,QAAQ,CAAC,OAAO,QAAQ,MAAM,QAAQ,EAAE,YAAY,CAAC,iBAAiB,kBAAkB,eAAe,gBAAiB,EAAE,aAAa,CAAC,OAAO,QAAQ,MAAM,QAAQ,EAAE,aAAa,OAAO,wBAAwB,EAAI,EAAE,UAAU,CAAC,KAAKA,EAAY,KAAK,MAAM,QAAQ,QAAQ,CAAC,aAAa,SAAS,UAAU,EAAE,YAAY,CAAC,UAAU,CAAC,MAAM,CAAC,YAAY,eAAe,cAAc,EAAE,KAAK,CAAC,YAAY,eAAe,cAAc,EAAE,IAAI,CAAC,aAAa,eAAe,aAAa,EAAE,OAAO,CAAC,aAAa,eAAe,aAAa,CAAC,CAAC,EAAE,aAAa,SAAS,wBAAwB,EAAI,EAAE,IAAI,CAAC,KAAKA,EAAY,OAAO,MAAM,KAAK,EAAE,QAAQ,CAAC,MAAM,UAAU,KAAKA,EAAY,YAAY,UAAU,iBAAiB,aAAa,CAAC,UAAU,kBAAkB,EAAE,UAAU,CAAC,aAAa,eAAe,gBAAgB,aAAc,EAAE,YAAY,CAAC,IAAI,IAAI,IAAI,GAAG,EAAE,IAAI,CAAC,EAAE,cAAc,CAAC,KAAKA,EAAY,OAAO,MAAM,SAAS,SAAS,CAAC,UAAU,CAAC,KAAKA,EAAY,QAAQ,MAAM,QAAQ,aAAa,OAAO,cAAc,UAAU,aAAa,EAAI,EAAE,WAAW,CAAC,KAAKA,EAAY,QAAQ,MAAM,SAAS,aAAa,OAAO,cAAc,UAAU,aAAa,EAAI,CAAC,CAAC,EAAE,YAAY,CAAC,KAAKA,EAAY,OAAO,MAAM,WAAW,SAAS,CAAC,YAAY,CAAC,KAAKA,EAAY,QAAQ,MAAM,OAAO,aAAa,EAAI,EAAE,SAAS,CAAC,KAAKA,EAAY,QAAQ,MAAM,WAAW,aAAa,OAAO,cAAc,OAAO,aAAa,GAAM,OAAOpG,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAK,CAAC,EAAE,UAAU,CAAC,KAAKoG,EAAY,OAAO,MAAM,QAAQ,aAAa,GAAG,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAOpG,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,EAAE,UAAU,CAAC,KAAKoG,EAAY,OAAO,MAAM,QAAQ,aAAa,EAAE,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAOpG,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,EAAE,UAAU,CAAC,KAAKoG,EAAY,OAAO,MAAM,UAAU,aAAa,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,OAAOpG,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,CAAC,CAAC,EAAE,YAAY,CAAC,KAAKoG,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,aAAa,EAAE,KAAK,GAAG,eAAe,GAAK,YAAY,8CAA8C,CAAC,CAAC,EAA2B,IAAMT,GAAe,CAAC,QAAQ,OAAO,MAAM,OAAO,OAAO,OAAO,SAAS,OAAO,UAAU,OAAO,WAAW,SAAS,OAAO,EAAE,QAAQ,EAAE,cAAc,OAAO,WAAW,MAAM,EAAqBI,GAAkB,CAAC,QAAQ,OAAO,MAAM,OAAO,OAAO,OAAO,aAAa,SAAS,WAAW,SAAS,cAAc,SAAS,MAAM,OAAO,WAAW,0BAA0B,SAAS,GAAG,SAAS,SAAS,QAAQ,qBAAqB,EAAQC,GAAY,CAAC,SAAS,GAAG,aAAa,EAAE,EAAQC,GAAY,CAAC,OAAO,EAAE,aAAa,GAAG,WAAW,IAAI,UAAU,QAAQ,EAAQC,GAAe,CAAC,OAAO,EAAE,QAAQ,GAAG,SAAS,IAAI,WAAW,IAAI,UAAU,QAAQ,EAAiDV,GAAM,CAACa,EAAIC,EAAIC,IAAM,KAAK,IAAI,KAAK,IAAIF,EAAIC,CAAG,EAAEC,CAAG,EAAQT,GAAcU,GAAO,OAAOA,GAAQ,UAAU,CAAC,MAAMA,CAAK,ECzBjoK,IAAMC,GAAgB,CAAC,UAAU,CAAC,MAAM,EAAI,CAAC,EAAQC,GAAW,CAAC,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,kBAAkB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAkBC,GAAW,OAAOA,GAAQ,UAAUA,IAAQ,MAAM,OAAOA,EAAM,KAAM,SAAiBA,EAAc,OAAOA,GAAQ,SAAS,CAAC,IAAIA,CAAK,EAAE,OAAkBC,GAAmB,CAACC,EAAEC,IAAI,yBAAyBA,CAAC,GAASC,GAAW,CAAC,CAAC,MAAAJ,EAAM,SAAAK,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWT,GAAmCM,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,MAAM,YAAY,KAAK,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,OAAAC,EAAO,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAKC,EAAuCC,EAAM,MAAM,CAAC,GAAGH,EAAM,WAAWC,EAAKH,GAAsCE,EAAM,aAAa,MAAMC,IAAO,OAAOA,EAAK,oBAAoB,UAAUJ,GAAmCG,EAAM,UAAU,SAASG,GAAOD,EAAuCT,GAAwBO,EAAM,OAAO,KAAK,MAAME,IAAyC,OAAOA,EAAuCF,EAAM,WAAW,MAAMG,IAAQ,OAAOA,EAAM,WAAW,CAAE,EAAQC,GAAuB,CAACJ,EAAM5B,IAAe4B,EAAM,iBAAwB5B,EAAS,KAAK,GAAG,EAAE4B,EAAM,iBAAwB5B,EAAS,KAAK,GAAG,EAAUiC,GAA6BC,EAAW,SAASN,EAAMO,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAvC,EAAQ,UAAAwC,EAAU,UAAAC,EAAU,mBAAAC,EAAmB,GAAGC,CAAS,EAAEvB,GAASM,CAAK,EAAO,CAAC,YAAAkB,EAAY,WAAAC,GAAW,oBAAAC,GAAoB,gBAAAC,GAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAArD,CAAQ,EAAEsD,EAAgB,CAAC,WAAA3D,GAAW,eAAe,YAAY,gBAAAD,GAAgB,QAAAQ,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ0D,EAAiBvB,GAAuBJ,EAAM5B,CAAQ,EAAQwD,EAAWC,EAAO,IAAI,EAAQC,GAAY,IAAQZ,IAAc,YAA6Ca,GAAsBC,EAAM,EAAQC,GAAsB,CAAC,EAAQC,EAAkBC,EAAqB,EAAE,OAAoB9C,EAAK+C,EAAY,CAAC,GAAGvB,GAA4CkB,GAAgB,SAAsB1C,EAAKC,GAAS,CAAC,QAAQlB,EAAS,QAAQ,GAAM,SAAsBiB,EAAKR,GAAW,CAAC,MAAMN,GAAY,SAAsBc,EAAKE,EAAO,IAAI,CAAC,GAAG0B,EAAU,GAAGI,GAAgB,UAAUgB,EAAGrE,GAAkB,GAAGiE,GAAsB,iBAAiBrB,EAAUO,EAAU,EAAE,mBAAmB,QAAQ,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIpB,GAA6BqB,EAAK,MAAM,CAAC,GAAGjB,CAAK,EAAE,GAAGzC,GAAqB,CAAC,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,UAAU,CAAC,mBAAmB,MAAM,CAAC,EAAEgD,EAAYI,CAAc,EAAE,SAAsBjC,EAAKiD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQC,GAAwFL,GAAkB,GAAI,GAAG,CAAC,EAAE,OAAoEA,GAAkB,QAAS,IAAI,EAAE,GAAG1D,GAAkBsC,CAAS,CAAC,EAAE,UAAU,gBAAgB,cAAc,GAAK,iBAAiBa,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,wEAAwE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,mBAAmB,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAS,CAAC,UAAU,CAAC,gBAAgBZ,CAAS,CAAC,EAAE,GAAG7C,GAAqB,CAAC,kBAAkB,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQqE,GAAwFL,GAAkB,GAAI,GAAG,GAAG,EAAE,OAAoEA,GAAkB,QAAS,IAAI,EAAE,GAAG1D,GAAkBsC,CAAS,CAAC,CAAC,EAAE,UAAU,CAAC,WAAW,MAAS,CAAC,EAAEI,EAAYI,CAAc,EAAE,SAASQ,GAAY,GAAgBzC,EAAKmD,EAAS,CAAC,sBAAsB,GAAK,SAAsBnD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,wEAAwE,EAAE,SAAS,KAAK,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,cAAc,EAAE,iBAAiBoC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,gDAAgD,2BAA2B,mBAAmB,gCAAgC,YAAY,2CAA2CX,CAAkB,EAAE,kBAAkBtC,GAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQ+D,GAAI,CAAC,kFAAkF,gFAAgF,sHAAsH,4MAA4M,kJAAkJ,mEAAmE,uIAAuI,+bAA+b,EASn4NC,GAAgBC,EAAQtC,GAAUoC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,SAASA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,EAAE,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,QAAQ,MAAM,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,MAAM,QAAQ,KAAKA,EAAY,eAAe,EAAE,UAAU,CAAC,aAAa,oBAAoB,MAAM,UAAU,KAAKA,EAAY,KAAK,CAAC,CAAC,EAAEC,EAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,IAAI,0GAA0G,OAAO,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECT7d,IAAMM,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,iBAAiB,EAAkO,IAAMC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAmB,CAACC,EAAEC,IAAI,yBAAyBA,CAAC,GAASC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,CAAK,GAAUC,GAAuB,CAACD,EAAME,IAAeF,EAAM,iBAAwBE,EAAS,KAAK,GAAG,EAAEF,EAAM,iBAAwBE,EAAS,KAAK,GAAG,EAAUC,GAA6BC,EAAW,SAASJ,EAAMK,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,GAAGC,CAAS,EAAEjB,GAASI,CAAK,EAAO,CAAC,YAAAc,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,GAAe,UAAAC,GAAU,gBAAAC,GAAgB,WAAAC,EAAW,SAAAnB,CAAQ,EAAEoB,EAAgB,CAAC,eAAe,YAAY,QAAAV,EAAQ,kBAAAW,EAAiB,CAAC,EAAQC,EAAiBvB,GAAuBD,EAAME,CAAQ,EAAQuB,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,EAAM,EAAQC,EAAsB,CAAC,EAAQC,EAAkBC,EAAqB,EAAE,OAAoBvC,EAAKwC,EAAY,CAAC,GAAGrB,GAA4CgB,EAAgB,SAAsBnC,EAAKC,GAAS,CAAC,QAAQS,EAAS,QAAQ,GAAM,SAAsBV,EAAKT,GAAW,CAAC,MAAMJ,GAAY,SAAsBa,EAAKE,EAAO,IAAI,CAAC,GAAGmB,EAAU,GAAGI,EAAgB,UAAUgB,EAAGC,GAAkB,GAAGL,EAAsB,gBAAgBnB,EAAUK,CAAU,EAAE,mBAAmB,YAAY,iBAAiBS,EAAiB,SAAS,YAAY,IAAInB,GAA6BoB,EAAK,MAAM,CAAC,GAAGhB,CAAK,EAAE,SAAsBjB,EAAK2C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQC,GAAwFN,GAAkB,GAAI,KAAkEA,GAAkB,QAAS,IAAI,kBAAkB,KAAK,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,OAAO,IAAI,yFAAyF,OAAO,uKAAuK,EAAE,UAAU,gBAAgB,mBAAmB,aAAa,iBAAiBN,EAAiB,SAAS,YAAY,kBAAkB5C,EAAkB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQyD,GAAI,CAAC,kFAAkF,gFAAgF,oGAAoG,iNAAiN,EAQlpHC,GAAgBC,EAAQpC,GAAUkC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,SAASA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,GAAG,EAAEG,EAASH,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECRI,IAAMI,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,iBAAiB,EAAkO,IAAMC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAmB,CAACC,EAAEC,IAAI,yBAAyBA,CAAC,GAASC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,CAAK,GAAUC,GAAuB,CAACD,EAAME,IAAeF,EAAM,iBAAwBE,EAAS,KAAK,GAAG,EAAEF,EAAM,iBAAwBE,EAAS,KAAK,GAAG,EAAUC,GAA6BC,EAAW,SAASJ,EAAMK,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,GAAGC,CAAS,EAAEjB,GAASI,CAAK,EAAO,CAAC,YAAAc,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,GAAe,UAAAC,GAAU,gBAAAC,GAAgB,WAAAC,EAAW,SAAAnB,CAAQ,EAAEoB,EAAgB,CAAC,eAAe,YAAY,QAAAV,EAAQ,kBAAAW,EAAiB,CAAC,EAAQC,EAAiBvB,GAAuBD,EAAME,CAAQ,EAAQuB,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,EAAM,EAAQC,EAAsB,CAAC,EAAQC,EAAkBC,EAAqB,EAAE,OAAoBvC,EAAKwC,EAAY,CAAC,GAAGrB,GAA4CgB,EAAgB,SAAsBnC,EAAKC,GAAS,CAAC,QAAQS,EAAS,QAAQ,GAAM,SAAsBV,EAAKT,GAAW,CAAC,MAAMJ,GAAY,SAAsBsD,EAAMvC,EAAO,IAAI,CAAC,GAAGmB,EAAU,GAAGI,EAAgB,UAAUiB,EAAGC,GAAkB,GAAGN,EAAsB,gBAAgBnB,EAAUK,CAAU,EAAE,mBAAmB,YAAY,iBAAiBS,EAAiB,SAAS,YAAY,IAAInB,GAA6BoB,EAAK,MAAM,CAAC,GAAGhB,CAAK,EAAE,SAAS,CAAcjB,EAAK4C,GAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,OAAO,WAAW,iBAAiBZ,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,wPAAwP,aAAa,WAAW,mBAAmB,EAAI,CAAC,EAAehC,EAAK6C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,IAAI,QAAQC,GAAwFR,GAAkB,GAAI,KAAkEA,GAAkB,QAAS,IAAI,kBAAkB,GAAG,EAAE,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,OAAO,IAAI,uFAAuF,OAAO,oKAAoK,EAAE,UAAU,gBAAgB,mBAAmB,kBAAkB,iBAAiBN,EAAiB,SAAS,YAAY,kBAAkB5C,EAAkB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQ2D,GAAI,CAAC,kFAAkF,gFAAgF,oGAAoG,0LAA0L,iNAAiN,EAQn1IC,GAAgBC,EAAQtC,GAAUoC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,SAASA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,GAAG,EAAEG,EAASH,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECRd,IAAMI,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,EAAkO,IAAMC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAmB,CAACC,EAAEC,IAAI,oBAAoBA,CAAC,GAASC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,CAAK,GAAUC,GAAuB,CAACD,EAAME,IAAeF,EAAM,iBAAwBE,EAAS,KAAK,GAAG,EAAEF,EAAM,iBAAwBE,EAAS,KAAK,GAAG,EAAUC,GAA6BC,EAAW,SAASJ,EAAMK,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,GAAGC,CAAS,EAAEjB,GAASI,CAAK,EAAO,CAAC,YAAAc,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,GAAe,UAAAC,GAAU,gBAAAC,GAAgB,WAAAC,EAAW,SAAAnB,CAAQ,EAAEoB,EAAgB,CAAC,eAAe,YAAY,QAAAV,EAAQ,kBAAAW,EAAiB,CAAC,EAAQC,EAAiBvB,GAAuBD,EAAME,CAAQ,EAAQuB,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,EAAM,EAAQC,EAAsB,CAAC,EAAQC,EAAkBC,EAAqB,EAAE,OAAoBvC,EAAKwC,EAAY,CAAC,GAAGrB,GAA4CgB,EAAgB,SAAsBnC,EAAKC,GAAS,CAAC,QAAQS,EAAS,QAAQ,GAAM,SAAsBV,EAAKT,GAAW,CAAC,MAAMJ,GAAY,SAAsBa,EAAKE,EAAO,IAAI,CAAC,GAAGmB,EAAU,GAAGI,EAAgB,UAAUgB,EAAGC,GAAkB,GAAGL,EAAsB,iBAAiBnB,EAAUK,CAAU,EAAE,mBAAmB,YAAY,iBAAiBS,EAAiB,SAAS,YAAY,IAAInB,GAA6BoB,EAAK,MAAM,CAAC,GAAGhB,CAAK,EAAE,SAAsBjB,EAAK2C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQC,GAAwFN,GAAkB,GAAI,GAAG,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,SAAsEA,GAAkB,QAAS,IAAK,GAAE,aAAa,IAAI,uFAAuF,OAAO,mKAAmK,EAAE,UAAU,gBAAgB,mBAAmB,0BAA0B,iBAAiBN,EAAiB,SAAS,YAAY,kBAAkB5C,EAAkB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQyD,GAAI,CAAC,kFAAkF,kFAAkF,qGAAqG,kNAAkN,EAQppHC,GAAgBC,EAAQpC,GAAUkC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,SAASA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,GAAG,EAAEG,EAASH,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECRd,IAAMI,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,iBAAiB,EAAkO,IAAMC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAmB,CAACC,EAAEC,IAAI,oBAAoBA,CAAC,GAASC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,CAAK,GAAUC,GAAuB,CAACD,EAAME,IAAeF,EAAM,iBAAwBE,EAAS,KAAK,GAAG,EAAEF,EAAM,iBAAwBE,EAAS,KAAK,GAAG,EAAUC,GAA6BC,EAAW,SAASJ,EAAMK,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,GAAGC,CAAS,EAAEjB,GAASI,CAAK,EAAO,CAAC,YAAAc,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,GAAe,UAAAC,GAAU,gBAAAC,GAAgB,WAAAC,EAAW,SAAAnB,CAAQ,EAAEoB,EAAgB,CAAC,eAAe,YAAY,QAAAV,EAAQ,kBAAAW,EAAiB,CAAC,EAAQC,EAAiBvB,GAAuBD,EAAME,CAAQ,EAAQuB,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,EAAM,EAAQC,EAAsB,CAAC,EAAQC,EAAkBC,EAAqB,EAAE,OAAoBvC,EAAKwC,EAAY,CAAC,GAAGrB,GAA4CgB,EAAgB,SAAsBnC,EAAKC,GAAS,CAAC,QAAQS,EAAS,QAAQ,GAAM,SAAsBV,EAAKT,GAAW,CAAC,MAAMJ,GAAY,SAAsBa,EAAKE,EAAO,IAAI,CAAC,GAAGmB,EAAU,GAAGI,EAAgB,UAAUgB,EAAGC,GAAkB,GAAGL,EAAsB,gBAAgBnB,EAAUK,CAAU,EAAE,mBAAmB,YAAY,iBAAiBS,EAAiB,SAAS,YAAY,IAAInB,GAA6BoB,EAAK,MAAM,CAAC,GAAGhB,CAAK,EAAE,SAAsBjB,EAAK2C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQC,GAAwFN,GAAkB,GAAI,GAAG,GAAG,EAAE,YAAY,IAAI,WAAW,IAAI,OAAoEA,GAAkB,QAAS,IAAK,KAAI,IAAI,uFAAuF,OAAO,mKAAmK,EAAE,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiBN,EAAiB,SAAS,YAAY,kBAAkB5C,EAAkB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQyD,GAAI,CAAC,kFAAkF,kFAAkF,oGAAoG,oMAAoM,EAQjmHC,GAAgBC,EAAQpC,GAAUkC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,SAASA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,GAAG,EAAEG,EAASH,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECRd,IAAMI,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,EAAkO,IAAMC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAmB,CAACC,EAAEC,IAAI,yBAAyBA,CAAC,GAASC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,CAAK,GAAUC,GAAuB,CAACD,EAAME,IAAeF,EAAM,iBAAwBE,EAAS,KAAK,GAAG,EAAEF,EAAM,iBAAwBE,EAAS,KAAK,GAAG,EAAUC,GAA6BC,EAAW,SAASJ,EAAMK,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,GAAGC,CAAS,EAAEjB,GAASI,CAAK,EAAO,CAAC,YAAAc,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,GAAe,UAAAC,GAAU,gBAAAC,GAAgB,WAAAC,EAAW,SAAAnB,CAAQ,EAAEoB,EAAgB,CAAC,eAAe,YAAY,QAAAV,EAAQ,kBAAAW,EAAiB,CAAC,EAAQC,EAAiBvB,GAAuBD,EAAME,CAAQ,EAAQuB,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,EAAM,EAAQC,EAAsB,CAAC,EAAQC,EAAkBC,EAAqB,EAAE,OAAoBvC,EAAKwC,EAAY,CAAC,GAAGrB,GAA4CgB,EAAgB,SAAsBnC,EAAKC,GAAS,CAAC,QAAQS,EAAS,QAAQ,GAAM,SAAsBV,EAAKT,GAAW,CAAC,MAAMJ,GAAY,SAAsBa,EAAKE,EAAO,IAAI,CAAC,GAAGmB,EAAU,GAAGI,EAAgB,UAAUgB,EAAGC,GAAkB,GAAGL,EAAsB,iBAAiBnB,EAAUK,CAAU,EAAE,mBAAmB,YAAY,iBAAiBS,EAAiB,SAAS,YAAY,IAAInB,GAA6BoB,EAAK,MAAM,CAAC,GAAGhB,CAAK,EAAE,SAAsBjB,EAAK2C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQC,GAAwFN,GAAkB,GAAI,KAAkEA,GAAkB,QAAS,IAAI,kBAAkB,KAAK,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,OAAO,IAAI,uFAAuF,OAAO,mKAAmK,EAAE,UAAU,iBAAiB,mBAAmB,kEAAkE,iBAAiBN,EAAiB,SAAS,YAAY,kBAAkB5C,EAAkB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQyD,GAAI,CAAC,kFAAkF,kFAAkF,qGAAqG,kNAAkN,EAQxsHC,GAAgBC,EAAQpC,GAAUkC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,QAAQA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,GAAG,EAAEG,EAASH,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECRb,IAAMI,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,iBAAiB,EAAkO,IAAMC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAmB,CAACC,EAAEC,IAAI,oBAAoBA,CAAC,GAASC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,CAAK,GAAUC,GAAuB,CAACD,EAAME,IAAeF,EAAM,iBAAwBE,EAAS,KAAK,GAAG,EAAEF,EAAM,iBAAwBE,EAAS,KAAK,GAAG,EAAUC,GAA6BC,EAAW,SAASJ,EAAMK,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,GAAGC,CAAS,EAAEjB,GAASI,CAAK,EAAO,CAAC,YAAAc,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,GAAe,UAAAC,GAAU,gBAAAC,GAAgB,WAAAC,EAAW,SAAAnB,CAAQ,EAAEoB,EAAgB,CAAC,eAAe,YAAY,QAAAV,EAAQ,kBAAAW,EAAiB,CAAC,EAAQC,EAAiBvB,GAAuBD,EAAME,CAAQ,EAAQuB,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,EAAM,EAAQC,EAAsB,CAAC,EAAQC,EAAkBC,EAAqB,EAAE,OAAoBvC,EAAKwC,EAAY,CAAC,GAAGrB,GAA4CgB,EAAgB,SAAsBnC,EAAKC,GAAS,CAAC,QAAQS,EAAS,QAAQ,GAAM,SAAsBV,EAAKT,GAAW,CAAC,MAAMJ,GAAY,SAAsBa,EAAKE,EAAO,IAAI,CAAC,GAAGmB,EAAU,GAAGI,EAAgB,UAAUgB,EAAGC,GAAkB,GAAGL,EAAsB,gBAAgBnB,EAAUK,CAAU,EAAE,mBAAmB,YAAY,iBAAiBS,EAAiB,SAAS,YAAY,IAAInB,GAA6BoB,EAAK,MAAM,CAAC,GAAGhB,CAAK,EAAE,SAAsBjB,EAAK2C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,IAAI,QAAQC,GAAwFN,GAAkB,GAAI,GAAG,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,SAAsEA,GAAkB,QAAS,IAAK,GAAE,aAAa,IAAI,yFAAyF,OAAO,wKAAwK,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,iBAAiBN,EAAiB,SAAS,YAAY,kBAAkB5C,EAAkB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQyD,GAAI,CAAC,kFAAkF,gFAAgF,oGAAoG,kNAAkN,EAQzqHC,GAAgBC,EAAQpC,GAAUkC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,YAAYA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,GAAG,EAAEG,EAASH,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECRjB,IAAMI,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,EAAkO,IAAMC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAmB,CAACC,EAAEC,IAAI,yBAAyBA,CAAC,GAASC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,CAAK,GAAUC,GAAuB,CAACD,EAAME,IAAeF,EAAM,iBAAwBE,EAAS,KAAK,GAAG,EAAEF,EAAM,iBAAwBE,EAAS,KAAK,GAAG,EAAUC,GAA6BC,EAAW,SAASJ,EAAMK,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,GAAGC,CAAS,EAAEjB,GAASI,CAAK,EAAO,CAAC,YAAAc,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,GAAe,UAAAC,GAAU,gBAAAC,GAAgB,WAAAC,EAAW,SAAAnB,CAAQ,EAAEoB,EAAgB,CAAC,eAAe,YAAY,QAAAV,EAAQ,kBAAAW,EAAiB,CAAC,EAAQC,EAAiBvB,GAAuBD,EAAME,CAAQ,EAAQuB,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,EAAM,EAAQC,EAAsB,CAAC,EAAQC,EAAkBC,EAAqB,EAAE,OAAoBvC,EAAKwC,EAAY,CAAC,GAAGrB,GAA4CgB,EAAgB,SAAsBnC,EAAKC,GAAS,CAAC,QAAQS,EAAS,QAAQ,GAAM,SAAsBV,EAAKT,GAAW,CAAC,MAAMJ,GAAY,SAAsBa,EAAKE,EAAO,IAAI,CAAC,GAAGmB,EAAU,GAAGI,EAAgB,UAAUgB,EAAGC,GAAkB,GAAGL,EAAsB,iBAAiBnB,EAAUK,CAAU,EAAE,mBAAmB,YAAY,iBAAiBS,EAAiB,SAAS,YAAY,IAAInB,GAA6BoB,EAAK,MAAM,CAAC,GAAGhB,CAAK,EAAE,SAAsBjB,EAAK2C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQC,GAAwFN,GAAkB,GAAI,KAAkEA,GAAkB,QAAS,IAAI,kBAAkB,KAAK,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,OAAO,IAAI,wFAAwF,OAAO,qKAAqK,EAAE,UAAU,gBAAgB,mBAAmB,oCAAoC,iBAAiBN,EAAiB,SAAS,YAAY,kBAAkB5C,EAAkB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQyD,GAAI,CAAC,kFAAkF,kFAAkF,qGAAqG,iNAAiN,EAQ3qHC,GAAgBC,EAAQpC,GAAUkC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,UAAUA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,GAAG,EAAEG,EAASH,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECRf,IAAMI,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,iBAAiB,EAAkO,IAAMC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAmB,CAACC,EAAEC,IAAI,yBAAyBA,CAAC,GAASC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,CAAK,GAAUC,GAAuB,CAACD,EAAME,IAAeF,EAAM,iBAAwBE,EAAS,KAAK,GAAG,EAAEF,EAAM,iBAAwBE,EAAS,KAAK,GAAG,EAAUC,GAA6BC,EAAW,SAASJ,EAAMK,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,GAAGC,CAAS,EAAEjB,GAASI,CAAK,EAAO,CAAC,YAAAc,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,GAAe,UAAAC,GAAU,gBAAAC,GAAgB,WAAAC,EAAW,SAAAnB,CAAQ,EAAEoB,EAAgB,CAAC,eAAe,YAAY,QAAAV,EAAQ,kBAAAW,EAAiB,CAAC,EAAQC,EAAiBvB,GAAuBD,EAAME,CAAQ,EAAQuB,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,EAAM,EAAQC,EAAsB,CAAC,EAAQC,EAAkBC,EAAqB,EAAE,OAAoBvC,EAAKwC,EAAY,CAAC,GAAGrB,GAA4CgB,EAAgB,SAAsBnC,EAAKC,GAAS,CAAC,QAAQS,EAAS,QAAQ,GAAM,SAAsBV,EAAKT,GAAW,CAAC,MAAMJ,GAAY,SAAsBa,EAAKE,EAAO,IAAI,CAAC,GAAGmB,EAAU,GAAGI,EAAgB,UAAUgB,EAAGC,GAAkB,GAAGL,EAAsB,gBAAgBnB,EAAUK,CAAU,EAAE,mBAAmB,YAAY,iBAAiBS,EAAiB,SAAS,YAAY,IAAInB,GAA6BoB,EAAK,MAAM,CAAC,GAAGhB,CAAK,EAAE,SAAsBjB,EAAK2C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQC,GAAwFN,GAAkB,GAAI,KAAkEA,GAAkB,QAAS,IAAI,kBAAkB,KAAK,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,OAAO,IAAI,wFAAwF,OAAO,qKAAqK,EAAE,UAAU,iBAAiB,mBAAmB,2BAA2B,iBAAiBN,EAAiB,SAAS,YAAY,kBAAkB5C,EAAkB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQyD,GAAI,CAAC,kFAAkF,kFAAkF,oGAAoG,kNAAkN,EAQjqHC,GAAgBC,EAAQpC,GAAUkC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,UAAUA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,GAAG,EAAEG,EAASH,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECRrPI,GAAU,UAAU,CAAC,mCAAmC,aAAa,mBAAmB,sBAAsB,CAAC,EAAS,IAAMC,GAAM,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,4BAA4B,OAAO,SAAS,IAAI,wEAAwE,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,uEAAuE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,uEAAuE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,uEAAuE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,uEAAuE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,CAAC,CAAC,CAAC,EAAeC,GAAI,CAAC,0pCAA0pC,EAAeC,GAAU,eCAjgH,IAAMC,GAAgBC,EAASC,EAAU,EAAQC,GAAkCC,GAAwBF,EAAU,EAAQG,GAAmCC,GAA0BC,CAAS,EAAQC,GAAmCF,GAA0BG,EAAO,GAAG,EAAQC,GAAkCJ,GAA0BK,CAAQ,EAAQC,GAAYX,EAASY,EAAM,EAAQC,GAAab,EAASc,EAAO,EAAQC,GAAqCV,GAA0BW,GAAOC,CAAK,CAAC,EAAQC,GAAYlB,EAASmB,EAAM,EAAQC,GAAepB,EAASqB,EAAS,EAAQC,GAAYtB,EAASuB,EAAM,EAAQC,GAAYxB,EAASyB,EAAM,EAAQC,GAAW1B,EAAS2B,EAAK,EAAQC,GAAa5B,EAAS6B,EAAO,EAAQC,GAAY9B,EAAS+B,EAAM,EAAQC,GAAahC,EAASiC,EAAO,EAAQC,GAAYlC,EAASmC,EAAM,EAAQC,GAAapC,EAASmB,EAAO,EAAQkB,GAAoBrB,GAAOR,EAAO,OAAO,EAAQ8B,GAAoBtC,EAASuC,EAAc,EAAQC,GAAgBxB,GAAOV,CAAS,EAAQmC,GAAezC,EAAS0C,EAAS,EAAQC,GAAW3C,EAAS4C,EAAK,EAAQC,GAAe7B,GAAON,CAAQ,EAAQoC,GAAgB9B,GAAOR,EAAO,GAAG,EAAQuC,GAAkB/C,EAASgD,EAAY,EAAQC,GAAWjD,EAASkD,EAAK,EAAQC,GAAYnD,EAASoD,EAAM,EAAQC,GAAY,CAAC,UAAU,qBAAqB,UAAU,6CAA6C,UAAU,4CAA4C,UAAU,qBAAqB,EAAQC,GAAU,IAAI,OAAO,SAAW,IAAkBC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,iBAAiB,EAAQC,GAAmB,CAACC,EAAEC,IAAI,oBAAoBA,CAAC,GAASC,GAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,GAAG,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAW,CAAC,QAAQ,KAAK,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,CAAC,EAAQC,GAAY,CAAC,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,EAAE,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAW,CAAC,QAAQ,KAAK,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,IAAI,WAAWH,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQI,GAAW,CAAC,QAAQ,KAAK,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,IAAI,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAY,CAAC,MAAM,GAAG,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,EAAE,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAY,CAAC,MAAM,GAAG,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,EAAE,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAY,CAACC,EAAMC,IAAM,CAAC,GAAG,GAACD,GAAO,OAAOA,GAAQ,UAAkB,MAAM,CAAC,GAAGA,EAAM,IAAAC,CAAG,CAAE,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAY,CAAC,QAAQ,KAAK,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,IAAI,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,CAAC,EAAQC,GAAY,CAAC,MAAM,GAAG,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAa,CAAC,MAAM,GAAG,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAa,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,IAAI,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAa,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAa,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAa,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAa,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAa,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAa,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAa,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAa,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAa,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAa,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAa,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAU,CAAC,CAAC,MAAAC,CAAK,IAAoBC,GAAoB,EAAqB,KAAyBC,EAAK,QAAQ,CAAC,wBAAwB,CAAC,OAAOF,CAAK,CAAC,CAAC,EAAUG,GAAwB,CAAC,YAAY,YAAY,QAAQ,YAAY,MAAM,YAAY,OAAO,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,QAAQL,GAAwBK,EAAM,OAAO,GAAGA,EAAM,SAAS,WAAW,GAAUC,GAA6BC,EAAW,SAASF,EAAMG,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,GAAGC,CAAS,EAAEf,GAASI,CAAK,EAAQY,GAAU,IAAI,CAAC,IAAMC,EAASA,GAAiB,OAAUT,CAAY,EAAE,GAAGS,EAAS,OAAO,CAAC,IAAIC,GAAU,SAAS,cAAc,qBAAqB,EAAKA,GAAWA,GAAU,aAAa,UAAUD,EAAS,MAAM,GAAQC,GAAU,SAAS,cAAc,MAAM,EAAEA,GAAU,aAAa,OAAO,QAAQ,EAAEA,GAAU,aAAa,UAAUD,EAAS,MAAM,EAAE,SAAS,KAAK,YAAYC,EAAS,EAAG,CAAC,EAAE,CAAC,OAAUV,CAAY,CAAC,EAAQW,GAAmB,IAAI,CAAC,IAAMF,EAASA,GAAiB,OAAUT,CAAY,EAAE,SAAS,MAAMS,EAAS,OAAO,GAAMA,EAAS,UAAU,SAAS,cAAc,uBAAuB,GAAG,aAAa,UAAUA,EAAS,QAAQ,CAAG,EAAE,CAAC,OAAUT,CAAY,CAAC,EAAE,GAAK,CAACY,EAAYC,CAAmB,EAAEC,GAA8BR,EAAQtE,GAAY,EAAK,EAAQ+E,EAAe,OAAqOC,GAAkBC,EAAG/E,GAAkB,GAAtO,CAAakE,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,EAAS,CAAuE,EAAQc,GAAWC,EAAO,IAAI,EAAQC,GAAUC,GAAkB,WAAW,EAAQC,EAAWH,EAAO,IAAI,EAAQI,EAAWJ,EAAO,IAAI,EAAQK,EAAWH,GAAkB,WAAW,EAAQI,EAAWN,EAAO,IAAI,EAAQO,EAAY,IAASzF,GAAU,EAAiB,EAAC,YAAY,WAAW,EAAE,SAAS2E,CAAW,EAAtD,GAAyFe,EAAa,IAAS1F,GAAU,EAAiB2E,IAAc,YAAtB,GAAmEgB,EAAa,IAAS3F,GAAU,EAAiB2E,IAAc,YAAtB,GAAmEiB,GAAa,IAAQ,CAAC5F,GAAU,GAAiB2E,IAAc,YAA6CkB,GAAWT,GAAkB,WAAW,EAAQU,GAAWV,GAAkB,WAAW,EAAQW,EAAWb,EAAO,IAAI,EAAQc,GAAWZ,GAAkB,WAAW,EAAQa,EAAWf,EAAO,IAAI,EAAQgB,GAAWd,GAAkB,WAAW,EAAQe,GAAWjB,EAAO,IAAI,EAAQkB,GAAWhB,GAAkB,WAAW,EAAQiB,GAAWnB,EAAO,IAAI,EAAQoB,GAAsBC,EAAM,EAAEC,GAAiB,CAAC,CAAC,EAAE,IAAMC,EAAkBC,EAAqB,EAAE,OAAoBrD,EAAKsD,GAA0B,SAAS,CAAC,MAAM,CAAC,iBAAiB,YAAY,kBAAAzG,EAAiB,EAAE,SAAsB0G,EAAMC,EAAY,CAAC,GAAGzC,GAAUkC,GAAgB,SAAS,CAAcM,EAAM1J,EAAO,IAAI,CAAC,GAAGoH,EAAU,UAAUU,EAAGD,GAAkB,gBAAgBZ,CAAS,EAAE,IAAIL,GAAKmB,GAAK,MAAM,CAAC,GAAGf,CAAK,EAAE,SAAS,CAAcb,EAAKyD,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAQ,EAAE,EAAE,SAAsBzD,EAAK0D,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,OAAU,QAAQ,OAAU,UAAU,MAAS,CAAC,EAAE,SAAsBtB,EAAKvG,GAAmC,CAAC,QAAQyD,GAAU,UAAU,0BAA0B,wBAAwB,SAAS,GAAG4E,GAAU,QAAQ3E,GAAW,aAAa,GAAK,UAAU,GAAK,IAAI8E,EAAK,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkBnF,GAAmB,SAAsBkD,EAAK0D,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,qCAAqC,OAAU,QAAQ,WAAW,EAAE,UAAU,CAAC,qCAAqC,OAAU,QAAQ,WAAW,CAAC,EAAE,SAAsBtB,EAAKzG,GAAkC,CAAC,sBAAsB,GAAM,kBAAkB,CAAC,CAAC,IAAIyI,EAAK,OAAO,WAAW,CAAC,EAAE,oBAAoB,EAAE,qCAAqC,GAAK,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuB,EAAM,UAAU,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,GAAGrB,EAAW,IAAIC,EAAK,SAAS,CAACC,EAAY,GAAgBpC,EAAKpG,GAAmC,CAAC,QAAQyD,GAAW,UAAU,4CAA4C,wBAAwB,SAAS,mBAAmB,qBAAqB,QAAQC,GAAW,UAAU,GAAK,MAAM,CAAC,qBAAqB,IAAI,CAAC,CAAC,EAAE8E,EAAY,GAAgBpC,EAAKpG,GAAmC,CAAC,QAAQyD,GAAW,UAAU,6CAA6C,wBAAwB,UAAU,mBAAmB,oBAAoB,QAAQC,GAAW,UAAU,GAAK,MAAM,CAAC,qBAAqB,IAAI,CAAC,CAAC,EAAeiG,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,SAAS,CAAcvD,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAsBA,EAAK0D,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBtB,EAAW2D,EAAS,CAAC,SAAsBJ,EAAM,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,CAAcvD,EAAK,OAAO,CAAC,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,OAAO,CAAC,EAAeA,EAAK,KAAK,CAAC,CAAC,EAAeA,EAAK,OAAO,CAAC,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,KAAK,CAAC,EAAeA,EAAK,KAAK,CAAC,CAAC,EAAeA,EAAK,OAAO,CAAC,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAW2D,EAAS,CAAC,SAAsBJ,EAAM,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,CAAcvD,EAAK,OAAO,CAAC,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,OAAO,CAAC,EAAeA,EAAK,KAAK,CAAC,CAAC,EAAeA,EAAK,OAAO,CAAC,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,KAAK,CAAC,EAAeA,EAAK,KAAK,CAAC,CAAC,EAAeA,EAAK,OAAO,CAAC,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,QAAQtC,GAAW,SAAsBsC,EAAW2D,EAAS,CAAC,SAAsBJ,EAAM,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,CAAcvD,EAAK,OAAO,CAAC,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,OAAO,CAAC,EAAeA,EAAK,KAAK,CAAC,CAAC,EAAeA,EAAK,OAAO,CAAC,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,KAAK,CAAC,EAAeA,EAAK,KAAK,CAAC,CAAC,EAAeA,EAAK,OAAO,CAAC,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,QAAQrC,EAAU,CAAC,EAAE,SAAsBqC,EAAKlG,GAAkC,CAAC,sBAAsB,GAAK,QAAQ0D,GAAW,SAAsBwC,EAAW2D,EAAS,CAAC,SAAsBJ,EAAM,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,CAAC,QAAqBvD,EAAK,KAAK,CAAC,CAAC,EAAE,MAAmBA,EAAK,KAAK,CAAC,CAAC,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,wBAAwB,UAAU,mBAAmB,aAAa,MAAM,CAAC,OAAO,EAAE,QAAQvC,GAAW,UAAU,GAAK,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuC,EAAKlG,GAAkC,CAAC,sBAAsB,GAAK,QAAQ+D,GAAW,SAAsBmC,EAAW2D,EAAS,CAAC,SAAsB3D,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,wKAAwK,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,wBAAwB,SAAS,mBAAmB,kBAAkB,MAAM,CAAC,OAAO,EAAE,QAAQvC,GAAW,UAAU,GAAK,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe8F,EAAM3J,GAAmC,CAAC,QAAQmE,GAAW,UAAU,iBAAiB,wBAAwB,UAAU,mBAAmB,eAAe,QAAQN,GAAW,UAAU,GAAK,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAc8F,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,kBAAkB,SAAS,CAAcvD,EAAK0D,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,GAAG8B,GAAmB,GAAG,GAAG,EAAE,EAAE,IAAI,EAAE,EAAE,EAAE,EAAE,IAAI,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,IAAI,EAAE,EAAE,EAAE,EAAE,IAAI,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,IAAI,EAAE,EAAE,EAAE,EAAE,IAAI,EAAE,CAAC,CAAC,EAAE,SAAsBpD,EAAKyD,EAA0B,CAAC,OAAO,GAAG,MAAM,SAAS,GAAGL,GAAmB,GAAG,GAAG,EAAE,EAAE,IAAI,EAAE,EAAE,EAAE,EAAE,IAAI,EAAE,EAAE,SAAsBpD,EAAKrG,EAAU,CAAC,UAAU,0BAA0B,SAAsBqG,EAAK/F,GAAO,CAAC,OAAO,OAAO,UAAU,oBAAoB,GAAG,YAAY,SAAS,YAAY,UAAU+D,GAAY,CAAC,IAAI,sEAAsE,EAAE,EAAE,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegC,EAAK0D,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,GAAG8B,GAAmB,GAAG,GAAG,EAAE,EAAE,IAAI,EAAE,EAAE,EAAE,EAAE,IAAI,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,IAAI,EAAE,EAAE,EAAE,EAAE,IAAI,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,IAAI,EAAE,EAAE,EAAE,EAAE,IAAI,EAAE,CAAC,CAAC,EAAE,SAAsBpD,EAAKyD,EAA0B,CAAC,OAAO,GAAG,MAAM,OAAO,GAAGL,GAAmB,GAAG,GAAG,EAAE,EAAE,IAAI,EAAE,EAAE,EAAE,EAAE,IAAI,EAAE,EAAE,SAAsBpD,EAAKrG,EAAU,CAAC,UAAU,0BAA0B,SAAsBqG,EAAK/F,GAAO,CAAC,OAAO,OAAO,UAAU,oBAAoB,GAAG,YAAY,SAAS,YAAY,UAAU+D,GAAY,CAAC,IAAI,qEAAqE,EAAE,EAAE,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegC,EAAK0D,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,GAAG8B,GAAmB,GAAG,GAAG,EAAE,EAAE,IAAI,EAAE,EAAE,EAAE,EAAE,IAAI,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,IAAI,EAAE,EAAE,EAAE,EAAE,IAAI,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,IAAI,EAAE,EAAE,EAAE,EAAE,IAAI,EAAE,CAAC,CAAC,EAAE,SAAsBpD,EAAKyD,EAA0B,CAAC,OAAO,GAAG,MAAM,OAAO,GAAGL,GAAmB,GAAG,GAAG,EAAE,EAAE,IAAI,EAAE,EAAE,EAAE,EAAE,IAAI,EAAE,EAAE,SAAsBpD,EAAKrG,EAAU,CAAC,UAAU,0BAA0B,SAAsBqG,EAAK/F,GAAO,CAAC,OAAO,OAAO,UAAU,oBAAoB,GAAG,YAAY,SAAS,YAAY,UAAU+D,GAAY,CAAC,IAAI,uEAAuE,OAAO,2EAA2E,EAAE,EAAE,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegC,EAAK0D,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,GAAG8B,GAAmB,GAAG,GAAG,EAAE,EAAE,IAAI,EAAE,EAAE,EAAE,EAAE,IAAI,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,IAAI,EAAE,EAAE,EAAE,EAAE,IAAI,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,IAAI,EAAE,EAAE,EAAE,EAAE,IAAI,EAAE,CAAC,CAAC,EAAE,SAAsBpD,EAAKyD,EAA0B,CAAC,OAAO,GAAG,MAAM,OAAO,GAAGL,GAAmB,GAAG,GAAG,EAAE,EAAE,IAAI,EAAE,EAAE,EAAE,EAAE,IAAI,EAAE,EAAE,SAAsBpD,EAAKrG,EAAU,CAAC,UAAU,0BAA0B,SAAsBqG,EAAK/F,GAAO,CAAC,OAAO,OAAO,UAAU,oBAAoB,GAAG,YAAY,SAAS,YAAY,UAAU+D,GAAY,CAAC,IAAI,qEAAqE,OAAO,sKAAsK,EAAE,EAAE,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegC,EAAKjG,EAAS,CAAC,sBAAsB,GAAK,SAAsBiG,EAAW2D,EAAS,CAAC,SAAsB3D,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,0BAA0B,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuD,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAcvD,EAAK0D,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,SAAS8B,GAAmB,OAAO,OAAO,qBAAqB,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,IAAI,EAAE,EAAE,IAAI,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,IAAI,EAAE,EAAE,IAAI,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,IAAI,EAAE,EAAE,IAAI,CAAC,CAAC,EAAE,SAAsBpD,EAAKyD,EAA0B,CAAC,OAAO,GAAG,GAAGL,GAAmB,GAAG,GAAG,EAAE,EAAE,IAAI,EAAE,EAAE,IAAI,EAAE,SAAsBpD,EAAKvG,GAAmC,CAAC,QAAQ2E,GAAY,UAAU,2BAA2B,wBAAwB,UAAU,mBAAmB,mBAAmB,QAAQd,GAAW,KAAK,mBAAmB,UAAU,GAAK,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsB0C,EAAK0D,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,CAAC,MAAM,MAAM,CAAC,CAAC,EAAE,SAAsBtB,EAAK7F,GAAQ,CAAC,UAAU,eAAe,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,mBAAmB,QAAQ,YAAY,UAAU,uDAAuD,MAAM,OAAO,UAAU,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe6F,EAAK0D,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,SAAS8B,GAAmB,OAAO,OAAO,qBAAqB,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,IAAI,EAAE,EAAE,IAAI,EAAE,EAAE,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,IAAI,EAAE,EAAE,IAAI,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,IAAI,EAAE,EAAE,IAAI,CAAC,CAAC,EAAE,SAAsBpD,EAAKyD,EAA0B,CAAC,OAAO,GAAG,GAAGL,GAAmB,GAAG,GAAG,EAAE,EAAE,IAAI,EAAE,EAAE,IAAI,EAAE,SAAsBpD,EAAKvG,GAAmC,CAAC,QAAQ6E,GAAY,UAAU,2BAA2B,wBAAwB,UAAU,mBAAmB,iBAAiB,QAAQhB,GAAW,KAAK,iBAAiB,UAAU,GAAK,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsB0C,EAAK0D,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,CAAC,MAAM,MAAM,CAAC,CAAC,EAAE,SAAsBtB,EAAK7F,GAAQ,CAAC,UAAU,UAAU,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,iBAAiB,MAAM,CAAC,OAAO,MAAM,EAAE,QAAQ,YAAY,UAAU,oBAAoB,MAAM,OAAO,UAAU,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEkI,EAAa,GAAgBrC,EAAK,MAAM,CAAC,UAAU,+BAA+B,mBAAmB,cAAc,SAASsC,EAAa,GAAgBtC,EAAKyD,EAA0B,CAAC,SAAsBzD,EAAKrG,EAAU,CAAC,UAAU,wCAAwC,SAAsBqG,EAAKxF,GAAO,CAAC,UAAU,aAAa,UAAU,OAAO,YAAY,CAAC,UAAU,EAAE,YAAY,GAAM,UAAU,EAAE,UAAU,EAAE,SAAS,EAAI,EAAE,IAAI,EAAE,OAAO,OAAO,YAAY,GAAG,GAAG,YAAY,SAAS,YAAY,QAAQ,EAAE,cAAc,EAAE,YAAY,EAAE,eAAe,GAAM,aAAa,EAAE,WAAW,EAAE,cAAc,CAAC,WAAW,GAAK,UAAU,EAAI,EAAE,MAAM,CAAcwF,EAAK5F,GAAqC,CAAC,yBAAyB,GAAM,iBAAiB,EAAE,mCAAmC,GAAK,gBAAgB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,QAAQoE,GAAY,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,MAAM,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,uFAAuF,OAAO,qKAAqK,EAAE,UAAU,gBAAgB,wBAAwB,SAAS,mBAAmB,cAAc,QAAQC,GAAY,UAAU,EAAI,CAAC,EAAeuB,EAAK5F,GAAqC,CAAC,yBAAyB,GAAM,iBAAiB,EAAE,mCAAmC,GAAK,gBAAgB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,QAAQoE,GAAY,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,MAAM,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,wFAAwF,OAAO,uKAAuK,EAAE,UAAU,gBAAgB,wBAAwB,SAAS,mBAAmB,cAAc,QAAQC,GAAY,UAAU,EAAI,CAAC,EAAeuB,EAAK5F,GAAqC,CAAC,yBAAyB,GAAM,iBAAiB,EAAE,mCAAmC,GAAK,gBAAgB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,QAAQoE,GAAY,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,MAAM,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,yFAAyF,OAAO,yKAAyK,EAAE,UAAU,iBAAiB,wBAAwB,UAAU,mBAAmB,cAAc,QAAQC,GAAY,UAAU,EAAI,CAAC,EAAeuB,EAAK5F,GAAqC,CAAC,yBAAyB,GAAM,iBAAiB,EAAE,mCAAmC,GAAK,gBAAgB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,QAAQoE,GAAY,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,MAAM,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,yFAAyF,OAAO,yKAAyK,EAAE,UAAU,gBAAgB,wBAAwB,SAAS,mBAAmB,cAAc,QAAQC,GAAY,UAAU,EAAI,CAAC,EAAeuB,EAAK5F,GAAqC,CAAC,yBAAyB,GAAM,iBAAiB,EAAE,mCAAmC,GAAK,gBAAgB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,QAAQoE,GAAY,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,MAAM,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,wFAAwF,OAAO,uKAAuK,EAAE,UAAU,gBAAgB,wBAAwB,SAAS,mBAAmB,cAAc,QAAQC,GAAY,UAAU,EAAI,CAAC,EAAeuB,EAAK5F,GAAqC,CAAC,yBAAyB,GAAM,iBAAiB,EAAE,mCAAmC,GAAK,gBAAgB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,QAAQoE,GAAY,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,MAAM,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,yFAAyF,OAAO,yKAAyK,EAAE,UAAU,gBAAgB,wBAAwB,SAAS,mBAAmB,cAAc,QAAQC,GAAY,UAAU,EAAI,CAAC,EAAeuB,EAAK5F,GAAqC,CAAC,yBAAyB,GAAM,iBAAiB,EAAE,mCAAmC,GAAK,gBAAgB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,QAAQoE,GAAY,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,MAAM,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,yFAAyF,OAAO,yKAAyK,EAAE,UAAU,iBAAiB,wBAAwB,UAAU,mBAAmB,cAAc,QAAQC,GAAY,UAAU,EAAI,CAAC,EAAeuB,EAAK1F,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,mBAAmB,eAAe,mBAAmB,YAAY,KAAK,WAAW,KAAK,MAAM,aAAa,IAAI,uEAAuE,OAAO,yKAAyK,EAAE,UAAU,iBAAiB,mBAAmB,WAAW,CAAC,EAAe0F,EAAK1F,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,sEAAsE,OAAO,uKAAuK,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEiI,GAAa,GAAgBvC,EAAKyD,EAA0B,CAAC,SAAsBzD,EAAKrG,EAAU,CAAC,UAAU,qEAAqE,SAAsBqG,EAAKxF,GAAO,CAAC,UAAU,SAAS,UAAU,OAAO,YAAY,CAAC,UAAU,EAAE,YAAY,GAAK,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,GAAG,OAAO,OAAO,YAAY,GAAG,GAAG,YAAY,SAAS,YAAY,QAAQ,GAAG,cAAc,GAAG,YAAY,GAAG,eAAe,GAAM,aAAa,GAAG,WAAW,GAAG,cAAc,CAAC,WAAW,GAAK,UAAU,EAAI,EAAE,MAAM,CAAcwF,EAAK5F,GAAqC,CAAC,yBAAyB,GAAM,iBAAiB,EAAE,mCAAmC,GAAK,gBAAgB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,QAAQoE,GAAY,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,MAAM,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,uFAAuF,OAAO,qKAAqK,EAAE,UAAU,gBAAgB,wBAAwB,WAAW,mBAAmB,cAAc,QAAQC,GAAY,UAAU,EAAI,CAAC,EAAeuB,EAAK5F,GAAqC,CAAC,yBAAyB,GAAM,iBAAiB,EAAE,mCAAmC,GAAK,gBAAgB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,QAAQoE,GAAY,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,MAAM,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,wFAAwF,OAAO,uKAAuK,EAAE,UAAU,gBAAgB,wBAAwB,WAAW,mBAAmB,cAAc,QAAQC,GAAY,UAAU,EAAI,CAAC,EAAeuB,EAAK5F,GAAqC,CAAC,yBAAyB,GAAM,iBAAiB,EAAE,mCAAmC,GAAK,gBAAgB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,QAAQoE,GAAY,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,MAAM,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,yFAAyF,OAAO,yKAAyK,EAAE,UAAU,iBAAiB,wBAAwB,YAAY,mBAAmB,cAAc,QAAQC,GAAY,UAAU,EAAI,CAAC,EAAeuB,EAAK5F,GAAqC,CAAC,yBAAyB,GAAM,iBAAiB,EAAE,mCAAmC,GAAK,gBAAgB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,QAAQoE,GAAY,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,MAAM,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,yFAAyF,OAAO,yKAAyK,EAAE,UAAU,gBAAgB,wBAAwB,WAAW,mBAAmB,cAAc,QAAQC,GAAY,UAAU,EAAI,CAAC,EAAeuB,EAAK5F,GAAqC,CAAC,yBAAyB,GAAM,iBAAiB,EAAE,mCAAmC,GAAK,gBAAgB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,QAAQoE,GAAY,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,MAAM,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,wFAAwF,OAAO,uKAAuK,EAAE,UAAU,gBAAgB,wBAAwB,WAAW,mBAAmB,cAAc,QAAQC,GAAY,UAAU,EAAI,CAAC,EAAeuB,EAAK5F,GAAqC,CAAC,yBAAyB,GAAM,iBAAiB,EAAE,mCAAmC,GAAK,gBAAgB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,QAAQoE,GAAY,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,MAAM,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,yFAAyF,OAAO,yKAAyK,EAAE,UAAU,gBAAgB,wBAAwB,WAAW,mBAAmB,cAAc,QAAQC,GAAY,UAAU,EAAI,CAAC,EAAeuB,EAAK5F,GAAqC,CAAC,yBAAyB,GAAM,iBAAiB,EAAE,mCAAmC,GAAK,gBAAgB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,QAAQoE,GAAY,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,MAAM,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,yFAAyF,OAAO,yKAAyK,EAAE,UAAU,iBAAiB,wBAAwB,YAAY,mBAAmB,cAAc,QAAQC,GAAY,UAAU,EAAI,CAAC,EAAeuB,EAAK1F,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,mBAAmB,eAAe,mBAAmB,YAAY,KAAK,WAAW,KAAK,MAAM,aAAa,IAAI,uEAAuE,OAAO,yKAAyK,EAAE,UAAU,iBAAiB,mBAAmB,WAAW,CAAC,EAAe0F,EAAK1F,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,sEAAsE,OAAO,uKAAuK,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe0F,EAAKtE,GAAoB,CAAC,kBAAkB,CAAC,WAAWiD,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAY,eAAeG,GAAY,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,mBAAmB,SAAS,GAAG2D,GAAW,IAAIR,EAAK,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsBuB,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,SAAS,CAAcvD,EAAK0D,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBtB,EAAW2D,EAAS,CAAC,SAAsB3D,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,iBAAiB,EAAE,SAAS,8DAA8D,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAW2D,EAAS,CAAC,SAAsB3D,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,iBAAiB,EAAE,SAAS,8DAA8D,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAW2D,EAAS,CAAC,SAAsB3D,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,iBAAiB,EAAE,SAAS,8DAA8D,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKjG,EAAS,CAAC,sBAAsB,GAAK,SAAsBiG,EAAW2D,EAAS,CAAC,SAAsB3D,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,iBAAiB,EAAE,SAAS,8DAA8D,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKyD,EAA0B,CAAC,SAAsBzD,EAAKrG,EAAU,CAAC,UAAU,0BAA0B,SAAsBqG,EAAK0D,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,YAAY,CAAC,UAAU,EAAE,YAAY,GAAK,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,EAAE,EAAE,UAAU,CAAC,IAAI,EAAE,EAAE,UAAU,CAAC,IAAI,EAAE,CAAC,EAAE,SAAsBtB,EAAKxF,GAAQ,CAAC,UAAU,SAAS,UAAU,OAAO,YAAY,CAAC,UAAU,EAAE,YAAY,GAAK,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,GAAG,OAAO,OAAO,YAAY,GAAG,GAAG,YAAY,SAAS,YAAY,QAAQ,GAAG,cAAc,GAAG,YAAY,GAAG,eAAe,GAAM,aAAa,GAAG,WAAW,GAAG,cAAc,CAAC,WAAW,GAAK,UAAU,EAAI,EAAE,MAAM,CAAcwF,EAAKyD,EAA0B,CAAC,OAAO,GAAG,MAAM,aAAa,SAAsBzD,EAAKrG,EAAU,CAAC,UAAU,0BAA0B,SAAsBqG,EAAKtF,GAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAesF,EAAKyD,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAQ,SAAsBzD,EAAKrG,EAAU,CAAC,UAAU,0BAA0B,SAAsBqG,EAAKpF,GAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeoF,EAAKyD,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAQ,SAAsBzD,EAAKrG,EAAU,CAAC,UAAU,0BAA0B,SAAsBqG,EAAKlF,GAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAekF,EAAKyD,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAQ,SAAsBzD,EAAKrG,EAAU,CAAC,UAAU,2BAA2B,SAAsBqG,EAAKhF,GAAM,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegF,EAAKyD,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAQ,SAAsBzD,EAAKrG,EAAU,CAAC,UAAU,0BAA0B,SAAsBqG,EAAK9E,GAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe8E,EAAKyD,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAQ,SAAsBzD,EAAKrG,EAAU,CAAC,UAAU,2BAA2B,SAAsBqG,EAAK5E,GAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe4E,EAAKyD,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAQ,SAAsBzD,EAAKrG,EAAU,CAAC,UAAU,2BAA2B,SAAsBqG,EAAK1E,GAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe0E,EAAKyD,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAQ,SAAsBzD,EAAKrG,EAAU,CAAC,UAAU,0BAA0B,SAAsBqG,EAAKxE,GAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,IAAI,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+H,EAAM,UAAU,CAAC,UAAU,iBAAiB,mBAAmB,eAAe,GAAGd,GAAW,IAAIC,EAAK,SAAS,CAAc1C,EAAK0D,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,QAAQ8B,GAAmB,OAAO,OAAO,aAAa,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,CAAC,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,aAAa,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,CAAC,CAAC,EAAE,SAAsBpD,EAAKyD,EAA0B,CAAC,OAAO,IAAI,MAAML,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,SAAsBpD,EAAKnE,GAAgB,CAAC,kBAAkB,CAAC,WAAWkD,EAAY,EAAE,sBAAsB,GAAK,gBAAgBD,GAAY,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,0BAA0B,MAAM,CAAC,qBAAqB,GAAG,EAAE,SAAsBkB,EAAK0D,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBtB,EAAKpE,GAAe,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,kPAAkP,UAAUoC,GAAY,CAAC,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,EAAE,EAAE,UAAU,iDAAiD,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegC,EAAK0D,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,QAAQ8B,GAAmB,OAAO,OAAO,aAAa,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,GAAG,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,aAAa,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,GAAG,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,GAAG,CAAC,EAAE,SAAsBpD,EAAKyD,EAA0B,CAAC,OAAO,IAAI,MAAML,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,IAAI,SAAsBpD,EAAKnE,GAAgB,CAAC,kBAAkB,CAAC,WAAWkD,EAAY,EAAE,sBAAsB,GAAK,gBAAgBC,GAAY,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,2BAA2B,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsBgB,EAAK0D,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUtD,GAAY,CAAC,IAAI,uEAAuE,OAAO,kcAAkc,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBgC,EAAKpE,GAAe,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,kMAAkM,UAAUoC,GAAY,CAAC,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,EAAE,EAAE,UAAU,uDAAuD,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegC,EAAK0D,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,QAAQ8B,GAAmB,OAAO,OAAO,aAAa,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,GAAG,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,aAAa,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,GAAG,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,GAAG,CAAC,EAAE,SAAsBpD,EAAKyD,EAA0B,CAAC,OAAO,IAAI,MAAML,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,IAAI,SAAsBpD,EAAKnE,GAAgB,CAAC,kBAAkB,CAAC,WAAWkD,EAAY,EAAE,sBAAsB,GAAK,gBAAgBC,GAAY,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,0BAA0B,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsBgB,EAAK0D,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBtB,EAAKpE,GAAe,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,wNAAwN,UAAUoC,GAAY,CAAC,IAAI,qEAAqE,OAAO,4VAA4V,EAAE,EAAE,EAAE,UAAU,6DAA6D,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegC,EAAK0D,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,QAAQ8B,GAAmB,OAAO,OAAO,aAAa,GAAGA,GAAmB,GAAG,GAAG,EAAE,IAAI,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,IAAI,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,IAAI,CAAC,EAAE,SAAsBpD,EAAKyD,EAA0B,CAAC,OAAO,IAAI,MAAML,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,SAAsBpD,EAAKnE,GAAgB,CAAC,kBAAkB,CAAC,WAAWoD,EAAY,EAAE,sBAAsB,GAAK,gBAAgBD,GAAY,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,0BAA0B,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsBgB,EAAK0D,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBtB,EAAKjE,GAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeiE,EAAK,UAAU,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,GAAG2C,GAAW,IAAIC,EAAK,SAAsBW,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAcvD,EAAK0D,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,GAAG8B,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,EAAE,SAAsBpD,EAAKyD,EAA0B,CAAC,OAAO,GAAG,GAAGL,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,SAAsBpD,EAAKnE,GAAgB,CAAC,kBAAkB,CAAC,WAAWqD,EAAY,EAAE,sBAAsB,GAAK,gBAAgBR,GAAY,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,IAAIkE,EAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,2BAA2B,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsB5C,EAAK/D,GAAM,CAAC,UAAU,qBAAqB,UAAU,UAAU,UAAU,gBAAgB,OAAO,OAAO,GAAG,YAAY,UAAU,kEAAkE,SAAS,YAAY,UAAU,qBAAqB,QAAQ,YAAY,UAAU,OAAO,MAAM,OAAO,UAAU,qBAAqB,UAAU,uEAAuE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+D,EAAK9D,GAAe,CAAC,kBAAkB,CAAC,WAAW4B,EAAW,EAAE,sBAAsB,GAAK,gBAAgBqB,GAAY,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,IAAIyD,EAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,EAAE,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsB5C,EAAW2D,EAAS,CAAC,SAAsB3D,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,iCAAiC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,kCAAkC,MAAM,CAAC,OAAO,EAAE,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeuD,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAcA,EAAMpH,GAAgB,CAAC,kBAAkB,CAAC,WAAW+C,EAAY,EAAE,sBAAsB,GAAK,gBAAgBR,GAAY,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,IAAIkE,EAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,OAAO,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAc5C,EAAK0D,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBtB,EAAW2D,EAAS,CAAC,SAAsB3D,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,6DAA6D,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,OAAO,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,qEAAqE,EAAE,SAAS,KAAK,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAW2D,EAAS,CAAC,SAAsB3D,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,6DAA6D,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,OAAO,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,qEAAqE,EAAE,SAAS,KAAK,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAW2D,EAAS,CAAC,SAAsB3D,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,6DAA6D,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,OAAO,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,qEAAqE,EAAE,SAAS,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK9D,GAAe,CAAC,kBAAkB,CAAC,WAAWmD,EAAY,EAAE,sBAAsB,GAAK,gBAAgBD,GAAY,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,IAAIwD,EAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,EAAE,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsB5C,EAAW2D,EAAS,CAAC,SAAsB3D,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,6DAA6D,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,OAAO,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,qEAAqE,EAAE,SAAS,KAAK,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,SAAS,MAAM,CAAC,uBAAuB,EAAE,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK9D,GAAe,CAAC,kBAAkB,CAAC,WAAWoD,EAAY,EAAE,sBAAsB,GAAK,gBAAgBF,GAAY,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,IAAIwD,EAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,EAAE,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsB5C,EAAW2D,EAAS,CAAC,SAAsB3D,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,uBAAuB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,MAAM,CAAC,OAAO,EAAE,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeuD,EAAMpH,GAAgB,CAAC,kBAAkB,CAAC,WAAWoD,EAAY,EAAE,sBAAsB,GAAK,gBAAgBb,GAAY,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,IAAIkE,EAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,OAAO,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAc5C,EAAK0D,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBtB,EAAW2D,EAAS,CAAC,SAAsB3D,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,6DAA6D,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,OAAO,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,qEAAqE,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAW2D,EAAS,CAAC,SAAsB3D,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,6DAA6D,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,OAAO,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,qEAAqE,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAW2D,EAAS,CAAC,SAAsB3D,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,6DAA6D,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,OAAO,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,qEAAqE,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK9D,GAAe,CAAC,kBAAkB,CAAC,WAAWsD,EAAY,EAAE,sBAAsB,GAAK,gBAAgBJ,GAAY,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,IAAIwD,EAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,EAAE,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsB5C,EAAW2D,EAAS,CAAC,SAAsB3D,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,6DAA6D,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,OAAO,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,qEAAqE,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,SAAS,MAAM,CAAC,uBAAuB,EAAE,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK9D,GAAe,CAAC,kBAAkB,CAAC,WAAWuD,EAAY,EAAE,sBAAsB,GAAK,gBAAgBL,GAAY,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,IAAIwD,EAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,EAAE,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsB5C,EAAW2D,EAAS,CAAC,SAAsB3D,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,qBAAqB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,MAAM,CAAC,OAAO,EAAE,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeuD,EAAMpH,GAAgB,CAAC,kBAAkB,CAAC,WAAWuD,EAAY,EAAE,sBAAsB,GAAK,gBAAgBhB,GAAY,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,IAAIkE,EAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAc5C,EAAK0D,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBtB,EAAW2D,EAAS,CAAC,SAAsB3D,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,6DAA6D,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,OAAO,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,qEAAqE,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAW2D,EAAS,CAAC,SAAsB3D,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,6DAA6D,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,OAAO,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,qEAAqE,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAW2D,EAAS,CAAC,SAAsB3D,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,6DAA6D,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,OAAO,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,qEAAqE,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK9D,GAAe,CAAC,kBAAkB,CAAC,WAAWyD,EAAY,EAAE,sBAAsB,GAAK,gBAAgBP,GAAY,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,IAAIwD,EAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,EAAE,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsB5C,EAAW2D,EAAS,CAAC,SAAsB3D,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,6DAA6D,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,OAAO,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,qEAAqE,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,SAAS,MAAM,CAAC,uBAAuB,EAAE,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK9D,GAAe,CAAC,kBAAkB,CAAC,WAAW0D,EAAY,EAAE,sBAAsB,GAAK,gBAAgBR,GAAY,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,IAAIwD,EAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,EAAE,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsB5C,EAAW2D,EAAS,CAAC,SAAsB3D,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,2BAA2B,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,MAAM,CAAC,OAAO,EAAE,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuD,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,SAAS,CAAcvD,EAAK0D,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,GAAG8B,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,GAAG,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,GAAG,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,GAAG,CAAC,CAAC,EAAE,SAAsBpD,EAAKyD,EAA0B,CAAC,OAAO,GAAG,GAAGL,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,GAAG,EAAE,SAAsBpD,EAAKnE,GAAgB,CAAC,kBAAkB,CAAC,WAAWqD,EAAY,EAAE,sBAAsB,GAAK,gBAAgBR,GAAY,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,2BAA2B,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsBsB,EAAK/D,GAAM,CAAC,UAAU,qBAAqB,UAAU,WAAW,UAAU,gBAAgB,OAAO,OAAO,GAAG,YAAY,UAAU,kEAAkE,SAAS,YAAY,UAAU,qBAAqB,QAAQ,YAAY,UAAU,OAAO,MAAM,OAAO,UAAU,qBAAqB,UAAU,uEAAuE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+D,EAAK9D,GAAe,CAAC,kBAAkB,CAAC,WAAW4B,EAAW,EAAE,sBAAsB,GAAK,gBAAgBqB,GAAY,mCAAmC,GAAK,oBAAoB,EAAE,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsBa,EAAW2D,EAAS,CAAC,SAAsB3D,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,yBAAyB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,kCAA6B,MAAM,CAAC,OAAO,EAAE,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeuD,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcvD,EAAK0D,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQsC,GAA2BR,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,WAAWA,GAAmB,OAAO,OAAO,2BAA2B,IAAI,sEAAsE,OAAO,mQAAmQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQQ,GAA2BR,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,wBAAwBA,GAAmB,OAAO,OAAO,yCAAyC,IAAI,sEAAsE,OAAO,mQAAmQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQQ,GAA2BR,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,gBAAgBA,GAAmB,OAAO,OAAO,cAAcA,GAAmB,OAAO,OAAO,wCAAwC,IAAI,sEAAsE,OAAO,mQAAmQ,CAAC,CAAC,EAAE,SAAsBpD,EAAK1F,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQsJ,GAA2BR,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,wBAAwBA,GAAmB,OAAO,OAAO,yCAAyC,IAAI,sEAAsE,OAAO,mQAAmQ,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,CAAC,CAAC,CAAC,EAAeG,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAcvD,EAAKjG,EAAS,CAAC,sBAAsB,GAAK,SAAsBiG,EAAW2D,EAAS,CAAC,SAAsB3D,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,iBAAiB,EAAE,SAAS,YAAY,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,cAAc,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKjG,EAAS,CAAC,sBAAsB,GAAK,SAAsBiG,EAAW2D,EAAS,CAAC,SAAsB3D,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,4BAA4B,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,cAAc,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuD,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcvD,EAAK0D,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQsC,GAA2BR,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,EAAE,IAAI,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,WAAWA,GAAmB,OAAO,OAAO,2BAA2B,IAAI,uEAAuE,OAAO,uKAAuK,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQQ,GAA2BR,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,wBAAwBA,GAAmB,OAAO,OAAO,yCAAyC,IAAI,uEAAuE,OAAO,uKAAuK,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQQ,GAA2BR,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,gBAAgBA,GAAmB,OAAO,OAAO,cAAcA,GAAmB,OAAO,OAAO,wCAAwC,IAAI,uEAAuE,OAAO,uKAAuK,CAAC,CAAC,EAAE,SAAsBpD,EAAK1F,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQsJ,GAA2BR,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,wBAAwBA,GAAmB,OAAO,OAAO,yCAAyC,IAAI,uEAAuE,OAAO,uKAAuK,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,CAAC,CAAC,CAAC,EAAeG,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAcvD,EAAKjG,EAAS,CAAC,sBAAsB,GAAK,SAAsBiG,EAAW2D,EAAS,CAAC,SAAsB3D,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,iBAAiB,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,cAAc,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKjG,EAAS,CAAC,sBAAsB,GAAK,SAAsBiG,EAAW2D,EAAS,CAAC,SAAsB3D,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,2BAA2B,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,cAAc,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEqC,EAAa,GAAgBkB,EAAM,MAAM,CAAC,UAAU,+BAA+B,SAAS,CAAcvD,EAAK0D,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQsC,GAA2BR,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,UAAU,OAAO,UAAU,SAAS,MAAM,wBAAwBA,GAAmB,OAAO,OAAO,yCAAyC,IAAI,sEAAsE,OAAO,0EAA0E,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQQ,GAA2BR,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,EAAE,IAAI,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,gBAAgBA,GAAmB,OAAO,OAAO,cAAcA,GAAmB,OAAO,OAAO,wCAAwC,IAAI,sEAAsE,OAAO,0EAA0E,CAAC,CAAC,EAAE,SAAsBpD,EAAK1F,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQsJ,GAA2BR,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,wBAAwBA,GAAmB,OAAO,OAAO,yCAAyC,IAAI,sEAAsE,OAAO,0EAA0E,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,CAAC,CAAC,CAAC,EAAeG,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAcvD,EAAKjG,EAAS,CAAC,sBAAsB,GAAK,SAAsBiG,EAAW2D,EAAS,CAAC,SAAsB3D,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,iBAAiB,EAAE,SAAS,kBAAkB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,cAAc,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKjG,EAAS,CAAC,sBAAsB,GAAK,SAAsBiG,EAAW2D,EAAS,CAAC,SAAsB3D,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,2BAA2B,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,cAAc,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuD,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcvD,EAAK0D,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQsC,GAA2BR,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,EAAE,IAAI,EAAE,CAAC,EAAE,YAAY,KAAK,WAAW,IAAI,MAAM,WAAWA,GAAmB,OAAO,OAAO,2BAA2B,IAAI,sEAAsE,OAAO,sKAAsK,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQQ,GAA2BR,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,EAAE,IAAI,EAAE,CAAC,EAAE,YAAY,KAAK,WAAW,IAAI,MAAM,wBAAwBA,GAAmB,OAAO,OAAO,yCAAyC,IAAI,sEAAsE,OAAO,sKAAsK,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQQ,GAA2BR,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,EAAE,IAAI,EAAE,CAAC,EAAE,YAAY,KAAK,WAAW,IAAI,MAAM,gBAAgBA,GAAmB,OAAO,OAAO,cAAcA,GAAmB,OAAO,OAAO,wCAAwC,IAAI,sEAAsE,OAAO,sKAAsK,CAAC,CAAC,EAAE,SAAsBpD,EAAK1F,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQsJ,GAA2BR,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,EAAE,IAAI,EAAE,CAAC,EAAE,YAAY,KAAK,WAAW,IAAI,MAAM,wBAAwBA,GAAmB,OAAO,OAAO,yCAAyC,IAAI,sEAAsE,OAAO,sKAAsK,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,CAAC,CAAC,CAAC,EAAeG,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAcvD,EAAKjG,EAAS,CAAC,sBAAsB,GAAK,SAAsBiG,EAAW2D,EAAS,CAAC,SAAsB3D,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,iBAAiB,EAAE,SAAS,eAAe,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,cAAc,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKjG,EAAS,CAAC,sBAAsB,GAAK,SAAsBiG,EAAW2D,EAAS,CAAC,SAAsB3D,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,+BAA+B,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,cAAc,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuD,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcvD,EAAK0D,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQsC,GAA2BR,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,EAAE,KAAK,EAAE,CAAC,EAAE,YAAY,KAAK,WAAW,IAAI,MAAM,WAAWA,GAAmB,OAAO,OAAO,2BAA2B,IAAI,wEAAwE,OAAO,4EAA4E,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQQ,GAA2BR,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,EAAE,IAAI,EAAE,CAAC,EAAE,YAAY,KAAK,WAAW,IAAI,MAAM,wBAAwBA,GAAmB,OAAO,OAAO,yCAAyC,IAAI,wEAAwE,OAAO,4EAA4E,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQQ,GAA2BR,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,EAAE,IAAI,EAAE,CAAC,EAAE,YAAY,KAAK,WAAW,IAAI,MAAM,gBAAgBA,GAAmB,OAAO,OAAO,cAAcA,GAAmB,OAAO,OAAO,wCAAwC,IAAI,wEAAwE,OAAO,4EAA4E,CAAC,CAAC,EAAE,SAAsBpD,EAAK1F,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQsJ,GAA2BR,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,EAAE,IAAI,EAAE,CAAC,EAAE,YAAY,KAAK,WAAW,IAAI,MAAM,wBAAwBA,GAAmB,OAAO,OAAO,yCAAyC,IAAI,wEAAwE,OAAO,4EAA4E,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,CAAC,CAAC,CAAC,EAAeG,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAcvD,EAAKjG,EAAS,CAAC,sBAAsB,GAAK,SAAsBiG,EAAW2D,EAAS,CAAC,SAAsB3D,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,iBAAiB,EAAE,SAAS,YAAY,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,cAAc,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKjG,EAAS,CAAC,sBAAsB,GAAK,SAAsBiG,EAAW2D,EAAS,CAAC,SAAsB3D,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,iCAAiC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,cAAc,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuD,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAClB,EAAa,GAAgBrC,EAAK0D,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQsC,GAA2BR,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,EAAE,IAAI,EAAE,CAAC,EAAE,YAAY,KAAK,WAAW,IAAI,MAAM,wBAAwBA,GAAmB,OAAO,OAAO,yCAAyC,IAAI,uEAAuE,OAAO,wKAAwK,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQQ,GAA2BR,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,EAAE,IAAI,EAAE,CAAC,EAAE,YAAY,KAAK,WAAW,IAAI,MAAM,gBAAgBA,GAAmB,OAAO,OAAO,cAAcA,GAAmB,OAAO,OAAO,wCAAwC,IAAI,uEAAuE,OAAO,wKAAwK,CAAC,CAAC,EAAE,SAAsBpD,EAAK1F,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQsJ,GAA2BR,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,EAAE,IAAI,EAAE,CAAC,EAAE,YAAY,KAAK,WAAW,IAAI,MAAM,wBAAwBA,GAAmB,OAAO,OAAO,yCAAyC,IAAI,uEAAuE,OAAO,wKAAwK,EAAE,UAAU,8BAA8B,mBAAmB,OAAO,CAAC,CAAC,CAAC,EAAEf,EAAa,GAAgBkB,EAAM,MAAM,CAAC,UAAU,8BAA8B,mBAAmB,UAAU,SAAS,CAAcvD,EAAKjG,EAAS,CAAC,sBAAsB,GAAK,SAAsBiG,EAAW2D,EAAS,CAAC,SAAsB3D,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,iBAAiB,EAAE,SAAS,eAAe,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,cAAc,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKjG,EAAS,CAAC,sBAAsB,GAAK,SAAsBiG,EAAW2D,EAAS,CAAC,SAAsB3D,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,0BAA0B,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,cAAc,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,UAAU,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,GAAG6C,GAAW,IAAIC,GAAK,SAAsBS,EAAM,MAAM,CAAC,UAAU,eAAe,mBAAmB,aAAa,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAcvD,EAAK0D,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,GAAG8B,GAAmB,GAAG,GAAG,EAAE,OAAO,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,EAAE,SAAsBpD,EAAKyD,EAA0B,CAAC,OAAO,GAAG,GAAGL,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,SAAsBpD,EAAKnE,GAAgB,CAAC,kBAAkB,CAAC,WAAWqD,EAAY,EAAE,sBAAsB,GAAK,gBAAgBR,GAAY,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,IAAIoE,GAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,0BAA0B,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsB9C,EAAK/D,GAAM,CAAC,UAAU,qBAAqB,UAAU,MAAM,UAAU,gBAAgB,OAAO,OAAO,GAAG,YAAY,UAAU,kEAAkE,SAAS,YAAY,UAAU,qBAAqB,QAAQ,YAAY,UAAU,OAAO,MAAM,OAAO,UAAU,qBAAqB,UAAU,uEAAuE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+D,EAAK9D,GAAe,CAAC,kBAAkB,CAAC,WAAW4B,EAAW,EAAE,sBAAsB,GAAK,gBAAgBqB,GAAY,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,IAAI2D,GAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,EAAE,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsB9C,EAAW2D,EAAS,CAAC,SAAsB3D,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,4BAAuB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,6BAAwB,MAAM,CAAC,OAAO,EAAE,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK0D,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,OAAO8B,GAAmB,OAAO,OAAO,2BAA2B,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,EAAE,EAAE,EAAE,GAAG,EAAE,UAAU,CAAC,MAAM,YAAYA,GAAmB,OAAO,OAAO,2BAA2B,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,GAAG,EAAE,UAAU,CAAC,MAAM,OAAOA,GAAmB,OAAO,OAAO,mBAAmB,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,GAAG,CAAC,EAAE,SAAsBpD,EAAKyD,EAA0B,CAAC,OAAO,IAAI,MAAM,YAAYL,GAAmB,OAAO,OAAO,4BAA4B,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,IAAI,SAAsBpD,EAAKnE,GAAgB,CAAC,kBAAkB,CAAC,WAAWkD,EAAY,EAAE,sBAAsB,GAAK,gBAAgBC,GAAY,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,2BAA2B,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsBgB,EAAK3D,GAAa,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEiG,EAAa,GAAgBiB,EAAM,UAAU,CAAC,UAAU,8BAA8B,mBAAmB,OAAO,GAAGR,GAAW,IAAIC,GAAK,SAAS,CAAcO,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAcvD,EAAK0D,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,GAAG8B,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,CAAC,CAAC,EAAE,SAAsBpD,EAAKyD,EAA0B,CAAC,OAAO,GAAG,GAAGL,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,EAAE,SAAsBpD,EAAKnE,GAAgB,CAAC,kBAAkB,CAAC,WAAWqD,EAAY,EAAE,sBAAsB,GAAK,gBAAgBR,GAAY,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,IAAIsE,GAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,0BAA0B,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsBhD,EAAK/D,GAAM,CAAC,UAAU,qBAAqB,UAAU,eAAe,UAAU,gBAAgB,OAAO,OAAO,GAAG,YAAY,UAAU,kEAAkE,SAAS,YAAY,UAAU,qBAAqB,QAAQ,YAAY,UAAU,OAAO,MAAM,OAAO,UAAU,qBAAqB,UAAU,uEAAuE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+D,EAAK9D,GAAe,CAAC,kBAAkB,CAAC,WAAW4B,EAAW,EAAE,sBAAsB,GAAK,gBAAgBqB,GAAY,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,IAAI6D,GAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,EAAE,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsBhD,EAAW2D,EAAS,CAAC,SAAsB3D,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,4BAA4B,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKyD,EAA0B,CAAC,SAAsBzD,EAAKrG,EAAU,CAAC,UAAU,0BAA0B,SAAsBqG,EAAKzD,GAAM,CAAC,OAAO,OAAO,KAAK;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,YAA+nB,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,KAAK,OAAO,IAAI,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeyD,EAAK0D,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,GAAG8B,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,GAAG,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,CAAC,EAAE,SAAsBpD,EAAKyD,EAA0B,CAAC,OAAO,GAAG,GAAGL,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,KAAK,SAAsBpD,EAAKrG,EAAU,CAAC,UAAU,0BAA0B,SAAsBqG,EAAK7F,GAAQ,CAAC,UAAU,aAAa,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,UAAU,8BAA8B,MAAM,OAAO,UAAU,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe6F,EAAK0D,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,OAAO,IAAI,GAAG8B,GAAmB,GAAG,GAAG,EAAE,MAAM,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,MAAM,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,MAAM,CAAC,EAAE,SAAsBpD,EAAKyD,EAA0B,CAAC,OAAO,IAAI,MAAML,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,SAAsBpD,EAAKrG,EAAU,CAAC,UAAU,2BAA2B,SAAsBqG,EAAK0D,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBtB,EAAKvD,GAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuD,EAAKH,GAAU,CAAC,MAAM,kGAAkG,CAAC,EAAeG,EAAK,MAAM,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQ6D,GAAI,CAAC,kFAAkF,gFAAgF,sVAAsV,oKAAoK,oVAAoV,6UAA6U,+UAA+U,6UAA6U,uSAAuS,8QAA8Q,qKAAqK,qMAAqM,qRAAqR,uRAAuR,qKAAqK,oQAAoQ,4NAA4N,gSAAgS,mTAAmT,8HAA8H,yVAAyV,qJAAqJ,ueAAue,gMAAgM,+LAA+L,gJAAgJ,2TAA2T,kSAAkS,kJAAkJ,yGAAyG,yKAAyK,6FAA6F,6FAA6F,8FAA8F,6FAA6F,8FAA8F,8FAA8F,6FAA6F,2TAA2T,0QAA0Q,oSAAoS,mSAAmS,gSAAgS,iQAAiQ,iRAAiR,8cAA8c,oQAAoQ,uRAAuR,4ZAA4Z,qTAAqT,iMAAiM,2UAA2U,ycAAyc,8jBAA8jB,8ZAA8Z,8bAA8b,kXAAkX,4jBAA4jB,+TAA+T,iSAAiS,qRAAqR,wGAAwG,kWAAkW,gRAAgR,2GAA2G,gyQAAgyQ,GAAeA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,gcAAgc,whEAAwhE,4+IAA4+I,uhGAAuhG,EAUrm+HC,GAAgBC,EAAQxD,GAAUsD,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,OAAOA,GAAgB,aAAa,CAAC,OAAO,KAAK,MAAM,IAAI,EAAEG,EAASH,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,iBAAiB,OAAO,SAAS,MAAM,SAAS,IAAI,8FAA8F,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,IAAI,0GAA0G,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,IAAI,0GAA0G,OAAO,KAAK,CAAC,CAAC,EAAE,GAAG1K,GAAgB,GAAGY,GAAY,GAAGE,GAAa,GAAGK,GAAY,GAAGE,GAAe,GAAGE,GAAY,GAAGE,GAAY,GAAGE,GAAW,GAAGE,GAAa,GAAGE,GAAY,GAAGE,GAAa,GAAGE,GAAY,GAAGE,GAAa,GAAGE,GAAoB,GAAGG,GAAe,GAAGE,GAAW,GAAGI,GAAkB,GAAGE,GAAW,GAAGE,GAAY,GAAG0H,GAAoCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,EACt9F,IAAMC,GAAqB,CAAC,QAAU,CAAC,MAAQ,CAAC,KAAO,SAAS,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,QAAU,CAAC,KAAO,iBAAiB,KAAO,kBAAkB,MAAQ,CAAC,EAAE,YAAc,CAAC,uBAAyB,GAAG,yBAA2B,QAAQ,6BAA+B,OAAO,oCAAsC,oMAA0O,sBAAwB,OAAO,sBAAwB,IAAI,yBAA2B,OAAO,qBAAuB,OAAO,+BAAiC,MAAM,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC",
  "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", "currentTarget", "RenderTarget", "isCanvas", "filteredSlots", "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", "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", "ref5", "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", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "transformTemplate1", "_", "t", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "image", "textBG", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "shYZ8xZ6P", "HJYYGhJC3", "b4EsfMO6DwoijqL5Mw", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "FrameraL1M4pcFt", "withCSS", "aL1M4pcFt_default", "addPropertyControls", "ControlType", "addFonts", "serializationHash", "variantClassNames", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "Image2", "getLoadingLazyAtYPosition", "css", "FramerBYfjwEyLq", "withCSS", "BYfjwEyLq_default", "addFonts", "serializationHash", "variantClassNames", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "SVG", "Image2", "getLoadingLazyAtYPosition", "css", "FramerciUsLNX81", "withCSS", "ciUsLNX81_default", "addFonts", "serializationHash", "variantClassNames", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "Image2", "getLoadingLazyAtYPosition", "css", "FramerEJYMli2vh", "withCSS", "EJYMli2vh_default", "addFonts", "serializationHash", "variantClassNames", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "Image2", "getLoadingLazyAtYPosition", "css", "FramerJA1uj1NUe", "withCSS", "JA1uj1NUe_default", "addFonts", "serializationHash", "variantClassNames", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "Image2", "getLoadingLazyAtYPosition", "css", "Framerjwe_la75H", "withCSS", "jwe_la75H_default", "addFonts", "serializationHash", "variantClassNames", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "Image2", "getLoadingLazyAtYPosition", "css", "FrameroXth8QW9p", "withCSS", "oXth8QW9p_default", "addFonts", "serializationHash", "variantClassNames", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "Image2", "getLoadingLazyAtYPosition", "css", "FramertUuAzSjlI", "withCSS", "tUuAzSjlI_default", "addFonts", "serializationHash", "variantClassNames", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "Image2", "getLoadingLazyAtYPosition", "css", "FramerySy1J882M", "withCSS", "ySy1J882M_default", "addFonts", "fontStore", "fonts", "css", "className", "NavigationFonts", "getFonts", "RG7yJog90_default", "NavigationWithVariantAppearEffect", "withVariantAppearEffect", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "MotionDivWithOptimizedAppearEffect", "motion", "RichTextWithOptimizedAppearEffect", "RichText2", "AvatarFonts", "aL1M4pcFt_default", "ButtonsFonts", "yORaTwldW_default", "ImageWithFXWithOptimizedAppearEffect", "withFX", "Image2", "TickerFonts", "Ticker", "PathlightFonts", "oXth8QW9p_default", "SpliceFonts", "ciUsLNX81_default", "OpenAIFonts", "BYfjwEyLq_default", "TeslaFonts", "jwe_la75H_default", "SpotifyFonts", "tUuAzSjlI_default", "AmazonFonts", "JA1uj1NUe_default", "TodoistFonts", "ySy1J882M_default", "FramerFonts", "EJYMli2vh_default", "Ticker1Fonts", "MotionSectionWithFX", "FeatureSectionFonts", "L8yk06JFc_default", "ContainerWithFX", "CTALaunchFonts", "gCkrcTKxp_default", "BadgeFonts", "SXR9yB_tn_default", "RichTextWithFX", "MotionDivWithFX", "FAQAccordionFonts", "dV7SE9X5q_default", "EmbedFonts", "Embed", "FooterFonts", "qZ_XI3P7P_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "transition1", "animation", "animation1", "transition2", "animation2", "animation3", "transition3", "animation4", "animation5", "animation6", "animation7", "transition4", "animation8", "transition5", "animation9", "addImageAlt", "image", "alt", "transition6", "animation10", "transition7", "animation11", "transition8", "animation12", "animation13", "animation14", "transition9", "transition10", "animation15", "animation16", "transition11", "animation17", "transition12", "transition13", "animation18", "animation19", "transition14", "transition15", "transition16", "transition17", "transition18", "transition19", "transition20", "transition21", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "ref1", "pe", "elementId", "useRouteElementId", "ref2", "ref3", "elementId1", "ref4", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "elementId2", "elementId3", "ref5", "elementId4", "ref6", "elementId5", "ref7", "elementId6", "ref8", "defaultLayoutId", "ae", "useCustomCursors", "componentViewport", "useComponentViewport", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "PropertyOverrides2", "x", "getLoadingLazyAtYPosition", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
