{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/ZtFjxnixyznUo5AKQme5/Carousel.js", "ssg:https://framerusercontent.com/modules/u9Kzmwlhv120muAemtSK/yccOmv0SOQYU2lKNLSmc/eQlRKMvyX.js", "ssg:https://framerusercontent.com/modules/y1UymOoMcEhIxqy2gOlK/LCA8ZVLKUMeNywDW0fUx/EVjw6dlG1.js", "ssg:https://framerusercontent.com/modules/oOmMoy4Mfxr4VHsfdsU0/rVENg1hK8uUqo4kHhSrk/X_LOeEo5S.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useCallback,useLayoutEffect,useEffect,useState,useRef,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{scroll,resize}from\"@motionone/dom\";import{clamp,progress}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(()=>{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,target)=>{if(!scrollInfo.current)return;const{current}=scrollInfo.current;const{children}=carouselRef.current;let scrollTarget;let i=delta===1?0:children.length-1;while(scrollTarget===undefined){const item=children[i];const start=axis?item.offsetLeft:item.offsetTop;const length=axis?item.offsetWidth:item.offsetHeight;const end=start+length;const threshold=.05;if(delta===1){const visibility=progress(start,end,target);if(visibility<1-threshold){scrollTarget=start;}else if(i===children.length-1){scrollTarget=end;}}else if(delta===-1){const visibility=progress(start,end,target);if(visibility>threshold){scrollTarget=end;}else if(i===0){scrollTarget=start;}}i+=delta;}return scrollTarget;};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=>{if(!scrollInfo.current)return;const{scrollLength}=scrollInfo.current;goto(page*(scrollLength/(numPages-1)));};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));gotoPage(currentPage+delta);};/**\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\",{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\",{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\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Carousel.map", "// Generated by Framer (9f68555)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import TextLink from\"https://framerusercontent.com/modules/pPkakCWKXJx6j3L6ICDy/R6sXMwdBdQhUJBJdkOer/KCNyg47b8.js\";const TextLinkFonts=getFonts(TextLink);const cycleOrder=[\"bZcWR6i8T\",\"pz7PDGF6U\"];const serializationHash=\"framer-iijj5\";const variantClassNames={bZcWR6i8T:\"framer-v-1wiar7x\",pz7PDGF6U:\"framer-v-iniyij\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"bZcWR6i8T\",\"Variant 2\":\"pz7PDGF6U\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"bZcWR6i8T\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"bZcWR6i8T\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1wiar7x\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"bZcWR6i8T\",ref:ref??ref1,style:{...style},...addPropertyOverrides({pz7PDGF6U:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sf0hb0\",layoutDependency:layoutDependency,layoutId:\"rqI8gE6ww\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-uvn1lh\",layoutDependency:layoutDependency,layoutId:\"qTVsg8ZBG\",children:[/*#__PURE__*/_jsx(Link,{href:{hash:\":YHwUVaO0v\",webPageId:\"NCVqCj3B5\"},nodeId:\"MzFMPmpri\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-125g2zb framer-1jh2qq5\",layoutDependency:layoutDependency,layoutId:\"MzFMPmpri\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:14,width:\"70px\",y:(componentViewport?.y||0)+0+0+0+0+0+0+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1abtspc-container\",layoutDependency:layoutDependency,layoutId:\"C9dpxv8Rr-container\",children:/*#__PURE__*/_jsx(TextLink,{height:\"100%\",id:\"C9dpxv8Rr\",layoutId:\"C9dpxv8Rr\",Mt4iR8hL4:\"Work\",style:{width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"gqvqgvtuD\"},nodeId:\"gJtqxd4PU\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-14151r framer-1jh2qq5\",layoutDependency:layoutDependency,layoutId:\"gJtqxd4PU\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:14,width:\"70px\",y:(componentViewport?.y||0)+0+0+0+0+32+0+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xyw4un-container\",layoutDependency:layoutDependency,layoutId:\"iHIZQnLY_-container\",children:/*#__PURE__*/_jsx(TextLink,{height:\"100%\",id:\"iHIZQnLY_\",layoutId:\"iHIZQnLY_\",Mt4iR8hL4:\"About\",style:{width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://drive.google.com/file/d/1WRFvCfASQgqN4Utfcp4b-aEZtw2FzHY3/view?usp=sharing\",nodeId:\"D3Cmyh7Od\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1snhvc7 framer-1jh2qq5\",layoutDependency:layoutDependency,layoutId:\"D3Cmyh7Od\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:14,width:\"70px\",y:(componentViewport?.y||0)+0+0+0+0+64+0+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ssy6dp-container\",layoutDependency:layoutDependency,layoutId:\"cL1y9CcBM-container\",children:/*#__PURE__*/_jsx(TextLink,{height:\"100%\",id:\"cL1y9CcBM\",layoutId:\"cL1y9CcBM\",Mt4iR8hL4:\"Resume\",style:{width:\"100%\"},width:\"100%\"})})})})})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-iijj5.framer-1jh2qq5, .framer-iijj5 .framer-1jh2qq5 { display: block; }\",\".framer-iijj5.framer-1wiar7x { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 300px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 120px; }\",\".framer-iijj5 .framer-1sf0hb0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-iijj5 .framer-uvn1lh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-iijj5 .framer-125g2zb, .framer-iijj5 .framer-14151r, .framer-iijj5 .framer-1snhvc7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 70px; }\",\".framer-iijj5 .framer-1abtspc-container, .framer-iijj5 .framer-1xyw4un-container, .framer-iijj5 .framer-1ssy6dp-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-iijj5.framer-1wiar7x, .framer-iijj5 .framer-1sf0hb0, .framer-iijj5 .framer-uvn1lh, .framer-iijj5 .framer-125g2zb, .framer-iijj5 .framer-14151r, .framer-iijj5 .framer-1snhvc7 { gap: 0px; } .framer-iijj5.framer-1wiar7x > * { margin: 0px; margin-bottom: calc(300px / 2); margin-top: calc(300px / 2); } .framer-iijj5.framer-1wiar7x > :first-child, .framer-iijj5 .framer-uvn1lh > :first-child, .framer-iijj5 .framer-125g2zb > :first-child, .framer-iijj5 .framer-14151r > :first-child, .framer-iijj5 .framer-1snhvc7 > :first-child { margin-top: 0px; } .framer-iijj5.framer-1wiar7x > :last-child, .framer-iijj5 .framer-uvn1lh > :last-child, .framer-iijj5 .framer-125g2zb > :last-child, .framer-iijj5 .framer-14151r > :last-child, .framer-iijj5 .framer-1snhvc7 > :last-child { margin-bottom: 0px; } .framer-iijj5 .framer-1sf0hb0 > * { margin: 0px; margin-left: calc(50px / 2); margin-right: calc(50px / 2); } .framer-iijj5 .framer-1sf0hb0 > :first-child { margin-left: 0px; } .framer-iijj5 .framer-1sf0hb0 > :last-child { margin-right: 0px; } .framer-iijj5 .framer-uvn1lh > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-iijj5 .framer-125g2zb > *, .framer-iijj5 .framer-14151r > *, .framer-iijj5 .framer-1snhvc7 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-iijj5.framer-v-iniyij.framer-1wiar7x { width: 600px; }\",\".framer-iijj5.framer-v-iniyij .framer-1sf0hb0 { padding: 0px 0px 0px 10px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 78\n * @framerIntrinsicWidth 120\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"pz7PDGF6U\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramereQlRKMvyX=withCSS(Component,css,\"framer-iijj5\");export default FramereQlRKMvyX;FramereQlRKMvyX.displayName=\"Gnb\";FramereQlRKMvyX.defaultProps={height:78,width:120};addPropertyControls(FramereQlRKMvyX,{variant:{options:[\"bZcWR6i8T\",\"pz7PDGF6U\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramereQlRKMvyX,[{explicitInter:true,fonts:[]},...TextLinkFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramereQlRKMvyX\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"78\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"120\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"pz7PDGF6U\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (9f68555)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;ITC Avant Garde Gothic Std Book\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"ITC Avant Garde Gothic Std Book\",source:\"custom\",url:\"https://framerusercontent.com/assets/nJA25uDuGtD6XffWrxJy5B29E.woff2\"}]}];export const css=[\".framer-4aAQP .framer-styles-preset-15hswuh:not(.rich-text-wrapper), .framer-4aAQP .framer-styles-preset-15hswuh.rich-text-wrapper p { --framer-font-family: \\\"ITC Avant Garde Gothic Std Book\\\", \\\"ITC Avant Garde Gothic Std Book Placeholder\\\", sans-serif; --framer-font-open-type-features: 'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on; --framer-font-size: 12px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-db479d56-5b95-4973-9b17-168c4c9864fb, #8a8a8a); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }\"];export const className=\"framer-4aAQP\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (139b156)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useRouteElementId,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/ZtFjxnixyznUo5AKQme5/Carousel.js\";import Footer from\"#framer/local/canvasComponent/eBm2lOGbp/eBm2lOGbp.js\";import Gnb from\"#framer/local/canvasComponent/eQlRKMvyX/eQlRKMvyX.js\";import XButton from\"#framer/local/canvasComponent/FyvQCp8xo/FyvQCp8xo.js\";import TextLink from\"#framer/local/canvasComponent/KCNyg47b8/KCNyg47b8.js\";import*as sharedStyle3 from\"#framer/local/css/EVjw6dlG1/EVjw6dlG1.js\";import*as sharedStyle5 from\"#framer/local/css/fLgbQTpdo/fLgbQTpdo.js\";import*as sharedStyle1 from\"#framer/local/css/GJfTNrE_5/GJfTNrE_5.js\";import*as sharedStyle from\"#framer/local/css/ReDwbt0yE/ReDwbt0yE.js\";import*as sharedStyle6 from\"#framer/local/css/sxK8UYu0S/sxK8UYu0S.js\";import*as sharedStyle4 from\"#framer/local/css/uyt4AohR8/uyt4AohR8.js\";import*as sharedStyle2 from\"#framer/local/css/YUNBbbn6y/YUNBbbn6y.js\";import metadataProvider from\"#framer/local/webPageMetadata/X_LOeEo5S/X_LOeEo5S.js\";const GnbFonts=getFonts(Gnb);const TextLinkFonts=getFonts(TextLink);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const MotionDivWithFX=withFX(motion.div);const CarouselFonts=getFonts(Carousel);const ImageWithFX=withFX(Image);const FooterFonts=getFonts(Footer);const XButtonFonts=getFonts(XButton);const breakpoints={Cc1j5wdp6:\"(min-width: 1200px) and (max-width: 1919px)\",iXj1sUSjr:\"(min-width: 640px) and (max-width: 1199px)\",KZL9MPXTQ:\"(max-width: 639px)\",Qpkbl5mp7:\"(min-width: 1920px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-bvK8H\";const variantClassNames={Cc1j5wdp6:\"framer-v-ooxdms\",iXj1sUSjr:\"framer-v-pfmw3s\",KZL9MPXTQ:\"framer-v-zh7z5p\",Qpkbl5mp7:\"framer-v-drfvik\"};const transition1={delay:.2,duration:.6,ease:[.12,.23,.5,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20};const transition2={damping:40,delay:.2,mass:1,stiffness:400,type:\"spring\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:20};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:20};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:20};const metadata=metadataProvider();const humanReadableVariantMap={\"Desktop 2\":\"Cc1j5wdp6\",\"Tablet 2\":\"iXj1sUSjr\",Desktop:\"Qpkbl5mp7\",Phone:\"KZL9MPXTQ\"};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:\"Qpkbl5mp7\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{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);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-bvK8H`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-bvK8H`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"KZL9MPXTQ\")return false;return true;};const elementId=useRouteElementId(\"i5AweDljA\");const ref2=React.useRef(null);const elementId1=useRouteElementId(\"WjybUbbLM\");const ref3=React.useRef(null);const elementId2=useRouteElementId(\"D3iVR44mG\");const ref4=React.useRef(null);const elementId3=useRouteElementId(\"PmDOtIAw6\");const ref5=React.useRef(null);const elementId4=useRouteElementId(\"pZNFWm_ju\");const ref6=React.useRef(null);const elementId5=useRouteElementId(\"JH_g_JZiW\");const ref7=React.useRef(null);const elementId6=useRouteElementId(\"C3OBNSkNn\");const ref8=React.useRef(null);const elementId7=useRouteElementId(\"hmTnvbiCl\");const ref9=React.useRef(null);const elementId8=useRouteElementId(\"em67RZd2m\");const ref10=React.useRef(null);const elementId9=useRouteElementId(\"aH9HwZa0Z\");const ref11=React.useRef(null);const elementId10=useRouteElementId(\"iq2ICsRwI\");const ref12=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"Qpkbl5mp7\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-drfvik\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1faowur\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qedktd\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Cc1j5wdp6:{width:\"min(100vw, 1280px)\"},iXj1sUSjr:{width:\"min(100vw, 1280px)\"},KZL9MPXTQ:{width:\"min(100vw, 1280px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,width:\"1279px\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-draigz-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Cc1j5wdp6:{variant:\"pz7PDGF6U\"},iXj1sUSjr:{variant:\"pz7PDGF6U\"},KZL9MPXTQ:{variant:\"pz7PDGF6U\"}},children:/*#__PURE__*/_jsx(Gnb,{height:\"100%\",id:\"S3EcPWaWu\",layoutId:\"S3EcPWaWu\",style:{height:\"100%\",width:\"100%\"},variant:\"bZcWR6i8T\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-77g5e5\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uxii2x\",\"data-framer-name\":\"List\",name:\"List\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-848h0g\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-jflgce\",\"data-styles-preset\":\"ReDwbt0yE\",children:\"TO Maps\"})}),className:\"framer-rq06az\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-nh82q3\",\"data-styles-preset\":\"GJfTNrE_5\",children:\"Product Design\"})}),className:\"framer-1npazg3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v8j7yc\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-v4zqqs\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05ldWUgSGFhcyBHcm90ZXNrIERpc3BsYXkgUHJvIDU1IFJvbWFu\",\"--framer-font-family\":'\"Neue Haas Grotesk Display Pro 55 Roman\", \"Neue Haas Grotesk Display Pro 55 Roman Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(29, 29, 29)\"},children:\"Team\"})}),className:\"framer-jt7nit\",fonts:[\"CUSTOM;Neue Haas Grotesk Display Pro 55 Roman\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-5bgvr1\",\"data-styles-preset\":\"YUNBbbn6y\",style:{\"--framer-text-alignment\":\"right\"},children:\"Solo Project\"})}),className:\"framer-jzknlm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-umi78s\",\"data-framer-name\":\"Divider\",name:\"Divider\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-g60cg4\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17kvbtm\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-nh82q3\",\"data-styles-preset\":\"GJfTNrE_5\",children:\"Team\"})}),className:\"framer-1s6nksu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-15hswuh\",\"data-styles-preset\":\"EVjw6dlG1\",children:\"Solo Project\"})}),className:\"framer-1rj6a41\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vb0ipg\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-nh82q3\",\"data-styles-preset\":\"GJfTNrE_5\",children:\"Role\"})}),className:\"framer-ufjo7m\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-15hswuh\",\"data-styles-preset\":\"EVjw6dlG1\",children:\"Product Designer (UX/UI)\"})}),className:\"framer-rpvy9z\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-x1a76k\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rl3lce\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-nh82q3\",\"data-styles-preset\":\"GJfTNrE_5\",children:\"Timeline\"})}),className:\"framer-8ovrpo\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-15hswuh\",\"data-styles-preset\":\"EVjw6dlG1\",children:\"12 weeks\"})}),className:\"framer-5e5gbl\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-557nne\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tj2nck\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-nh82q3\",\"data-styles-preset\":\"GJfTNrE_5\",children:\"Tools\"})}),className:\"framer-1oayopb\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-15hswuh\",\"data-styles-preset\":\"EVjw6dlG1\",children:\"Figma, Principle\"})}),className:\"framer-13wyffl\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-og3xyo hidden-zh7z5p\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-nh82q3\",\"data-styles-preset\":\"GJfTNrE_5\",children:\"Agenda\"})}),className:\"framer-1cs8j09\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-sfg99o hidden-zh7z5p\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":WjybUbbLM\",webPageId:\"X_LOeEo5S\"},nodeId:\"QSTYv88Wz\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-1sszhwz framer-11bqclk\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Cc1j5wdp6:{width:\"max((min((min(100vw, 1280px) - 10px) * 0.23, min(100vw, 1280px) - 10px) - 10px) * 1, 1px)\"},iXj1sUSjr:{width:\"max((min((min(100vw, 1280px) - 10px) * 0.23, min(100vw, 1280px) - 10px) - 10px) * 1, 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:14,width:\"max((min(min(100vw, 1280px) * 0.23, min(100vw, 1280px)) - 10px) * 1, 1px)\",y:678,children:/*#__PURE__*/_jsx(Container,{className:\"framer-yoqkld-container\",children:/*#__PURE__*/_jsx(TextLink,{height:\"100%\",id:\"iPailGLBr\",layoutId:\"iPailGLBr\",Mt4iR8hL4:\"Overview\",style:{width:\"100%\"},width:\"100%\"})})})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tdc91p hidden-zh7z5p\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":D3iVR44mG\",webPageId:\"X_LOeEo5S\"},nodeId:\"NZLhtu0S_\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-7ae4zc framer-11bqclk\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Cc1j5wdp6:{width:\"max((min((min(100vw, 1280px) - 10px) * 0.23, min(100vw, 1280px) - 10px) - 10px) * 1, 1px)\"},iXj1sUSjr:{width:\"max((min((min(100vw, 1280px) - 10px) * 0.23, min(100vw, 1280px) - 10px) - 10px) * 1, 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:14,width:\"max((min(min(100vw, 1280px) * 0.23, min(100vw, 1280px)) - 10px) * 1, 1px)\",y:696,children:/*#__PURE__*/_jsx(Container,{className:\"framer-922xy5-container\",children:/*#__PURE__*/_jsx(TextLink,{height:\"100%\",id:\"LuKXJUocd\",layoutId:\"LuKXJUocd\",Mt4iR8hL4:\"Problem\",style:{width:\"100%\"},width:\"100%\"})})})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-jf2etw hidden-zh7z5p\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":PmDOtIAw6\",webPageId:\"X_LOeEo5S\"},nodeId:\"u6tbWVUJF\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-x3zp4s framer-11bqclk\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Cc1j5wdp6:{width:\"max((min((min(100vw, 1280px) - 10px) * 0.23, min(100vw, 1280px) - 10px) - 10px) * 1, 1px)\"},iXj1sUSjr:{width:\"max((min((min(100vw, 1280px) - 10px) * 0.23, min(100vw, 1280px) - 10px) - 10px) * 1, 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:14,width:\"max((min(min(100vw, 1280px) * 0.23, min(100vw, 1280px)) - 10px) * 1, 1px)\",y:714,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cfxuyv-container\",children:/*#__PURE__*/_jsx(TextLink,{height:\"100%\",id:\"d9uBKKTs_\",layoutId:\"d9uBKKTs_\",Mt4iR8hL4:\"Goal\",style:{width:\"100%\"},width:\"100%\"})})})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1aeomn1 hidden-zh7z5p\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":pZNFWm_ju\",webPageId:\"X_LOeEo5S\"},nodeId:\"zeDmsyWfS\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-saafhc framer-11bqclk\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Cc1j5wdp6:{width:\"max((min((min(100vw, 1280px) - 10px) * 0.23, min(100vw, 1280px) - 10px) - 10px) * 1, 1px)\"},iXj1sUSjr:{width:\"max((min((min(100vw, 1280px) - 10px) * 0.23, min(100vw, 1280px) - 10px) - 10px) * 1, 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:14,width:\"max((min(min(100vw, 1280px) * 0.23, min(100vw, 1280px)) - 10px) * 1, 1px)\",y:732,children:/*#__PURE__*/_jsx(Container,{className:\"framer-lr0ql6-container\",children:/*#__PURE__*/_jsx(TextLink,{height:\"100%\",id:\"dAR1xoPRV\",layoutId:\"dAR1xoPRV\",Mt4iR8hL4:\"Solution\",style:{width:\"100%\"},width:\"100%\"})})})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pkagd3 hidden-zh7z5p\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":JH_g_JZiW\",webPageId:\"X_LOeEo5S\"},nodeId:\"UETBM4OCO\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-256d3m framer-11bqclk\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Cc1j5wdp6:{width:\"max((min((min(100vw, 1280px) - 10px) * 0.23, min(100vw, 1280px) - 10px) - 10px) * 1, 1px)\"},iXj1sUSjr:{width:\"max((min((min(100vw, 1280px) - 10px) * 0.23, min(100vw, 1280px) - 10px) - 10px) * 1, 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:14,width:\"max((min(min(100vw, 1280px) * 0.23, min(100vw, 1280px)) - 10px) * 1, 1px)\",y:750,children:/*#__PURE__*/_jsx(Container,{className:\"framer-encx2c-container\",children:/*#__PURE__*/_jsx(TextLink,{height:\"100%\",id:\"WUTmbri_A\",layoutId:\"WUTmbri_A\",Mt4iR8hL4:\"Competitor Research\",style:{width:\"100%\"},width:\"100%\"})})})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1shvdoh hidden-zh7z5p\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":C3OBNSkNn\",webPageId:\"X_LOeEo5S\"},nodeId:\"VBGNnLJDZ\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-knjo61 framer-11bqclk\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Cc1j5wdp6:{width:\"max((min((min(100vw, 1280px) - 10px) * 0.23, min(100vw, 1280px) - 10px) - 10px) * 1, 1px)\"},iXj1sUSjr:{width:\"max((min((min(100vw, 1280px) - 10px) * 0.23, min(100vw, 1280px) - 10px) - 10px) * 1, 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:14,width:\"max((min(min(100vw, 1280px) * 0.23, min(100vw, 1280px)) - 10px) * 1, 1px)\",y:768,children:/*#__PURE__*/_jsx(Container,{className:\"framer-s6ptuo-container\",children:/*#__PURE__*/_jsx(TextLink,{height:\"100%\",id:\"RIeBsdrVX\",layoutId:\"RIeBsdrVX\",Mt4iR8hL4:\"User Interview\",style:{width:\"100%\"},width:\"100%\"})})})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dkjhi9 hidden-zh7z5p\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":hmTnvbiCl\",webPageId:\"X_LOeEo5S\"},nodeId:\"VBHWR8stQ\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-1g0kiei framer-11bqclk\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Cc1j5wdp6:{width:\"max((min((min(100vw, 1280px) - 10px) * 0.23, min(100vw, 1280px) - 10px) - 10px) * 1, 1px)\"},iXj1sUSjr:{width:\"max((min((min(100vw, 1280px) - 10px) * 0.23, min(100vw, 1280px) - 10px) - 10px) * 1, 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:14,width:\"max((min(min(100vw, 1280px) * 0.23, min(100vw, 1280px)) - 10px) * 1, 1px)\",y:786,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vddicl-container\",children:/*#__PURE__*/_jsx(TextLink,{height:\"100%\",id:\"qB5qrvmtj\",layoutId:\"qB5qrvmtj\",Mt4iR8hL4:\"Persona & Journey Mapping\",style:{width:\"100%\"},width:\"100%\"})})})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-218xhm hidden-zh7z5p\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":em67RZd2m\",webPageId:\"X_LOeEo5S\"},nodeId:\"Tsf1tzkhj\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-srywqr framer-11bqclk\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Cc1j5wdp6:{width:\"max((min((min(100vw, 1280px) - 10px) * 0.23, min(100vw, 1280px) - 10px) - 10px) * 1, 1px)\"},iXj1sUSjr:{width:\"max((min((min(100vw, 1280px) - 10px) * 0.23, min(100vw, 1280px) - 10px) - 10px) * 1, 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:14,width:\"max((min(min(100vw, 1280px) * 0.23, min(100vw, 1280px)) - 10px) * 1, 1px)\",y:804,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hmxn5b-container\",children:/*#__PURE__*/_jsx(TextLink,{height:\"100%\",id:\"lP_U57GH6\",layoutId:\"lP_U57GH6\",Mt4iR8hL4:\"User Testing\",style:{width:\"100%\"},width:\"100%\"})})})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-hgabln hidden-zh7z5p\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":aH9HwZa0Z\",webPageId:\"X_LOeEo5S\"},nodeId:\"Nkm91iUUk\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-1wolvx0 framer-11bqclk\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Cc1j5wdp6:{width:\"max((min((min(100vw, 1280px) - 10px) * 0.23, min(100vw, 1280px) - 10px) - 10px) * 1, 1px)\"},iXj1sUSjr:{width:\"max((min((min(100vw, 1280px) - 10px) * 0.23, min(100vw, 1280px) - 10px) - 10px) * 1, 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:14,width:\"max((min(min(100vw, 1280px) * 0.23, min(100vw, 1280px)) - 10px) * 1, 1px)\",y:822,children:/*#__PURE__*/_jsx(Container,{className:\"framer-143ek2e-container\",children:/*#__PURE__*/_jsx(TextLink,{height:\"100%\",id:\"zJdu54sG9\",layoutId:\"zJdu54sG9\",Mt4iR8hL4:\"Final Solution\",style:{width:\"100%\"},width:\"100%\"})})})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-gnipmb hidden-zh7z5p\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":iq2ICsRwI\",webPageId:\"X_LOeEo5S\"},nodeId:\"pzU7alUGn\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-ro02di framer-11bqclk\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Cc1j5wdp6:{width:\"max((min((min(100vw, 1280px) - 10px) * 0.23, min(100vw, 1280px) - 10px) - 10px) * 1, 1px)\"},iXj1sUSjr:{width:\"max((min((min(100vw, 1280px) - 10px) * 0.23, min(100vw, 1280px) - 10px) - 10px) * 1, 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:14,width:\"max((min(min(100vw, 1280px) * 0.23, min(100vw, 1280px)) - 10px) * 1, 1px)\",y:840,children:/*#__PURE__*/_jsx(Container,{className:\"framer-12f7iau-container\",children:/*#__PURE__*/_jsx(TextLink,{height:\"100%\",id:\"HLM6z3k7U\",layoutId:\"HLM6z3k7U\",Mt4iR8hL4:\"Takeaway\",style:{width:\"100%\"},width:\"100%\"})})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14ccbuz\",\"data-framer-name\":\"Projects\",name:\"Projects\",children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-ayr816\",\"data-framer-appear-id\":\"ayr816\",\"data-framer-name\":\"Project\",id:elementId,initial:animation1,name:\"Project\",optimized:true,ref:ref2,children:[/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-es2h8k\",\"data-framer-appear-id\":\"es2h8k\",initial:animation1,optimized:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KZL9MPXTQ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1125,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition(588),pixelHeight:1580,pixelWidth:2526,src:\"https://framerusercontent.com/images/Sfq5NcEM9BriNrjjKdoiB8ZT4U.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1125,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition(64),pixelHeight:1580,pixelWidth:2526,src:\"https://framerusercontent.com/images/Sfq5NcEM9BriNrjjKdoiB8ZT4U.png\"},className:\"framer-zscdwt\",\"data-framer-name\":\"Free_MacBook_Pro_2\",name:\"Free_MacBook_Pro_2\"})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-7ux92m\",\"data-framer-name\":\"Overview\",id:elementId1,name:\"Overview\",ref:ref3,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16p7s50\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-15rkwti\",\"data-styles-preset\":\"uyt4AohR8\",children:\"TO Maps\"})}),className:\"framer-1awb0wq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12jcxd8\",\"data-styles-preset\":\"fLgbQTpdo\",children:\"TO maps is a mobile application that uses GPS location data to offer users real-time arrival information for TTC(Toronto Transit Commission) streetcars and buses. \"})}),className:\"framer-c0guiu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-161pswc\",\"data-framer-name\":\"The problem\",id:elementId2,name:\"The problem\",ref:ref4,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1w8d5d1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ad5v4\",\"data-styles-preset\":\"sxK8UYu0S\",children:\"THE PROBLEM\"})}),className:\"framer-jam4l0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-15rkwti\",\"data-styles-preset\":\"uyt4AohR8\",children:[\"As a new Toronto immigrant, \",/*#__PURE__*/_jsx(\"br\",{}),\"I had difficulties finding the right TTC when I first moved to Toronto.\"]})}),className:\"framer-1dbi3w4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-12jcxd8\",\"data-styles-preset\":\"fLgbQTpdo\",children:[\"What is a Streetcar? Which subway line should I take? \",/*#__PURE__*/_jsx(\"br\",{}),\"Why are they not coming? Is it Delayed? I don't know!\"]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12jcxd8\",\"data-styles-preset\":\"fLgbQTpdo\",children:\"People unfamiliar with Toronto's transportation system have difficulties figuring out the complicated TTC system, which discourages them from using public transportation.\"})]}),className:\"framer-qywzyx\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-6q20p\",\"data-framer-name\":\"The problem\",id:elementId3,name:\"The problem\",ref:ref5,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b6zjk9\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ad5v4\",\"data-styles-preset\":\"sxK8UYu0S\",children:\"THE GOAL\"})}),className:\"framer-1b12cib\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-15rkwti\",\"data-styles-preset\":\"uyt4AohR8\",children:\"People need to be provided a guide about the TTC system to encourage the use of public transportation. \"})}),className:\"framer-e5gdp4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1nyto3l\",\"data-framer-name\":\"Solution\",id:elementId4,name:\"Solution\",ref:ref6,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jzdzz9\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ad5v4\",\"data-styles-preset\":\"sxK8UYu0S\",children:\"Solution\"})}),className:\"framer-1hqtstz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-15rkwti\",\"data-styles-preset\":\"uyt4AohR8\",children:\"Making a guide system that has all the information on TTC.\"})}),className:\"framer-onc1oz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12jcxd8\",\"data-styles-preset\":\"fLgbQTpdo\",children:\"The system could be any format, but I chose an app because it is the most accessible and easy to use daily for people.\"})}),className:\"framer-li9ppp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ugsxsg\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Cc1j5wdp6:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:764,intrinsicWidth:985,loading:getLoadingLazyAtYPosition(1581),pixelHeight:1792,pixelWidth:2310,sizes:\"calc((max((min(100vw, 1280px) - 10px) * 0.77, 1px) - 20px) * 0.7)\",src:\"https://framerusercontent.com/images/4ufqKkQ3e26dBL9zq8UtzNKp4uY.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/4ufqKkQ3e26dBL9zq8UtzNKp4uY.png?scale-down-to=512 512w,https://framerusercontent.com/images/4ufqKkQ3e26dBL9zq8UtzNKp4uY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4ufqKkQ3e26dBL9zq8UtzNKp4uY.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/4ufqKkQ3e26dBL9zq8UtzNKp4uY.png 2310w\"}},iXj1sUSjr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:764,intrinsicWidth:985,loading:getLoadingLazyAtYPosition(1581),pixelHeight:1792,pixelWidth:2310,sizes:\"calc((max((min(100vw, 1280px) - 10px) * 0.77, 1px) - 20px) * 0.7)\",src:\"https://framerusercontent.com/images/4ufqKkQ3e26dBL9zq8UtzNKp4uY.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/4ufqKkQ3e26dBL9zq8UtzNKp4uY.png?scale-down-to=512 512w,https://framerusercontent.com/images/4ufqKkQ3e26dBL9zq8UtzNKp4uY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4ufqKkQ3e26dBL9zq8UtzNKp4uY.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/4ufqKkQ3e26dBL9zq8UtzNKp4uY.png 2310w\"}},KZL9MPXTQ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:764,intrinsicWidth:985,loading:getLoadingLazyAtYPosition(1629),pixelHeight:1792,pixelWidth:2310,sizes:\"calc((min(100vw, 1280px) - 40px) * 0.7)\",src:\"https://framerusercontent.com/images/4ufqKkQ3e26dBL9zq8UtzNKp4uY.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/4ufqKkQ3e26dBL9zq8UtzNKp4uY.png?scale-down-to=512 512w,https://framerusercontent.com/images/4ufqKkQ3e26dBL9zq8UtzNKp4uY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4ufqKkQ3e26dBL9zq8UtzNKp4uY.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/4ufqKkQ3e26dBL9zq8UtzNKp4uY.png 2310w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:764,intrinsicWidth:985,loading:getLoadingLazyAtYPosition(1581),pixelHeight:1792,pixelWidth:2310,sizes:\"calc((max(min(100vw, 1280px) * 0.77, 1px) - 20px) * 0.7)\",src:\"https://framerusercontent.com/images/4ufqKkQ3e26dBL9zq8UtzNKp4uY.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/4ufqKkQ3e26dBL9zq8UtzNKp4uY.png?scale-down-to=512 512w,https://framerusercontent.com/images/4ufqKkQ3e26dBL9zq8UtzNKp4uY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4ufqKkQ3e26dBL9zq8UtzNKp4uY.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/4ufqKkQ3e26dBL9zq8UtzNKp4uY.png 2310w\"},className:\"framer-1comtqh\",\"data-framer-name\":\"image\",name:\"image\"})})})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-165u1cc\",\"data-framer-name\":\"Initial Sketches\",id:elementId5,name:\"Initial Sketches\",ref:ref7,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lj6y2o\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ad5v4\",\"data-styles-preset\":\"sxK8UYu0S\",children:\"Competitor Research\"})}),className:\"framer-v6pm2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-15rkwti\",\"data-styles-preset\":\"uyt4AohR8\",children:\"Wait, there is already an app for TTC?\"})}),className:\"framer-1nby1do\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12jcxd8\",\"data-styles-preset\":\"fLgbQTpdo\",children:\"\\\"Why don't people use it? Some people aren't even aware that the app exists.\\\"\"})}),className:\"framer-12ymgho\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19rck6m\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Cc1j5wdp6:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:905.5,intrinsicWidth:1051,loading:getLoadingLazyAtYPosition(2812),pixelHeight:1811,pixelWidth:2102,sizes:\"calc(min(max((min(100vw, 1280px) - 10px) * 0.77, 1px) - 20px, 1392px) - 40px)\",src:\"https://framerusercontent.com/images/rNsT1d26g1ZYrdUAI0TQqIES9IM.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/rNsT1d26g1ZYrdUAI0TQqIES9IM.png?scale-down-to=512 512w,https://framerusercontent.com/images/rNsT1d26g1ZYrdUAI0TQqIES9IM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/rNsT1d26g1ZYrdUAI0TQqIES9IM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/rNsT1d26g1ZYrdUAI0TQqIES9IM.png 2386w\"}},iXj1sUSjr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:905.5,intrinsicWidth:1051,loading:getLoadingLazyAtYPosition(2812),pixelHeight:1811,pixelWidth:2102,sizes:\"calc(min(max((min(100vw, 1280px) - 10px) * 0.77, 1px) - 20px, 1392px) - 40px)\",src:\"https://framerusercontent.com/images/rNsT1d26g1ZYrdUAI0TQqIES9IM.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/rNsT1d26g1ZYrdUAI0TQqIES9IM.png?scale-down-to=512 512w,https://framerusercontent.com/images/rNsT1d26g1ZYrdUAI0TQqIES9IM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/rNsT1d26g1ZYrdUAI0TQqIES9IM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/rNsT1d26g1ZYrdUAI0TQqIES9IM.png 2386w\"}},KZL9MPXTQ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:905.5,intrinsicWidth:1051,loading:getLoadingLazyAtYPosition(2716),pixelHeight:1811,pixelWidth:2102,sizes:\"calc(min(min(100vw, 1280px) - 40px, 1392px) - 40px)\",src:\"https://framerusercontent.com/images/rNsT1d26g1ZYrdUAI0TQqIES9IM.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/rNsT1d26g1ZYrdUAI0TQqIES9IM.png?scale-down-to=512 512w,https://framerusercontent.com/images/rNsT1d26g1ZYrdUAI0TQqIES9IM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/rNsT1d26g1ZYrdUAI0TQqIES9IM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/rNsT1d26g1ZYrdUAI0TQqIES9IM.png 2386w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:905.5,intrinsicWidth:1051,loading:getLoadingLazyAtYPosition(2812),pixelHeight:1811,pixelWidth:2102,sizes:\"calc(min(max(min(100vw, 1280px) * 0.77, 1px) - 20px, 1392px) - 40px)\",src:\"https://framerusercontent.com/images/rNsT1d26g1ZYrdUAI0TQqIES9IM.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/rNsT1d26g1ZYrdUAI0TQqIES9IM.png?scale-down-to=512 512w,https://framerusercontent.com/images/rNsT1d26g1ZYrdUAI0TQqIES9IM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/rNsT1d26g1ZYrdUAI0TQqIES9IM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/rNsT1d26g1ZYrdUAI0TQqIES9IM.png 2386w\"},className:\"framer-dv9twh\",\"data-framer-name\":\"image\",name:\"image\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12jcxd8\",\"data-styles-preset\":\"fLgbQTpdo\",children:\"And let's see other map apps that people usually use.\"})}),className:\"framer-1ns3060\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ed16ep\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Cc1j5wdp6:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2180,intrinsicWidth:2530,loading:getLoadingLazyAtYPosition(3850.5),pixelHeight:4360,pixelWidth:5060,sizes:\"calc(min(max((min(100vw, 1280px) - 10px) * 0.77, 1px) - 20px, 1392px) - 40px)\",src:\"https://framerusercontent.com/images/FN8xOPbfugdYp4IBFO7ztJnQUsw.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/FN8xOPbfugdYp4IBFO7ztJnQUsw.png?scale-down-to=512 512w,https://framerusercontent.com/images/FN8xOPbfugdYp4IBFO7ztJnQUsw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/FN8xOPbfugdYp4IBFO7ztJnQUsw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/FN8xOPbfugdYp4IBFO7ztJnQUsw.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/FN8xOPbfugdYp4IBFO7ztJnQUsw.png 5060w\"}},iXj1sUSjr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2180,intrinsicWidth:2530,loading:getLoadingLazyAtYPosition(3850.5),pixelHeight:4360,pixelWidth:5060,sizes:\"calc(min(max((min(100vw, 1280px) - 10px) * 0.77, 1px) - 20px, 1392px) - 40px)\",src:\"https://framerusercontent.com/images/FN8xOPbfugdYp4IBFO7ztJnQUsw.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/FN8xOPbfugdYp4IBFO7ztJnQUsw.png?scale-down-to=512 512w,https://framerusercontent.com/images/FN8xOPbfugdYp4IBFO7ztJnQUsw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/FN8xOPbfugdYp4IBFO7ztJnQUsw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/FN8xOPbfugdYp4IBFO7ztJnQUsw.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/FN8xOPbfugdYp4IBFO7ztJnQUsw.png 5060w\"}},KZL9MPXTQ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2180,intrinsicWidth:2530,loading:getLoadingLazyAtYPosition(3754.5),pixelHeight:4360,pixelWidth:5060,sizes:\"calc(min(min(100vw, 1280px) - 40px, 1392px) - 40px)\",src:\"https://framerusercontent.com/images/FN8xOPbfugdYp4IBFO7ztJnQUsw.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/FN8xOPbfugdYp4IBFO7ztJnQUsw.png?scale-down-to=512 512w,https://framerusercontent.com/images/FN8xOPbfugdYp4IBFO7ztJnQUsw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/FN8xOPbfugdYp4IBFO7ztJnQUsw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/FN8xOPbfugdYp4IBFO7ztJnQUsw.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/FN8xOPbfugdYp4IBFO7ztJnQUsw.png 5060w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2180,intrinsicWidth:2530,loading:getLoadingLazyAtYPosition(3850.5),pixelHeight:4360,pixelWidth:5060,sizes:\"calc(min(max(min(100vw, 1280px) * 0.77, 1px) - 20px, 1392px) - 40px)\",src:\"https://framerusercontent.com/images/FN8xOPbfugdYp4IBFO7ztJnQUsw.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/FN8xOPbfugdYp4IBFO7ztJnQUsw.png?scale-down-to=512 512w,https://framerusercontent.com/images/FN8xOPbfugdYp4IBFO7ztJnQUsw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/FN8xOPbfugdYp4IBFO7ztJnQUsw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/FN8xOPbfugdYp4IBFO7ztJnQUsw.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/FN8xOPbfugdYp4IBFO7ztJnQUsw.png 5060w\"},className:\"framer-1fim33k\",\"data-framer-name\":\"image\",name:\"image\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-15rkwti\",\"data-styles-preset\":\"uyt4AohR8\",children:\"There are many strong competitors, and the TTC map app lacks an effective and appealing user experience (UX) and user interface (UI).\"})}),className:\"framer-inahs8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12jcxd8\",\"data-styles-preset\":\"fLgbQTpdo\",children:\"Why are other map apps a strong competitor? And which feature should be reflected in the solution from them?\"})}),className:\"framer-1194htf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-rfv4rw\",\"data-border\":true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Cc1j5wdp6:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1199.5,intrinsicWidth:1363.5,loading:getLoadingLazyAtYPosition(6242.5),pixelHeight:2399,pixelWidth:2727,sizes:\"calc(min(max((min(100vw, 1280px) - 10px) * 0.77, 1px) - 20px, 1392px) - 40px)\",src:\"https://framerusercontent.com/images/xqfPtjkCyo5PpyWfriQ8XeOKGIg.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/xqfPtjkCyo5PpyWfriQ8XeOKGIg.png?scale-down-to=512 512w,https://framerusercontent.com/images/xqfPtjkCyo5PpyWfriQ8XeOKGIg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xqfPtjkCyo5PpyWfriQ8XeOKGIg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/xqfPtjkCyo5PpyWfriQ8XeOKGIg.png 2727w\"}},iXj1sUSjr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1199.5,intrinsicWidth:1363.5,loading:getLoadingLazyAtYPosition(6242.5),pixelHeight:2399,pixelWidth:2727,sizes:\"calc(min(max((min(100vw, 1280px) - 10px) * 0.77, 1px) - 20px, 1392px) - 40px)\",src:\"https://framerusercontent.com/images/xqfPtjkCyo5PpyWfriQ8XeOKGIg.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/xqfPtjkCyo5PpyWfriQ8XeOKGIg.png?scale-down-to=512 512w,https://framerusercontent.com/images/xqfPtjkCyo5PpyWfriQ8XeOKGIg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xqfPtjkCyo5PpyWfriQ8XeOKGIg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/xqfPtjkCyo5PpyWfriQ8XeOKGIg.png 2727w\"}},KZL9MPXTQ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1199.5,intrinsicWidth:1363.5,loading:getLoadingLazyAtYPosition(6146.5),pixelHeight:2399,pixelWidth:2727,sizes:\"calc(min(min(100vw, 1280px) - 40px, 1392px) - 40px)\",src:\"https://framerusercontent.com/images/xqfPtjkCyo5PpyWfriQ8XeOKGIg.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/xqfPtjkCyo5PpyWfriQ8XeOKGIg.png?scale-down-to=512 512w,https://framerusercontent.com/images/xqfPtjkCyo5PpyWfriQ8XeOKGIg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xqfPtjkCyo5PpyWfriQ8XeOKGIg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/xqfPtjkCyo5PpyWfriQ8XeOKGIg.png 2727w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1199.5,intrinsicWidth:1363.5,loading:getLoadingLazyAtYPosition(6242.5),pixelHeight:2399,pixelWidth:2727,sizes:\"calc(min(max(min(100vw, 1280px) * 0.77, 1px) - 20px, 1392px) - 40px)\",src:\"https://framerusercontent.com/images/xqfPtjkCyo5PpyWfriQ8XeOKGIg.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/xqfPtjkCyo5PpyWfriQ8XeOKGIg.png?scale-down-to=512 512w,https://framerusercontent.com/images/xqfPtjkCyo5PpyWfriQ8XeOKGIg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xqfPtjkCyo5PpyWfriQ8XeOKGIg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/xqfPtjkCyo5PpyWfriQ8XeOKGIg.png 2727w\"},className:\"framer-1fmyjx0\",\"data-framer-name\":\"image\",name:\"image\"})})})]})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1bbyu2h\",\"data-framer-name\":\"User flow\",id:elementId6,name:\"User flow\",ref:ref8,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2h9isu\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ad5v4\",\"data-styles-preset\":\"sxK8UYu0S\",children:\"User interview\"})}),className:\"framer-mnnkcf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12jcxd8\",\"data-styles-preset\":\"fLgbQTpdo\",children:\"Out of five interviewees\u2026\"})}),className:\"framer-y2xwf1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ya8qx\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Cc1j5wdp6:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2280,intrinsicWidth:2342,loading:getLoadingLazyAtYPosition(7850),pixelHeight:4560,pixelWidth:4684,sizes:\"max(min(max((min(100vw, 1280px) - 10px) * 0.77, 1px) - 20px, 1392px) - 40px, 1px)\",src:\"https://framerusercontent.com/images/7gWquSucxNL5apRdcIyttrridNA.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/7gWquSucxNL5apRdcIyttrridNA.png?scale-down-to=512 512w,https://framerusercontent.com/images/7gWquSucxNL5apRdcIyttrridNA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7gWquSucxNL5apRdcIyttrridNA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/7gWquSucxNL5apRdcIyttrridNA.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/7gWquSucxNL5apRdcIyttrridNA.png 4684w\"}},iXj1sUSjr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2280,intrinsicWidth:2342,loading:getLoadingLazyAtYPosition(7850),pixelHeight:4560,pixelWidth:4684,sizes:\"max(min(max((min(100vw, 1280px) - 10px) * 0.77, 1px) - 20px, 1392px) - 40px, 1px)\",src:\"https://framerusercontent.com/images/7gWquSucxNL5apRdcIyttrridNA.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/7gWquSucxNL5apRdcIyttrridNA.png?scale-down-to=512 512w,https://framerusercontent.com/images/7gWquSucxNL5apRdcIyttrridNA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7gWquSucxNL5apRdcIyttrridNA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/7gWquSucxNL5apRdcIyttrridNA.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/7gWquSucxNL5apRdcIyttrridNA.png 4684w\"}},KZL9MPXTQ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2280,intrinsicWidth:2342,loading:getLoadingLazyAtYPosition(7610),pixelHeight:4560,pixelWidth:4684,sizes:\"max(min(min(100vw, 1280px) - 40px, 1392px) - 40px, 1px)\",src:\"https://framerusercontent.com/images/7gWquSucxNL5apRdcIyttrridNA.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/7gWquSucxNL5apRdcIyttrridNA.png?scale-down-to=512 512w,https://framerusercontent.com/images/7gWquSucxNL5apRdcIyttrridNA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7gWquSucxNL5apRdcIyttrridNA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/7gWquSucxNL5apRdcIyttrridNA.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/7gWquSucxNL5apRdcIyttrridNA.png 4684w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2280,intrinsicWidth:2342,loading:getLoadingLazyAtYPosition(7850),pixelHeight:4560,pixelWidth:4684,sizes:\"max(min(max(min(100vw, 1280px) * 0.77, 1px) - 20px, 1392px) - 40px, 1px)\",src:\"https://framerusercontent.com/images/7gWquSucxNL5apRdcIyttrridNA.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/7gWquSucxNL5apRdcIyttrridNA.png?scale-down-to=512 512w,https://framerusercontent.com/images/7gWquSucxNL5apRdcIyttrridNA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7gWquSucxNL5apRdcIyttrridNA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/7gWquSucxNL5apRdcIyttrridNA.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/7gWquSucxNL5apRdcIyttrridNA.png 4684w\"},className:\"framer-10oeevl\",\"data-framer-name\":\"image\",name:\"image\"})})})]})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-yo9i7p\",\"data-framer-name\":\"Challenge\",id:elementId7,name:\"Challenge\",ref:ref9,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h9vn1x\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ad5v4\",\"data-styles-preset\":\"sxK8UYu0S\",children:\"User persona & journey mapping\"})}),className:\"framer-11l6wrh\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-15rkwti\",\"data-styles-preset\":\"uyt4AohR8\",children:\"Considering various age groups' challenges to identify the critical issues associated with using TTC. \"})}),className:\"framer-1hpzl18\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-12jcxd8\",\"data-styles-preset\":\"fLgbQTpdo\",children:[\"Considering various age groups' challenges, I aimed to identify the critical issues associated with using TTC. \",/*#__PURE__*/_jsx(\"br\",{}),\"Based on the personas and journey maps, I came up with potential solutions based on the problems identified.\"]})}),className:\"framer-1jkagqr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-793edo\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wkwuwv-container\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:10,height:\"100%\",id:\"dL2UdFo4b\",layoutId:\"dL2UdFo4b\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,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:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:509,intrinsicWidth:1019,pixelHeight:1018,pixelWidth:2038,src:\"https://framerusercontent.com/images/a3DzSLbIWCIMicrDh7H6PrChPU.png\"},className:\"framer-13fk58x\",\"data-framer-name\":\"image\",name:\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:494,intrinsicWidth:989,pixelHeight:988,pixelWidth:1978,src:\"https://framerusercontent.com/images/S3aUQ31EUqwcOrpAmPmrhz2jPJs.png\"},className:\"framer-1jhek6s\",\"data-framer-name\":\"image\",name:\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:488,intrinsicWidth:980,pixelHeight:976,pixelWidth:1960,src:\"https://framerusercontent.com/images/xdtr0P6TFMpw1JEOcrWcIkhPFw.png\"},className:\"framer-2x9ccz\",\"data-framer-name\":\"image\",name:\"image\"})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-45i2sq\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-41cndv-container\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:10,height:\"100%\",id:\"p1d2uSLj8\",layoutId:\"p1d2uSLj8\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,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:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:781.5,intrinsicWidth:1995,pixelHeight:1563,pixelWidth:3990,src:\"https://framerusercontent.com/images/EYqImObjN3zyajr3LDYqRUss.png\"},className:\"framer-2gjdl7\",\"data-framer-name\":\"image\",name:\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:781.5,intrinsicWidth:1996,pixelHeight:1563,pixelWidth:3992,src:\"https://framerusercontent.com/images/h7UdTOUJe6sP8cxOoEhFf74HFkM.png\"},className:\"framer-pejx8c\",\"data-framer-name\":\"image\",name:\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:781.5,intrinsicWidth:1996,pixelHeight:1563,pixelWidth:3992,src:\"https://framerusercontent.com/images/cre7GjzgZLs0KFYQI3SQfYBIDPw.png\"},className:\"framer-1nw0a1f\",\"data-framer-name\":\"image\",name:\"image\"})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{width:\"100%\"},width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ky8x02\",\"data-framer-name\":\"UT 1\",id:elementId8,name:\"UT 1\",ref:ref10,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jciovg\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ad5v4\",\"data-styles-preset\":\"sxK8UYu0S\",children:\"Initial wireframe & user testing\"})}),className:\"framer-1fj463q\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-15rkwti\",\"data-styles-preset\":\"uyt4AohR8\",children:[\"UI is hard to navigate. \",/*#__PURE__*/_jsx(\"br\",{}),\"There is too much information in one page.\"]})}),className:\"framer-1ix98bk\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12jcxd8\",\"data-styles-preset\":\"fLgbQTpdo\",children:\"The top prioritized features are:\"}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-12jcxd8\",\"data-styles-preset\":\"fLgbQTpdo\",children:[\"1. Consolidating all transportation information on a single screen.\",/*#__PURE__*/_jsx(\"br\",{}),\"2. Using distinct icons to represent each mode of transportation.\"]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12jcxd8\",\"data-styles-preset\":\"fLgbQTpdo\",children:'Following the initial wireframe, the main feedback received was \"too much information.\"'})]}),className:\"framer-iwamem\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12sdogl\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Cc1j5wdp6:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:919,intrinsicWidth:1135,loading:getLoadingLazyAtYPosition(11784),pixelHeight:1838,pixelWidth:2270,sizes:\"calc(min(max((min(100vw, 1280px) - 10px) * 0.77, 1px) - 20px, 1392px) - 40px)\",src:\"https://framerusercontent.com/images/3moiLqEjFxttRimuCS85ylYy0QQ.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/3moiLqEjFxttRimuCS85ylYy0QQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/3moiLqEjFxttRimuCS85ylYy0QQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/3moiLqEjFxttRimuCS85ylYy0QQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/3moiLqEjFxttRimuCS85ylYy0QQ.png 2270w\"}},iXj1sUSjr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:919,intrinsicWidth:1135,loading:getLoadingLazyAtYPosition(11784),pixelHeight:1838,pixelWidth:2270,sizes:\"calc(min(max((min(100vw, 1280px) - 10px) * 0.77, 1px) - 20px, 1392px) - 40px)\",src:\"https://framerusercontent.com/images/3moiLqEjFxttRimuCS85ylYy0QQ.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/3moiLqEjFxttRimuCS85ylYy0QQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/3moiLqEjFxttRimuCS85ylYy0QQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/3moiLqEjFxttRimuCS85ylYy0QQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/3moiLqEjFxttRimuCS85ylYy0QQ.png 2270w\"}},KZL9MPXTQ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:919,intrinsicWidth:1135,loading:getLoadingLazyAtYPosition(11256),pixelHeight:1838,pixelWidth:2270,sizes:\"calc(min(min(100vw, 1280px) - 40px, 1392px) - 40px)\",src:\"https://framerusercontent.com/images/3moiLqEjFxttRimuCS85ylYy0QQ.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/3moiLqEjFxttRimuCS85ylYy0QQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/3moiLqEjFxttRimuCS85ylYy0QQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/3moiLqEjFxttRimuCS85ylYy0QQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/3moiLqEjFxttRimuCS85ylYy0QQ.png 2270w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:919,intrinsicWidth:1135,loading:getLoadingLazyAtYPosition(11784),pixelHeight:1838,pixelWidth:2270,sizes:\"calc(min(max(min(100vw, 1280px) * 0.77, 1px) - 20px, 1392px) - 40px)\",src:\"https://framerusercontent.com/images/3moiLqEjFxttRimuCS85ylYy0QQ.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/3moiLqEjFxttRimuCS85ylYy0QQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/3moiLqEjFxttRimuCS85ylYy0QQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/3moiLqEjFxttRimuCS85ylYy0QQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/3moiLqEjFxttRimuCS85ylYy0QQ.png 2270w\"},className:\"framer-1v5zm1q\",\"data-framer-name\":\"image\",name:\"image\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-15rkwti\",\"data-styles-preset\":\"uyt4AohR8\",children:[\"Based on the user feedback, \",/*#__PURE__*/_jsx(\"br\",{}),\"sketching a new wireframe for better UX to reach the goals\"]})}),className:\"framer-74x2r8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ffofuh\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Cc1j5wdp6:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:914,intrinsicWidth:1319,loading:getLoadingLazyAtYPosition(12836),pixelHeight:1828,pixelWidth:2638,sizes:\"calc(min(max((min(100vw, 1280px) - 10px) * 0.77, 1px) - 20px, 1392px) - 20px)\",src:\"https://framerusercontent.com/images/7MzWu4vSUR4gUzbqBzfvBlrcrE.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/7MzWu4vSUR4gUzbqBzfvBlrcrE.png?scale-down-to=512 512w,https://framerusercontent.com/images/7MzWu4vSUR4gUzbqBzfvBlrcrE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7MzWu4vSUR4gUzbqBzfvBlrcrE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/7MzWu4vSUR4gUzbqBzfvBlrcrE.png 2638w\"}},iXj1sUSjr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:914,intrinsicWidth:1319,loading:getLoadingLazyAtYPosition(12836),pixelHeight:1828,pixelWidth:2638,sizes:\"calc(min(max((min(100vw, 1280px) - 10px) * 0.77, 1px) - 20px, 1392px) - 20px)\",src:\"https://framerusercontent.com/images/7MzWu4vSUR4gUzbqBzfvBlrcrE.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/7MzWu4vSUR4gUzbqBzfvBlrcrE.png?scale-down-to=512 512w,https://framerusercontent.com/images/7MzWu4vSUR4gUzbqBzfvBlrcrE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7MzWu4vSUR4gUzbqBzfvBlrcrE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/7MzWu4vSUR4gUzbqBzfvBlrcrE.png 2638w\"}},KZL9MPXTQ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:914,intrinsicWidth:1319,loading:getLoadingLazyAtYPosition(12308),pixelHeight:1828,pixelWidth:2638,sizes:\"calc(min(min(100vw, 1280px) - 40px, 1392px) - 20px)\",src:\"https://framerusercontent.com/images/7MzWu4vSUR4gUzbqBzfvBlrcrE.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/7MzWu4vSUR4gUzbqBzfvBlrcrE.png?scale-down-to=512 512w,https://framerusercontent.com/images/7MzWu4vSUR4gUzbqBzfvBlrcrE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7MzWu4vSUR4gUzbqBzfvBlrcrE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/7MzWu4vSUR4gUzbqBzfvBlrcrE.png 2638w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:914,intrinsicWidth:1319,loading:getLoadingLazyAtYPosition(12836),pixelHeight:1828,pixelWidth:2638,sizes:\"calc(min(max(min(100vw, 1280px) * 0.77, 1px) - 20px, 1392px) - 20px)\",src:\"https://framerusercontent.com/images/7MzWu4vSUR4gUzbqBzfvBlrcrE.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/7MzWu4vSUR4gUzbqBzfvBlrcrE.png?scale-down-to=512 512w,https://framerusercontent.com/images/7MzWu4vSUR4gUzbqBzfvBlrcrE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7MzWu4vSUR4gUzbqBzfvBlrcrE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/7MzWu4vSUR4gUzbqBzfvBlrcrE.png 2638w\"},className:\"framer-1c99zqu\",\"data-framer-name\":\"image\",name:\"image\"})})})]})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ewpiac\",\"data-framer-name\":\"Final image\",id:elementId9,name:\"Final image\",ref:ref11,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-yc155m\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ad5v4\",\"data-styles-preset\":\"sxK8UYu0S\",children:\"FINAL SOLUTION\"})}),className:\"framer-1j5pvwr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Cc1j5wdp6:{background:{alt:\"Image of coffee being poured into a mug\",fit:\"fill\",intrinsicHeight:6217,intrinsicWidth:4145,loading:getLoadingLazyAtYPosition(14059),pixelHeight:2380,pixelWidth:3726,sizes:\"min(max((min(100vw, 1280px) - 10px) * 0.77, 1px) - 20px, 1392px)\",src:\"https://framerusercontent.com/images/jadhKctrvDlHjsj7Da3uj7dAjEQ.png\",srcSet:\"https://framerusercontent.com/images/jadhKctrvDlHjsj7Da3uj7dAjEQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/jadhKctrvDlHjsj7Da3uj7dAjEQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jadhKctrvDlHjsj7Da3uj7dAjEQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/jadhKctrvDlHjsj7Da3uj7dAjEQ.png 3726w\"}},iXj1sUSjr:{background:{alt:\"Image of coffee being poured into a mug\",fit:\"fill\",intrinsicHeight:6217,intrinsicWidth:4145,loading:getLoadingLazyAtYPosition(14059),pixelHeight:2380,pixelWidth:3726,sizes:\"min(max((min(100vw, 1280px) - 10px) * 0.77, 1px) - 20px, 1392px)\",src:\"https://framerusercontent.com/images/jadhKctrvDlHjsj7Da3uj7dAjEQ.png\",srcSet:\"https://framerusercontent.com/images/jadhKctrvDlHjsj7Da3uj7dAjEQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/jadhKctrvDlHjsj7Da3uj7dAjEQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jadhKctrvDlHjsj7Da3uj7dAjEQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/jadhKctrvDlHjsj7Da3uj7dAjEQ.png 3726w\"}},KZL9MPXTQ:{background:{alt:\"Image of coffee being poured into a mug\",fit:\"fill\",intrinsicHeight:6217,intrinsicWidth:4145,loading:getLoadingLazyAtYPosition(13387),pixelHeight:2380,pixelWidth:3726,sizes:\"min(min(100vw, 1280px) - 40px, 1392px)\",src:\"https://framerusercontent.com/images/jadhKctrvDlHjsj7Da3uj7dAjEQ.png\",srcSet:\"https://framerusercontent.com/images/jadhKctrvDlHjsj7Da3uj7dAjEQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/jadhKctrvDlHjsj7Da3uj7dAjEQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jadhKctrvDlHjsj7Da3uj7dAjEQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/jadhKctrvDlHjsj7Da3uj7dAjEQ.png 3726w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Image of coffee being poured into a mug\",fit:\"fill\",intrinsicHeight:6217,intrinsicWidth:4145,loading:getLoadingLazyAtYPosition(14059),pixelHeight:2380,pixelWidth:3726,sizes:\"min(max(min(100vw, 1280px) * 0.77, 1px) - 20px, 1392px)\",src:\"https://framerusercontent.com/images/jadhKctrvDlHjsj7Da3uj7dAjEQ.png\",srcSet:\"https://framerusercontent.com/images/jadhKctrvDlHjsj7Da3uj7dAjEQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/jadhKctrvDlHjsj7Da3uj7dAjEQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jadhKctrvDlHjsj7Da3uj7dAjEQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/jadhKctrvDlHjsj7Da3uj7dAjEQ.png 3726w\"},className:\"framer-ftvco5\"})})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-2g2kmq\",\"data-framer-name\":\"Setting\",name:\"Setting\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q9l4yv\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ad5v4\",\"data-styles-preset\":\"sxK8UYu0S\",children:\"Main page\"})}),className:\"framer-1gikd1b\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-15rkwti\",\"data-styles-preset\":\"uyt4AohR8\",children:\"Three sections provide information on three different transportation types (Bus, Streetcar, and Subway). \"})}),className:\"framer-1kvzgyl\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12jcxd8\",\"data-styles-preset\":\"fLgbQTpdo\",children:\"Users can check the remaining time of nearby transportation based on their location.\"})}),className:\"framer-1ve25qm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-i7yx5a\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Cc1j5wdp6:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:844,intrinsicWidth:390,loading:getLoadingLazyAtYPosition(14956),pixelHeight:1688,pixelWidth:780,sizes:\"calc(min(max((min(100vw, 1280px) - 10px) * 0.77, 1px) - 20px, 1392px) * 0.3)\",src:\"https://framerusercontent.com/images/qNAQQhr6FCVtiu8X5aboeMT0LI.gif?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/qNAQQhr6FCVtiu8X5aboeMT0LI.gif 780w\"}},iXj1sUSjr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:844,intrinsicWidth:390,loading:getLoadingLazyAtYPosition(14956),pixelHeight:1688,pixelWidth:780,sizes:\"calc(min(max((min(100vw, 1280px) - 10px) * 0.77, 1px) - 20px, 1392px) * 0.3)\",src:\"https://framerusercontent.com/images/qNAQQhr6FCVtiu8X5aboeMT0LI.gif?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/qNAQQhr6FCVtiu8X5aboeMT0LI.gif 780w\"}},KZL9MPXTQ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:844,intrinsicWidth:390,loading:getLoadingLazyAtYPosition(14140),pixelHeight:1688,pixelWidth:780,sizes:\"min(min(100vw, 1280px) - 40px, 1392px)\",src:\"https://framerusercontent.com/images/qNAQQhr6FCVtiu8X5aboeMT0LI.gif?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/qNAQQhr6FCVtiu8X5aboeMT0LI.gif 780w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:844,intrinsicWidth:390,loading:getLoadingLazyAtYPosition(14956),pixelHeight:1688,pixelWidth:780,sizes:\"calc(min(max(min(100vw, 1280px) * 0.77, 1px) - 20px, 1392px) * 0.3)\",src:\"https://framerusercontent.com/images/qNAQQhr6FCVtiu8X5aboeMT0LI.gif?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/qNAQQhr6FCVtiu8X5aboeMT0LI.gif 780w\"},className:\"framer-s7a6tr\",\"data-framer-name\":\"main2\",name:\"main2\"})})})]})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-19mm6da\",\"data-framer-name\":\"Long press\",name:\"Long press\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15wvx02\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ad5v4\",\"data-styles-preset\":\"sxK8UYu0S\",children:\"Notification Page\"})}),className:\"framer-13f40rk\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-15rkwti\",\"data-styles-preset\":\"uyt4AohR8\",children:\"The notification centre enables users to review any alerts related to TTC. \"})}),className:\"framer-6kme0m\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12jcxd8\",\"data-styles-preset\":\"fLgbQTpdo\",children:\"The previous notification that users had already checked automatically will be turned grey.\"})}),className:\"framer-bfgns\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-15albs\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Cc1j5wdp6:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:844,intrinsicWidth:390,loading:getLoadingLazyAtYPosition(16267),pixelHeight:1688,pixelWidth:780,sizes:\"calc(min(max((min(100vw, 1280px) - 10px) * 0.77, 1px) - 20px, 1392px) * 0.3)\",src:\"https://framerusercontent.com/images/ADJydc7opkeEA92FjqJcitzNk.gif?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/ADJydc7opkeEA92FjqJcitzNk.gif 780w\"}},iXj1sUSjr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:844,intrinsicWidth:390,loading:getLoadingLazyAtYPosition(16267),pixelHeight:1688,pixelWidth:780,sizes:\"calc(min(max((min(100vw, 1280px) - 10px) * 0.77, 1px) - 20px, 1392px) * 0.3)\",src:\"https://framerusercontent.com/images/ADJydc7opkeEA92FjqJcitzNk.gif?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/ADJydc7opkeEA92FjqJcitzNk.gif 780w\"}},KZL9MPXTQ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:844,intrinsicWidth:390,loading:getLoadingLazyAtYPosition(15307),pixelHeight:1688,pixelWidth:780,sizes:\"min(min(100vw, 1280px) - 40px, 1392px)\",src:\"https://framerusercontent.com/images/ADJydc7opkeEA92FjqJcitzNk.gif?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/ADJydc7opkeEA92FjqJcitzNk.gif 780w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:844,intrinsicWidth:390,loading:getLoadingLazyAtYPosition(16267),pixelHeight:1688,pixelWidth:780,sizes:\"calc(min(max(min(100vw, 1280px) * 0.77, 1px) - 20px, 1392px) * 0.3)\",src:\"https://framerusercontent.com/images/ADJydc7opkeEA92FjqJcitzNk.gif?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/ADJydc7opkeEA92FjqJcitzNk.gif 780w\"},className:\"framer-fukpzr\",\"data-framer-name\":\"alert\",name:\"alert\"})})})]})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1pahv05\",\"data-framer-name\":\"AR Fitting Page\",name:\"AR Fitting Page\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d35gn4\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ad5v4\",\"data-styles-preset\":\"sxK8UYu0S\",children:\"Search Page\"})}),className:\"framer-9i7ibo\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-15rkwti\",\"data-styles-preset\":\"uyt4AohR8\",children:\"The search option is available to look up routes or timetables.\"})}),className:\"framer-1ion4p2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12jcxd8\",\"data-styles-preset\":\"fLgbQTpdo\",children:\"Of course, all TTC options are available, along with the timetable and routes!\"})}),className:\"framer-ahifaq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-unfp2k\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Cc1j5wdp6:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:844,intrinsicWidth:390,loading:getLoadingLazyAtYPosition(17578),pixelHeight:1688,pixelWidth:780,sizes:\"calc(min(max((min(100vw, 1280px) - 10px) * 0.77, 1px) - 20px, 1392px) * 0.3)\",src:\"https://framerusercontent.com/images/lMhu2pd3sPQ0yVyPomXONXliIo.gif?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/lMhu2pd3sPQ0yVyPomXONXliIo.gif 780w\"}},iXj1sUSjr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:844,intrinsicWidth:390,loading:getLoadingLazyAtYPosition(17578),pixelHeight:1688,pixelWidth:780,sizes:\"calc(min(max((min(100vw, 1280px) - 10px) * 0.77, 1px) - 20px, 1392px) * 0.3)\",src:\"https://framerusercontent.com/images/lMhu2pd3sPQ0yVyPomXONXliIo.gif?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/lMhu2pd3sPQ0yVyPomXONXliIo.gif 780w\"}},KZL9MPXTQ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:844,intrinsicWidth:390,loading:getLoadingLazyAtYPosition(16474),pixelHeight:1688,pixelWidth:780,sizes:\"min(min(100vw, 1280px) - 40px, 1392px)\",src:\"https://framerusercontent.com/images/lMhu2pd3sPQ0yVyPomXONXliIo.gif?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/lMhu2pd3sPQ0yVyPomXONXliIo.gif 780w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:844,intrinsicWidth:390,loading:getLoadingLazyAtYPosition(17578),pixelHeight:1688,pixelWidth:780,sizes:\"calc(min(max(min(100vw, 1280px) * 0.77, 1px) - 20px, 1392px) * 0.3)\",src:\"https://framerusercontent.com/images/lMhu2pd3sPQ0yVyPomXONXliIo.gif?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/lMhu2pd3sPQ0yVyPomXONXliIo.gif 780w\"},className:\"framer-244cwn\",\"data-framer-name\":\"alert\",name:\"alert\"})})})]})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1sb7wn1\",\"data-framer-name\":\"Timer\",name:\"Timer\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1akmvrl\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ad5v4\",\"data-styles-preset\":\"sxK8UYu0S\",children:\"Live Schedule Page\"})}),className:\"framer-1q8bwqj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-15rkwti\",\"data-styles-preset\":\"uyt4AohR8\",children:\"The live schedule page displays real-time information, including the current locations of TTC vehicles, operating hours, traffic density, and the estimated time remaining.\"})}),className:\"framer-10g5n3t\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12jcxd8\",\"data-styles-preset\":\"fLgbQTpdo\",children:\"Users can see the number of buses in operation and the anticipated wait time based on location. The colour-coded bar on the left, featuring red, yellow, and green, indicates traffic conditions, allowing users to gauge the expected time left easily.\"})}),className:\"framer-764h58\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kzchsj\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Cc1j5wdp6:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1305,intrinsicWidth:1609,loading:getLoadingLazyAtYPosition(18909),pixelHeight:1826,pixelWidth:2815,positionX:\"center\",positionY:\"center\",sizes:\"calc(min(max((min(100vw, 1280px) - 10px) * 0.77, 1px) - 20px, 1392px) - 40px)\",src:\"https://framerusercontent.com/images/Blv2PSm3pPJxpYPCESpNokPzeDI.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/Blv2PSm3pPJxpYPCESpNokPzeDI.png?scale-down-to=512 512w,https://framerusercontent.com/images/Blv2PSm3pPJxpYPCESpNokPzeDI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Blv2PSm3pPJxpYPCESpNokPzeDI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Blv2PSm3pPJxpYPCESpNokPzeDI.png 2815w\"}},iXj1sUSjr:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1305,intrinsicWidth:1609,loading:getLoadingLazyAtYPosition(18909),pixelHeight:1826,pixelWidth:2815,positionX:\"center\",positionY:\"center\",sizes:\"calc(min(max((min(100vw, 1280px) - 10px) * 0.77, 1px) - 20px, 1392px) - 40px)\",src:\"https://framerusercontent.com/images/Blv2PSm3pPJxpYPCESpNokPzeDI.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/Blv2PSm3pPJxpYPCESpNokPzeDI.png?scale-down-to=512 512w,https://framerusercontent.com/images/Blv2PSm3pPJxpYPCESpNokPzeDI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Blv2PSm3pPJxpYPCESpNokPzeDI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Blv2PSm3pPJxpYPCESpNokPzeDI.png 2815w\"}},KZL9MPXTQ:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1305,intrinsicWidth:1609,loading:getLoadingLazyAtYPosition(17661),pixelHeight:1826,pixelWidth:2815,positionX:\"center\",positionY:\"center\",sizes:\"calc(min(min(100vw, 1280px) - 40px, 1392px) - 40px)\",src:\"https://framerusercontent.com/images/Blv2PSm3pPJxpYPCESpNokPzeDI.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/Blv2PSm3pPJxpYPCESpNokPzeDI.png?scale-down-to=512 512w,https://framerusercontent.com/images/Blv2PSm3pPJxpYPCESpNokPzeDI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Blv2PSm3pPJxpYPCESpNokPzeDI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Blv2PSm3pPJxpYPCESpNokPzeDI.png 2815w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",intrinsicHeight:1305,intrinsicWidth:1609,loading:getLoadingLazyAtYPosition(18909),pixelHeight:1826,pixelWidth:2815,positionX:\"center\",positionY:\"center\",sizes:\"calc(min(max(min(100vw, 1280px) * 0.77, 1px) - 20px, 1392px) - 40px)\",src:\"https://framerusercontent.com/images/Blv2PSm3pPJxpYPCESpNokPzeDI.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/Blv2PSm3pPJxpYPCESpNokPzeDI.png?scale-down-to=512 512w,https://framerusercontent.com/images/Blv2PSm3pPJxpYPCESpNokPzeDI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Blv2PSm3pPJxpYPCESpNokPzeDI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Blv2PSm3pPJxpYPCESpNokPzeDI.png 2815w\"},className:\"framer-k565wp\",\"data-framer-name\":\"image\",name:\"image\",style:{transformPerspective:1200}})})})]})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1bx02xg\",\"data-framer-name\":\"Timer\",id:elementId10,name:\"Timer\",ref:ref12,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-128t2rk\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ad5v4\",\"data-styles-preset\":\"sxK8UYu0S\",children:\"TAKEAWAY\"})}),className:\"framer-1y1ezes\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-15rkwti\",\"data-styles-preset\":\"uyt4AohR8\",children:\"Competitor Research helps to find solutions when the market is competitive.\"})}),className:\"framer-v4g20n\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-12jcxd8\",\"data-styles-preset\":\"fLgbQTpdo\",children:[\"While establishing user experiences of a new design system, the most difficult challenge involved differentiating TO Maps features exclusively. Given the saturated landscape of map applications, my primary focus was devising strategies to distinguish To Maps from its counterparts. I emphasized user feedback and identified their pain points to address this challenge. The paramount issue demanding resolution was the TTC timetable and schedule inaccuracy of existing apps. Thanks to the thorough competitor analysis, I created a page showcasing TTC with real-time location updates, remaining time, and schedules. This solution successfully reached the goal of an improvement in user experience, as validated through user testing following the development of a high-fidelity wireframe.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"If there is an opportunity for further development, it would be great to collaborate with programmers to bring this concept to life. Such a realization would be particularly beneficial for individuals seeking accurate information about TTC, possibly enhancing the overall use of public transportation.\"]})}),className:\"framer-1ssj1rx\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KZL9MPXTQ:{y:19341}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,width:\"min(100vw, 1280px)\",y:20805,children:/*#__PURE__*/_jsx(Container,{className:\"framer-d3qv61-container\",children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"BO_7aZhtK\",layoutId:\"BO_7aZhtK\",style:{width:\"100%\"},width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"40px\",y:938,children:/*#__PURE__*/_jsx(Container,{className:\"framer-fyr6if-container\",layoutScroll:true,children:/*#__PURE__*/_jsx(XButton,{height:\"100%\",id:\"AuqEkTxEl\",layoutId:\"AuqEkTxEl\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-bvK8H { background: var(--token-5b880770-0cf4-4395-b6e8-4f22e4b02acc, rgb(255, 255, 255)) /* {\"name\":\"White\"} */; }`,\".framer-bvK8H.framer-11bqclk, .framer-bvK8H .framer-11bqclk { display: block; }\",\".framer-bvK8H.framer-drfvik { align-content: center; align-items: center; background-color: var(--token-5b880770-0cf4-4395-b6e8-4f22e4b02acc, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1920px; }\",\".framer-bvK8H .framer-1faowur { align-content: center; align-items: center; background-color: var(--token-d85d8d2e-a90b-41e9-8852-32af98456a8d, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1280px; padding: 0px; position: relative; width: 100%; }\",\".framer-bvK8H .framer-qedktd { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-bvK8H .framer-draigz-container { flex: none; height: 44px; position: sticky; top: 0px; width: 1279px; will-change: transform; z-index: 1; }\",\".framer-bvK8H .framer-77g5e5 { 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; position: relative; width: 100%; }\",\".framer-bvK8H .framer-1uxii2x { 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-height: 100vh; max-width: 100%; overflow: hidden; overflow-x: auto; overflow-y: auto; padding: 0px 10px 0px 0px; position: sticky; top: 70px; width: 23%; will-change: transform; z-index: 1; }\",\".framer-bvK8H .framer-848h0g { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 10px 0px; position: relative; width: 100%; }\",\".framer-bvK8H .framer-rq06az, .framer-bvK8H .framer-1cs8j09 { flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-bvK8H .framer-1npazg3, .framer-bvK8H .framer-1awb0wq, .framer-bvK8H .framer-c0guiu, .framer-bvK8H .framer-1dbi3w4, .framer-bvK8H .framer-qywzyx, .framer-bvK8H .framer-e5gdp4, .framer-bvK8H .framer-onc1oz, .framer-bvK8H .framer-li9ppp, .framer-bvK8H .framer-1nby1do, .framer-bvK8H .framer-12ymgho, .framer-bvK8H .framer-1ns3060, .framer-bvK8H .framer-inahs8, .framer-bvK8H .framer-1194htf, .framer-bvK8H .framer-y2xwf1, .framer-bvK8H .framer-1hpzl18, .framer-bvK8H .framer-1jkagqr, .framer-bvK8H .framer-1ix98bk, .framer-bvK8H .framer-iwamem, .framer-bvK8H .framer-74x2r8, .framer-bvK8H .framer-1kvzgyl, .framer-bvK8H .framer-1ve25qm, .framer-bvK8H .framer-6kme0m, .framer-bvK8H .framer-bfgns, .framer-bvK8H .framer-1ion4p2, .framer-bvK8H .framer-ahifaq, .framer-bvK8H .framer-10g5n3t, .framer-bvK8H .framer-764h58, .framer-bvK8H .framer-v4g20n, .framer-bvK8H .framer-1ssj1rx { --framer-link-hover-text-color: var(--token-8856508d-3cdd-4b9d-93c5-9410ff7516dc, #2047f4); --framer-link-text-color: var(--token-d85d8d2e-a90b-41e9-8852-32af98456a8d, #020a36); flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-bvK8H .framer-1v8j7yc, .framer-bvK8H .framer-g60cg4, .framer-bvK8H .framer-x1a76k, .framer-bvK8H .framer-557nne, .framer-bvK8H .framer-sfg99o, .framer-bvK8H .framer-1tdc91p, .framer-bvK8H .framer-jf2etw, .framer-bvK8H .framer-1aeomn1, .framer-bvK8H .framer-1pkagd3, .framer-bvK8H .framer-1shvdoh, .framer-bvK8H .framer-1dkjhi9, .framer-bvK8H .framer-218xhm, .framer-bvK8H .framer-hgabln, .framer-bvK8H .framer-gnipmb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 3px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 4px 0px; position: relative; width: 100%; }\",\".framer-bvK8H .framer-v4zqqs, .framer-bvK8H .framer-17kvbtm, .framer-bvK8H .framer-1vb0ipg, .framer-bvK8H .framer-rl3lce, .framer-bvK8H .framer-1tj2nck { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bvK8H .framer-jt7nit, .framer-bvK8H .framer-1s6nksu, .framer-bvK8H .framer-ufjo7m, .framer-bvK8H .framer-8ovrpo, .framer-bvK8H .framer-1oayopb { --framer-link-hover-text-color: var(--token-8856508d-3cdd-4b9d-93c5-9410ff7516dc, #2047f4); --framer-link-text-color: var(--token-d85d8d2e-a90b-41e9-8852-32af98456a8d, #020a36); flex: 1 0 0px; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-bvK8H .framer-jzknlm, .framer-bvK8H .framer-1rj6a41, .framer-bvK8H .framer-rpvy9z, .framer-bvK8H .framer-5e5gbl, .framer-bvK8H .framer-13wyffl { --framer-link-hover-text-color: var(--token-8856508d-3cdd-4b9d-93c5-9410ff7516dc, #2047f4); --framer-link-text-color: var(--token-d85d8d2e-a90b-41e9-8852-32af98456a8d, #020a36); flex: 2 0 0px; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-bvK8H .framer-umi78s { flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-bvK8H .framer-og3xyo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 30px 0px 10px 0px; position: relative; width: 100%; }\",\".framer-bvK8H .framer-1sszhwz, .framer-bvK8H .framer-7ae4zc, .framer-bvK8H .framer-x3zp4s, .framer-bvK8H .framer-saafhc, .framer-bvK8H .framer-256d3m, .framer-bvK8H .framer-knjo61, .framer-bvK8H .framer-1g0kiei, .framer-bvK8H .framer-srywqr, .framer-bvK8H .framer-1wolvx0, .framer-bvK8H .framer-ro02di { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-bvK8H .framer-yoqkld-container, .framer-bvK8H .framer-922xy5-container, .framer-bvK8H .framer-1cfxuyv-container, .framer-bvK8H .framer-lr0ql6-container, .framer-bvK8H .framer-encx2c-container, .framer-bvK8H .framer-s6ptuo-container, .framer-bvK8H .framer-1vddicl-container, .framer-bvK8H .framer-1hmxn5b-container, .framer-bvK8H .framer-143ek2e-container, .framer-bvK8H .framer-12f7iau-container { flex: 2 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-bvK8H .framer-14ccbuz { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-bvK8H .framer-ayr816 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 10px; position: relative; width: 100%; }\",\".framer-bvK8H .framer-es2h8k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bvK8H .framer-zscdwt { aspect-ratio: 1.3333333333333333 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 724px); overflow: visible; position: relative; width: 1px; }\",\".framer-bvK8H .framer-7ux92m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 100px 0px 128px 0px; position: relative; width: 100%; }\",\".framer-bvK8H .framer-16p7s50, .framer-bvK8H .framer-1w8d5d1, .framer-bvK8H .framer-b6zjk9, .framer-bvK8H .framer-jzdzz9, .framer-bvK8H .framer-1lj6y2o, .framer-bvK8H .framer-2h9isu, .framer-bvK8H .framer-1h9vn1x, .framer-bvK8H .framer-jciovg, .framer-bvK8H .framer-yc155m, .framer-bvK8H .framer-1q9l4yv, .framer-bvK8H .framer-15wvx02, .framer-bvK8H .framer-1d35gn4, .framer-bvK8H .framer-1akmvrl, .framer-bvK8H .framer-128t2rk { 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; max-width: 1392px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-bvK8H .framer-161pswc, .framer-bvK8H .framer-6q20p, .framer-bvK8H .framer-1nyto3l, .framer-bvK8H .framer-165u1cc, .framer-bvK8H .framer-1bbyu2h, .framer-bvK8H .framer-yo9i7p, .framer-bvK8H .framer-ky8x02, .framer-bvK8H .framer-1ewpiac, .framer-bvK8H .framer-2g2kmq, .framer-bvK8H .framer-19mm6da, .framer-bvK8H .framer-1pahv05, .framer-bvK8H .framer-1sb7wn1, .framer-bvK8H .framer-1bx02xg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 128px 0px 128px 0px; position: relative; width: 100%; }\",\".framer-bvK8H .framer-jam4l0, .framer-bvK8H .framer-1b12cib, .framer-bvK8H .framer-1hqtstz, .framer-bvK8H .framer-v6pm2, .framer-bvK8H .framer-mnnkcf, .framer-bvK8H .framer-11l6wrh, .framer-bvK8H .framer-1fj463q, .framer-bvK8H .framer-1j5pvwr, .framer-bvK8H .framer-1gikd1b, .framer-bvK8H .framer-13f40rk, .framer-bvK8H .framer-9i7ibo, .framer-bvK8H .framer-1q8bwqj, .framer-bvK8H .framer-1y1ezes { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-bvK8H .framer-ugsxsg, .framer-bvK8H .framer-793edo, .framer-bvK8H .framer-45i2sq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bvK8H .framer-1comtqh { aspect-ratio: 1.2892670157068062 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 525px); overflow: visible; position: relative; width: 70%; }\",\".framer-bvK8H .framer-19rck6m, .framer-bvK8H .framer-ed16ep { align-content: center; align-items: center; background-color: var(--token-5b880770-0cf4-4395-b6e8-4f22e4b02acc, #ffffff); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 20px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-bvK8H .framer-dv9twh { aspect-ratio: 1.1606847045831032 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 798px); overflow: visible; position: relative; width: 100%; }\",\".framer-bvK8H .framer-1fim33k { aspect-ratio: 1.1605504587155964 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 798px); overflow: visible; position: relative; width: 100%; }\",\".framer-bvK8H .framer-rfv4rw { --border-bottom-width: 1px; --border-color: #222222; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 20px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-bvK8H .framer-1fmyjx0 { aspect-ratio: 1.1367236348478533 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 814px); overflow: visible; position: relative; width: 100%; }\",\".framer-bvK8H .framer-ya8qx { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 20px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-bvK8H .framer-10oeevl { aspect-ratio: 1.0271929824561403 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 902px); overflow: visible; position: relative; width: 1px; }\",\".framer-bvK8H .framer-1wkwuwv-container { flex: none; height: 368px; position: relative; width: 738px; }\",\".framer-bvK8H .framer-13fk58x { aspect-ratio: 2.00196463654224 / 1; height: var(--framer-aspect-ratio-supported, 368px); overflow: visible; position: relative; width: 737px; }\",\".framer-bvK8H .framer-1jhek6s { aspect-ratio: 2.0020242914979756 / 1; height: var(--framer-aspect-ratio-supported, 368px); overflow: visible; position: relative; width: 737px; }\",\".framer-bvK8H .framer-2x9ccz { aspect-ratio: 2.0081967213114753 / 1; height: var(--framer-aspect-ratio-supported, 368px); overflow: visible; position: relative; width: 739px; }\",\".framer-bvK8H .framer-41cndv-container, .framer-bvK8H .framer-d3qv61-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-bvK8H .framer-2gjdl7 { aspect-ratio: 2.55278310940499 / 1; height: var(--framer-aspect-ratio-supported, 400px); overflow: visible; position: relative; width: 1021px; }\",\".framer-bvK8H .framer-pejx8c, .framer-bvK8H .framer-1nw0a1f { aspect-ratio: 2.5540626999360203 / 1; height: var(--framer-aspect-ratio-supported, 400px); overflow: visible; position: relative; width: 1022px; }\",\".framer-bvK8H .framer-12sdogl, .framer-bvK8H .framer-1kzchsj { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 20px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-bvK8H .framer-1v5zm1q { aspect-ratio: 1.2350380848748639 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 750px); overflow: visible; position: relative; width: 100%; }\",\".framer-bvK8H .framer-ffofuh { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 10px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-bvK8H .framer-1c99zqu { aspect-ratio: 1.4431072210065645 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 655px); overflow: visible; position: relative; width: 100%; }\",\".framer-bvK8H .framer-ftvco5 { aspect-ratio: 1.64 / 1; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; box-shadow: 2px 5px 13px 3px rgba(0, 0, 0, 0.05); flex: none; height: var(--framer-aspect-ratio-supported, 589px); max-width: 1392px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-bvK8H .framer-i7yx5a, .framer-bvK8H .framer-15albs, .framer-bvK8H .framer-unfp2k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-bvK8H .framer-s7a6tr, .framer-bvK8H .framer-fukpzr, .framer-bvK8H .framer-244cwn { aspect-ratio: 0.46208530805687204 / 1; box-shadow: 2px 5px 13px 3px rgba(0, 0, 0, 0.05); flex: none; height: var(--framer-aspect-ratio-supported, 627px); overflow: visible; position: relative; width: 30%; }\",\".framer-bvK8H .framer-k565wp { aspect-ratio: 1.2329501915708811 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 751px); overflow: visible; position: relative; width: 100%; }\",\".framer-bvK8H .framer-fyr6if-container { bottom: 22px; flex: none; height: 40px; position: fixed; right: 24px; width: 40px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-bvK8H.framer-drfvik, .framer-bvK8H .framer-1faowur, .framer-bvK8H .framer-qedktd, .framer-bvK8H .framer-77g5e5, .framer-bvK8H .framer-1uxii2x, .framer-bvK8H .framer-848h0g, .framer-bvK8H .framer-1v8j7yc, .framer-bvK8H .framer-v4zqqs, .framer-bvK8H .framer-g60cg4, .framer-bvK8H .framer-17kvbtm, .framer-bvK8H .framer-1vb0ipg, .framer-bvK8H .framer-x1a76k, .framer-bvK8H .framer-rl3lce, .framer-bvK8H .framer-557nne, .framer-bvK8H .framer-1tj2nck, .framer-bvK8H .framer-og3xyo, .framer-bvK8H .framer-sfg99o, .framer-bvK8H .framer-1sszhwz, .framer-bvK8H .framer-1tdc91p, .framer-bvK8H .framer-7ae4zc, .framer-bvK8H .framer-jf2etw, .framer-bvK8H .framer-x3zp4s, .framer-bvK8H .framer-1aeomn1, .framer-bvK8H .framer-saafhc, .framer-bvK8H .framer-1pkagd3, .framer-bvK8H .framer-256d3m, .framer-bvK8H .framer-1shvdoh, .framer-bvK8H .framer-knjo61, .framer-bvK8H .framer-1dkjhi9, .framer-bvK8H .framer-1g0kiei, .framer-bvK8H .framer-218xhm, .framer-bvK8H .framer-srywqr, .framer-bvK8H .framer-hgabln, .framer-bvK8H .framer-1wolvx0, .framer-bvK8H .framer-gnipmb, .framer-bvK8H .framer-ro02di, .framer-bvK8H .framer-14ccbuz, .framer-bvK8H .framer-ayr816, .framer-bvK8H .framer-es2h8k, .framer-bvK8H .framer-7ux92m, .framer-bvK8H .framer-16p7s50, .framer-bvK8H .framer-161pswc, .framer-bvK8H .framer-1w8d5d1, .framer-bvK8H .framer-6q20p, .framer-bvK8H .framer-b6zjk9, .framer-bvK8H .framer-1nyto3l, .framer-bvK8H .framer-jzdzz9, .framer-bvK8H .framer-ugsxsg, .framer-bvK8H .framer-165u1cc, .framer-bvK8H .framer-1lj6y2o, .framer-bvK8H .framer-19rck6m, .framer-bvK8H .framer-ed16ep, .framer-bvK8H .framer-rfv4rw, .framer-bvK8H .framer-1bbyu2h, .framer-bvK8H .framer-2h9isu, .framer-bvK8H .framer-ya8qx, .framer-bvK8H .framer-yo9i7p, .framer-bvK8H .framer-1h9vn1x, .framer-bvK8H .framer-793edo, .framer-bvK8H .framer-45i2sq, .framer-bvK8H .framer-ky8x02, .framer-bvK8H .framer-jciovg, .framer-bvK8H .framer-12sdogl, .framer-bvK8H .framer-ffofuh, .framer-bvK8H .framer-1ewpiac, .framer-bvK8H .framer-yc155m, .framer-bvK8H .framer-2g2kmq, .framer-bvK8H .framer-1q9l4yv, .framer-bvK8H .framer-i7yx5a, .framer-bvK8H .framer-19mm6da, .framer-bvK8H .framer-15wvx02, .framer-bvK8H .framer-15albs, .framer-bvK8H .framer-1pahv05, .framer-bvK8H .framer-1d35gn4, .framer-bvK8H .framer-unfp2k, .framer-bvK8H .framer-1sb7wn1, .framer-bvK8H .framer-1akmvrl, .framer-bvK8H .framer-1kzchsj, .framer-bvK8H .framer-1bx02xg, .framer-bvK8H .framer-128t2rk { gap: 0px; } .framer-bvK8H.framer-drfvik > *, .framer-bvK8H .framer-1faowur > *, .framer-bvK8H .framer-1uxii2x > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-bvK8H.framer-drfvik > :first-child, .framer-bvK8H .framer-1faowur > :first-child, .framer-bvK8H .framer-qedktd > :first-child, .framer-bvK8H .framer-1uxii2x > :first-child, .framer-bvK8H .framer-848h0g > :first-child, .framer-bvK8H .framer-1v8j7yc > :first-child, .framer-bvK8H .framer-g60cg4 > :first-child, .framer-bvK8H .framer-x1a76k > :first-child, .framer-bvK8H .framer-557nne > :first-child, .framer-bvK8H .framer-og3xyo > :first-child, .framer-bvK8H .framer-sfg99o > :first-child, .framer-bvK8H .framer-1tdc91p > :first-child, .framer-bvK8H .framer-jf2etw > :first-child, .framer-bvK8H .framer-1aeomn1 > :first-child, .framer-bvK8H .framer-1pkagd3 > :first-child, .framer-bvK8H .framer-1shvdoh > :first-child, .framer-bvK8H .framer-1dkjhi9 > :first-child, .framer-bvK8H .framer-218xhm > :first-child, .framer-bvK8H .framer-hgabln > :first-child, .framer-bvK8H .framer-gnipmb > :first-child, .framer-bvK8H .framer-14ccbuz > :first-child, .framer-bvK8H .framer-ayr816 > :first-child, .framer-bvK8H .framer-7ux92m > :first-child, .framer-bvK8H .framer-16p7s50 > :first-child, .framer-bvK8H .framer-161pswc > :first-child, .framer-bvK8H .framer-1w8d5d1 > :first-child, .framer-bvK8H .framer-6q20p > :first-child, .framer-bvK8H .framer-b6zjk9 > :first-child, .framer-bvK8H .framer-1nyto3l > :first-child, .framer-bvK8H .framer-jzdzz9 > :first-child, .framer-bvK8H .framer-ugsxsg > :first-child, .framer-bvK8H .framer-165u1cc > :first-child, .framer-bvK8H .framer-1lj6y2o > :first-child, .framer-bvK8H .framer-19rck6m > :first-child, .framer-bvK8H .framer-ed16ep > :first-child, .framer-bvK8H .framer-rfv4rw > :first-child, .framer-bvK8H .framer-1bbyu2h > :first-child, .framer-bvK8H .framer-2h9isu > :first-child, .framer-bvK8H .framer-yo9i7p > :first-child, .framer-bvK8H .framer-1h9vn1x > :first-child, .framer-bvK8H .framer-793edo > :first-child, .framer-bvK8H .framer-45i2sq > :first-child, .framer-bvK8H .framer-ky8x02 > :first-child, .framer-bvK8H .framer-jciovg > :first-child, .framer-bvK8H .framer-12sdogl > :first-child, .framer-bvK8H .framer-ffofuh > :first-child, .framer-bvK8H .framer-1ewpiac > :first-child, .framer-bvK8H .framer-yc155m > :first-child, .framer-bvK8H .framer-2g2kmq > :first-child, .framer-bvK8H .framer-1q9l4yv > :first-child, .framer-bvK8H .framer-i7yx5a > :first-child, .framer-bvK8H .framer-19mm6da > :first-child, .framer-bvK8H .framer-15wvx02 > :first-child, .framer-bvK8H .framer-15albs > :first-child, .framer-bvK8H .framer-1pahv05 > :first-child, .framer-bvK8H .framer-1d35gn4 > :first-child, .framer-bvK8H .framer-unfp2k > :first-child, .framer-bvK8H .framer-1sb7wn1 > :first-child, .framer-bvK8H .framer-1akmvrl > :first-child, .framer-bvK8H .framer-1kzchsj > :first-child, .framer-bvK8H .framer-1bx02xg > :first-child, .framer-bvK8H .framer-128t2rk > :first-child { margin-top: 0px; } .framer-bvK8H.framer-drfvik > :last-child, .framer-bvK8H .framer-1faowur > :last-child, .framer-bvK8H .framer-qedktd > :last-child, .framer-bvK8H .framer-1uxii2x > :last-child, .framer-bvK8H .framer-848h0g > :last-child, .framer-bvK8H .framer-1v8j7yc > :last-child, .framer-bvK8H .framer-g60cg4 > :last-child, .framer-bvK8H .framer-x1a76k > :last-child, .framer-bvK8H .framer-557nne > :last-child, .framer-bvK8H .framer-og3xyo > :last-child, .framer-bvK8H .framer-sfg99o > :last-child, .framer-bvK8H .framer-1tdc91p > :last-child, .framer-bvK8H .framer-jf2etw > :last-child, .framer-bvK8H .framer-1aeomn1 > :last-child, .framer-bvK8H .framer-1pkagd3 > :last-child, .framer-bvK8H .framer-1shvdoh > :last-child, .framer-bvK8H .framer-1dkjhi9 > :last-child, .framer-bvK8H .framer-218xhm > :last-child, .framer-bvK8H .framer-hgabln > :last-child, .framer-bvK8H .framer-gnipmb > :last-child, .framer-bvK8H .framer-14ccbuz > :last-child, .framer-bvK8H .framer-ayr816 > :last-child, .framer-bvK8H .framer-7ux92m > :last-child, .framer-bvK8H .framer-16p7s50 > :last-child, .framer-bvK8H .framer-161pswc > :last-child, .framer-bvK8H .framer-1w8d5d1 > :last-child, .framer-bvK8H .framer-6q20p > :last-child, .framer-bvK8H .framer-b6zjk9 > :last-child, .framer-bvK8H .framer-1nyto3l > :last-child, .framer-bvK8H .framer-jzdzz9 > :last-child, .framer-bvK8H .framer-ugsxsg > :last-child, .framer-bvK8H .framer-165u1cc > :last-child, .framer-bvK8H .framer-1lj6y2o > :last-child, .framer-bvK8H .framer-19rck6m > :last-child, .framer-bvK8H .framer-ed16ep > :last-child, .framer-bvK8H .framer-rfv4rw > :last-child, .framer-bvK8H .framer-1bbyu2h > :last-child, .framer-bvK8H .framer-2h9isu > :last-child, .framer-bvK8H .framer-yo9i7p > :last-child, .framer-bvK8H .framer-1h9vn1x > :last-child, .framer-bvK8H .framer-793edo > :last-child, .framer-bvK8H .framer-45i2sq > :last-child, .framer-bvK8H .framer-ky8x02 > :last-child, .framer-bvK8H .framer-jciovg > :last-child, .framer-bvK8H .framer-12sdogl > :last-child, .framer-bvK8H .framer-ffofuh > :last-child, .framer-bvK8H .framer-1ewpiac > :last-child, .framer-bvK8H .framer-yc155m > :last-child, .framer-bvK8H .framer-2g2kmq > :last-child, .framer-bvK8H .framer-1q9l4yv > :last-child, .framer-bvK8H .framer-i7yx5a > :last-child, .framer-bvK8H .framer-19mm6da > :last-child, .framer-bvK8H .framer-15wvx02 > :last-child, .framer-bvK8H .framer-15albs > :last-child, .framer-bvK8H .framer-1pahv05 > :last-child, .framer-bvK8H .framer-1d35gn4 > :last-child, .framer-bvK8H .framer-unfp2k > :last-child, .framer-bvK8H .framer-1sb7wn1 > :last-child, .framer-bvK8H .framer-1akmvrl > :last-child, .framer-bvK8H .framer-1kzchsj > :last-child, .framer-bvK8H .framer-1bx02xg > :last-child, .framer-bvK8H .framer-128t2rk > :last-child { margin-bottom: 0px; } .framer-bvK8H .framer-qedktd > *, .framer-bvK8H .framer-848h0g > *, .framer-bvK8H .framer-og3xyo > *, .framer-bvK8H .framer-14ccbuz > *, .framer-bvK8H .framer-ugsxsg > *, .framer-bvK8H .framer-19rck6m > *, .framer-bvK8H .framer-ed16ep > *, .framer-bvK8H .framer-rfv4rw > *, .framer-bvK8H .framer-793edo > *, .framer-bvK8H .framer-45i2sq > *, .framer-bvK8H .framer-12sdogl > *, .framer-bvK8H .framer-ffofuh > *, .framer-bvK8H .framer-i7yx5a > *, .framer-bvK8H .framer-15albs > *, .framer-bvK8H .framer-unfp2k > *, .framer-bvK8H .framer-1kzchsj > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-bvK8H .framer-77g5e5 > *, .framer-bvK8H .framer-v4zqqs > *, .framer-bvK8H .framer-17kvbtm > *, .framer-bvK8H .framer-1vb0ipg > *, .framer-bvK8H .framer-rl3lce > *, .framer-bvK8H .framer-1tj2nck > *, .framer-bvK8H .framer-1sszhwz > *, .framer-bvK8H .framer-7ae4zc > *, .framer-bvK8H .framer-x3zp4s > *, .framer-bvK8H .framer-saafhc > *, .framer-bvK8H .framer-256d3m > *, .framer-bvK8H .framer-knjo61 > *, .framer-bvK8H .framer-1g0kiei > *, .framer-bvK8H .framer-srywqr > *, .framer-bvK8H .framer-1wolvx0 > *, .framer-bvK8H .framer-ro02di > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-bvK8H .framer-77g5e5 > :first-child, .framer-bvK8H .framer-v4zqqs > :first-child, .framer-bvK8H .framer-17kvbtm > :first-child, .framer-bvK8H .framer-1vb0ipg > :first-child, .framer-bvK8H .framer-rl3lce > :first-child, .framer-bvK8H .framer-1tj2nck > :first-child, .framer-bvK8H .framer-1sszhwz > :first-child, .framer-bvK8H .framer-7ae4zc > :first-child, .framer-bvK8H .framer-x3zp4s > :first-child, .framer-bvK8H .framer-saafhc > :first-child, .framer-bvK8H .framer-256d3m > :first-child, .framer-bvK8H .framer-knjo61 > :first-child, .framer-bvK8H .framer-1g0kiei > :first-child, .framer-bvK8H .framer-srywqr > :first-child, .framer-bvK8H .framer-1wolvx0 > :first-child, .framer-bvK8H .framer-ro02di > :first-child, .framer-bvK8H .framer-es2h8k > :first-child, .framer-bvK8H .framer-ya8qx > :first-child { margin-left: 0px; } .framer-bvK8H .framer-77g5e5 > :last-child, .framer-bvK8H .framer-v4zqqs > :last-child, .framer-bvK8H .framer-17kvbtm > :last-child, .framer-bvK8H .framer-1vb0ipg > :last-child, .framer-bvK8H .framer-rl3lce > :last-child, .framer-bvK8H .framer-1tj2nck > :last-child, .framer-bvK8H .framer-1sszhwz > :last-child, .framer-bvK8H .framer-7ae4zc > :last-child, .framer-bvK8H .framer-x3zp4s > :last-child, .framer-bvK8H .framer-saafhc > :last-child, .framer-bvK8H .framer-256d3m > :last-child, .framer-bvK8H .framer-knjo61 > :last-child, .framer-bvK8H .framer-1g0kiei > :last-child, .framer-bvK8H .framer-srywqr > :last-child, .framer-bvK8H .framer-1wolvx0 > :last-child, .framer-bvK8H .framer-ro02di > :last-child, .framer-bvK8H .framer-es2h8k > :last-child, .framer-bvK8H .framer-ya8qx > :last-child { margin-right: 0px; } .framer-bvK8H .framer-1v8j7yc > *, .framer-bvK8H .framer-g60cg4 > *, .framer-bvK8H .framer-x1a76k > *, .framer-bvK8H .framer-557nne > *, .framer-bvK8H .framer-sfg99o > *, .framer-bvK8H .framer-1tdc91p > *, .framer-bvK8H .framer-jf2etw > *, .framer-bvK8H .framer-1aeomn1 > *, .framer-bvK8H .framer-1pkagd3 > *, .framer-bvK8H .framer-1shvdoh > *, .framer-bvK8H .framer-1dkjhi9 > *, .framer-bvK8H .framer-218xhm > *, .framer-bvK8H .framer-hgabln > *, .framer-bvK8H .framer-gnipmb > * { margin: 0px; margin-bottom: calc(3px / 2); margin-top: calc(3px / 2); } .framer-bvK8H .framer-ayr816 > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-bvK8H .framer-es2h8k > *, .framer-bvK8H .framer-ya8qx > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-bvK8H .framer-7ux92m > *, .framer-bvK8H .framer-16p7s50 > *, .framer-bvK8H .framer-161pswc > *, .framer-bvK8H .framer-1w8d5d1 > *, .framer-bvK8H .framer-6q20p > *, .framer-bvK8H .framer-b6zjk9 > *, .framer-bvK8H .framer-1nyto3l > *, .framer-bvK8H .framer-jzdzz9 > *, .framer-bvK8H .framer-165u1cc > *, .framer-bvK8H .framer-1lj6y2o > *, .framer-bvK8H .framer-1bbyu2h > *, .framer-bvK8H .framer-2h9isu > *, .framer-bvK8H .framer-yo9i7p > *, .framer-bvK8H .framer-1h9vn1x > *, .framer-bvK8H .framer-ky8x02 > *, .framer-bvK8H .framer-jciovg > *, .framer-bvK8H .framer-1ewpiac > *, .framer-bvK8H .framer-yc155m > *, .framer-bvK8H .framer-2g2kmq > *, .framer-bvK8H .framer-1q9l4yv > *, .framer-bvK8H .framer-19mm6da > *, .framer-bvK8H .framer-15wvx02 > *, .framer-bvK8H .framer-1pahv05 > *, .framer-bvK8H .framer-1d35gn4 > *, .framer-bvK8H .framer-1sb7wn1 > *, .framer-bvK8H .framer-1akmvrl > *, .framer-bvK8H .framer-1bx02xg > *, .framer-bvK8H .framer-128t2rk > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,'.framer-bvK8H[data-border=\"true\"]::after, .framer-bvK8H [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',`@media (max-width: 639px) { .${metadata.bodyClassName}-framer-bvK8H { background: var(--token-5b880770-0cf4-4395-b6e8-4f22e4b02acc, rgb(255, 255, 255)) /* {\"name\":\"White\"} */; } .framer-bvK8H.framer-drfvik { width: 390px; } .framer-bvK8H .framer-1faowur { order: 0; } .framer-bvK8H .framer-draigz-container { width: 100%; } .framer-bvK8H .framer-77g5e5 { flex-direction: column; } .framer-bvK8H .framer-1uxii2x { padding: 0px 10px 0px 10px; position: relative; top: unset; width: 100%; } .framer-bvK8H .framer-14ccbuz { flex: none; width: 100%; } .framer-bvK8H .framer-zscdwt { height: var(--framer-aspect-ratio-supported, 278px); } .framer-bvK8H .framer-7ux92m { padding: 56px 0px 56px 0px; } .framer-bvK8H .framer-161pswc, .framer-bvK8H .framer-6q20p, .framer-bvK8H .framer-1nyto3l, .framer-bvK8H .framer-165u1cc, .framer-bvK8H .framer-1bbyu2h, .framer-bvK8H .framer-yo9i7p, .framer-bvK8H .framer-ky8x02, .framer-bvK8H .framer-1ewpiac, .framer-bvK8H .framer-2g2kmq, .framer-bvK8H .framer-19mm6da, .framer-bvK8H .framer-1pahv05, .framer-bvK8H .framer-1sb7wn1, .framer-bvK8H .framer-1bx02xg { padding: 56px 10px 56px 10px; } .framer-bvK8H .framer-1comtqh { height: var(--framer-aspect-ratio-supported, 190px); } .framer-bvK8H .framer-dv9twh { height: var(--framer-aspect-ratio-supported, 267px); } .framer-bvK8H .framer-1fim33k { height: var(--framer-aspect-ratio-supported, 268px); } .framer-bvK8H .framer-1fmyjx0 { height: var(--framer-aspect-ratio-supported, 273px); } .framer-bvK8H .framer-10oeevl { height: var(--framer-aspect-ratio-supported, 302px); } .framer-bvK8H .framer-1v5zm1q { height: var(--framer-aspect-ratio-supported, 251px); } .framer-bvK8H .framer-1c99zqu { height: var(--framer-aspect-ratio-supported, 229px); } .framer-bvK8H .framer-ftvco5 { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; height: var(--framer-aspect-ratio-supported, 214px); } .framer-bvK8H .framer-s7a6tr, .framer-bvK8H .framer-fukpzr { height: var(--framer-aspect-ratio-supported, 758px); width: 100%; } .framer-bvK8H .framer-244cwn { height: var(--framer-aspect-ratio-supported, 757px); width: 100%; } .framer-bvK8H .framer-k565wp { height: var(--framer-aspect-ratio-supported, 252px); } .framer-bvK8H .framer-fyr6if-container { order: 1; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-bvK8H .framer-77g5e5 { gap: 0px; } .framer-bvK8H .framer-77g5e5 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-bvK8H .framer-77g5e5 > :first-child { margin-top: 0px; } .framer-bvK8H .framer-77g5e5 > :last-child { margin-bottom: 0px; } }}`,`@media (min-width: 640px) and (max-width: 1199px) { .${metadata.bodyClassName}-framer-bvK8H { background: var(--token-5b880770-0cf4-4395-b6e8-4f22e4b02acc, rgb(255, 255, 255)) /* {\"name\":\"White\"} */; } .framer-bvK8H.framer-drfvik { width: 640px; } .framer-bvK8H .framer-draigz-container { width: 100%; } .framer-bvK8H .framer-77g5e5 { padding: 0px 0px 0px 10px; } .framer-bvK8H .framer-zscdwt { height: var(--framer-aspect-ratio-supported, 349px); } .framer-bvK8H .framer-1comtqh { height: var(--framer-aspect-ratio-supported, 253px); } .framer-bvK8H .framer-dv9twh { height: var(--framer-aspect-ratio-supported, 366px); } .framer-bvK8H .framer-1fim33k { height: var(--framer-aspect-ratio-supported, 367px); } .framer-bvK8H .framer-1fmyjx0 { height: var(--framer-aspect-ratio-supported, 374px); } .framer-bvK8H .framer-10oeevl { height: var(--framer-aspect-ratio-supported, 414px); } .framer-bvK8H .framer-1v5zm1q, .framer-bvK8H .framer-k565wp { height: var(--framer-aspect-ratio-supported, 345px); } .framer-bvK8H .framer-1c99zqu { height: var(--framer-aspect-ratio-supported, 309px); } .framer-bvK8H .framer-ftvco5 { height: var(--framer-aspect-ratio-supported, 284px); } .framer-bvK8H .framer-s7a6tr, .framer-bvK8H .framer-fukpzr, .framer-bvK8H .framer-244cwn { height: var(--framer-aspect-ratio-supported, 302px); }}`,`@media (min-width: 1200px) and (max-width: 1919px) { .${metadata.bodyClassName}-framer-bvK8H { background: var(--token-5b880770-0cf4-4395-b6e8-4f22e4b02acc, rgb(255, 255, 255)) /* {\"name\":\"White\"} */; } .framer-bvK8H.framer-drfvik { width: 1200px; } .framer-bvK8H .framer-draigz-container { width: 100%; } .framer-bvK8H .framer-77g5e5 { padding: 0px 0px 0px 10px; } .framer-bvK8H .framer-zscdwt { height: var(--framer-aspect-ratio-supported, 672px); } .framer-bvK8H .framer-1comtqh { height: var(--framer-aspect-ratio-supported, 487px); } .framer-bvK8H .framer-dv9twh, .framer-bvK8H .framer-1fim33k { height: var(--framer-aspect-ratio-supported, 738px); } .framer-bvK8H .framer-1fmyjx0 { height: var(--framer-aspect-ratio-supported, 754px); } .framer-bvK8H .framer-10oeevl { height: var(--framer-aspect-ratio-supported, 834px); } .framer-bvK8H .framer-1v5zm1q { height: var(--framer-aspect-ratio-supported, 693px); } .framer-bvK8H .framer-1c99zqu { height: var(--framer-aspect-ratio-supported, 608px); } .framer-bvK8H .framer-ftvco5 { height: var(--framer-aspect-ratio-supported, 547px); } .framer-bvK8H .framer-s7a6tr, .framer-bvK8H .framer-fukpzr, .framer-bvK8H .framer-244cwn { height: var(--framer-aspect-ratio-supported, 582px); } .framer-bvK8H .framer-k565wp { height: var(--framer-aspect-ratio-supported, 695px); }}`];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 15697\n * @framerIntrinsicWidth 1920\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"KZL9MPXTQ\":{\"layout\":[\"fixed\",\"auto\"]},\"iXj1sUSjr\":{\"layout\":[\"fixed\",\"auto\"]},\"Cc1j5wdp6\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerX_LOeEo5S=withCSS(Component,css,\"framer-bvK8H\");export default FramerX_LOeEo5S;FramerX_LOeEo5S.displayName=\"Ar\";FramerX_LOeEo5S.defaultProps={height:15697,width:1920};addFonts(FramerX_LOeEo5S,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Neue Haas Grotesk Display Pro 55 Roman\",source:\"custom\",url:\"https://framerusercontent.com/assets/tmLwqa5rh55YXw6gAs9GB7y6CY.woff2\"}]},...GnbFonts,...TextLinkFonts,...CarouselFonts,...FooterFonts,...XButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerX_LOeEo5S\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1920\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"15697\",\"framerComponentViewportWidth\":\"true\",\"framerResponsiveScreen\":\"\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KZL9MPXTQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"iXj1sUSjr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Cc1j5wdp6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "upCAIG,SAASA,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,CAACF,EAAiBG,GAAO,WAAW,gBAAgB,EAAE,OAAO,CAAE,EAAE,CAAC,CAAC,EAASJ,CAAc,CAK1L,SAASK,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,GAAc,GAAGC,EAAK,EAAE,CACvK,IAAMC,EAAcZ,EAAM,OAAO,OAAO,EAAQa,EAASC,GAAS,MAAMF,CAAa,EAAQG,EAASC,GAAa,QAAQ,IAAIA,GAAa,OAAaC,GAAQC,GAAWP,EAAK,EAAQQ,EAAUhC,EAAK,IAAI,IAAS,CAAC,YAAAiC,EAAY,UAAAC,EAAU,UAAAC,EAAU,eAAAC,EAAe,UAAAC,CAAS,EAAEpB,EAAgB,CAAC,KAAAqB,GAAK,SAAAC,GAAS,MAAAC,EAAK,EAAErB,EAAgB,CAAC,UAAAsB,GAAU,WAAAC,GAAW,aAAAC,GAAa,WAAAC,GAAW,YAAAC,GAAY,WAAAC,EAAU,EAAE9B,EAAkB,CAAC,cAAA+B,GAAc,iBAAAC,GAAiB,QAAAC,GAAQ,UAAAC,GAAU,WAAAC,GAAW,YAAAC,GAAY,QAAAC,EAAQ,SAAAC,EAAS,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,EAGzJjG,GAAcD,GAAW,EAEzBmG,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,EAAE1G,EAAa,EAAQ4G,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,CAAC,kBAAkBA,EAAO,CAAC,CAAC,KAAKA,EAAO,CAAC,CAAC,sBAAsBA,EAAO,CAAC,CAAC,uBAAuBA,EAAO,CAAC,CAAC,mBAAmBA,EAAO,CAAC,CAAC,KAAKA,EAAO,CAAC,CAAC,IAAM,EAAQC,GAAY5F,EAAO,IAAI,EAEnvB,CAAC6F,EAASC,EAAW,EAAE5G,GAASwD,EAAS,EAAE,CAAC,EAE3CqD,EAAU,CAAC,gBAAgB1C,GAAS,WAAW,CAAC,EAAQ2C,GAAW,CAAC,EAAKnE,IAAQ,YAAcf,GAAMkF,GAAW,OAAO,OAAOD,EAAU,OAAO,SAAaC,GAAW,MAAM,OAAOD,EAAU,MAAM,SAAazC,KAAOyC,EAAU,eAAe,UAAaxC,KAAY,WAAWwC,EAAU,MAAM,eAAevC,IAAY,CAAC,MAAMwC,GAAW,MAAM,QAAgBzC,KAAY,YAAWwC,EAAU,MAAM,QAAQ,IAAItC,EAAY,OAAO7B,CAAG,QAAQA,EAAI6B,EAAY,MAAMuC,GAAW,MAAM,QAAWtC,KAAa,WAAWqC,EAAU,OAAO,eAAepC,IAAa,CAAC,MAAMqC,GAAW,OAAO,QAAgBtC,KAAa,SAAQqC,EAAU,OAAO,QAAQ,IAAInC,EAAU,OAAOhC,CAAG,QAAQA,EAAIgC,EAAU,MAAMoC,GAAW,OAAO,QAAQ,IAAMC,GAAevD,EAAS,SAAS,OAAawD,GAAe,CAAC,GAAGC,GAAmB,QAAAvD,EAAO,EAAQwD,GAAc,CAAC,GAAGC,GAAkB,IAAAzE,EAAI,WAAWC,EAAM,cAAcf,EAAK,MAAM,SAAS,UAAUA,EAAKmF,GAAe,SAAS,UAAUnF,EAAK,SAASmF,GAAe,eAAe7C,GAAK,GAAGN,CAAS,aAAa,OAAU,wBAAwB,QAAQ,gBAAgBC,EAAY2C,GAAK,OAAU,aAAa3C,EAAY2C,GAAK,OAAU,UAAU3C,EAAY2C,GAAK,OAAU,aAAAtD,CAAY,EAAQkE,GAAa,CAAE,uBAAwB,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,EAAQ7B,GAAc,IAAI,EAAE,GAAG,CAAC0B,GAAc,CAACC,EAAgB,OAAO,GAAGD,EAAaC,EAAgB,CAACtH,GAAWwH,EAAQ,EAAE3B,GAAMhC,CAAc,EAAE7D,GAAWwH,EAAQD,GAAazB,GAAIjC,CAAc,EAAE,QAAQ4D,EAAE,EAAEA,EAAEN,EAAU,QAAQ,OAAOM,IAAI,CAAC,GAAK,CAAC,QAAAnG,EAAQ,MAAAuE,GAAM,IAAAC,EAAG,EAAEqB,EAAU,QAAQM,CAAC,EAAK3B,GAAI0B,GAAS3B,GAAM2B,EAAQF,EAAiBhG,EAAQ,aAAa,cAAc,EAAI,EAAQA,EAAQ,aAAa,cAAc,EAAK,CAAG,CAAC,MAAMtB,GAAW,EAAE,EAAE6F,GAAMhC,CAAc,EAAE7D,GAAW,EAAE,EAAE8F,GAAIjC,CAAc,EAAEsD,EAAU,QAAQ,QAAQ9F,EAAc,EAO/qE,IAAIqG,EAAY,KAAK,KAAKL,EAAaC,CAAe,EAAM,MAAMI,CAAW,IAC7FA,EAAYvE,EAAS,MAAIuE,EAAYvE,GAAYuE,IAAclB,GAASC,GAAYiB,CAAW,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,CAAE,CAInZ+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,GAAG,IAAMkG,GAAa,CAACC,EAAM1H,IAAS,CAAC,GAAG,CAACwB,EAAW,QAAQ,OAAO,GAAK,CAAC,QAAA8F,CAAO,EAAE9F,EAAW,QAAa,CAAC,SAAAmG,EAAQ,EAAEtB,GAAY,QAAYuB,EAAiBL,EAAEG,IAAQ,EAAE,EAAEC,GAAS,OAAO,EAAE,KAAMC,IAAe,QAAU,CAAC,IAAMC,EAAKF,GAASJ,CAAC,EAAQ5B,EAAMpE,EAAKsG,EAAK,WAAWA,EAAK,UAAgBC,GAAOvG,EAAKsG,EAAK,YAAYA,EAAK,aAAmBjC,GAAID,EAAMmC,GAAaC,GAAU,IAAOL,IAAQ,EAAoB3H,GAAS4F,EAAMC,GAAI5F,CAAM,EAAgB,EAAE+H,GAAWH,EAAajC,EAAe4B,IAAII,GAAS,OAAO,IAAGC,EAAahC,IAAc8B,IAAQ,KAAqB3H,GAAS4F,EAAMC,GAAI5F,CAAM,EAAgB+H,GAAWH,EAAahC,GAAa2B,IAAI,IAAGK,EAAajC,IAAQ4B,GAAGG,CAAM,CAAC,OAAOE,CAAa,EAAQI,GAAgBC,GAAiB,EAAQC,GAAKC,GAAU,CAACzG,GAAa,QAAQyG,EAAS,IAAMC,EAAQ7G,EAAK,CAAC,KAAK4G,CAAQ,EAAE,CAAC,IAAIA,CAAQ,EAAE9B,GAAY,QAAQ,SAAS,CAAC,GAAG+B,EAAQ,SAASJ,GAAgB,OAAO,QAAQ,CAAC,CAAE,EAAQK,GAASC,GAAM,CAAC,GAAG,CAAC9G,EAAW,QAAQ,OAAO,GAAK,CAAC,aAAA6F,CAAY,EAAE7F,EAAW,QAAQ0G,GAAKI,GAAMjB,GAAcf,EAAS,GAAG,CAAE,EAAQiC,GAAUb,GAAO,IAAI,CAAC,GAAG,CAAClG,EAAW,QAAQ,OAAO,GAAK,CAAC,gBAAA4F,EAAgB,aAAAC,CAAY,EAAE7F,EAAW,QAAc8F,GAAQ7B,GAAc,IAAI,EAAQ+C,EAAWnB,EAAaf,EAAemC,EAAYC,GAAM,EAAEpC,EAAS,EAAE,KAAK,MAAMgB,GAAQkB,CAAU,CAAC,EAAEH,GAASI,EAAYf,CAAK,CAAE,EAEphD,GAAGzE,IAAW,EAAG,OAAoB0F,EAAKC,GAAY,CAAC,CAAC,EAAG,IAAMC,GAAK,CAAC,EAAQC,GAAc,CAAC,EAAE,GAAGxC,EAAS,GAAG/B,IAAkB,CAACD,GAAc,CAAC,QAAQiD,EAAE,EAAEA,EAAEjB,EAASiB,IAAI,CAAC,IAAMwB,EAAW5F,GAAU,CAACoE,GAAG,GAAMsB,GAAK,KAAkBF,EAAKK,GAAI,CAAC,SAAS,CAAC,GAAGC,GAAS,MAAMzE,GAAQ,OAAOA,GAAQ,gBAAgBK,CAAQ,EAAE,YAAY3D,GAAiB,WAAW6H,EAAW,gBAAgBhE,GAAkB,QAAQC,GAAY,QAAQ,IAAIqD,GAASd,CAAC,EAAE,cAAc9B,GAAc,WAAWjE,EAAW,MAAM8E,EAAS,MAAMiB,EAAE,IAAI3C,EAAQ,QAAQD,GAAY,KAAKpD,CAAI,CAAC,CAAC,CAAE,CAAI0D,KAAU6D,GAAc,eAAeA,GAAc,qBAAqBA,GAAc,kBAAkB,QAAQ7D,EAAQ,MAAO,CAAC,OAAoBiE,EAAM,UAAU,CAAC,MAAMvC,GAAe,GAAGI,GAAa,SAAS,CAAc4B,EAAKQ,EAAO,GAAG,CAAC,IAAI9C,GAAY,MAAMQ,GAAc,UAAU,mBAAmB,sBAAsBvC,GAAc,cAAc,QAAQ,YAAY,SAAS,QAAQ,IAAI5C,GAAa,QAAQ,OAAU,SAASwB,GAAS,IAAIF,EAAc,CAACoG,EAAMC,IAAQ,CAAC,IAAIC,EAAa,OAAoBX,EAAK,KAAK,CAAC,MAAMnC,EAAU,GAAGQ,GAAS,aAAa,GAAGqC,EAAM,CAAC,OAAOpG,CAAQ,GAAG,SAAsBsG,GAAaH,EAAM,CAAC,GAAGA,EAAM,MAAM,MAAM,CAAC,IAAIE,EAAaF,EAAM,SAAS,MAAME,IAAe,OAAO,OAAOA,EAAa,MAAM,GAAG7C,EAAU,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,CAAC,CAAC,EAAeyC,EAAM,WAAW,CAAC,MAAM,CAAC,GAAGM,GAAe,QAAQhE,GAAa,QAAQ,OAAO,cAAcjE,EAAK,MAAM,QAAQ,EAAE,aAAa,+BAA+B,UAAU,4BAA4B,2BAA2B2D,GAAkB,SAAS,CAAcyD,EAAKQ,EAAO,OAAO,CAAC,IAAIxD,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,QAAQqD,GAAU,EAAE,EAAE,aAAa,WAAW,SAAS,CAAC,MAAM,EAAE,EAAE,WAAW,CAAC,SAAS,GAAG,EAAE,SAAsBI,EAAK,MAAM,CAAC,IAAI,GAAG,MAAMxD,EAAU,OAAOA,EAAU,IAAIG,IAAW,qEAAqE,CAAC,CAAC,CAAC,EAAeqD,EAAKQ,EAAO,OAAO,CAAC,IAAIvD,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,QAAQqD,GAAU,CAAC,EAAE,aAAa,OAAO,SAAS,CAAC,MAAM,EAAE,EAAE,WAAW,CAAC,SAAS,GAAG,EAAE,SAAsBI,EAAK,MAAM,CAAC,IAAI,GAAG,MAAMxD,EAAU,OAAOA,EAAU,IAAII,IAAY,qEAAqE,CAAC,CAAC,CAAC,EAAEsD,GAAK,OAAO,EAAeF,EAAK,MAAM,CAAC,MAAM,CAAC,GAAGc,GAAmB,KAAKlI,EAAK,MAAMkD,GAAU,IAAKlD,EAAW,QAAN,MAAc,UAAUA,EAAK,mBAAmB,mBAAmB,cAAcA,EAAK,MAAM,SAAS,OAAOA,EAAKkD,GAAU,QAAQ,aAAaC,GAAW,gBAAgBI,GAAe,GAAGgE,EAAa,EAAE,SAASD,EAAI,CAAC,EAAE,IAAI,CAAC,CAAC,EAAeF,EAAKe,GAAY,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAyBvH,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,EAAyBwH,GAAoBxH,GAAS,CAAC,MAAM,CAAC,KAAKyH,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,OAAO7G,GAAOA,EAAM,YAAY,SAAS,EAAE,aAAa,CAAC,KAAK6G,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,GAAG,aAAa,EAAE,eAAe,GAAK,OAAO7G,GAAOA,EAAM,YAAY,SAAS,EAAE,WAAW,CAAC,KAAK6G,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,OAAO7G,GAAOA,EAAM,aAAa,SAAS,EAAE,WAAW,CAAC,KAAK6G,EAAY,OAAO,MAAM,OAAO,IAAI,EAAE,IAAI,GAAG,aAAa,EAAE,eAAe,GAAK,OAAO7G,GAAOA,EAAM,aAAa,MAAM,CAAC,CAAC,EAAE,WAAW,CAAC,KAAK6G,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,OAAO7G,GAAO,CAACA,EAAM,IAAI,EAAE,MAAM,CAAC,KAAK6G,EAAY,QAAQ,MAAM,QAAQ,aAAa,GAAM,OAAO7G,GAAO,CAACA,EAAM,IAAI,CAAC,CAAC,EAAE,WAAW,CAAC,KAAK6G,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,OAAO7G,GAAO,CAACA,EAAM,WAAW,EAAE,UAAU,CAAC,KAAK6G,EAAY,OAAO,MAAM,QAAQ,aAAa,EAAE,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAO7G,GAAO,CAACA,EAAM,WAAW,EAAE,UAAU,CAAC,KAAK6G,EAAY,OAAO,MAAM,UAAU,OAAO7G,GAAO,CAACA,EAAM,YAAY,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,aAAa,CAAC,EAAE,eAAe,CAAC,KAAK6G,EAAY,WAAW,MAAM,aAAa,OAAO7G,GAAO,CAACA,EAAM,WAAW,CAAC,CAAC,EAAE,eAAe,CAAC,KAAK6G,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,OAAO7G,GAAOA,EAAM,aAAa,EAAE,QAAQ,CAAC,KAAK6G,EAAY,OAAO,MAAM,OAAO,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAO7G,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,UAAU,CAAC,KAAK6G,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAO7G,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,QAAQ,CAAC,KAAK6G,EAAY,OAAO,MAAM,MAAM,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAO7G,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,YAAY,CAAC,KAAK6G,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAO7G,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,SAAS,CAAC,KAAK6G,EAAY,MAAM,MAAM,OAAO,aAAa,OAAO,OAAO7G,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,eAAe,CAAC,KAAK6G,EAAY,MAAM,MAAM,WAAW,aAAa,kBAAkB,OAAO7G,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,WAAW,CAAC,KAAK6G,EAAY,OAAO,MAAM,SAAS,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,OAAO7G,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,YAAY,CAAC,KAAK6G,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,EAAE,aAAa,GAAG,KAAK,GAAG,eAAe,GAAK,OAAO7G,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,kBAAkB,CAAC,KAAK6G,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,EAAE,aAAa,EAAE,KAAK,GAAG,eAAe,GAAK,OAAO7G,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,SAAS,CAAC,KAAK6G,EAAY,OAAO,MAAM,OAAO,IAAI,EAAE,IAAI,GAAG,aAAa,EAAE,KAAK,EAAE,OAAO7G,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,CAAC,CAAC,EAAE,YAAY,CAAC,KAAK6G,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,OAAO7G,GAAO,CAACA,EAAM,iBAAiB,EAAE,UAAU,CAAC,KAAK6G,EAAY,MAAM,MAAM,WAAW,OAAO7G,GAAO,CAACA,EAAM,iBAAiB,EAAE,WAAW,CAAC,KAAK6G,EAAY,MAAM,MAAM,OAAO,OAAO7G,GAAO,CAACA,EAAM,iBAAiB,EAAE,UAAU,CAAC,KAAK6G,EAAY,OAAO,MAAM,OAAO,IAAI,EAAE,IAAI,IAAI,eAAe,GAAK,aAAa,GAAG,OAAO7G,GAAO,CAACA,EAAM,iBAAiB,EAAE,YAAY,CAAC,KAAK6G,EAAY,OAAO,MAAM,SAAS,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,OAAO7G,GAAO,CAACA,EAAM,iBAAiB,EAAE,aAAa,CAAC,KAAK6G,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAO7G,GAAO,CAACA,EAAM,iBAAiB,CAAC,CAAC,EAAE,UAAU,CAAC,KAAK6G,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,SAASZ,GAAI,CAAC,cAAAvD,EAAc,WAAAjE,EAAW,WAAAuH,EAAW,gBAAAe,EAAgB,QAAQC,EAAkB,MAAAC,EAAM,MAAAX,EAAM,SAAAJ,EAAS,YAAAhI,EAAY,IAAAoB,EAAI,QAAAgB,EAAQ,KAAA9B,GAAK,GAAGwB,EAAK,EAAE,CAAC,IAAMkH,EAAQrJ,EAAa6E,EAAc3E,GAAG,CAAC,IAAIoJ,EAAoBC,EAAqB,GAAG,EAAG,GAAAD,EAAoB1I,EAAW,WAAW,MAAM0I,IAAsB,SAAcA,EAAoB,cAAe,OAAOb,IAAQ,EAAES,EAAgBC,EAAmB,IAAMvB,IAAa2B,EAAqB3I,EAAW,WAAW,MAAM2I,IAAuB,OAAO,OAAOA,EAAqB,cAAcH,EAAYI,GAAU5B,EAAWa,EAAYgB,GAAUD,GAAU5B,EAAsF,OAA1D1H,GAAGsJ,KAAYf,EAAMW,EAAM,EAAElJ,EAAEuJ,GAAUhB,IAAQW,EAAM,GAAqBF,EAAgBC,CAAkB,CAAC,EAAQO,EAAcjI,EAAI,EAAMkI,EAAI,CAAChJ,IAAM8H,EAAM,EAAEiB,EAAcjH,EAAYmH,GAAO,CAACjJ,IAAM8H,IAAQW,EAAM,EAAEM,EAAcjH,EAAYoH,EAAMlJ,IAAM8H,IAAQW,EAAM,EAAEM,EAAcjH,EAAYqH,EAAKnJ,IAAM8H,EAAM,EAAEiB,EAAcjH,EAAQ,OAAoBsF,EAAK,SAAS,CAAC,aAAa,kBAAkBU,EAAM,CAAC,GAAG,KAAK,SAAS,GAAGtG,GAAM,MAAM,CAAC,GAAG9B,EAAY,QAAQ,GAAGsJ,CAAG,MAAME,CAAK,MAAMD,EAAM,MAAME,CAAI,IAAI,EAAE,SAAsB/B,EAAKQ,EAAO,IAAI,CAAC,MAAM,CAAC,GAAGF,EAAS,QAAAgB,CAAO,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,SAASrB,IAAa,CAAC,OAAoBM,EAAM,UAAU,CAAC,MAAMyB,GAAkB,SAAS,CAAchC,EAAK,MAAM,CAAC,MAAMiC,GAAY,SAAS,QAAG,CAAC,EAAejC,EAAK,IAAI,CAAC,MAAMkC,GAAY,SAAS,oBAAoB,CAAC,EAAelC,EAAK,IAAI,CAAC,MAAMmC,GAAe,SAAS,4CAA4C,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,SAASpB,IAAa,CAAC,OAAoBf,EAAK,MAAM,CAAC,wBAAwB,CAAC,OAAO;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,sBAgBh5T,CAAC,CAAC,CAAE,CAAa,IAAMgC,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,ECrFmJ,IAAMC,GAAcC,EAASC,CAAQ,EAAQC,GAAW,CAAC,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,iBAAiB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAAAD,GAAU,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,OAAO,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,EAAmB,EAAQC,EAAWL,GAAOE,EAAO,WAAiBI,EAAmBC,GAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,GAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,QAAQL,GAAwBK,EAAM,OAAO,GAAGA,EAAM,SAAS,WAAW,GAAUC,GAAuB,CAACD,EAAMtB,IAAesB,EAAM,iBAAwBtB,EAAS,KAAK,GAAG,EAAEsB,EAAM,iBAAwBtB,EAAS,KAAK,GAAG,EAAUwB,GAA6BC,GAAW,SAASH,EAAMI,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAA9B,EAAQ,GAAG+B,CAAS,EAAEf,GAASI,CAAK,EAAO,CAAC,YAAAY,EAAY,WAAAC,EAAW,oBAAAC,GAAoB,gBAAAC,GAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,GAAW,SAAAzC,CAAQ,EAAE0C,GAAgB,CAAC,WAAA/C,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ8C,EAAiBpB,GAAuBD,EAAMtB,CAAQ,EAAQ4C,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,GAAM,EAAQC,EAAsB,CAAC,EAAQC,EAAkBC,GAAqB,EAAE,OAAoBrC,EAAKsC,GAAY,CAAC,GAAGnB,GAAUc,EAAgB,SAAsBjC,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBU,EAAKE,EAAO,IAAI,CAAC,GAAGkB,EAAU,GAAGI,GAAgB,UAAUe,GAAGxD,GAAkB,GAAGoD,EAAsB,iBAAiBjB,EAAUI,CAAU,EAAE,mBAAmB,YAAY,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIjB,GAAKkB,EAAK,MAAM,CAAC,GAAGd,CAAK,EAAE,GAAGhC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,WAAW,CAAC,EAAEoC,EAAYI,CAAc,EAAE,SAAsBzB,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB4B,EAAiB,SAAS,YAAY,SAAsBU,EAAMtC,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB4B,EAAiB,SAAS,YAAY,SAAS,CAAc9B,EAAKyC,EAAK,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,OAAO,YAAY,aAAa,GAAM,aAAa,GAAK,SAAsBzC,EAAKE,EAAO,EAAE,CAAC,UAAU,gCAAgC,iBAAiB4B,EAAiB,SAAS,YAAY,SAAsB9B,EAAK0C,EAA0B,CAAC,OAAO,GAAG,MAAM,OAAO,GAAGN,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,SAAsBpC,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB4B,EAAiB,SAAS,sBAAsB,SAAsB9B,EAAKnB,EAAS,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,OAAO,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAemB,EAAKyC,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,OAAO,YAAY,SAAsBzC,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,iBAAiB4B,EAAiB,SAAS,YAAY,SAAsB9B,EAAK0C,EAA0B,CAAC,OAAO,GAAG,MAAM,OAAO,GAAGN,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,EAAE,SAAsBpC,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB4B,EAAiB,SAAS,sBAAsB,SAAsB9B,EAAKnB,EAAS,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,QAAQ,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAemB,EAAKyC,EAAK,CAAC,KAAK,qFAAqF,OAAO,YAAY,SAAsBzC,EAAKE,EAAO,EAAE,CAAC,UAAU,gCAAgC,iBAAiB4B,EAAiB,SAAS,YAAY,SAAsB9B,EAAK0C,EAA0B,CAAC,OAAO,GAAG,MAAM,OAAO,GAAGN,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,EAAE,SAAsBpC,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB4B,EAAiB,SAAS,sBAAsB,SAAsB9B,EAAKnB,EAAS,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,SAAS,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQ8D,GAAI,CAAC,kFAAkF,kFAAkF,kRAAkR,kRAAkR,2RAA2R,oWAAoW,2LAA2L,s4CAAs4C,iEAAiE,8EAA8E,EAQ/6PC,GAAgBC,GAAQlC,GAAUgC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,MAAMA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,GAAG,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,YAAY,WAAW,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,EAAE,GAAGjE,EAAa,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECRlauE,GAAU,UAAU,CAAC,wCAAwC,CAAC,EAAS,IAAMC,GAAM,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,kCAAkC,OAAO,SAAS,IAAI,sEAAsE,CAAC,CAAC,CAAC,EAAeC,GAAI,CAAC,syBAA0yB,EAAeC,GAAU,eCAiS,IAAMC,GAASC,EAASC,EAAG,EAAQC,GAAcF,EAASG,CAAQ,EAAQC,GAAmCC,GAA0BC,EAAO,GAAG,EAAQC,EAAgBC,GAAOF,EAAO,GAAG,EAAQG,GAAcT,EAASU,EAAQ,EAAQC,GAAYH,GAAOI,CAAK,EAAQC,GAAYb,EAASc,EAAM,EAAQC,GAAaf,EAASgB,EAAO,EAAQC,GAAY,CAAC,UAAU,8CAA8C,UAAU,6CAA6C,UAAU,qBAAqB,UAAU,qBAAqB,EAAQC,GAAU,IAAI,OAAO,SAAW,IAAkBC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,iBAAiB,EAAQC,GAAY,CAAC,MAAM,GAAG,SAAS,GAAG,KAAK,CAAC,IAAI,IAAI,GAAG,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAW,CAAC,QAAQ,KAAK,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,EAAE,EAAQC,EAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,EAAE,EAAQC,EAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,EAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,EAAY,EAAE,EAAE,EAAE,EAAE,EAAQE,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWH,EAAY,EAAE,EAAE,EAAE,EAAE,EAAQI,GAASA,GAAiB,EAAQC,GAAwB,CAAC,YAAY,YAAY,WAAW,YAAY,QAAQ,YAAY,MAAM,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,GAAGC,CAAS,EAAEjB,GAASI,CAAK,EAAQc,GAAU,IAAI,CAAC,IAAMC,EAAUrB,GAAiB,OAAUY,CAAY,EAAE,GAAGS,EAAU,OAAO,CAAC,IAAIC,EAAU,SAAS,cAAc,qBAAqB,EAAKA,EAAWA,EAAU,aAAa,UAAUD,EAAU,MAAM,GAAQC,EAAU,SAAS,cAAc,MAAM,EAAEA,EAAU,aAAa,OAAO,QAAQ,EAAEA,EAAU,aAAa,UAAUD,EAAU,MAAM,EAAE,SAAS,KAAK,YAAYC,CAAS,EAAG,CAAC,EAAE,CAAC,OAAUV,CAAY,CAAC,EAAQW,GAAmB,IAAI,CAAC,IAAMF,EAAUrB,GAAiB,OAAUY,CAAY,EAAqC,GAAnC,SAAS,MAAMS,EAAU,OAAO,GAAMA,EAAU,SAAS,CAAC,IAAIG,GAAyBA,EAAwB,SAAS,cAAc,uBAAuB,KAAK,MAAMA,IAA0B,QAAcA,EAAwB,aAAa,UAAUH,EAAU,QAAQ,CAAE,CAAC,IAAMI,GAAQJ,EAAU,cAAc,GAAGI,GAAQ,CAAC,IAAMC,GAAK,SAAS,KAAKA,GAAK,UAAU,QAAQC,IAAGA,GAAE,WAAW,cAAc,GAAGD,GAAK,UAAU,OAAOC,EAAC,CAAC,EAAED,GAAK,UAAU,IAAI,GAAGL,EAAU,aAAa,eAAe,CAAE,CAAC,MAAM,IAAI,CAAII,IAAQ,SAAS,KAAK,UAAU,OAAO,GAAGJ,EAAU,aAAa,eAAe,CAAE,CAAE,EAAE,CAAC,OAAUT,CAAY,CAAC,EAAE,GAAK,CAACgB,EAAYC,CAAmB,EAAEC,GAA8BZ,EAAQ9B,GAAY,EAAK,EAAQ2C,GAAe,OAAgBC,GAAWC,EAAO,IAAI,EAAQC,EAAY,IAAS7C,GAAU,EAAiBuC,IAAc,YAAtB,GAAmEO,EAAUC,EAAkB,WAAW,EAAQC,EAAWJ,EAAO,IAAI,EAAQK,GAAWF,EAAkB,WAAW,EAAQG,EAAWN,EAAO,IAAI,EAAQO,EAAWJ,EAAkB,WAAW,EAAQK,EAAWR,EAAO,IAAI,EAAQS,EAAWN,EAAkB,WAAW,EAAQO,EAAWV,EAAO,IAAI,EAAQW,EAAWR,EAAkB,WAAW,EAAQS,GAAWZ,EAAO,IAAI,EAAQa,GAAWV,EAAkB,WAAW,EAAQW,GAAWd,EAAO,IAAI,EAAQe,GAAWZ,EAAkB,WAAW,EAAQa,GAAWhB,EAAO,IAAI,EAAQiB,GAAWd,EAAkB,WAAW,EAAQe,GAAWlB,EAAO,IAAI,EAAQmB,GAAWhB,EAAkB,WAAW,EAAQiB,GAAYpB,EAAO,IAAI,EAAQqB,GAAWlB,EAAkB,WAAW,EAAQmB,GAAYtB,EAAO,IAAI,EAAQuB,GAAYpB,EAAkB,WAAW,EAAQqB,GAAYxB,EAAO,IAAI,EAAQyB,GAAsBC,GAAM,EAAQC,GAAsB,CAAa5C,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,EAAS,EAAE,OAAA6C,GAAiB,CAAC,CAAC,EAAsBC,EAAKC,GAA0B,SAAS,CAAC,MAAM,CAAC,iBAAiB,YAAY,kBAAAxE,EAAiB,EAAE,SAAsByE,EAAMC,GAAY,CAAC,GAAGhD,GAA4CyC,GAAgB,SAAS,CAAcM,EAAMvF,EAAO,IAAI,CAAC,GAAG0C,EAAU,UAAU+C,GAAG5E,GAAkB,GAAGsE,GAAsB,gBAAgB5C,CAAS,EAAE,IAAIL,GAA6BqB,GAAK,MAAM,CAAC,GAAGjB,CAAK,EAAE,SAAS,CAAc+C,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBE,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcF,EAAKK,EAAkB,CAAC,WAAWvC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,oBAAoB,EAAE,UAAU,CAAC,MAAM,oBAAoB,EAAE,UAAU,CAAC,MAAM,oBAAoB,CAAC,EAAE,SAAsBkC,EAAKM,EAA0B,CAAC,OAAO,GAAG,MAAM,SAAS,EAAE,EAAE,SAAsBN,EAAKO,EAAU,CAAC,UAAU,0BAA0B,SAAsBP,EAAKK,EAAkB,CAAC,WAAWvC,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBkC,EAAK1F,GAAI,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe4F,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,KAAK,OAAO,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcF,EAAKQ,EAAS,CAAC,sBAAsB,GAAK,SAAsBR,EAAWS,EAAS,CAAC,SAAsBT,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKQ,EAAS,CAAC,sBAAsB,GAAK,SAAsBR,EAAWS,EAAS,CAAC,SAAsBT,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,gBAAgB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeE,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcF,EAAKQ,EAAS,CAAC,sBAAsB,GAAK,SAAsBR,EAAWS,EAAS,CAAC,SAAsBT,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+DAA+D,uBAAuB,6GAA6G,qBAAqB,OAAO,uBAAuB,MAAM,sBAAsB,iBAAiB,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,+CAA+C,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKQ,EAAS,CAAC,sBAAsB,GAAK,SAAsBR,EAAWS,EAAS,CAAC,SAAsBT,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,SAAS,CAAC,CAAC,CAAC,CAAC,EAAeE,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcF,EAAKQ,EAAS,CAAC,sBAAsB,GAAK,SAAsBR,EAAWS,EAAS,CAAC,SAAsBT,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKQ,EAAS,CAAC,sBAAsB,GAAK,SAAsBR,EAAWS,EAAS,CAAC,SAAsBT,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeE,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcF,EAAKQ,EAAS,CAAC,sBAAsB,GAAK,SAAsBR,EAAWS,EAAS,CAAC,SAAsBT,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKQ,EAAS,CAAC,sBAAsB,GAAK,SAAsBR,EAAWS,EAAS,CAAC,SAAsBT,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,0BAA0B,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBE,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcF,EAAKQ,EAAS,CAAC,sBAAsB,GAAK,SAAsBR,EAAWS,EAAS,CAAC,SAAsBT,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKQ,EAAS,CAAC,sBAAsB,GAAK,SAAsBR,EAAWS,EAAS,CAAC,SAAsBT,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBE,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcF,EAAKQ,EAAS,CAAC,sBAAsB,GAAK,SAAsBR,EAAWS,EAAS,CAAC,SAAsBT,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKQ,EAAS,CAAC,sBAAsB,GAAK,SAAsBR,EAAWS,EAAS,CAAC,SAAsBT,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,kBAAkB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE5B,EAAY,GAAgB4B,EAAK,MAAM,CAAC,UAAU,8BAA8B,SAAsBA,EAAKQ,EAAS,CAAC,sBAAsB,GAAK,SAAsBR,EAAWS,EAAS,CAAC,SAAsBT,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAE5B,EAAY,GAAgB4B,EAAK,MAAM,CAAC,UAAU,8BAA8B,SAAsBA,EAAKU,EAAK,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,OAAO,YAAY,aAAa,GAAM,aAAa,GAAK,SAAsBV,EAAK,IAAI,CAAC,UAAU,gCAAgC,SAAsBA,EAAKK,EAAkB,CAAC,WAAWvC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,2FAA2F,EAAE,UAAU,CAAC,MAAM,2FAA2F,CAAC,EAAE,SAAsBkC,EAAKM,EAA0B,CAAC,OAAO,GAAG,MAAM,4EAA4E,EAAE,IAAI,SAAsBN,EAAKO,EAAU,CAAC,UAAU,0BAA0B,SAAsBP,EAAKxF,EAAS,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,WAAW,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE4D,EAAY,GAAgB4B,EAAK,MAAM,CAAC,UAAU,+BAA+B,SAAsBA,EAAKU,EAAK,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,OAAO,YAAY,aAAa,GAAM,aAAa,GAAK,SAAsBV,EAAK,IAAI,CAAC,UAAU,+BAA+B,SAAsBA,EAAKK,EAAkB,CAAC,WAAWvC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,2FAA2F,EAAE,UAAU,CAAC,MAAM,2FAA2F,CAAC,EAAE,SAAsBkC,EAAKM,EAA0B,CAAC,OAAO,GAAG,MAAM,4EAA4E,EAAE,IAAI,SAAsBN,EAAKO,EAAU,CAAC,UAAU,0BAA0B,SAAsBP,EAAKxF,EAAS,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,UAAU,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE4D,EAAY,GAAgB4B,EAAK,MAAM,CAAC,UAAU,8BAA8B,SAAsBA,EAAKU,EAAK,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,OAAO,YAAY,aAAa,GAAM,aAAa,GAAK,SAAsBV,EAAK,IAAI,CAAC,UAAU,+BAA+B,SAAsBA,EAAKK,EAAkB,CAAC,WAAWvC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,2FAA2F,EAAE,UAAU,CAAC,MAAM,2FAA2F,CAAC,EAAE,SAAsBkC,EAAKM,EAA0B,CAAC,OAAO,GAAG,MAAM,4EAA4E,EAAE,IAAI,SAAsBN,EAAKO,EAAU,CAAC,UAAU,2BAA2B,SAAsBP,EAAKxF,EAAS,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,OAAO,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE4D,EAAY,GAAgB4B,EAAK,MAAM,CAAC,UAAU,+BAA+B,SAAsBA,EAAKU,EAAK,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,OAAO,YAAY,aAAa,GAAM,aAAa,GAAK,SAAsBV,EAAK,IAAI,CAAC,UAAU,+BAA+B,SAAsBA,EAAKK,EAAkB,CAAC,WAAWvC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,2FAA2F,EAAE,UAAU,CAAC,MAAM,2FAA2F,CAAC,EAAE,SAAsBkC,EAAKM,EAA0B,CAAC,OAAO,GAAG,MAAM,4EAA4E,EAAE,IAAI,SAAsBN,EAAKO,EAAU,CAAC,UAAU,0BAA0B,SAAsBP,EAAKxF,EAAS,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,WAAW,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE4D,EAAY,GAAgB4B,EAAK,MAAM,CAAC,UAAU,+BAA+B,SAAsBA,EAAKU,EAAK,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,OAAO,YAAY,aAAa,GAAM,aAAa,GAAK,SAAsBV,EAAK,IAAI,CAAC,UAAU,+BAA+B,SAAsBA,EAAKK,EAAkB,CAAC,WAAWvC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,2FAA2F,EAAE,UAAU,CAAC,MAAM,2FAA2F,CAAC,EAAE,SAAsBkC,EAAKM,EAA0B,CAAC,OAAO,GAAG,MAAM,4EAA4E,EAAE,IAAI,SAAsBN,EAAKO,EAAU,CAAC,UAAU,0BAA0B,SAAsBP,EAAKxF,EAAS,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,sBAAsB,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE4D,EAAY,GAAgB4B,EAAK,MAAM,CAAC,UAAU,+BAA+B,SAAsBA,EAAKU,EAAK,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,OAAO,YAAY,aAAa,GAAM,aAAa,GAAK,SAAsBV,EAAK,IAAI,CAAC,UAAU,+BAA+B,SAAsBA,EAAKK,EAAkB,CAAC,WAAWvC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,2FAA2F,EAAE,UAAU,CAAC,MAAM,2FAA2F,CAAC,EAAE,SAAsBkC,EAAKM,EAA0B,CAAC,OAAO,GAAG,MAAM,4EAA4E,EAAE,IAAI,SAAsBN,EAAKO,EAAU,CAAC,UAAU,0BAA0B,SAAsBP,EAAKxF,EAAS,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,iBAAiB,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE4D,EAAY,GAAgB4B,EAAK,MAAM,CAAC,UAAU,+BAA+B,SAAsBA,EAAKU,EAAK,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,OAAO,YAAY,aAAa,GAAM,aAAa,GAAK,SAAsBV,EAAK,IAAI,CAAC,UAAU,gCAAgC,SAAsBA,EAAKK,EAAkB,CAAC,WAAWvC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,2FAA2F,EAAE,UAAU,CAAC,MAAM,2FAA2F,CAAC,EAAE,SAAsBkC,EAAKM,EAA0B,CAAC,OAAO,GAAG,MAAM,4EAA4E,EAAE,IAAI,SAAsBN,EAAKO,EAAU,CAAC,UAAU,2BAA2B,SAAsBP,EAAKxF,EAAS,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,4BAA4B,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE4D,EAAY,GAAgB4B,EAAK,MAAM,CAAC,UAAU,8BAA8B,SAAsBA,EAAKU,EAAK,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,OAAO,YAAY,aAAa,GAAM,aAAa,GAAK,SAAsBV,EAAK,IAAI,CAAC,UAAU,+BAA+B,SAAsBA,EAAKK,EAAkB,CAAC,WAAWvC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,2FAA2F,EAAE,UAAU,CAAC,MAAM,2FAA2F,CAAC,EAAE,SAAsBkC,EAAKM,EAA0B,CAAC,OAAO,GAAG,MAAM,4EAA4E,EAAE,IAAI,SAAsBN,EAAKO,EAAU,CAAC,UAAU,2BAA2B,SAAsBP,EAAKxF,EAAS,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,eAAe,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE4D,EAAY,GAAgB4B,EAAK,MAAM,CAAC,UAAU,8BAA8B,SAAsBA,EAAKU,EAAK,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,OAAO,YAAY,aAAa,GAAM,aAAa,GAAK,SAAsBV,EAAK,IAAI,CAAC,UAAU,gCAAgC,SAAsBA,EAAKK,EAAkB,CAAC,WAAWvC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,2FAA2F,EAAE,UAAU,CAAC,MAAM,2FAA2F,CAAC,EAAE,SAAsBkC,EAAKM,EAA0B,CAAC,OAAO,GAAG,MAAM,4EAA4E,EAAE,IAAI,SAAsBN,EAAKO,EAAU,CAAC,UAAU,2BAA2B,SAAsBP,EAAKxF,EAAS,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,iBAAiB,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE4D,EAAY,GAAgB4B,EAAK,MAAM,CAAC,UAAU,8BAA8B,SAAsBA,EAAKU,EAAK,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,OAAO,YAAY,aAAa,GAAM,aAAa,GAAK,SAAsBV,EAAK,IAAI,CAAC,UAAU,+BAA+B,SAAsBA,EAAKK,EAAkB,CAAC,WAAWvC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,2FAA2F,EAAE,UAAU,CAAC,MAAM,2FAA2F,CAAC,EAAE,SAAsBkC,EAAKM,EAA0B,CAAC,OAAO,GAAG,MAAM,4EAA4E,EAAE,IAAI,SAAsBN,EAAKO,EAAU,CAAC,UAAU,2BAA2B,SAAsBP,EAAKxF,EAAS,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,WAAW,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewF,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,KAAK,WAAW,SAAsBE,EAAMzF,GAAmC,CAAC,QAAQkB,GAAU,UAAU,gBAAgB,wBAAwB,SAAS,mBAAmB,UAAU,GAAG0C,EAAU,QAAQzC,GAAW,KAAK,UAAU,UAAU,GAAK,IAAI2C,EAAK,SAAS,CAAcyB,EAAKvF,GAAmC,CAAC,QAAQkB,GAAU,UAAU,gBAAgB,wBAAwB,SAAS,QAAQC,GAAW,UAAU,GAAK,SAAsBoE,EAAKK,EAAkB,CAAC,WAAWvC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQ6C,EAA0B,GAAG,EAAE,YAAY,KAAK,WAAW,KAAK,IAAI,qEAAqE,CAAC,CAAC,EAAE,SAAsBX,EAAK/E,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQ0F,EAA0B,EAAE,EAAE,YAAY,KAAK,WAAW,KAAK,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,mBAAmB,qBAAqB,KAAK,oBAAoB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeX,EAAKpF,EAAgB,CAAC,kBAAkB,CAAC,WAAWkB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAW,eAAeE,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,GAAGyC,GAAW,KAAK,WAAW,IAAIC,EAAK,SAAsByB,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcF,EAAKQ,EAAS,CAAC,sBAAsB,GAAK,SAAsBR,EAAWS,EAAS,CAAC,SAAsBT,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKQ,EAAS,CAAC,sBAAsB,GAAK,SAAsBR,EAAWS,EAAS,CAAC,SAAsBT,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,qKAAqK,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKpF,EAAgB,CAAC,kBAAkB,CAAC,WAAWkB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAW,eAAeE,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,mBAAmB,cAAc,GAAG2C,EAAW,KAAK,cAAc,IAAIC,EAAK,SAAsBuB,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcF,EAAKQ,EAAS,CAAC,sBAAsB,GAAK,SAAsBR,EAAWS,EAAS,CAAC,SAAsBT,EAAK,IAAI,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKQ,EAAS,CAAC,sBAAsB,GAAK,SAAsBR,EAAWS,EAAS,CAAC,SAAsBP,EAAM,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,CAAC,+BAA4CF,EAAK,KAAK,CAAC,CAAC,EAAE,yEAAyE,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKQ,EAAS,CAAC,sBAAsB,GAAK,SAAsBN,EAAYO,EAAS,CAAC,SAAS,CAAcP,EAAM,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,CAAC,yDAAsEF,EAAK,KAAK,CAAC,CAAC,EAAE,uDAAuD,CAAC,CAAC,EAAeA,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,4KAA4K,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKpF,EAAgB,CAAC,kBAAkB,CAAC,WAAWkB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAW,eAAeE,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,eAAe,mBAAmB,cAAc,GAAG6C,EAAW,KAAK,cAAc,IAAIC,EAAK,SAAsBqB,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcF,EAAKQ,EAAS,CAAC,sBAAsB,GAAK,SAAsBR,EAAWS,EAAS,CAAC,SAAsBT,EAAK,IAAI,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKQ,EAAS,CAAC,sBAAsB,GAAK,SAAsBR,EAAWS,EAAS,CAAC,SAAsBT,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,yGAAyG,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeE,EAAMtF,EAAgB,CAAC,kBAAkB,CAAC,WAAWkB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAW,eAAeE,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,mBAAmB,WAAW,GAAG+C,EAAW,KAAK,WAAW,IAAIC,GAAK,SAAS,CAAcmB,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcF,EAAKQ,EAAS,CAAC,sBAAsB,GAAK,SAAsBR,EAAWS,EAAS,CAAC,SAAsBT,EAAK,IAAI,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKQ,EAAS,CAAC,sBAAsB,GAAK,SAAsBR,EAAWS,EAAS,CAAC,SAAsBT,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,4DAA4D,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKQ,EAAS,CAAC,sBAAsB,GAAK,SAAsBR,EAAWS,EAAS,CAAC,SAAsBT,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,wHAAwH,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAKK,EAAkB,CAAC,WAAWvC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQ6C,EAA0B,IAAI,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,oEAAoE,IAAI,0FAA0F,OAAO,oWAAoW,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQA,EAA0B,IAAI,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,oEAAoE,IAAI,0FAA0F,OAAO,oWAAoW,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQA,EAA0B,IAAI,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,0CAA0C,IAAI,0FAA0F,OAAO,oWAAoW,CAAC,CAAC,EAAE,SAAsBX,EAAK/E,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQ0F,EAA0B,IAAI,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,2DAA2D,IAAI,0FAA0F,OAAO,oWAAoW,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeX,EAAKpF,EAAgB,CAAC,kBAAkB,CAAC,WAAWkB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAW,eAAeE,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,mBAAmB,mBAAmB,GAAGiD,GAAW,KAAK,mBAAmB,IAAIC,GAAK,SAAsBiB,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcF,EAAKQ,EAAS,CAAC,sBAAsB,GAAK,SAAsBR,EAAWS,EAAS,CAAC,SAAsBT,EAAK,IAAI,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,qBAAqB,CAAC,CAAC,CAAC,EAAE,UAAU,eAAe,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKQ,EAAS,CAAC,sBAAsB,GAAK,SAAsBR,EAAWS,EAAS,CAAC,SAAsBT,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,wCAAwC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKQ,EAAS,CAAC,sBAAsB,GAAK,SAAsBR,EAAWS,EAAS,CAAC,SAAsBT,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,+EAAiF,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKK,EAAkB,CAAC,WAAWvC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,MAAM,eAAe,KAAK,QAAQ6C,EAA0B,IAAI,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,gFAAgF,IAAI,0FAA0F,OAAO,oWAAoW,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,MAAM,eAAe,KAAK,QAAQA,EAA0B,IAAI,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,gFAAgF,IAAI,0FAA0F,OAAO,oWAAoW,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,MAAM,eAAe,KAAK,QAAQA,EAA0B,IAAI,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,sDAAsD,IAAI,0FAA0F,OAAO,oWAAoW,CAAC,CAAC,EAAE,SAAsBX,EAAK/E,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,MAAM,eAAe,KAAK,QAAQ0F,EAA0B,IAAI,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,uEAAuE,IAAI,0FAA0F,OAAO,oWAAoW,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeX,EAAKQ,EAAS,CAAC,sBAAsB,GAAK,SAAsBR,EAAWS,EAAS,CAAC,SAAsBT,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,uDAAuD,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAKK,EAAkB,CAAC,WAAWvC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQ6C,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,gFAAgF,IAAI,0FAA0F,OAAO,kcAAkc,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQA,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,gFAAgF,IAAI,0FAA0F,OAAO,kcAAkc,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQA,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,sDAAsD,IAAI,0FAA0F,OAAO,kcAAkc,CAAC,CAAC,EAAE,SAAsBX,EAAK/E,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQ0F,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,uEAAuE,IAAI,0FAA0F,OAAO,kcAAkc,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeX,EAAKQ,EAAS,CAAC,sBAAsB,GAAK,SAAsBR,EAAWS,EAAS,CAAC,SAAsBT,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,uIAAuI,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKQ,EAAS,CAAC,sBAAsB,GAAK,SAAsBR,EAAWS,EAAS,CAAC,SAAsBT,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,8GAA8G,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,cAAc,GAAK,SAAsBA,EAAKK,EAAkB,CAAC,WAAWvC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,OAAO,eAAe,OAAO,QAAQ6C,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,gFAAgF,IAAI,0FAA0F,OAAO,oWAAoW,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,OAAO,eAAe,OAAO,QAAQA,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,gFAAgF,IAAI,0FAA0F,OAAO,oWAAoW,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,OAAO,eAAe,OAAO,QAAQA,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,sDAAsD,IAAI,0FAA0F,OAAO,oWAAoW,CAAC,CAAC,EAAE,SAAsBX,EAAK/E,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,OAAO,eAAe,OAAO,QAAQ0F,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,uEAAuE,IAAI,0FAA0F,OAAO,oWAAoW,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeX,EAAKpF,EAAgB,CAAC,kBAAkB,CAAC,WAAWkB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAW,eAAeE,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,mBAAmB,YAAY,GAAGmD,GAAW,KAAK,YAAY,IAAIC,GAAK,SAAsBe,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcF,EAAKQ,EAAS,CAAC,sBAAsB,GAAK,SAAsBR,EAAWS,EAAS,CAAC,SAAsBT,EAAK,IAAI,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,gBAAgB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKQ,EAAS,CAAC,sBAAsB,GAAK,SAAsBR,EAAWS,EAAS,CAAC,SAAsBT,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,gCAA2B,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,eAAe,SAAsBA,EAAKK,EAAkB,CAAC,WAAWvC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQ6C,EAA0B,IAAI,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,oFAAoF,IAAI,0FAA0F,OAAO,kcAAkc,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQA,EAA0B,IAAI,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,oFAAoF,IAAI,0FAA0F,OAAO,kcAAkc,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQA,EAA0B,IAAI,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,0DAA0D,IAAI,0FAA0F,OAAO,kcAAkc,CAAC,CAAC,EAAE,SAAsBX,EAAK/E,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQ0F,EAA0B,IAAI,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,2EAA2E,IAAI,0FAA0F,OAAO,kcAAkc,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeX,EAAKpF,EAAgB,CAAC,kBAAkB,CAAC,WAAWkB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAW,eAAeE,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,mBAAmB,YAAY,GAAGqD,GAAW,KAAK,YAAY,IAAIC,GAAK,SAAsBa,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcF,EAAKQ,EAAS,CAAC,sBAAsB,GAAK,SAAsBR,EAAWS,EAAS,CAAC,SAAsBT,EAAK,IAAI,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,gCAAgC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKQ,EAAS,CAAC,sBAAsB,GAAK,SAAsBR,EAAWS,EAAS,CAAC,SAAsBT,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,wGAAwG,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKQ,EAAS,CAAC,sBAAsB,GAAK,SAAsBR,EAAWS,EAAS,CAAC,SAAsBP,EAAM,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,CAAC,kHAA+HF,EAAK,KAAK,CAAC,CAAC,EAAE,8GAA8G,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAKM,EAA0B,CAAC,SAAsBN,EAAKO,EAAU,CAAC,UAAU,2BAA2B,SAAsBP,EAAKjF,GAAS,CAAC,MAAM,SAAS,UAAU,GAAG,YAAY,CAAC,UAAU,qBAAqB,aAAa,GAAG,YAAY,GAAG,UAAU,GAAG,kBAAkB,EAAI,EAAE,KAAK,GAAK,aAAa,EAAE,WAAW,CAAC,UAAU,EAAE,YAAY,GAAM,UAAU,EAAE,eAAe,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAE,UAAU,EAAE,EAAE,IAAI,GAAG,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,GAAG,cAAc,GAAG,YAAY,GAAG,eAAe,GAAM,aAAa,GAAG,WAAW,GAAG,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,MAAM,CAAciF,EAAK/E,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,IAAI,qEAAqE,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,EAAe+E,EAAK/E,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,KAAK,IAAI,sEAAsE,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,EAAe+E,EAAK/E,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,KAAK,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,CAAC,EAAE,WAAW,CAAC,MAAM,GAAM,KAAK,GAAK,SAAS,QAAQ,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+E,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAKM,EAA0B,CAAC,SAAsBN,EAAKO,EAAU,CAAC,UAAU,0BAA0B,SAAsBP,EAAKjF,GAAS,CAAC,MAAM,SAAS,UAAU,GAAG,YAAY,CAAC,UAAU,qBAAqB,aAAa,GAAG,YAAY,GAAG,UAAU,GAAG,kBAAkB,EAAI,EAAE,KAAK,GAAK,aAAa,EAAE,WAAW,CAAC,UAAU,EAAE,YAAY,GAAM,UAAU,EAAE,eAAe,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAE,UAAU,EAAE,EAAE,IAAI,GAAG,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,GAAG,cAAc,GAAG,YAAY,GAAG,eAAe,GAAM,aAAa,GAAG,WAAW,GAAG,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,MAAM,CAAciF,EAAK/E,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,MAAM,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,IAAI,mEAAmE,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,EAAe+E,EAAK/E,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,MAAM,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,EAAe+E,EAAK/E,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,MAAM,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,IAAI,sEAAsE,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,CAAC,EAAE,WAAW,CAAC,MAAM,GAAM,KAAK,GAAK,SAAS,QAAQ,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+E,EAAKpF,EAAgB,CAAC,kBAAkB,CAAC,WAAWkB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAW,eAAeE,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,GAAGuD,GAAW,KAAK,OAAO,IAAIC,GAAM,SAAsBW,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcF,EAAKQ,EAAS,CAAC,sBAAsB,GAAK,SAAsBR,EAAWS,EAAS,CAAC,SAAsBT,EAAK,IAAI,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,kCAAkC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKQ,EAAS,CAAC,sBAAsB,GAAK,SAAsBR,EAAWS,EAAS,CAAC,SAAsBP,EAAM,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,CAAC,2BAAwCF,EAAK,KAAK,CAAC,CAAC,EAAE,4CAA4C,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKQ,EAAS,CAAC,sBAAsB,GAAK,SAAsBN,EAAYO,EAAS,CAAC,SAAS,CAAcT,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,mCAAmC,CAAC,EAAeE,EAAM,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,CAAC,sEAAmFF,EAAK,KAAK,CAAC,CAAC,EAAE,mEAAmE,CAAC,CAAC,EAAeA,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,yFAAyF,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKK,EAAkB,CAAC,WAAWvC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,KAAK,QAAQ6C,EAA0B,KAAK,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,gFAAgF,IAAI,0FAA0F,OAAO,oWAAoW,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,KAAK,QAAQA,EAA0B,KAAK,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,gFAAgF,IAAI,0FAA0F,OAAO,oWAAoW,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,KAAK,QAAQA,EAA0B,KAAK,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,sDAAsD,IAAI,0FAA0F,OAAO,oWAAoW,CAAC,CAAC,EAAE,SAAsBX,EAAK/E,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,KAAK,QAAQ0F,EAA0B,KAAK,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,uEAAuE,IAAI,0FAA0F,OAAO,oWAAoW,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeX,EAAKQ,EAAS,CAAC,sBAAsB,GAAK,SAAsBR,EAAWS,EAAS,CAAC,SAAsBP,EAAM,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,CAAC,+BAA4CF,EAAK,KAAK,CAAC,CAAC,EAAE,4DAA4D,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAKK,EAAkB,CAAC,WAAWvC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,KAAK,QAAQ6C,EAA0B,KAAK,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,gFAAgF,IAAI,yFAAyF,OAAO,gWAAgW,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,KAAK,QAAQA,EAA0B,KAAK,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,gFAAgF,IAAI,yFAAyF,OAAO,gWAAgW,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,KAAK,QAAQA,EAA0B,KAAK,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,sDAAsD,IAAI,yFAAyF,OAAO,gWAAgW,CAAC,CAAC,EAAE,SAAsBX,EAAK/E,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,KAAK,QAAQ0F,EAA0B,KAAK,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,uEAAuE,IAAI,yFAAyF,OAAO,gWAAgW,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeT,EAAMtF,EAAgB,CAAC,kBAAkB,CAAC,WAAWkB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAW,eAAeE,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,mBAAmB,cAAc,GAAGyD,GAAW,KAAK,cAAc,IAAIC,GAAM,SAAS,CAAcO,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAKQ,EAAS,CAAC,sBAAsB,GAAK,SAAsBR,EAAWS,EAAS,CAAC,SAAsBT,EAAK,IAAI,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,gBAAgB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKK,EAAkB,CAAC,WAAWvC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,0CAA0C,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQ6C,EAA0B,KAAK,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,mEAAmE,IAAI,uEAAuE,OAAO,oWAAoW,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,0CAA0C,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQA,EAA0B,KAAK,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,mEAAmE,IAAI,uEAAuE,OAAO,oWAAoW,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,0CAA0C,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQA,EAA0B,KAAK,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,yCAAyC,IAAI,uEAAuE,OAAO,oWAAoW,CAAC,CAAC,EAAE,SAAsBX,EAAK/E,EAAM,CAAC,WAAW,CAAC,IAAI,0CAA0C,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQ0F,EAA0B,KAAK,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,0DAA0D,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeX,EAAKpF,EAAgB,CAAC,kBAAkB,CAAC,WAAWkB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAW,eAAeE,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,UAAU,SAAsBmE,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcF,EAAKQ,EAAS,CAAC,sBAAsB,GAAK,SAAsBR,EAAWS,EAAS,CAAC,SAAsBT,EAAK,IAAI,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKQ,EAAS,CAAC,sBAAsB,GAAK,SAAsBR,EAAWS,EAAS,CAAC,SAAsBT,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,2GAA2G,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKQ,EAAS,CAAC,sBAAsB,GAAK,SAAsBR,EAAWS,EAAS,CAAC,SAAsBT,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,sFAAsF,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAKK,EAAkB,CAAC,WAAWvC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQ6C,EAA0B,KAAK,EAAE,YAAY,KAAK,WAAW,IAAI,MAAM,+EAA+E,IAAI,yFAAyF,OAAO,0EAA0E,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQA,EAA0B,KAAK,EAAE,YAAY,KAAK,WAAW,IAAI,MAAM,+EAA+E,IAAI,yFAAyF,OAAO,0EAA0E,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQA,EAA0B,KAAK,EAAE,YAAY,KAAK,WAAW,IAAI,MAAM,yCAAyC,IAAI,yFAAyF,OAAO,0EAA0E,CAAC,CAAC,EAAE,SAAsBX,EAAK/E,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQ0F,EAA0B,KAAK,EAAE,YAAY,KAAK,WAAW,IAAI,MAAM,sEAAsE,IAAI,yFAAyF,OAAO,0EAA0E,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeX,EAAKpF,EAAgB,CAAC,kBAAkB,CAAC,WAAWkB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAW,eAAeE,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,mBAAmB,aAAa,KAAK,aAAa,SAAsBmE,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcF,EAAKQ,EAAS,CAAC,sBAAsB,GAAK,SAAsBR,EAAWS,EAAS,CAAC,SAAsBT,EAAK,IAAI,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,mBAAmB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKQ,EAAS,CAAC,sBAAsB,GAAK,SAAsBR,EAAWS,EAAS,CAAC,SAAsBT,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,6EAA6E,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKQ,EAAS,CAAC,sBAAsB,GAAK,SAAsBR,EAAWS,EAAS,CAAC,SAAsBT,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,6FAA6F,CAAC,CAAC,CAAC,EAAE,UAAU,eAAe,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAKK,EAAkB,CAAC,WAAWvC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQ6C,EAA0B,KAAK,EAAE,YAAY,KAAK,WAAW,IAAI,MAAM,+EAA+E,IAAI,wFAAwF,OAAO,yEAAyE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQA,EAA0B,KAAK,EAAE,YAAY,KAAK,WAAW,IAAI,MAAM,+EAA+E,IAAI,wFAAwF,OAAO,yEAAyE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQA,EAA0B,KAAK,EAAE,YAAY,KAAK,WAAW,IAAI,MAAM,yCAAyC,IAAI,wFAAwF,OAAO,yEAAyE,CAAC,CAAC,EAAE,SAAsBX,EAAK/E,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQ0F,EAA0B,KAAK,EAAE,YAAY,KAAK,WAAW,IAAI,MAAM,sEAAsE,IAAI,wFAAwF,OAAO,yEAAyE,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeX,EAAKpF,EAAgB,CAAC,kBAAkB,CAAC,WAAWkB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAW,eAAeE,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,mBAAmB,kBAAkB,KAAK,kBAAkB,SAAsBmE,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcF,EAAKQ,EAAS,CAAC,sBAAsB,GAAK,SAAsBR,EAAWS,EAAS,CAAC,SAAsBT,EAAK,IAAI,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKQ,EAAS,CAAC,sBAAsB,GAAK,SAAsBR,EAAWS,EAAS,CAAC,SAAsBT,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,iEAAiE,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKQ,EAAS,CAAC,sBAAsB,GAAK,SAAsBR,EAAWS,EAAS,CAAC,SAAsBT,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,gFAAgF,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAKK,EAAkB,CAAC,WAAWvC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQ6C,EAA0B,KAAK,EAAE,YAAY,KAAK,WAAW,IAAI,MAAM,+EAA+E,IAAI,yFAAyF,OAAO,0EAA0E,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQA,EAA0B,KAAK,EAAE,YAAY,KAAK,WAAW,IAAI,MAAM,+EAA+E,IAAI,yFAAyF,OAAO,0EAA0E,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQA,EAA0B,KAAK,EAAE,YAAY,KAAK,WAAW,IAAI,MAAM,yCAAyC,IAAI,yFAAyF,OAAO,0EAA0E,CAAC,CAAC,EAAE,SAAsBX,EAAK/E,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQ0F,EAA0B,KAAK,EAAE,YAAY,KAAK,WAAW,IAAI,MAAM,sEAAsE,IAAI,yFAAyF,OAAO,0EAA0E,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeX,EAAKpF,EAAgB,CAAC,kBAAkB,CAAC,WAAWkB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAW,eAAeE,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,QAAQ,SAAsBmE,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcF,EAAKQ,EAAS,CAAC,sBAAsB,GAAK,SAAsBR,EAAWS,EAAS,CAAC,SAAsBT,EAAK,IAAI,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,oBAAoB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKQ,EAAS,CAAC,sBAAsB,GAAK,SAAsBR,EAAWS,EAAS,CAAC,SAAsBT,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,6KAA6K,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKQ,EAAS,CAAC,sBAAsB,GAAK,SAAsBR,EAAWS,EAAS,CAAC,SAAsBT,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,0PAA0P,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKK,EAAkB,CAAC,WAAWvC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,QAAQ6C,EAA0B,KAAK,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,gFAAgF,IAAI,0FAA0F,OAAO,oWAAoW,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,QAAQA,EAA0B,KAAK,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,gFAAgF,IAAI,0FAA0F,OAAO,oWAAoW,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,QAAQA,EAA0B,KAAK,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,sDAAsD,IAAI,0FAA0F,OAAO,oWAAoW,CAAC,CAAC,EAAE,SAAsBX,EAAKhF,GAAY,CAAC,kBAAkB,CAAC,WAAWc,CAAW,EAAE,sBAAsB,GAAK,gBAAgBE,GAAW,eAAeC,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,QAAQ0E,EAA0B,KAAK,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,uEAAuE,IAAI,0FAA0F,OAAO,oWAAoW,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,QAAQ,MAAM,CAAC,qBAAqB,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeX,EAAKpF,EAAgB,CAAC,kBAAkB,CAAC,WAAWkB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAW,eAAeE,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,GAAG2D,GAAY,KAAK,QAAQ,IAAIC,GAAM,SAAsBO,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcF,EAAKQ,EAAS,CAAC,sBAAsB,GAAK,SAAsBR,EAAWS,EAAS,CAAC,SAAsBT,EAAK,IAAI,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKQ,EAAS,CAAC,sBAAsB,GAAK,SAAsBR,EAAWS,EAAS,CAAC,SAAsBT,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,6EAA6E,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKQ,EAAS,CAAC,sBAAsB,GAAK,SAAsBR,EAAWS,EAAS,CAAC,SAAsBP,EAAM,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,CAAC,oxBAAiyBF,EAAK,KAAK,CAAC,CAAC,EAAeA,EAAK,KAAK,CAAC,CAAC,EAAE,+SAA+S,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKK,EAAkB,CAAC,WAAWvC,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,KAAK,CAAC,EAAE,SAAsBkC,EAAKM,EAA0B,CAAC,OAAO,GAAG,MAAM,qBAAqB,EAAE,MAAM,SAAsBN,EAAKO,EAAU,CAAC,UAAU,0BAA0B,SAAsBP,EAAK7E,GAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe6E,EAAKM,EAA0B,CAAC,OAAO,GAAG,MAAM,OAAO,EAAE,IAAI,SAAsBN,EAAKO,EAAU,CAAC,UAAU,0BAA0B,aAAa,GAAK,SAAsBP,EAAK3E,GAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe2E,EAAK,MAAM,CAAC,UAAUI,GAAG5E,GAAkB,GAAGsE,EAAqB,EAAE,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQc,GAAI,CAAC,kFAAkF,IAAI1E,GAAS,aAAa,8HAA8H,kFAAkF,mUAAmU,kWAAkW,wRAAwR,sJAAsJ,wRAAwR,4ZAA4Z,4RAA4R,qNAAqN,8rCAA8rC,sqBAAsqB,sYAAsY,oeAAoe,oeAAoe,+GAA+G,6RAA6R,mjBAAmjB,udAAud,kSAAkS,+QAA+Q,4QAA4Q,gUAAgU,mSAAmS,8rBAA8rB,mpBAAmpB,6iBAA6iB,2UAA2U,8LAA8L,yjBAAyjB,8LAA8L,+LAA+L,ioBAAioB,+LAA+L,meAAme,iMAAiM,2GAA2G,kLAAkL,oLAAoL,mLAAmL,gJAAgJ,kLAAkL,mNAAmN,ugBAAugB,+LAA+L,ueAAue,+LAA+L,gbAAgb,wVAAwV,4SAA4S,8LAA8L,4IAA4I,qwZAAqwZ,GAAe0E,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,gcAAgc,gCAAgC1E,GAAS,aAAa,wjFAAwjF,wDAAwDA,GAAS,aAAa,6tCAA6tC,yDAAyDA,GAAS,aAAa,6tCAA6tC,EASr/uH2E,GAAgBC,GAAQnE,GAAUiE,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,KAAKA,GAAgB,aAAa,CAAC,OAAO,MAAM,MAAM,IAAI,EAAEG,GAASH,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,yCAAyC,OAAO,SAAS,IAAI,uEAAuE,CAAC,CAAC,EAAE,GAAGzG,GAAS,GAAGG,GAAc,GAAGO,GAAc,GAAGI,GAAY,GAAGE,GAAa,GAAG6F,GAAoCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,EAC70E,IAAMC,GAAqB,CAAC,QAAU,CAAC,MAAQ,CAAC,KAAO,SAAS,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,QAAU,CAAC,KAAO,iBAAiB,KAAO,kBAAkB,MAAQ,CAAC,EAAE,YAAc,CAAC,qBAAuB,OAAO,sBAAwB,IAAI,yBAA2B,OAAO,sBAAwB,QAAQ,6BAA+B,OAAO,uBAAyB,GAAG,yBAA2B,QAAQ,oCAAsC,mMAAyO,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC",
  "names": ["calcMaskWidth", "inset", "width", "useIsMouse", "isMouseDevice", "setIsMouseDevice", "ye", "fe", "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", "findNextItem", "delta", "children", "scrollTarget", "item", "length", "threshold", "isReducedMotion", "useReducedMotion", "goto", "scrollTo", "options", "gotoPage", "page", "gotoDelta", "pageLength", "currentPage", "clamp", "p", "Placeholder", "dots", "dotsBlurStyle", "isSelected", "Dot", "dotStyle", "u", "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", "TextLinkFonts", "getFonts", "KCNyg47b8_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "Link", "ComponentViewportProvider", "css", "FramereQlRKMvyX", "withCSS", "eQlRKMvyX_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "GnbFonts", "getFonts", "eQlRKMvyX_default", "TextLinkFonts", "KCNyg47b8_default", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "MotionDivWithFX", "withFX", "CarouselFonts", "Carousel", "ImageWithFX", "Image2", "FooterFonts", "eBm2lOGbp_default", "XButtonFonts", "FyvQCp8xo_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "animation2", "transition2", "animation3", "animation4", "animation5", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "ref1", "pe", "isDisplayed", "elementId", "useRouteElementId", "ref2", "elementId1", "ref3", "elementId2", "ref4", "elementId3", "ref5", "elementId4", "ref6", "elementId5", "ref7", "elementId6", "ref8", "elementId7", "ref9", "elementId8", "ref10", "elementId9", "ref11", "elementId10", "ref12", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "cx", "PropertyOverrides2", "ComponentViewportProvider", "Container", "RichText", "x", "Link", "getLoadingLazyAtYPosition", "css", "FramerX_LOeEo5S", "withCSS", "X_LOeEo5S_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
