{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.12.0/dist/index.es.js", "ssg:https://framer.com/m/Carousel-bt0d.js", "ssg:https://framer.com/m/CMSSlideshow-xxTt.js@zZu4neaiBjn0g7LEKq66", "ssg:https://framerusercontent.com/modules/10ZCVSuzdwuiQbRxAa5d/pYey1GeHy7fuXqrpSOzM/CMSCarousel.js", "ssg:https://framerusercontent.com/modules/9N50PMbCaZNc8J76vXRL/zbPz4O3CnWxY2tjbhM7b/TextMask.js", "ssg:https://framerusercontent.com/modules/tB8ow2bjSNyrJw44oOsB/y21AuUtCfsOq7mgO4tgP/dvOko2l95.js", "ssg:https://framerusercontent.com/modules/T43e2VbnV0UBsEje3P4h/Fqz5N79YI4OczXknKI5u/nf6MiwrGi.js"],
  "sourcesContent": ["function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isString=t=>\"string\"===typeof t;const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let r=0;for(;r<o-2;r++)if(s<e[r+1])break;let f=clamp(0,1,progress(e[r],e[r+1],s));const c=getEasingForSegment(n,r);f=c(f);return mix(t[r],t[r+1],f)}}const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useCallback,useLayoutEffect,useEffect,useState,useRef,cloneElement,startTransition}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{scroll,resize}from\"@motionone/dom\";import{clamp}from\"@motionone/utils\";import{animate,motion,useMotionValue,useTransform,useReducedMotion}from\"framer-motion\";import{usePadding,paddingControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";/**\n * Calculate the width of the fade mask. Fade width and inset are provided\n * as percentages. There's a fade on the left and the right, so we return\n * a maximum of 50%.\n */function calcMaskWidth([inset,width]){return inset+(100-inset)*(width/100)*.5;}/**\n * Use media queries to determine if this device uses a mouse as\n * the primary input.\n */function useIsMouse(){const[isMouseDevice,setIsMouseDevice]=useState(false);useLayoutEffect(()=>{startTransition(()=>setIsMouseDevice(window.matchMedia(\"(pointer:fine)\").matches));},[]);return isMouseDevice;}/**\n * This checks a scroll position against the available scrollable\n * range. If we have hit an edge, start/end, we fade out the pagination\n * controls and mask. Likewise if we've just moved away from an edge we\n * fade them back in.\n */function checkLimit(progress,target,{edgeOpacity,moreItems,buttonRef},transition){if(moreItems.current&&progress===target){moreItems.current=false;animate(edgeOpacity,1,transition);buttonRef.current.setAttribute(\"disabled\",\"\");}else if(!moreItems.current&&progress!==target){moreItems.current=true;animate(edgeOpacity,0,transition);buttonRef.current.removeAttribute(\"disabled\");}}function useGUI(initialMoreItems,initialAlpha){const moreItems=useRef(initialMoreItems);const edgeOpacity=useMotionValue(moreItems.current?0:1);const fadeOpacity=useTransform(edgeOpacity,[0,1],[initialAlpha||0,1]);const buttonOpacity=useTransform(edgeOpacity,v=>1-v);const buttonRef=useRef(null);/**\n     * Returns a pointer-events CSS value for a given opacity.\n     * The threshold here is arbitrary, the theory being we\n     * should only enable pointer-events when the button is\n     * somewhat visible.\n     */const pointerEvents=useTransform(buttonOpacity,v=>v>.2?\"auto\":\"none\");/**\n     * Returns a cursor CSS value for a given pointer-events value.\n     * So only indicate\n     */const cursor=useTransform(pointerEvents,v=>v===\"auto\"?\"pointer\":\"default\");const buttonStyle={...baseButtonStyles,opacity:buttonOpacity,pointerEvents,cursor};return{moreItems,fadeOpacity,edgeOpacity,buttonStyle,buttonRef};}function setAriaVisible({element}){element.setAttribute(\"aria-hidden\",false);}function useScrollLimits(container,axis,scrollInfo,updateCurrentScroll,targetScroll,checkLimits,measureItems){useEffect(()=>{if(!container.current)return;const updateScrollInfo=info=>{scrollInfo.current=info[axis];/**\n             * If we've reached our target scroll, delete it.\n             * This way we know when to make calculations based on the\n             * actual current scroll or the target scroll.\n             */if(info[axis].current===targetScroll.current){targetScroll.current=undefined;}updateCurrentScroll(info[axis].current);checkLimits();};const stopScroll=scroll(updateScrollInfo,{container:container.current,axis});const stopResize=resize(container.current,()=>{measureItems();checkLimits();});return()=>{stopScroll();stopResize();};},[checkLimits,measureItems]);}/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export default function Carousel({slots,gap,axis,align,sizingObject,fadeObject,arrowObject,snapObject,progressObject,ariaLabel,borderRadius,effectsObject,...props}){// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numItems=Children.count(filteredSlots);const isCanvas=RenderTarget.current()===RenderTarget.canvas;const padding=usePadding(props);const axisLabel=axis?\"x\":\"y\";const{fadeContent,fadeWidth,fadeInset,fadeTransition,fadeAlpha}=fadeObject;const{snap,snapEdge,fluid}=snapObject;const{widthType,widthInset,widthColumns,heightType,heightInset,heightRows}=sizingObject;const{showScrollbar,showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressObject;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowPadding}=arrowObject;/**\n     * The latest scroll info on the scrollable axis as reported by Motion One.\n     */const scrollInfo=useRef(undefined);/**\n     * The target scroll we're currently animating to, calculated when\n     * a user presses a pagination button.\n     */const targetScroll=useRef(undefined);/**\n     * If we're performing a scroll animation, return the target scroll instead\n     * of the latest scroll position. This will help users paginate through\n     * a carousel much quicker.\n     */const currentScroll=useMotionValue(0);const updateCurrentScroll=newScroll=>{currentScroll.set(targetScroll.current!==undefined?targetScroll.current:newScroll);};/**\n     * We only want to display pagination buttons if the user has enabled the setting\n     * and this is actually a mouse device.\n     */const isMouseDevice=useIsMouse();/**\n     * Create all the motion values for the GUI at each end of the carousel.\n     */const start=useGUI(false,fadeAlpha);const end=useGUI(true,fadeAlpha);const startMaskInset=useMotionValue(fadeInset*.5);const endMaskInset=useTransform(startMaskInset,v=>100-v);const baseWidth=useMotionValue(fadeWidth);const startMaskWidth=useTransform([startMaskInset,baseWidth],calcMaskWidth);const endMaskWidth=useTransform(startMaskWidth,v=>100-v);const direction=useMotionValue(axis?\"right\":\"bottom\");const mask=useTransform([direction,start.fadeOpacity,startMaskInset,startMaskWidth,end.fadeOpacity,endMaskInset,endMaskWidth],latest=>{return`linear-gradient(to ${latest[0]}, rgb(0, 0, 0, ${latest[1]}) ${latest[2]}%, rgb(0, 0, 0, 1) ${latest[3]}%, rgba(0, 0, 0, 1) ${latest[6]}%, rgb(0, 0, 0, ${latest[4]}) ${latest[5]}%)`;});const carouselRef=useRef(null);/**\n     * Dots state\n     */const[numPages,setNumPages]=useState(isCanvas?4:1);/**\n     * Generate styles for components.\n     */const itemStyle={scrollSnapAlign:snapEdge,flexShrink:0};const childStyle={};if(align===\"stretch\"){if(axis){childStyle.height=\"100%\";itemStyle.height=\"auto\";}else{childStyle.width=\"100%\";itemStyle.width=\"auto\";}}if(!fluid){itemStyle.scrollSnapStop=\"always\";}if(widthType===\"stretch\"){itemStyle.width=`calc(100% - ${widthInset||0}px)`;childStyle.width=\"100%\";}else if(widthType===\"columns\"){itemStyle.width=`calc(${100/widthColumns}% - ${gap}px + ${gap/widthColumns}px)`;childStyle.width=\"100%\";}if(heightType===\"stretch\"){itemStyle.height=`calc(100% - ${heightInset||0}px)`;childStyle.height=\"100%\";}else if(heightType===\"rows\"){itemStyle.height=`calc(${100/heightRows}% - ${gap}px + ${gap/heightRows}px)`;childStyle.height=\"100%\";}const scrollOverflow=isCanvas?\"hidden\":\"auto\";const containerStyle={...baseContainerStyle,padding};const carouselStyle={...baseCarouselStyle,gap,alignItems:align,flexDirection:axis?\"row\":\"column\",overflowX:axis?scrollOverflow:\"hidden\",overflowY:axis?\"hidden\":scrollOverflow,scrollSnapType:snap?`${axisLabel} mandatory`:undefined,WebkitOverflowScrolling:\"touch\",WebkitMaskImage:fadeContent?mask:undefined,MozMaskImage:fadeContent?mask:undefined,maskImage:fadeContent?mask:undefined,borderRadius};const carouselA11y={[\"aria-roledescription\"]:\"carousel\"};if(ariaLabel){carouselA11y[\"aria-title\"]=ariaLabel;}const itemA11y={};if(align===\"stretch\"){itemA11y[\"aria-role\"]=\"group\";itemA11y[\"aria-roledescription\"]=\"slide\";}if(!isCanvas){const itemSizes=useRef([]);useScrollLimits(carouselRef,axisLabel,scrollInfo,updateCurrentScroll,targetScroll,useCallback(()=>{if(!scrollInfo.current)return;const{targetLength,containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();if(!targetLength&&!containerLength)return;if(targetLength>containerLength){checkLimit(current,0,start,fadeTransition);checkLimit(current,scrollLength,end,fadeTransition);for(let i=0;i<itemSizes.current.length;i++){const{element,start,end}=itemSizes.current[i];if(end<current||start>current+containerLength){element.setAttribute(\"aria-hidden\",true);}else{element.setAttribute(\"aria-hidden\",false);}}}else{checkLimit(0,0,start,fadeTransition);checkLimit(1,1,end,fadeTransition);itemSizes.current.forEach(setAriaVisible);}// This used to be Math.ceil, which would round 3.05 to 4.\n// This now uses Math.round to ensure people get a perfect amount of dots\n// when using Columns or Rows \u2014\u00A0Benjamin\n/**\n                 * Update by Matt: changing back to ceil, might break dots but round was incorrectly\n                 * paginating for all widths - overshooting items at shorter viewports and\n                 * not paginating at all for wide.\n                 */let newNumPages=Math.ceil(targetLength/containerLength);if(!isNaN(newNumPages)){// If the number of dots is 65% of the number of items, make it 100%\nif(newNumPages/numItems>.65)newNumPages=numItems;if(newNumPages!==numPages)setNumPages(newNumPages);}},[numPages]),useCallback(()=>{if(!carouselRef.current)return;itemSizes.current=Array.from(carouselRef.current.children).map(element=>{return axis?{element,start:element.offsetLeft,end:element.offsetLeft+element.offsetWidth}:{element,start:element.offsetTop,end:element.offsetTop+element.offsetHeight};});},[]));}/**\n     * On the canvas, we want to keep the motion values updated\n     * with the latest props. Outside of the canvas these will never\n     * update.\n     */if(isCanvas){useEffect(()=>{baseWidth.set(fadeWidth);},[fadeWidth]);useEffect(()=>{startMaskInset.set(fadeInset*.5);},[fadeInset]);useEffect(()=>{direction.set(axis?\"right\":\"bottom\");},[axis]);}/*const findNextItem = (delta: 1 | -1, target: number) => {\n        if (!scrollInfo.current) return\n        const { current } = scrollInfo.current\n        const { children } = carouselRef.current\n        let scrollTarget\n\n        let i = delta === 1 ? 0 : children.length - 1\n        while (scrollTarget === undefined) {\n            const item = children[i]\n\n            const start = axis ? item.offsetLeft : item.offsetTop\n            const length = axis ? item.offsetWidth : item.offsetHeight\n            const end = start + length\n\n            const threshold = 0.05\n            if (delta === 1) {\n                const visibility = progress(start, end, target)\n                if (visibility < 1 - threshold) {\n                    scrollTarget = start\n                } else if (i === children.length - 1) {\n                    scrollTarget = end\n                }\n            } else if (delta === -1) {\n                const visibility = progress(start, end, target)\n                if (visibility > threshold) {\n                    scrollTarget = end\n                } else if (i === 0) {\n                    scrollTarget = start\n                }\n            }\n\n            i += delta\n        }\n\n        return scrollTarget\n    }*/const isReducedMotion=useReducedMotion();const goto=scrollTo=>{targetScroll.current=scrollTo;const options=axis?{left:scrollTo}:{top:scrollTo};carouselRef.current.scrollTo({...options,behavior:isReducedMotion?\"auto\":\"smooth\"});};const gotoPage=(page,adjustment)=>{if(!scrollInfo.current)return;const{scrollLength}=scrollInfo.current;const totalLen=scrollLength/(numPages-1);goto(page*totalLen+adjustment*totalLen);};const gotoDelta=delta=>()=>{if(!scrollInfo.current)return;const{containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();const pageLength=scrollLength/numPages;const currentPage=clamp(0,numPages-1,Math.floor(current/pageLength));let adjustment=0;if(snap&&(snapEdge===\"start\"||snapEdge===\"end\")&&delta>=1)adjustment=.4// this ensures it doesn't snap back to previous page*/\n    ;gotoPage(currentPage+delta,adjustment);};/**\n     * Return placeholder if no children\n     */if(numItems===0){return /*#__PURE__*/_jsx(Placeholder,{});}const dots=[];const dotsBlurStyle={};if(numPages>1&&showProgressDots&&!showScrollbar){for(let i=0;i<numPages;i++){const isSelected=isCanvas&&!i||false;dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,isSelected:isSelected,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>gotoPage(i),currentScroll:currentScroll,scrollInfo:scrollInfo,total:numPages,index:i,gap:dotsGap,padding:dotsPadding,axis:axis}));}if(dotsBlur){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}return /*#__PURE__*/_jsxs(\"section\",{style:containerStyle,...carouselA11y,children:[/*#__PURE__*/_jsx(motion.ul,{ref:carouselRef,style:carouselStyle,className:\"framer--carousel\",\"data-show-scrollbar\":showScrollbar,\"aria-atomic\":\"false\",\"aria-live\":\"polite\",onWheel:()=>targetScroll.current=undefined,children:Children.map(filteredSlots,(child,index)=>{var _child_props;return /*#__PURE__*/_jsx(\"li\",{style:itemStyle,...itemA11y,\"aria-label\":`${index+1} of ${numItems}`,children:/*#__PURE__*/cloneElement(child,{...child.props,style:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.style,...childStyle}})});})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles,padding:arrowPadding,display:\"flex\",flexDirection:axis?\"row\":\"column\"},\"aria-label\":\"Carousel pagination controls\",className:\"framer--carousel-controls\",\"data-show-mouse-controls\":showMouseControls,children:[/*#__PURE__*/_jsx(motion.button,{ref:start.buttonRef,type:\"button\",style:{...start.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",alt:\"\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\"})}),/*#__PURE__*/_jsx(motion.button,{ref:end.buttonRef,type:\"button\",style:{...end.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",alt:\"\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\"})}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:axis?\"50%\":dotsInset,top:!axis?\"50%\":\"unset\",transform:axis?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:axis?\"row\":\"column\",bottom:axis?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,...dotsBlurStyle},children:dots}):null]}),/*#__PURE__*/_jsx(MouseStyles,{})]});}/* Default Properties */Carousel.defaultProps={gap:10,padding:10,progressObject:{showScrollbar:false,showProgressDots:false},sizingObject:{widthType:\"auto\",widthOffset:0,widthColumns:2,heightType:\"auto\",heightOffset:0,heightRows:2},borderRadius:0};/* Property Controls */addPropertyControls(Carousel,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},axis:{type:ControlType.Enum,title:\"Direction\",options:[true,false],optionIcons:[\"direction-horizontal\",\"direction-vertical\"],displaySegmentedControl:true},align:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{axis:{true:[\"align-top\",\"align-middle\",\"align-bottom\"],false:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},...paddingControl,sizingObject:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Enum,title:\"Width\",options:[\"auto\",\"stretch\",\"columns\"],optionTitles:[\"Auto\",\"Stretch\",\"Columns\"],defaultValue:\"auto\"},widthInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.widthType!==\"stretch\"},widthColumns:{type:ControlType.Number,title:\"Columns\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.widthType!==\"columns\"},heightType:{type:ControlType.Enum,title:\"Height\",options:[\"auto\",\"stretch\",\"rows\"],optionTitles:[\"Auto\",\"Stretch\",\"Rows\"],defaultValue:\"auto\"},heightInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.heightType!==\"stretch\"},heightRows:{type:ControlType.Number,title:\"Rows\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.heightType!==\"rows\"}}},snapObject:{type:ControlType.Object,title:\"Snapping\",controls:{snap:{type:ControlType.Boolean,title:\"Enable\"},snapEdge:{type:ControlType.Enum,title:\"Edge\",options:[\"start\",\"center\",\"end\"],optionTitles:[\"Left\",\"Center\",\"Right\"],defaultValue:\"center\",hidden:props=>!props.snap},fluid:{type:ControlType.Boolean,title:\"Fluid\",defaultValue:false,hidden:props=>!props.snap}}},fadeObject:{type:ControlType.Object,title:\"Fading\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Enable\",defaultValue:false},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",hidden:props=>!props.fadeContent,min:0,max:1,step:.05,defaultValue:0},fadeTransition:{type:ControlType.Transition,title:\"Transition\",hidden:props=>!props.fadeContent}}},progressObject:{type:ControlType.Object,title:\"Progress\",controls:{showScrollbar:{type:ControlType.Boolean,title:\"Scroll Bar\",defaultValue:false},showProgressDots:{type:ControlType.Boolean,title:\"Dots\",defaultValue:false,hidden:props=>props.showScrollbar},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:0,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:4,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}},arrowObject:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:true},arrowFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showMouseControls},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:40,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls}}},ariaLabel:{type:ControlType.String,title:\"Aria Label\",placeholder:\"Movies...\"},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0}});function Dot({currentScroll,scrollInfo,isSelected,selectedOpacity,opacity:unselectedOpacity,total,index,dotStyle,buttonStyle,gap,padding,axis,...props}){const opacity=useTransform(currentScroll,v=>{var _scrollInfo_current,_scrollInfo_current1;if(!((_scrollInfo_current=scrollInfo.current)===null||_scrollInfo_current===void 0?void 0:_scrollInfo_current.scrollLength)){return index===0?selectedOpacity:unselectedOpacity;}const pageLength=((_scrollInfo_current1=scrollInfo.current)===null||_scrollInfo_current1===void 0?void 0:_scrollInfo_current1.scrollLength)/total;const minScroll=pageLength*index;const maxScroll=minScroll+pageLength;const isSelected=v>=minScroll&&(index<total-1?v<maxScroll:index===total-1);return isSelected?selectedOpacity:unselectedOpacity;});const inlinePadding=gap/2;let top=!axis&&index>0?inlinePadding:padding;let bottom=!axis&&index!==total-1?inlinePadding:padding;let right=axis&&index!==total-1?inlinePadding:padding;let left=axis&&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,opacity}})});}function Placeholder(){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to swipe between.\"})]});}function MouseStyles(){return /*#__PURE__*/_jsx(\"div\",{dangerouslySetInnerHTML:{__html:`<style>@media (pointer: fine) {\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar {\n                    display: none;\n                    -webkit-appearance: none;\n                    width: 0;\n                    height: 0;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar-thumb {\n                    display: none;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"] {\n                    scrollbar-width: none;\n                    scrollbar-height: none;\n                }\n            }</style>`}});}/* 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:130,lineHeight:1.5,textAlign:\"center\"};const labelStyle={clip:\"rect(0 0 0 0)\",WebkitClipPath:\"inset(50%)\",clipPath:\"inset(50%)\",height:1,width:1,margin:-1,padding:0,overflow:\"hidden\",position:\"absolute\",whiteSpace:\"nowrap\"};/**\n * GUI styles\n */const baseContainerStyle={display:\"flex\",overflow:\"hidden\",width:\"100%\",height:\"100%\",position:\"relative\"};const baseCarouselStyle={padding:0,margin:0,listStyle:\"none\",position:\"relative\",display:\"flex\",flex:\"1 1 100%\",width:\"100%\",height:\"100%\"};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\",top:0,left:0,right:0,bottom:0,pointerEvents:\"none\",border:0,padding:0,margin:0};/**\n * Dot styles\n */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\":\"Carousel\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Carousel.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,// @ts-ignore\ngetPropertyControls,ControlType,RenderTarget}from\"framer\";import{cloneElement}from\"react\";import SlideShow from\"https://framer.com/m/SlideShow-07du.js\";/**\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n */export default function CMSSlideshow(props){const{collectionList,startLayers,endLayers,frame,...otherProps}=props;const isCanvas=RenderTarget.current()===RenderTarget.canvas;const collectionLayers=getCollectionListContents(collectionList,isCanvas);let layers=[];if(startLayers){layers=layers.concat(startLayers);}if(!isCanvas){for(let i=0;i<collectionLayers.length;i++){const layer=/*#__PURE__*/cloneElement(collectionLayers[i].props.children.props.children,{style:{width:\"100%\",height:\"100%\"}});layers.push(/*#__PURE__*/cloneElement(frame[0],{style:{width:\"100%\",height:\"100%\"},className:undefined},layer));}}else{for(let i=0;i<props.itemAmount;i++){layers.push(/*#__PURE__*/_jsx(CanvasPlaceholder,{title:\"Run project to view slideshow content\",subtitle:\"Collection List content is not accessible to the slideshow component in the editor. Run your project orvisit the live website to view the slideshow with CMS content.\"}));}}if(endLayers){layers=layers.concat(endLayers);}return /*#__PURE__*/_jsx(SlideShow,{...otherProps,slots:layers});}CMSSlideshow.displayName=\"CMS Slideshow\";addPropertyControls(CMSSlideshow,{collectionList:{type:ControlType.ComponentInstance},startLayers:{type:ControlType.Array,control:{type:ControlType.ComponentInstance},title:\"Start\"},endLayers:{type:ControlType.Array,control:{type:ControlType.ComponentInstance},title:\"End\"},frame:{type:ControlType.ComponentInstance},...getComponentProps(SlideShow)});function getComponentProps(component){const{slots,...otherProps}=getPropertyControls(component);return otherProps;}export function getCollectionListContents(collectionList,isCanvas){const element=collectionList===null||collectionList===void 0?void 0:collectionList[0];if(element&&!isCanvas){return element.props.children.type({query:element.props.children.props.query,children:element.props.children.props.children});}return[];}export function CanvasPlaceholder({title,subtitle}){return /*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",backgroundColor:\"rgba(136, 85, 255, 0.1)\",borderRadius:6,border:\"1px dashed rgb(136, 85, 255)\",color:\"rgb(136, 85, 255)\",fontSize:12,padding:24},children:[/*#__PURE__*/_jsx(\"p\",{style:{margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"},children:title}),/*#__PURE__*/_jsx(\"p\",{style:{margin:0,opacity:.7,maxWidth:500,lineHeight:1.5,textAlign:\"center\"},children:subtitle})]});}\nexport const __FramerMetadata__ = {\"exports\":{\"CanvasPlaceholder\":{\"type\":\"reactComponent\",\"name\":\"CanvasPlaceholder\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"getCollectionListContents\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"CMSSlideshow\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./CMSSlideshow.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,// @ts-ignore\ngetPropertyControls,ControlType,RenderTarget}from\"framer\";import Carousel from\"https://framer.com/m/Carousel-bt0d.js\";import{getCollectionListContents,CanvasPlaceholder}from\"https://framer.com/m/CMSSlideshow-xxTt.js@zZu4neaiBjn0g7LEKq66\";/**\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n */export default function CMSCarousel(props){const{collectionList,startLayers,endLayers,...otherProps}=props;const isCanvas=RenderTarget.current()===RenderTarget.canvas;const collectionLayers=getCollectionListContents(collectionList,isCanvas);let layers=[];if(startLayers){layers=layers.concat(startLayers);}if(!isCanvas){for(let i=0;i<collectionLayers.length;i++){layers.push(collectionLayers[i].props.children.props.children);}}else{let count=1;if(props.axis){// Horizontal\nif(props.sizingObject.widthType==\"columns\"){count=props.sizingObject.widthColumns;}}else{// Vertical\nif(props.sizingObject.heightType==\"columns\"){count=props.sizingObject.heightColumns;}}for(let i=0;i<count;i++){layers.push(/*#__PURE__*/_jsx(CanvasPlaceholder,{title:\"Run project to view carousel content\",subtitle:\"Collection List content is not accessible to the carousel component in the editor. Run your project or visit the live website to view the carousel with CMS content.\"}));}}if(endLayers){layers=layers.concat(endLayers);}return /*#__PURE__*/_jsx(Carousel,{...otherProps,slots:layers});}CMSCarousel.displayName=\"CMS Carousel\";addPropertyControls(CMSCarousel,{collectionList:{type:ControlType.ComponentInstance},startLayers:{type:ControlType.Array,control:{type:ControlType.ComponentInstance},title:\"Start\"},endLayers:{type:ControlType.Array,control:{type:ControlType.ComponentInstance},title:\"End\"},...getComponentProps(Carousel)});function getComponentProps(component){const{slots,...otherProps}=getPropertyControls(component);return otherProps;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"CMSCarousel\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./CMSCarousel.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";/**\n * TEXTMASK\n * By Benjamin den Boer\n * @benjaminnathan\n *\n * @framerIntrinsicWidth 260\n * @framerIntrinsicHeight 200\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any\n */ export default function TextMask(props){const{textContent,image,bgSizeType,bgSize,bgPosX,bgPosY,font,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft}=props;const{color,fontSize,fontFamily,fontWeight,fontStyle,textAlign,letterSpacing,whiteSpace,lineHeight,lineHeightPixels,lineHeightType}=font;const backgroundSizeValue=props.bgSizeType===\"cover\"||props.bgSizeType===\"contain\"?bgSizeType:`${bgSize}%`;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;return /*#__PURE__*/ _jsx(\"h1\",{style:{backgroundImage:image&&`url(${image.src})`,backgroundSize:backgroundSizeValue,backgroundRepeat:\"no-repeat\",backgroundPosition:`${bgPosX}% ${bgPosY}%`,backgroundClip:image&&\"text\",WebkitBackgroundClip:image&&\"text\",WebkitTextFillColor:image&&\"transparent\",textFillColor:image&&\"transparent\",color,fontSize,fontFamily:`\"${fontFamily}\", sans-serif`,fontStyle,fontWeight,textAlign,letterSpacing,whiteSpace,lineHeight:lineHeightType?lineHeight:`${lineHeightPixels}px`,margin:0,padding:paddingValue},children:textContent});};/* Default Properties */ TextMask.defaultProps={textContent:\"Hello\",bgSize:100,bgPosX:0,bgPosY:0,font:{fontSize:100,lineHeight:1,lineHeightType:true}};TextMask.displayName=\"Text Mask\";/* Property Controls */ addPropertyControls(TextMask,{textContent:{type:ControlType.String,title:\"Text\",defaultValue:\"Hello\"},image:{type:ControlType.ResponsiveImage,title:\"Image\"},bgSizeType:{type:ControlType.Enum,options:[\"cover\",\"contain\",\"percentage\"],optionTitles:[\"Cover\",\"Contain\",\"Percentage\"],title:\"Background\",defaultValue:\"cover\"},bgSize:{type:ControlType.Number,min:0,max:200,defaultValue:100,unit:\"%\",title:\"Size\",hidden:props=>props.bgSizeType===\"cover\"||props.bgSizeType===\"contain\"},bgPosX:{type:ControlType.Number,min:0,max:100,defaultValue:0,unit:\"%\",title:\"Offset X\"},bgPosY:{type:ControlType.Number,min:0,max:100,defaultValue:0,unit:\"%\",title:\"Offset Y\"},font:{type:ControlType.Object,controls:{color:{type:ControlType.Color,defaultValue:\"#888\"},fontSize:{type:ControlType.Number,title:\"Size\",min:0,displayStepper:true,step:1,defaultValue:100},fontFamily:{type:ControlType.String,title:\"Font\",defaultValue:\"Inter\"},fontWeight:{type:ControlType.Enum,title:\"Weight\",options:[100,200,300,400,500,600,700,800,900],defaultValue:400},fontStyle:{type:ControlType.Enum,title:\"Style\",options:[\"normal\",\"italic\",\"oblique\"],optionTitles:[\"Normal\",\"Italic\",\"Oblique\"],defaultValue:\"normal\"},textAlign:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Align\",options:[\"left\",\"center\",\"right\"],optionTitles:[\"Left\",\"Center\",\"Right\"],defaultValue:\"center\"},whiteSpace:{type:ControlType.Enum,title:\"Space\",options:[\"normal\",\"nowrap\",\"pre\",\"pre-wrap\",\"preline\",\"break-spaces\",],optionTitles:[\"Normal\",\"No Wrap\",\"Pre\",\"Pre Wrap\",\"Preline\",\"Break Spaces\",],defaultValue:\"center\"},letterSpacing:{type:ControlType.Number,title:\"Letter\",min:-100,max:100,displayStepper:true,step:.1,defaultValue:0},lineHeight:{type:ControlType.Number,title:\"Line\",min:-500,max:500,displayStepper:true,step:.1,defaultValue:1,hidden:props=>!props.lineHeightType},lineHeightPixels:{type:ControlType.Number,title:\"Line\",min:-500,max:500,displayStepper:true,step:.1,defaultValue:100,hidden:props=>props.lineHeightType},lineHeightType:{type:ControlType.Boolean,title:\" \",enabledTitle:\"em\",disabledTitle:\"px\",defaultValue:true}}},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}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"TextMask\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"200\",\"framerIntrinsicWidth\":\"260\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./TextMask.map", "// Generated by Framer (a96673f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,RichText,useConstant,useIsOnFramerCanvas,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"eF2cM2F0w\"];const serializationHash=\"framer-x7txb\";const variantClassNames={eF2cM2F0w:\"framer-v-6jvgz0\"};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 transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const 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 getProps=({content,height,id,image,showTitleContent,title,width,...props})=>{var _ref,_ref1,_ref2,_ref3;return{...props,BNs6FJPJ6:(_ref=content!==null&&content!==void 0?content:props.BNs6FJPJ6)!==null&&_ref!==void 0?_ref:\"Enter some content here\u2026\",EtaKyfd9t:(_ref1=image!==null&&image!==void 0?image:props.EtaKyfd9t)!==null&&_ref1!==void 0?_ref1:{src:\"https://framerusercontent.com/images/yctOjM0xlO1y3XS3UzMHbXbnJiE.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/yctOjM0xlO1y3XS3UzMHbXbnJiE.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/yctOjM0xlO1y3XS3UzMHbXbnJiE.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/yctOjM0xlO1y3XS3UzMHbXbnJiE.jpg?scale-down-to=2048 2048w, https://framerusercontent.com/images/yctOjM0xlO1y3XS3UzMHbXbnJiE.jpg 2576w\"},hU3Mosp6d:(_ref2=title!==null&&title!==void 0?title:props.hU3Mosp6d)!==null&&_ref2!==void 0?_ref2:\"Title\",lpPjxYSWW:(_ref3=showTitleContent!==null&&showTitleContent!==void 0?showTitleContent:props.lpPjxYSWW)!==null&&_ref3!==void 0?_ref3:true};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,EtaKyfd9t,lpPjxYSWW,hU3Mosp6d,BNs6FJPJ6,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"eF2cM2F0w\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const isOnCanvas=useIsOnFramerCanvas();const initialVariant=useConstant(()=>variant);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,animate:variants,className:cx(serializationHash,...sharedStyleClassNames,\"framer-6jvgz0\",className,classNames),\"data-framer-name\":\"Variant 1\",initial:isOnCanvas?variant:initialVariant,layoutDependency:layoutDependency,layoutId:\"eF2cM2F0w\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 8px 16px 0px rgba(48, 49, 51, 0.10000000149011612), 0px 0px 1px 0px rgba(48, 49, 51, 0.05000000074505806)\",...style},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-kohu7i\",\"data-framer-name\":\"Placeholder\",layoutDependency:layoutDependency,layoutId:\"kL5Dgcb7r\",style:{backgroundColor:\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-keqmlw\",layoutDependency:layoutDependency,layoutId:\"vrjxjZen0\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"min(350px, 100vw)\",...toResponsiveImage(EtaKyfd9t)},className:\"framer-138e9d3\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"wgDMywNkl\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-pnmhwi\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"tVQ68AJRa\",style:{backgroundColor:\"var(--token-a0f5989f-0074-4be6-95bb-d60f1b49cd1a, rgba(0, 0, 0, 0.54))\"}})]})}),lpPjxYSWW&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1sqs7pk\",\"data-framer-name\":\"Title + Content\",layoutDependency:layoutDependency,layoutId:\"E2q7TiVtG\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter-SemiBold\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgba(255, 255, 255, 0.9))\"},children:\"Title\"})}),className:\"framer-1pmrv9c\",\"data-framer-name\":\"Title\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"sLvXxMpsQ\",style:{\"--extracted-a0htzi\":\"rgba(255, 255, 255, 0.9)\",\"--framer-paragraph-spacing\":\"0px\"},text:hU3Mosp6d,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e321b03f-d732-43f9-bbf7-842b7ca11fae, rgb(255, 255, 255)))\"},children:\"Enter some content here\u2026\"})}),className:\"framer-1isu18k\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"xuYt7OBqT\",style:{\"--extracted-r6o4lv\":\"var(--token-e321b03f-d732-43f9-bbf7-842b7ca11fae, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},text:BNs6FJPJ6,verticalAlignment:\"top\",withExternalLayout:true})]})]})})});});const css=['.framer-x7txb[data-border=\"true\"]::after, .framer-x7txb [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-x7txb.framer-1hrh0za, .framer-x7txb .framer-1hrh0za { display: block; }\",\".framer-x7txb.framer-6jvgz0 { height: 240px; overflow: visible; position: relative; width: 350px; }\",\".framer-x7txb .framer-kohu7i, .framer-x7txb .framer-keqmlw { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-x7txb .framer-138e9d3, .framer-x7txb .framer-pnmhwi { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-x7txb .framer-1sqs7pk { align-content: flex-start; align-items: flex-start; bottom: 14px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-end; left: 14px; overflow: visible; padding: 0px 0px 0px 0px; position: absolute; right: 14px; }\",\".framer-x7txb .framer-1pmrv9c, .framer-x7txb .framer-1isu18k { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-x7txb .framer-1sqs7pk { gap: 0px; } .framer-x7txb .framer-1sqs7pk > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-x7txb .framer-1sqs7pk > :first-child { margin-top: 0px; } .framer-x7txb .framer-1sqs7pk > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 240\n * @framerIntrinsicWidth 350\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"EtaKyfd9t\":\"image\",\"lpPjxYSWW\":\"showTitleContent\",\"hU3Mosp6d\":\"title\",\"BNs6FJPJ6\":\"content\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const FramerdvOko2l95=withCSS(Component,css,\"framer-x7txb\");export default FramerdvOko2l95;FramerdvOko2l95.displayName=\"Card / Type #06\";FramerdvOko2l95.defaultProps={height:240,width:350};addPropertyControls(FramerdvOko2l95,{EtaKyfd9t:{__defaultAssetReference:\"data:framer/asset-reference,yctOjM0xlO1y3XS3UzMHbXbnJiE.jpg?originalFilename=Image.jpg&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},lpPjxYSWW:{defaultValue:true,title:\"Show Title + Content\",type:ControlType.Boolean},hU3Mosp6d:{defaultValue:\"Title\",displayTextArea:false,title:\"Title\",type:ControlType.String},BNs6FJPJ6:{defaultValue:\"Enter some content here\u2026\",displayTextArea:true,title:\"Content\",type:ControlType.String}});addFonts(FramerdvOko2l95,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerdvOko2l95\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"350\",\"framerIntrinsicHeight\":\"240\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"EtaKyfd9t\\\":\\\"image\\\",\\\"lpPjxYSWW\\\":\\\"showTitleContent\\\",\\\"hU3Mosp6d\\\":\\\"title\\\",\\\"BNs6FJPJ6\\\":\\\"content\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./dvOko2l95.map", "// Generated by Framer (a96673f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,Container,cx,GeneratedComponentContext,getFonts,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useHydratedBreakpointVariants,useLocaleInfo,useQueryData,useRouter,withCSS,withMappedReactProps}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import CMSCarousel from\"https://framerusercontent.com/modules/10ZCVSuzdwuiQbRxAa5d/pYey1GeHy7fuXqrpSOzM/CMSCarousel.js\";import TextMask from\"https://framerusercontent.com/modules/9N50PMbCaZNc8J76vXRL/zbPz4O3CnWxY2tjbhM7b/TextMask.js\";import TeasersVertical from\"#framer/local/canvasComponent/biDxPGSJD/biDxPGSJD.js\";import CardType06 from\"#framer/local/canvasComponent/dvOko2l95/dvOko2l95.js\";import ElementsCopyEmailButton from\"#framer/local/canvasComponent/F_L7de3UE/F_L7de3UE.js\";import NavMobileTopbar from\"#framer/local/canvasComponent/jrak6wtgF/jrak6wtgF.js\";import WidgetsThoughts from\"#framer/local/canvasComponent/K07APGzGV/K07APGzGV.js\";import ElementsButton from\"#framer/local/canvasComponent/L0qvKohpW/L0qvKohpW.js\";import NavSidebar,*as NavSidebarInfo from\"#framer/local/canvasComponent/lelsAkhJT/lelsAkhJT.js\";import SectionsFooter from\"#framer/local/canvasComponent/usuQLil1D/usuQLil1D.js\";import{withKeyboardShortcuts}from\"#framer/local/codeFile/Pr0vf3y/Shortcuts.js\";import{withSidebarSate}from\"#framer/local/codeFile/hFiqgGJ/Sidebar.js\";import Products from\"#framer/local/collection/CoOBKc03h/CoOBKc03h.js\";import Projects from\"#framer/local/collection/Q0zDvkWdL/Q0zDvkWdL.js\";import Music from\"#framer/local/collection/WvoLyxn8x/WvoLyxn8x.js\";import*as sharedStyle3 from\"#framer/local/css/aIUbH6Z4l/aIUbH6Z4l.js\";import*as sharedStyle2 from\"#framer/local/css/gT9NUyniF/gT9NUyniF.js\";import*as sharedStyle4 from\"#framer/local/css/Hgt5O7vkf/Hgt5O7vkf.js\";import*as sharedStyle1 from\"#framer/local/css/JsnqnOw1V/JsnqnOw1V.js\";import*as sharedStyle from\"#framer/local/css/Pl9q6Gpxi/Pl9q6Gpxi.js\";import metadataProvider from\"#framer/local/webPageMetadata/nf6MiwrGi/nf6MiwrGi.js\";const NavSidebarFonts=getFonts(NavSidebar);const NavSidebarWithSidebarSateWithMappedReactProps1a9koup=withMappedReactProps(withSidebarSate(NavSidebar),NavSidebarInfo);const TextMaskFonts=getFonts(TextMask);const ElementsButtonFonts=getFonts(ElementsButton);const ElementsCopyEmailButtonFonts=getFonts(ElementsCopyEmailButton);const TeasersVerticalFonts=getFonts(TeasersVertical);const CMSCarouselFonts=getFonts(CMSCarousel);const CardType06Fonts=getFonts(CardType06);const WidgetsThoughtsFonts=getFonts(WidgetsThoughts);const SectionsFooterFonts=getFonts(SectionsFooter);const NavMobileTopbarFonts=getFonts(NavMobileTopbar);const MotionDivWithKeyboardShortcuts=withKeyboardShortcuts(motion.div);const cycleOrder=[\"yffuFrYxT\",\"ysUL5Mzd9\",\"oO9OLaKT6\"];const breakpoints={oO9OLaKT6:\"(max-width: 809px)\",yffuFrYxT:\"(min-width: 1200px)\",ysUL5Mzd9:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-1Mq3K\";const variantClassNames={oO9OLaKT6:\"framer-v-1w8s424\",yffuFrYxT:\"framer-v-i9an2n\",ysUL5Mzd9:\"framer-v-kycfgl\"};const transitions={default:{duration:0}};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transition1={delay:0,duration:.3,ease:[.15,.45,.15,1.35],type:\"tween\"};const animation={opacity:1,rotate:0,scale:.98,transition:transition1};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,children})=>{const data=useQueryData(query);return children(data);};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"yffuFrYxT\",Phone:\"oO9OLaKT6\",Tablet:\"ysUL5Mzd9\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"yffuFrYxT\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,YdEmSUhYJxlZ82ER4R,z6yjE0MOYxlZ82ER4R,Yfahr3iSqxlZ82ER4R,idxlZ82ER4R,JpxeLxSkzhew3HENkr,HK2gBsVVJhew3HENkr,rMCKHllXwhew3HENkr,idhew3HENkr,Bu20mVHWluE4asDFdb,uZozBgAC5uE4asDFdb,JgCCkBcn3uE4asDFdb,NOqSapojluE4asDFdb,iduE4asDFdb,...restProps}=getProps(props);React.useLayoutEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}if(metadata1.bodyClassName){Array.from(document.body.classList).filter(c=>c.startsWith(\"framer-body-\")).map(c=>document.body.classList.remove(c));document.body.classList.add(`${metadata1.bodyClassName}-framer-1Mq3K`);return()=>{document.body.classList.remove(`${metadata1.bodyClassName}-framer-1Mq3K`);};}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const transition=transitions.default;const ref1=React.useRef(null);const isDisplayed=()=>{if([\"ysUL5Mzd9\",\"oO9OLaKT6\"].includes(baseVariant))return!isBrowser();return true;};const router=useRouter();const isDisplayed1=()=>{if([\"ysUL5Mzd9\",\"oO9OLaKT6\"].includes(baseVariant))return true;return!isBrowser();};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"yffuFrYxT\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(MotionDivWithKeyboardShortcuts,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-i9an2n\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1dezt08\",\"data-framer-name\":\"Site Wrap\",name:\"Site Wrap\",children:[isDisplayed()&&/*#__PURE__*/_jsx(Container,{className:\"framer-8sv4ld-container hidden-kycfgl hidden-1w8s424\",children:/*#__PURE__*/_jsx(NavSidebarWithSidebarSateWithMappedReactProps1a9koup,{height:\"100%\",id:\"NHNgfKJSh\",layoutId:\"NHNgfKJSh\",style:{height:\"100%\"},variant:\"DQvdsmelA\",width:\"100%\"})}),/*#__PURE__*/_jsxs(motion.main,{className:\"framer-5rvyyt\",\"data-framer-name\":\"Main\",name:\"Main\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17wltfk\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsx(motion.header,{className:\"framer-159ns1z\",\"data-framer-name\":\"Sections/Hero\",name:\"Sections/Hero\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-a0ptyd\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-w680qc\",children:[/*#__PURE__*/_jsx(Container,{className:\"framer-11em8u7-container\",children:/*#__PURE__*/_jsx(TextMask,{bgPosX:29,bgPosY:0,bgSize:200,bgSizeType:\"percentage\",font:{color:\"rgb(136, 136, 136)\",fontFamily:\"Recoleta\",fontSize:55,fontStyle:\"normal\",fontWeight:800,letterSpacing:0,lineHeight:1,lineHeightPixels:100,lineHeightType:true,textAlign:\"left\",whiteSpace:\"normal\"},height:\"100%\",id:\"QoWuoTfxE\",image:addImageAlt({src:\"https://framerusercontent.com/images/nZX0EiclPnRWH1eEvKvRSCbp4w.jpg?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/nZX0EiclPnRWH1eEvKvRSCbp4w.jpg?scale-down-to=512 512w, https://framerusercontent.com/images/nZX0EiclPnRWH1eEvKvRSCbp4w.jpg?scale-down-to=1024 1024w, https://framerusercontent.com/images/nZX0EiclPnRWH1eEvKvRSCbp4w.jpg?scale-down-to=2048 2048w, https://framerusercontent.com/images/nZX0EiclPnRWH1eEvKvRSCbp4w.jpg?scale-down-to=4096 4096w, https://framerusercontent.com/images/nZX0EiclPnRWH1eEvKvRSCbp4w.jpg 5280w\"},\"\"),layoutId:\"QoWuoTfxE\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,style:{width:\"100%\"},textContent:\"A Life in Music\",width:\"100%\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5a7lyo\",\"data-styles-preset\":\"Pl9q6Gpxi\",children:\"With over 50 years as a professional musician and over thirty years as a composer, Robert collaborates on musical projects across the world.\"})}),className:\"framer-1b8583h\",\"data-framer-name\":\"Lead\",name:\"Lead\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-kxkxd3\",\"data-framer-name\":\"Button Row\",name:\"Button Row\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"NkZ0gL2E7\"},implicitPathVariables:undefined},{href:{webPageId:\"NkZ0gL2E7\"},implicitPathVariables:undefined},{href:{webPageId:\"NkZ0gL2E7\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(Container,{className:\"framer-u940vp-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oO9OLaKT6:{DkFiE3wWu:resolvedLinks[2]},ysUL5Mzd9:{DkFiE3wWu:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(ElementsButton,{CmgatqKup:false,DkFiE3wWu:resolvedLinks[0],e2MnP4BE4:\"About\",height:\"100%\",id:\"hKCGQMEJi\",layoutId:\"hKCGQMEJi\",variant:\"HYl3Hr_Qz\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(Container,{className:\"framer-1398d8b-container\",children:/*#__PURE__*/_jsx(ElementsCopyEmailButton,{email:\"john@doe.design\",height:\"100%\",id:\"upnDsYVEs\",layoutId:\"upnDsYVEs\",variant:\"pqysqGYoo\",width:\"100%\"})})]})]}),/*#__PURE__*/_jsx(motion.div,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1326,intrinsicWidth:1470},className:\"framer-a6t23\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oO9OLaKT6:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:709,intrinsicWidth:600,pixelHeight:709,pixelWidth:600,sizes:\"calc(min(100vw, 960px) - 48px)\",src:\"https://framerusercontent.com/images/zm04xouctN4l4myDfZcd5L7lW8.webp\",srcSet:\"https://framerusercontent.com/images/zm04xouctN4l4myDfZcd5L7lW8.webp 600w\"}},ysUL5Mzd9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:709,intrinsicWidth:600,pixelHeight:709,pixelWidth:600,sizes:\"calc(min(100vw, 960px) - 96px)\",src:\"https://framerusercontent.com/images/zm04xouctN4l4myDfZcd5L7lW8.webp\",srcSet:\"https://framerusercontent.com/images/zm04xouctN4l4myDfZcd5L7lW8.webp 600w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:709,intrinsicWidth:600,pixelHeight:709,pixelWidth:600,src:\"https://framerusercontent.com/images/zm04xouctN4l4myDfZcd5L7lW8.webp\",srcSet:\"https://framerusercontent.com/images/zm04xouctN4l4myDfZcd5L7lW8.webp 600w\"},className:\"framer-193vilo\"})})})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1id0ect\",\"data-framer-name\":\"Tiles\",name:\"Tiles\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-l044tx\",\"data-border\":true,\"data-framer-name\":\"Teasers/Tile\",name:\"Teasers/Tile\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-buqn07\",\"data-framer-name\":\"Wrap\",name:\"Wrap\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-917hoe\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-442gwn\",\"data-framer-name\":\"Text\",name:\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-styles-preset-ngcl0k\",\"data-styles-preset\":\"JsnqnOw1V\",children:\"Composer\"})}),className:\"framer-1p6hhtb\",\"data-framer-name\":\"Title\",name:\"Title\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1jqjsz4\",\"data-styles-preset\":\"gT9NUyniF\",children:\"Along with a broad and diverse portfolio of compositions spanning classical, commercial and world music genres, he also boasts a growing catalogue of sort after production library music.\"})}),className:\"framer-y3njro\",\"data-framer-name\":\"Text\",name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true})]})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-8q5rlk\",\"data-border\":true,\"data-framer-name\":\"Teasers/Tile\",name:\"Teasers/Tile\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gggrqz\",\"data-framer-name\":\"Wrap\",name:\"Wrap\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1r1rmpi\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1bqwx2g\",\"data-framer-name\":\"Text\",name:\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-styles-preset-ngcl0k\",\"data-styles-preset\":\"JsnqnOw1V\",children:\"Performer\"})}),className:\"framer-t50idx\",\"data-framer-name\":\"Title\",name:\"Title\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1jqjsz4\",\"data-styles-preset\":\"gT9NUyniF\",children:\"Robert\u2019s extremely wide instrumental and musical genre experience enables him to be able to write arrange music for any combination of instruments from full orchestra and bands to solo performers in any style.\"})}),className:\"framer-jzqe0j\",\"data-framer-name\":\"Text\",name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true})]})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-si75jl\",\"data-border\":true,\"data-framer-name\":\"Teasers/Tile\",name:\"Teasers/Tile\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ddv3rx\",\"data-framer-name\":\"Wrap\",name:\"Wrap\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-10psdzz\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wfwmut\",\"data-framer-name\":\"Text\",name:\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-styles-preset-ngcl0k\",\"data-styles-preset\":\"JsnqnOw1V\",children:\"Supervisor\"})}),className:\"framer-gsfrqz\",\"data-framer-name\":\"Title\",name:\"Title\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1jqjsz4\",\"data-styles-preset\":\"gT9NUyniF\",children:\"Robert has extensively worked as an advisor in the theatre and film worlds and bring his experience and knowledge of ethnic, early, and other genres music with him to any project. \"})}),className:\"framer-qf2tqb\",\"data-framer-name\":\"Text\",name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true})]})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1t7a52z\",\"data-framer-name\":\"New Drops\",name:\"New Drops\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-ngcl0k\",\"data-styles-preset\":\"JsnqnOw1V\",children:\"Selected Projects\"})}),className:\"framer-17ixsvq\",\"data-framer-name\":\"New Drops\",name:\"New Drops\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Container,{className:\"framer-1st0czq-container\",children:/*#__PURE__*/_jsx(CMSCarousel,{align:\"center\",ariaLabel:\"Live Music\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:0,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:12,collectionList:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-19ysyte\",children:/*#__PURE__*/_jsx(QueryData,{query:{from:{data:Projects,type:\"Collection\"},limit:{type:\"LiteralValue\",value:10},select:[{name:\"YdEmSUhYJ\",type:\"Identifier\"},{name:\"z6yjE0MOY\",type:\"Identifier\"},{name:\"Yfahr3iSq\",type:\"Identifier\"},{name:\"id\",type:\"Identifier\"}]},children:collection=>collection.map(({YdEmSUhYJ:YdEmSUhYJxlZ82ER4R,z6yjE0MOY:z6yjE0MOYxlZ82ER4R,Yfahr3iSq:Yfahr3iSqxlZ82ER4R,id:idxlZ82ER4R},i)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`xlZ82ER4R-${idxlZ82ER4R}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{Yfahr3iSq:Yfahr3iSqxlZ82ER4R},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-191mxnf\",\"data-framer-name\":\"Card Effects\",name:\"Card Effects\",whileTap:animation,children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{Yfahr3iSq:Yfahr3iSqxlZ82ER4R},webPageId:\"bDaymgy2v\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(Container,{className:\"framer-j5ut8q-container\",children:/*#__PURE__*/_jsx(TeasersVertical,{FLPAsyfLS:z6yjE0MOYxlZ82ER4R,G7NCiH2l_:false,height:\"100%\",ibRymdeoD:\"\",id:\"IF3YUIABY\",IH9VcyUCm:false,layoutId:\"IF3YUIABY\",NofbRmaQC:resolvedLinks1[0],style:{width:\"100%\"},width:\"100%\",y2ZvO2sQx:\"\",zn6scTvs7:toResponsiveImage(YdEmSUhYJxlZ82ER4R)})})})})})},idxlZ82ER4R);})})})],endLayers:[],fadeObject:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeTransition:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:10,height:\"100%\",id:\"J_1KuudO3\",layoutId:\"J_1KuudO3\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:1,heightType:\"rows\",widthColumns:4,widthInset:0,widthType:\"auto\"},snapObject:{fluid:true,snap:true,snapEdge:\"start\"},startLayers:[],style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1f4xyv2\",\"data-framer-name\":\"New Drops\",name:\"New Drops\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jm4fk\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-ngcl0k\",\"data-styles-preset\":\"JsnqnOw1V\",children:\"Multi instrumentalist\"})}),className:\"framer-dfky4r\",\"data-framer-name\":\"New Drops\",name:\"New Drops\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-lnum96\",\"data-styles-preset\":\"aIUbH6Z4l\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":X7JArMMOH\",webPageId:\"nIvJzupXK\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-a7aho4\",\"data-styles-preset\":\"Hgt5O7vkf\",children:\"View all instruments\"})})})}),className:\"framer-1dgk6uu\",\"data-framer-name\":\"New Drops\",name:\"New Drops\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(Container,{className:\"framer-kvje04-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ysUL5Mzd9:{sizingObject:{heightInset:0,heightRows:1,heightType:\"auto\",widthColumns:4,widthInset:0,widthType:\"auto\"}}},children:/*#__PURE__*/_jsx(CMSCarousel,{align:\"center\",ariaLabel:\"Live Music\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:0,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:12,collectionList:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kdoydm\",\"data-framer-name\":\"Instruents\",name:\"Instruents\",children:/*#__PURE__*/_jsx(QueryData,{query:{from:{data:Music,type:\"Collection\"},limit:{type:\"LiteralValue\",value:10},select:[{name:\"JpxeLxSkz\",type:\"Identifier\"},{name:\"HK2gBsVVJ\",type:\"Identifier\"},{name:\"rMCKHllXw\",type:\"Identifier\"},{name:\"id\",type:\"Identifier\"}],where:{left:{left:{name:\"JgT5bN4X0\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"NmejbU8d4\"},type:\"BinaryOperation\"},operator:\"and\",right:{name:\"tMAXdQEQ6\",type:\"Identifier\"},type:\"BinaryOperation\"}},children:collection1=>collection1.map(({JpxeLxSkz:JpxeLxSkzhew3HENkr,HK2gBsVVJ:HK2gBsVVJhew3HENkr,rMCKHllXw:rMCKHllXwhew3HENkr,id:idhew3HENkr},i)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`hew3HENkr-${idhew3HENkr}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{rMCKHllXw:rMCKHllXwhew3HENkr},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-gpjtuk\",\"data-framer-name\":\"Card Effects\",name:\"Card Effects\",whileTap:animation,children:/*#__PURE__*/_jsx(Container,{className:\"framer-5sw7lk-container\",children:/*#__PURE__*/_jsx(CardType06,{BNs6FJPJ6:\"\",EtaKyfd9t:toResponsiveImage(JpxeLxSkzhew3HENkr),height:\"100%\",hU3Mosp6d:HK2gBsVVJhew3HENkr,id:\"FuM5jmlZs\",layoutId:\"FuM5jmlZs\",lpPjxYSWW:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})},idhew3HENkr);})})})],endLayers:[],fadeObject:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeTransition:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:10,height:\"100%\",id:\"NfPpCZP4v\",layoutId:\"NfPpCZP4v\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:0,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:1,heightType:\"rows\",widthColumns:4,widthInset:0,widthType:\"auto\"},snapObject:{fluid:true,snap:true,snapEdge:\"start\"},startLayers:[],style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-agx95k\",\"data-framer-name\":\"New Drops\",name:\"New Drops\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-ngcl0k\",\"data-styles-preset\":\"JsnqnOw1V\",children:\"Instruments for sale\"})}),className:\"framer-1sno1mt\",\"data-framer-name\":\"New Drops\",name:\"New Drops\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Container,{className:\"framer-1y37efx-container\",children:/*#__PURE__*/_jsx(CMSCarousel,{align:\"flex-start\",ariaLabel:\"Live Music\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:0,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:12,collectionList:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kib072\",\"data-framer-name\":\"products\",name:\"products\",children:/*#__PURE__*/_jsx(QueryData,{query:{from:{data:Products,type:\"Collection\"},limit:{type:\"LiteralValue\",value:10},select:[{name:\"Bu20mVHWl\",type:\"Identifier\"},{name:\"uZozBgAC5\",type:\"Identifier\"},{name:\"JgCCkBcn3\",type:\"Identifier\"},{name:\"NOqSapojl\",type:\"Identifier\"},{name:\"id\",type:\"Identifier\"}]},children:collection2=>collection2.map(({Bu20mVHWl:Bu20mVHWluE4asDFdb,uZozBgAC5:uZozBgAC5uE4asDFdb,JgCCkBcn3:JgCCkBcn3uE4asDFdb,NOqSapojl:NOqSapojluE4asDFdb,id:iduE4asDFdb},i)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`uE4asDFdb-${iduE4asDFdb}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{NOqSapojl:NOqSapojluE4asDFdb},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-lvioyr\",\"data-framer-name\":\"Card Effects\",name:\"Card Effects\",whileTap:animation,children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{NOqSapojl:NOqSapojluE4asDFdb},webPageId:\"usJpW96QP\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(Container,{className:\"framer-1xhquin-container\",children:/*#__PURE__*/_jsx(TeasersVertical,{FLPAsyfLS:uZozBgAC5uE4asDFdb,G7NCiH2l_:false,height:\"100%\",ibRymdeoD:\"\",id:\"ZFrmhKBwb\",IH9VcyUCm:true,layoutId:\"ZFrmhKBwb\",NofbRmaQC:resolvedLinks2[0],style:{width:\"100%\"},width:\"100%\",y2ZvO2sQx:JgCCkBcn3uE4asDFdb,zn6scTvs7:toResponsiveImage(Bu20mVHWluE4asDFdb)})})})})})},iduE4asDFdb);})})})],endLayers:[],fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:10,height:\"100%\",id:\"Kb9lbH2Ov\",layoutId:\"Kb9lbH2Ov\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:1,heightType:\"rows\",widthColumns:4,widthInset:0,widthType:\"auto\"},snapObject:{fluid:true,snap:true,snapEdge:\"start\"},startLayers:[],style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})]}),/*#__PURE__*/_jsx(Container,{className:\"framer-n85lq9-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oO9OLaKT6:{variant:\"vO1gb1GBa\"},ysUL5Mzd9:{variant:\"nep8saJzw\"}},children:/*#__PURE__*/_jsx(WidgetsThoughts,{height:\"100%\",id:\"MhTXxw28Z\",layoutId:\"MhTXxw28Z\",QmQbwoY8n:true,style:{width:\"100%\"},variant:\"DhhMjDmfL\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(Container,{className:\"framer-145kjtw-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oO9OLaKT6:{variant:\"BT_EPvxK6\"},ysUL5Mzd9:{variant:\"kLaQx9xex\"}},children:/*#__PURE__*/_jsx(SectionsFooter,{height:\"100%\",id:\"neQmtVLNx\",layoutId:\"neQmtVLNx\",style:{width:\"100%\"},variant:\"u11bDmhQ8\",width:\"100%\"})})})]})]}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oO9OLaKT6:{layoutScroll:true},ysUL5Mzd9:{layoutScroll:true}},children:/*#__PURE__*/_jsx(Container,{className:\"framer-1w3oqlp-container hidden-i9an2n\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oO9OLaKT6:{__framer__animateOnce:false,__framer__scrollDirection:{direction:\"down\",target:\"ZmgAAiiy8\"},__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,variant:\"YrSzun_HW\"},ysUL5Mzd9:{__framer__animateOnce:false,__framer__scrollDirection:{direction:\"down\",target:\"g9MSQOeIv\"},__framer__threshold:.5,__framer__variantAppearEffectEnabled:true}},children:/*#__PURE__*/_jsx(NavMobileTopbar,{height:\"100%\",id:\"YqGCDbZpj\",layoutId:\"YqGCDbZpj\",style:{width:\"100%\"},variant:\"XTUnPQIdT\",width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oO9OLaKT6:{transformTemplate:undefined},ysUL5Mzd9:{transformTemplate:undefined}},children:/*#__PURE__*/_jsx(Container,{className:\"framer-2r51g3-container hidden-i9an2n\",\"data-framer-name\":\"Mobile Navbar\",layoutScroll:true,name:\"Mobile Navbar\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oO9OLaKT6:{variant:\"mM0H4KPSp\"}},children:/*#__PURE__*/_jsx(NavSidebarWithSidebarSateWithMappedReactProps1a9koup,{height:\"100%\",id:\"O24AQaNLn\",layoutId:\"O24AQaNLn\",name:\"Mobile Navbar\",style:{width:\"100%\"},variant:\"r9mbw8KhI\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=['.framer-1Mq3K[data-border=\"true\"]::after, .framer-1Mq3K [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-1Mq3K { background: var(--token-cc944d59-d713-46c5-805a-36c4e8480b17, rgb(255, 255, 255)) /* {\"name\":\"Page\"} */; }`,\".framer-1Mq3K.framer-1o9x9wa, .framer-1Mq3K .framer-1o9x9wa { display: block; }\",\".framer-1Mq3K.framer-i9an2n { align-content: center; align-items: center; background-color: var(--token-cc944d59-d713-46c5-805a-36c4e8480b17, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1200px; }\",\".framer-1Mq3K .framer-1dezt08 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-1Mq3K .framer-8sv4ld-container { flex: none; height: 100vh; left: 0px; position: sticky; top: 0px; width: auto; will-change: transform; z-index: 10; }\",\".framer-1Mq3K .framer-5rvyyt { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 40px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-1Mq3K .framer-17wltfk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 960px; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-1Mq3K .framer-159ns1z { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 48px 48px 0px 48px; position: relative; width: 100%; }\",\".framer-1Mq3K .framer-a0ptyd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 442px; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-1Mq3K .framer-w680qc { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-1Mq3K .framer-11em8u7-container, .framer-1Mq3K .framer-n85lq9-container, .framer-1Mq3K .framer-145kjtw-container, .framer-1Mq3K .framer-1w3oqlp-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-1Mq3K .framer-1b8583h { -webkit-user-select: none; flex: none; height: auto; max-width: 560px; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-1Mq3K .framer-kxkxd3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 12px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-1Mq3K .framer-u940vp-container, .framer-1Mq3K .framer-1398d8b-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-1Mq3K .framer-a6t23 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-1Mq3K .framer-193vilo { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; height: 90%; position: relative; width: 87%; }\",\".framer-1Mq3K .framer-1id0ect { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 48px 48px 0px 48px; position: relative; width: 100%; }\",'.framer-1Mq3K .framer-l044tx { --border-bottom-width: 1px; --border-color: var(--token-1ae38199-cbce-439f-ab23-4f321f5e3f62, #242424) /* {\"name\":\"Border 1\"} */; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: var(--token-175e9f7e-9cf9-42cd-b522-52506cd7d635, #1c1c1c); border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }',\".framer-1Mq3K .framer-buqn07, .framer-1Mq3K .framer-1gggrqz, .framer-1Mq3K .framer-ddv3rx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 24px 24px 24px 24px; position: relative; width: 100%; }\",\".framer-1Mq3K .framer-917hoe, .framer-1Mq3K .framer-1r1rmpi, .framer-1Mq3K .framer-10psdzz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-1Mq3K .framer-442gwn, .framer-1Mq3K .framer-1bqwx2g, .framer-1Mq3K .framer-1wfwmut { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-1Mq3K .framer-1p6hhtb, .framer-1Mq3K .framer-t50idx, .framer-1Mq3K .framer-gsfrqz { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-1Mq3K .framer-y3njro, .framer-1Mq3K .framer-jzqe0j, .framer-1Mq3K .framer-qf2tqb { flex: none; height: auto; max-width: 320px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",'.framer-1Mq3K .framer-8q5rlk, .framer-1Mq3K .framer-si75jl { --border-bottom-width: 1px; --border-color: var(--token-1ae38199-cbce-439f-ab23-4f321f5e3f62, #242424) /* {\"name\":\"Border 1\"} */; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; align-self: stretch; background-color: var(--token-175e9f7e-9cf9-42cd-b522-52506cd7d635, #1c1c1c); border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: auto; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }',\".framer-1Mq3K .framer-1t7a52z, .framer-1Mq3K .framer-1f4xyv2, .framer-1Mq3K .framer-agx95k { align-content: flex-start; align-items: flex-start; background-color: var(--token-cc944d59-d713-46c5-805a-36c4e8480b17, #161616); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 48px 48px 0px 48px; position: relative; width: 100%; }\",\".framer-1Mq3K .framer-17ixsvq, .framer-1Mq3K .framer-dfky4r, .framer-1Mq3K .framer-1dgk6uu, .framer-1Mq3K .framer-1sno1mt { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-1Mq3K .framer-1st0czq-container, .framer-1Mq3K .framer-kvje04-container, .framer-1Mq3K .framer-1y37efx-container { flex: none; height: 200px; position: relative; width: 100%; }\",\".framer-1Mq3K .framer-19ysyte, .framer-1Mq3K .framer-1kdoydm, .framer-1Mq3K .framer-1kib072 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-1Mq3K .framer-191mxnf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 181px; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 200px; }\",\".framer-1Mq3K .framer-j5ut8q-container { flex: none; height: auto; position: relative; width: 200px; }\",\".framer-1Mq3K .framer-jm4fk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-1Mq3K .framer-gpjtuk { align-content: center; align-items: center; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 200px; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 200px; will-change: var(--framer-will-change-override, transform); }\",\".framer-1Mq3K .framer-5sw7lk-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-1Mq3K .framer-lvioyr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: auto; }\",\".framer-1Mq3K .framer-1xhquin-container { flex: none; height: auto; position: relative; width: 258px; }\",\".framer-1Mq3K .framer-2r51g3-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 97%; transform: translateY(-50%); z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-1Mq3K.framer-i9an2n, .framer-1Mq3K .framer-1dezt08, .framer-1Mq3K .framer-5rvyyt, .framer-1Mq3K .framer-17wltfk, .framer-1Mq3K .framer-159ns1z, .framer-1Mq3K .framer-a0ptyd, .framer-1Mq3K .framer-w680qc, .framer-1Mq3K .framer-kxkxd3, .framer-1Mq3K .framer-a6t23, .framer-1Mq3K .framer-1id0ect, .framer-1Mq3K .framer-l044tx, .framer-1Mq3K .framer-buqn07, .framer-1Mq3K .framer-917hoe, .framer-1Mq3K .framer-442gwn, .framer-1Mq3K .framer-8q5rlk, .framer-1Mq3K .framer-1gggrqz, .framer-1Mq3K .framer-1r1rmpi, .framer-1Mq3K .framer-1bqwx2g, .framer-1Mq3K .framer-si75jl, .framer-1Mq3K .framer-ddv3rx, .framer-1Mq3K .framer-10psdzz, .framer-1Mq3K .framer-1wfwmut, .framer-1Mq3K .framer-1t7a52z, .framer-1Mq3K .framer-19ysyte, .framer-1Mq3K .framer-191mxnf, .framer-1Mq3K .framer-1f4xyv2, .framer-1Mq3K .framer-1kdoydm, .framer-1Mq3K .framer-gpjtuk, .framer-1Mq3K .framer-agx95k, .framer-1Mq3K .framer-1kib072, .framer-1Mq3K .framer-lvioyr { gap: 0px; } .framer-1Mq3K.framer-i9an2n > *, .framer-1Mq3K .framer-w680qc > *, .framer-1Mq3K .framer-a6t23 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-1Mq3K.framer-i9an2n > :first-child, .framer-1Mq3K .framer-5rvyyt > :first-child, .framer-1Mq3K .framer-17wltfk > :first-child, .framer-1Mq3K .framer-159ns1z > :first-child, .framer-1Mq3K .framer-w680qc > :first-child, .framer-1Mq3K .framer-a6t23 > :first-child, .framer-1Mq3K .framer-l044tx > :first-child, .framer-1Mq3K .framer-buqn07 > :first-child, .framer-1Mq3K .framer-917hoe > :first-child, .framer-1Mq3K .framer-442gwn > :first-child, .framer-1Mq3K .framer-8q5rlk > :first-child, .framer-1Mq3K .framer-1gggrqz > :first-child, .framer-1Mq3K .framer-1r1rmpi > :first-child, .framer-1Mq3K .framer-1bqwx2g > :first-child, .framer-1Mq3K .framer-si75jl > :first-child, .framer-1Mq3K .framer-ddv3rx > :first-child, .framer-1Mq3K .framer-10psdzz > :first-child, .framer-1Mq3K .framer-1wfwmut > :first-child, .framer-1Mq3K .framer-1t7a52z > :first-child, .framer-1Mq3K .framer-1f4xyv2 > :first-child, .framer-1Mq3K .framer-agx95k > :first-child { margin-top: 0px; } .framer-1Mq3K.framer-i9an2n > :last-child, .framer-1Mq3K .framer-5rvyyt > :last-child, .framer-1Mq3K .framer-17wltfk > :last-child, .framer-1Mq3K .framer-159ns1z > :last-child, .framer-1Mq3K .framer-w680qc > :last-child, .framer-1Mq3K .framer-a6t23 > :last-child, .framer-1Mq3K .framer-l044tx > :last-child, .framer-1Mq3K .framer-buqn07 > :last-child, .framer-1Mq3K .framer-917hoe > :last-child, .framer-1Mq3K .framer-442gwn > :last-child, .framer-1Mq3K .framer-8q5rlk > :last-child, .framer-1Mq3K .framer-1gggrqz > :last-child, .framer-1Mq3K .framer-1r1rmpi > :last-child, .framer-1Mq3K .framer-1bqwx2g > :last-child, .framer-1Mq3K .framer-si75jl > :last-child, .framer-1Mq3K .framer-ddv3rx > :last-child, .framer-1Mq3K .framer-10psdzz > :last-child, .framer-1Mq3K .framer-1wfwmut > :last-child, .framer-1Mq3K .framer-1t7a52z > :last-child, .framer-1Mq3K .framer-1f4xyv2 > :last-child, .framer-1Mq3K .framer-agx95k > :last-child { margin-bottom: 0px; } .framer-1Mq3K .framer-1dezt08 > *, .framer-1Mq3K .framer-a0ptyd > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-1Mq3K .framer-1dezt08 > :first-child, .framer-1Mq3K .framer-a0ptyd > :first-child, .framer-1Mq3K .framer-kxkxd3 > :first-child, .framer-1Mq3K .framer-1id0ect > :first-child, .framer-1Mq3K .framer-19ysyte > :first-child, .framer-1Mq3K .framer-191mxnf > :first-child, .framer-1Mq3K .framer-1kdoydm > :first-child, .framer-1Mq3K .framer-gpjtuk > :first-child, .framer-1Mq3K .framer-1kib072 > :first-child, .framer-1Mq3K .framer-lvioyr > :first-child { margin-left: 0px; } .framer-1Mq3K .framer-1dezt08 > :last-child, .framer-1Mq3K .framer-a0ptyd > :last-child, .framer-1Mq3K .framer-kxkxd3 > :last-child, .framer-1Mq3K .framer-1id0ect > :last-child, .framer-1Mq3K .framer-19ysyte > :last-child, .framer-1Mq3K .framer-191mxnf > :last-child, .framer-1Mq3K .framer-1kdoydm > :last-child, .framer-1Mq3K .framer-gpjtuk > :last-child, .framer-1Mq3K .framer-1kib072 > :last-child, .framer-1Mq3K .framer-lvioyr > :last-child { margin-right: 0px; } .framer-1Mq3K .framer-5rvyyt > *, .framer-1Mq3K .framer-17wltfk > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-1Mq3K .framer-159ns1z > *, .framer-1Mq3K .framer-l044tx > *, .framer-1Mq3K .framer-8q5rlk > *, .framer-1Mq3K .framer-si75jl > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-1Mq3K .framer-kxkxd3 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-1Mq3K .framer-1id0ect > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } .framer-1Mq3K .framer-buqn07 > *, .framer-1Mq3K .framer-1gggrqz > *, .framer-1Mq3K .framer-ddv3rx > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-1Mq3K .framer-917hoe > *, .framer-1Mq3K .framer-1r1rmpi > *, .framer-1Mq3K .framer-10psdzz > *, .framer-1Mq3K .framer-1t7a52z > *, .framer-1Mq3K .framer-1f4xyv2 > *, .framer-1Mq3K .framer-agx95k > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-1Mq3K .framer-442gwn > *, .framer-1Mq3K .framer-1bqwx2g > *, .framer-1Mq3K .framer-1wfwmut > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-1Mq3K .framer-19ysyte > *, .framer-1Mq3K .framer-1kdoydm > *, .framer-1Mq3K .framer-1kib072 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-1Mq3K .framer-191mxnf > *, .framer-1Mq3K .framer-gpjtuk > *, .framer-1Mq3K .framer-lvioyr > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\"@media (min-width: 1200px) { .framer-1Mq3K .hidden-i9an2n { display: none !important; } }\",`@media (min-width: 810px) and (max-width: 1199px) { .framer-1Mq3K .hidden-kycfgl { display: none !important; } .${metadata.bodyClassName}-framer-1Mq3K { background: var(--token-cc944d59-d713-46c5-805a-36c4e8480b17, rgb(255, 255, 255)) /* {\"name\":\"Page\"} */; } .framer-1Mq3K.framer-i9an2n { width: 810px; } .framer-1Mq3K .framer-1dezt08 { flex-direction: column; order: 2; } .framer-1Mq3K .framer-5rvyyt { flex: none; order: 1; padding: 0px 0px 0px 0px; width: 100%; } .framer-1Mq3K .framer-159ns1z { padding: 140px 48px 48px 48px; } .framer-1Mq3K .framer-a0ptyd { flex-direction: column; height: 845px; } .framer-1Mq3K .framer-w680qc { flex: none; order: 1; width: 100%; } .framer-1Mq3K .framer-a6t23 { height: 1px; order: 0; width: 100%; } .framer-1Mq3K .framer-193vilo { order: 0; width: 100%; } .framer-1Mq3K .framer-1id0ect { gap: 20px; } .framer-1Mq3K .framer-8q5rlk, .framer-1Mq3K .framer-si75jl { align-self: unset; height: 404px; } .framer-1Mq3K .framer-1w3oqlp-container { left: 0px; order: 1; position: fixed; right: 0px; top: 0px; width: unset; z-index: 10; } .framer-1Mq3K .framer-2r51g3-container { bottom: 0px; order: 0; top: unset; transform: unset; z-index: 10; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-1Mq3K .framer-1dezt08, .framer-1Mq3K .framer-a0ptyd, .framer-1Mq3K .framer-1id0ect { gap: 0px; } .framer-1Mq3K .framer-1dezt08 > *, .framer-1Mq3K .framer-a0ptyd > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-1Mq3K .framer-1dezt08 > :first-child, .framer-1Mq3K .framer-a0ptyd > :first-child { margin-top: 0px; } .framer-1Mq3K .framer-1dezt08 > :last-child, .framer-1Mq3K .framer-a0ptyd > :last-child { margin-bottom: 0px; } .framer-1Mq3K .framer-1id0ect > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-1Mq3K .framer-1id0ect > :first-child { margin-left: 0px; } .framer-1Mq3K .framer-1id0ect > :last-child { margin-right: 0px; } }}`,`@media (max-width: 809px) { .framer-1Mq3K .hidden-1w8s424 { display: none !important; } .${metadata.bodyClassName}-framer-1Mq3K { background: var(--token-cc944d59-d713-46c5-805a-36c4e8480b17, rgb(255, 255, 255)) /* {\"name\":\"Page\"} */; } .framer-1Mq3K.framer-i9an2n { width: 390px; } .framer-1Mq3K .framer-1dezt08 { flex-direction: column; order: 2; } .framer-1Mq3K .framer-5rvyyt { flex: none; order: 1; padding: 0px 0px 0px 0px; width: 100%; } .framer-1Mq3K .framer-159ns1z { gap: 12px; padding: 120px 24px 48px 24px; } .framer-1Mq3K .framer-a0ptyd { flex-direction: column; gap: 19px; height: 577px; } .framer-1Mq3K .framer-w680qc { flex: none; order: 1; width: 100%; } .framer-1Mq3K .framer-a6t23 { height: 1px; order: 0; width: 100%; } .framer-1Mq3K .framer-193vilo { width: 100%; } .framer-1Mq3K .framer-1id0ect { flex-direction: column; gap: 24px; padding: 48px 24px 24px 24px; } .framer-1Mq3K .framer-l044tx { flex: none; width: 100%; } .framer-1Mq3K .framer-8q5rlk, .framer-1Mq3K .framer-si75jl { align-self: unset; flex: none; height: min-content; width: 100%; } .framer-1Mq3K .framer-1t7a52z, .framer-1Mq3K .framer-1f4xyv2, .framer-1Mq3K .framer-agx95k { padding: 24px 24px 24px 24px; } .framer-1Mq3K .framer-jm4fk { align-content: flex-start; align-items: flex-start; flex-direction: column; } .framer-1Mq3K .framer-1w3oqlp-container { left: 0px; order: 1; position: fixed; right: 0px; top: 0px; width: unset; z-index: 10; } .framer-1Mq3K .framer-2r51g3-container { bottom: 0px; order: 0; top: unset; transform: unset; z-index: 10; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-1Mq3K .framer-1dezt08, .framer-1Mq3K .framer-159ns1z, .framer-1Mq3K .framer-a0ptyd, .framer-1Mq3K .framer-1id0ect, .framer-1Mq3K .framer-jm4fk { gap: 0px; } .framer-1Mq3K .framer-1dezt08 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-1Mq3K .framer-1dezt08 > :first-child, .framer-1Mq3K .framer-159ns1z > :first-child, .framer-1Mq3K .framer-a0ptyd > :first-child, .framer-1Mq3K .framer-1id0ect > :first-child { margin-top: 0px; } .framer-1Mq3K .framer-1dezt08 > :last-child, .framer-1Mq3K .framer-159ns1z > :last-child, .framer-1Mq3K .framer-a0ptyd > :last-child, .framer-1Mq3K .framer-1id0ect > :last-child { margin-bottom: 0px; } .framer-1Mq3K .framer-159ns1z > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-1Mq3K .framer-a0ptyd > * { margin: 0px; margin-bottom: calc(19px / 2); margin-top: calc(19px / 2); } .framer-1Mq3K .framer-1id0ect > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-1Mq3K .framer-jm4fk > *, .framer-1Mq3K .framer-jm4fk > :first-child, .framer-1Mq3K .framer-jm4fk > :last-child { margin: 0px; } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 2591\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ysUL5Mzd9\":{\"layout\":[\"fixed\",\"auto\"]},\"oO9OLaKT6\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerResponsiveScreen\n */const Framernf6MiwrGi=withCSS(Component,css,\"framer-1Mq3K\");export default Framernf6MiwrGi;Framernf6MiwrGi.displayName=\"Home\";Framernf6MiwrGi.defaultProps={height:2591,width:1200};addFonts(Framernf6MiwrGi,[...NavSidebarFonts,...TextMaskFonts,...ElementsButtonFonts,...ElementsCopyEmailButtonFonts,...TeasersVerticalFonts,...CMSCarouselFonts,...CardType06Fonts,...WidgetsThoughtsFonts,...SectionsFooterFonts,...NavMobileTopbarFonts,...sharedStyle.fonts,...sharedStyle1.fonts,...sharedStyle2.fonts,...sharedStyle3.fonts,...sharedStyle4.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framernf6MiwrGi\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"2591\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ysUL5Mzd9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"oO9OLaKT6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerResponsiveScreen\":\"\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "ojDAA2H,IAAMA,GAAM,CAACC,EAAEC,EAAEC,IAAI,KAAK,IAAI,KAAK,IAAIA,EAAEF,CAAC,EAAEC,CAAC,ECIrK,SAASE,GAAc,CAACC,EAAMC,CAAK,EAAE,CAAC,OAAOD,GAAO,IAAIA,IAAQC,EAAM,KAAK,EAAG,CAG9E,SAASC,IAAY,CAAC,GAAK,CAACC,EAAcC,CAAgB,EAAEC,GAAS,EAAK,EAAE,OAAAC,GAAgB,IAAI,CAACC,GAAgB,IAAIH,EAAiBI,EAAO,WAAW,gBAAgB,EAAE,OAAO,CAAC,CAAE,EAAE,CAAC,CAAC,EAASL,CAAc,CAK/M,SAASM,GAAWC,EAASC,EAAO,CAAC,YAAAC,EAAY,UAAAC,EAAU,UAAAC,CAAS,EAAEC,EAAW,CAAIF,EAAU,SAASH,IAAWC,GAAQE,EAAU,QAAQ,GAAMG,GAAQJ,EAAY,EAAEG,CAAU,EAAED,EAAU,QAAQ,aAAa,WAAW,EAAE,GAAW,CAACD,EAAU,SAASH,IAAWC,IAAQE,EAAU,QAAQ,GAAKG,GAAQJ,EAAY,EAAEG,CAAU,EAAED,EAAU,QAAQ,gBAAgB,UAAU,EAAG,CAAC,SAASG,GAAOC,EAAiBC,EAAa,CAAC,IAAMN,EAAUO,EAAOF,CAAgB,EAAQN,EAAYS,GAAeR,EAAU,QAAQ,EAAE,CAAC,EAAQS,EAAYC,EAAaX,EAAY,CAAC,EAAE,CAAC,EAAE,CAACO,GAAc,EAAE,CAAC,CAAC,EAAQK,EAAcD,EAAaX,EAAYa,GAAG,EAAEA,CAAC,EAAQX,EAAUM,EAAO,IAAI,EAKxpBM,EAAcH,EAAaC,EAAcC,GAAGA,EAAE,GAAG,OAAO,MAAM,EAG9DE,EAAOJ,EAAaG,EAAcD,GAAGA,IAAI,OAAO,UAAU,SAAS,EAAQG,EAAY,CAAC,GAAGC,GAAiB,QAAQL,EAAc,cAAAE,EAAc,OAAAC,CAAM,EAAE,MAAM,CAAC,UAAAd,EAAU,YAAAS,EAAY,YAAAV,EAAY,YAAAgB,EAAY,UAAAd,CAAS,CAAE,CAAC,SAASgB,GAAe,CAAC,QAAAC,CAAO,EAAE,CAACA,EAAQ,aAAa,cAAc,EAAK,CAAE,CAAC,SAASC,GAAgBC,EAAUC,EAAKC,EAAWC,EAAoBC,EAAaC,EAAYC,EAAa,CAACC,GAAU,IAAI,CAAC,GAAG,CAACP,EAAU,QAAQ,OAIlT,IAAMQ,EAAWC,GAJ+TC,GAAM,CAACR,EAAW,QAAQQ,EAAKT,CAAI,EAItfS,EAAKT,CAAI,EAAE,UAAUG,EAAa,UAASA,EAAa,QAAQ,QAAWD,EAAoBO,EAAKT,CAAI,EAAE,OAAO,EAAEI,EAAY,CAAE,EAA2C,CAAC,UAAUL,EAAU,QAAQ,KAAAC,CAAI,CAAC,EAAQU,EAAWC,GAAOZ,EAAU,QAAQ,IAAI,CAACM,EAAa,EAAED,EAAY,CAAE,CAAC,EAAE,MAAM,IAAI,CAACG,EAAW,EAAEG,EAAW,CAAE,CAAE,EAAE,CAACN,EAAYC,CAAY,CAAC,CAAE,CASpW,SAARO,GAA0B,CAAC,MAAAC,EAAM,IAAAC,EAAI,KAAAd,EAAK,MAAAe,EAAM,aAAAC,EAAa,WAAAC,EAAW,YAAAC,EAAY,WAAAC,EAAW,eAAAC,EAAe,UAAAC,EAAU,aAAAC,EAAa,cAAAC,EAAc,GAAGC,CAAK,EAAE,CACvK,IAAMC,EAAcZ,EAAM,OAAO,OAAO,EAAQa,EAASC,GAAS,MAAMF,CAAa,EAAQG,EAASC,EAAa,QAAQ,IAAIA,EAAa,OAAaC,EAAQC,GAAWP,CAAK,EAAQQ,EAAUhC,EAAK,IAAI,IAAS,CAAC,YAAAiC,EAAY,UAAAC,EAAU,UAAAC,EAAU,eAAAC,EAAe,UAAAC,CAAS,EAAEpB,EAAgB,CAAC,KAAAqB,EAAK,SAAAC,EAAS,MAAAC,CAAK,EAAErB,EAAgB,CAAC,UAAAsB,GAAU,WAAAC,GAAW,aAAAC,GAAa,WAAAC,GAAW,YAAAC,GAAY,WAAAC,EAAU,EAAE9B,EAAkB,CAAC,cAAA+B,EAAc,iBAAAC,EAAiB,QAAAC,EAAQ,UAAAC,EAAU,WAAAC,EAAW,YAAAC,GAAY,QAAAC,GAAQ,SAAAC,GAAS,eAAAC,GAAe,kBAAAC,GAAkB,YAAAC,GAAY,SAAAC,EAAQ,EAAEtC,EAAoB,CAAC,kBAAAuC,GAAkB,UAAAC,EAAU,YAAAC,GAAY,UAAAC,GAAU,UAAAC,GAAU,WAAAC,GAAW,aAAAC,EAAY,EAAE/C,EAE5oBjB,EAAWf,EAAO,MAAS,EAG3BiB,GAAajB,EAAO,MAAS,EAI7BgF,GAAc/E,GAAe,CAAC,EAAQe,GAAoBiE,GAAW,CAACD,GAAc,IAAI/D,GAAa,UAAU,OAAUA,GAAa,QAAQgE,CAAS,CAAE,EAGzJlG,GAAcD,GAAW,EAEzBoG,GAAMrF,GAAO,GAAMsD,CAAS,EAAQgC,GAAItF,GAAO,GAAKsD,CAAS,EAAQiC,GAAenF,GAAegD,EAAU,EAAE,EAAQoC,GAAalF,EAAaiF,GAAe/E,GAAG,IAAIA,CAAC,EAAQiF,GAAUrF,GAAe+C,CAAS,EAAQuC,GAAepF,EAAa,CAACiF,GAAeE,EAAS,EAAE3G,EAAa,EAAQ6G,GAAarF,EAAaoF,GAAelF,GAAG,IAAIA,CAAC,EAAQoF,GAAUxF,GAAea,EAAK,QAAQ,QAAQ,EAAQ4E,GAAKvF,EAAa,CAACsF,GAAUP,GAAM,YAAYE,GAAeG,GAAeJ,GAAI,YAAYE,GAAaG,EAAY,EAAEG,GAAe,sBAAsBA,EAAO,CAAC,mBAAmBA,EAAO,CAAC,MAAMA,EAAO,CAAC,uBAAuBA,EAAO,CAAC,wBAAwBA,EAAO,CAAC,oBAAoBA,EAAO,CAAC,MAAMA,EAAO,CAAC,KAAO,EAAQC,GAAY5F,EAAO,IAAI,EAEnvB,CAAC6F,EAASC,EAAW,EAAE7G,GAASyD,EAAS,EAAE,CAAC,EAE3CqD,EAAU,CAAC,gBAAgB1C,EAAS,WAAW,CAAC,EAAQ2C,EAAW,CAAC,EAAKnE,IAAQ,YAAcf,GAAMkF,EAAW,OAAO,OAAOD,EAAU,OAAO,SAAaC,EAAW,MAAM,OAAOD,EAAU,MAAM,SAAazC,IAAOyC,EAAU,eAAe,UAAaxC,KAAY,WAAWwC,EAAU,MAAM,eAAevC,IAAY,OAAOwC,EAAW,MAAM,QAAgBzC,KAAY,YAAWwC,EAAU,MAAM,QAAQ,IAAItC,SAAmB7B,SAAWA,EAAI6B,QAAkBuC,EAAW,MAAM,QAAWtC,KAAa,WAAWqC,EAAU,OAAO,eAAepC,IAAa,OAAOqC,EAAW,OAAO,QAAgBtC,KAAa,SAAQqC,EAAU,OAAO,QAAQ,IAAInC,SAAiBhC,SAAWA,EAAIgC,QAAgBoC,EAAW,OAAO,QAAQ,IAAMC,GAAevD,EAAS,SAAS,OAAawD,GAAe,CAAC,GAAGC,GAAmB,QAAAvD,CAAO,EAAQwD,GAAc,CAAC,GAAGC,GAAkB,IAAAzE,EAAI,WAAWC,EAAM,cAAcf,EAAK,MAAM,SAAS,UAAUA,EAAKmF,GAAe,SAAS,UAAUnF,EAAK,SAASmF,GAAe,eAAe7C,EAAK,GAAGN,cAAsB,OAAU,wBAAwB,QAAQ,gBAAgBC,EAAY2C,GAAK,OAAU,aAAa3C,EAAY2C,GAAK,OAAU,UAAU3C,EAAY2C,GAAK,OAAU,aAAAtD,CAAY,EAAQkE,GAAa,CAAC,CAAC,sBAAsB,EAAE,UAAU,EAAKnE,IAAWmE,GAAa,YAAY,EAAEnE,GAAW,IAAMoE,GAAS,CAAC,EAAgG,GAA3F1E,IAAQ,YAAW0E,GAAS,WAAW,EAAE,QAAQA,GAAS,sBAAsB,EAAE,SAAY,CAAC7D,EAAS,CAAC,IAAM8D,EAAUxG,EAAO,CAAC,CAAC,EAAEY,GAAgBgF,GAAY9C,EAAU/B,EAAWC,GAAoBC,GAAawF,GAAY,IAAI,CAAC,GAAG,CAAC1F,EAAW,QAAQ,OAAO,GAAK,CAAC,aAAA2F,EAAa,gBAAAC,EAAgB,aAAAC,EAAY,EAAE7F,EAAW,QAAc8F,GAAQ7B,GAAc,IAAI,EAAE,GAAG,CAAC0B,GAAc,CAACC,EAAgB,OAAO,GAAGD,EAAaC,EAAgB,CAACtH,GAAWwH,GAAQ,EAAE3B,GAAMhC,CAAc,EAAE7D,GAAWwH,GAAQD,GAAazB,GAAIjC,CAAc,EAAE,QAAQ4D,GAAE,EAAEA,GAAEN,EAAU,QAAQ,OAAOM,KAAI,CAAC,GAAK,CAAC,QAAAnG,GAAQ,MAAAuE,GAAM,IAAAC,EAAG,EAAEqB,EAAU,QAAQM,EAAC,EAAK3B,GAAI0B,IAAS3B,GAAM2B,GAAQF,EAAiBhG,GAAQ,aAAa,cAAc,EAAI,EAAQA,GAAQ,aAAa,cAAc,EAAK,QAAUtB,GAAW,EAAE,EAAE6F,GAAMhC,CAAc,EAAE7D,GAAW,EAAE,EAAE8F,GAAIjC,CAAc,EAAEsD,EAAU,QAAQ,QAAQ9F,EAAc,EAO/qE,IAAIqG,GAAY,KAAK,KAAKL,EAAaC,CAAe,EAAM,MAAMI,EAAW,IAC7FA,GAAYvE,EAAS,MAAIuE,GAAYvE,GAAYuE,KAAclB,GAASC,GAAYiB,EAAW,EAAG,EAAE,CAAClB,CAAQ,CAAC,EAAEY,GAAY,IAAI,CAAKb,GAAY,UAAeY,EAAU,QAAQ,MAAM,KAAKZ,GAAY,QAAQ,QAAQ,EAAE,IAAIjF,GAAiBG,EAAK,CAAC,QAAAH,EAAQ,MAAMA,EAAQ,WAAW,IAAIA,EAAQ,WAAWA,EAAQ,WAAW,EAAE,CAAC,QAAAA,EAAQ,MAAMA,EAAQ,UAAU,IAAIA,EAAQ,UAAUA,EAAQ,YAAY,CAAG,EAAE,EAAE,CAAC,CAAC,CAAC,EAIjZ+B,IAAUtB,GAAU,IAAI,CAACkE,GAAU,IAAItC,CAAS,CAAE,EAAE,CAACA,CAAS,CAAC,EAAE5B,GAAU,IAAI,CAACgE,GAAe,IAAInC,EAAU,EAAE,CAAE,EAAE,CAACA,CAAS,CAAC,EAAE7B,GAAU,IAAI,CAACqE,GAAU,IAAI3E,EAAK,QAAQ,QAAQ,CAAE,EAAE,CAACA,CAAI,CAAC,GAmC/L,IAAMkG,GAAgBC,GAAiB,EAAQC,GAAKC,GAAU,CAAClG,GAAa,QAAQkG,EAAS,IAAMC,EAAQtG,EAAK,CAAC,KAAKqG,CAAQ,EAAE,CAAC,IAAIA,CAAQ,EAAEvB,GAAY,QAAQ,SAAS,CAAC,GAAGwB,EAAQ,SAASJ,GAAgB,OAAO,QAAQ,CAAC,CAAE,EAAQK,GAAS,CAACC,EAAKC,IAAa,CAAC,GAAG,CAACxG,EAAW,QAAQ,OAAO,GAAK,CAAC,aAAA6F,CAAY,EAAE7F,EAAW,QAAcyG,GAASZ,GAAcf,EAAS,GAAGqB,GAAKI,EAAKE,GAASD,EAAWC,EAAQ,CAAE,EAAQC,GAAUC,GAAO,IAAI,CAAC,GAAG,CAAC3G,EAAW,QAAQ,OAAO,GAAK,CAAC,gBAAA4F,EAAgB,aAAAC,CAAY,EAAE7F,EAAW,QAAc8F,GAAQ7B,GAAc,IAAI,EAAQ2C,GAAWf,EAAaf,EAAe+B,GAAYC,GAAM,EAAEhC,EAAS,EAAE,KAAK,MAAMgB,GAAQc,EAAU,CAAC,EAAMJ,GAAW,EAAKnE,IAAOC,IAAW,SAASA,IAAW,QAAQqE,GAAO,IAAEH,GAAW,IACvvBF,GAASO,GAAYF,EAAMH,EAAU,CAAE,EAErC,GAAG/E,IAAW,EAAG,OAAoBsF,EAAKC,GAAY,CAAC,CAAC,EAAG,IAAMC,GAAK,CAAC,EAAQC,GAAc,CAAC,EAAE,GAAGpC,EAAS,GAAG/B,GAAkB,CAACD,EAAc,CAAC,QAAQiD,EAAE,EAAEA,EAAEjB,EAASiB,IAAI,CAAC,IAAMoB,EAAWxF,GAAU,CAACoE,GAAG,GAAMkB,GAAK,KAAkBF,EAAKK,GAAI,CAAC,SAAS,CAAC,GAAGC,GAAS,MAAMrE,EAAQ,OAAOA,EAAQ,gBAAgBK,EAAQ,EAAE,YAAY3D,GAAiB,WAAWyH,EAAW,gBAAgB5D,GAAkB,QAAQC,GAAY,QAAQ,IAAI8C,GAASP,CAAC,EAAE,cAAc9B,GAAc,WAAWjE,EAAW,MAAM8E,EAAS,MAAMiB,EAAE,IAAI3C,GAAQ,QAAQD,GAAY,KAAKpD,CAAI,CAAC,CAAC,EAAM0D,KAAUyD,GAAc,eAAeA,GAAc,qBAAqBA,GAAc,kBAAkB,QAAQzD,SAAgB,OAAoB,EAAM,UAAU,CAAC,MAAM0B,GAAe,GAAGI,GAAa,SAAS,CAAcwB,EAAKO,EAAO,GAAG,CAAC,IAAIzC,GAAY,MAAMQ,GAAc,UAAU,mBAAmB,sBAAsBvC,EAAc,cAAc,QAAQ,YAAY,SAAS,QAAQ,IAAI5C,GAAa,QAAQ,OAAU,SAASwB,GAAS,IAAIF,EAAc,CAAC+F,EAAMC,IAAQ,CAAC,IAAIC,EAAa,OAAoBV,EAAK,KAAK,CAAC,MAAM/B,EAAU,GAAGQ,GAAS,aAAa,GAAGgC,EAAM,QAAQ/F,IAAW,SAAsBiG,GAAaH,EAAM,CAAC,GAAGA,EAAM,MAAM,MAAM,CAAC,IAAIE,EAAaF,EAAM,SAAS,MAAME,IAAe,OAAO,OAAOA,EAAa,MAAM,GAAGxC,CAAU,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,CAAC,CAAC,EAAe,EAAM,WAAW,CAAC,MAAM,CAAC,GAAG0C,GAAe,QAAQ3D,GAAa,QAAQ,OAAO,cAAcjE,EAAK,MAAM,QAAQ,EAAE,aAAa,+BAA+B,UAAU,4BAA4B,2BAA2B2D,GAAkB,SAAS,CAAcqD,EAAKO,EAAO,OAAO,CAAC,IAAInD,GAAM,UAAU,KAAK,SAAS,MAAM,CAAC,GAAGA,GAAM,YAAY,gBAAgBN,GAAU,MAAMF,EAAU,OAAOA,EAAU,aAAaC,GAAY,OAAQ7D,EAAQ,EAAH,GAAK,QAAQ2D,GAAkB,QAAQ,MAAM,EAAE,QAAQgD,GAAU,EAAE,EAAE,aAAa,WAAW,SAAS,CAAC,MAAM,EAAE,EAAE,WAAW,CAAC,SAAS,GAAG,EAAE,SAAsBK,EAAK,MAAM,CAAC,SAAS,QAAQ,IAAI,GAAG,MAAMpD,EAAU,OAAOA,EAAU,IAAIG,IAAW,qEAAqE,CAAC,CAAC,CAAC,EAAeiD,EAAKO,EAAO,OAAO,CAAC,IAAIlD,GAAI,UAAU,KAAK,SAAS,MAAM,CAAC,GAAGA,GAAI,YAAY,gBAAgBP,GAAU,MAAMF,EAAU,OAAOA,EAAU,aAAaC,GAAY,OAAQ7D,EAAQ,EAAH,GAAK,QAAQ2D,GAAkB,QAAQ,MAAM,EAAE,QAAQgD,GAAU,CAAC,EAAE,aAAa,OAAO,SAAS,CAAC,MAAM,EAAE,EAAE,WAAW,CAAC,SAAS,GAAG,EAAE,SAAsBK,EAAK,MAAM,CAAC,SAAS,QAAQ,IAAI,GAAG,MAAMpD,EAAU,OAAOA,EAAU,IAAII,IAAY,qEAAqE,CAAC,CAAC,CAAC,EAAEkD,GAAK,OAAO,EAAeF,EAAK,MAAM,CAAC,MAAM,CAAC,GAAGa,GAAmB,KAAK7H,EAAK,MAAMkD,EAAU,IAAKlD,EAAW,QAAN,MAAc,UAAUA,EAAK,mBAAmB,mBAAmB,cAAcA,EAAK,MAAM,SAAS,OAAOA,EAAKkD,EAAU,QAAQ,aAAaC,EAAW,gBAAgBI,GAAe,GAAG4D,EAAa,EAAE,SAASD,EAAI,CAAC,EAAE,IAAI,CAAC,CAAC,EAAeF,EAAKc,GAAY,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAyBlH,GAAS,aAAa,CAAC,IAAI,GAAG,QAAQ,GAAG,eAAe,CAAC,cAAc,GAAM,iBAAiB,EAAK,EAAE,aAAa,CAAC,UAAU,OAAO,YAAY,EAAE,aAAa,EAAE,WAAW,OAAO,aAAa,EAAE,WAAW,CAAC,EAAE,aAAa,CAAC,EAAyBmH,EAAoBnH,GAAS,CAAC,MAAM,CAAC,KAAKoH,EAAY,MAAM,MAAM,WAAW,QAAQ,CAAC,KAAKA,EAAY,iBAAiB,CAAC,EAAE,KAAK,CAAC,KAAKA,EAAY,KAAK,MAAM,YAAY,QAAQ,CAAC,GAAK,EAAK,EAAE,YAAY,CAAC,uBAAuB,oBAAoB,EAAE,wBAAwB,EAAI,EAAE,MAAM,CAAC,KAAKA,EAAY,KAAK,MAAM,QAAQ,QAAQ,CAAC,aAAa,SAAS,UAAU,EAAE,YAAY,CAAC,KAAK,CAAC,KAAK,CAAC,YAAY,eAAe,cAAc,EAAE,MAAM,CAAC,aAAa,eAAe,aAAa,CAAC,CAAC,EAAE,aAAa,SAAS,wBAAwB,EAAI,EAAE,IAAI,CAAC,KAAKA,EAAY,OAAO,MAAM,KAAK,EAAE,GAAGC,GAAe,aAAa,CAAC,KAAKD,EAAY,OAAO,MAAM,SAAS,SAAS,CAAC,UAAU,CAAC,KAAKA,EAAY,KAAK,MAAM,QAAQ,QAAQ,CAAC,OAAO,UAAU,SAAS,EAAE,aAAa,CAAC,OAAO,UAAU,SAAS,EAAE,aAAa,MAAM,EAAE,WAAW,CAAC,KAAKA,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,IAAI,aAAa,EAAE,OAAOxG,GAAOA,EAAM,YAAY,SAAS,EAAE,aAAa,CAAC,KAAKwG,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,GAAG,aAAa,EAAE,eAAe,GAAK,OAAOxG,GAAOA,EAAM,YAAY,SAAS,EAAE,WAAW,CAAC,KAAKwG,EAAY,KAAK,MAAM,SAAS,QAAQ,CAAC,OAAO,UAAU,MAAM,EAAE,aAAa,CAAC,OAAO,UAAU,MAAM,EAAE,aAAa,MAAM,EAAE,YAAY,CAAC,KAAKA,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,IAAI,aAAa,EAAE,OAAOxG,GAAOA,EAAM,aAAa,SAAS,EAAE,WAAW,CAAC,KAAKwG,EAAY,OAAO,MAAM,OAAO,IAAI,EAAE,IAAI,GAAG,aAAa,EAAE,eAAe,GAAK,OAAOxG,GAAOA,EAAM,aAAa,MAAM,CAAC,CAAC,EAAE,WAAW,CAAC,KAAKwG,EAAY,OAAO,MAAM,WAAW,SAAS,CAAC,KAAK,CAAC,KAAKA,EAAY,QAAQ,MAAM,QAAQ,EAAE,SAAS,CAAC,KAAKA,EAAY,KAAK,MAAM,OAAO,QAAQ,CAAC,QAAQ,SAAS,KAAK,EAAE,aAAa,CAAC,OAAO,SAAS,OAAO,EAAE,aAAa,SAAS,OAAOxG,GAAO,CAACA,EAAM,IAAI,EAAE,MAAM,CAAC,KAAKwG,EAAY,QAAQ,MAAM,QAAQ,aAAa,GAAM,OAAOxG,GAAO,CAACA,EAAM,IAAI,CAAC,CAAC,EAAE,WAAW,CAAC,KAAKwG,EAAY,OAAO,MAAM,SAAS,SAAS,CAAC,YAAY,CAAC,KAAKA,EAAY,QAAQ,MAAM,SAAS,aAAa,EAAK,EAAE,UAAU,CAAC,KAAKA,EAAY,OAAO,MAAM,QAAQ,aAAa,GAAG,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAOxG,GAAO,CAACA,EAAM,WAAW,EAAE,UAAU,CAAC,KAAKwG,EAAY,OAAO,MAAM,QAAQ,aAAa,EAAE,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAOxG,GAAO,CAACA,EAAM,WAAW,EAAE,UAAU,CAAC,KAAKwG,EAAY,OAAO,MAAM,UAAU,OAAOxG,GAAO,CAACA,EAAM,YAAY,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,aAAa,CAAC,EAAE,eAAe,CAAC,KAAKwG,EAAY,WAAW,MAAM,aAAa,OAAOxG,GAAO,CAACA,EAAM,WAAW,CAAC,CAAC,EAAE,eAAe,CAAC,KAAKwG,EAAY,OAAO,MAAM,WAAW,SAAS,CAAC,cAAc,CAAC,KAAKA,EAAY,QAAQ,MAAM,aAAa,aAAa,EAAK,EAAE,iBAAiB,CAAC,KAAKA,EAAY,QAAQ,MAAM,OAAO,aAAa,GAAM,OAAOxG,GAAOA,EAAM,aAAa,EAAE,QAAQ,CAAC,KAAKwG,EAAY,OAAO,MAAM,OAAO,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAOxG,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,UAAU,CAAC,KAAKwG,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAOxG,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,QAAQ,CAAC,KAAKwG,EAAY,OAAO,MAAM,MAAM,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAOxG,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,YAAY,CAAC,KAAKwG,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAOxG,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,SAAS,CAAC,KAAKwG,EAAY,MAAM,MAAM,OAAO,aAAa,OAAO,OAAOxG,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,eAAe,CAAC,KAAKwG,EAAY,MAAM,MAAM,WAAW,aAAa,kBAAkB,OAAOxG,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,WAAW,CAAC,KAAKwG,EAAY,OAAO,MAAM,SAAS,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,OAAOxG,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,YAAY,CAAC,KAAKwG,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,EAAE,aAAa,GAAG,KAAK,GAAG,eAAe,GAAK,OAAOxG,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,kBAAkB,CAAC,KAAKwG,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,EAAE,aAAa,EAAE,KAAK,GAAG,eAAe,GAAK,OAAOxG,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,SAAS,CAAC,KAAKwG,EAAY,OAAO,MAAM,OAAO,IAAI,EAAE,IAAI,GAAG,aAAa,EAAE,KAAK,EAAE,OAAOxG,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,CAAC,CAAC,EAAE,YAAY,CAAC,KAAKwG,EAAY,OAAO,MAAM,SAAS,SAAS,CAAC,kBAAkB,CAAC,KAAKA,EAAY,QAAQ,MAAM,OAAO,aAAa,EAAI,EAAE,UAAU,CAAC,KAAKA,EAAY,MAAM,MAAM,OAAO,aAAa,kBAAkB,OAAOxG,GAAO,CAACA,EAAM,iBAAiB,EAAE,UAAU,CAAC,KAAKwG,EAAY,MAAM,MAAM,WAAW,OAAOxG,GAAO,CAACA,EAAM,iBAAiB,EAAE,WAAW,CAAC,KAAKwG,EAAY,MAAM,MAAM,OAAO,OAAOxG,GAAO,CAACA,EAAM,iBAAiB,EAAE,UAAU,CAAC,KAAKwG,EAAY,OAAO,MAAM,OAAO,IAAI,EAAE,IAAI,IAAI,eAAe,GAAK,aAAa,GAAG,OAAOxG,GAAO,CAACA,EAAM,iBAAiB,EAAE,YAAY,CAAC,KAAKwG,EAAY,OAAO,MAAM,SAAS,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,OAAOxG,GAAO,CAACA,EAAM,iBAAiB,EAAE,aAAa,CAAC,KAAKwG,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAOxG,GAAO,CAACA,EAAM,iBAAiB,CAAC,CAAC,EAAE,UAAU,CAAC,KAAKwG,EAAY,OAAO,MAAM,aAAa,YAAY,WAAW,EAAE,aAAa,CAAC,KAAKA,EAAY,OAAO,MAAM,SAAS,IAAI,EAAE,IAAI,IAAI,eAAe,GAAK,aAAa,CAAC,CAAC,CAAC,EAAE,SAASX,GAAI,CAAC,cAAAnD,EAAc,WAAAjE,EAAW,WAAAmH,EAAW,gBAAAc,EAAgB,QAAQC,EAAkB,MAAAC,EAAM,MAAAX,EAAM,SAAAH,EAAS,YAAA5H,EAAY,IAAAoB,EAAI,QAAAgB,EAAQ,KAAA9B,EAAK,GAAGwB,CAAK,EAAE,CAAC,IAAM6G,EAAQhJ,EAAa6E,EAAc3E,GAAG,CAAC,IAAI+I,EAAoBC,EAAqB,GAAG,EAAG,GAAAD,EAAoBrI,EAAW,WAAW,MAAMqI,IAAsB,SAAcA,EAAoB,cAAe,OAAOb,IAAQ,EAAES,EAAgBC,EAAmB,IAAMtB,IAAa0B,EAAqBtI,EAAW,WAAW,MAAMsI,IAAuB,OAAO,OAAOA,EAAqB,cAAcH,EAAYI,EAAU3B,EAAWY,EAAYgB,EAAUD,EAAU3B,EAAsF,OAA1DtH,GAAGiJ,IAAYf,EAAMW,EAAM,EAAE7I,EAAEkJ,EAAUhB,IAAQW,EAAM,GAAqBF,EAAgBC,CAAkB,CAAC,EAAQO,EAAc5H,EAAI,EAAM6H,EAAI,CAAC3I,GAAMyH,EAAM,EAAEiB,EAAc5G,EAAY8G,EAAO,CAAC5I,GAAMyH,IAAQW,EAAM,EAAEM,EAAc5G,EAAY+G,EAAM7I,GAAMyH,IAAQW,EAAM,EAAEM,EAAc5G,EAAYgH,EAAK9I,GAAMyH,EAAM,EAAEiB,EAAc5G,EAAQ,OAAoBkF,EAAK,SAAS,CAAC,aAAa,kBAAkBS,EAAM,IAAI,KAAK,SAAS,GAAGjG,EAAM,MAAM,CAAC,GAAG9B,EAAY,QAAQ,GAAGiJ,OAASE,OAAWD,OAAYE,KAAQ,EAAE,SAAsB9B,EAAKO,EAAO,IAAI,CAAC,MAAM,CAAC,GAAGD,EAAS,QAAAe,CAAO,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,SAASpB,IAAa,CAAC,OAAoB,EAAM,UAAU,CAAC,MAAM8B,GAAkB,SAAS,CAAc/B,EAAK,MAAM,CAAC,MAAMgC,GAAY,SAAS,QAAG,CAAC,EAAehC,EAAK,IAAI,CAAC,MAAMiC,GAAY,SAAS,oBAAoB,CAAC,EAAejC,EAAK,IAAI,CAAC,MAAMkC,GAAe,SAAS,4CAA4C,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,SAASpB,IAAa,CAAC,OAAoBd,EAAK,MAAM,CAAC,wBAAwB,CAAC,OAAO;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,sBAgBl7T,CAAC,CAAC,CAAE,CAAa,IAAM+B,GAAkB,CAAC,QAAQ,OAAO,MAAM,OAAO,OAAO,OAAO,aAAa,SAAS,WAAW,SAAS,cAAc,SAAS,MAAM,OAAO,WAAW,0BAA0B,SAAS,GAAG,SAAS,SAAS,QAAQ,qBAAqB,EAAQC,GAAY,CAAC,SAAS,GAAG,aAAa,EAAE,EAAQC,GAAY,CAAC,OAAO,EAAE,aAAa,GAAG,WAAW,IAAI,UAAU,QAAQ,EAAQC,GAAe,CAAC,OAAO,EAAE,QAAQ,GAAG,SAAS,IAAI,WAAW,IAAI,UAAU,QAAQ,EAE9e,IAAMC,GAAmB,CAAC,QAAQ,OAAO,SAAS,SAAS,MAAM,OAAO,OAAO,OAAO,SAAS,UAAU,EAAQC,GAAkB,CAAC,QAAQ,EAAE,OAAO,EAAE,UAAU,OAAO,SAAS,WAAW,QAAQ,OAAO,KAAK,WAAW,MAAM,OAAO,OAAO,MAAM,EAAQC,GAAiB,CAAC,OAAO,OAAO,QAAQ,OAAO,aAAa,SAAS,WAAW,SAAS,SAAS,SAAS,WAAW,cAAc,OAAO,UAAU,OAAO,EAAE,QAAQ,CAAC,EAAQC,GAAe,CAAC,QAAQ,OAAO,eAAe,gBAAgB,WAAW,SAAS,SAAS,WAAW,IAAI,EAAE,KAAK,EAAE,MAAM,EAAE,OAAO,EAAE,cAAc,OAAO,OAAO,EAAE,QAAQ,EAAE,OAAO,CAAC,EAE1lBC,GAAmB,CAAC,QAAQ,OAAO,aAAa,SAAS,WAAW,SAAS,SAAS,SAAS,SAAS,WAAW,cAAc,MAAM,EAAQC,GAAS,CAAC,aAAa,MAAM,WAAW,QAAQ,OAAO,UAAU,OAAO,OAAO,aAAa,SAAS,WAAW,SAAS,QAAQ,CAAC,ECpHxQ,SAARC,GAA8BC,EAAM,CAAC,GAAK,CAAC,eAAAC,EAAe,YAAAC,EAAY,UAAAC,EAAU,MAAAC,EAAM,GAAGC,CAAU,EAAEL,EAAYM,EAASC,EAAa,QAAQ,IAAIA,EAAa,OAAaC,EAAiBC,GAA0BR,EAAeK,CAAQ,EAAMI,EAAO,CAAC,EAAqD,GAAhDR,IAAaQ,EAAOA,EAAO,OAAOR,CAAW,GAAOI,EAA0S,QAAQK,EAAE,EAAEA,EAAEX,EAAM,WAAWW,IAAKD,EAAO,KAAkBE,EAAKC,GAAkB,CAAC,MAAM,wCAAwC,SAAS,uKAAuK,CAAC,CAAC,MAArlB,SAAQF,EAAE,EAAEA,EAAEH,EAAiB,OAAOG,IAAI,CAAC,IAAMG,EAAmBC,GAAaP,EAAiBG,CAAC,EAAE,MAAM,SAAS,MAAM,SAAS,CAAC,MAAM,CAAC,MAAM,OAAO,OAAO,MAAM,CAAC,CAAC,EAAED,EAAO,KAAkBK,GAAaX,EAAM,CAAC,EAAE,CAAC,MAAM,CAAC,MAAM,OAAO,OAAO,MAAM,EAAE,UAAU,MAAS,EAAEU,CAAK,CAAC,EAAkU,OAAGX,IAAWO,EAAOA,EAAO,OAAOP,CAAS,GAAuBS,EAAKI,GAAU,CAAC,GAAGX,EAAW,MAAMK,CAAM,CAAC,CAAE,CAACX,GAAa,YAAY,gBAAgBkB,EAAoBlB,GAAa,CAAC,eAAe,CAAC,KAAKmB,EAAY,iBAAiB,EAAE,YAAY,CAAC,KAAKA,EAAY,MAAM,QAAQ,CAAC,KAAKA,EAAY,iBAAiB,EAAE,MAAM,OAAO,EAAE,UAAU,CAAC,KAAKA,EAAY,MAAM,QAAQ,CAAC,KAAKA,EAAY,iBAAiB,EAAE,MAAM,KAAK,EAAE,MAAM,CAAC,KAAKA,EAAY,iBAAiB,EAAE,GAAGC,GAAkBH,EAAS,CAAC,CAAC,EAAE,SAASG,GAAkBC,EAAU,CAAC,GAAK,CAAC,MAAAC,EAAM,GAAGhB,CAAU,EAAEiB,GAAoBF,CAAS,EAAE,OAAOf,CAAW,CAAQ,SAASI,GAA0BR,EAAeK,EAAS,CAAC,IAAMiB,EAA8DtB,IAAe,CAAC,EAAE,OAAGsB,GAAS,CAACjB,EAAiBiB,EAAQ,MAAM,SAAS,KAAK,CAAC,MAAMA,EAAQ,MAAM,SAAS,MAAM,MAAM,SAASA,EAAQ,MAAM,SAAS,MAAM,QAAQ,CAAC,EAAS,CAAC,CAAE,CAAQ,SAASV,GAAkB,CAAC,MAAAW,EAAM,SAAAC,CAAQ,EAAE,CAAC,OAAoB,EAAM,MAAM,CAAC,MAAM,CAAC,QAAQ,OAAO,MAAM,OAAO,OAAO,OAAO,aAAa,SAAS,WAAW,SAAS,cAAc,SAAS,gBAAgB,0BAA0B,aAAa,EAAE,OAAO,+BAA+B,MAAM,oBAAoB,SAAS,GAAG,QAAQ,EAAE,EAAE,SAAS,CAAcb,EAAK,IAAI,CAAC,MAAM,CAAC,OAAO,EAAE,aAAa,GAAG,WAAW,IAAI,UAAU,QAAQ,EAAE,SAASY,CAAK,CAAC,EAAeZ,EAAK,IAAI,CAAC,MAAM,CAAC,OAAO,EAAE,QAAQ,GAAG,SAAS,IAAI,WAAW,IAAI,UAAU,QAAQ,EAAE,SAASa,CAAQ,CAAC,CAAC,CAAC,CAAC,CAAE,CCA53E,SAARC,EAA6BC,EAAM,CAAC,GAAK,CAAC,eAAAC,EAAe,YAAAC,EAAY,UAAAC,EAAU,GAAGC,CAAU,EAAEJ,EAAYK,EAASC,EAAa,QAAQ,IAAIA,EAAa,OAAaC,EAAiBC,GAA0BP,EAAeI,CAAQ,EAAMI,EAAO,CAAC,EAAqD,GAAhDP,IAAaO,EAAOA,EAAO,OAAOP,CAAW,GAAOG,EAA0H,CAAC,IAAIK,EAAM,EAAKV,EAAM,KACtcA,EAAM,aAAa,WAAW,YAAWU,EAAMV,EAAM,aAAa,cAClEA,EAAM,aAAa,YAAY,YAAWU,EAAMV,EAAM,aAAa,eAAgB,QAAQW,EAAE,EAAEA,EAAED,EAAMC,IAAKF,EAAO,KAAkBG,EAAKC,GAAkB,CAAC,MAAM,uCAAuC,SAAS,sKAAsK,CAAC,CAAC,MAF3D,SAAQF,EAAE,EAAEA,EAAEJ,EAAiB,OAAOI,IAAKF,EAAO,KAAKF,EAAiBI,CAAC,EAAE,MAAM,SAAS,MAAM,QAAQ,EAEzC,OAAGR,IAAWM,EAAOA,EAAO,OAAON,CAAS,GAAuBS,EAAKE,GAAS,CAAC,GAAGV,EAAW,MAAMK,CAAM,CAAC,CAAE,CAACV,EAAY,YAAY,eAAegB,EAAoBhB,EAAY,CAAC,eAAe,CAAC,KAAKiB,EAAY,iBAAiB,EAAE,YAAY,CAAC,KAAKA,EAAY,MAAM,QAAQ,CAAC,KAAKA,EAAY,iBAAiB,EAAE,MAAM,OAAO,EAAE,UAAU,CAAC,KAAKA,EAAY,MAAM,QAAQ,CAAC,KAAKA,EAAY,iBAAiB,EAAE,MAAM,KAAK,EAAE,GAAGC,GAAkBH,EAAQ,CAAC,CAAC,EAAE,SAASG,GAAkBC,EAAU,CAAC,GAAK,CAAC,MAAAC,EAAM,GAAGf,CAAU,EAAEgB,GAAoBF,CAAS,EAAE,OAAOd,CAAW,CCG16B,SAARiB,GAA0BC,EAAM,CAAC,GAAK,CAAC,YAAAC,EAAY,MAAAC,EAAM,WAAAC,EAAW,OAAAC,EAAO,OAAAC,EAAO,OAAAC,EAAO,KAAAC,EAAK,QAAAC,EAAQ,eAAAC,EAAe,WAAAC,EAAW,aAAAC,EAAa,cAAAC,EAAc,YAAAC,CAAW,EAAEb,EAAW,CAAC,MAAAc,EAAM,SAAAC,EAAS,WAAAC,EAAW,WAAAC,EAAW,UAAAC,EAAU,UAAAC,EAAU,cAAAC,EAAc,WAAAC,EAAW,WAAAC,EAAW,iBAAAC,EAAiB,eAAAC,CAAc,EAAEjB,EAAWkB,EAAoBzB,EAAM,aAAa,SAASA,EAAM,aAAa,UAAUG,EAAW,GAAGC,KAAgBsB,GAAajB,EAAe,GAAGC,OAAgBC,OAAkBC,OAAmBC,MAAgB,GAAGL,MAAY,OAAqBmB,EAAK,KAAK,CAAC,MAAM,CAAC,gBAAgBzB,GAAO,OAAOA,EAAM,OAAO,eAAeuB,EAAoB,iBAAiB,YAAY,mBAAmB,GAAGpB,MAAWC,KAAU,eAAeJ,GAAO,OAAO,qBAAqBA,GAAO,OAAO,oBAAoBA,GAAO,cAAc,cAAcA,GAAO,cAAc,MAAAY,EAAM,SAAAC,EAAS,WAAW,IAAIC,iBAA0B,UAAAE,EAAU,WAAAD,EAAW,UAAAE,EAAU,cAAAC,EAAc,WAAAC,EAAW,WAAWG,EAAeF,EAAW,GAAGC,MAAqB,OAAO,EAAE,QAAQG,EAAY,EAAE,SAASzB,CAAW,CAAC,CAAE,CAA2BF,GAAS,aAAa,CAAC,YAAY,QAAQ,OAAO,IAAI,OAAO,EAAE,OAAO,EAAE,KAAK,CAAC,SAAS,IAAI,WAAW,EAAE,eAAe,EAAI,CAAC,EAAEA,GAAS,YAAY,YAAoC6B,EAAoB7B,GAAS,CAAC,YAAY,CAAC,KAAK8B,EAAY,OAAO,MAAM,OAAO,aAAa,OAAO,EAAE,MAAM,CAAC,KAAKA,EAAY,gBAAgB,MAAM,OAAO,EAAE,WAAW,CAAC,KAAKA,EAAY,KAAK,QAAQ,CAAC,QAAQ,UAAU,YAAY,EAAE,aAAa,CAAC,QAAQ,UAAU,YAAY,EAAE,MAAM,aAAa,aAAa,OAAO,EAAE,OAAO,CAAC,KAAKA,EAAY,OAAO,IAAI,EAAE,IAAI,IAAI,aAAa,IAAI,KAAK,IAAI,MAAM,OAAO,OAAO7B,GAAOA,EAAM,aAAa,SAASA,EAAM,aAAa,SAAS,EAAE,OAAO,CAAC,KAAK6B,EAAY,OAAO,IAAI,EAAE,IAAI,IAAI,aAAa,EAAE,KAAK,IAAI,MAAM,UAAU,EAAE,OAAO,CAAC,KAAKA,EAAY,OAAO,IAAI,EAAE,IAAI,IAAI,aAAa,EAAE,KAAK,IAAI,MAAM,UAAU,EAAE,KAAK,CAAC,KAAKA,EAAY,OAAO,SAAS,CAAC,MAAM,CAAC,KAAKA,EAAY,MAAM,aAAa,MAAM,EAAE,SAAS,CAAC,KAAKA,EAAY,OAAO,MAAM,OAAO,IAAI,EAAE,eAAe,GAAK,KAAK,EAAE,aAAa,GAAG,EAAE,WAAW,CAAC,KAAKA,EAAY,OAAO,MAAM,OAAO,aAAa,OAAO,EAAE,WAAW,CAAC,KAAKA,EAAY,KAAK,MAAM,SAAS,QAAQ,CAAC,IAAI,IAAI,IAAI,IAAI,IAAI,IAAI,IAAI,IAAI,GAAG,EAAE,aAAa,GAAG,EAAE,UAAU,CAAC,KAAKA,EAAY,KAAK,MAAM,QAAQ,QAAQ,CAAC,SAAS,SAAS,SAAS,EAAE,aAAa,CAAC,SAAS,SAAS,SAAS,EAAE,aAAa,QAAQ,EAAE,UAAU,CAAC,KAAKA,EAAY,KAAK,wBAAwB,GAAK,MAAM,QAAQ,QAAQ,CAAC,OAAO,SAAS,OAAO,EAAE,aAAa,CAAC,OAAO,SAAS,OAAO,EAAE,aAAa,QAAQ,EAAE,WAAW,CAAC,KAAKA,EAAY,KAAK,MAAM,QAAQ,QAAQ,CAAC,SAAS,SAAS,MAAM,WAAW,UAAU,cAAe,EAAE,aAAa,CAAC,SAAS,UAAU,MAAM,WAAW,UAAU,cAAe,EAAE,aAAa,QAAQ,EAAE,cAAc,CAAC,KAAKA,EAAY,OAAO,MAAM,SAAS,IAAI,KAAK,IAAI,IAAI,eAAe,GAAK,KAAK,GAAG,aAAa,CAAC,EAAE,WAAW,CAAC,KAAKA,EAAY,OAAO,MAAM,OAAO,IAAI,KAAK,IAAI,IAAI,eAAe,GAAK,KAAK,GAAG,aAAa,EAAE,OAAO7B,GAAO,CAACA,EAAM,cAAc,EAAE,iBAAiB,CAAC,KAAK6B,EAAY,OAAO,MAAM,OAAO,IAAI,KAAK,IAAI,IAAI,eAAe,GAAK,KAAK,GAAG,aAAa,IAAI,OAAO7B,GAAOA,EAAM,cAAc,EAAE,eAAe,CAAC,KAAK6B,EAAY,QAAQ,MAAM,IAAI,aAAa,KAAK,cAAc,KAAK,aAAa,EAAI,CAAC,CAAC,EAAE,QAAQ,CAAC,MAAM,UAAU,KAAKA,EAAY,YAAY,UAAU,iBAAiB,aAAa,CAAC,UAAU,kBAAkB,EAAE,aAAa,EAAE,UAAU,CAAC,aAAa,eAAe,gBAAgB,aAAc,EAAE,YAAY,CAAC,IAAI,IAAI,IAAI,GAAG,EAAE,IAAI,CAAC,CAAC,CAAC,ECV1xG,IAAMC,GAAW,CAAC,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,iBAAiB,EAAkO,IAAMC,GAAY,CAAC,QAAQ,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,CAAC,EAAQC,GAAkBC,GAAW,OAAOA,GAAQ,UAAUA,IAAQ,MAAM,OAAOA,EAAM,KAAM,SAAiBA,EAAc,OAAOA,GAAQ,SAAS,CAAC,IAAIA,CAAK,EAAE,OAAkBC,GAAW,CAAC,CAAC,MAAAD,EAAM,SAAAE,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,EAAmB,EAAQC,EAAWN,GAAmCG,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,GAAS,CAAC,CAAC,QAAAC,EAAQ,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,iBAAAC,EAAiB,MAAAC,EAAM,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAKC,EAAMC,EAAMC,EAAM,MAAM,CAAC,GAAGJ,EAAM,WAAWC,EAAKR,GAAyCO,EAAM,aAAa,MAAMC,IAAO,OAAOA,EAAK,gCAA2B,WAAWC,EAAMN,GAAmCI,EAAM,aAAa,MAAME,IAAQ,OAAOA,EAAM,CAAC,IAAI,yFAAyF,OAAO,uWAAuW,EAAE,WAAWC,EAAML,GAAmCE,EAAM,aAAa,MAAMG,IAAQ,OAAOA,EAAM,QAAQ,WAAWC,EAAMP,GAAoEG,EAAM,aAAa,MAAMI,IAAQ,OAAOA,EAAM,EAAI,CAAE,EAAQC,GAAuB,CAACL,EAAMM,IAAWA,EAAS,KAAK,GAAG,EAAEN,EAAM,iBAAuBO,GAA6BC,GAAW,SAASR,EAAMS,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAE7B,GAASQ,CAAK,EAAO,CAAC,YAAAsB,EAAY,WAAAC,EAAW,eAAAC,EAAe,gBAAAC,EAAgB,WAAAC,EAAW,WAAAtC,EAAW,SAAAkB,CAAQ,EAAEqB,GAAgB,CAAC,WAAAC,GAAW,eAAe,YAAY,YAAAhD,GAAY,QAAAoC,EAAQ,kBAAAa,EAAiB,CAAC,EAAQC,EAAiBzB,GAAuBL,EAAMM,CAAQ,EAAQyB,EAAWC,GAAoB,EAAQC,EAAeC,GAAY,IAAIlB,CAAO,EAAQmB,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,GAAM,EAAQC,EAAsB,CAAC,EAAE,OAAoBhD,EAAKiD,GAAY,CAAC,GAAGzB,GAA4CsB,EAAgB,SAAsB9C,EAAKR,GAAW,CAAC,MAAMK,EAAW,SAAsB,EAAMqD,EAAO,IAAI,CAAC,GAAGpB,EAAU,QAAQf,EAAS,UAAUoC,GAAGC,GAAkB,GAAGJ,EAAsB,gBAAgBzB,EAAUS,CAAU,EAAE,mBAAmB,YAAY,QAAQQ,EAAWf,EAAQiB,EAAe,iBAAiBH,EAAiB,SAAS,YAAY,WAAW,IAAIL,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,aAAa,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,MAAM,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,YAAY,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,WAAW,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,IAAIhB,GAA6B0B,EAAK,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,gHAAgH,GAAGtB,CAAK,EAAE,SAAS,CAActB,EAAKkD,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,cAAc,iBAAiBX,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,oBAAoB,EAAE,SAAsB,EAAMW,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBX,EAAiB,SAAS,YAAY,SAAS,CAAcvC,EAAKqD,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,oBAAoB,GAAG/D,GAAkBoC,CAAS,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,iBAAiBa,EAAiB,SAAS,WAAW,CAAC,EAAevC,EAAKkD,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,iBAAiBX,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wEAAwE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEZ,GAAwB,EAAMuB,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,kBAAkB,iBAAiBX,EAAiB,SAAS,YAAY,SAAS,CAAcvC,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAAsBtD,EAAWuD,EAAS,CAAC,SAAsBvD,EAAKkD,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,6DAA6D,uBAAuB,MAAM,0BAA0B,MAAM,uBAAuB,OAAO,sBAAsB,mDAAmD,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,MAAM,CAAC,gBAAgB,EAAE,iBAAiBX,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,2BAA2B,6BAA6B,KAAK,EAAE,KAAKX,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe5B,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAAsBtD,EAAWuD,EAAS,CAAC,SAAsBvD,EAAKkD,EAAO,EAAE,CAAC,MAAM,CAAC,qBAAqB,OAAO,0BAA0B,MAAM,uBAAuB,OAAO,sBAAsB,gGAAgG,EAAE,SAAS,+BAA0B,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,UAAU,iBAAiBX,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,6BAA6B,KAAK,EAAE,KAAKV,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQ2B,GAAI,CAAC,gcAAgc,kFAAkF,kFAAkF,sGAAsG,kKAAkK,gJAAgJ,gUAAgU,oMAAoM,gXAAgX,EAQ5sQC,GAAgBC,GAAQ1C,GAAUwC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,kBAAkBA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAG,EAAEG,EAAoBH,GAAgB,CAAC,UAAU,CAAC,wBAAwB,4GAA4G,MAAM,QAAQ,KAAKI,EAAY,eAAe,EAAE,UAAU,CAAC,aAAa,GAAK,MAAM,uBAAuB,KAAKA,EAAY,OAAO,EAAE,UAAU,CAAC,aAAa,QAAQ,gBAAgB,GAAM,MAAM,QAAQ,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,gCAA2B,gBAAgB,GAAK,MAAM,UAAU,KAAKA,EAAY,MAAM,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,ECRmzC,IAAMM,GAAgBC,EAASC,EAAU,EAAQC,GAAqDC,GAAqBC,GAAgBH,EAAU,EAAEI,EAAc,EAAQC,GAAcN,EAASO,EAAQ,EAAQC,GAAoBR,EAASS,EAAc,EAAQC,GAA6BV,EAASW,EAAuB,EAAQC,GAAqBZ,EAASa,EAAe,EAAQC,GAAiBd,EAASe,CAAW,EAAQC,GAAgBhB,EAASiB,EAAU,EAAQC,GAAqBlB,EAASmB,EAAe,EAAQC,GAAoBpB,EAASqB,EAAc,EAAQC,GAAqBtB,EAASuB,EAAe,EAAQC,GAA+BC,GAAsBC,EAAO,GAAG,EAAyD,IAAMC,GAAY,CAAC,UAAU,qBAAqB,UAAU,sBAAsB,UAAU,4CAA4C,EAAQC,GAAU,IAAI,OAAO,SAAW,IAAkBC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,iBAAiB,EAAQC,GAAY,CAAC,QAAQ,CAAC,SAAS,CAAC,CAAC,EAAQC,GAAY,CAACC,EAAMC,IAAM,CAAC,GAAG,GAACD,GAAO,OAAOA,GAAQ,UAAkB,MAAM,CAAC,GAAGA,EAAM,IAAAC,CAAG,CAAE,EAAQC,GAAY,CAAC,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,IAAI,IAAI,IAAI,EAAE,KAAK,OAAO,EAAQC,GAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,MAAM,IAAI,WAAWD,EAAW,EAAQE,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,CAAQ,IAAI,CAAC,IAAMC,EAAKC,GAAaH,CAAK,EAAE,OAAOC,EAASC,CAAI,CAAE,EAAQE,GAAmB,CAACC,EAAEC,IAAI,oBAAoBA,IAAUC,GAASA,GAAiB,EAAQC,GAAwB,CAAC,QAAQ,YAAY,MAAM,YAAY,OAAO,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAuCC,EAAK,MAAM,CAAC,GAAGF,EAAM,SAASE,GAAMD,EAAuCN,GAAwBK,EAAM,OAAO,KAAK,MAAMC,IAAyC,OAAOA,EAAuCD,EAAM,WAAW,MAAME,IAAO,OAAOA,EAAK,WAAW,CAAE,EAAQC,GAA6BC,GAAW,SAASJ,EAAMK,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,mBAAAC,EAAmB,mBAAAC,EAAmB,mBAAAC,EAAmB,YAAAC,EAAY,mBAAAC,EAAmB,mBAAAC,EAAmB,mBAAAC,EAAmB,YAAAC,EAAY,mBAAAC,EAAmB,mBAAAC,EAAmB,mBAAAC,EAAmB,mBAAAC,EAAmB,YAAAC,EAAY,GAAGC,CAAS,EAAE9B,GAASI,CAAK,EAAQ2B,GAAgB,IAAI,CAAC,IAAMC,EAAUlC,GAAiB,OAAUY,CAAY,EAAqC,GAAnC,SAAS,MAAMsB,EAAU,OAAO,GAAMA,EAAU,SAAS,CAAC,IAAIC,GAAyBA,EAAwB,SAAS,cAAc,uBAAuB,KAAK,MAAMA,IAA0B,QAAcA,EAAwB,aAAa,UAAUD,EAAU,QAAQ,EAAG,GAAGA,EAAU,cAAe,aAAM,KAAK,SAAS,KAAK,SAAS,EAAE,OAAOE,GAAGA,EAAE,WAAW,cAAc,CAAC,EAAE,IAAIA,GAAG,SAAS,KAAK,UAAU,OAAOA,CAAC,CAAC,EAAE,SAAS,KAAK,UAAU,IAAI,GAAGF,EAAU,4BAA4B,EAAQ,IAAI,CAAC,SAAS,KAAK,UAAU,OAAO,GAAGA,EAAU,4BAA4B,CAAE,CAAG,EAAE,CAAC,OAAUtB,CAAY,CAAC,EAAE,GAAK,CAACyB,EAAYC,CAAmB,EAAEC,GAA8BrB,EAAQtC,GAAY,EAAK,EAAQ4D,EAAe,OAAgBC,EAAWzD,GAAY,QAAc0D,GAAWC,EAAO,IAAI,EAAQC,GAAY,IAAQ,CAAC,YAAY,WAAW,EAAE,SAASP,CAAW,EAAQ,CAACxD,GAAU,EAAS,GAAagE,GAAOC,GAAU,EAAQC,GAAa,IAAQ,CAAC,YAAY,WAAW,EAAE,SAASV,CAAW,EAAS,GAAW,CAACxD,GAAU,EAAUmE,GAAsBC,GAAM,EAAQC,GAAsB,CAAalC,GAAuBA,GAAuBA,GAAuBA,GAAuBA,EAAS,EAAE,OAAoBmC,EAAKC,GAA0B,SAAS,CAAC,MAAM,CAAC,iBAAiB,YAAY,kBAAArE,EAAiB,EAAE,SAAsB,EAAMsE,GAAY,CAAC,GAAGpC,GAA4C+B,GAAgB,SAAS,CAAc,EAAMM,GAA+B,CAAC,GAAGtB,EAAU,UAAUuB,GAAGzE,GAAkB,GAAGoE,GAAsB,gBAAgBlC,CAAS,EAAE,IAAIL,GAA6B+B,GAAK,MAAM,CAAC,GAAG3B,CAAK,EAAE,SAAS,CAAc,EAAMyC,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,KAAK,YAAY,SAAS,CAACZ,GAAY,GAAgBO,EAAKM,EAAU,CAAC,UAAU,uDAAuD,SAAsBN,EAAKO,GAAqD,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,EAAe,EAAMF,EAAO,KAAK,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,KAAK,OAAO,SAAS,CAAc,EAAMA,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,KAAK,YAAY,SAAS,CAAcL,EAAKK,EAAO,OAAO,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,KAAK,gBAAgB,SAAsB,EAAMA,EAAO,IAAI,CAAC,UAAU,gBAAgB,SAAS,CAAc,EAAMA,EAAO,IAAI,CAAC,UAAU,gBAAgB,SAAS,CAAcL,EAAKM,EAAU,CAAC,UAAU,2BAA2B,SAAsBN,EAAKQ,GAAS,CAAC,OAAO,GAAG,OAAO,EAAE,OAAO,IAAI,WAAW,aAAa,KAAK,CAAC,MAAM,qBAAqB,WAAW,WAAW,SAAS,GAAG,UAAU,SAAS,WAAW,IAAI,cAAc,EAAE,WAAW,EAAE,iBAAiB,IAAI,eAAe,GAAK,UAAU,OAAO,WAAW,QAAQ,EAAE,OAAO,OAAO,GAAG,YAAY,MAAM1E,GAAY,CAAC,IAAI,yFAAyF,OAAO,icAAic,EAAE,EAAE,EAAE,SAAS,YAAY,QAAQ,EAAE,cAAc,EAAE,YAAY,EAAE,eAAe,GAAM,aAAa,EAAE,WAAW,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,YAAY,kBAAkB,MAAM,MAAM,CAAC,CAAC,CAAC,EAAekE,EAAKS,EAAS,CAAC,sBAAsB,GAAK,SAAsBT,EAAWU,EAAS,CAAC,SAAsBV,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,8IAA8I,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,KAAK,OAAO,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe,EAAMK,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,KAAK,aAAa,SAAS,CAAcL,EAAKW,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,GAA4BZ,EAAKM,EAAU,CAAC,UAAU,0BAA0B,SAAsBN,EAAKa,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU0B,EAAc,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAc,CAAC,CAAC,CAAC,EAAE,SAAsBZ,EAAKc,GAAe,CAAC,UAAU,GAAM,UAAUF,EAAc,CAAC,EAAE,UAAU,QAAQ,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeZ,EAAKM,EAAU,CAAC,UAAU,2BAA2B,SAAsBN,EAAKe,GAAwB,CAAC,MAAM,kBAAkB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAef,EAAKK,EAAO,IAAI,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,IAAI,EAAE,UAAU,eAAe,SAAsBL,EAAKa,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,MAAM,iCAAiC,IAAI,uEAAuE,OAAO,2EAA2E,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,MAAM,iCAAiC,IAAI,uEAAuE,OAAO,2EAA2E,CAAC,CAAC,EAAE,SAAsBc,EAAKgB,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,IAAI,uEAAuE,OAAO,2EAA2E,EAAE,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe,EAAMX,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,QAAQ,SAAS,CAAcL,EAAKK,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,eAAe,KAAK,eAAe,SAAsBL,EAAKK,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,KAAK,OAAO,SAAsBL,EAAKK,EAAO,IAAI,CAAC,UAAU,gBAAgB,SAAsB,EAAMA,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,KAAK,OAAO,SAAS,CAAcL,EAAKS,EAAS,CAAC,sBAAsB,GAAK,SAAsBT,EAAWU,EAAS,CAAC,SAAsBV,EAAK,MAAM,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,QAAQ,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKS,EAAS,CAAC,sBAAsB,GAAK,SAAsBT,EAAWU,EAAS,CAAC,SAAsBV,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,4LAA4L,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,KAAK,OAAO,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKK,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,eAAe,KAAK,eAAe,SAAsBL,EAAKK,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,KAAK,OAAO,SAAsBL,EAAKK,EAAO,IAAI,CAAC,UAAU,iBAAiB,SAAsB,EAAMA,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,KAAK,OAAO,SAAS,CAAcL,EAAKS,EAAS,CAAC,sBAAsB,GAAK,SAAsBT,EAAWU,EAAS,CAAC,SAAsBV,EAAK,MAAM,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,QAAQ,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKS,EAAS,CAAC,sBAAsB,GAAK,SAAsBT,EAAWU,EAAS,CAAC,SAAsBV,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,wNAAmN,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,KAAK,OAAO,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKK,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,eAAe,KAAK,eAAe,SAAsBL,EAAKK,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,KAAK,OAAO,SAAsBL,EAAKK,EAAO,IAAI,CAAC,UAAU,iBAAiB,SAAsB,EAAMA,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,KAAK,OAAO,SAAS,CAAcL,EAAKS,EAAS,CAAC,sBAAsB,GAAK,SAAsBT,EAAWU,EAAS,CAAC,SAAsBV,EAAK,MAAM,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,YAAY,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,QAAQ,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKS,EAAS,CAAC,sBAAsB,GAAK,SAAsBT,EAAWU,EAAS,CAAC,SAAsBV,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,sLAAsL,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,KAAK,OAAO,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe,EAAMK,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,KAAK,YAAY,SAAS,CAAcL,EAAKS,EAAS,CAAC,sBAAsB,GAAK,SAAsBT,EAAWU,EAAS,CAAC,SAAsBV,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,mBAAmB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,YAAY,KAAK,YAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKM,EAAU,CAAC,UAAU,2BAA2B,SAAsBN,EAAKiB,EAAY,CAAC,MAAM,SAAS,UAAU,aAAa,YAAY,CAAC,UAAU,qBAAqB,aAAa,EAAE,YAAY,GAAG,UAAU,GAAG,kBAAkB,EAAI,EAAE,KAAK,GAAK,aAAa,GAAG,eAAe,CAAcjB,EAAKK,EAAO,IAAI,CAAC,UAAU,iBAAiB,SAAsBL,EAAK3D,GAAU,CAAC,MAAM,CAAC,KAAK,CAAC,KAAK6E,GAAS,KAAK,YAAY,EAAE,MAAM,CAAC,KAAK,eAAe,MAAM,EAAE,EAAE,OAAO,CAAC,CAAC,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,KAAK,KAAK,KAAK,YAAY,CAAC,CAAC,EAAE,SAASC,GAAYA,EAAW,IAAI,CAAC,CAAC,UAAUnD,EAAmB,UAAUC,EAAmB,UAAUC,EAAmB,GAAGC,CAAW,EAAEiD,KAAyBpB,EAAKE,GAAY,CAAC,GAAG,aAAa/B,IAAc,SAAsB6B,EAAKqB,GAAqB,SAAS,CAAC,MAAM,CAAC,UAAUnD,CAAkB,EAAE,SAAsB8B,EAAKK,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,eAAe,KAAK,eAAe,SAASnE,GAAU,SAAsB8D,EAAKW,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,UAAUzC,CAAkB,EAAE,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASoD,IAA6BtB,EAAKM,EAAU,CAAC,UAAU,0BAA0B,SAAsBN,EAAKuB,GAAgB,CAAC,UAAUtD,EAAmB,UAAU,GAAM,OAAO,OAAO,UAAU,GAAG,GAAG,YAAY,UAAU,GAAM,SAAS,YAAY,UAAUqD,GAAe,CAAC,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,OAAO,UAAU,GAAG,UAAUnF,GAAkB6B,CAAkB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEG,CAAW,CAAG,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,EAAE,WAAW,CAAC,UAAU,EAAE,YAAY,GAAK,UAAU,EAAE,eAAe,CAAC,QAAQ,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAE,UAAU,EAAE,EAAE,IAAI,GAAG,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,EAAE,cAAc,EAAE,YAAY,EAAE,eAAe,GAAM,aAAa,EAAE,WAAW,EAAE,eAAe,CAAC,kBAAkB,EAAE,eAAe,qBAAqB,SAAS,EAAE,SAAS,qBAAqB,QAAQ,GAAG,UAAU,GAAG,QAAQ,GAAG,YAAY,GAAG,YAAY,GAAG,WAAW,GAAG,iBAAiB,GAAM,cAAc,EAAK,EAAE,aAAa,CAAC,YAAY,EAAE,WAAW,EAAE,WAAW,OAAO,aAAa,EAAE,WAAW,EAAE,UAAU,MAAM,EAAE,WAAW,CAAC,MAAM,GAAK,KAAK,GAAK,SAAS,OAAO,EAAE,YAAY,CAAC,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe,EAAMkC,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,KAAK,YAAY,SAAS,CAAc,EAAMA,EAAO,IAAI,CAAC,UAAU,eAAe,SAAS,CAAcL,EAAKS,EAAS,CAAC,sBAAsB,GAAK,SAAsBT,EAAWU,EAAS,CAAC,SAAsBV,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,uBAAuB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,YAAY,KAAK,YAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKS,EAAS,CAAC,sBAAsB,GAAK,SAAsBT,EAAWU,EAAS,CAAC,SAAsBV,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAsBA,EAAKwB,GAAK,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,aAAa,GAAM,aAAa,GAAM,SAAsBxB,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,YAAY,KAAK,YAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKM,EAAU,CAAC,UAAU,0BAA0B,SAAsBN,EAAKa,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,aAAa,CAAC,YAAY,EAAE,WAAW,EAAE,WAAW,OAAO,aAAa,EAAE,WAAW,EAAE,UAAU,MAAM,CAAC,CAAC,EAAE,SAAsBc,EAAKiB,EAAY,CAAC,MAAM,SAAS,UAAU,aAAa,YAAY,CAAC,UAAU,qBAAqB,aAAa,EAAE,YAAY,GAAG,UAAU,GAAG,kBAAkB,EAAI,EAAE,KAAK,GAAK,aAAa,GAAG,eAAe,CAAcjB,EAAKK,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,KAAK,aAAa,SAAsBL,EAAK3D,GAAU,CAAC,MAAM,CAAC,KAAK,CAAC,KAAKoF,GAAM,KAAK,YAAY,EAAE,MAAM,CAAC,KAAK,eAAe,MAAM,EAAE,EAAE,OAAO,CAAC,CAAC,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,KAAK,KAAK,KAAK,YAAY,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,KAAK,CAAC,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,eAAe,MAAM,WAAW,EAAE,KAAK,iBAAiB,EAAE,SAAS,MAAM,MAAM,CAAC,KAAK,YAAY,KAAK,YAAY,EAAE,KAAK,iBAAiB,CAAC,EAAE,SAASC,GAAaA,EAAY,IAAI,CAAC,CAAC,UAAUtD,EAAmB,UAAUC,EAAmB,UAAUC,EAAmB,GAAGC,CAAW,EAAE6C,KAAyBpB,EAAKE,GAAY,CAAC,GAAG,aAAa3B,IAAc,SAAsByB,EAAKqB,GAAqB,SAAS,CAAC,MAAM,CAAC,UAAU/C,CAAkB,EAAE,SAAsB0B,EAAKK,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,KAAK,eAAe,SAASnE,GAAU,SAAsB8D,EAAKM,EAAU,CAAC,UAAU,0BAA0B,SAAsBN,EAAK2B,GAAW,CAAC,UAAU,GAAG,UAAUxF,GAAkBiC,CAAkB,EAAE,OAAO,OAAO,UAAUC,EAAmB,GAAG,YAAY,SAAS,YAAY,UAAU,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEE,CAAW,CAAG,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,EAAE,WAAW,CAAC,UAAU,EAAE,YAAY,GAAK,UAAU,EAAE,eAAe,CAAC,QAAQ,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAE,UAAU,EAAE,EAAE,IAAI,GAAG,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,EAAE,cAAc,EAAE,YAAY,EAAE,eAAe,GAAM,aAAa,EAAE,WAAW,EAAE,eAAe,CAAC,kBAAkB,EAAE,eAAe,qBAAqB,SAAS,EAAE,SAAS,qBAAqB,QAAQ,GAAG,UAAU,EAAE,QAAQ,GAAG,YAAY,GAAG,YAAY,GAAG,WAAW,GAAG,iBAAiB,GAAM,cAAc,EAAK,EAAE,aAAa,CAAC,YAAY,EAAE,WAAW,EAAE,WAAW,OAAO,aAAa,EAAE,WAAW,EAAE,UAAU,MAAM,EAAE,WAAW,CAAC,MAAM,GAAK,KAAK,GAAK,SAAS,OAAO,EAAE,YAAY,CAAC,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe,EAAM8B,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,KAAK,YAAY,SAAS,CAAcL,EAAKS,EAAS,CAAC,sBAAsB,GAAK,SAAsBT,EAAWU,EAAS,CAAC,SAAsBV,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,sBAAsB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,YAAY,KAAK,YAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKM,EAAU,CAAC,UAAU,2BAA2B,SAAsBN,EAAKiB,EAAY,CAAC,MAAM,aAAa,UAAU,aAAa,YAAY,CAAC,UAAU,qBAAqB,aAAa,EAAE,YAAY,GAAG,UAAU,GAAG,kBAAkB,EAAI,EAAE,KAAK,GAAK,aAAa,GAAG,eAAe,CAAcjB,EAAKK,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,KAAK,WAAW,SAAsBL,EAAK3D,GAAU,CAAC,MAAM,CAAC,KAAK,CAAC,KAAKuF,GAAS,KAAK,YAAY,EAAE,MAAM,CAAC,KAAK,eAAe,MAAM,EAAE,EAAE,OAAO,CAAC,CAAC,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,KAAK,KAAK,KAAK,YAAY,CAAC,CAAC,EAAE,SAASC,GAAaA,EAAY,IAAI,CAAC,CAAC,UAAUrD,EAAmB,UAAUC,EAAmB,UAAUC,EAAmB,UAAUC,EAAmB,GAAGC,EAAW,EAAEwC,KAAyBpB,EAAKE,GAAY,CAAC,GAAG,aAAatB,KAAc,SAAsBoB,EAAKqB,GAAqB,SAAS,CAAC,MAAM,CAAC,UAAU1C,CAAkB,EAAE,SAAsBqB,EAAKK,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,KAAK,eAAe,SAASnE,GAAU,SAAsB8D,EAAKW,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,UAAUhC,CAAkB,EAAE,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASmD,IAA6B9B,EAAKM,EAAU,CAAC,UAAU,2BAA2B,SAAsBN,EAAKuB,GAAgB,CAAC,UAAU9C,EAAmB,UAAU,GAAM,OAAO,OAAO,UAAU,GAAG,GAAG,YAAY,UAAU,GAAK,SAAS,YAAY,UAAUqD,GAAe,CAAC,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,OAAO,UAAUpD,EAAmB,UAAUvC,GAAkBqC,CAAkB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEI,EAAW,CAAG,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,EAAE,WAAW,CAAC,UAAU,EAAE,YAAY,GAAM,UAAU,EAAE,eAAe,CAAC,QAAQ,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAE,UAAU,EAAE,EAAE,IAAI,GAAG,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,EAAE,cAAc,EAAE,YAAY,EAAE,eAAe,GAAM,aAAa,EAAE,WAAW,EAAE,eAAe,CAAC,kBAAkB,EAAE,eAAe,qBAAqB,SAAS,EAAE,SAAS,qBAAqB,QAAQ,GAAG,UAAU,GAAG,QAAQ,GAAG,YAAY,GAAG,YAAY,GAAG,WAAW,GAAG,iBAAiB,GAAM,cAAc,EAAK,EAAE,aAAa,CAAC,YAAY,EAAE,WAAW,EAAE,WAAW,OAAO,aAAa,EAAE,WAAW,EAAE,UAAU,MAAM,EAAE,WAAW,CAAC,MAAM,GAAK,KAAK,GAAK,SAAS,OAAO,EAAE,YAAY,CAAC,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeoB,EAAKM,EAAU,CAAC,UAAU,0BAA0B,SAAsBN,EAAKa,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBc,EAAK+B,GAAgB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,GAAK,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/B,EAAKM,EAAU,CAAC,UAAU,2BAA2B,SAAsBN,EAAKa,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBc,EAAKgC,GAAe,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,EAAEpC,GAAa,GAAgBI,EAAKa,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,aAAa,EAAI,EAAE,UAAU,CAAC,aAAa,EAAI,CAAC,EAAE,SAAsBc,EAAKM,EAAU,CAAC,UAAU,yCAAyC,SAAsBN,EAAKa,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,sBAAsB,GAAM,0BAA0B,CAAC,UAAU,OAAO,OAAO,WAAW,EAAE,oBAAoB,GAAG,qCAAqC,GAAK,QAAQ,WAAW,EAAE,UAAU,CAAC,sBAAsB,GAAM,0BAA0B,CAAC,UAAU,OAAO,OAAO,WAAW,EAAE,oBAAoB,GAAG,qCAAqC,EAAI,CAAC,EAAE,SAAsBc,EAAKiC,GAAgB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAErC,GAAa,GAAgBI,EAAKa,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,kBAAkB,MAAS,EAAE,UAAU,CAAC,kBAAkB,MAAS,CAAC,EAAE,SAAsBc,EAAKM,EAAU,CAAC,UAAU,wCAAwC,mBAAmB,gBAAgB,aAAa,GAAK,KAAK,gBAAgB,kBAAkB5D,GAAmB,SAAsBsD,EAAKa,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBc,EAAKO,GAAqD,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,gBAAgB,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeP,EAAK,MAAM,CAAC,UAAUI,GAAGzE,GAAkB,GAAGoE,EAAqB,EAAE,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQmC,GAAI,CAAC,gcAAgc,kFAAkF,IAAIrF,GAAS,0IAA0I,kFAAkF,mWAAmW,qSAAqS,iKAAiK,iSAAiS,yTAAyT,4SAA4S,qRAAqR,qSAAqS,mOAAmO,qOAAqO,sSAAsS,iJAAiJ,qRAAqR,6NAA6N,ySAAyS,sxBAAsxB,yWAAyW,sWAAsW,qWAAqW,iOAAiO,kPAAkP,k0BAAk0B,ubAAub,2PAA2P,2LAA2L,4UAA4U,oRAAoR,yGAAyG,mRAAmR,2cAA2c,0GAA0G,iRAAiR,0GAA0G,kKAAkK,0pLAA0pL,4FAA4F,mHAAmHA,GAAS,ozDAAozD,4FAA4FA,GAAS,qmFAAqmF,GAAeqF,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,EAAG,EAQrs/CC,GAAgBC,GAAQ9E,GAAU4E,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,OAAOA,GAAgB,aAAa,CAAC,OAAO,KAAK,MAAM,IAAI,EAAEG,GAASH,GAAgB,CAAC,GAAGI,GAAgB,GAAGC,GAAc,GAAGC,GAAoB,GAAGC,GAA6B,GAAGC,GAAqB,GAAGC,GAAiB,GAAGC,GAAgB,GAAGC,GAAqB,GAAGC,GAAoB,GAAGC,GAAqB,GAAeC,GAAM,GAAgBA,GAAM,GAAgBA,GAAM,GAAgBA,GAAM,GAAgBA,EAAK,CAAC,EACxhB,IAAMC,GAAqB,CAAC,QAAU,CAAC,QAAU,CAAC,KAAO,iBAAiB,KAAO,kBAAkB,MAAQ,CAAC,EAAE,YAAc,CAAC,yBAA2B,OAAO,qBAAuB,OAAO,sBAAwB,IAAI,sBAAwB,OAAO,oCAAsC,4JAA0L,uBAAyB,GAAG,yBAA2B,OAAO,CAAC,EAAE,MAAQ,CAAC,KAAO,SAAS,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC",
  "names": ["clamp", "t", "e", "n", "calcMaskWidth", "inset", "width", "useIsMouse", "isMouseDevice", "setIsMouseDevice", "ye", "fe", "Z", "window", "checkLimit", "progress", "target", "edgeOpacity", "moreItems", "buttonRef", "transition", "animate", "useGUI", "initialMoreItems", "initialAlpha", "pe", "useMotionValue", "fadeOpacity", "useTransform", "buttonOpacity", "v", "pointerEvents", "cursor", "buttonStyle", "baseButtonStyles", "setAriaVisible", "element", "useScrollLimits", "container", "axis", "scrollInfo", "updateCurrentScroll", "targetScroll", "checkLimits", "measureItems", "ue", "stopScroll", "scroll", "info", "stopResize", "resize", "Carousel", "slots", "gap", "align", "sizingObject", "fadeObject", "arrowObject", "snapObject", "progressObject", "ariaLabel", "borderRadius", "effectsObject", "props", "filteredSlots", "numItems", "j", "isCanvas", "RenderTarget", "padding", "usePadding", "axisLabel", "fadeContent", "fadeWidth", "fadeInset", "fadeTransition", "fadeAlpha", "snap", "snapEdge", "fluid", "widthType", "widthInset", "widthColumns", "heightType", "heightInset", "heightRows", "showScrollbar", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowPadding", "currentScroll", "newScroll", "start", "end", "startMaskInset", "endMaskInset", "baseWidth", "startMaskWidth", "endMaskWidth", "direction", "mask", "latest", "carouselRef", "numPages", "setNumPages", "itemStyle", "childStyle", "scrollOverflow", "containerStyle", "baseContainerStyle", "carouselStyle", "baseCarouselStyle", "carouselA11y", "itemA11y", "itemSizes", "te", "targetLength", "containerLength", "scrollLength", "current", "i", "newNumPages", "isReducedMotion", "useReducedMotion", "goto", "scrollTo", "options", "gotoPage", "page", "adjustment", "totalLen", "gotoDelta", "delta", "pageLength", "currentPage", "clamp", "p", "Placeholder", "dots", "dotsBlurStyle", "isSelected", "Dot", "dotStyle", "motion", "child", "index", "_child_props", "q", "controlsStyles", "dotsContainerStyle", "MouseStyles", "addPropertyControls", "ControlType", "paddingControl", "selectedOpacity", "unselectedOpacity", "total", "opacity", "_scrollInfo_current", "_scrollInfo_current1", "minScroll", "maxScroll", "inlinePadding", "top", "bottom", "right", "left", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "baseContainerStyle", "baseCarouselStyle", "baseButtonStyles", "controlsStyles", "dotsContainerStyle", "dotStyle", "CMSSlideshow", "props", "collectionList", "startLayers", "endLayers", "frame", "otherProps", "isCanvas", "RenderTarget", "collectionLayers", "getCollectionListContents", "layers", "i", "p", "CanvasPlaceholder", "layer", "q", "Slideshow", "addPropertyControls", "ControlType", "getComponentProps", "component", "slots", "getPropertyControls", "element", "title", "subtitle", "CMSCarousel", "props", "collectionList", "startLayers", "endLayers", "otherProps", "isCanvas", "RenderTarget", "collectionLayers", "getCollectionListContents", "layers", "count", "i", "p", "CanvasPlaceholder", "Carousel", "addPropertyControls", "ControlType", "getComponentProps", "component", "slots", "getPropertyControls", "TextMask", "props", "textContent", "image", "bgSizeType", "bgSize", "bgPosX", "bgPosY", "font", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "color", "fontSize", "fontFamily", "fontWeight", "fontStyle", "textAlign", "letterSpacing", "whiteSpace", "lineHeight", "lineHeightPixels", "lineHeightType", "backgroundSizeValue", "paddingValue", "p", "addPropertyControls", "ControlType", "cycleOrder", "serializationHash", "variantClassNames", "transitions", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "getProps", "content", "height", "id", "image", "showTitleContent", "title", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "EtaKyfd9t", "lpPjxYSWW", "hU3Mosp6d", "BNs6FJPJ6", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "isOnCanvas", "useIsOnFramerCanvas", "initialVariant", "useConstant", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "motion", "cx", "serializationHash", "Image2", "RichText2", "x", "css", "FramerdvOko2l95", "withCSS", "dvOko2l95_default", "addPropertyControls", "ControlType", "addFonts", "NavSidebarFonts", "getFonts", "lelsAkhJT_default", "NavSidebarWithSidebarSateWithMappedReactProps1a9koup", "withMappedReactProps", "withSidebarSate", "lelsAkhJT_exports", "TextMaskFonts", "TextMask", "ElementsButtonFonts", "L0qvKohpW_default", "ElementsCopyEmailButtonFonts", "F_L7de3UE_default", "TeasersVerticalFonts", "biDxPGSJD_default", "CMSCarouselFonts", "CMSCarousel", "CardType06Fonts", "dvOko2l95_default", "WidgetsThoughtsFonts", "K07APGzGV_default", "SectionsFooterFonts", "usuQLil1D_default", "NavMobileTopbarFonts", "jrak6wtgF_default", "MotionDivWithKeyboardShortcuts", "withKeyboardShortcuts", "motion", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transitions", "addImageAlt", "image", "alt", "transition1", "animation", "toResponsiveImage", "value", "QueryData", "query", "children", "data", "useQueryData", "transformTemplate1", "_", "t", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "YdEmSUhYJxlZ82ER4R", "z6yjE0MOYxlZ82ER4R", "Yfahr3iSqxlZ82ER4R", "idxlZ82ER4R", "JpxeLxSkzhew3HENkr", "HK2gBsVVJhew3HENkr", "rMCKHllXwhew3HENkr", "idhew3HENkr", "Bu20mVHWluE4asDFdb", "uZozBgAC5uE4asDFdb", "JgCCkBcn3uE4asDFdb", "NOqSapojluE4asDFdb", "iduE4asDFdb", "restProps", "fe", "metadata1", "_document_querySelector", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "transition", "ref1", "pe", "isDisplayed", "router", "useRouter", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "p", "GeneratedComponentContext", "LayoutGroup", "MotionDivWithKeyboardShortcuts", "cx", "motion", "Container", "NavSidebarWithSidebarSateWithMappedReactProps1a9koup", "TextMask", "RichText2", "x", "ResolveLinks", "resolvedLinks", "PropertyOverrides2", "L0qvKohpW_default", "F_L7de3UE_default", "Image2", "CMSCarousel", "Q0zDvkWdL_default", "collection", "i", "PathVariablesContext", "resolvedLinks1", "biDxPGSJD_default", "Link", "WvoLyxn8x_default", "collection1", "dvOko2l95_default", "CoOBKc03h_default", "collection2", "resolvedLinks2", "K07APGzGV_default", "usuQLil1D_default", "jrak6wtgF_default", "css", "Framernf6MiwrGi", "withCSS", "nf6MiwrGi_default", "addFonts", "NavSidebarFonts", "TextMaskFonts", "ElementsButtonFonts", "ElementsCopyEmailButtonFonts", "TeasersVerticalFonts", "CMSCarouselFonts", "CardType06Fonts", "WidgetsThoughtsFonts", "SectionsFooterFonts", "NavMobileTopbarFonts", "fonts", "__FramerMetadata__"]
}
