{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/z9LFDX6PKECtSqS68OWD/SlideShow.js", "ssg:https://framerusercontent.com/modules/zinbFZAzHyTKhtboST9p/2Xb1TImERrJu8q1pJOV4/OGa5DOnvu.js", "ssg:https://framerusercontent.com/modules/HsoBBTUg4JPQbUGqlFN6/m92haukqAUGTPFGK1n1H/zstf5cOYg.js", "ssg:https://framerusercontent.com/modules/RwTrSV5vofrmW4a0C6x8/yCFZpPEBoy35CN5aCTYN/IJzal5roY.js"],
  "sourcesContent": ["import{useState,useEffect}from\"react\";export const isBrowser=()=>typeof document===\"object\";export function getBrowserVisibilityProp(){if(!isBrowser())return;if(typeof document.hidden!==\"undefined\"){// Opera 12.10 and Firefox 18 and later support\nreturn\"visibilitychange\";}else if(typeof document.msHidden!==\"undefined\"){return\"msvisibilitychange\";}else if(typeof document.webkitHidden!==\"undefined\"){return\"webkitvisibilitychange\";}}export function getBrowserDocumentHiddenProp(){if(!isBrowser())return;if(typeof document.hidden!==\"undefined\"){return\"hidden\";}else if(typeof document.msHidden!==\"undefined\"){return\"msHidden\";}else if(typeof document.webkitHidden!==\"undefined\"){return\"webkitHidden\";}}export function getIsDocumentHidden(){if(!isBrowser())return;return!document[getBrowserDocumentHiddenProp()];}export function usePageVisibility(){if(!isBrowser())return;const[isVisible,setIsVisible]=useState(getIsDocumentHidden());const onVisibilityChange=()=>setIsVisible(getIsDocumentHidden());useEffect(()=>{const visibilityChange=getBrowserVisibilityProp();document.addEventListener(visibilityChange,onVisibilityChange,false);return()=>{document.removeEventListener(visibilityChange,onVisibilityChange);};});return isVisible;}\nexport const __FramerMetadata__ = {\"exports\":{\"getBrowserVisibilityProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getIsDocumentHidden\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePageVisibility\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"isBrowser\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getBrowserDocumentHiddenProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UsePageVisibility.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement,forwardRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion,animate,useMotionValue,useInView,useTransform,LayoutGroup,wrap,sync,mix}from\"framer-motion\";import{resize}from\"@motionone/dom\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js\";// Using opacity: 0.001 instead of 0 as an LCP hack. (opacity: 0.001 is still 0\n// to a human eye but makes Google think the elements are visible)\nconst OPACITY_0=.001;/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Slideshow(props){/**\n     * Properties\n     */const{slots,startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const hasChildren=Children.count(filteredSlots)>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2B50\uFE0F\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return filteredSlots.map(index=>/*#__PURE__*/createRef());},[filteredSlots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null,viewportLength:null});/* For pausing on hover */const[isHovering,setIsHovering]=useState(false);const[shouldPlayOnHover,setShouldPlayOnHover]=useState(autoPlayControl);/* For cursor updates */const[isMouseDown,setIsMouseDown]=useState(false);/* Check if resizing */const[isResizing,setIsResizing]=useState(false);/**\n     * Array for children\n     */const dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const total=filteredSlots.length-1;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[total].current?isHorizontal?childrenRef[total].current.offsetLeft+childrenRef[total].current.offsetWidth:childrenRef[total].current.offsetTop+childrenRef[total].current.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetWidth:childrenRef[0].current.offsetHeight:0;const itemWidth=childrenRef[0].current?childrenRef[0].current.offsetWidth:0;const itemHeight=childrenRef[0].current?childrenRef[0].current.offsetHeight:0;const viewportLength=isHorizontal?Math.max(document.documentElement.clientWidth||0,window.innerWidth||0,parentRef.current.offsetWidth):Math.max(document.documentElement.clientHeight||0,window.innerHeight||0,parentRef.current.offsetHeight);setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight,viewportLength});}},[hasChildren]);const scheduleMeasure=useCallback(()=>{sync.read(measure);},[measure]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{if(hasChildren)scheduleMeasure();},[hasChildren,itemAmount]);/**\n     * Track whether this is the initial resize event. By default this will fire on mount,\n     * which we do in the useEffect. We should only fire it on subsequent resizes.\n     */let initialResize=useRef(true);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){scheduleMeasure();setIsResizing(true);}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>setIsResizing(false),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length;const childrenSize=isCanvas?0:size===null||size===void 0?void 0:size.children;const itemWithGap=(size===null||size===void 0?void 0:size.item)+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);/* Check for browser window visibility *//* Otherwise, it will re-play all the item increments */const visibilityRef=useRef(null);const isInView=useInView(visibilityRef);const isVisible=usePageVisibility()&&isInView;const factor=isInverted?1:-1;/* The x and y values to start from */const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */const canvasPosition=isHorizontal?-startFrom*((size===null||size===void 0?void 0:size.itemWidth)+gap):-startFrom*((size===null||size===void 0?void 0:size.itemHeight)+gap);/* Calculate the new value to animate to */const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping *//* Instead of 0 to a negative full duplicated row, we start with an offset */const wrappedValue=!isCanvas?useTransform(xOrY,value=>{const wrapped=wrap(-childrenSize,-childrenSize*2,value);return isNaN(wrapped)?0:wrapped;}):0;/* Convert the current item to a wrapping index for dots */const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point *//* The subtraction of a full row of children is for overflow */useLayoutEffect(()=>{if((size===null||size===void 0?void 0:size.children)===null)return;/* Initial measure */// if (initialResize.current) {\n//     xOrY.set((childrenSize + itemOffset) * factor)\n// }\n/* Subsequent resizes */if(!initialResize.current&&isResizing){xOrY.set(newPosition());}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     *//* Next and previous function, animates the X */const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent||isDragging)return;if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover){timeoutRef.current=setTimeout(()=>{setCurrentItem(currentItem+1);switchPages();},intervalControl*1e3);}};/* Page navigation functions */const setDelta=delta=>{if(!isInverted){setCurrentItem(currentItem+delta);}else{setCurrentItem(currentItem-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){setCurrentItem(currentItem+goto);}else{setCurrentItem(currentItem-gotoInverted);}};/**\n     * Drag\n     */const handleDragStart=()=>{setIsDragging(true);};const handleDragEnd=(event,{offset,velocity})=>{setIsDragging(false);const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200// Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch *//* For velocity use only */const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne);}else{/* For dragging over half of the current item with 0 velocity */if(isHalfOfNext){setDelta(itemDelta);}if(isHalfOfPrev){setDelta(-itemDelta);}}};/* Kickstart the auto-playing once we have all the children */useEffect(()=>{if(!isVisible||isResizing)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */let childCounter=0;/**\n     * Sizing\n     * */let columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */for(let index=0;index<duplicateBy;index++){dupedChildren.push(...Children.map(filteredSlots,(child,childIndex)=>{let ref;if(childIndex===0){ref=childrenRef[0];}if(childIndex===filteredSlots.length-1){ref=childrenRef[1];}return /*#__PURE__*/_jsx(Slide,{ref:childrenRef[childIndex],slideKey:index+childIndex+\"lg\",index:index,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */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}%)`;/**\n     * Dots\n     */const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<(filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length);i++){dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted},i));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/_jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:(size===null||size===void 0?void 0:size.item)!==null?1:OPACITY_0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();setIsMouseDown(true);},onMouseUp:()=>setIsMouseDown(false),ref:visibilityRef,children:[/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective:isCanvas?\"none\":effectsPerspective},children:/*#__PURE__*/_jsx(motion.ul,{ref:parentRef,...dragProps,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0&&!isCanvas?\"preserve-3d\":undefined,cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedChildren})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/_jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?OPACITY_0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:OPACITY_0},transition:transitionControl,children:[/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",alt:\"Back Arrow\"})}),/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})})]}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,userSelect:\"none\",...dotsBlurStyle},children:dots}):null]})]});}/* Default Properties */Slideshow.defaultProps={direction:\"left\",dragControl:false,startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},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\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover}}},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},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},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;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\"],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\"],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component 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:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */const Slide=/*#__PURE__*/forwardRef(function Component(props,ref){var _child_props,_child_props1;const{slideKey,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;/**\n     * Unique offsets + scroll range [0, 1, 1, 0]\n     */const childOffset=((size===null||size===void 0?void 0:size.item)+gap)*childCounter;const scrollRange=[-(size===null||size===void 0?void 0:size.item),0,(size===null||size===void 0?void 0:size.parent)-(size===null||size===void 0?void 0:size.item)+gap,size===null||size===void 0?void 0:size.parent].map(val=>val-childOffset);/**\n     * Effects\n     */const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.onChange(newValue=>{var _ref_current;(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.setAttribute(\"aria-hidden\",!newValue);});},[]);const visibility=isCanvas?\"visible\":useTransform(wrappedValue,[scrollRange[0]-size.viewportLength,mix(scrollRange[1],scrollRange[2],.5),scrollRange[3]+size.viewportLength],[\"hidden\",\"visible\",\"hidden\"]);return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/cloneElement(child,{ref:ref,key:slideKey+\"child\",style:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.style,flexShrink:0,userSelect:\"none\",width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0,visibility},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.children)})});});function Dot({selectedOpacity,opacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item *//* Go 0\u20141\u20142\u20143\u20144\u20145\u20140 */let isSelected=wrappedIndex===index;/* Go 0\u20145\u20144\u20143\u20142\u20141\u20140\u20145 instead when inverted */if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;let top=!isHorizontal&&index>0?inlinePadding:padding;let bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;let right=isHorizontal&&index!==total-1?inlinePadding:padding;let left=isHorizontal&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle},initial:false,animate:{opacity:isSelected?selectedOpacity:opacity},transition:{duration:.3}})});}/* Dot Styles */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (c56cc2c)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/yevww260oHitAFGt4Ffa/Ticker.js\";const TickerFonts=getFonts(Ticker);const serializationHash=\"framer-L4Wwe\";const variantClassNames={Yeweg8nyE:\"framer-v-1eqe9lt\"};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 transformTemplate2=(_,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:\"Yeweg8nyE\",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-1eqe9lt\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"Yeweg8nyE\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1t551xw-container\",layoutDependency:layoutDependency,layoutId:\"bKIvaIQRb-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:12,height:\"100%\",hoverFactor:1,id:\"bKIvaIQRb\",layoutId:\"bKIvaIQRb\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-nhafec\",\"data-framer-name\":\"TMC\",layoutDependency:layoutDependency,layoutId:\"SGJbWuv8l\",style:{backgroundColor:\"rgba(255, 255, 255, 0)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:127.49999810010198,intrinsicWidth:240.62499641440814,pixelHeight:111,pixelWidth:209,src:\"https://framerusercontent.com/images/t4qCK52DH5hZHyO6EtN2PbqKg4.png\"},className:\"framer-9pgpaq\",\"data-framer-name\":\"TMC Logo\",layoutDependency:layoutDependency,layoutId:\"Uvpl8qUPG\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kuby7x\",\"data-framer-name\":\"Siegelman\",layoutDependency:layoutDependency,layoutId:\"QQprfQzoE\",style:{backgroundColor:\"rgba(255, 255, 255, 0)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:164.99999754130843,intrinsicWidth:229.3749965820462,pixelHeight:144,pixelWidth:200,src:\"https://framerusercontent.com/images/9QoLWj9fbAI7BS8WgUYKDf3XEY.png\"},className:\"framer-1hrqrz8\",\"data-framer-name\":\"Siegelman Logo\",layoutDependency:layoutDependency,layoutId:\"wv1pWoGO4\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1s55j3b\",\"data-framer-name\":\"ROCNATION\",layoutDependency:layoutDependency,layoutId:\"xdP5fy8ir\",style:{backgroundColor:\"rgba(255, 255, 255, 0)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:127.49999810010198,intrinsicWidth:240.62499641440814,pixelHeight:48,pixelWidth:315,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/DSIrjTnwVDt2j3TU1tVzejdoQJU.png\"},className:\"framer-17us0dz\",\"data-framer-name\":\"TMC Logo\",layoutDependency:layoutDependency,layoutId:\"kfozQTIBk\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-nb1fyo\",\"data-framer-name\":\"ICE\",layoutDependency:layoutDependency,layoutId:\"tKvwYHpq9\",style:{backgroundColor:\"rgba(255, 255, 255, 0)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:188.12499719671908,intrinsicWidth:269.37499598599976,pixelHeight:164,pixelWidth:234,src:\"https://framerusercontent.com/images/nOPxofV6PoBfBgm0iW1vFpydI.png\"},className:\"framer-1q4nouj\",\"data-framer-name\":\"Ice Logo\",layoutDependency:layoutDependency,layoutId:\"EqRIdYPW2\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-7wm856\",\"data-framer-name\":\"Stagwell\",layoutDependency:layoutDependency,layoutId:\"wPNE_FSZM\",style:{backgroundColor:\"rgba(255, 255, 255, 0)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:127.49999810010198,intrinsicWidth:240.62499641440814,pixelHeight:63,pixelWidth:339,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/PpyMwLy3n7gygKJSRdnsByCnI.png\"},className:\"framer-qcil7z\",\"data-framer-name\":\"TMC Logo\",layoutDependency:layoutDependency,layoutId:\"JxqrcLcm5\",transformTemplate:transformTemplate2})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-voeny0\",\"data-framer-name\":\"Seek One\",layoutDependency:layoutDependency,layoutId:\"SkaOQ7I4p\",style:{backgroundColor:\"rgba(255, 255, 255, 0)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:236.24999647960072,intrinsicWidth:235.62499648891395,pixelHeight:201,pixelWidth:201,src:\"https://framerusercontent.com/images/SEqsjwqR8TZaD7nKeqE8tHC5BI.png\"},className:\"framer-183jrle\",\"data-framer-name\":\"Seek One Logo\",layoutDependency:layoutDependency,layoutId:\"h8qEOEwtB\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bcdkuj\",\"data-framer-name\":\"Blake Jamieson\",layoutDependency:layoutDependency,layoutId:\"Rk5s5Jcvs\",style:{backgroundColor:\"rgba(255, 255, 255, 0)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:127.49999810010198,intrinsicWidth:373.1249944400043,pixelHeight:201,pixelWidth:584,sizes:\"99px\",src:\"https://framerusercontent.com/images/YS2im3aIQiROTE85fMqOTCxvKk.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/YS2im3aIQiROTE85fMqOTCxvKk.png?scale-down-to=512 512w,https://framerusercontent.com/images/YS2im3aIQiROTE85fMqOTCxvKk.png 584w\"},className:\"framer-ttjycm\",\"data-framer-name\":\"Blake Jamieson Logo\",layoutDependency:layoutDependency,layoutId:\"LxLIafHjl\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1adcn8e\",\"data-framer-name\":\"VII(N)\",layoutDependency:layoutDependency,layoutId:\"koz3CsEDH\",style:{backgroundColor:\"rgba(255, 255, 255, 0)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:127.49999810010198,intrinsicWidth:240.62499641440814,pixelHeight:250,pixelWidth:396,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/WHcireNJiT9qx6ByAa8JWSh0EuE.png\"},className:\"framer-1ditrsc\",\"data-framer-name\":\"TMC Logo\",layoutDependency:layoutDependency,layoutId:\"q0akUNap6\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hmyri1\",\"data-framer-name\":\"Art Mobb\",layoutDependency:layoutDependency,layoutId:\"ylcPuS6o2\",style:{backgroundColor:\"rgba(255, 255, 255, 0)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:157.49999765306714,intrinsicWidth:342.49999489635235,pixelHeight:138,pixelWidth:298,src:\"https://framerusercontent.com/images/4G1nexl4GEFsVPx5pc3EolxyzNA.png\"},className:\"framer-l2qezp\",\"data-framer-name\":\"Art Mobb Logo\",layoutDependency:layoutDependency,layoutId:\"lZwmXET5N\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-sc412h\",\"data-framer-name\":\"Terry Urban\",layoutDependency:layoutDependency,layoutId:\"HucFXSpSE\",style:{backgroundColor:\"rgba(255, 255, 255, 0)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:211.24999685212975,intrinsicWidth:288.74999569728976,pixelHeight:183,pixelWidth:251,src:\"https://framerusercontent.com/images/qNPDydtmcrit2KAx7ANfRiIjCb0.png\"},className:\"framer-1kofnvr\",\"data-framer-name\":\"Terry Urban Logo\",layoutDependency:layoutDependency,layoutId:\"AOdhT_d8d\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-x7e4kf\",\"data-framer-name\":\"For Those Who Sin\",layoutDependency:layoutDependency,layoutId:\"ycy_SaWze\",style:{backgroundColor:\"rgba(255, 255, 255, 0)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:74.99999888241292,intrinsicWidth:430.6249935831876,pixelHeight:66,pixelWidth:374,src:\"https://framerusercontent.com/images/DU8cH5qV014ctTreoKgwwlIbgw.png\"},className:\"framer-4eejwl\",\"data-framer-name\":\"FTWS Logo\",layoutDependency:layoutDependency,layoutId:\"GOr72F4II\",transformTemplate:transformTemplate1})})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-L4Wwe.framer-3c8nsw, .framer-L4Wwe .framer-3c8nsw { display: block; }\",\".framer-L4Wwe.framer-1eqe9lt { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 78px; justify-content: center; padding: 0px; position: relative; width: 683px; }\",\".framer-L4Wwe .framer-1t551xw-container { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-L4Wwe .framer-nhafec { height: 89px; overflow: hidden; position: relative; width: 66px; }\",\".framer-L4Wwe .framer-9pgpaq { aspect-ratio: 1.8872549019607843 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 21px); left: 49%; overflow: visible; position: absolute; top: 48%; width: 39px; }\",\".framer-L4Wwe .framer-1kuby7x { height: 105px; overflow: hidden; position: relative; width: 58px; }\",\".framer-L4Wwe .framer-1hrqrz8 { aspect-ratio: 1.3901515151515154 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); left: 50%; overflow: visible; position: absolute; top: 50%; width: 44px; }\",\".framer-L4Wwe .framer-1s55j3b { height: 89px; overflow: hidden; position: relative; width: 114px; }\",\".framer-L4Wwe .framer-17us0dz { aspect-ratio: 1.8872549019607843 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 50px); left: 49%; overflow: visible; position: absolute; top: 48%; width: 93px; }\",\".framer-L4Wwe .framer-nb1fyo { height: 122px; overflow: hidden; position: relative; width: 71px; }\",\".framer-L4Wwe .framer-1q4nouj { aspect-ratio: 1.4318936877076414 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); left: 50%; overflow: visible; position: absolute; top: 50%; width: 43px; }\",\".framer-L4Wwe .framer-7wm856 { height: 73px; overflow: hidden; position: relative; width: 156px; }\",\".framer-L4Wwe .framer-qcil7z { aspect-ratio: 1.8872549019607843 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 58px); left: 49%; overflow: visible; position: absolute; top: 9px; width: 70%; }\",\".framer-L4Wwe .framer-voeny0 { height: 188px; overflow: hidden; position: relative; width: 59px; }\",\".framer-L4Wwe .framer-183jrle { flex: none; height: 40px; left: calc(50.27624309392268% - 50px / 2); overflow: visible; position: absolute; top: calc(49.468085106383% - 40px / 2); width: 50px; }\",\".framer-L4Wwe .framer-1bcdkuj { height: 108px; overflow: hidden; position: relative; width: 120px; }\",\".framer-L4Wwe .framer-ttjycm { aspect-ratio: 2.926470588235294 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 34px); left: 49%; overflow: visible; position: absolute; top: 50%; width: 99px; }\",\".framer-L4Wwe .framer-1adcn8e { height: 89px; overflow: hidden; position: relative; width: 96px; }\",\".framer-L4Wwe .framer-1ditrsc { aspect-ratio: 1.8872549019607843 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 36px); left: 48%; overflow: visible; position: absolute; top: 51%; width: 68px; }\",\".framer-L4Wwe .framer-1hmyri1 { height: 105px; overflow: hidden; position: relative; width: 88px; }\",\".framer-L4Wwe .framer-l2qezp { aspect-ratio: 2.1746031746031744 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 38px); left: 50%; overflow: visible; position: absolute; top: 50%; width: 82px; }\",\".framer-L4Wwe .framer-sc412h { height: 135px; overflow: hidden; position: relative; width: 79px; }\",\".framer-L4Wwe .framer-1kofnvr { aspect-ratio: 1.3668639053254437 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 41px); left: 50%; overflow: visible; position: absolute; top: 50%; width: 55px; }\",\".framer-L4Wwe .framer-x7e4kf { height: 73px; overflow: hidden; position: relative; width: 132px; }\",\".framer-L4Wwe .framer-4eejwl { aspect-ratio: 5.741666666666667 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); left: 50%; overflow: visible; position: absolute; top: 51%; width: 115px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-L4Wwe.framer-1eqe9lt { gap: 0px; } .framer-L4Wwe.framer-1eqe9lt > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-L4Wwe.framer-1eqe9lt > :first-child { margin-top: 0px; } .framer-L4Wwe.framer-1eqe9lt > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 78\n * @framerIntrinsicWidth 683\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerOGa5DOnvu=withCSS(Component,css,\"framer-L4Wwe\");export default FramerOGa5DOnvu;FramerOGa5DOnvu.displayName=\"Client Ticker Mobile\";FramerOGa5DOnvu.defaultProps={height:78,width:683};addFonts(FramerOGa5DOnvu,[{explicitInter:true,fonts:[]},...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerOGa5DOnvu\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"683\",\"framerIntrinsicHeight\":\"78\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./OGa5DOnvu.map", "// Generated by Framer (c56cc2c)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/yevww260oHitAFGt4Ffa/Ticker.js\";const TickerFonts=getFonts(Ticker);const serializationHash=\"framer-Rmf4E\";const variantClassNames={lWJMkJasz:\"framer-v-twmkj9\"};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:\"lWJMkJasz\",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-twmkj9\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"lWJMkJasz\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1q7efhx-container\",layoutDependency:layoutDependency,layoutId:\"tR7D93uyj-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:40,height:\"100%\",hoverFactor:1,id:\"tR7D93uyj\",layoutId:\"tR7D93uyj\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-3m9hki\",\"data-framer-name\":\"TMC\",layoutDependency:layoutDependency,layoutId:\"UGdtzRL3J\",style:{backgroundColor:\"rgba(255, 255, 255, 0)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:127.49999810010198,intrinsicWidth:240.62499641440814,pixelHeight:111,pixelWidth:209,src:\"https://framerusercontent.com/images/t4qCK52DH5hZHyO6EtN2PbqKg4.png\"},className:\"framer-csujyo\",\"data-framer-name\":\"TMC Logo\",layoutDependency:layoutDependency,layoutId:\"soIKpnvIZ\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-n5mls3\",\"data-framer-name\":\"Siegelman\",layoutDependency:layoutDependency,layoutId:\"FFI7ycjsQ\",style:{backgroundColor:\"rgba(255, 255, 255, 0)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:164.99999754130843,intrinsicWidth:229.3749965820462,pixelHeight:144,pixelWidth:200,src:\"https://framerusercontent.com/images/9QoLWj9fbAI7BS8WgUYKDf3XEY.png\"},className:\"framer-15cvatr\",\"data-framer-name\":\"Siegelman Logo\",layoutDependency:layoutDependency,layoutId:\"nvF2B3PIG\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1228,intrinsicWidth:1541,pixelHeight:2456,pixelWidth:3082,sizes:\"68px\",src:\"https://framerusercontent.com/images/TddzWgmRkP7XioCxpXUhhAXluZQ.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/TddzWgmRkP7XioCxpXUhhAXluZQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/TddzWgmRkP7XioCxpXUhhAXluZQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/TddzWgmRkP7XioCxpXUhhAXluZQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/TddzWgmRkP7XioCxpXUhhAXluZQ.png 3082w\"},className:\"framer-qx32x4\",\"data-framer-name\":\"Eastside Golf Logo\",layoutDependency:layoutDependency,layoutId:\"jSD74vnVn\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1x0p4o6\",\"data-framer-name\":\"ICE\",layoutDependency:layoutDependency,layoutId:\"SUAXznuhS\",style:{backgroundColor:\"rgba(255, 255, 255, 0)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:188.12499719671908,intrinsicWidth:269.37499598599976,pixelHeight:164,pixelWidth:234,src:\"https://framerusercontent.com/images/nOPxofV6PoBfBgm0iW1vFpydI.png\"},className:\"framer-rdg4nb\",\"data-framer-name\":\"Ice Logo\",layoutDependency:layoutDependency,layoutId:\"bAymF_geV\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xf7fmy\",\"data-framer-name\":\"Stagwell\",layoutDependency:layoutDependency,layoutId:\"ml1_m_Mu2\",style:{backgroundColor:\"rgba(255, 255, 255, 0)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:127.49999810010198,intrinsicWidth:240.62499641440814,pixelHeight:63,pixelWidth:339,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/PpyMwLy3n7gygKJSRdnsByCnI.png\"},className:\"framer-zhz6mf\",\"data-framer-name\":\"TMC Logo\",layoutDependency:layoutDependency,layoutId:\"KHFQRpgbr\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-10rip74\",\"data-framer-name\":\"Seek One\",layoutDependency:layoutDependency,layoutId:\"ZEoTM_2yh\",style:{backgroundColor:\"rgba(255, 255, 255, 0)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:236.24999647960072,intrinsicWidth:235.62499648891395,pixelHeight:201,pixelWidth:201,src:\"https://framerusercontent.com/images/SEqsjwqR8TZaD7nKeqE8tHC5BI.png\"},className:\"framer-pyb9lq\",\"data-framer-name\":\"Seek One Logo\",layoutDependency:layoutDependency,layoutId:\"p9JDI6R2b\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1m8b442\",\"data-framer-name\":\"Blake Jamieson\",layoutDependency:layoutDependency,layoutId:\"JFGvtTzjx\",style:{backgroundColor:\"rgba(255, 255, 255, 0)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:127.49999810010198,intrinsicWidth:373.1249944400043,pixelHeight:201,pixelWidth:584,sizes:\"128px\",src:\"https://framerusercontent.com/images/YS2im3aIQiROTE85fMqOTCxvKk.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/YS2im3aIQiROTE85fMqOTCxvKk.png?scale-down-to=512 512w,https://framerusercontent.com/images/YS2im3aIQiROTE85fMqOTCxvKk.png 584w\"},className:\"framer-23wuw8\",\"data-framer-name\":\"Blake Jamieson Logo\",layoutDependency:layoutDependency,layoutId:\"IsXEaz4I_\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-o9vysa\",\"data-framer-name\":\"VII(N)\",layoutDependency:layoutDependency,layoutId:\"vKnl6MoI0\",style:{backgroundColor:\"rgba(255, 255, 255, 0)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:127.49999810010198,intrinsicWidth:240.62499641440814,pixelHeight:250,pixelWidth:396,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/WHcireNJiT9qx6ByAa8JWSh0EuE.png\"},className:\"framer-p6dp2v\",\"data-framer-name\":\"TMC Logo\",layoutDependency:layoutDependency,layoutId:\"ZLupNvckU\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-al3y4b\",\"data-framer-name\":\"Art Mobb\",layoutDependency:layoutDependency,layoutId:\"YZbl7jUsd\",style:{backgroundColor:\"rgba(255, 255, 255, 0)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:157.49999765306714,intrinsicWidth:342.49999489635235,pixelHeight:138,pixelWidth:298,src:\"https://framerusercontent.com/images/4G1nexl4GEFsVPx5pc3EolxyzNA.png\"},className:\"framer-83iums\",\"data-framer-name\":\"Art Mobb Logo\",layoutDependency:layoutDependency,layoutId:\"giaHsx9CV\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-tl10ux\",\"data-framer-name\":\"Terry Urban\",layoutDependency:layoutDependency,layoutId:\"UriPzhwP3\",style:{backgroundColor:\"rgba(255, 255, 255, 0)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:211.24999685212975,intrinsicWidth:288.74999569728976,pixelHeight:183,pixelWidth:251,src:\"https://framerusercontent.com/images/qNPDydtmcrit2KAx7ANfRiIjCb0.png\"},className:\"framer-1fqbsqi\",\"data-framer-name\":\"Terry Urban Logo\",layoutDependency:layoutDependency,layoutId:\"uaLZHhwHC\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1g60p0h\",\"data-framer-name\":\"For Those Who Sin\",layoutDependency:layoutDependency,layoutId:\"esHr35mMk\",style:{backgroundColor:\"rgba(255, 255, 255, 0)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:74.99999888241292,intrinsicWidth:430.6249935831876,pixelHeight:66,pixelWidth:374,src:\"https://framerusercontent.com/images/DU8cH5qV014ctTreoKgwwlIbgw.png\"},className:\"framer-aon0u4\",\"data-framer-name\":\"FTWS Logo\",layoutDependency:layoutDependency,layoutId:\"DFz6DTB17\",transformTemplate:transformTemplate1})})],speed:35,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Rmf4E.framer-1bkb52i, .framer-Rmf4E .framer-1bkb52i { display: block; }\",\".framer-Rmf4E.framer-twmkj9 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 78px; justify-content: center; padding: 0px; position: relative; width: 922px; }\",\".framer-Rmf4E .framer-1q7efhx-container { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-Rmf4E .framer-3m9hki { height: 89px; overflow: hidden; position: relative; width: 78px; }\",\".framer-Rmf4E .framer-csujyo { aspect-ratio: 1.8872549019607843 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); left: 49%; overflow: visible; position: absolute; top: 48%; width: 59px; }\",\".framer-Rmf4E .framer-n5mls3 { height: 105px; overflow: hidden; position: relative; width: 94px; }\",\".framer-Rmf4E .framer-15cvatr { aspect-ratio: 1.3901515151515154 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 52px); left: 50%; overflow: visible; position: absolute; top: 50%; width: 72px; }\",\".framer-Rmf4E .framer-qx32x4 { aspect-ratio: 1.254885993485342 / 1; height: var(--framer-aspect-ratio-supported, 54px); overflow: visible; position: relative; width: 68px; }\",\".framer-Rmf4E .framer-1x0p4o6 { height: 122px; overflow: hidden; position: relative; width: 87px; }\",\".framer-Rmf4E .framer-rdg4nb { aspect-ratio: 1.4318936877076414 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 46px); left: 50%; overflow: visible; position: absolute; top: 50%; width: 65px; }\",\".framer-Rmf4E .framer-1xf7fmy, .framer-Rmf4E .framer-o9vysa { height: 89px; overflow: hidden; position: relative; width: 141px; }\",\".framer-Rmf4E .framer-zhz6mf, .framer-Rmf4E .framer-p6dp2v { aspect-ratio: 1.8872549019607843 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 59px); left: 50%; overflow: visible; position: absolute; top: 48%; width: 78%; }\",\".framer-Rmf4E .framer-10rip74 { height: 188px; overflow: hidden; position: relative; width: 79px; }\",\".framer-Rmf4E .framer-pyb9lq { flex: none; height: 58px; left: calc(50.27624309392268% - 66px / 2); overflow: visible; position: absolute; top: calc(49.468085106383% - 58px / 2); width: 66px; }\",\".framer-Rmf4E .framer-1m8b442 { height: 108px; overflow: hidden; position: relative; width: 148px; }\",\".framer-Rmf4E .framer-23wuw8 { aspect-ratio: 2.926470588235294 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 44px); left: 49%; overflow: visible; position: absolute; top: 50%; width: 128px; }\",\".framer-Rmf4E .framer-al3y4b { height: 105px; overflow: hidden; position: relative; width: 108px; }\",\".framer-Rmf4E .framer-83iums { aspect-ratio: 2.1746031746031744 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 46px); left: 50%; overflow: visible; position: absolute; top: 50%; width: 100px; }\",\".framer-Rmf4E .framer-tl10ux { height: 135px; overflow: hidden; position: relative; width: 93px; }\",\".framer-Rmf4E .framer-1fqbsqi { aspect-ratio: 1.3668639053254437 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 46px); left: 50%; overflow: visible; position: absolute; top: 50%; width: 63px; }\",\".framer-Rmf4E .framer-1g60p0h { height: 73px; overflow: hidden; position: relative; width: 166px; }\",\".framer-Rmf4E .framer-aon0u4 { aspect-ratio: 5.741666666666667 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 26px); left: 50%; overflow: visible; position: absolute; top: 51%; width: 150px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Rmf4E.framer-twmkj9 { gap: 0px; } .framer-Rmf4E.framer-twmkj9 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Rmf4E.framer-twmkj9 > :first-child { margin-top: 0px; } .framer-Rmf4E.framer-twmkj9 > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 78\n * @framerIntrinsicWidth 922\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerzstf5cOYg=withCSS(Component,css,\"framer-Rmf4E\");export default Framerzstf5cOYg;Framerzstf5cOYg.displayName=\"Client Ticker\";Framerzstf5cOYg.defaultProps={height:78,width:922};addFonts(Framerzstf5cOYg,[{explicitInter:true,fonts:[]},...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerzstf5cOYg\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"922\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"78\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./zstf5cOYg.map", "// Generated by Framer (a793b9c)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/qXyG1UgqGGx5DS4G9abM/Smooth_Scroll.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/z9LFDX6PKECtSqS68OWD/SlideShow.js\";import BlogItem from\"#framer/local/canvasComponent/hxL3fA4US/hxL3fA4US.js\";import Button from\"#framer/local/canvasComponent/iWMBnFiRp/iWMBnFiRp.js\";import Navbar from\"#framer/local/canvasComponent/jBP1HwFMI/jBP1HwFMI.js\";import AnnouncementMarquee from\"#framer/local/canvasComponent/jgS4p9VL6/jgS4p9VL6.js\";import FooterButton from\"#framer/local/canvasComponent/mLrgrUyAd/mLrgrUyAd.js\";import ButtonOffWhite from\"#framer/local/canvasComponent/MXSEdI1dH/MXSEdI1dH.js\";import ClientTickerMobile from\"#framer/local/canvasComponent/OGa5DOnvu/OGa5DOnvu.js\";import Footer from\"#framer/local/canvasComponent/WncVwUrUZ/WncVwUrUZ.js\";import ClientTicker from\"#framer/local/canvasComponent/zstf5cOYg/zstf5cOYg.js\";import Blog from\"#framer/local/collection/RLcHvzz5Q/RLcHvzz5Q.js\";import*as sharedStyle1 from\"#framer/local/css/fzqKGtDI2/fzqKGtDI2.js\";import*as sharedStyle from\"#framer/local/css/QIN_GQceQ/QIN_GQceQ.js\";import*as sharedStyle2 from\"#framer/local/css/RQrYOak_S/RQrYOak_S.js\";import*as sharedStyle3 from\"#framer/local/css/TmDXdvEuJ/TmDXdvEuJ.js\";import*as sharedStyle4 from\"#framer/local/css/YUNBbbn6y/YUNBbbn6y.js\";import metadataProvider from\"#framer/local/webPageMetadata/IJzal5roY/IJzal5roY.js\";const SmoothScrollFonts=getFonts(SmoothScroll);const NavbarFonts=getFonts(Navbar);const AnnouncementMarqueeFonts=getFonts(AnnouncementMarquee);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const ButtonOffWhiteFonts=getFonts(ButtonOffWhite);const SlideshowFonts=getFonts(Slideshow);const ClientTickerFonts=getFonts(ClientTicker);const ClientTickerMobileFonts=getFonts(ClientTickerMobile);const ButtonFonts=getFonts(Button);const YouTubeFonts=getFonts(YouTube);const FooterButtonFonts=getFonts(FooterButton);const BlogItemFonts=getFonts(BlogItem);const FooterFonts=getFonts(Footer);const breakpoints={feLlb_vMS:\"(max-width: 767px)\",nFM34hGIr:\"(min-width: 768px) and (max-width: 1429px)\",x2B4b2nPK:\"(min-width: 1430px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-gvVZj\";const variantClassNames={feLlb_vMS:\"framer-v-dqo238\",nFM34hGIr:\"framer-v-3z3tmw\",x2B4b2nPK:\"framer-v-dap5d0\"};const transition1={damping:30,delay:0,mass:1,stiffness:100,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:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:100};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation2={opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"x2B4b2nPK\",Phone:\"feLlb_vMS\",Tablet:\"nFM34hGIr\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"x2B4b2nPK\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,cJBp6BGIYZxvpUN66K,NDXJ4aZbDZxvpUN66K,HmPrvqiW1ZxvpUN66K,go6FY7IjDZxvpUN66K,nWgS0pKk7ZxvpUN66K,idZxvpUN66K,...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];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"Ddl253ByO\");const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"feLlb_vMS\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"feLlb_vMS\")return true;return false;};const router=useRouter();const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"nFM34hGIr\")return true;return false;};const isDisplayed3=()=>{if(!isBrowser())return true;if([\"feLlb_vMS\",\"nFM34hGIr\"].includes(baseVariant))return false;return true;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"x2B4b2nPK\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-3d5710ea-3913-4df0-b6b9-41509158f0c8, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-dap5d0\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-zxzekv-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"d95vFpSOU\",scopeId:\"IJzal5roY\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"d95vFpSOU\",intensity:10,layoutId:\"d95vFpSOU\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{feLlb_vMS:{y:-1},nFM34hGIr:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+200,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{feLlb_vMS:{layoutScroll:true}},children:/*#__PURE__*/_jsx(Container,{className:\"framer-anymak-container\",id:elementId,nodeId:\"Ddl253ByO\",ref:ref1,scopeId:\"IJzal5roY\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{feLlb_vMS:{variant:\"G8I6PSGs3\"}},children:/*#__PURE__*/_jsx(Navbar,{height:\"100%\",id:\"Ddl253ByO\",layoutId:\"Ddl253ByO\",style:{width:\"100%\"},variant:\"OTBfATfds\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{feLlb_vMS:{y:(componentViewport?.y||0)+55+200},nFM34hGIr:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+255,children:/*#__PURE__*/_jsx(Container,{className:\"framer-12pqv86-container\",nodeId:\"HCxQylhlW\",scopeId:\"IJzal5roY\",children:/*#__PURE__*/_jsx(AnnouncementMarquee,{height:\"100%\",id:\"HCxQylhlW\",layoutId:\"HCxQylhlW\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{feLlb_vMS:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+55+245),pixelHeight:9189,pixelWidth:6126,positionX:\"center\",positionY:\"bottom\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/BsviQiLlbIS5goUj3jpKhLQ.jpg\",srcSet:\"https://framerusercontent.com/images/BsviQiLlbIS5goUj3jpKhLQ.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/BsviQiLlbIS5goUj3jpKhLQ.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/BsviQiLlbIS5goUj3jpKhLQ.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/BsviQiLlbIS5goUj3jpKhLQ.jpg 6126w\"}}},children:/*#__PURE__*/_jsx(\"header\",{background:{alt:\"\",fit:\"fill\",positionX:\"center\",positionY:\"center\"},className:\"framer-1gdoua5\",\"data-framer-name\":\"Header\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-18j2x7o-container\",isModuleExternal:true,nodeId:\"QGwlc4_2W\",scopeId:\"IJzal5roY\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"QGwlc4_2W\",intervalControl:5,itemAmount:1,layoutId:\"QGwlc4_2W\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsxs(Image,{as:\"header\",background:{alt:\"\",fit:\"fill\",pixelHeight:4259,pixelWidth:5678,positionX:\"center\",positionY:\"center\",sizes:\"1430px\",src:\"https://framerusercontent.com/images/l9TzPeCEOcODWm4VeVIKlWUWeQ.jpg\",srcSet:\"https://framerusercontent.com/images/l9TzPeCEOcODWm4VeVIKlWUWeQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/l9TzPeCEOcODWm4VeVIKlWUWeQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/l9TzPeCEOcODWm4VeVIKlWUWeQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/l9TzPeCEOcODWm4VeVIKlWUWeQ.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/l9TzPeCEOcODWm4VeVIKlWUWeQ.jpg 5678w\"},className:\"framer-9x9thm\",\"data-framer-name\":\"The Next Generation of Hat Culture\",children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1kw8awr\",\"data-styles-preset\":\"QIN_GQceQ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-3d5710ea-3913-4df0-b6b9-41509158f0c8, rgb(255, 255, 255))\"},children:\"Fashion Meets Tech\"})}),className:\"framer-1j6kj54\",\"data-framer-appear-id\":\"1j6kj54\",fonts:[\"Inter\"],initial:animation1,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-9bfe56\",\"data-styles-preset\":\"fzqKGtDI2\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-3d5710ea-3913-4df0-b6b9-41509158f0c8, rgb(255, 255, 255))\"},children:\"the next generation of hat culture, where NFC technology is transforming everyday headwear into dynamic digital experiences.\"})}),className:\"framer-7re7z7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,children:/*#__PURE__*/_jsx(Container,{className:\"framer-10sn61i-container\",inComponentSlot:true,nodeId:\"mxqSUl7JJ\",rendersWithMotion:true,scopeId:\"IJzal5roY\",children:/*#__PURE__*/_jsx(ButtonOffWhite,{ecEz8Djri:\"Read Blog\",height:\"100%\",id:\"mxqSUl7JJ\",KSeqNjngc:\"https://oneofnone.io/blog/the-next-generation-of-hat-culture\",layoutId:\"mxqSUl7JJ\",qw2mKTvCL:false,width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(Image,{as:\"header\",background:{alt:\"\",fit:\"fill\",pixelHeight:1700,pixelWidth:2400,positionX:\"center\",positionY:\"center\",sizes:\"1430px\",src:\"https://framerusercontent.com/images/PVH23v7eXsHYI8lKnj8AKJVPFY.jpg\",srcSet:\"https://framerusercontent.com/images/PVH23v7eXsHYI8lKnj8AKJVPFY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/PVH23v7eXsHYI8lKnj8AKJVPFY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/PVH23v7eXsHYI8lKnj8AKJVPFY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/PVH23v7eXsHYI8lKnj8AKJVPFY.jpg 2400w\"},className:\"framer-tiybkb\",\"data-framer-name\":\"MBT Hero Banner\",children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1kw8awr\",\"data-styles-preset\":\"QIN_GQceQ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-3d5710ea-3913-4df0-b6b9-41509158f0c8, rgb(255, 255, 255))\"},children:\"Unlocking Cucumber: A Vinyl ExPERIENCE LIKE NO OTHER\"})}),className:\"framer-uve12u\",\"data-framer-appear-id\":\"uve12u\",fonts:[\"Inter\"],initial:animation1,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-9bfe56\",\"data-styles-preset\":\"fzqKGtDI2\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-3d5710ea-3913-4df0-b6b9-41509158f0c8, rgb(255, 255, 255))\"},children:[\"Metal Bubble Trio\u2019s Debut Album \",/*#__PURE__*/_jsx(\"em\",{children:\"Cucumber\"}),\" Blends Music and Innovation\"]})}),className:\"framer-db7nr8\",fonts:[\"Inter\",\"Inter-Italic\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,children:/*#__PURE__*/_jsx(Container,{className:\"framer-2oh6j6-container\",inComponentSlot:true,nodeId:\"lqFYnRjhK\",rendersWithMotion:true,scopeId:\"IJzal5roY\",children:/*#__PURE__*/_jsx(ButtonOffWhite,{ecEz8Djri:\"Read Blog\",height:\"100%\",id:\"lqFYnRjhK\",KSeqNjngc:\"https://oneofnone.io/blog/unlocking-cucumber-a-vinyl-experience-like-no-other\",layoutId:\"lqFYnRjhK\",qw2mKTvCL:false,width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(Image,{as:\"header\",background:{alt:\"\",fit:\"fill\",pixelHeight:800,pixelWidth:800,positionX:\"center\",positionY:\"center\",sizes:\"1430px\",src:\"https://framerusercontent.com/images/IIkRbegoGiBcJ7W7jhKUyh3DyYw.gif\",srcSet:\"https://framerusercontent.com/images/IIkRbegoGiBcJ7W7jhKUyh3DyYw.gif?scale-down-to=512 512w,https://framerusercontent.com/images/IIkRbegoGiBcJ7W7jhKUyh3DyYw.gif 800w\"},className:\"framer-h7ayl5\",\"data-framer-name\":\"Eastside Golf_Hero Banner\",children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-1kw8awr\",\"data-styles-preset\":\"QIN_GQceQ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-3d5710ea-3913-4df0-b6b9-41509158f0c8, rgb(255, 255, 255))\"},children:[\"Eastside Golf \",/*#__PURE__*/_jsx(\"br\",{}),\"x SPORT BEACH\"]})}),className:\"framer-omjag9\",\"data-framer-appear-id\":\"omjag9\",fonts:[\"Inter\"],initial:animation1,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-9bfe56\",\"data-styles-preset\":\"fzqKGtDI2\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-3d5710ea-3913-4df0-b6b9-41509158f0c8, rgb(255, 255, 255))\"},children:\"Learn how sports, culture, and innovation can Be Connected through this exclusive hat collaboration.\"})}),className:\"framer-ooxuuz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,children:/*#__PURE__*/_jsx(Container,{className:\"framer-u34x4o-container\",inComponentSlot:true,nodeId:\"cnGtA6El_\",rendersWithMotion:true,scopeId:\"IJzal5roY\",children:/*#__PURE__*/_jsx(ButtonOffWhite,{ecEz8Djri:\"Read Blog\",height:\"100%\",id:\"cnGtA6El_\",KSeqNjngc:\"https://oneofnone.io/blog/eastside-golf-x-sport-beach\",layoutId:\"cnGtA6El_\",qw2mKTvCL:false,width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(Image,{as:\"header\",background:{alt:\"\",fit:\"fill\",pixelHeight:4814,pixelWidth:6419,positionX:\"center\",positionY:\"center\",sizes:\"1430px\",src:\"https://framerusercontent.com/images/I8fg1M6TmPIjXsj3RJq4SNcXgDc.jpg\",srcSet:\"https://framerusercontent.com/images/I8fg1M6TmPIjXsj3RJq4SNcXgDc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/I8fg1M6TmPIjXsj3RJq4SNcXgDc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/I8fg1M6TmPIjXsj3RJq4SNcXgDc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/I8fg1M6TmPIjXsj3RJq4SNcXgDc.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/I8fg1M6TmPIjXsj3RJq4SNcXgDc.jpg 6419w\"},className:\"framer-uevw1c\",\"data-framer-name\":\"ARC x SS_Hero Banner\",children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1kw8awr\",\"data-styles-preset\":\"QIN_GQceQ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-3d5710ea-3913-4df0-b6b9-41509158f0c8, rgb(255, 255, 255))\"},children:\"Siegelman Stable X American Red Cross\"})}),className:\"framer-5cpyj9\",\"data-framer-appear-id\":\"5cpyj9\",fonts:[\"Inter\"],initial:animation1,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-9bfe56\",\"data-styles-preset\":\"fzqKGtDI2\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-3d5710ea-3913-4df0-b6b9-41509158f0c8, rgb(255, 255, 255))\"},children:\"The third installment of Drop for Drop - a unique fashion capsule that blends innovation with impact, powered by One of None.\"})}),className:\"framer-yok3f6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ckuli-container\",inComponentSlot:true,nodeId:\"p_J3zaL8j\",rendersWithMotion:true,scopeId:\"IJzal5roY\",children:/*#__PURE__*/_jsx(ButtonOffWhite,{ecEz8Djri:\"Read Blog\",height:\"100%\",id:\"p_J3zaL8j\",KSeqNjngc:\"https://oneofnone.io/blog/siegelman-stable-x-american-red-cross\",layoutId:\"p_J3zaL8j\",qw2mKTvCL:false,width:\"100%\"})})})]})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{duration:0,type:\"tween\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u1yscm\",\"data-border\":true,\"data-framer-name\":\"Scrolling Logos\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{feLlb_vMS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1gmi8u1\",\"data-styles-preset\":\"RQrYOak_S\",style:{\"--framer-text-alignment\":\"left\"},children:\"Powering brands like\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1gmi8u1\",\"data-styles-preset\":\"RQrYOak_S\",children:\"Powering brands like\"})}),className:\"framer-53npgj\",\"data-framer-appear-id\":\"53npgj\",fonts:[\"Inter\"],initial:animation1,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nFM34hGIr:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:78,width:`calc(${componentViewport?.width||\"100vw\"} - 80px)`,y:(componentViewport?.y||0)+0+1231+20+63.199999999999996,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1aez3fg-container hidden-dqo238\",nodeId:\"zMXaNc8mm\",scopeId:\"IJzal5roY\",children:/*#__PURE__*/_jsx(ClientTicker,{height:\"100%\",id:\"zMXaNc8mm\",layoutId:\"zMXaNc8mm\",style:{width:\"100%\"},width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{feLlb_vMS:{height:78,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+55+945+20+63.199999999999996}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1p80fjs-container hidden-dap5d0 hidden-3z3tmw\",nodeId:\"PHT_glEcj\",scopeId:\"IJzal5roY\",children:/*#__PURE__*/_jsx(ClientTickerMobile,{height:\"100%\",id:\"PHT_glEcj\",layoutId:\"PHT_glEcj\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-ibpwf5\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{feLlb_vMS:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2160,intrinsicWidth:3197,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+55+1126.2+50+0),pixelHeight:3986,pixelWidth:7164,sizes:`min(min(${componentViewport?.width||\"100vw\"}, 1240px) - 80px, 1000px)`,src:\"https://framerusercontent.com/images/RhVJnWjQvlHfr9Z0kkCY7rFomE.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/RhVJnWjQvlHfr9Z0kkCY7rFomE.png?scale-down-to=512 512w,https://framerusercontent.com/images/RhVJnWjQvlHfr9Z0kkCY7rFomE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RhVJnWjQvlHfr9Z0kkCY7rFomE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/RhVJnWjQvlHfr9Z0kkCY7rFomE.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/RhVJnWjQvlHfr9Z0kkCY7rFomE.png 7164w\"}},nFM34hGIr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2160,intrinsicWidth:3197,pixelHeight:3986,pixelWidth:7164,sizes:`min(min(${componentViewport?.width||\"100vw\"}, 1240px) - 80px, 1000px)`,src:\"https://framerusercontent.com/images/RhVJnWjQvlHfr9Z0kkCY7rFomE.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/RhVJnWjQvlHfr9Z0kkCY7rFomE.png?scale-down-to=512 512w,https://framerusercontent.com/images/RhVJnWjQvlHfr9Z0kkCY7rFomE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RhVJnWjQvlHfr9Z0kkCY7rFomE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/RhVJnWjQvlHfr9Z0kkCY7rFomE.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/RhVJnWjQvlHfr9Z0kkCY7rFomE.png 7164w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2160,intrinsicWidth:3197,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1412.2+50+0),pixelHeight:3986,pixelWidth:7164,sizes:`min(min(${componentViewport?.width||\"100vw\"}, 1240px) - 80px, 1000px)`,src:\"https://framerusercontent.com/images/RhVJnWjQvlHfr9Z0kkCY7rFomE.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/RhVJnWjQvlHfr9Z0kkCY7rFomE.png?scale-down-to=512 512w,https://framerusercontent.com/images/RhVJnWjQvlHfr9Z0kkCY7rFomE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RhVJnWjQvlHfr9Z0kkCY7rFomE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/RhVJnWjQvlHfr9Z0kkCY7rFomE.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/RhVJnWjQvlHfr9Z0kkCY7rFomE.png 7164w\"},className:\"framer-10fhtkh\",\"data-framer-name\":\"Desktop and Mobile 1\"})}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1kw8awr\",\"data-styles-preset\":\"QIN_GQceQ\",children:\"UNDERSTAND THE ENTIRE PRODUCT JOURNEY\"})}),className:\"framer-s72rdu\",\"data-framer-appear-id\":\"s72rdu\",fonts:[\"Inter\"],initial:animation1,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-9bfe56\",\"data-styles-preset\":\"fzqKGtDI2\",children:\"Leverage our end-to-end platform to build a branded post-purchase experience that allows for collectors to engage and creators to understand the entire lifecycle.\"})}),className:\"framer-qhpz6h\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"cSq4T8NMH\"},implicitPathVariables:undefined},{href:{webPageId:\"cSq4T8NMH\"},implicitPathVariables:undefined},{href:{webPageId:\"cSq4T8NMH\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{feLlb_vMS:{y:(componentViewport?.y||0)+55+1126.2+50+985.7210947601782},nFM34hGIr:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,y:(componentViewport?.y||0)+0+1412.2+50+985.7210947601782,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1d29uz4-container\",nodeId:\"ANu41lJdV\",scopeId:\"IJzal5roY\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{feLlb_vMS:{KSeqNjngc:resolvedLinks[1]},nFM34hGIr:{KSeqNjngc:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(Button,{ecEz8Djri:\"View Solutions\",height:\"100%\",id:\"ANu41lJdV\",KSeqNjngc:resolvedLinks[0],layoutId:\"ANu41lJdV\",qw2mKTvCL:false,width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-11dx4om\",\"data-border\":true,\"data-framer-name\":\"Connected Platform\",children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1gmi8u1\",\"data-styles-preset\":\"RQrYOak_S\",children:\"The Connected product platform\"})}),className:\"framer-t2wx05\",\"data-framer-appear-id\":\"t2wx05\",fonts:[\"Inter\"],initial:animation1,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-jq5tze-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"SEqydcnpB\",scopeId:\"IJzal5roY\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"SEqydcnpB\",isMixedBorderRadius:false,isRed:true,layoutId:\"SEqydcnpB\",play:\"Off\",shouldMute:true,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/EOgQQuLiT5Y\",width:\"100%\"})})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mczqq5 hidden-dap5d0 hidden-3z3tmw\",\"data-border\":true,\"data-framer-name\":\"Connected Experiences\",children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1gmi8u1\",\"data-styles-preset\":\"RQrYOak_S\",children:\"Connected Experiences\"})}),className:\"framer-eb7c1b\",\"data-framer-appear-id\":\"eb7c1b\",fonts:[\"Inter\"],initial:animation1,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-111cx9q\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8sigrx\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{feLlb_vMS:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+55+2630.121094760178+50+73.19999999999999+0+0+0+0),pixelHeight:1200,pixelWidth:1200,sizes:\"330px\",src:\"https://framerusercontent.com/images/4G2MT1CxpS2ztZyvIzOHfWeCw0.png\",srcSet:\"https://framerusercontent.com/images/4G2MT1CxpS2ztZyvIzOHfWeCw0.png?scale-down-to=512 512w,https://framerusercontent.com/images/4G2MT1CxpS2ztZyvIzOHfWeCw0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4G2MT1CxpS2ztZyvIzOHfWeCw0.png 1200w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1200,pixelHeight:1200,pixelWidth:1200,src:\"https://framerusercontent.com/images/4G2MT1CxpS2ztZyvIzOHfWeCw0.png\",srcSet:\"https://framerusercontent.com/images/4G2MT1CxpS2ztZyvIzOHfWeCw0.png?scale-down-to=512 512w,https://framerusercontent.com/images/4G2MT1CxpS2ztZyvIzOHfWeCw0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4G2MT1CxpS2ztZyvIzOHfWeCw0.png 1200w\"},className:\"framer-vbga9y\",\"data-border\":true,\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-g1ohoc\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0Jhc2lzIEdyb3Rlc3F1ZSBNb25vIFBybyBCb2xk\",\"--framer-font-family\":'\"Basis Grotesque Mono Pro Bold\", \"Basis Grotesque Mono Pro Bold Placeholder\", monospace',\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-a73805e3-9dc6-41c1-86f2-bad57334cc1e, rgb(0, 0, 0))\",\"--framer-text-transform\":\"uppercase\"},children:\"// CuSTOMER LOYALTY\"})}),className:\"framer-6cjcau\",fonts:[\"CUSTOM;Basis Grotesque Mono Pro Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0lUQyBBdmFudCBHYXJkZSBHb3RoaWMgUHJvIEJvb2s=\",\"--framer-font-family\":'\"ITC Avant Garde Gothic Pro Book\", \"ITC Avant Garde Gothic Pro Book Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-a73805e3-9dc6-41c1-86f2-bad57334cc1e, rgb(0, 0, 0))\"},children:\"Experience seamless e-commerce integrations, improved customer engagements, and increased sales with a Shopify Connected Commerce Experience.\"}),/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"Q1VTVE9NO0lUQyBBdmFudCBHYXJkZSBHb3RoaWMgUHJvIEJvb2s=\",\"--framer-font-family\":'\"ITC Avant Garde Gothic Pro Book\", \"ITC Avant Garde Gothic Pro Book Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-a73805e3-9dc6-41c1-86f2-bad57334cc1e, rgb(0, 0, 0))\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Digital Asset Distribution\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Early Access\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Exclusive Drops\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Store Discounts\"})})]})]}),className:\"framer-mfhulf\",fonts:[\"CUSTOM;ITC Avant Garde Gothic Pro Book\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-a3v24s\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{feLlb_vMS:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+55+2630.121094760178+50+73.19999999999999+0+962.8+0+0),pixelHeight:4e3,pixelWidth:4e3,sizes:\"330px\",src:\"https://framerusercontent.com/images/dLQs9rdT3kYxBY7GQLnImFnZfU.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/dLQs9rdT3kYxBY7GQLnImFnZfU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/dLQs9rdT3kYxBY7GQLnImFnZfU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/dLQs9rdT3kYxBY7GQLnImFnZfU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/dLQs9rdT3kYxBY7GQLnImFnZfU.jpg 4000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1200,pixelHeight:4e3,pixelWidth:4e3,src:\"https://framerusercontent.com/images/dLQs9rdT3kYxBY7GQLnImFnZfU.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/dLQs9rdT3kYxBY7GQLnImFnZfU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/dLQs9rdT3kYxBY7GQLnImFnZfU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/dLQs9rdT3kYxBY7GQLnImFnZfU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/dLQs9rdT3kYxBY7GQLnImFnZfU.jpg 4000w\"},className:\"framer-lt50qq\",\"data-border\":true,\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-t8yryu\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0Jhc2lzIEdyb3Rlc3F1ZSBNb25vIFBybyBCb2xk\",\"--framer-font-family\":'\"Basis Grotesque Mono Pro Bold\", \"Basis Grotesque Mono Pro Bold Placeholder\", monospace',\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-a73805e3-9dc6-41c1-86f2-bad57334cc1e, rgb(0, 0, 0))\",\"--framer-text-transform\":\"uppercase\"},children:\"// Live Activations\"})}),className:\"framer-vfdssl\",fonts:[\"CUSTOM;Basis Grotesque Mono Pro Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0lUQyBBdmFudCBHYXJkZSBHb3RoaWMgUHJvIEJvb2s=\",\"--framer-font-family\":'\"ITC Avant Garde Gothic Pro Book\", \"ITC Avant Garde Gothic Pro Book Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-a73805e3-9dc6-41c1-86f2-bad57334cc1e, rgb(0, 0, 0))\"},children:\"Revolutionize live events with Connected Merch, enhance attendee engagement, and provides unparalleled insights into audience behavior.\"}),/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"Q1VTVE9NO0lUQyBBdmFudCBHYXJkZSBHb3RoaWMgUHJvIEJvb2s=\",\"--framer-font-family\":'\"ITC Avant Garde Gothic Pro Book\", \"ITC Avant Garde Gothic Pro Book Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-a73805e3-9dc6-41c1-86f2-bad57334cc1e, rgb(0, 0, 0))\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"QR Tickets\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"IRL Exclusive Access\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Interactive Timeline powered by User Generated Content\"})})]})]}),className:\"framer-1ahujcv\",fonts:[\"CUSTOM;ITC Avant Garde Gothic Pro Book\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11qce9c\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{feLlb_vMS:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+55+2630.121094760178+50+73.19999999999999+0+1805.6+0+0),pixelHeight:1200,pixelWidth:1200,sizes:\"330px\",src:\"https://framerusercontent.com/images/0BSxLI0V5T2UwlcJ0cEjSYYssX4.png\",srcSet:\"https://framerusercontent.com/images/0BSxLI0V5T2UwlcJ0cEjSYYssX4.png?scale-down-to=512 512w,https://framerusercontent.com/images/0BSxLI0V5T2UwlcJ0cEjSYYssX4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0BSxLI0V5T2UwlcJ0cEjSYYssX4.png 1200w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1200,pixelHeight:1200,pixelWidth:1200,src:\"https://framerusercontent.com/images/0BSxLI0V5T2UwlcJ0cEjSYYssX4.png\",srcSet:\"https://framerusercontent.com/images/0BSxLI0V5T2UwlcJ0cEjSYYssX4.png?scale-down-to=512 512w,https://framerusercontent.com/images/0BSxLI0V5T2UwlcJ0cEjSYYssX4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0BSxLI0V5T2UwlcJ0cEjSYYssX4.png 1200w\"},className:\"framer-1cop2r1\",\"data-border\":true,\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-180sggc\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0Jhc2lzIEdyb3Rlc3F1ZSBNb25vIFBybyBCb2xk\",\"--framer-font-family\":'\"Basis Grotesque Mono Pro Bold\", \"Basis Grotesque Mono Pro Bold Placeholder\", monospace',\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-a73805e3-9dc6-41c1-86f2-bad57334cc1e, rgb(0, 0, 0))\",\"--framer-text-transform\":\"uppercase\"},children:\"// Lifecycle Management\"})}),className:\"framer-bfzkku\",fonts:[\"CUSTOM;Basis Grotesque Mono Pro Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0lUQyBBdmFudCBHYXJkZSBHb3RoaWMgUHJvIEJvb2s=\",\"--framer-font-family\":'\"ITC Avant Garde Gothic Pro Book\", \"ITC Avant Garde Gothic Pro Book Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-a73805e3-9dc6-41c1-86f2-bad57334cc1e, rgb(0, 0, 0))\"},children:\"Foster continuous engagement and deepen customer relationships with the ability to manage the entire Connected Product lifecycle.\"}),/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"Q1VTVE9NO0lUQyBBdmFudCBHYXJkZSBHb3RoaWMgUHJvIEJvb2s=\",\"--framer-font-family\":'\"ITC Avant Garde Gothic Pro Book\", \"ITC Avant Garde Gothic Pro Book Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-a73805e3-9dc6-41c1-86f2-bad57334cc1e, rgb(0, 0, 0))\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Authenticate & facilitate resale transactions\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Care and repair instructions\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Customer support chat\"})})]})]}),className:\"framer-1y16bjy\",fonts:[\"CUSTOM;ITC Avant Garde Gothic Pro Book\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o3zhyn hidden-dap5d0 hidden-dqo238\",\"data-border\":true,\"data-framer-name\":\"Connected Experiences\",children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1gmi8u1\",\"data-styles-preset\":\"RQrYOak_S\",children:\"Connected Experiences\"})}),className:\"framer-ze48lk\",\"data-framer-appear-id\":\"ze48lk\",fonts:[\"Inter\"],initial:animation1,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xr9ulc\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-26q1xo\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nFM34hGIr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1200,pixelHeight:1200,pixelWidth:1200,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1240px) - 88px) / 3, 200px)`,src:\"https://framerusercontent.com/images/4G2MT1CxpS2ztZyvIzOHfWeCw0.png\",srcSet:\"https://framerusercontent.com/images/4G2MT1CxpS2ztZyvIzOHfWeCw0.png?scale-down-to=512 512w,https://framerusercontent.com/images/4G2MT1CxpS2ztZyvIzOHfWeCw0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4G2MT1CxpS2ztZyvIzOHfWeCw0.png 1200w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1200,pixelHeight:1200,pixelWidth:1200,src:\"https://framerusercontent.com/images/4G2MT1CxpS2ztZyvIzOHfWeCw0.png\",srcSet:\"https://framerusercontent.com/images/4G2MT1CxpS2ztZyvIzOHfWeCw0.png?scale-down-to=512 512w,https://framerusercontent.com/images/4G2MT1CxpS2ztZyvIzOHfWeCw0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4G2MT1CxpS2ztZyvIzOHfWeCw0.png 1200w\"},className:\"framer-jk5i9l\",\"data-border\":true,\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2idpe0\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0Jhc2lzIEdyb3Rlc3F1ZSBNb25vIFBybyBCb2xk\",\"--framer-font-family\":'\"Basis Grotesque Mono Pro Bold\", \"Basis Grotesque Mono Pro Bold Placeholder\", monospace',\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-a73805e3-9dc6-41c1-86f2-bad57334cc1e, rgb(0, 0, 0))\",\"--framer-text-transform\":\"uppercase\"},children:[\"CuSTOMER \",/*#__PURE__*/_jsx(\"br\",{}),\"LOYALTY\"]})}),className:\"framer-8bc8v4\",fonts:[\"CUSTOM;Basis Grotesque Mono Pro Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0lUQyBBdmFudCBHYXJkZSBHb3RoaWMgUHJvIEJvb2s=\",\"--framer-font-family\":'\"ITC Avant Garde Gothic Pro Book\", \"ITC Avant Garde Gothic Pro Book Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-a73805e3-9dc6-41c1-86f2-bad57334cc1e, rgb(0, 0, 0))\"},children:\"Experience seamless e-commerce integrations, improved customer engagements, and increased sales with a Shopify Connected Commerce Experience.\"}),/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"Q1VTVE9NO0lUQyBBdmFudCBHYXJkZSBHb3RoaWMgUHJvIEJvb2s=\",\"--framer-font-family\":'\"ITC Avant Garde Gothic Pro Book\", \"ITC Avant Garde Gothic Pro Book Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-a73805e3-9dc6-41c1-86f2-bad57334cc1e, rgb(0, 0, 0))\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Digital Asset Distribution\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Early Access\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Exclusive Drops\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Store Discounts\"})})]})]}),className:\"framer-13djfhr\",fonts:[\"CUSTOM;ITC Avant Garde Gothic Pro Book\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uv3pxi\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nFM34hGIr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1200,pixelHeight:4e3,pixelWidth:4e3,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1240px) - 88px) / 3, 200px)`,src:\"https://framerusercontent.com/images/dLQs9rdT3kYxBY7GQLnImFnZfU.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/dLQs9rdT3kYxBY7GQLnImFnZfU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/dLQs9rdT3kYxBY7GQLnImFnZfU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/dLQs9rdT3kYxBY7GQLnImFnZfU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/dLQs9rdT3kYxBY7GQLnImFnZfU.jpg 4000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1200,pixelHeight:4e3,pixelWidth:4e3,src:\"https://framerusercontent.com/images/dLQs9rdT3kYxBY7GQLnImFnZfU.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/dLQs9rdT3kYxBY7GQLnImFnZfU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/dLQs9rdT3kYxBY7GQLnImFnZfU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/dLQs9rdT3kYxBY7GQLnImFnZfU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/dLQs9rdT3kYxBY7GQLnImFnZfU.jpg 4000w\"},className:\"framer-1og5umx\",\"data-border\":true,\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vinhij\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0Jhc2lzIEdyb3Rlc3F1ZSBNb25vIFBybyBCb2xk\",\"--framer-font-family\":'\"Basis Grotesque Mono Pro Bold\", \"Basis Grotesque Mono Pro Bold Placeholder\", monospace',\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-a73805e3-9dc6-41c1-86f2-bad57334cc1e, rgb(0, 0, 0))\",\"--framer-text-transform\":\"uppercase\"},children:[\"Live \",/*#__PURE__*/_jsx(\"br\",{}),\"Activations\"]})}),className:\"framer-1yw0jwe\",fonts:[\"CUSTOM;Basis Grotesque Mono Pro Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0lUQyBBdmFudCBHYXJkZSBHb3RoaWMgUHJvIEJvb2s=\",\"--framer-font-family\":'\"ITC Avant Garde Gothic Pro Book\", \"ITC Avant Garde Gothic Pro Book Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-a73805e3-9dc6-41c1-86f2-bad57334cc1e, rgb(0, 0, 0))\"},children:\"Revolutionize live events with Connected Merch, enhance attendee engagement, and provides unparalleled insights into audience behavior.\"}),/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"Q1VTVE9NO0lUQyBBdmFudCBHYXJkZSBHb3RoaWMgUHJvIEJvb2s=\",\"--framer-font-family\":'\"ITC Avant Garde Gothic Pro Book\", \"ITC Avant Garde Gothic Pro Book Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-a73805e3-9dc6-41c1-86f2-bad57334cc1e, rgb(0, 0, 0))\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"QR Tickets\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"IRL Exclusive Access\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Interactive Timeline powered by User Generated Content\"})})]})]}),className:\"framer-i6hev5\",fonts:[\"CUSTOM;ITC Avant Garde Gothic Pro Book\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-163175m\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nFM34hGIr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1200,pixelHeight:1200,pixelWidth:1200,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1240px) - 88px) / 3, 200px)`,src:\"https://framerusercontent.com/images/0BSxLI0V5T2UwlcJ0cEjSYYssX4.png\",srcSet:\"https://framerusercontent.com/images/0BSxLI0V5T2UwlcJ0cEjSYYssX4.png?scale-down-to=512 512w,https://framerusercontent.com/images/0BSxLI0V5T2UwlcJ0cEjSYYssX4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0BSxLI0V5T2UwlcJ0cEjSYYssX4.png 1200w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1200,pixelHeight:1200,pixelWidth:1200,src:\"https://framerusercontent.com/images/0BSxLI0V5T2UwlcJ0cEjSYYssX4.png\",srcSet:\"https://framerusercontent.com/images/0BSxLI0V5T2UwlcJ0cEjSYYssX4.png?scale-down-to=512 512w,https://framerusercontent.com/images/0BSxLI0V5T2UwlcJ0cEjSYYssX4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0BSxLI0V5T2UwlcJ0cEjSYYssX4.png 1200w\"},className:\"framer-eebcn2\",\"data-border\":true,\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nfpjg1\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0Jhc2lzIEdyb3Rlc3F1ZSBNb25vIFBybyBCb2xk\",\"--framer-font-family\":'\"Basis Grotesque Mono Pro Bold\", \"Basis Grotesque Mono Pro Bold Placeholder\", monospace',\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-a73805e3-9dc6-41c1-86f2-bad57334cc1e, rgb(0, 0, 0))\",\"--framer-text-transform\":\"uppercase\"},children:\"Lifecycle Management\"})}),className:\"framer-145fvcg\",fonts:[\"CUSTOM;Basis Grotesque Mono Pro Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0lUQyBBdmFudCBHYXJkZSBHb3RoaWMgUHJvIEJvb2s=\",\"--framer-font-family\":'\"ITC Avant Garde Gothic Pro Book\", \"ITC Avant Garde Gothic Pro Book Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-a73805e3-9dc6-41c1-86f2-bad57334cc1e, rgb(0, 0, 0))\"},children:\"Foster continuous engagement and deepen customer relationships with the ability to manage the entire Connected Product lifecycle.\"}),/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"Q1VTVE9NO0lUQyBBdmFudCBHYXJkZSBHb3RoaWMgUHJvIEJvb2s=\",\"--framer-font-family\":'\"ITC Avant Garde Gothic Pro Book\", \"ITC Avant Garde Gothic Pro Book Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-a73805e3-9dc6-41c1-86f2-bad57334cc1e, rgb(0, 0, 0))\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Authenticate & facilitate resale transactions\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Care and repair instructions\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Customer support chat\"})})]})]}),className:\"framer-1emsfi7\",fonts:[\"CUSTOM;ITC Avant Garde Gothic Pro Book\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2ijy0n hidden-dqo238 hidden-3z3tmw\",\"data-border\":true,\"data-framer-name\":\"Connected Experiences\",children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1gmi8u1\",\"data-styles-preset\":\"RQrYOak_S\",children:\"Connected Experiences\"})}),className:\"framer-18q223t\",\"data-framer-appear-id\":\"18q223t\",fonts:[\"Inter\"],initial:animation1,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1aeis4y\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4ilwlk\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3450.1210947601785+50+73.19999999999999+0+0+0+0),pixelHeight:1200,pixelWidth:1200,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1240px) - 88px) / 3, 200px)`,src:\"https://framerusercontent.com/images/4G2MT1CxpS2ztZyvIzOHfWeCw0.png\",srcSet:\"https://framerusercontent.com/images/4G2MT1CxpS2ztZyvIzOHfWeCw0.png?scale-down-to=512 512w,https://framerusercontent.com/images/4G2MT1CxpS2ztZyvIzOHfWeCw0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4G2MT1CxpS2ztZyvIzOHfWeCw0.png 1200w\"},className:\"framer-1agiqad\",\"data-border\":true,\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hytg6h\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-a47hmf\",\"data-styles-preset\":\"TmDXdvEuJ\",children:\"// CuSTOMER LOYALTY\"})}),className:\"framer-1e3re68\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5bgvr1\",\"data-styles-preset\":\"YUNBbbn6y\",children:\"Experience seamless e-commerce integrations, improved customer engagements, and increased sales with a Shopify Connected Commerce Experience.\"}),/*#__PURE__*/_jsxs(\"ul\",{className:\"framer-styles-preset-5bgvr1\",\"data-styles-preset\":\"YUNBbbn6y\",children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Digital Asset Distribution\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Early Access\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Exclusive Drops\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Store Discounts\"})})]})]}),className:\"framer-18rky7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1numewo\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3450.1210947601785+50+73.19999999999999+0+0+0+0),pixelHeight:4e3,pixelWidth:4e3,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1240px) - 88px) / 3, 200px)`,src:\"https://framerusercontent.com/images/dLQs9rdT3kYxBY7GQLnImFnZfU.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/dLQs9rdT3kYxBY7GQLnImFnZfU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/dLQs9rdT3kYxBY7GQLnImFnZfU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/dLQs9rdT3kYxBY7GQLnImFnZfU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/dLQs9rdT3kYxBY7GQLnImFnZfU.jpg 4000w\"},className:\"framer-vj3zr9\",\"data-border\":true,\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-21cvsm\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-a47hmf\",\"data-styles-preset\":\"TmDXdvEuJ\",children:\"// Live Activations\"})}),className:\"framer-17kr5qs\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5bgvr1\",\"data-styles-preset\":\"YUNBbbn6y\",children:\"Revolutionize live events with Connected Merch, enhance attendee engagement, and provide unparalleled insights into audience behavior.\"}),/*#__PURE__*/_jsxs(\"ul\",{className:\"framer-styles-preset-5bgvr1\",\"data-styles-preset\":\"YUNBbbn6y\",children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"QR Tickets\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"IRL Exclusive Access\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Interactive Timeline powered by User Generated Content\"})})]})]}),className:\"framer-1jzh5zu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jqa3wu\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3450.1210947601785+50+73.19999999999999+0+0+0+0),pixelHeight:1200,pixelWidth:1200,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1240px) - 88px) / 3, 200px)`,src:\"https://framerusercontent.com/images/0BSxLI0V5T2UwlcJ0cEjSYYssX4.png\",srcSet:\"https://framerusercontent.com/images/0BSxLI0V5T2UwlcJ0cEjSYYssX4.png?scale-down-to=512 512w,https://framerusercontent.com/images/0BSxLI0V5T2UwlcJ0cEjSYYssX4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0BSxLI0V5T2UwlcJ0cEjSYYssX4.png 1200w\"},className:\"framer-yexvfx\",\"data-border\":true,\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b03lw8\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-a47hmf\",\"data-styles-preset\":\"TmDXdvEuJ\",children:\"// Lifecycle Management\"})}),className:\"framer-kdn6kc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5bgvr1\",\"data-styles-preset\":\"YUNBbbn6y\",children:\"Foster continuous engagement and deepen customer relationships with the ability to manage the entire Connected Product lifecycle.\"}),/*#__PURE__*/_jsxs(\"ul\",{className:\"framer-styles-preset-5bgvr1\",\"data-styles-preset\":\"YUNBbbn6y\",children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Authenticate & facilitate resale transactions\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Care and repair instructions\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Customer support chat\"})})]})]}),className:\"framer-1jdifny\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),/*#__PURE__*/_jsxs(\"header\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3501,intrinsicWidth:7e3},className:\"framer-1qo510w\",\"data-border\":true,\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{nFM34hGIr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-1kw8awr\",\"data-styles-preset\":\"QIN_GQceQ\",children:[\"One tag. One ID. \",/*#__PURE__*/_jsx(\"br\",{}),\"One Profile.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1kw8awr\",\"data-styles-preset\":\"QIN_GQceQ\",children:\"One tag. One ID. One Profile.\"})}),className:\"framer-7ig4pq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-9bfe56\",\"data-styles-preset\":\"fzqKGtDI2\",children:\"Be among the first to elevate your brand by making your products smart.\"})}),className:\"framer-1h7gkvu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"QGGfFFQa_\"},implicitPathVariables:undefined},{href:{webPageId:\"QGGfFFQa_\"},implicitPathVariables:undefined},{href:{webPageId:\"QGGfFFQa_\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{feLlb_vMS:{y:(componentViewport?.y||0)+55+5407.721094760178+50+250.4},nFM34hGIr:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:45,y:(componentViewport?.y||0)+0+4760.1210947601785+100+250.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-8csntp-container\",nodeId:\"dJjtsMhRq\",scopeId:\"IJzal5roY\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{feLlb_vMS:{KSeqNjngc:resolvedLinks1[1]},nFM34hGIr:{KSeqNjngc:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(Button,{ecEz8Djri:\"LEARN MORE\",height:\"100%\",id:\"dJjtsMhRq\",KSeqNjngc:resolvedLinks1[0],layoutId:\"dJjtsMhRq\",qw2mKTvCL:false,width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1m3ajpq\",\"data-border\":true,\"data-framer-name\":\"News Feed\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q5vxp0\",children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1gmi8u1\",\"data-styles-preset\":\"RQrYOak_S\",children:\"News \"})}),className:\"framer-14t1no7\",\"data-framer-appear-id\":\"14t1no7\",fonts:[\"Inter\"],initial:animation1,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"tHob00xLz\"},implicitPathVariables:undefined},{href:{webPageId:\"tHob00xLz\"},implicitPathVariables:undefined},{href:{webPageId:\"tHob00xLz\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{feLlb_vMS:{y:(componentViewport?.y||0)+55+5803.121094760178+60+0+11.599999999999998},nFM34hGIr:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,y:(componentViewport?.y||0)+0+5255.521094760178+60+0+11.599999999999998,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ljj5ed-container\",nodeId:\"q0vVjGwyA\",scopeId:\"IJzal5roY\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{feLlb_vMS:{gqfFcVzXp:resolvedLinks2[1]},nFM34hGIr:{gqfFcVzXp:resolvedLinks2[2]}},children:/*#__PURE__*/_jsx(FooterButton,{gqfFcVzXp:resolvedLinks2[0],height:\"100%\",id:\"q0vVjGwyA\",layoutId:\"q0vVjGwyA\",oJ3SZoYE3:false,variant:\"P_jXLEDFk\",width:\"100%\",X4kGlDs4u:\"View All\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jizcxm\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"ZxvpUN66K\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},select:[{collection:\"ZxvpUN66K\",name:\"cJBp6BGIY\",type:\"Identifier\"},{collection:\"ZxvpUN66K\",name:\"NDXJ4aZbD\",type:\"Identifier\"},{collection:\"ZxvpUN66K\",name:\"HmPrvqiW1\",type:\"Identifier\"},{collection:\"ZxvpUN66K\",name:\"go6FY7IjD\",type:\"Identifier\"},{collection:\"ZxvpUN66K\",name:\"nWgS0pKk7\",type:\"Identifier\"},{collection:\"ZxvpUN66K\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({cJBp6BGIY:cJBp6BGIYZxvpUN66K,go6FY7IjD:go6FY7IjDZxvpUN66K,HmPrvqiW1:HmPrvqiW1ZxvpUN66K,id:idZxvpUN66K,NDXJ4aZbD:NDXJ4aZbDZxvpUN66K,nWgS0pKk7:nWgS0pKk7ZxvpUN66K},index)=>{cJBp6BGIYZxvpUN66K??=\"\";NDXJ4aZbDZxvpUN66K??=\"\";HmPrvqiW1ZxvpUN66K??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`ZxvpUN66K-${idZxvpUN66K}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{cJBp6BGIY:cJBp6BGIYZxvpUN66K},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{cJBp6BGIY:cJBp6BGIYZxvpUN66K},webPageId:\"MHgNYm8ON\"},implicitPathVariables:undefined},{href:{pathVariables:{cJBp6BGIY:cJBp6BGIYZxvpUN66K},webPageId:\"MHgNYm8ON\"},implicitPathVariables:undefined},{href:{pathVariables:{cJBp6BGIY:cJBp6BGIYZxvpUN66K},webPageId:\"MHgNYm8ON\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{feLlb_vMS:{width:`max(min(${componentViewport?.width||\"100vw\"} - 60px, 1240px), 200px)`,y:(componentViewport?.y||0)+55+5803.121094760178+60+75.19999999999999+0+0},nFM34hGIr:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1240px) - 30px) / 2, 200px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:327,width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1240px) - 90px) / 4, 200px)`,y:(componentViewport?.y||0)+0+5255.521094760178+60+75.19999999999999+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1553j1i-container\",nodeId:\"exWpubsRp\",scopeId:\"IJzal5roY\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{feLlb_vMS:{QbN70Ig5T:resolvedLinks3[1]},nFM34hGIr:{QbN70Ig5T:resolvedLinks3[2]}},children:/*#__PURE__*/_jsx(BlogItem,{C945cwwc7:nWgS0pKk7ZxvpUN66K,Ei9dp1OmB:NDXJ4aZbDZxvpUN66K,fP2KRml6B:toResponsiveImage(go6FY7IjDZxvpUN66K),height:\"100%\",id:\"exWpubsRp\",layoutId:\"exWpubsRp\",pyN_Xnq7R:HmPrvqiW1ZxvpUN66K,QbN70Ig5T:resolvedLinks3[0],style:{width:\"100%\"},width:\"100%\"})})})})})})})},idZxvpUN66K);})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1su4o5o\",\"data-border\":true,\"data-framer-name\":\"Press\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-syy442\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{feLlb_vMS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1gmi8u1\",\"data-styles-preset\":\"RQrYOak_S\",style:{\"--framer-text-alignment\":\"left\"},children:\"Press\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1gmi8u1\",\"data-styles-preset\":\"RQrYOak_S\",children:\"Press\"})}),className:\"framer-p3lh6r\",\"data-framer-appear-id\":\"p3lh6r\",fonts:[\"Inter\"],initial:animation1,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i25bu7\",\"data-framer-name\":\"Press Logos\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.complex.com/style/a/lei-takanashi/best-style-releases-supreme-nike-off-white-new-era-levis-reese-cooper\",motionChild:true,nodeId:\"IjK6YHOag\",scopeId:\"IJzal5roY\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{feLlb_vMS:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:19,intrinsicWidth:73.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+55+7416.321094760177+50+0+0+73.19999999999999+0+0),pixelHeight:63,pixelWidth:239,src:\"https://framerusercontent.com/images/Ir4OCXZMvvPDoqvNI4vVRwPkQ.png\"}},nFM34hGIr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:19,intrinsicWidth:73.5,pixelHeight:63,pixelWidth:239,src:\"https://framerusercontent.com/images/Ir4OCXZMvvPDoqvNI4vVRwPkQ.png\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:19,intrinsicWidth:73.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6154.721094760178+50+0+0+53.199999999999996+46.074829931972786),pixelHeight:63,pixelWidth:239,src:\"https://framerusercontent.com/images/Ir4OCXZMvvPDoqvNI4vVRwPkQ.png\"},className:\"framer-ha6tju framer-8vy058\",\"data-framer-name\":\"Link_Complex\",whileHover:animation2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.rollingstone.com/culture-council/articles/why-web3-when-used-good-can-supercharge-authenticity-1396577/\",motionChild:true,nodeId:\"SH5m2OeW9\",openInNewTab:true,scopeId:\"IJzal5roY\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{feLlb_vMS:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:19,intrinsicWidth:73.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+55+7416.321094760177+50+0+0+73.19999999999999+0+85.85034013605443),pixelHeight:149,pixelWidth:303,src:\"https://framerusercontent.com/images/tFoMmXITU0SDeYZ7eGXrMxj0IuQ.png\"}},nFM34hGIr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:19,intrinsicWidth:73.5,pixelHeight:149,pixelWidth:303,src:\"https://framerusercontent.com/images/tFoMmXITU0SDeYZ7eGXrMxj0IuQ.png\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:19,intrinsicWidth:73.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6154.721094760178+50+0+0+53.199999999999996+44),pixelHeight:149,pixelWidth:303,src:\"https://framerusercontent.com/images/tFoMmXITU0SDeYZ7eGXrMxj0IuQ.png\"},className:\"framer-1n0zsk0 framer-8vy058\",\"data-framer-name\":\"Link_Complex\",whileHover:animation2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.designboom.com/design/red-cross-siegelman-stable-hat-donate-blood-nashville-one-of-none-09-11-2024/\",motionChild:true,nodeId:\"dZBqANZ6x\",openInNewTab:true,scopeId:\"IJzal5roY\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{feLlb_vMS:{background:{alt:\"Designboom\",fit:\"fill\",intrinsicHeight:19,intrinsicWidth:73.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+55+7416.321094760177+50+0+0+73.19999999999999+0+175.85034013605443),pixelHeight:1200,pixelWidth:3507,sizes:\"115px\",src:\"https://framerusercontent.com/images/2QXqOXNpr1hMlp3vslEO5fuZTAA.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/2QXqOXNpr1hMlp3vslEO5fuZTAA.png?scale-down-to=512 512w,https://framerusercontent.com/images/2QXqOXNpr1hMlp3vslEO5fuZTAA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/2QXqOXNpr1hMlp3vslEO5fuZTAA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/2QXqOXNpr1hMlp3vslEO5fuZTAA.png 3507w\"}},nFM34hGIr:{background:{alt:\"Designboom\",fit:\"fill\",intrinsicHeight:19,intrinsicWidth:73.5,pixelHeight:1200,pixelWidth:3507,sizes:\"115px\",src:\"https://framerusercontent.com/images/2QXqOXNpr1hMlp3vslEO5fuZTAA.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/2QXqOXNpr1hMlp3vslEO5fuZTAA.png?scale-down-to=512 512w,https://framerusercontent.com/images/2QXqOXNpr1hMlp3vslEO5fuZTAA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/2QXqOXNpr1hMlp3vslEO5fuZTAA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/2QXqOXNpr1hMlp3vslEO5fuZTAA.png 3507w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Designboom\",fit:\"fill\",intrinsicHeight:19,intrinsicWidth:73.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6154.721094760178+50+0+0+53.199999999999996+44),pixelHeight:1200,pixelWidth:3507,sizes:\"115px\",src:\"https://framerusercontent.com/images/2QXqOXNpr1hMlp3vslEO5fuZTAA.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/2QXqOXNpr1hMlp3vslEO5fuZTAA.png?scale-down-to=512 512w,https://framerusercontent.com/images/2QXqOXNpr1hMlp3vslEO5fuZTAA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/2QXqOXNpr1hMlp3vslEO5fuZTAA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/2QXqOXNpr1hMlp3vslEO5fuZTAA.png 3507w\"},className:\"framer-1ibzh1z framer-8vy058\",\"data-framer-name\":\"Link_Complex\",whileHover:animation2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.entrepreneur.com/growing-a-business/how-success-happened-for-team-whistle/423656\",motionChild:true,nodeId:\"iuLWcxVx8\",scopeId:\"IJzal5roY\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{feLlb_vMS:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:19,intrinsicWidth:92,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+55+7416.321094760177+50+0+0+73.19999999999999+0+265.85034013605446),pixelHeight:104,pixelWidth:268,src:\"https://framerusercontent.com/images/0lrKGNL2KgCiis6Rdg8lvfzL54.png\"}},nFM34hGIr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:19,intrinsicWidth:92,pixelHeight:104,pixelWidth:268,src:\"https://framerusercontent.com/images/0lrKGNL2KgCiis6Rdg8lvfzL54.png\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:19,intrinsicWidth:92,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6154.721094760178+50+0+0+53.199999999999996+45.576086956521735),pixelHeight:104,pixelWidth:268,src:\"https://framerusercontent.com/images/0lrKGNL2KgCiis6Rdg8lvfzL54.png\"},className:\"framer-158zo7t framer-8vy058\",\"data-framer-name\":\"Link_Entrepreneur\",whileHover:animation2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://luckytrader.com/nft/knights-of-degen-official/news/knights-of-degens-partners-with-one-of-none-for-nft-nyc\",motionChild:true,nodeId:\"DBLTi7J51\",scopeId:\"IJzal5roY\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{feLlb_vMS:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:19,intrinsicWidth:147,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+55+7416.321094760177+50+0+0+73.19999999999999+0+352.69816622301096),pixelHeight:46,pixelWidth:354,src:\"https://framerusercontent.com/images/zkrs3ieE4N4KrvAJOux5tiEik.png\"}},nFM34hGIr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:19,intrinsicWidth:147,pixelHeight:46,pixelWidth:354,src:\"https://framerusercontent.com/images/zkrs3ieE4N4KrvAJOux5tiEik.png\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:19,intrinsicWidth:147,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6154.721094760178+50+0+0+53.199999999999996+48.65986394557823),pixelHeight:46,pixelWidth:354,src:\"https://framerusercontent.com/images/zkrs3ieE4N4KrvAJOux5tiEik.png\"},className:\"framer-rhc86c framer-8vy058\",\"data-framer-name\":\"Link_Lucky_Trader\",whileHover:animation2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.yahoo.com/video/deshone-kizer-nfl-star-nft-164218801.html\",motionChild:true,nodeId:\"P8IH2m1hl\",scopeId:\"IJzal5roY\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{feLlb_vMS:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:28,intrinsicWidth:74,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+55+7416.321094760177+50+0+0+73.19999999999999+0+433.3784383318545),pixelHeight:96,pixelWidth:257,src:\"https://framerusercontent.com/images/4m3gaJz3XW89XQ9vYOCTJViPSpk.png\"}},nFM34hGIr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:28,intrinsicWidth:74,pixelHeight:96,pixelWidth:257,src:\"https://framerusercontent.com/images/4m3gaJz3XW89XQ9vYOCTJViPSpk.png\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:28,intrinsicWidth:74,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6154.721094760178+50+0+0+53.199999999999996+40.08108108108108),pixelHeight:96,pixelWidth:257,src:\"https://framerusercontent.com/images/4m3gaJz3XW89XQ9vYOCTJViPSpk.png\"},className:\"framer-3eef25 framer-8vy058\",\"data-framer-name\":\"Link_Yahoo\",whileHover:animation2})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.coindesk.com/business/2022/06/07/deshone-kizer-from-nfl-star-to-nft-trailblazer/\",motionChild:true,nodeId:\"tUJpA_a9A\",scopeId:\"IJzal5roY\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{feLlb_vMS:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:19,intrinsicWidth:95.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+55+7416.321094760177+50+0+0+73.19999999999999+0+531.2162761696924),pixelHeight:95,pixelWidth:296,src:\"https://framerusercontent.com/images/orKkTh523Z4k0JVRXPdKBMCgllo.png\"}},nFM34hGIr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:19,intrinsicWidth:95.5,pixelHeight:95,pixelWidth:296,src:\"https://framerusercontent.com/images/orKkTh523Z4k0JVRXPdKBMCgllo.png\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:19,intrinsicWidth:95.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6154.721094760178+50+0+0+53.199999999999996+46.26701570680628),pixelHeight:95,pixelWidth:296,src:\"https://framerusercontent.com/images/orKkTh523Z4k0JVRXPdKBMCgllo.png\"},className:\"framer-suwrwq framer-8vy058\",\"data-framer-name\":\"Link_Coindesk\",whileHover:animation2})})})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{feLlb_vMS:{y:(componentViewport?.y||0)+55+8146.203339516257},nFM34hGIr:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:422,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+6425.921094760178,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ujdm8l-container\",nodeId:\"O8rhBRQiC\",scopeId:\"IJzal5roY\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{feLlb_vMS:{variant:\"OSsI6FnwY\"},nFM34hGIr:{variant:\"EiqM5MRi7\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"O8rhBRQiC\",layoutId:\"O8rhBRQiC\",style:{width:\"100%\"},variant:\"AjJyjF7hU\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-gvVZj.framer-8vy058, .framer-gvVZj .framer-8vy058 { display: block; }\",\".framer-gvVZj.framer-dap5d0 { align-content: center; align-items: center; background-color: var(--token-3d5710ea-3913-4df0-b6b9-41509158f0c8, #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: 1430px; }\",\".framer-gvVZj .framer-zxzekv-container, .framer-gvVZj .framer-10sn61i-container, .framer-gvVZj .framer-2oh6j6-container, .framer-gvVZj .framer-u34x4o-container, .framer-gvVZj .framer-1ckuli-container, .framer-gvVZj .framer-ljj5ed-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-gvVZj .framer-anymak-container { flex: none; height: auto; position: sticky; top: 0px; width: 100%; z-index: 4; }\",\".framer-gvVZj .framer-12pqv86-container, .framer-gvVZj .framer-1aez3fg-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-gvVZj .framer-1gdoua5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-gvVZj .framer-18j2x7o-container { flex: none; height: 931px; position: relative; width: 100%; }\",\".framer-gvVZj .framer-9x9thm, .framer-gvVZj .framer-tiybkb, .framer-gvVZj .framer-h7ayl5, .framer-gvVZj .framer-uevw1c { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-end; overflow: visible; padding: 600px 40px 50px 40px; position: relative; width: 1430px; }\",\".framer-gvVZj .framer-1j6kj54, .framer-gvVZj .framer-omjag9, .framer-gvVZj .framer-5cpyj9 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 850px; position: relative; white-space: pre-wrap; width: 100%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-gvVZj .framer-7re7z7 { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 800px; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-gvVZj .framer-uve12u { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 1100px; position: relative; text-shadow: 50px 50px 100px #000000; white-space: pre-wrap; width: 100%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-gvVZj .framer-db7nr8 { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 830px; overflow: visible; position: relative; text-shadow: 24px 24px 50px #000000; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-gvVZj .framer-ooxuuz, .framer-gvVZj .framer-yok3f6 { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 830px; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-gvVZj .framer-1u1yscm { --border-bottom-width: 1px; --border-color: var(--token-a73805e3-9dc6-41c1-86f2-bad57334cc1e, #000000); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 20px 40px 20px 40px; position: relative; width: 100%; }\",\".framer-gvVZj .framer-53npgj, .framer-gvVZj .framer-t2wx05, .framer-gvVZj .framer-eb7c1b, .framer-gvVZj .framer-ze48lk, .framer-gvVZj .framer-18q223t, .framer-gvVZj .framer-p3lh6r { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 1240px; position: relative; white-space: pre-wrap; width: 100%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-gvVZj .framer-1p80fjs-container { flex: none; height: 78px; position: relative; width: 100%; }\",\".framer-gvVZj .framer-ibpwf5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; max-width: 1240px; overflow: visible; padding: 50px 40px 50px 40px; position: relative; width: 100%; }\",\".framer-gvVZj .framer-10fhtkh { aspect-ratio: 1.7580645314764365 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 569px); max-width: 1000px; position: relative; width: 100%; }\",\".framer-gvVZj .framer-s72rdu { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 600px; position: relative; white-space: pre-wrap; width: 100%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-gvVZj .framer-qhpz6h { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 850px; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-gvVZj .framer-1d29uz4-container, .framer-gvVZj .framer-8csntp-container { flex: none; height: auto; position: relative; width: auto; z-index: 1; }\",\".framer-gvVZj .framer-11dx4om { --border-bottom-width: 0px; --border-color: var(--token-a73805e3-9dc6-41c1-86f2-bad57334cc1e, #000000); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 75px 40px 50px 40px; position: relative; width: 100%; }\",\".framer-gvVZj .framer-jq5tze-container { flex: none; height: 709px; max-width: 1240px; position: relative; width: 100%; }\",\".framer-gvVZj .framer-mczqq5 { --border-bottom-width: 0px; --border-color: var(--token-a73805e3-9dc6-41c1-86f2-bad57334cc1e, #000000); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 50px 30px 50px 30px; position: relative; width: 390px; }\",\".framer-gvVZj .framer-111cx9q { display: grid; flex: none; gap: 44px; grid-auto-rows: min-content; grid-template-columns: repeat(1, minmax(200px, 1fr)); grid-template-rows: repeat(1, min-content); height: min-content; justify-content: center; max-width: 1240px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-gvVZj .framer-8sigrx, .framer-gvVZj .framer-a3v24s, .framer-gvVZj .framer-11qce9c, .framer-gvVZj .framer-26q1xo, .framer-gvVZj .framer-uv3pxi, .framer-gvVZj .framer-163175m, .framer-gvVZj .framer-4ilwlk, .framer-gvVZj .framer-1numewo, .framer-gvVZj .framer-1jqa3wu { 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-gvVZj .framer-vbga9y, .framer-gvVZj .framer-lt50qq, .framer-gvVZj .framer-1cop2r1, .framer-gvVZj .framer-jk5i9l, .framer-gvVZj .framer-1og5umx, .framer-gvVZj .framer-eebcn2 { --border-bottom-width: 1px; --border-color: var(--token-a73805e3-9dc6-41c1-86f2-bad57334cc1e, #000000); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; 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, 200px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-gvVZj .framer-g1ohoc, .framer-gvVZj .framer-t8yryu, .framer-gvVZj .framer-180sggc, .framer-gvVZj .framer-2idpe0, .framer-gvVZj .framer-vinhij, .framer-gvVZj .framer-nfpjg1, .framer-gvVZj .framer-hytg6h, .framer-gvVZj .framer-21cvsm, .framer-gvVZj .framer-b03lw8 { 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-gvVZj .framer-6cjcau, .framer-gvVZj .framer-vfdssl, .framer-gvVZj .framer-bfzkku, .framer-gvVZj .framer-8bc8v4, .framer-gvVZj .framer-1yw0jwe, .framer-gvVZj .framer-145fvcg, .framer-gvVZj .framer-1e3re68, .framer-gvVZj .framer-17kr5qs, .framer-gvVZj .framer-kdn6kc { --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-gvVZj .framer-mfhulf, .framer-gvVZj .framer-1ahujcv, .framer-gvVZj .framer-1y16bjy, .framer-gvVZj .framer-13djfhr, .framer-gvVZj .framer-i6hev5, .framer-gvVZj .framer-1emsfi7, .framer-gvVZj .framer-18rky7, .framer-gvVZj .framer-1jzh5zu, .framer-gvVZj .framer-1jdifny { --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-gvVZj .framer-o3zhyn, .framer-gvVZj .framer-2ijy0n { --border-bottom-width: 0px; --border-color: var(--token-a73805e3-9dc6-41c1-86f2-bad57334cc1e, #000000); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 50px 40px 50px 40px; position: relative; width: 100%; }\",\".framer-gvVZj .framer-1xr9ulc { display: grid; flex: none; gap: 44px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(200px, 1fr)); grid-template-rows: repeat(1, min-content); height: min-content; justify-content: center; max-width: 1240px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-gvVZj .framer-1aeis4y { display: grid; flex: none; gap: 44px; 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: 1240px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-gvVZj .framer-1agiqad, .framer-gvVZj .framer-vj3zr9, .framer-gvVZj .framer-yexvfx { --border-bottom-width: 1px; --border-color: var(--token-a73805e3-9dc6-41c1-86f2-bad57334cc1e, #000000); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; 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, 384px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-gvVZj .framer-1qo510w { --border-bottom-width: 0px; --border-color: var(--token-a73805e3-9dc6-41c1-86f2-bad57334cc1e, #000000); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-gvVZj .framer-7ig4pq { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 700px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-gvVZj .framer-1h7gkvu { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-gvVZj .framer-1m3ajpq { --border-bottom-width: 0px; --border-color: var(--token-a73805e3-9dc6-41c1-86f2-bad57334cc1e, #000000); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 60px 40px 80px 40px; position: relative; width: 100%; z-index: 0; }\",\".framer-gvVZj .framer-1q5vxp0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1240px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-gvVZj .framer-14t1no7 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 1240px; position: relative; white-space: pre-wrap; width: auto; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-gvVZj .framer-1jizcxm { display: grid; flex: none; gap: 30px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(4, minmax(200px, 1fr)); height: min-content; justify-content: center; max-width: 1240px; padding: 0px; position: relative; width: 100%; }\",\".framer-gvVZj .framer-1553j1i-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 100%; }\",\".framer-gvVZj .framer-1su4o5o { --border-bottom-width: 0px; --border-color: var(--token-a73805e3-9dc6-41c1-86f2-bad57334cc1e, #000000); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 50px 40px 50px 40px; position: relative; width: 100%; }\",\".framer-gvVZj .framer-syy442 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-gvVZj .framer-1i25bu7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: 118px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-gvVZj .framer-ha6tju { aspect-ratio: 3.8684210526315788 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 26px); overflow: visible; position: relative; text-decoration: none; width: 100px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-gvVZj .framer-1n0zsk0, .framer-gvVZj .framer-1ibzh1z { aspect-ratio: 3.8684210526315788 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); overflow: visible; position: relative; text-decoration: none; width: 115px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-gvVZj .framer-158zo7t { aspect-ratio: 4.842105263157895 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 27px); overflow: visible; position: relative; text-decoration: none; width: 130px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-gvVZj .framer-rhc86c { aspect-ratio: 7.7368421052631575 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 21px); overflow: visible; position: relative; text-decoration: none; width: 160px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-gvVZj .framer-3eef25 { aspect-ratio: 2.642857142857143 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 38px); overflow: visible; position: relative; text-decoration: none; width: 100px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-gvVZj .framer-suwrwq { aspect-ratio: 5.026315789473684 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 25px); overflow: visible; position: relative; text-decoration: none; width: 128px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-gvVZj .framer-1ujdm8l-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-gvVZj.framer-dap5d0, .framer-gvVZj .framer-1gdoua5, .framer-gvVZj .framer-9x9thm, .framer-gvVZj .framer-tiybkb, .framer-gvVZj .framer-h7ayl5, .framer-gvVZj .framer-uevw1c, .framer-gvVZj .framer-1u1yscm, .framer-gvVZj .framer-ibpwf5, .framer-gvVZj .framer-11dx4om, .framer-gvVZj .framer-mczqq5, .framer-gvVZj .framer-8sigrx, .framer-gvVZj .framer-vbga9y, .framer-gvVZj .framer-g1ohoc, .framer-gvVZj .framer-a3v24s, .framer-gvVZj .framer-lt50qq, .framer-gvVZj .framer-t8yryu, .framer-gvVZj .framer-11qce9c, .framer-gvVZj .framer-1cop2r1, .framer-gvVZj .framer-180sggc, .framer-gvVZj .framer-o3zhyn, .framer-gvVZj .framer-26q1xo, .framer-gvVZj .framer-jk5i9l, .framer-gvVZj .framer-2idpe0, .framer-gvVZj .framer-uv3pxi, .framer-gvVZj .framer-1og5umx, .framer-gvVZj .framer-vinhij, .framer-gvVZj .framer-163175m, .framer-gvVZj .framer-eebcn2, .framer-gvVZj .framer-nfpjg1, .framer-gvVZj .framer-2ijy0n, .framer-gvVZj .framer-4ilwlk, .framer-gvVZj .framer-1agiqad, .framer-gvVZj .framer-hytg6h, .framer-gvVZj .framer-1numewo, .framer-gvVZj .framer-vj3zr9, .framer-gvVZj .framer-21cvsm, .framer-gvVZj .framer-1jqa3wu, .framer-gvVZj .framer-yexvfx, .framer-gvVZj .framer-b03lw8, .framer-gvVZj .framer-1qo510w, .framer-gvVZj .framer-1m3ajpq, .framer-gvVZj .framer-1su4o5o, .framer-gvVZj .framer-syy442, .framer-gvVZj .framer-1i25bu7 { gap: 0px; } .framer-gvVZj.framer-dap5d0 > *, .framer-gvVZj .framer-1gdoua5 > *, .framer-gvVZj .framer-1su4o5o > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-gvVZj.framer-dap5d0 > :first-child, .framer-gvVZj .framer-1gdoua5 > :first-child, .framer-gvVZj .framer-9x9thm > :first-child, .framer-gvVZj .framer-tiybkb > :first-child, .framer-gvVZj .framer-h7ayl5 > :first-child, .framer-gvVZj .framer-uevw1c > :first-child, .framer-gvVZj .framer-1u1yscm > :first-child, .framer-gvVZj .framer-ibpwf5 > :first-child, .framer-gvVZj .framer-11dx4om > :first-child, .framer-gvVZj .framer-mczqq5 > :first-child, .framer-gvVZj .framer-8sigrx > :first-child, .framer-gvVZj .framer-vbga9y > :first-child, .framer-gvVZj .framer-g1ohoc > :first-child, .framer-gvVZj .framer-a3v24s > :first-child, .framer-gvVZj .framer-lt50qq > :first-child, .framer-gvVZj .framer-t8yryu > :first-child, .framer-gvVZj .framer-11qce9c > :first-child, .framer-gvVZj .framer-1cop2r1 > :first-child, .framer-gvVZj .framer-180sggc > :first-child, .framer-gvVZj .framer-o3zhyn > :first-child, .framer-gvVZj .framer-26q1xo > :first-child, .framer-gvVZj .framer-jk5i9l > :first-child, .framer-gvVZj .framer-2idpe0 > :first-child, .framer-gvVZj .framer-uv3pxi > :first-child, .framer-gvVZj .framer-1og5umx > :first-child, .framer-gvVZj .framer-vinhij > :first-child, .framer-gvVZj .framer-163175m > :first-child, .framer-gvVZj .framer-eebcn2 > :first-child, .framer-gvVZj .framer-nfpjg1 > :first-child, .framer-gvVZj .framer-2ijy0n > :first-child, .framer-gvVZj .framer-4ilwlk > :first-child, .framer-gvVZj .framer-1agiqad > :first-child, .framer-gvVZj .framer-hytg6h > :first-child, .framer-gvVZj .framer-1numewo > :first-child, .framer-gvVZj .framer-vj3zr9 > :first-child, .framer-gvVZj .framer-21cvsm > :first-child, .framer-gvVZj .framer-1jqa3wu > :first-child, .framer-gvVZj .framer-yexvfx > :first-child, .framer-gvVZj .framer-b03lw8 > :first-child, .framer-gvVZj .framer-1qo510w > :first-child, .framer-gvVZj .framer-1m3ajpq > :first-child, .framer-gvVZj .framer-1su4o5o > :first-child, .framer-gvVZj .framer-syy442 > :first-child { margin-top: 0px; } .framer-gvVZj.framer-dap5d0 > :last-child, .framer-gvVZj .framer-1gdoua5 > :last-child, .framer-gvVZj .framer-9x9thm > :last-child, .framer-gvVZj .framer-tiybkb > :last-child, .framer-gvVZj .framer-h7ayl5 > :last-child, .framer-gvVZj .framer-uevw1c > :last-child, .framer-gvVZj .framer-1u1yscm > :last-child, .framer-gvVZj .framer-ibpwf5 > :last-child, .framer-gvVZj .framer-11dx4om > :last-child, .framer-gvVZj .framer-mczqq5 > :last-child, .framer-gvVZj .framer-8sigrx > :last-child, .framer-gvVZj .framer-vbga9y > :last-child, .framer-gvVZj .framer-g1ohoc > :last-child, .framer-gvVZj .framer-a3v24s > :last-child, .framer-gvVZj .framer-lt50qq > :last-child, .framer-gvVZj .framer-t8yryu > :last-child, .framer-gvVZj .framer-11qce9c > :last-child, .framer-gvVZj .framer-1cop2r1 > :last-child, .framer-gvVZj .framer-180sggc > :last-child, .framer-gvVZj .framer-o3zhyn > :last-child, .framer-gvVZj .framer-26q1xo > :last-child, .framer-gvVZj .framer-jk5i9l > :last-child, .framer-gvVZj .framer-2idpe0 > :last-child, .framer-gvVZj .framer-uv3pxi > :last-child, .framer-gvVZj .framer-1og5umx > :last-child, .framer-gvVZj .framer-vinhij > :last-child, .framer-gvVZj .framer-163175m > :last-child, .framer-gvVZj .framer-eebcn2 > :last-child, .framer-gvVZj .framer-nfpjg1 > :last-child, .framer-gvVZj .framer-2ijy0n > :last-child, .framer-gvVZj .framer-4ilwlk > :last-child, .framer-gvVZj .framer-1agiqad > :last-child, .framer-gvVZj .framer-hytg6h > :last-child, .framer-gvVZj .framer-1numewo > :last-child, .framer-gvVZj .framer-vj3zr9 > :last-child, .framer-gvVZj .framer-21cvsm > :last-child, .framer-gvVZj .framer-1jqa3wu > :last-child, .framer-gvVZj .framer-yexvfx > :last-child, .framer-gvVZj .framer-b03lw8 > :last-child, .framer-gvVZj .framer-1qo510w > :last-child, .framer-gvVZj .framer-1m3ajpq > :last-child, .framer-gvVZj .framer-1su4o5o > :last-child, .framer-gvVZj .framer-syy442 > :last-child { margin-bottom: 0px; } .framer-gvVZj .framer-9x9thm > *, .framer-gvVZj .framer-tiybkb > *, .framer-gvVZj .framer-h7ayl5 > *, .framer-gvVZj .framer-uevw1c > *, .framer-gvVZj .framer-ibpwf5 > *, .framer-gvVZj .framer-11dx4om > *, .framer-gvVZj .framer-mczqq5 > *, .framer-gvVZj .framer-8sigrx > *, .framer-gvVZj .framer-a3v24s > *, .framer-gvVZj .framer-11qce9c > *, .framer-gvVZj .framer-o3zhyn > *, .framer-gvVZj .framer-26q1xo > *, .framer-gvVZj .framer-uv3pxi > *, .framer-gvVZj .framer-163175m > *, .framer-gvVZj .framer-2ijy0n > *, .framer-gvVZj .framer-4ilwlk > *, .framer-gvVZj .framer-1numewo > *, .framer-gvVZj .framer-1jqa3wu > *, .framer-gvVZj .framer-1qo510w > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-gvVZj .framer-1u1yscm > *, .framer-gvVZj .framer-vbga9y > *, .framer-gvVZj .framer-lt50qq > *, .framer-gvVZj .framer-1cop2r1 > *, .framer-gvVZj .framer-jk5i9l > *, .framer-gvVZj .framer-1og5umx > *, .framer-gvVZj .framer-eebcn2 > *, .framer-gvVZj .framer-1agiqad > *, .framer-gvVZj .framer-vj3zr9 > *, .framer-gvVZj .framer-yexvfx > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-gvVZj .framer-g1ohoc > *, .framer-gvVZj .framer-t8yryu > *, .framer-gvVZj .framer-180sggc > *, .framer-gvVZj .framer-2idpe0 > *, .framer-gvVZj .framer-vinhij > *, .framer-gvVZj .framer-nfpjg1 > *, .framer-gvVZj .framer-hytg6h > *, .framer-gvVZj .framer-21cvsm > *, .framer-gvVZj .framer-b03lw8 > *, .framer-gvVZj .framer-syy442 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-gvVZj .framer-1m3ajpq > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-gvVZj .framer-1i25bu7 > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-gvVZj .framer-1i25bu7 > :first-child { margin-left: 0px; } .framer-gvVZj .framer-1i25bu7 > :last-child { margin-right: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,'.framer-gvVZj[data-border=\"true\"]::after, .framer-gvVZj [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 (max-width: 767px) { .framer-gvVZj.framer-dap5d0 { padding: 55px 0px 0px 0px; width: 390px; } .framer-gvVZj .framer-zxzekv-container { order: 0; } .framer-gvVZj .framer-anymak-container { left: 0px; order: 1; position: fixed; right: 0px; top: -1px; width: unset; } .framer-gvVZj .framer-12pqv86-container { order: 2; } .framer-gvVZj .framer-1gdoua5 { height: 700px; justify-content: flex-end; order: 3; } .framer-gvVZj .framer-18j2x7o-container { height: 100%; } .framer-gvVZj .framer-1u1yscm { order: 4; padding: 20px 0px 20px 0px; } .framer-gvVZj .framer-53npgj { max-width: 100%; width: 85%; } .framer-gvVZj .framer-ibpwf5 { order: 5; } .framer-gvVZj .framer-10fhtkh { height: var(--framer-aspect-ratio-supported, 176px); } .framer-gvVZj .framer-11dx4om { order: 6; padding: 50px 40px 50px 40px; } .framer-gvVZj .framer-jq5tze-container { height: 200px; } .framer-gvVZj .framer-mczqq5 { order: 7; } .framer-gvVZj .framer-vbga9y, .framer-gvVZj .framer-lt50qq, .framer-gvVZj .framer-1cop2r1 { height: var(--framer-aspect-ratio-supported, 330px); } .framer-gvVZj .framer-1qo510w { order: 10; padding: 50px 30px 50px 30px; } .framer-gvVZj .framer-1h7gkvu { width: 600px; } .framer-gvVZj .framer-1m3ajpq { order: 11; padding: 60px 30px 80px 30px; } .framer-gvVZj .framer-1jizcxm { grid-template-columns: repeat(1, minmax(200px, 1fr)); } .framer-gvVZj .framer-1su4o5o { order: 12; padding: 50px 30px 50px 30px; } .framer-gvVZj .framer-syy442 { gap: 30px; } .framer-gvVZj .framer-p3lh6r { max-width: unset; } .framer-gvVZj .framer-1i25bu7 { flex-direction: column; flex-wrap: wrap; height: min-content; } .framer-gvVZj .framer-suwrwq { height: var(--framer-aspect-ratio-supported, 26px); } .framer-gvVZj .framer-1ujdm8l-container { order: 13; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-gvVZj .framer-syy442, .framer-gvVZj .framer-1i25bu7 { gap: 0px; } .framer-gvVZj .framer-syy442 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-gvVZj .framer-syy442 > :first-child, .framer-gvVZj .framer-1i25bu7 > :first-child { margin-top: 0px; } .framer-gvVZj .framer-syy442 > :last-child, .framer-gvVZj .framer-1i25bu7 > :last-child { margin-bottom: 0px; } .framer-gvVZj .framer-1i25bu7 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } }}\",\"@media (min-width: 768px) and (max-width: 1429px) { .framer-gvVZj.framer-dap5d0 { width: 768px; } .framer-gvVZj .framer-18j2x7o-container { height: 100vh; } .framer-gvVZj .framer-1u1yscm, .framer-gvVZj .framer-1qo510w { padding: 50px 40px 50px 40px; } .framer-gvVZj .framer-10fhtkh { height: var(--framer-aspect-ratio-supported, 391px); } .framer-gvVZj .framer-jq5tze-container { height: 450px; } .framer-gvVZj .framer-1h7gkvu { width: 500px; } .framer-gvVZj .framer-1jizcxm { grid-template-columns: repeat(2, minmax(200px, 1fr)); } .framer-gvVZj .framer-syy442 { gap: 30px; width: 710px; } .framer-gvVZj .framer-p3lh6r { max-width: unset; } .framer-gvVZj .framer-1i25bu7 { flex-wrap: wrap; gap: 51px; height: min-content; } .framer-gvVZj .framer-suwrwq { height: var(--framer-aspect-ratio-supported, 26px); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-gvVZj .framer-syy442, .framer-gvVZj .framer-1i25bu7 { gap: 0px; } .framer-gvVZj .framer-syy442 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-gvVZj .framer-syy442 > :first-child { margin-top: 0px; } .framer-gvVZj .framer-syy442 > :last-child { margin-bottom: 0px; } .framer-gvVZj .framer-1i25bu7 > * { margin: 0px; margin-left: calc(51px / 2); margin-right: calc(51px / 2); } .framer-gvVZj .framer-1i25bu7 > :first-child { margin-left: 0px; } .framer-gvVZj .framer-1i25bu7 > :last-child { margin-right: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5837\n * @framerIntrinsicWidth 1430\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"feLlb_vMS\":{\"layout\":[\"fixed\",\"auto\"]},\"nFM34hGIr\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"Ddl253ByO\":{\"pattern\":\":Ddl253ByO\",\"name\":\"navbar\"}}\n * @framerResponsiveScreen\n */const FramerIJzal5roY=withCSS(Component,css,\"framer-gvVZj\");export default FramerIJzal5roY;FramerIJzal5roY.displayName=\"Page\";FramerIJzal5roY.defaultProps={height:5837,width:1430};addFonts(FramerIJzal5roY,[{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:\"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/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{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/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{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/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{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/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{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/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"},{family:\"Basis Grotesque Mono Pro Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/xb5WyI4KWw80YUDySt68GuLpocQ.woff\"},{family:\"ITC Avant Garde Gothic Pro Book\",source:\"custom\",url:\"https://framerusercontent.com/assets/CeUZrbnVj5GMfGIDT0VEA5RpMW4.woff2\"}]},...SmoothScrollFonts,...NavbarFonts,...AnnouncementMarqueeFonts,...ButtonOffWhiteFonts,...SlideshowFonts,...ClientTickerFonts,...ClientTickerMobileFonts,...ButtonFonts,...YouTubeFonts,...FooterButtonFonts,...BlogItemFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerIJzal5roY\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1430\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"5837\",\"framerScrollSections\":\"{\\\"Ddl253ByO\\\":{\\\"pattern\\\":\\\":Ddl253ByO\\\",\\\"name\\\":\\\"navbar\\\"}}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"feLlb_vMS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"nFM34hGIr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerResponsiveScreen\":\"\",\"framerContractVersion\":\"1\",\"framerAcceptsLayoutTemplate\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "+2CAA6C,IAAMA,GAAU,IAAI,OAAO,UAAW,SAAgB,SAASC,IAA0B,CAAC,GAAID,GAAU,EAAS,IAAG,OAAO,SAAS,OAAS,IAC1L,MAAM,mBAAyB,GAAG,OAAO,SAAS,SAAW,IAAa,MAAM,qBAA2B,GAAG,OAAO,SAAS,aAAe,IAAa,MAAM,yBAA0B,CAAQ,SAASE,IAA8B,CAAC,GAAIF,GAAU,EAAS,IAAG,OAAO,SAAS,OAAS,IAAa,MAAM,SAAe,GAAG,OAAO,SAAS,SAAW,IAAa,MAAM,WAAiB,GAAG,OAAO,SAAS,aAAe,IAAa,MAAM,eAAgB,CAAQ,SAASG,IAAqB,CAAC,GAAIH,GAAU,EAAS,MAAM,CAAC,SAASE,GAA6B,CAAC,CAAE,CAAQ,SAASE,IAAmB,CAAC,GAAG,CAACJ,GAAU,EAAE,OAAO,GAAK,CAACK,EAAUC,CAAY,EAAEC,EAASJ,GAAoB,CAAC,EAAQK,EAAmB,IAAIF,EAAaH,GAAoB,CAAC,EAAE,OAAAM,GAAU,IAAI,CAAC,IAAMC,EAAiBT,GAAyB,EAAE,gBAAS,iBAAiBS,EAAiBF,EAAmB,EAAK,EAAQ,IAAI,CAAC,SAAS,oBAAoBE,EAAiBF,CAAkB,CAAE,CAAE,CAAC,EAASH,CAAU,CCCx9B,IAAMM,GAAU,KAaE,SAARC,EAA2BC,EAAM,CAEpC,GAAK,CAAC,MAAAC,EAAM,UAAAC,EAAU,UAAAC,EAAU,eAAAC,EAAe,gBAAAC,EAAgB,YAAAC,EAAY,UAAAC,EAAU,IAAAC,EAAI,QAAAC,EAAQ,eAAAC,EAAe,WAAAC,EAAW,aAAAC,EAAa,cAAAC,EAAc,YAAAC,EAAY,WAAAC,EAAW,YAAAC,EAAY,gBAAAC,EAAgB,kBAAAC,EAAkB,aAAAC,EAAa,aAAAC,GAAa,gBAAAC,EAAgB,MAAAC,EAAK,EAAEtB,EAAW,CAAC,eAAAuB,EAAe,aAAAC,GAAa,cAAAC,GAAc,mBAAAC,GAAmB,aAAAC,EAAY,EAAEvB,EAAoB,CAAC,YAAAwB,GAAY,SAAAC,GAAS,UAAAC,GAAU,UAAAC,EAAU,UAAAC,CAAS,EAAEhB,EAAiB,CAAC,kBAAAiB,GAAkB,UAAAC,EAAU,YAAAC,GAAY,UAAAC,GAAU,UAAAC,GAAU,WAAAC,GAAW,iBAAAC,GAAiB,GAAK,kBAAAC,GAAkB,GAAM,cAAAC,EAAc,aAAAC,GAAa,SAAAC,GAAS,gBAAAC,GAAgB,kBAAAC,GAAkB,mBAAAC,GAAmB,iBAAAC,EAAgB,EAAE5B,EAAkB,CAAC,iBAAA6B,GAAiB,QAAAC,GAAQ,UAAAC,GAAU,WAAAC,GAAW,YAAAC,GAAY,QAAAC,GAAQ,SAAAC,GAAS,eAAAC,GAAe,kBAAAC,GAAkB,YAAAC,GAAY,SAAAC,EAAQ,EAAErC,EAAsBsC,GAAajD,EAAe,GAAGC,OAAgBC,OAAkBC,OAAmBC,MAAgB,GAAGL,MAE16BmD,EAASC,GAAa,QAAQ,IAAIA,GAAa,OACtDC,EAAc7D,EAAM,OAAO,OAAO,EAAQ8D,GAAYC,GAAS,MAAMF,CAAa,EAAE,EAAQG,EAAa9D,IAAY,QAAQA,IAAY,QAAc+D,GAAW/D,IAAY,SAASA,IAAY,SAElM,GAAG,CAAC4D,GAAa,OAAoBI,EAAM,UAAU,CAAC,MAAMC,GAAkB,SAAS,CAAcC,EAAK,MAAM,CAAC,MAAMC,GAAY,SAAS,cAAI,CAAC,EAAeD,EAAK,IAAI,CAAC,MAAME,GAAY,SAAS,oBAAoB,CAAC,EAAeF,EAAK,IAAI,CAAC,MAAMG,GAAe,SAAS,oEAAoE,CAAC,CAAC,CAAC,CAAC,EAEzV,IAAMC,GAAUC,EAAO,IAAI,EAAQC,EAAYC,GAAQ,IAAYd,EAAc,IAAIe,GAAoBC,GAAU,CAAC,EAAI,CAAChB,CAAa,CAAC,EAAQiB,GAAWL,EAAO,MAAS,EAAO,CAACM,EAAKC,EAAO,EAAEC,EAAS,CAAC,OAAO,KAAK,SAAS,KAAK,KAAK,KAAK,UAAU,KAAK,WAAW,KAAK,eAAe,IAAI,CAAC,EAAiC,CAACC,GAAWC,EAAa,EAAEF,EAAS,EAAK,EAAO,CAACG,GAAkBC,EAAoB,EAAEJ,EAAS7E,CAAe,EAA+B,CAACkF,GAAYC,EAAc,EAAEN,EAAS,EAAK,EAA8B,CAACO,GAAWC,EAAa,EAAER,EAAS,EAAK,EAE9jBS,GAAc,CAAC,EAAMC,GAAY,EAAKhC,IAAUgC,GAAY,GAElE,IAAMC,GAAQC,GAAY,IAAI,CAAC,GAAG/B,IAAaU,GAAU,QAAQ,CAAC,IAAMsB,EAAMjC,EAAc,OAAO,EAAQkC,EAAa/B,EAAaQ,GAAU,QAAQ,YAAYA,GAAU,QAAQ,aAAmBwB,EAAMtB,EAAY,CAAC,EAAE,QAAQV,EAAaU,EAAY,CAAC,EAAE,QAAQ,WAAWA,EAAY,CAAC,EAAE,QAAQ,UAAU,EAAsNuB,IAA1MvB,EAAYoB,CAAK,EAAE,QAAQ9B,EAAaU,EAAYoB,CAAK,EAAE,QAAQ,WAAWpB,EAAYoB,CAAK,EAAE,QAAQ,YAAYpB,EAAYoB,CAAK,EAAE,QAAQ,UAAUpB,EAAYoB,CAAK,EAAE,QAAQ,aAAa,GAA2BE,EAAMzF,EAAU2F,GAASxB,EAAY,CAAC,EAAE,QAAQV,EAAaU,EAAY,CAAC,EAAE,QAAQ,YAAYA,EAAY,CAAC,EAAE,QAAQ,aAAa,EAAQyB,GAAUzB,EAAY,CAAC,EAAE,QAAQA,EAAY,CAAC,EAAE,QAAQ,YAAY,EAAQ0B,GAAW1B,EAAY,CAAC,EAAE,QAAQA,EAAY,CAAC,EAAE,QAAQ,aAAa,EAAQ2B,GAAerC,EAAa,KAAK,IAAI,SAAS,gBAAgB,aAAa,EAAEsC,GAAO,YAAY,EAAE9B,GAAU,QAAQ,WAAW,EAAE,KAAK,IAAI,SAAS,gBAAgB,cAAc,EAAE8B,GAAO,aAAa,EAAE9B,GAAU,QAAQ,YAAY,EAAEQ,GAAQ,CAAC,OAAOe,EAAa,SAASE,GAAe,KAAKC,GAAS,UAAAC,GAAU,WAAAC,GAAW,eAAAC,EAAc,CAAC,EAAG,EAAE,CAACvC,EAAW,CAAC,EAAQyC,GAAgBV,GAAY,IAAI,CAACW,GAAK,KAAKZ,EAAO,CAAE,EAAE,CAACA,EAAO,CAAC,EAG7uCa,GAAgB,IAAI,CAAI3C,IAAYyC,GAAgB,CAAE,EAAE,CAACzC,GAAYhD,CAAU,CAAC,EAGhF,IAAI4F,GAAcjC,EAAO,EAAI,EAAEkC,GAAU,IAAYC,GAAOpC,GAAU,QAAQ,CAAC,CAAC,YAAAqC,CAAW,IAAI,CAAI,CAACH,GAAc,UAAUG,EAAY,OAAOA,EAAY,UAASN,GAAgB,EAAEd,GAAc,EAAI,GAAGiB,GAAc,QAAQ,EAAM,CAAC,EAAI,CAAC,CAAC,EAAEC,GAAU,IAAI,CAAC,GAAGnB,GAAW,CAAC,IAAMsB,EAAM,WAAW,IAAIrB,GAAc,EAAK,EAAE,GAAG,EAAE,MAAM,IAAI,aAAaqB,CAAK,EAAG,EAAE,CAACtB,EAAU,CAAC,EAEhX,IAAMuB,GAA+DlD,GAAc,OAAamD,GAAarD,EAAS,EAAoCoB,GAAK,SAAekC,GAA+ClC,GAAK,KAAMxE,EAAU2G,GAAWjH,EAAUgH,GAAiB,CAACE,EAAYC,EAAc,EAAEnC,EAAShF,EAAU8G,EAAU,EAAO,CAACM,GAAWC,EAAa,EAAErC,EAAS,EAAK,EAAyGsC,GAAc9C,EAAO,IAAI,EAAQ+C,GAASC,GAAUF,EAAa,EAAQG,GAAUC,GAAkB,GAAGH,GAAeI,GAAO3D,GAAW,EAAE,GAA+C4D,GAAKC,GAAed,EAAY,EAAuEe,GAAe/D,EAAa,CAAC/D,GAA8C8E,GAAK,UAAWxE,GAAK,CAACN,GAA8C8E,GAAK,WAAYxE,GAAsDyH,GAAY,IAAIJ,GAAOT,EAAYF,GAAwIgB,GAActE,EAA8H,EAArHuE,GAAaL,GAAKM,GAAO,CAAC,IAAMC,EAAQC,GAAK,CAACrB,GAAa,CAACA,GAAa,EAAEmB,CAAK,EAAE,OAAO,MAAMC,CAAO,EAAE,EAAEA,CAAQ,CAAC,EAAqEE,GAAaD,GAAK,EAAEtB,GAAWI,CAAW,EAAQoB,GAAqBF,GAAK,EAAE,CAACtB,GAAWI,CAAW,EAAqHV,GAAgB,IAAI,CAAuC1B,GAAK,WAAY,MAG9mD,CAAC2B,GAAc,SAASlB,IAAYqC,GAAK,IAAIG,GAAY,CAAC,CAAG,EAAE,CAACjD,EAAKiC,GAAaY,GAAOV,GAAWC,EAAYF,GAAYzB,EAAU,CAAC,EAG3G,IAAMgD,GAAY,IAAI,CAAI7E,GAAU,CAACG,IAAa,CAACiB,EAAK,QAAQsC,KAAqBQ,GAAK,IAAI,IAAIG,GAAY,GAAGS,GAAQZ,GAAKG,GAAY,EAAE/G,CAAiB,EAAMb,GAAiBgF,KAAmBN,GAAW,QAAQ,WAAW,IAAI,CAACsC,GAAeD,EAAY,CAAC,EAAEqB,GAAY,CAAE,EAAExH,EAAgB,GAAG,GAAG,EAAuC0H,GAASC,GAAO,CAAyDvB,GAApDnD,GAAmEkD,EAAYwB,EAApDxB,EAAYwB,CAA6C,CAAG,EAAQC,GAAQhE,GAAO,CAAC,IAAMiE,EAAmBR,GAAK,EAAEtB,GAAWI,CAAW,EAAQ2B,EAAyBT,GAAK,EAAE,CAACtB,GAAWI,CAAW,EAAQ4B,EAAKnE,EAAMiE,EAAyBG,GAAapE,EAAM,KAAK,IAAIkE,CAAwB,EAAyD1B,GAAnDnD,GAAkEkD,EAAY6B,GAAnD7B,EAAY4B,CAAmD,CAAG,EAE3zBE,GAAgB,IAAI,CAAC3B,GAAc,EAAI,CAAE,EAAQ4B,GAAc,CAACC,EAAM,CAAC,OAAAC,EAAO,SAAAC,CAAQ,IAAI,CAAC/B,GAAc,EAAK,EAAE,IAAMgC,EAAWtF,EAAaoF,EAAO,EAAEA,EAAO,EAAQG,GAAkB,IAC9LC,GAAaxF,EAAaqF,EAAS,EAAEA,EAAS,EAAQI,GAAaH,EAAW,CAACvE,EAAK,KAAK,EAAQ2E,GAAaJ,EAAWvE,EAAK,KAAK,EAA6D4E,GAAiB,KAAK,IAAIL,CAAU,EAAQM,GAAU,KAAK,MAAMD,GAAiB5E,EAAK,IAAI,EAAqF8E,GAAiBD,KAAY,EAAE,EAAEA,GAA0DJ,GAAaD,GAAmBb,GAAS,CAACmB,EAAgB,EAAWL,GAAa,CAACD,GAAmBb,GAASmB,EAAgB,GAA2EJ,IAAcf,GAASkB,EAAS,EAAMF,IAAchB,GAAS,CAACkB,EAAS,EAAI,EAAgEjD,GAAU,IAAI,CAAC,GAAG,GAACe,IAAWlC,IAAkB,OAAAgD,GAAY,EAAQ,IAAI1D,GAAW,SAAS,aAAaA,GAAW,OAAO,CAAE,EAAE,CAACY,GAAcgC,GAAUlC,EAAU,CAAC,EAA8D,IAAIsE,GAAa,EAE5gCC,GAAiB,QAAQ,IAAIjJ,QAAiBP,SAAWA,EAAIO,OAInE,QAAQ8D,EAAM,EAAEA,EAAMe,GAAYf,IAASc,GAAc,KAAK,GAAG3B,GAAS,IAAIF,EAAc,CAACmG,EAAMC,IAAa,CAAC,IAAIC,EAAI,OAAGD,IAAa,IAAGC,EAAIxF,EAAY,CAAC,GAAMuF,IAAapG,EAAc,OAAO,IAAGqG,EAAIxF,EAAY,CAAC,GAAuBN,EAAK+F,GAAM,CAAC,IAAIzF,EAAYuF,CAAU,EAAE,SAASrF,EAAMqF,EAAW,KAAK,MAAMrF,EAAM,MAAMZ,GAAalD,EAAW,EAAEiJ,GAAwB,OAAO,OAAQ/F,EAAkD,OAArClD,EAAW,EAAEiJ,GAAiB,OAAc,KAAKhF,EAAK,MAAMiF,EAAM,YAAgEnG,GAAc,OAAO,aAAaoE,GAAa,aAAa6B,KAAe,IAAIvJ,EAAI,SAASoD,EAAS,aAAaK,EAAa,eAAe1C,EAAe,aAAaC,GAAa,cAAcC,GAAc,SAASoD,EAAMqF,CAAU,EAAErF,EAAMqF,EAAW,IAAI,CAAE,CAAC,CAAC,EAEhyB,IAAMG,GAAcpG,EAAa,WAAW,YAAkBqG,GAAexI,GAAU,EAAQyI,GAAa,IAAIzI,GAAU,EAAQ0I,GAAeC,GAAM1I,EAAU,EAAEuI,EAAc,EAAQI,GAAa,IAAI3I,EAAgB4I,GAAS,mBAAmBN,qBAAgCrI,MAAcwI,yBAAqCF,yBAAqCC,sBAAgCvI,MAAc0I,OAEtZE,GAAK,CAAC,EAAQC,GAAc,CAAC,EAAE,GAAG7H,GAAiB,CAAC,QAAQ8H,EAAE,EAAEA,EAAuDhH,GAAc,OAAQgH,IAAKF,GAAK,KAAkBvG,EAAK0G,GAAI,CAAC,SAAS,CAAC,GAAGC,GAAS,MAAM/H,GAAQ,OAAOA,GAAQ,gBAAgBK,EAAQ,EAAE,YAAY2H,GAAiB,gBAAgBzH,GAAkB,QAAQC,GAAY,QAAQ,IAAIoF,GAAQiC,CAAC,EAAE,aAAavC,GAAa,qBAAqBC,GAAqB,MAAMxB,GAAW,MAAM8D,EAAE,IAAIzH,GAAQ,QAAQD,GAAY,aAAaa,EAAa,WAAWC,EAAU,EAAE4G,CAAC,CAAC,EAAMpH,GAAS,IAAGmH,GAAc,eAAeA,GAAc,qBAAqBA,GAAc,kBAAkB,QAAQnH,SAAgB,IAAMwH,GAAU5K,EAAY,CAAC,KAAK2D,EAAa,IAAI,IAAI,YAAYiF,GAAgB,UAAUC,GAAc,kBAAkB,GAAK,OAAO,CAAC,EAAErB,GAAK,EAAEA,EAAI,EAAE,aAAa,EAAK,EAAE,CAAC,EAAQqD,GAAY1I,IAAgB,YAAYA,IAAgB,WAAWA,IAAgB,YAAkB2I,GAAe3I,IAAgB,eAAeA,IAAgB,cAAcA,IAAgB,eAAqB4I,GAAa5I,IAAgB,YAAYA,IAAgB,cAAoB6I,GAAc7I,IAAgB,aAAaA,IAAgB,eAAqB8I,GAAY9I,IAAgB,WAAWA,IAAgB,cAAcA,IAAgB,OAAO,OAAoB0B,EAAM,UAAU,CAAC,MAAM,CAAC,GAAGqH,GAAe,QAAQ7H,GAAa,gBAAgB/B,GAAY+I,GAAS,OAAU,aAAa/I,GAAY+I,GAAS,OAAU,UAAU/I,GAAY+I,GAAS,OAAU,QAA2C3F,GAAK,OAAQ,KAAK,EAAElF,GAAU,WAAW,MAAM,EAAE,aAAa,IAAI,CAACsF,GAAc,EAAI,EAAMzD,IAAa2D,GAAqB,EAAK,CAAE,EAAE,aAAa,IAAI,CAACF,GAAc,EAAK,EAAMzD,IAAa2D,GAAqB,EAAI,CAAE,EAAE,YAAY8D,GAAO,CACtyDA,EAAM,eAAe,EAAE5D,GAAe,EAAI,CAAE,EAAE,UAAU,IAAIA,GAAe,EAAK,EAAE,IAAIgC,GAAc,SAAS,CAAcnD,EAAK,MAAM,CAAC,MAAM,CAAC,MAAM,OAAO,OAAO,OAAO,OAAO,EAAE,QAAQ,UAAU,SAAS,WAAW,MAAM,EAAE,SAASxC,GAAS,UAAU,SAAS,aAAaT,GAAa,WAAW,OAAO,YAAYwC,EAAS,OAAOlC,EAAkB,EAAE,SAAsB2C,EAAKoH,EAAO,GAAG,CAAC,IAAIhH,GAAU,GAAGyG,GAAU,MAAM,CAAC,GAAGM,GAAe,IAAIhL,EAAI,WAAWD,EAAU,EAAE0D,EAAaL,EAASoE,GAAeE,GAAa,EAAE,EAAGjE,EAAkD,EAArCL,EAASoE,GAAeE,GAAe,cAAcjE,EAAa,MAAM,SAAS,eAAexC,KAAgB,GAAG,CAACmC,EAAS,cAAc,OAAU,OAAOtD,EAAYiF,GAAY,WAAW,OAAO,OAAO,WAAW,OAAO,GAAGjE,EAAK,EAAE,SAASqE,EAAa,CAAC,CAAC,CAAC,EAAexB,EAAM,WAAW,CAAC,MAAM,CAAC,GAAGuH,EAAc,EAAE,aAAa,gCAAgC,UAAU,6BAA6B,SAAS,CAAcvH,EAAMsH,EAAO,IAAI,CAAC,MAAM,CAAC,SAAS,WAAW,QAAQ,OAAO,cAAcxH,EAAa,MAAM,SAAS,eAAe1B,GAAiB,gBAAgB,SAAS,IAAIA,GAAiB,QAAQI,GAAS,QAAQH,GAAkB1C,GAAU,EAAE,WAAW,SAAS,MAAM4C,GAAa,IAAIH,GAAiBG,GAAayI,GAAYvI,GAAgB,QAAQ,KAAKL,GAAiBG,GAAa2I,GAAatI,GAAiBwI,GAAY,EAAE,QAAQ,MAAMhJ,GAAiBG,GAAa4I,GAAczI,GAAkB0I,GAAY,EAAE,QAAQ,OAAOhJ,GAAiBG,GAAa0I,GAAetI,GAAmB,OAAO,EAAE,QAAQN,IAAmB,CAAC,QAAQ2C,GAAW,EAAErF,EAAS,EAAE,WAAWoB,EAAkB,SAAS,CAAcmD,EAAKoH,EAAO,OAAO,CAAC,KAAK,SAAS,MAAM,CAAC,GAAGR,GAAiB,gBAAgB7I,GAAU,MAAMF,EAAU,OAAOA,EAAU,aAAaC,GAAY,OAAQ8B,EAAgB,EAAH,GAAK,QAAQhC,GAAkB,QAAQ,OAAO,cAAc,MAAM,EAAE,QAAQ,IAAI0G,GAAS,EAAE,EAAE,aAAa,WAAW,SAAS,CAAC,MAAM,EAAE,EAAE,WAAW,CAAC,SAAS,GAAG,EAAE,SAAsBtE,EAAK,MAAM,CAAC,SAAS,QAAQ,MAAMnC,EAAU,OAAOA,EAAU,IAAIG,IAAW,sEAAsE,IAAI,YAAY,CAAC,CAAC,CAAC,EAAegC,EAAKoH,EAAO,OAAO,CAAC,KAAK,SAAS,MAAM,CAAC,GAAGR,GAAiB,gBAAgB7I,GAAU,MAAMF,EAAU,OAAOA,EAAU,aAAaC,GAAY,OAAQ8B,EAAgB,EAAH,GAAK,QAAQhC,GAAkB,QAAQ,OAAO,cAAc,MAAM,EAAE,QAAQ,IAAI0G,GAAS,CAAC,EAAE,aAAa,OAAO,SAAS,CAAC,MAAM,EAAE,EAAE,WAAW,CAAC,SAAS,GAAG,EAAE,SAAsBtE,EAAK,MAAM,CAAC,SAAS,QAAQ,MAAMnC,EAAU,OAAOA,EAAU,IAAII,IAAY,sEAAsE,IAAI,YAAY,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEsI,GAAK,OAAO,EAAevG,EAAK,MAAM,CAAC,MAAM,CAAC,GAAGsH,GAAmB,KAAK1H,EAAa,MAAMf,GAAU,IAAKe,EAAmB,QAAN,MAAc,UAAUA,EAAa,mBAAmB,mBAAmB,cAAcA,EAAa,MAAM,SAAS,OAAOA,EAAaf,GAAU,QAAQ,aAAaC,GAAW,gBAAgBI,GAAe,WAAW,OAAO,GAAGsH,EAAa,EAAE,SAASD,EAAI,CAAC,EAAE,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAyB7K,EAAU,aAAa,CAAC,UAAU,OAAO,YAAY,GAAM,UAAU,EAAE,WAAW,EAAE,SAAS,GAAK,IAAI,GAAG,QAAQ,GAAG,gBAAgB,GAAK,eAAe,CAAC,eAAe,EAAE,aAAa,EAAE,cAAc,EAAE,mBAAmB,KAAK,aAAa,EAAI,EAAE,kBAAkB,CAAC,KAAK,SAAS,UAAU,IAAI,QAAQ,EAAE,EAAE,YAAY,CAAC,YAAY,GAAM,SAAS,GAAM,UAAU,GAAG,UAAU,EAAE,UAAU,CAAC,EAAE,aAAa,CAAC,kBAAkB,GAAK,kBAAkB,GAAM,iBAAiB,GAAK,UAAU,kBAAkB,UAAU,EAAE,EAAE,gBAAgB,CAAC,iBAAiB,EAAI,CAAC,EAAyB6L,GAAoB7L,EAAU,CAAC,MAAM,CAAC,KAAK8L,EAAY,MAAM,MAAM,UAAU,QAAQ,CAAC,KAAKA,EAAY,iBAAiB,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,wBAAwB,GAAK,aAAa9L,EAAU,aAAa,SAAS,EAAE,gBAAgB,CAAC,KAAK8L,EAAY,QAAQ,MAAM,YAAY,aAAa,EAAI,EAAE,gBAAgB,CAAC,KAAKA,EAAY,OAAO,MAAM,WAAW,aAAa,IAAI,IAAI,GAAG,IAAI,GAAG,KAAK,GAAG,eAAe,GAAK,KAAK,IAAI,OAAO7L,GAAO,CAACA,EAAM,eAAe,EAAE,YAAY,CAAC,KAAK6L,EAAY,QAAQ,MAAM,YAAY,aAAa,EAAK,EAAE,UAAU,CAAC,KAAKA,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,GAAG,eAAe,GAAK,aAAa9L,EAAU,aAAa,SAAS,EAAE,eAAe,CAAC,KAAK8L,EAAY,OAAO,MAAM,UAAU,SAAS,CAAC,eAAe,CAAC,KAAKA,EAAY,OAAO,MAAM,UAAU,aAAa9L,EAAU,aAAa,eAAe,eAAe,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,eAAe,EAAI,EAAE,aAAa,CAAC,KAAK8L,EAAY,OAAO,MAAM,QAAQ,aAAa9L,EAAU,aAAa,eAAe,aAAa,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,eAAe,EAAI,EAAE,mBAAmB,CAAC,KAAK8L,EAAY,OAAO,MAAM,cAAc,aAAa9L,EAAU,aAAa,eAAe,mBAAmB,IAAI,IAAI,IAAI,IAAI,KAAK,CAAC,EAAE,cAAc,CAAC,KAAK8L,EAAY,OAAO,MAAM,SAAS,aAAa9L,EAAU,aAAa,eAAe,cAAc,IAAI,KAAK,IAAI,IAAI,KAAK,CAAC,EAAE,aAAa,CAAC,KAAK8L,EAAY,QAAQ,MAAM,WAAW,aAAa,OAAO,cAAc,QAAQ,aAAa9L,EAAU,aAAa,eAAe,YAAY,CAAC,CAAC,EAAE,UAAU,CAAC,KAAK8L,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,WAAW,CAAC,KAAKA,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,GAAG,eAAe,GAAK,aAAa9L,EAAU,aAAa,UAAU,EAAE,IAAI,CAAC,KAAK8L,EAAY,OAAO,MAAM,MAAM,IAAI,CAAC,EAAE,QAAQ,CAAC,MAAM,UAAU,KAAKA,EAAY,YAAY,UAAU,iBAAiB,aAAa,CAAC,UAAU,kBAAkB,EAAE,aAAa,EAAE,UAAU,CAAC,aAAa,eAAe,gBAAgB,aAAa,EAAE,YAAY,CAAC,IAAI,IAAI,IAAI,GAAG,EAAE,IAAI,CAAC,EAAE,aAAa,CAAC,KAAKA,EAAY,OAAO,MAAM,SAAS,IAAI,EAAE,IAAI,IAAI,eAAe,GAAK,aAAa,CAAC,EAAE,kBAAkB,CAAC,KAAKA,EAAY,WAAW,aAAa9L,EAAU,aAAa,kBAAkB,MAAM,YAAY,EAAE,YAAY,CAAC,KAAK8L,EAAY,OAAO,MAAM,WAAW,SAAS,CAAC,YAAY,CAAC,KAAKA,EAAY,QAAQ,MAAM,OAAO,aAAa,EAAK,EAAE,SAAS,CAAC,KAAKA,EAAY,QAAQ,MAAM,WAAW,aAAa,OAAO,cAAc,OAAO,aAAa,GAAM,OAAO7L,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAK,CAAC,EAAE,UAAU,CAAC,KAAK6L,EAAY,OAAO,MAAM,QAAQ,aAAa,GAAG,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAO7L,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,EAAE,UAAU,CAAC,KAAK6L,EAAY,OAAO,MAAM,QAAQ,aAAa,EAAE,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAO7L,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,EAAE,UAAU,CAAC,KAAK6L,EAAY,OAAO,MAAM,UAAU,aAAa,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,OAAO7L,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,CAAC,CAAC,EAAE,aAAa,CAAC,KAAK6L,EAAY,OAAO,MAAM,SAAS,SAAS,CAAC,kBAAkB,CAAC,KAAKA,EAAY,QAAQ,MAAM,OAAO,aAAa9L,EAAU,aAAa,aAAa,iBAAiB,EAAE,UAAU,CAAC,KAAK8L,EAAY,MAAM,MAAM,OAAO,OAAO7L,GAAO,CAACA,EAAM,kBAAkB,aAAaD,EAAU,aAAa,aAAa,SAAS,EAAE,UAAU,CAAC,KAAK8L,EAAY,MAAM,MAAM,WAAW,OAAO7L,GAAO,CAACA,EAAM,iBAAiB,EAAE,WAAW,CAAC,KAAK6L,EAAY,MAAM,MAAM,OAAO,OAAO7L,GAAO,CAACA,EAAM,iBAAiB,EAAE,UAAU,CAAC,KAAK6L,EAAY,OAAO,MAAM,OAAO,IAAI,EAAE,IAAI,IAAI,eAAe,GAAK,aAAa9L,EAAU,aAAa,aAAa,UAAU,OAAOC,GAAO,CAACA,EAAM,iBAAiB,EAAE,YAAY,CAAC,KAAK6L,EAAY,OAAO,MAAM,SAAS,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,OAAO7L,GAAO,CAACA,EAAM,iBAAiB,EAAE,kBAAkB,CAAC,KAAK6L,EAAY,QAAQ,MAAM,UAAU,aAAa,GAAM,OAAO7L,GAAO,CAACA,EAAM,iBAAiB,EAAE,iBAAiB,CAAC,KAAK6L,EAAY,QAAQ,MAAM,WAAW,aAAa,QAAQ,cAAc,QAAQ,aAAa9L,EAAU,aAAa,aAAa,iBAAiB,OAAOC,GAAO,CAACA,EAAM,iBAAiB,EAAE,cAAc,CAAC,KAAK6L,EAAY,KAAK,MAAM,WAAW,QAAQ,CAAC,OAAO,WAAW,UAAU,YAAY,cAAc,aAAa,cAAc,EAAE,aAAa,CAAC,SAAS,WAAW,aAAa,YAAY,cAAc,gBAAgB,cAAc,EAAE,OAAO7L,GAAO,CAACA,EAAM,mBAAmBA,EAAM,gBAAgB,EAAE,aAAa,CAAC,KAAK6L,EAAY,OAAO,MAAM,QAAQ,IAAI,KAAK,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAO7L,GAAO,CAACA,EAAM,mBAAmB,CAACA,EAAM,gBAAgB,EAAE,gBAAgB,CAAC,KAAK6L,EAAY,OAAO,MAAM,MAAM,IAAI,KAAK,IAAI,IAAI,aAAa,EAAE,eAAe,GAAK,OAAO7L,GAAO,CAACA,EAAM,mBAAmBA,EAAM,kBAAkBA,EAAM,gBAAgB,QAAQA,EAAM,gBAAgB,cAAcA,EAAM,gBAAgB,eAAeA,EAAM,gBAAgB,cAAc,EAAE,mBAAmB,CAAC,KAAK6L,EAAY,OAAO,MAAM,SAAS,IAAI,KAAK,IAAI,IAAI,aAAa,EAAE,eAAe,GAAK,OAAO7L,GAAO,CAACA,EAAM,mBAAmBA,EAAM,kBAAkBA,EAAM,gBAAgB,QAAQA,EAAM,gBAAgB,WAAWA,EAAM,gBAAgB,YAAYA,EAAM,gBAAgB,WAAW,EAAE,kBAAkB,CAAC,KAAK6L,EAAY,OAAO,MAAM,QAAQ,IAAI,KAAK,IAAI,IAAI,aAAa,EAAE,eAAe,GAAK,OAAO7L,GAAO,CAACA,EAAM,mBAAmBA,EAAM,kBAAkBA,EAAM,gBAAgB,QAAQA,EAAM,gBAAgB,YAAYA,EAAM,gBAAgB,WAAWA,EAAM,gBAAgB,eAAeA,EAAM,gBAAgB,YAAY,EAAE,iBAAiB,CAAC,KAAK6L,EAAY,OAAO,MAAM,OAAO,IAAI,KAAK,IAAI,IAAI,aAAa,EAAE,eAAe,GAAK,OAAO7L,GAAO,CAACA,EAAM,mBAAmBA,EAAM,kBAAkBA,EAAM,gBAAgB,QAAQA,EAAM,gBAAgB,aAAaA,EAAM,gBAAgB,WAAWA,EAAM,gBAAgB,gBAAgBA,EAAM,gBAAgB,YAAY,EAAE,SAAS,CAAC,KAAK6L,EAAY,OAAO,MAAM,MAAM,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAO7L,GAAO,CAACA,EAAM,mBAAmBA,EAAM,gBAAgB,CAAC,CAAC,EAAE,gBAAgB,CAAC,KAAK6L,EAAY,OAAO,MAAM,OAAO,SAAS,CAAC,iBAAiB,CAAC,KAAKA,EAAY,QAAQ,MAAM,OAAO,aAAa,EAAK,EAAE,QAAQ,CAAC,KAAKA,EAAY,OAAO,MAAM,OAAO,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAO7L,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,UAAU,CAAC,KAAK6L,EAAY,OAAO,MAAM,QAAQ,IAAI,KAAK,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAO7L,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,QAAQ,CAAC,KAAK6L,EAAY,OAAO,MAAM,MAAM,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAO7L,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,YAAY,CAAC,KAAK6L,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAO7L,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,SAAS,CAAC,KAAK6L,EAAY,MAAM,MAAM,OAAO,aAAa,OAAO,OAAO7L,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,eAAe,CAAC,KAAK6L,EAAY,MAAM,MAAM,WAAW,aAAa,kBAAkB,OAAO7L,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,WAAW,CAAC,KAAK6L,EAAY,OAAO,MAAM,SAAS,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,OAAO7L,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,YAAY,CAAC,KAAK6L,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,EAAE,aAAa,GAAG,KAAK,GAAG,eAAe,GAAK,OAAO7L,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,kBAAkB,CAAC,KAAK6L,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,EAAE,aAAa,EAAE,KAAK,GAAG,eAAe,GAAK,OAAO7L,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,SAAS,CAAC,KAAK6L,EAAY,OAAO,MAAM,OAAO,IAAI,EAAE,IAAI,GAAG,aAAa,EAAE,KAAK,EAAE,OAAO7L,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,CAAC,CAAC,CAAC,CAAC,EAA0B,IAAMwL,GAAe,CAAC,QAAQ,OAAO,cAAc,MAAM,MAAM,OAAO,OAAO,OAAO,SAAS,OAAO,UAAU,OAAO,WAAW,SAAS,OAAO,EAAE,QAAQ,EAAE,cAAc,OAAO,WAAW,MAAM,EAA8BpH,GAAkB,CAAC,QAAQ,OAAO,MAAM,OAAO,OAAO,OAAO,aAAa,SAAS,WAAW,SAAS,cAAc,SAAS,MAAM,OAAO,WAAW,0BAA0B,SAAS,GAAG,SAAS,SAAS,QAAQ,qBAAqB,EAAQE,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,EAA4ByG,GAAiB,CAAC,OAAO,OAAO,QAAQ,OAAO,aAAa,SAAS,WAAW,SAAS,SAAS,SAAS,WAAW,cAAc,OAAO,UAAU,OAAO,EAAE,QAAQ,CAAC,EAAQS,GAAe,CAAC,QAAQ,OAAO,eAAe,gBAAgB,WAAW,SAAS,SAAS,WAAW,cAAc,OAAO,WAAW,OAAO,IAAI,EAAE,KAAK,EAAE,MAAM,EAAE,OAAO,EAAE,OAAO,EAAE,QAAQ,EAAE,OAAO,CAAC,EAAgDjB,GAAM,CAACqB,EAAIC,EAAIC,IAAM,KAAK,IAAI,KAAK,IAAIF,EAAIC,CAAG,EAAEC,CAAG,EAA6B5B,GAAmB6B,GAAW,SAAmBjM,EAAMmK,EAAI,CAAC,IAAI+B,EAAaC,EAAc,GAAK,CAAC,SAAAC,EAAS,MAAAC,EAAM,OAAAC,EAAO,MAAArC,EAAM,KAAAjF,EAAK,IAAAxE,EAAI,aAAA0H,EAAa,YAAAqE,EAAY,aAAAxC,EAAa,SAAAnG,EAAS,QAAA4I,EAAQ,eAAAjL,EAAe,aAAAC,EAAa,cAAAC,EAAc,aAAAwC,EAAa,OAAAwI,GAAO,MAAA5H,CAAK,EAAE7E,EAEzma0M,IAAgD1H,GAAK,KAAMxE,GAAKuJ,EAAmB4C,EAAY,CAAC,CAAoC3H,GAAK,KAAM,EAAqCA,GAAK,OAA2CA,GAAK,KAAMxE,EAAsCwE,GAAK,MAAM,EAAE,IAAI4H,GAAKA,EAAIF,EAAW,EAE1TG,GAAQ,CAACjJ,GAAUuE,GAAaD,EAAayE,EAAY,CAAC,CAAClL,EAAc,EAAE,EAAEA,CAAa,CAAC,EAAQqL,GAAQ,CAAClJ,GAAUuE,GAAaD,EAAayE,EAAY,CAAClL,EAAc,EAAE,EAAE,CAACA,CAAa,CAAC,EAAQsL,GAAQ,CAACnJ,GAAUuE,GAAaD,EAAayE,EAAY,CAACpL,EAAe,EAAE,EAAEA,CAAc,CAAC,EAAQyL,GAAM,CAACpJ,GAAUuE,GAAaD,EAAayE,EAAY,CAACnL,EAAa,EAAE,EAAEA,CAAY,CAAC,EAAQyL,GAAW,CAACrJ,GAAUuE,GAAaD,EAAayE,EAAY,CAAC,EAAE,EAAE,EAAE,CAAC,CAAC,EAAQhF,GAAU,CAAC/D,GAAUuE,GAAaD,EAAagF,GAAQA,GAAQP,EAAY,CAAC,GAAGO,GAAQP,EAAY,CAAC,CAAC,EAAE/F,GAAU,IAAI,CAAC,GAAIe,GAAiB,OAAOA,GAAU,SAASwF,GAAU,CAAC,IAAIC,GAAcA,EAAajD,EAAI,WAAW,MAAMiD,IAAe,QAAcA,EAAa,aAAa,cAAc,CAACD,CAAQ,CAAE,CAAC,CAAE,EAAE,CAAC,CAAC,EAAE,IAAME,GAAWzJ,EAAS,UAAUuE,GAAaD,EAAa,CAACyE,EAAY,CAAC,EAAE3H,EAAK,eAAesI,GAAIX,EAAY,CAAC,EAAEA,EAAY,CAAC,EAAE,EAAE,EAAEA,EAAY,CAAC,EAAE3H,EAAK,cAAc,EAAE,CAAC,SAAS,UAAU,QAAQ,CAAC,EAAE,OAAoBX,EAAKkJ,GAAY,CAAC,QAAQ,KAAK,SAAsBlJ,EAAK,KAAK,CAAC,MAAM,CAAC,QAAQ,UAAU,EAAE,cAAcQ,IAAQ,EAAa,SAAsB2I,GAAavD,EAAM,CAAC,IAAIE,EAAI,IAAIiC,EAAS,QAAQ,MAAM,CAAC,IAAIF,EAAajC,EAAM,SAAS,MAAMiC,IAAe,OAAO,OAAOA,EAAa,MAAM,WAAW,EAAE,WAAW,OAAO,MAAAG,EAAM,OAAAC,EAAO,QAAQS,GAAQ,MAAMC,GAAM,QAAQ/I,EAAagJ,GAAW,GAAG,QAAShJ,EAAwB,GAAXgJ,GAAc,QAAQhJ,EAAa4I,GAAQ,EAAE,QAAS5I,EAAqB,EAAR6I,GAAU,WAAAO,EAAU,EAAE,SAASpD,EAAM,MAAM,SAASA,EAAM,MAAM,SAAS,aAAapF,EAAM,MAAS,GAAGsH,EAAclC,EAAM,SAAS,MAAMkC,IAAgB,OAAO,OAAOA,EAAc,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAE,SAASpB,GAAI,CAAC,gBAAA0C,EAAgB,QAAAV,EAAQ,MAAAhH,EAAM,MAAAlB,EAAM,aAAA0D,EAAa,qBAAAC,EAAqB,SAAAwC,EAAS,YAAA0C,EAAY,IAAAlN,EAAI,QAAAC,EAAQ,aAAAwD,EAAa,WAAAC,EAAW,GAAGlE,CAAK,EAAE,CAA8C,IAAI2N,EAAWpF,IAAe1D,EAAuDX,IAAYyJ,EAAW,KAAK,IAAInF,CAAoB,IAAI3D,GAAO,IAAM+I,EAAcpN,EAAI,EAAMqN,EAAI,CAAC5J,GAAcY,EAAM,EAAE+I,EAAcnN,EAAYqN,EAAO,CAAC7J,GAAcY,IAAQkB,EAAM,EAAE6H,EAAcnN,EAAYsN,EAAM9J,GAAcY,IAAQkB,EAAM,EAAE6H,EAAcnN,EAAYuN,EAAK/J,GAAcY,EAAM,EAAE+I,EAAcnN,EAAQ,OAAoB4D,EAAK,SAAS,CAAC,aAAa,kBAAkBQ,EAAM,IAAI,KAAK,SAAS,GAAG7E,EAAM,MAAM,CAAC,GAAG0N,EAAY,QAAQ,GAAGG,OAASE,OAAWD,OAAYE,KAAQ,EAAE,SAAsB3J,EAAKoH,EAAO,IAAI,CAAC,MAAM,CAAC,GAAGT,CAAQ,EAAE,QAAQ,GAAM,QAAQ,CAAC,QAAQ2C,EAAWF,EAAgBV,CAAO,EAAE,WAAW,CAAC,SAAS,EAAE,CAAC,CAAC,CAAC,CAAC,CAAE,CAAiB,IAAMpB,GAAmB,CAAC,QAAQ,OAAO,aAAa,SAAS,WAAW,SAAS,SAAS,SAAS,SAAS,WAAW,cAAc,MAAM,EAAQX,GAAS,CAAC,aAAa,MAAM,WAAW,QAAQ,OAAO,UAAU,OAAO,OAAO,aAAa,SAAS,WAAW,SAAS,QAAQ,CAAC,EC3D7/E,IAAMiD,GAAYC,EAASC,EAAM,EAAQC,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,IAAUC,GAAmB,CAACF,EAAEC,IAAI,oBAAoBA,IAAUE,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,EAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,GAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,GAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAS,CAAC,CAAC,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,GAAW,SAASJ,EAAMK,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,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,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAAnB,CAAQ,EAAEoB,GAAgB,CAAC,eAAe,YAAY,QAAAV,EAAQ,kBAAAW,EAAiB,CAAC,EAAQC,EAAiBvB,GAAuBD,EAAME,CAAQ,EAAQuB,EAAWC,EAAO,IAAI,EAAQC,GAAsBC,GAAM,EAAQC,EAAsB,CAAC,EAAQC,GAAkBC,GAAqB,EAAE,OAAoBvC,EAAKwC,GAAY,CAAC,GAAGrB,GAA4CgB,GAAgB,SAAsBnC,EAAKC,GAAS,CAAC,QAAQS,EAAS,QAAQ,GAAM,SAAsBV,EAAKT,GAAW,CAAC,MAAML,GAAY,SAAsBc,EAAKE,EAAO,IAAI,CAAC,GAAGmB,EAAU,GAAGI,EAAgB,UAAUgB,GAAGC,GAAkB,GAAGL,EAAsB,iBAAiBnB,EAAUK,CAAU,EAAE,mBAAmB,YAAY,iBAAiBS,EAAiB,SAAS,YAAY,IAAInB,GAA6BoB,EAAK,MAAM,CAAC,GAAGhB,CAAK,EAAE,SAAsBjB,EAAK2C,EAA0B,CAAC,SAAsB3C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAK4C,GAAO,CAAC,UAAU,SAAS,UAAU,OAAO,YAAY,CAAC,UAAU,EAAE,YAAY,GAAK,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,GAAG,OAAO,OAAO,YAAY,EAAE,GAAG,YAAY,SAAS,YAAY,QAAQ,EAAE,cAAc,EAAE,YAAY,EAAE,eAAe,GAAM,aAAa,EAAE,WAAW,EAAE,cAAc,CAAC,WAAW,GAAK,UAAU,EAAI,EAAE,MAAM,CAAc5C,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wBAAwB,EAAE,SAAsBhC,EAAK6C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,mBAAmB,eAAe,mBAAmB,YAAY,IAAI,WAAW,IAAI,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiBb,EAAiB,SAAS,YAAY,kBAAkB7C,EAAkB,CAAC,CAAC,CAAC,EAAea,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wBAAwB,EAAE,SAAsBhC,EAAK6C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,mBAAmB,eAAe,kBAAkB,YAAY,IAAI,WAAW,IAAI,IAAI,qEAAqE,EAAE,UAAU,iBAAiB,mBAAmB,iBAAiB,iBAAiBb,EAAiB,SAAS,YAAY,kBAAkB7C,EAAkB,CAAC,CAAC,CAAC,EAAea,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wBAAwB,EAAE,SAAsBhC,EAAK6C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,mBAAmB,eAAe,mBAAmB,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiBb,EAAiB,SAAS,YAAY,kBAAkB7C,EAAkB,CAAC,CAAC,CAAC,EAAea,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wBAAwB,EAAE,SAAsBhC,EAAK6C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,mBAAmB,eAAe,mBAAmB,YAAY,IAAI,WAAW,IAAI,IAAI,oEAAoE,EAAE,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiBb,EAAiB,SAAS,YAAY,kBAAkB7C,EAAkB,CAAC,CAAC,CAAC,EAAea,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wBAAwB,EAAE,SAAsBhC,EAAK6C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,mBAAmB,eAAe,mBAAmB,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,oEAAoE,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiBb,EAAiB,SAAS,YAAY,kBAAkB1C,EAAkB,CAAC,CAAC,CAAC,EAAeU,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wBAAwB,EAAE,SAAsBhC,EAAK6C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,mBAAmB,eAAe,mBAAmB,YAAY,IAAI,WAAW,IAAI,IAAI,qEAAqE,EAAE,UAAU,iBAAiB,mBAAmB,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,CAAC,CAAC,EAAehC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,iBAAiB,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wBAAwB,EAAE,SAAsBhC,EAAK6C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,mBAAmB,eAAe,kBAAkB,YAAY,IAAI,WAAW,IAAI,MAAM,OAAO,IAAI,wFAAwF,OAAO,qKAAqK,EAAE,UAAU,gBAAgB,mBAAmB,sBAAsB,iBAAiBb,EAAiB,SAAS,YAAY,kBAAkB7C,EAAkB,CAAC,CAAC,CAAC,EAAea,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wBAAwB,EAAE,SAAsBhC,EAAK6C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,mBAAmB,eAAe,mBAAmB,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiBb,EAAiB,SAAS,YAAY,kBAAkB7C,EAAkB,CAAC,CAAC,CAAC,EAAea,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wBAAwB,EAAE,SAAsBhC,EAAK6C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,mBAAmB,eAAe,mBAAmB,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,mBAAmB,gBAAgB,iBAAiBb,EAAiB,SAAS,YAAY,kBAAkB7C,EAAkB,CAAC,CAAC,CAAC,EAAea,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,cAAc,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wBAAwB,EAAE,SAAsBhC,EAAK6C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,mBAAmB,eAAe,mBAAmB,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,EAAE,UAAU,iBAAiB,mBAAmB,mBAAmB,iBAAiBb,EAAiB,SAAS,YAAY,kBAAkB7C,EAAkB,CAAC,CAAC,CAAC,EAAea,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,oBAAoB,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wBAAwB,EAAE,SAAsBhC,EAAK6C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,kBAAkB,eAAe,kBAAkB,YAAY,GAAG,WAAW,IAAI,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiBb,EAAiB,SAAS,YAAY,kBAAkB7C,EAAkB,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQ2D,GAAI,CAAC,kFAAkF,gFAAgF,2OAA2O,2GAA2G,oGAAoG,kNAAkN,sGAAsG,mNAAmN,sGAAsG,mNAAmN,qGAAqG,mNAAmN,qGAAqG,iNAAiN,qGAAqG,qMAAqM,uGAAuG,iNAAiN,qGAAqG,mNAAmN,sGAAsG,kNAAkN,qGAAqG,mNAAmN,qGAAqG,kNAAkN,8WAA8W,EAQt9bC,GAAgBC,GAAQrC,GAAUmC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,uBAAuBA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,GAAG,EAAEG,GAASH,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,EAAE,GAAGI,EAAW,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECR4E,IAAMC,GAAYC,EAASC,EAAM,EAAQC,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,IAAUC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,EAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,GAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,GAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAS,CAAC,CAAC,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,GAAW,SAASJ,EAAMK,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,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,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAAnB,CAAQ,EAAEoB,GAAgB,CAAC,eAAe,YAAY,QAAAV,EAAQ,kBAAAW,EAAiB,CAAC,EAAQC,EAAiBvB,GAAuBD,EAAME,CAAQ,EAAQuB,EAAWC,EAAO,IAAI,EAAQC,GAAsBC,GAAM,EAAQC,EAAsB,CAAC,EAAQC,GAAkBC,GAAqB,EAAE,OAAoBvC,EAAKwC,GAAY,CAAC,GAAGrB,GAA4CgB,GAAgB,SAAsBnC,EAAKC,GAAS,CAAC,QAAQS,EAAS,QAAQ,GAAM,SAAsBV,EAAKT,GAAW,CAAC,MAAMJ,GAAY,SAAsBa,EAAKE,EAAO,IAAI,CAAC,GAAGmB,EAAU,GAAGI,EAAgB,UAAUgB,GAAGC,GAAkB,GAAGL,EAAsB,gBAAgBnB,EAAUK,CAAU,EAAE,mBAAmB,YAAY,iBAAiBS,EAAiB,SAAS,YAAY,IAAInB,GAA6BoB,EAAK,MAAM,CAAC,GAAGhB,CAAK,EAAE,SAAsBjB,EAAK2C,EAA0B,CAAC,SAAsB3C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAK4C,GAAO,CAAC,UAAU,SAAS,UAAU,OAAO,YAAY,CAAC,UAAU,EAAE,YAAY,GAAK,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,GAAG,OAAO,OAAO,YAAY,EAAE,GAAG,YAAY,SAAS,YAAY,QAAQ,EAAE,cAAc,EAAE,YAAY,EAAE,eAAe,GAAM,aAAa,EAAE,WAAW,EAAE,cAAc,CAAC,WAAW,GAAK,UAAU,EAAI,EAAE,MAAM,CAAc5C,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wBAAwB,EAAE,SAAsBhC,EAAK6C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,mBAAmB,eAAe,mBAAmB,YAAY,IAAI,WAAW,IAAI,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiBb,EAAiB,SAAS,YAAY,kBAAkB5C,EAAkB,CAAC,CAAC,CAAC,EAAeY,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wBAAwB,EAAE,SAAsBhC,EAAK6C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,mBAAmB,eAAe,kBAAkB,YAAY,IAAI,WAAW,IAAI,IAAI,qEAAqE,EAAE,UAAU,iBAAiB,mBAAmB,iBAAiB,iBAAiBb,EAAiB,SAAS,YAAY,kBAAkB5C,EAAkB,CAAC,CAAC,CAAC,EAAeY,EAAK6C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,MAAM,OAAO,IAAI,0FAA0F,OAAO,oWAAoW,EAAE,UAAU,gBAAgB,mBAAmB,qBAAqB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAehC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wBAAwB,EAAE,SAAsBhC,EAAK6C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,mBAAmB,eAAe,mBAAmB,YAAY,IAAI,WAAW,IAAI,IAAI,oEAAoE,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiBb,EAAiB,SAAS,YAAY,kBAAkB5C,EAAkB,CAAC,CAAC,CAAC,EAAeY,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wBAAwB,EAAE,SAAsBhC,EAAK6C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,mBAAmB,eAAe,mBAAmB,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,oEAAoE,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiBb,EAAiB,SAAS,YAAY,kBAAkB5C,EAAkB,CAAC,CAAC,CAAC,EAAeY,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wBAAwB,EAAE,SAAsBhC,EAAK6C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,mBAAmB,eAAe,mBAAmB,YAAY,IAAI,WAAW,IAAI,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,mBAAmB,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,CAAC,CAAC,EAAehC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,iBAAiB,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wBAAwB,EAAE,SAAsBhC,EAAK6C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,mBAAmB,eAAe,kBAAkB,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,wFAAwF,OAAO,qKAAqK,EAAE,UAAU,gBAAgB,mBAAmB,sBAAsB,iBAAiBb,EAAiB,SAAS,YAAY,kBAAkB5C,EAAkB,CAAC,CAAC,CAAC,EAAeY,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wBAAwB,EAAE,SAAsBhC,EAAK6C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,mBAAmB,eAAe,mBAAmB,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiBb,EAAiB,SAAS,YAAY,kBAAkB5C,EAAkB,CAAC,CAAC,CAAC,EAAeY,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wBAAwB,EAAE,SAAsBhC,EAAK6C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,mBAAmB,eAAe,mBAAmB,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,mBAAmB,gBAAgB,iBAAiBb,EAAiB,SAAS,YAAY,kBAAkB5C,EAAkB,CAAC,CAAC,CAAC,EAAeY,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,cAAc,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wBAAwB,EAAE,SAAsBhC,EAAK6C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,mBAAmB,eAAe,mBAAmB,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,EAAE,UAAU,iBAAiB,mBAAmB,mBAAmB,iBAAiBb,EAAiB,SAAS,YAAY,kBAAkB5C,EAAkB,CAAC,CAAC,CAAC,EAAeY,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,oBAAoB,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wBAAwB,EAAE,SAAsBhC,EAAK6C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,kBAAkB,eAAe,kBAAkB,YAAY,GAAG,WAAW,IAAI,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiBb,EAAiB,SAAS,YAAY,kBAAkB5C,EAAkB,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQ0D,GAAI,CAAC,kFAAkF,kFAAkF,0OAA0O,2GAA2G,oGAAoG,kNAAkN,qGAAqG,mNAAmN,gLAAgL,sGAAsG,kNAAkN,oIAAoI,+OAA+O,sGAAsG,oMAAoM,uGAAuG,kNAAkN,sGAAsG,mNAAmN,qGAAqG,mNAAmN,sGAAsG,kNAAkN,0WAA0W,EAQ7nbC,GAAgBC,GAAQrC,GAAUmC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,gBAAgBA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,GAAG,EAAEG,GAASH,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,EAAE,GAAGI,EAAW,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECR40D,IAAMC,GAAkBC,EAASC,EAAY,EAAQC,GAAYF,EAASG,EAAM,EAAQC,GAAyBJ,EAASK,EAAmB,EAAQC,EAAkCC,GAA0BC,CAAQ,EAAQC,GAAoBT,EAASU,EAAc,EAAQC,GAAeX,EAASY,CAAS,EAAQC,GAAkBb,EAASc,EAAY,EAAQC,GAAwBf,EAASgB,EAAkB,EAAQC,GAAYjB,EAASkB,EAAM,EAAQC,GAAanB,EAASoB,EAAO,EAAQC,GAAkBrB,EAASsB,EAAY,EAAQC,GAAcvB,EAASwB,EAAQ,EAAQC,GAAYzB,EAAS0B,EAAM,EAAQC,GAAY,CAAC,UAAU,qBAAqB,UAAU,6CAA6C,UAAU,qBAAqB,EAAQC,GAAU,IAAI,OAAO,SAAW,IAAkBC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,iBAAiB,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,EAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,EAAW,CAAC,QAAQ,KAAK,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,GAAG,EAAQC,GAAkBC,GAAW,OAAOA,GAAQ,UAAUA,IAAQ,MAAM,OAAOA,EAAM,KAAM,SAAiBA,EAAc,OAAOA,GAAQ,SAAS,CAAC,IAAIA,CAAK,EAAE,OAAkBC,GAAU,CAAC,CAAC,MAAAC,EAAM,SAAAC,EAAS,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAKC,GAAaJ,CAAK,EAAE,OAAOE,EAASC,CAAI,CAAE,EAAQE,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,GAAG,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,EAAW,EAAQE,GAAU,CAAC,CAAC,MAAAT,CAAK,IAAoBU,GAAoB,EAAqB,KAAyBC,EAAK,QAAQ,CAAC,wBAAwB,CAAC,OAAOX,CAAK,EAAE,yBAAyB,EAAE,CAAC,EAAUY,GAAwB,CAAC,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,GAAW,SAASF,EAAMG,EAAI,CAAC,IAAMC,EAAYC,EAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,GAAM,EAAO,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAQC,EAAkBC,GAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,mBAAAC,EAAmB,mBAAAC,EAAmB,mBAAAC,EAAmB,mBAAAC,EAAmB,mBAAAC,EAAmB,YAAAC,EAAY,GAAGC,CAAS,EAAE5B,GAASI,CAAK,EAAQyB,GAAU,IAAI,CAAC,IAAMC,EAASA,GAAiB,OAAUjB,CAAY,EAAE,GAAGiB,EAAS,OAAO,CAAC,IAAIC,EAAU,SAAS,cAAc,qBAAqB,EAAKA,EAAWA,EAAU,aAAa,UAAUD,EAAS,MAAM,GAAQC,EAAU,SAAS,cAAc,MAAM,EAAEA,EAAU,aAAa,OAAO,QAAQ,EAAEA,EAAU,aAAa,UAAUD,EAAS,MAAM,EAAE,SAAS,KAAK,YAAYC,CAAS,GAAI,EAAE,CAAC,OAAUlB,CAAY,CAAC,EAAQmB,GAAmB,IAAI,CAAC,IAAMF,EAASA,GAAiB,OAAUjB,CAAY,EAAE,SAAS,MAAMiB,EAAS,OAAO,GAAMA,EAAS,UAAU,SAAS,cAAc,uBAAuB,GAAG,aAAa,UAAUA,EAAS,QAAQ,CAAG,EAAE,CAAC,OAAUjB,CAAY,CAAC,EAAE,GAAK,CAACoB,EAAYC,EAAmB,EAAEC,GAA8Bd,EAAQ1C,GAAY,EAAK,EAAQyD,EAAe,OAAgKC,EAAkBC,GAAGzD,GAAkB,GAAjK,CAAasC,GAAuBA,GAAuBA,GAAuBA,GAAuBA,EAAS,CAAuE,EAAQoB,GAAUC,GAAkB,WAAW,EAAQC,GAAWhC,EAAO,IAAI,EAAQiC,GAAY,IAAS9D,GAAU,EAAiBqD,IAAc,YAAtB,GAAmEU,GAAa,IAAQ,CAAC/D,GAAU,GAAiBqD,IAAc,YAA6CW,GAAOC,GAAU,EAAQC,GAAa,IAAQ,CAAClE,GAAU,GAAiBqD,IAAc,YAA6Cc,GAAa,IAASnE,GAAU,EAAiB,EAAC,YAAY,WAAW,EAAE,SAASqD,CAAW,EAAtD,GAAmF,OAAAe,GAAiB,CAAC,CAAC,EAAsBlD,EAAKmD,GAA0B,SAAS,CAAC,MAAM,CAAC,iBAAiB,YAAY,kBAAAnE,EAAiB,EAAE,SAAsBoE,EAAMC,GAAY,CAAC,GAAG/B,GAAUT,EAAgB,SAAS,CAAcb,EAAKF,GAAU,CAAC,MAAM,kGAAkG,CAAC,EAAesD,EAAME,EAAO,IAAI,CAAC,GAAGxB,EAAU,UAAUU,GAAGD,EAAkB,gBAAgBlB,CAAS,EAAE,IAAIT,EAAW,MAAM,CAAC,GAAGQ,CAAK,EAAE,SAAS,CAAcpB,EAAKuD,EAA0B,CAAC,SAAsBvD,EAAKwD,EAAU,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBxD,EAAK7C,GAAa,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU,GAAG,SAAS,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe6C,EAAKyD,EAAkB,CAAC,WAAWtB,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,EAAE,EAAE,UAAU,CAAC,EAAE,MAAS,CAAC,EAAE,SAAsBnC,EAAKuD,EAA0B,CAAC,OAAO,GAAG,MAAMrC,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,IAAI,SAAsBlB,EAAKyD,EAAkB,CAAC,WAAWtB,EAAY,UAAU,CAAC,UAAU,CAAC,aAAa,EAAI,CAAC,EAAE,SAAsBnC,EAAKwD,EAAU,CAAC,UAAU,0BAA0B,GAAGf,GAAU,OAAO,YAAY,IAAIE,GAAK,QAAQ,YAAY,SAAsB3C,EAAKyD,EAAkB,CAAC,WAAWtB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBnC,EAAK3C,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,EAAe2C,EAAKyD,EAAkB,CAAC,WAAWtB,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGjB,GAAmB,GAAG,GAAG,GAAG,GAAG,EAAE,UAAU,CAAC,EAAE,MAAS,CAAC,EAAE,SAAsBlB,EAAKuD,EAA0B,CAAC,OAAO,GAAG,MAAMrC,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,IAAI,SAAsBlB,EAAKwD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBxD,EAAKzC,GAAoB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeyC,EAAKyD,EAAkB,CAAC,WAAWtB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQuB,GAA2BxC,GAAmB,GAAG,GAAG,GAAG,GAAG,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAMA,GAAmB,OAAO,QAAQ,IAAI,mEAAmE,OAAO,qVAAqV,CAAC,CAAC,EAAE,SAAsBlB,EAAK,SAAS,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,UAAU,SAAS,UAAU,QAAQ,EAAE,UAAU,iBAAiB,mBAAmB,SAAS,SAAsBA,EAAKuD,EAA0B,CAAC,SAAsBvD,EAAKwD,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBxD,EAAKlC,EAAU,CAAC,UAAU,SAAS,aAAa,CAAC,UAAU,qBAAqB,SAAS,GAAG,aAAa,GAAG,mBAAmB,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,gBAAgB,EAAE,cAAc,OAAO,YAAY,GAAG,kBAAkB,GAAM,iBAAiB,GAAK,UAAU,GAAG,kBAAkB,EAAI,EAAE,gBAAgB,GAAK,aAAa,EAAE,UAAU,OAAO,YAAY,GAAK,eAAe,CAAC,aAAa,GAAK,eAAe,EAAE,mBAAmB,KAAK,cAAc,EAAE,aAAa,CAAC,EAAE,YAAY,CAAC,UAAU,EAAE,YAAY,GAAM,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,GAAG,OAAO,OAAO,GAAG,YAAY,gBAAgB,EAAE,WAAW,EAAE,SAAS,YAAY,QAAQ,EAAE,cAAc,EAAE,YAAY,EAAE,eAAe,GAAM,aAAa,EAAE,WAAW,EAAE,gBAAgB,CAAC,kBAAkB,EAAE,eAAe,qBAAqB,SAAS,EAAE,SAAS,qBAAqB,QAAQ,GAAG,UAAU,GAAG,QAAQ,GAAG,YAAY,GAAG,YAAY,GAAG,WAAW,GAAG,iBAAiB,EAAK,EAAE,MAAM,CAAcsF,EAAMO,EAAM,CAAC,GAAG,SAAS,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,SAAS,IAAI,sEAAsE,OAAO,6bAA6b,EAAE,UAAU,gBAAgB,mBAAmB,qCAAqC,SAAS,CAAc3D,EAAKxC,EAAkC,CAAC,sBAAsB,GAAK,QAAQ0B,EAAU,SAAsBc,EAAW4D,EAAS,CAAC,SAAsB5D,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,oBAAoB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,wBAAwB,UAAU,MAAM,CAAC,OAAO,EAAE,QAAQb,EAAW,UAAU,GAAK,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAea,EAAKtC,EAAS,CAAC,sBAAsB,GAAK,SAAsBsC,EAAW4D,EAAS,CAAC,SAAsB5D,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,8HAA8H,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKuD,EAA0B,CAAC,OAAO,GAAG,SAAsBvD,EAAKwD,EAAU,CAAC,UAAU,2BAA2B,gBAAgB,GAAK,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBxD,EAAKpC,GAAe,CAAC,UAAU,YAAY,OAAO,OAAO,GAAG,YAAY,UAAU,+DAA+D,SAAS,YAAY,UAAU,GAAM,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewF,EAAMO,EAAM,CAAC,GAAG,SAAS,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,SAAS,IAAI,sEAAsE,OAAO,gWAAgW,EAAE,UAAU,gBAAgB,mBAAmB,kBAAkB,SAAS,CAAc3D,EAAKxC,EAAkC,CAAC,sBAAsB,GAAK,QAAQ0B,EAAU,SAAsBc,EAAW4D,EAAS,CAAC,SAAsB5D,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,sDAAsD,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,wBAAwB,SAAS,MAAM,CAAC,OAAO,EAAE,QAAQb,EAAW,UAAU,GAAK,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAea,EAAKtC,EAAS,CAAC,sBAAsB,GAAK,SAAsBsC,EAAW4D,EAAS,CAAC,SAAsBR,EAAM,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,CAAC,wCAAgDpD,EAAK,KAAK,CAAC,SAAS,UAAU,CAAC,EAAE,8BAA8B,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,QAAQ,cAAc,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKuD,EAA0B,CAAC,OAAO,GAAG,SAAsBvD,EAAKwD,EAAU,CAAC,UAAU,0BAA0B,gBAAgB,GAAK,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBxD,EAAKpC,GAAe,CAAC,UAAU,YAAY,OAAO,OAAO,GAAG,YAAY,UAAU,gFAAgF,SAAS,YAAY,UAAU,GAAM,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewF,EAAMO,EAAM,CAAC,GAAG,SAAS,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,SAAS,IAAI,uEAAuE,OAAO,uKAAuK,EAAE,UAAU,gBAAgB,mBAAmB,4BAA4B,SAAS,CAAc3D,EAAKxC,EAAkC,CAAC,sBAAsB,GAAK,QAAQ0B,EAAU,SAAsBc,EAAW4D,EAAS,CAAC,SAAsBR,EAAM,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,CAAC,iBAA8BpD,EAAK,KAAK,CAAC,CAAC,EAAE,eAAe,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,wBAAwB,SAAS,MAAM,CAAC,OAAO,EAAE,QAAQb,EAAW,UAAU,GAAK,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAea,EAAKtC,EAAS,CAAC,sBAAsB,GAAK,SAAsBsC,EAAW4D,EAAS,CAAC,SAAsB5D,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,sGAAsG,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKuD,EAA0B,CAAC,OAAO,GAAG,SAAsBvD,EAAKwD,EAAU,CAAC,UAAU,0BAA0B,gBAAgB,GAAK,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBxD,EAAKpC,GAAe,CAAC,UAAU,YAAY,OAAO,OAAO,GAAG,YAAY,UAAU,wDAAwD,SAAS,YAAY,UAAU,GAAM,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewF,EAAMO,EAAM,CAAC,GAAG,SAAS,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,SAAS,IAAI,uEAAuE,OAAO,kcAAkc,EAAE,UAAU,gBAAgB,mBAAmB,uBAAuB,SAAS,CAAc3D,EAAKxC,EAAkC,CAAC,sBAAsB,GAAK,QAAQ0B,EAAU,SAAsBc,EAAW4D,EAAS,CAAC,SAAsB5D,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,uCAAuC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,wBAAwB,SAAS,MAAM,CAAC,OAAO,EAAE,QAAQb,EAAW,UAAU,GAAK,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAea,EAAKtC,EAAS,CAAC,sBAAsB,GAAK,SAAsBsC,EAAW4D,EAAS,CAAC,SAAsB5D,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,+HAA+H,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKuD,EAA0B,CAAC,OAAO,GAAG,SAAsBvD,EAAKwD,EAAU,CAAC,UAAU,0BAA0B,gBAAgB,GAAK,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBxD,EAAKpC,GAAe,CAAC,UAAU,YAAY,OAAO,OAAO,GAAG,YAAY,UAAU,kEAAkE,SAAS,YAAY,UAAU,GAAM,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,kBAAkB,CAAC,SAAS,EAAE,KAAK,OAAO,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewF,EAAM,MAAM,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,kBAAkB,SAAS,CAAcpD,EAAKyD,EAAkB,CAAC,WAAWtB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBnC,EAAW4D,EAAS,CAAC,SAAsB5D,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKxC,EAAkC,CAAC,sBAAsB,GAAK,QAAQ0B,EAAU,SAAsBc,EAAW4D,EAAS,CAAC,SAAsB5D,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,sBAAsB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,wBAAwB,SAAS,MAAM,CAAC,OAAO,EAAE,QAAQb,EAAW,UAAU,GAAK,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAEyD,GAAY,GAAgB5C,EAAKyD,EAAkB,CAAC,WAAWtB,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,MAAS,CAAC,EAAE,SAAsBnC,EAAKuD,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAQrC,GAAmB,OAAO,kBAAkB,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,mBAAmB,SAAsBlB,EAAKwD,EAAU,CAAC,UAAU,yCAAyC,OAAO,YAAY,QAAQ,YAAY,SAAsBxD,EAAKhC,GAAa,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE6E,GAAa,GAAgB7C,EAAKyD,EAAkB,CAAC,WAAWtB,EAAY,UAAU,CAAC,UAAU,CAAC,OAAO,GAAG,MAAMjB,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,GAAG,IAAI,GAAG,kBAAkB,CAAC,EAAE,SAAsBlB,EAAKuD,EAA0B,CAAC,SAAsBvD,EAAKwD,EAAU,CAAC,UAAU,uDAAuD,OAAO,YAAY,QAAQ,YAAY,SAAsBxD,EAAK9B,GAAmB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAekF,EAAM,SAAS,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,SAAS,CAAcpD,EAAKyD,EAAkB,CAAC,WAAWtB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQuB,GAA2BxC,GAAmB,GAAG,GAAG,GAAG,OAAO,GAAG,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,WAAWA,GAAmB,OAAO,mCAAmC,IAAI,yFAAyF,OAAO,6bAA6b,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,MAAM,WAAWA,GAAmB,OAAO,mCAAmC,IAAI,yFAAyF,OAAO,6bAA6b,CAAC,CAAC,EAAE,SAAsBlB,EAAK2D,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQD,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,WAAWA,GAAmB,OAAO,mCAAmC,IAAI,yFAAyF,OAAO,6bAA6b,EAAE,UAAU,iBAAiB,mBAAmB,sBAAsB,CAAC,CAAC,CAAC,EAAelB,EAAKxC,EAAkC,CAAC,sBAAsB,GAAK,QAAQ0B,EAAU,SAAsBc,EAAW4D,EAAS,CAAC,SAAsB5D,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,uCAAuC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,wBAAwB,SAAS,MAAM,CAAC,OAAO,EAAE,QAAQb,EAAW,UAAU,GAAK,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAea,EAAKtC,EAAS,CAAC,sBAAsB,GAAK,SAAsBsC,EAAW4D,EAAS,CAAC,SAAsB5D,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,oKAAoK,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK6D,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASC,GAA4B9D,EAAKyD,EAAkB,CAAC,WAAWtB,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGjB,GAAmB,GAAG,GAAG,GAAG,OAAO,GAAG,iBAAiB,EAAE,UAAU,CAAC,EAAE,MAAS,CAAC,EAAE,SAAsBlB,EAAKuD,EAA0B,CAAC,OAAO,GAAG,GAAGrC,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,kBAAkB,SAAsBlB,EAAKwD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBxD,EAAKyD,EAAkB,CAAC,WAAWtB,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU2B,EAAc,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAc,CAAC,CAAC,CAAC,EAAE,SAAsB9D,EAAK5B,GAAO,CAAC,UAAU,iBAAiB,OAAO,OAAO,GAAG,YAAY,UAAU0F,EAAc,CAAC,EAAE,SAAS,YAAY,UAAU,GAAM,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeV,EAAM,SAAS,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,qBAAqB,SAAS,CAAcpD,EAAKxC,EAAkC,CAAC,sBAAsB,GAAK,QAAQ0B,EAAU,SAAsBc,EAAW4D,EAAS,CAAC,SAAsB5D,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,gCAAgC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,wBAAwB,SAAS,MAAM,CAAC,OAAO,EAAE,QAAQb,EAAW,UAAU,GAAK,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAea,EAAKuD,EAA0B,CAAC,SAAsBvD,EAAKwD,EAAU,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBxD,EAAK1B,GAAQ,CAAC,aAAa,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,MAAM,GAAK,SAAS,YAAY,KAAK,MAAM,WAAW,GAAK,MAAM,CAAC,OAAO,OAAO,SAAS,OAAO,MAAM,MAAM,EAAE,UAAU,iBAAiB,cAAc,EAAE,eAAe,EAAE,IAAI,+BAA+B,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEuE,GAAa,GAAgBO,EAAM,MAAM,CAAC,UAAU,4CAA4C,cAAc,GAAK,mBAAmB,wBAAwB,SAAS,CAAcpD,EAAKxC,EAAkC,CAAC,sBAAsB,GAAK,QAAQ0B,EAAU,SAAsBc,EAAW4D,EAAS,CAAC,SAAsB5D,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,uBAAuB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,wBAAwB,SAAS,MAAM,CAAC,OAAO,EAAE,QAAQb,EAAW,UAAU,GAAK,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeiE,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcpD,EAAKyD,EAAkB,CAAC,WAAWtB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQuB,GAA2BxC,GAAmB,GAAG,GAAG,GAAG,kBAAkB,GAAG,kBAAkB,EAAE,EAAE,EAAE,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,sEAAsE,OAAO,mQAAmQ,CAAC,CAAC,EAAE,SAAsBlB,EAAK2D,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,IAAI,sEAAsE,OAAO,mQAAmQ,EAAE,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,OAAO,CAAC,CAAC,CAAC,EAAeP,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAcpD,EAAKtC,EAAS,CAAC,sBAAsB,GAAK,SAAsBsC,EAAW4D,EAAS,CAAC,SAAsB5D,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mDAAmD,uBAAuB,0FAA0F,qBAAqB,OAAO,0BAA0B,OAAO,sBAAsB,kEAAkE,0BAA0B,WAAW,EAAE,SAAS,qBAAqB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,sCAAsC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKtC,EAAS,CAAC,sBAAsB,GAAK,SAAsB0F,EAAYQ,EAAS,CAAC,SAAS,CAAc5D,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uDAAuD,uBAAuB,+FAA+F,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,iEAAiE,EAAE,SAAS,+IAA+I,CAAC,EAAeoD,EAAM,KAAK,CAAC,MAAM,CAAC,kBAAkB,uDAAuD,uBAAuB,+FAA+F,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,iEAAiE,EAAE,SAAS,CAAcpD,EAAK,KAAK,CAAC,SAAsBA,EAAK,IAAI,CAAC,SAAS,4BAA4B,CAAC,CAAC,CAAC,EAAeA,EAAK,KAAK,CAAC,SAAsBA,EAAK,IAAI,CAAC,SAAS,cAAc,CAAC,CAAC,CAAC,EAAeA,EAAK,KAAK,CAAC,SAAsBA,EAAK,IAAI,CAAC,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAeA,EAAK,KAAK,CAAC,SAAsBA,EAAK,IAAI,CAAC,SAAS,iBAAiB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,wCAAwC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeoD,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcpD,EAAKyD,EAAkB,CAAC,WAAWtB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQuB,GAA2BxC,GAAmB,GAAG,GAAG,GAAG,kBAAkB,GAAG,kBAAkB,EAAE,MAAM,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,yFAAyF,OAAO,gWAAgW,CAAC,CAAC,EAAE,SAAsBlB,EAAK2D,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,IAAI,WAAW,IAAI,IAAI,yFAAyF,OAAO,gWAAgW,EAAE,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,OAAO,CAAC,CAAC,CAAC,EAAeP,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAcpD,EAAKtC,EAAS,CAAC,sBAAsB,GAAK,SAAsBsC,EAAW4D,EAAS,CAAC,SAAsB5D,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mDAAmD,uBAAuB,0FAA0F,qBAAqB,OAAO,0BAA0B,OAAO,sBAAsB,kEAAkE,0BAA0B,WAAW,EAAE,SAAS,qBAAqB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,sCAAsC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKtC,EAAS,CAAC,sBAAsB,GAAK,SAAsB0F,EAAYQ,EAAS,CAAC,SAAS,CAAc5D,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uDAAuD,uBAAuB,+FAA+F,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,iEAAiE,EAAE,SAAS,yIAAyI,CAAC,EAAeoD,EAAM,KAAK,CAAC,MAAM,CAAC,kBAAkB,uDAAuD,uBAAuB,+FAA+F,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,iEAAiE,EAAE,SAAS,CAAcpD,EAAK,KAAK,CAAC,SAAsBA,EAAK,IAAI,CAAC,SAAS,YAAY,CAAC,CAAC,CAAC,EAAeA,EAAK,KAAK,CAAC,SAAsBA,EAAK,IAAI,CAAC,SAAS,sBAAsB,CAAC,CAAC,CAAC,EAAeA,EAAK,KAAK,CAAC,SAAsBA,EAAK,IAAI,CAAC,SAAS,wDAAwD,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,wCAAwC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeoD,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcpD,EAAKyD,EAAkB,CAAC,WAAWtB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQuB,GAA2BxC,GAAmB,GAAG,GAAG,GAAG,kBAAkB,GAAG,kBAAkB,EAAE,OAAO,EAAE,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,sQAAsQ,CAAC,CAAC,EAAE,SAAsBlB,EAAK2D,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,OAAO,CAAC,CAAC,CAAC,EAAeP,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAcpD,EAAKtC,EAAS,CAAC,sBAAsB,GAAK,SAAsBsC,EAAW4D,EAAS,CAAC,SAAsB5D,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mDAAmD,uBAAuB,0FAA0F,qBAAqB,OAAO,0BAA0B,OAAO,sBAAsB,kEAAkE,0BAA0B,WAAW,EAAE,SAAS,yBAAyB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,sCAAsC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKtC,EAAS,CAAC,sBAAsB,GAAK,SAAsB0F,EAAYQ,EAAS,CAAC,SAAS,CAAc5D,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uDAAuD,uBAAuB,+FAA+F,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,iEAAiE,EAAE,SAAS,mIAAmI,CAAC,EAAeoD,EAAM,KAAK,CAAC,MAAM,CAAC,kBAAkB,uDAAuD,uBAAuB,+FAA+F,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,iEAAiE,EAAE,SAAS,CAAcpD,EAAK,KAAK,CAAC,SAAsBA,EAAK,IAAI,CAAC,SAAS,+CAA+C,CAAC,CAAC,CAAC,EAAeA,EAAK,KAAK,CAAC,SAAsBA,EAAK,IAAI,CAAC,SAAS,8BAA8B,CAAC,CAAC,CAAC,EAAeA,EAAK,KAAK,CAAC,SAAsBA,EAAK,IAAI,CAAC,SAAS,uBAAuB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,wCAAwC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEgD,GAAa,GAAgBI,EAAM,MAAM,CAAC,UAAU,4CAA4C,cAAc,GAAK,mBAAmB,wBAAwB,SAAS,CAAcpD,EAAKxC,EAAkC,CAAC,sBAAsB,GAAK,QAAQ0B,EAAU,SAAsBc,EAAW4D,EAAS,CAAC,SAAsB5D,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,uBAAuB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,wBAAwB,SAAS,MAAM,CAAC,OAAO,EAAE,QAAQb,EAAW,UAAU,GAAK,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeiE,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcpD,EAAKyD,EAAkB,CAAC,WAAWtB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,MAAM,YAAYjB,GAAmB,OAAO,8CAA8C,IAAI,sEAAsE,OAAO,mQAAmQ,CAAC,CAAC,EAAE,SAAsBlB,EAAK2D,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,IAAI,sEAAsE,OAAO,mQAAmQ,EAAE,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,OAAO,CAAC,CAAC,CAAC,EAAeP,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAcpD,EAAKtC,EAAS,CAAC,sBAAsB,GAAK,SAAsBsC,EAAW4D,EAAS,CAAC,SAAsBR,EAAM,KAAK,CAAC,MAAM,CAAC,kBAAkB,mDAAmD,uBAAuB,0FAA0F,qBAAqB,OAAO,0BAA0B,OAAO,sBAAsB,kEAAkE,0BAA0B,WAAW,EAAE,SAAS,CAAC,YAAyBpD,EAAK,KAAK,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,sCAAsC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKtC,EAAS,CAAC,sBAAsB,GAAK,SAAsB0F,EAAYQ,EAAS,CAAC,SAAS,CAAc5D,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uDAAuD,uBAAuB,+FAA+F,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,iEAAiE,EAAE,SAAS,+IAA+I,CAAC,EAAeoD,EAAM,KAAK,CAAC,MAAM,CAAC,kBAAkB,uDAAuD,uBAAuB,+FAA+F,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,iEAAiE,EAAE,SAAS,CAAcpD,EAAK,KAAK,CAAC,SAAsBA,EAAK,IAAI,CAAC,SAAS,4BAA4B,CAAC,CAAC,CAAC,EAAeA,EAAK,KAAK,CAAC,SAAsBA,EAAK,IAAI,CAAC,SAAS,cAAc,CAAC,CAAC,CAAC,EAAeA,EAAK,KAAK,CAAC,SAAsBA,EAAK,IAAI,CAAC,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAeA,EAAK,KAAK,CAAC,SAAsBA,EAAK,IAAI,CAAC,SAAS,iBAAiB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,wCAAwC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeoD,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcpD,EAAKyD,EAAkB,CAAC,WAAWtB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,IAAI,WAAW,IAAI,MAAM,YAAYjB,GAAmB,OAAO,8CAA8C,IAAI,yFAAyF,OAAO,gWAAgW,CAAC,CAAC,EAAE,SAAsBlB,EAAK2D,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,IAAI,WAAW,IAAI,IAAI,yFAAyF,OAAO,gWAAgW,EAAE,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,OAAO,CAAC,CAAC,CAAC,EAAeP,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAcpD,EAAKtC,EAAS,CAAC,sBAAsB,GAAK,SAAsBsC,EAAW4D,EAAS,CAAC,SAAsBR,EAAM,KAAK,CAAC,MAAM,CAAC,kBAAkB,mDAAmD,uBAAuB,0FAA0F,qBAAqB,OAAO,0BAA0B,OAAO,sBAAsB,kEAAkE,0BAA0B,WAAW,EAAE,SAAS,CAAC,QAAqBpD,EAAK,KAAK,CAAC,CAAC,EAAE,aAAa,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,sCAAsC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKtC,EAAS,CAAC,sBAAsB,GAAK,SAAsB0F,EAAYQ,EAAS,CAAC,SAAS,CAAc5D,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uDAAuD,uBAAuB,+FAA+F,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,iEAAiE,EAAE,SAAS,yIAAyI,CAAC,EAAeoD,EAAM,KAAK,CAAC,MAAM,CAAC,kBAAkB,uDAAuD,uBAAuB,+FAA+F,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,iEAAiE,EAAE,SAAS,CAAcpD,EAAK,KAAK,CAAC,SAAsBA,EAAK,IAAI,CAAC,SAAS,YAAY,CAAC,CAAC,CAAC,EAAeA,EAAK,KAAK,CAAC,SAAsBA,EAAK,IAAI,CAAC,SAAS,sBAAsB,CAAC,CAAC,CAAC,EAAeA,EAAK,KAAK,CAAC,SAAsBA,EAAK,IAAI,CAAC,SAAS,wDAAwD,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,wCAAwC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeoD,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcpD,EAAKyD,EAAkB,CAAC,WAAWtB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,MAAM,YAAYjB,GAAmB,OAAO,8CAA8C,IAAI,uEAAuE,OAAO,sQAAsQ,CAAC,CAAC,EAAE,SAAsBlB,EAAK2D,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,OAAO,CAAC,CAAC,CAAC,EAAeP,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAcpD,EAAKtC,EAAS,CAAC,sBAAsB,GAAK,SAAsBsC,EAAW4D,EAAS,CAAC,SAAsB5D,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mDAAmD,uBAAuB,0FAA0F,qBAAqB,OAAO,0BAA0B,OAAO,sBAAsB,kEAAkE,0BAA0B,WAAW,EAAE,SAAS,sBAAsB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,sCAAsC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKtC,EAAS,CAAC,sBAAsB,GAAK,SAAsB0F,EAAYQ,EAAS,CAAC,SAAS,CAAc5D,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uDAAuD,uBAAuB,+FAA+F,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,iEAAiE,EAAE,SAAS,mIAAmI,CAAC,EAAeoD,EAAM,KAAK,CAAC,MAAM,CAAC,kBAAkB,uDAAuD,uBAAuB,+FAA+F,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,iEAAiE,EAAE,SAAS,CAAcpD,EAAK,KAAK,CAAC,SAAsBA,EAAK,IAAI,CAAC,SAAS,+CAA+C,CAAC,CAAC,CAAC,EAAeA,EAAK,KAAK,CAAC,SAAsBA,EAAK,IAAI,CAAC,SAAS,8BAA8B,CAAC,CAAC,CAAC,EAAeA,EAAK,KAAK,CAAC,SAAsBA,EAAK,IAAI,CAAC,SAAS,uBAAuB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,wCAAwC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEiD,GAAa,GAAgBG,EAAM,MAAM,CAAC,UAAU,4CAA4C,cAAc,GAAK,mBAAmB,wBAAwB,SAAS,CAAcpD,EAAKxC,EAAkC,CAAC,sBAAsB,GAAK,QAAQ0B,EAAU,SAAsBc,EAAW4D,EAAS,CAAC,SAAsB5D,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,uBAAuB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,wBAAwB,UAAU,MAAM,CAAC,OAAO,EAAE,QAAQb,EAAW,UAAU,GAAK,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeiE,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcpD,EAAK2D,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQD,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,mBAAmB,GAAG,kBAAkB,EAAE,EAAE,EAAE,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,YAAYA,GAAmB,OAAO,8CAA8C,IAAI,sEAAsE,OAAO,mQAAmQ,EAAE,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,OAAO,CAAC,EAAekC,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAcpD,EAAKtC,EAAS,CAAC,sBAAsB,GAAK,SAAsBsC,EAAW4D,EAAS,CAAC,SAAsB5D,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,qBAAqB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKtC,EAAS,CAAC,sBAAsB,GAAK,SAAsB0F,EAAYQ,EAAS,CAAC,SAAS,CAAc5D,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,+IAA+I,CAAC,EAAeoD,EAAM,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,CAAcpD,EAAK,KAAK,CAAC,SAAsBA,EAAK,IAAI,CAAC,SAAS,4BAA4B,CAAC,CAAC,CAAC,EAAeA,EAAK,KAAK,CAAC,SAAsBA,EAAK,IAAI,CAAC,SAAS,cAAc,CAAC,CAAC,CAAC,EAAeA,EAAK,KAAK,CAAC,SAAsBA,EAAK,IAAI,CAAC,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAeA,EAAK,KAAK,CAAC,SAAsBA,EAAK,IAAI,CAAC,SAAS,iBAAiB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeoD,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcpD,EAAK2D,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQD,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,mBAAmB,GAAG,kBAAkB,EAAE,EAAE,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,YAAYA,GAAmB,OAAO,8CAA8C,IAAI,yFAAyF,OAAO,gWAAgW,EAAE,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,OAAO,CAAC,EAAekC,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAcpD,EAAKtC,EAAS,CAAC,sBAAsB,GAAK,SAAsBsC,EAAW4D,EAAS,CAAC,SAAsB5D,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,qBAAqB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKtC,EAAS,CAAC,sBAAsB,GAAK,SAAsB0F,EAAYQ,EAAS,CAAC,SAAS,CAAc5D,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,wIAAwI,CAAC,EAAeoD,EAAM,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,CAAcpD,EAAK,KAAK,CAAC,SAAsBA,EAAK,IAAI,CAAC,SAAS,YAAY,CAAC,CAAC,CAAC,EAAeA,EAAK,KAAK,CAAC,SAAsBA,EAAK,IAAI,CAAC,SAAS,sBAAsB,CAAC,CAAC,CAAC,EAAeA,EAAK,KAAK,CAAC,SAAsBA,EAAK,IAAI,CAAC,SAAS,wDAAwD,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeoD,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcpD,EAAK2D,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQD,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,mBAAmB,GAAG,kBAAkB,EAAE,EAAE,EAAE,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,YAAYA,GAAmB,OAAO,8CAA8C,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,OAAO,CAAC,EAAekC,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAcpD,EAAKtC,EAAS,CAAC,sBAAsB,GAAK,SAAsBsC,EAAW4D,EAAS,CAAC,SAAsB5D,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,yBAAyB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKtC,EAAS,CAAC,sBAAsB,GAAK,SAAsB0F,EAAYQ,EAAS,CAAC,SAAS,CAAc5D,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,mIAAmI,CAAC,EAAeoD,EAAM,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,CAAcpD,EAAK,KAAK,CAAC,SAAsBA,EAAK,IAAI,CAAC,SAAS,+CAA+C,CAAC,CAAC,CAAC,EAAeA,EAAK,KAAK,CAAC,SAAsBA,EAAK,IAAI,CAAC,SAAS,8BAA8B,CAAC,CAAC,CAAC,EAAeA,EAAK,KAAK,CAAC,SAAsBA,EAAK,IAAI,CAAC,SAAS,uBAAuB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeoD,EAAM,SAAS,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,GAAG,EAAE,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,SAAS,SAAS,CAAcpD,EAAKyD,EAAkB,CAAC,WAAWtB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBnC,EAAW4D,EAAS,CAAC,SAAsBR,EAAM,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,CAAC,oBAAiCpD,EAAK,KAAK,CAAC,CAAC,EAAE,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKtC,EAAS,CAAC,sBAAsB,GAAK,SAAsBsC,EAAW4D,EAAS,CAAC,SAAsB5D,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,+BAA+B,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKtC,EAAS,CAAC,sBAAsB,GAAK,SAAsBsC,EAAW4D,EAAS,CAAC,SAAsB5D,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,yEAAyE,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK6D,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASE,GAA6B/D,EAAKyD,EAAkB,CAAC,WAAWtB,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGjB,GAAmB,GAAG,GAAG,GAAG,kBAAkB,GAAG,KAAK,EAAE,UAAU,CAAC,EAAE,MAAS,CAAC,EAAE,SAAsBlB,EAAKuD,EAA0B,CAAC,OAAO,GAAG,GAAGrC,GAAmB,GAAG,GAAG,EAAE,mBAAmB,IAAI,MAAM,SAAsBlB,EAAKwD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBxD,EAAKyD,EAAkB,CAAC,WAAWtB,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU4B,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsB/D,EAAK5B,GAAO,CAAC,UAAU,aAAa,OAAO,OAAO,GAAG,YAAY,UAAU2F,EAAe,CAAC,EAAE,SAAS,YAAY,UAAU,GAAM,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeX,EAAM,MAAM,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,YAAY,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcpD,EAAKxC,EAAkC,CAAC,sBAAsB,GAAK,QAAQ0B,EAAU,SAAsBc,EAAW4D,EAAS,CAAC,SAAsB5D,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,wBAAwB,UAAU,MAAM,CAAC,OAAO,EAAE,QAAQb,EAAW,UAAU,GAAK,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAea,EAAK6D,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASG,GAA6BhE,EAAKyD,EAAkB,CAAC,WAAWtB,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGjB,GAAmB,GAAG,GAAG,GAAG,kBAAkB,GAAG,EAAE,kBAAkB,EAAE,UAAU,CAAC,EAAE,MAAS,CAAC,EAAE,SAAsBlB,EAAKuD,EAA0B,CAAC,OAAO,GAAG,GAAGrC,GAAmB,GAAG,GAAG,EAAE,kBAAkB,GAAG,EAAE,mBAAmB,SAAsBlB,EAAKwD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBxD,EAAKyD,EAAkB,CAAC,WAAWtB,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU6B,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsBhE,EAAKxB,GAAa,CAAC,UAAUwF,EAAe,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,GAAM,QAAQ,YAAY,MAAM,OAAO,UAAU,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehE,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKiE,GAAmB,CAAC,SAAsBjE,EAAKV,GAAU,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,YAAY,KAAK4E,GAAK,KAAK,YAAY,EAAE,MAAM,CAAC,KAAK,eAAe,MAAM,CAAC,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,CAAC,EAAE,SAAS,CAACC,EAAWC,EAAeC,KAAwBrE,EAAKsE,GAAU,CAAC,SAASH,GAAY,IAAI,CAAC,CAAC,UAAU3C,EAAmB,UAAUG,GAAmB,UAAUD,GAAmB,GAAGG,GAAY,UAAUJ,GAAmB,UAAUG,EAAkB,EAAE2C,MAAS/C,IAAqB,GAAGC,KAAqB,GAAGC,KAAqB,GAAuB1B,EAAKqD,GAAY,CAAC,GAAG,aAAaxB,KAAc,SAAsB7B,EAAKwE,GAAqB,SAAS,CAAC,MAAM,CAAC,UAAUhD,CAAkB,EAAE,SAAsBxB,EAAK6D,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,UAAUrC,CAAkB,EAAE,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,cAAc,CAAC,UAAUA,CAAkB,EAAE,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,cAAc,CAAC,UAAUA,CAAkB,EAAE,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASiD,GAA6BzE,EAAKyD,EAAkB,CAAC,WAAWtB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,WAAWjB,GAAmB,OAAO,kCAAkC,GAAGA,GAAmB,GAAG,GAAG,GAAG,kBAAkB,GAAG,kBAAkB,EAAE,CAAC,EAAE,UAAU,CAAC,MAAM,YAAYA,GAAmB,OAAO,8CAA8C,EAAE,MAAS,CAAC,EAAE,SAAsBlB,EAAKuD,EAA0B,CAAC,OAAO,IAAI,MAAM,YAAYrC,GAAmB,OAAO,8CAA8C,GAAGA,GAAmB,GAAG,GAAG,EAAE,kBAAkB,GAAG,kBAAkB,EAAE,EAAE,SAAsBlB,EAAKwD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBxD,EAAKyD,EAAkB,CAAC,WAAWtB,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUsC,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsBzE,EAAKtB,GAAS,CAAC,UAAUkD,GAAmB,UAAUH,GAAmB,UAAUrC,GAAkBuC,EAAkB,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUD,GAAmB,UAAU+C,EAAe,CAAC,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE5C,EAAW,EAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe7B,EAAK,MAAM,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,QAAQ,SAAsBoD,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcpD,EAAKyD,EAAkB,CAAC,WAAWtB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBnC,EAAW4D,EAAS,CAAC,SAAsB5D,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKxC,EAAkC,CAAC,sBAAsB,GAAK,QAAQ0B,EAAU,SAAsBc,EAAW4D,EAAS,CAAC,SAAsB5D,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,wBAAwB,SAAS,MAAM,CAAC,OAAO,EAAE,QAAQb,EAAW,UAAU,GAAK,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeiE,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,cAAc,SAAS,CAAcpD,EAAK0E,GAAK,CAAC,KAAK,sHAAsH,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB1E,EAAKyD,EAAkB,CAAC,WAAWtB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,GAAG,eAAe,KAAK,QAAQuB,GAA2BxC,GAAmB,GAAG,GAAG,GAAG,kBAAkB,GAAG,EAAE,EAAE,kBAAkB,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,IAAI,IAAI,oEAAoE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,GAAG,eAAe,KAAK,YAAY,GAAG,WAAW,IAAI,IAAI,oEAAoE,CAAC,CAAC,EAAE,SAAsBlB,EAAK2D,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,GAAG,eAAe,KAAK,QAAQD,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,kBAAkB,GAAG,EAAE,EAAE,mBAAmB,kBAAkB,EAAE,YAAY,GAAG,WAAW,IAAI,IAAI,oEAAoE,EAAE,UAAU,8BAA8B,mBAAmB,eAAe,WAAWrB,EAAU,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeG,EAAK0E,GAAK,CAAC,KAAK,sHAAsH,YAAY,GAAK,OAAO,YAAY,aAAa,GAAK,QAAQ,YAAY,SAAsB1E,EAAKyD,EAAkB,CAAC,WAAWtB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,GAAG,eAAe,KAAK,QAAQuB,GAA2BxC,GAAmB,GAAG,GAAG,GAAG,kBAAkB,GAAG,EAAE,EAAE,kBAAkB,EAAE,iBAAiB,EAAE,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,GAAG,eAAe,KAAK,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,CAAC,CAAC,EAAE,SAAsBlB,EAAK2D,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,GAAG,eAAe,KAAK,QAAQD,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,kBAAkB,GAAG,EAAE,EAAE,mBAAmB,EAAE,EAAE,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,EAAE,UAAU,+BAA+B,mBAAmB,eAAe,WAAWrB,EAAU,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeG,EAAK0E,GAAK,CAAC,KAAK,kHAAkH,YAAY,GAAK,OAAO,YAAY,aAAa,GAAK,QAAQ,YAAY,SAAsB1E,EAAKyD,EAAkB,CAAC,WAAWtB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,aAAa,IAAI,OAAO,gBAAgB,GAAG,eAAe,KAAK,QAAQuB,GAA2BxC,GAAmB,GAAG,GAAG,GAAG,kBAAkB,GAAG,EAAE,EAAE,kBAAkB,EAAE,kBAAkB,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,yFAAyF,OAAO,oWAAoW,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,aAAa,IAAI,OAAO,gBAAgB,GAAG,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,yFAAyF,OAAO,oWAAoW,CAAC,CAAC,EAAE,SAAsBlB,EAAK2D,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,aAAa,IAAI,OAAO,gBAAgB,GAAG,eAAe,KAAK,QAAQD,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,kBAAkB,GAAG,EAAE,EAAE,mBAAmB,EAAE,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,yFAAyF,OAAO,oWAAoW,EAAE,UAAU,+BAA+B,mBAAmB,eAAe,WAAWrB,EAAU,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeG,EAAK0E,GAAK,CAAC,KAAK,+FAA+F,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB1E,EAAKyD,EAAkB,CAAC,WAAWtB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,GAAG,eAAe,GAAG,QAAQuB,GAA2BxC,GAAmB,GAAG,GAAG,GAAG,kBAAkB,GAAG,EAAE,EAAE,kBAAkB,EAAE,kBAAkB,EAAE,YAAY,IAAI,WAAW,IAAI,IAAI,qEAAqE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,GAAG,eAAe,GAAG,YAAY,IAAI,WAAW,IAAI,IAAI,qEAAqE,CAAC,CAAC,EAAE,SAAsBlB,EAAK2D,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,GAAG,eAAe,GAAG,QAAQD,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,kBAAkB,GAAG,EAAE,EAAE,mBAAmB,kBAAkB,EAAE,YAAY,IAAI,WAAW,IAAI,IAAI,qEAAqE,EAAE,UAAU,+BAA+B,mBAAmB,oBAAoB,WAAWrB,EAAU,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeG,EAAK0E,GAAK,CAAC,KAAK,qHAAqH,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB1E,EAAKyD,EAAkB,CAAC,WAAWtB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,GAAG,eAAe,IAAI,QAAQuB,GAA2BxC,GAAmB,GAAG,GAAG,GAAG,kBAAkB,GAAG,EAAE,EAAE,kBAAkB,EAAE,kBAAkB,EAAE,YAAY,GAAG,WAAW,IAAI,IAAI,oEAAoE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,GAAG,eAAe,IAAI,YAAY,GAAG,WAAW,IAAI,IAAI,oEAAoE,CAAC,CAAC,EAAE,SAAsBlB,EAAK2D,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,GAAG,eAAe,IAAI,QAAQD,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,kBAAkB,GAAG,EAAE,EAAE,mBAAmB,iBAAiB,EAAE,YAAY,GAAG,WAAW,IAAI,IAAI,oEAAoE,EAAE,UAAU,8BAA8B,mBAAmB,oBAAoB,WAAWrB,EAAU,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeG,EAAK0E,GAAK,CAAC,KAAK,wEAAwE,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB1E,EAAKyD,EAAkB,CAAC,WAAWtB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,GAAG,eAAe,GAAG,QAAQuB,GAA2BxC,GAAmB,GAAG,GAAG,GAAG,kBAAkB,GAAG,EAAE,EAAE,kBAAkB,EAAE,iBAAiB,EAAE,YAAY,GAAG,WAAW,IAAI,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,GAAG,eAAe,GAAG,YAAY,GAAG,WAAW,IAAI,IAAI,sEAAsE,CAAC,CAAC,EAAE,SAAsBlB,EAAK2D,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,GAAG,eAAe,GAAG,QAAQD,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,kBAAkB,GAAG,EAAE,EAAE,mBAAmB,iBAAiB,EAAE,YAAY,GAAG,WAAW,IAAI,IAAI,sEAAsE,EAAE,UAAU,8BAA8B,mBAAmB,aAAa,WAAWrB,EAAU,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeG,EAAK0E,GAAK,CAAC,KAAK,+FAA+F,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB1E,EAAKyD,EAAkB,CAAC,WAAWtB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,GAAG,eAAe,KAAK,QAAQuB,GAA2BxC,GAAmB,GAAG,GAAG,GAAG,kBAAkB,GAAG,EAAE,EAAE,kBAAkB,EAAE,iBAAiB,EAAE,YAAY,GAAG,WAAW,IAAI,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,GAAG,eAAe,KAAK,YAAY,GAAG,WAAW,IAAI,IAAI,sEAAsE,CAAC,CAAC,EAAE,SAAsBlB,EAAK2D,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,GAAG,eAAe,KAAK,QAAQD,GAA2BxC,GAAmB,GAAG,GAAG,EAAE,kBAAkB,GAAG,EAAE,EAAE,mBAAmB,iBAAiB,EAAE,YAAY,GAAG,WAAW,IAAI,IAAI,sEAAsE,EAAE,UAAU,8BAA8B,mBAAmB,gBAAgB,WAAWrB,EAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeG,EAAKyD,EAAkB,CAAC,WAAWtB,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGjB,GAAmB,GAAG,GAAG,GAAG,iBAAiB,EAAE,UAAU,CAAC,EAAE,MAAS,CAAC,EAAE,SAAsBlB,EAAKuD,EAA0B,CAAC,OAAO,IAAI,MAAMrC,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,kBAAkB,SAAsBlB,EAAKwD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBxD,EAAKyD,EAAkB,CAAC,WAAWtB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBnC,EAAKpB,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,EAAeoB,EAAK,MAAM,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQ2E,GAAI,CAAC,kFAAkF,gFAAgF,sVAAsV,iTAAiT,4HAA4H,kJAAkJ,gRAAgR,0GAA0G,mXAAmX,oaAAoa,0OAA0O,8YAA8Y,+QAA+Q,wQAAwQ,4eAA4e,+fAA+f,yGAAyG,mTAAmT,+LAA+L,uWAAuW,0OAA0O,6JAA6J,8eAA8e,4HAA4H,6eAA6e,4UAA4U,qiBAAqiB,q2BAAq2B,sfAAsf,yhBAAyhB,8cAA8c,0gBAA0gB,4UAA4U,4UAA4U,0wBAA0wB,+eAA+e,oSAAoS,0OAA0O,0fAA0f,4RAA4R,yWAAyW,gRAAgR,iJAAiJ,6eAA6e,+QAA+Q,uQAAuQ,wRAAwR,wTAAwT,wRAAwR,wRAAwR,uRAAuR,uRAAuR,qHAAqH,gvOAAgvO,GAAeA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,gcAAgc,kyEAAkyE,k6CAAk6C,EAWzpuGC,GAAgBC,GAAQtE,GAAUoE,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,OAAOA,GAAgB,aAAa,CAAC,OAAO,KAAK,MAAM,IAAI,EAAEG,GAASH,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,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,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,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,gCAAgC,OAAO,SAAS,IAAI,uEAAuE,EAAE,CAAC,OAAO,kCAAkC,OAAO,SAAS,IAAI,wEAAwE,CAAC,CAAC,EAAE,GAAG3H,GAAkB,GAAGG,GAAY,GAAGE,GAAyB,GAAGK,GAAoB,GAAGE,GAAe,GAAGE,GAAkB,GAAGE,GAAwB,GAAGE,GAAY,GAAGE,GAAa,GAAGE,GAAkB,GAAGE,GAAc,GAAGE,GAAY,GAAGqG,GAAoCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,EACjjI,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,qBAAuB,OAAO,yBAA2B,QAAQ,6BAA+B,OAAO,yBAA2B,OAAO,sBAAwB,OAAO,qBAAuB,yDAAmE,oCAAsC,4JAA0L,uBAAyB,GAAG,sBAAwB,IAAI,4BAA8B,MAAM,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC",
  "names": ["isBrowser", "getBrowserVisibilityProp", "getBrowserDocumentHiddenProp", "getIsDocumentHidden", "usePageVisibility", "isVisible", "setIsVisible", "ye", "onVisibilityChange", "ue", "visibilityChange", "OPACITY_0", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "hasChildren", "j", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "index", "W", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "total", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "viewportLength", "window", "scheduleMeasure", "sync", "fe", "initialResize", "ue", "resize", "contentSize", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "visibilityRef", "isInView", "useInView", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrapped", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "animate", "setDelta", "delta", "setPage", "currentItemWrapped", "currentItemWrappedInvert", "goto", "gotoInverted", "handleDragStart", "handleDragEnd", "event", "offset", "velocity", "offsetXorY", "velocityThreshold", "velocityXorY", "isHalfOfNext", "isHalfOfPrev", "normalizedOffset", "itemDelta", "itemDeltaFromOne", "childCounter", "columnOrRowValue", "child", "childIndex", "ref", "Slide", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "dots", "dotsBlurStyle", "i", "Dot", "dotStyle", "baseButtonStyles", "dragProps", "arrowHasTop", "arrowHasBottom", "arrowHasLeft", "arrowHasRight", "arrowHasMid", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "num", "min", "max", "Y", "_child_props", "_child_props1", "slideKey", "width", "height", "numChildren", "effects", "isLast", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "_ref_current", "visibility", "mix", "LayoutGroup", "q", "selectedOpacity", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "TickerFonts", "getFonts", "Ticker", "serializationHash", "variantClassNames", "transition1", "transformTemplate1", "_", "t", "transformTemplate2", "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", "ComponentViewportProvider", "Ticker", "Image2", "css", "FramerOGa5DOnvu", "withCSS", "OGa5DOnvu_default", "addFonts", "TickerFonts", "TickerFonts", "getFonts", "Ticker", "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", "ComponentViewportProvider", "Ticker", "Image2", "css", "Framerzstf5cOYg", "withCSS", "zstf5cOYg_default", "addFonts", "TickerFonts", "SmoothScrollFonts", "getFonts", "SmoothScroll", "NavbarFonts", "jBP1HwFMI_default", "AnnouncementMarqueeFonts", "jgS4p9VL6_default", "RichTextWithOptimizedAppearEffect", "withOptimizedAppearEffect", "RichText2", "ButtonOffWhiteFonts", "MXSEdI1dH_default", "SlideshowFonts", "Slideshow", "ClientTickerFonts", "zstf5cOYg_default", "ClientTickerMobileFonts", "OGa5DOnvu_default", "ButtonFonts", "iWMBnFiRp_default", "YouTubeFonts", "Youtube", "FooterButtonFonts", "mLrgrUyAd_default", "BlogItemFonts", "hxL3fA4US_default", "FooterFonts", "WncVwUrUZ_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "transition2", "animation2", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "cJBp6BGIYZxvpUN66K", "NDXJ4aZbDZxvpUN66K", "HmPrvqiW1ZxvpUN66K", "go6FY7IjDZxvpUN66K", "nWgS0pKk7ZxvpUN66K", "idZxvpUN66K", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "isDisplayed", "isDisplayed1", "router", "useRouter", "isDisplayed2", "isDisplayed3", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "PropertyOverrides2", "getLoadingLazyAtYPosition", "Image2", "x", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "ChildrenCanSuspend", "RLcHvzz5Q_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "resolvedLinks3", "Link", "css", "FramerIJzal5roY", "withCSS", "IJzal5roY_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
