{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/nFAy8p4fOASsyhPbo192/Ticker.js", "ssg:https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/xAqQJJMKulaAU8gK10ZA/Phosphor.js", "ssg:https://framerusercontent.com/modules/iiRJbsID1cJAfzrsT5UD/CoEOmaw7r2U1IqjGna7R/ie3BnjY7k.js", "ssg:https://framerusercontent.com/modules/N2k1oaG2UX9fdPhHfeLB/p71yFBS17y5HMQd4Ufve/AdmNKCxLL.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap}from\"framer-motion\";import{resize}from\"@motionone/dom\";const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export default function Ticker(props){/* Props */ let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */ const isCanvas=RenderTarget.current()===RenderTarget.canvas;const numChildren=Children.count(slots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */ const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/ createRef(),/*#__PURE__*/ createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */ let clonedChildren=[];let dupedChildren=[];/* Duplicate value */ let duplicateBy=0;let opacity=0;if(isCanvas){// duplicateBy = 10\nduplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;opacity=1;}/* Measure parent and child */ const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */ if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */ let initialResize=useRef(true);useEffect(()=>{measure();return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){measure();}initialResize.current=false;});},[]);}clonedChildren=Children.map(slots,(child,index)=>{var ref,ref1,ref2,ref3;let ref4;if(index===0){ref4=childrenRef[0];}if(index===slots.length-1){ref4=childrenRef[1];}const size={width:widthType?(ref=child.props)===null||ref===void 0?void 0:ref.width:\"100%\",height:heightType?(ref1=child.props)===null||ref1===void 0?void 0:ref1.height:\"100%\"};return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{ref:ref4,style:size,children:/*#__PURE__*/ cloneElement(child,{style:{...(ref2=child.props)===null||ref2===void 0?void 0:ref2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(ref3=child.props)===null||ref3===void 0?void 0:ref3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(slots,(child,childIndex)=>{var ref,ref1,ref2,ref3;return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":true,children:/*#__PURE__*/ cloneElement(child,{key:i+\" \"+childIndex,style:{...(ref=child.props)===null||ref===void 0?void 0:ref.style,width:widthType?(ref1=child.props)===null||ref1===void 0?void 0:ref1.width:\"100%\",height:heightType?(ref2=child.props)===null||ref2===void 0?void 0:ref2.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(ref3=child.props)===null||ref3===void 0?void 0:ref3.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);}),];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isInView=useInView(parentRef);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */ if(!isCanvas){/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */ if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue),]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */ useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */ if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */ const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */ if(!hasChildren){return /*#__PURE__*/ _jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/ _jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/ _jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/ _jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/ _jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/ _jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,transform:supportsAcceleratedAnimations?undefined:transform,willChange:\"transform\"},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){animationRef.current.updatePlaybackRate(hoverFactor);}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){animationRef.current.updatePlaybackRate(1);}},children:[clonedChildren,dupedChildren]})});};/* Default Properties */ Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */ addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\",],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */ const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */ const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */ const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import*as React from\"react\";import{useState,useEffect,useRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion}from\"framer-motion\";import{NullState}from\"https://framer.com/m/framer/icon-nullstate.js@0.7.0\";import HouseFactory from\"https://framer.com/m/phosphor-icons/House.js@0.0.53\";import{defaultEvents,useIconSelection}from\"https://framerusercontent.com/modules/Ma20hU0GGRxLxZphbywl/OSpwWF91FHPVFyQJjMHt/utils.js\";const iconKeys=[\"AddressBook\",\"AirTrafficControl\",\"Airplane\",\"AirplaneInFlight\",\"AirplaneLanding\",\"AirplaneTakeoff\",\"AirplaneTilt\",\"Airplay\",\"Alarm\",\"Alien\",\"AlignBottom\",\"AlignBottomSimple\",\"AlignCenterVertical\",\"AlignLeft\",\"AlignLeftSimple\",\"AlignRight\",\"AlignRightSimple\",\"AlignTop\",\"AlignTopSimple\",\"AmazonLogo\",\"Anchor\",\"AnchorSimple\",\"AndroidLogo\",\"AngularLogo\",\"Aperture\",\"AppStoreLogo\",\"AppWindow\",\"AppleLogo\",\"ApplePodcastsLogo\",\"Archive\",\"ArchiveBox\",\"ArchiveTray\",\"Armchair\",\"ArrowArcLeft\",\"ArrowArcRight\",\"ArrowBendDownLeft\",\"ArrowBendDownRight\",\"ArrowBendLeftDown\",\"ArrowBendLeftUp\",\"ArrowBendRightDown\",\"ArrowBendRightUp\",\"ArrowBendUpLeft\",\"ArrowBendUpRight\",\"ArrowCircleDown\",\"ArrowCircleDownLeft\",\"ArrowCircleDownRight\",\"ArrowCircleLeft\",\"ArrowCircleRight\",\"ArrowCircleUp\",\"ArrowCircleUpLeft\",\"ArrowCircleUpRight\",\"ArrowClockwise\",\"ArrowDown\",\"ArrowDownLeft\",\"ArrowDownRight\",\"ArrowElbowDownLeft\",\"ArrowElbowDownRight\",\"ArrowElbowLeft\",\"ArrowElbowLeftDown\",\"ArrowElbowLeftUp\",\"ArrowElbowRight\",\"ArrowElbowRightDown\",\"ArrowElbowRightUp\",\"ArrowElbowUpLeft\",\"ArrowElbowUpRight\",\"ArrowFatDown\",\"ArrowFatLeft\",\"ArrowFatLineDown\",\"ArrowFatLineLeft\",\"ArrowFatLineRight\",\"ArrowFatLineUp\",\"ArrowFatLinesDown\",\"ArrowFatLinesLeft\",\"ArrowFatLinesRight\",\"ArrowFatLinesUp\",\"ArrowFatRight\",\"ArrowFatUp\",\"ArrowLeft\",\"ArrowLineDown\",\"ArrowLineDownLeft\",\"ArrowLineDownRight\",\"ArrowLineLeft\",\"ArrowLineRight\",\"ArrowLineUp\",\"ArrowLineUpLeft\",\"ArrowLineUpRight\",\"ArrowRight\",\"ArrowSquareDown\",\"ArrowSquareDownLeft\",\"ArrowSquareDownRight\",\"ArrowSquareIn\",\"ArrowSquareLeft\",\"ArrowSquareOut\",\"ArrowSquareRight\",\"ArrowSquareUp\",\"ArrowSquareUpLeft\",\"ArrowSquareUpRight\",\"ArrowUDownLeft\",\"ArrowUDownRight\",\"ArrowULeftDown\",\"ArrowULeftUp\",\"ArrowURightDown\",\"ArrowURightUp\",\"ArrowUUpLeft\",\"ArrowUUpRight\",\"ArrowUp\",\"ArrowUpLeft\",\"ArrowUpRight\",\"ArrowsClockwise\",\"ArrowsDownUp\",\"ArrowsHorizontal\",\"ArrowsIn\",\"ArrowsInCardinal\",\"ArrowsInLineVertical\",\"ArrowsInSimple\",\"ArrowsLeftRight\",\"ArrowsMerge\",\"ArrowsOut\",\"ArrowsOutCardinal\",\"ArrowsOutSimple\",\"ArrowsSplit\",\"ArrowsVertical\",\"Article\",\"ArticleMedium\",\"ArticleNyTimes\",\"Asterisk\",\"AsteriskSimple\",\"At\",\"Atom\",\"Baby\",\"Backpack\",\"Backspace\",\"Bag\",\"BagSimple\",\"Balloon\",\"Bandaids\",\"Bank\",\"Barbell\",\"Barcode\",\"Barricade\",\"Baseball\",\"BaseballCap\",\"Basket\",\"Basketball\",\"Bathtub\",\"BatteryCharging\",\"BatteryEmpty\",\"BatteryFull\",\"BatteryHigh\",\"BatteryLow\",\"BatteryMedium\",\"BatteryPlus\",\"BatteryPlusVertical\",\"BatteryVerticalEmpty\",\"BatteryVerticalFull\",\"BatteryVerticalHigh\",\"BatteryVerticalLow\",\"BatteryWarning\",\"Bed\",\"BeerBottle\",\"BeerStein\",\"BehanceLogo\",\"Bell\",\"BellRinging\",\"BellSimple\",\"BellSimpleRinging\",\"BellSimpleSlash\",\"BellSimpleZ\",\"BellSlash\",\"BellZ\",\"BezierCurve\",\"Bicycle\",\"Binoculars\",\"Bird\",\"Bluetooth\",\"BluetoothConnected\",\"BluetoothSlash\",\"BluetoothX\",\"Boat\",\"Bone\",\"Book\",\"BookBookmark\",\"BookOpen\",\"BookOpenText\",\"Bookmark\",\"BookmarkSimple\",\"Bookmarks\",\"BookmarksSimple\",\"Books\",\"Boot\",\"BoundingBox\",\"BowlFood\",\"BracketsAngle\",\"BracketsCurly\",\"BracketsRound\",\"BracketsSquare\",\"Brain\",\"Brandy\",\"Bridge\",\"Briefcase\",\"BriefcaseMetal\",\"Broadcast\",\"Broom\",\"Browser\",\"Browsers\",\"Bug\",\"BugBeetle\",\"BugDroid\",\"Buildings\",\"Bus\",\"Butterfly\",\"Cactus\",\"Cake\",\"Calculator\",\"Calendar\",\"CalendarBlank\",\"CalendarCheck\",\"CalendarPlus\",\"CalendarX\",\"CallBell\",\"Camera\",\"CameraPlus\",\"CameraRotate\",\"CameraSlash\",\"Campfire\",\"Car\",\"CarProfile\",\"CarSimple\",\"Cardholder\",\"Cards\",\"CaretCircleDoubleUp\",\"CaretCircleDown\",\"CaretCircleLeft\",\"CaretCircleRight\",\"CaretCircleUp\",\"CaretCircleUpDown\",\"CaretDoubleDown\",\"CaretDoubleLeft\",\"CaretDoubleRight\",\"CaretDoubleUp\",\"CaretDown\",\"CaretLeft\",\"CaretRight\",\"CaretUp\",\"CaretUpDown\",\"Carrot\",\"CassetteTape\",\"CastleTurret\",\"Cat\",\"CellSignalFull\",\"CellSignalHigh\",\"CellSignalLow\",\"CellSignalMedium\",\"CellSignalNone\",\"CellSignalSlash\",\"CellSignalX\",\"Certificate\",\"Chair\",\"Chalkboard\",\"ChalkboardSimple\",\"ChalkboardTeacher\",\"Champagne\",\"ChargingStation\",\"ChartBar\",\"ChartBarHorizontal\",\"ChartDonut\",\"ChartLine\",\"ChartLineDown\",\"ChartLineUp\",\"ChartPie\",\"ChartPieSlice\",\"ChartPolar\",\"ChartScatter\",\"Chat\",\"ChatCentered\",\"ChatCenteredDots\",\"ChatCenteredText\",\"ChatCircle\",\"ChatCircleDots\",\"ChatCircleText\",\"ChatDots\",\"ChatTeardrop\",\"ChatTeardropDots\",\"ChatTeardropText\",\"ChatText\",\"Chats\",\"ChatsCircle\",\"ChatsTeardrop\",\"Check\",\"CheckCircle\",\"CheckFat\",\"CheckSquare\",\"CheckSquareOffset\",\"Checks\",\"Church\",\"Circle\",\"CircleDashed\",\"CircleHalf\",\"CircleHalfTilt\",\"CircleNotch\",\"CirclesFour\",\"CirclesThree\",\"CirclesThreePlus\",\"Circuitry\",\"Clipboard\",\"ClipboardText\",\"Clock\",\"ClockAfternoon\",\"ClockClockwise\",\"ClockCountdown\",\"ClosedCaptioning\",\"Cloud\",\"CloudArrowDown\",\"CloudArrowUp\",\"CloudCheck\",\"CloudFog\",\"CloudLightning\",\"CloudMoon\",\"CloudRain\",\"CloudSlash\",\"CloudSnow\",\"CloudSun\",\"CloudWarning\",\"CloudX\",\"Club\",\"CoatHanger\",\"CodaLogo\",\"Code\",\"CodeBlock\",\"CodeSimple\",\"CodepenLogo\",\"CodesandboxLogo\",\"Coffee\",\"Coin\",\"CoinVertical\",\"Coins\",\"Columns\",\"Command\",\"Compass\",\"CompassTool\",\"ComputerTower\",\"Confetti\",\"ContactlessPayment\",\"Control\",\"Cookie\",\"CookingPot\",\"Copy\",\"CopySimple\",\"Copyleft\",\"Copyright\",\"CornersIn\",\"CornersOut\",\"Couch\",\"Cpu\",\"CreditCard\",\"Crop\",\"Cross\",\"Crosshair\",\"CrosshairSimple\",\"Crown\",\"CrownSimple\",\"Cube\",\"CubeFocus\",\"CubeTransparent\",\"CurrencyBtc\",\"CurrencyCircleDollar\",\"CurrencyCny\",\"CurrencyDollar\",\"CurrencyDollarSimple\",\"CurrencyEth\",\"CurrencyEur\",\"CurrencyGbp\",\"CurrencyInr\",\"CurrencyJpy\",\"CurrencyKrw\",\"CurrencyKzt\",\"CurrencyNgn\",\"CurrencyRub\",\"Cursor\",\"CursorClick\",\"CursorText\",\"Cylinder\",\"Database\",\"Desktop\",\"DesktopTower\",\"Detective\",\"DevToLogo\",\"DeviceMobile\",\"DeviceMobileCamera\",\"DeviceMobileSpeaker\",\"DeviceTablet\",\"DeviceTabletCamera\",\"DeviceTabletSpeaker\",\"Devices\",\"Diamond\",\"DiamondsFour\",\"DiceFive\",\"DiceFour\",\"DiceOne\",\"DiceSix\",\"DiceThree\",\"DiceTwo\",\"Disc\",\"DiscordLogo\",\"Divide\",\"Dna\",\"Dog\",\"Door\",\"DoorOpen\",\"Dot\",\"DotOutline\",\"DotsNine\",\"DotsSix\",\"DotsSixVertical\",\"DotsThree\",\"DotsThreeCircle\",\"DotsThreeOutline\",\"DotsThreeVertical\",\"Download\",\"DownloadSimple\",\"Dress\",\"DribbbleLogo\",\"Drop\",\"DropHalf\",\"DropHalfBottom\",\"DropboxLogo\",\"Ear\",\"EarSlash\",\"Egg\",\"EggCrack\",\"Eject\",\"EjectSimple\",\"Elevator\",\"Engine\",\"Envelope\",\"EnvelopeOpen\",\"EnvelopeSimple\",\"EnvelopeSimpleOpen\",\"Equalizer\",\"Equals\",\"Eraser\",\"EscalatorDown\",\"EscalatorUp\",\"Exam\",\"Exclude\",\"ExcludeSquare\",\"Export\",\"Eye\",\"EyeClosed\",\"EyeSlash\",\"Eyedropper\",\"EyedropperSample\",\"Eyeglasses\",\"FaceMask\",\"FacebookLogo\",\"Factory\",\"Faders\",\"FadersHorizontal\",\"Fan\",\"FastForward\",\"FastForwardCircle\",\"Feather\",\"FigmaLogo\",\"File\",\"FileArchive\",\"FileArrowDown\",\"FileArrowUp\",\"FileAudio\",\"FileCloud\",\"FileCode\",\"FileCss\",\"FileCsv\",\"FileDashed\",\"FileDoc\",\"FileHtml\",\"FileImage\",\"FileJpg\",\"FileJs\",\"FileJsx\",\"FileLock\",\"FileMagnifyingGlass\",\"FileMinus\",\"FilePdf\",\"FilePlus\",\"FilePng\",\"FilePpt\",\"FileRs\",\"FileSql\",\"FileSvg\",\"FileText\",\"FileTs\",\"FileTsx\",\"FileVideo\",\"FileVue\",\"FileX\",\"FileXls\",\"FileZip\",\"Files\",\"FilmReel\",\"FilmScript\",\"FilmSlate\",\"FilmStrip\",\"Fingerprint\",\"FingerprintSimple\",\"FinnTheHuman\",\"Fire\",\"FireExtinguisher\",\"FireSimple\",\"FirstAid\",\"FirstAidKit\",\"Fish\",\"FishSimple\",\"Flag\",\"FlagBanner\",\"FlagCheckered\",\"FlagPennant\",\"Flame\",\"Flashlight\",\"Flask\",\"FloppyDisk\",\"FloppyDiskBack\",\"FlowArrow\",\"Flower\",\"FlowerLotus\",\"FlowerTulip\",\"FlyingSaucer\",\"Folder\",\"FolderDashed\",\"FolderLock\",\"FolderMinus\",\"FolderNotch\",\"FolderNotchMinus\",\"FolderNotchOpen\",\"FolderNotchPlus\",\"FolderOpen\",\"FolderPlus\",\"FolderSimple\",\"FolderSimpleDashed\",\"FolderSimpleLock\",\"FolderSimpleMinus\",\"FolderSimplePlus\",\"FolderSimpleStar\",\"FolderSimpleUser\",\"FolderStar\",\"FolderUser\",\"Folders\",\"Football\",\"Footprints\",\"ForkKnife\",\"FrameCorners\",\"FramerLogo\",\"Function\",\"Funnel\",\"FunnelSimple\",\"GameController\",\"Garage\",\"GasCan\",\"GasPump\",\"Gauge\",\"Gavel\",\"Gear\",\"GearFine\",\"GearSix\",\"GenderFemale\",\"GenderIntersex\",\"GenderMale\",\"GenderNeuter\",\"GenderNonbinary\",\"GenderTransgender\",\"Ghost\",\"Gif\",\"Gift\",\"GitBranch\",\"GitCommit\",\"GitDiff\",\"GitFork\",\"GitMerge\",\"GitPullRequest\",\"GithubLogo\",\"GitlabLogo\",\"GitlabLogoSimple\",\"Globe\",\"GlobeHemisphereEast\",\"GlobeHemisphereWest\",\"GlobeSimple\",\"GlobeStand\",\"Goggles\",\"GoodreadsLogo\",\"GoogleCardboardLogo\",\"GoogleChromeLogo\",\"GoogleDriveLogo\",\"GoogleLogo\",\"GooglePhotosLogo\",\"GooglePlayLogo\",\"GooglePodcastsLogo\",\"Gradient\",\"GraduationCap\",\"Grains\",\"GrainsSlash\",\"Graph\",\"GridFour\",\"GridNine\",\"Guitar\",\"Hamburger\",\"Hammer\",\"Hand\",\"HandCoins\",\"HandEye\",\"HandFist\",\"HandGrabbing\",\"HandHeart\",\"HandPalm\",\"HandPointing\",\"HandSoap\",\"HandSwipeLeft\",\"HandSwipeRight\",\"HandTap\",\"HandWaving\",\"Handbag\",\"HandbagSimple\",\"HandsClapping\",\"HandsPraying\",\"Handshake\",\"HardDrive\",\"HardDrives\",\"Hash\",\"HashStraight\",\"Headlights\",\"Headphones\",\"Headset\",\"Heart\",\"HeartBreak\",\"HeartHalf\",\"HeartStraight\",\"HeartStraightBreak\",\"Heartbeat\",\"Hexagon\",\"HighHeel\",\"HighlighterCircle\",\"Hoodie\",\"Horse\",\"Hourglass\",\"HourglassHigh\",\"HourglassLow\",\"HourglassMedium\",\"HourglassSimple\",\"HourglassSimpleHigh\",\"HourglassSimpleLow\",\"House\",\"HouseLine\",\"HouseSimple\",\"IceCream\",\"IdentificationBadge\",\"IdentificationCard\",\"Image\",\"ImageSquare\",\"Images\",\"ImagesSquare\",\"Infinity\",\"Info\",\"InstagramLogo\",\"Intersect\",\"IntersectSquare\",\"IntersectThree\",\"Jeep\",\"Kanban\",\"Key\",\"KeyReturn\",\"Keyboard\",\"Keyhole\",\"Knife\",\"Ladder\",\"LadderSimple\",\"Lamp\",\"Laptop\",\"Layout\",\"Leaf\",\"Lifebuoy\",\"Lightbulb\",\"LightbulbFilament\",\"Lighthouse\",\"Lightning\",\"LightningA\",\"LightningSlash\",\"LineSegment\",\"LineSegments\",\"Link\",\"LinkBreak\",\"LinkSimple\",\"LinkSimpleBreak\",\"LinkSimpleHorizontal\",\"LinkedinLogo\",\"LinuxLogo\",\"List\",\"ListBullets\",\"ListChecks\",\"ListDashes\",\"ListMagnifyingGlass\",\"ListNumbers\",\"ListPlus\",\"Lock\",\"LockKey\",\"LockKeyOpen\",\"LockLaminated\",\"LockLaminatedOpen\",\"LockOpen\",\"LockSimple\",\"LockSimpleOpen\",\"Lockers\",\"MagicWand\",\"Magnet\",\"MagnetStraight\",\"MagnifyingGlass\",\"MagnifyingGlassMinus\",\"MagnifyingGlassPlus\",\"MapPin\",\"MapPinLine\",\"MapTrifold\",\"MarkerCircle\",\"Martini\",\"MaskHappy\",\"MaskSad\",\"MathOperations\",\"Medal\",\"MedalMilitary\",\"MediumLogo\",\"Megaphone\",\"MegaphoneSimple\",\"MessengerLogo\",\"MetaLogo\",\"Metronome\",\"Microphone\",\"MicrophoneSlash\",\"MicrophoneStage\",\"MicrosoftExcelLogo\",\"MicrosoftOutlookLogo\",\"MicrosoftTeamsLogo\",\"MicrosoftWordLogo\",\"Minus\",\"MinusCircle\",\"MinusSquare\",\"Money\",\"Monitor\",\"MonitorPlay\",\"Moon\",\"MoonStars\",\"Moped\",\"MopedFront\",\"Mosque\",\"Motorcycle\",\"Mountains\",\"Mouse\",\"MouseSimple\",\"MusicNote\",\"MusicNoteSimple\",\"MusicNotes\",\"MusicNotesPlus\",\"MusicNotesSimple\",\"NavigationArrow\",\"Needle\",\"Newspaper\",\"NewspaperClipping\",\"Notches\",\"Note\",\"NoteBlank\",\"NotePencil\",\"Notebook\",\"Notepad\",\"Notification\",\"NotionLogo\",\"NumberCircleEight\",\"NumberCircleFive\",\"NumberCircleFour\",\"NumberCircleNine\",\"NumberCircleOne\",\"NumberCircleSeven\",\"NumberCircleSix\",\"NumberCircleThree\",\"NumberCircleTwo\",\"NumberCircleZero\",\"NumberEight\",\"NumberFive\",\"NumberFour\",\"NumberNine\",\"NumberOne\",\"NumberSeven\",\"NumberSix\",\"NumberSquareEight\",\"NumberSquareFive\",\"NumberSquareFour\",\"NumberSquareNine\",\"NumberSquareOne\",\"NumberSquareSeven\",\"NumberSquareSix\",\"NumberSquareThree\",\"NumberSquareTwo\",\"NumberSquareZero\",\"NumberThree\",\"NumberTwo\",\"NumberZero\",\"Nut\",\"NyTimesLogo\",\"Octagon\",\"OfficeChair\",\"Option\",\"OrangeSlice\",\"Package\",\"PaintBrush\",\"PaintBrushBroad\",\"PaintBrushHousehold\",\"PaintBucket\",\"PaintRoller\",\"Palette\",\"Pants\",\"PaperPlane\",\"PaperPlaneRight\",\"PaperPlaneTilt\",\"Paperclip\",\"PaperclipHorizontal\",\"Parachute\",\"Paragraph\",\"Parallelogram\",\"Park\",\"Password\",\"Path\",\"PatreonLogo\",\"Pause\",\"PauseCircle\",\"PawPrint\",\"PaypalLogo\",\"Peace\",\"Pen\",\"PenNib\",\"PenNibStraight\",\"Pencil\",\"PencilCircle\",\"PencilLine\",\"PencilSimple\",\"PencilSimpleLine\",\"PencilSimpleSlash\",\"PencilSlash\",\"Pentagram\",\"Pepper\",\"Percent\",\"Person\",\"PersonArmsSpread\",\"PersonSimple\",\"PersonSimpleBike\",\"PersonSimpleRun\",\"PersonSimpleThrow\",\"PersonSimpleWalk\",\"Perspective\",\"Phone\",\"PhoneCall\",\"PhoneDisconnect\",\"PhoneIncoming\",\"PhoneOutgoing\",\"PhonePlus\",\"PhoneSlash\",\"PhoneX\",\"PhosphorLogo\",\"Pi\",\"PianoKeys\",\"PictureInPicture\",\"PiggyBank\",\"Pill\",\"PinterestLogo\",\"Pinwheel\",\"Pizza\",\"Placeholder\",\"Planet\",\"Plant\",\"Play\",\"PlayCircle\",\"PlayPause\",\"Playlist\",\"Plug\",\"PlugCharging\",\"Plugs\",\"PlugsConnected\",\"Plus\",\"PlusCircle\",\"PlusMinus\",\"PlusSquare\",\"PokerChip\",\"PoliceCar\",\"Polygon\",\"Popcorn\",\"PottedPlant\",\"Power\",\"Prescription\",\"Presentation\",\"PresentationChart\",\"Printer\",\"Prohibit\",\"ProhibitInset\",\"ProjectorScreen\",\"ProjectorScreenChart\",\"Pulse\",\"PushPin\",\"PushPinSimple\",\"PushPinSimpleSlash\",\"PushPinSlash\",\"PuzzlePiece\",\"QrCode\",\"Question\",\"Queue\",\"Quotes\",\"Radical\",\"Radio\",\"RadioButton\",\"Radioactive\",\"Rainbow\",\"RainbowCloud\",\"ReadCvLogo\",\"Receipt\",\"ReceiptX\",\"Record\",\"Rectangle\",\"Recycle\",\"RedditLogo\",\"Repeat\",\"RepeatOnce\",\"Rewind\",\"RewindCircle\",\"RoadHorizon\",\"Robot\",\"Rocket\",\"RocketLaunch\",\"Rows\",\"Rss\",\"RssSimple\",\"Rug\",\"Ruler\",\"Scales\",\"Scan\",\"Scissors\",\"Scooter\",\"Screencast\",\"ScribbleLoop\",\"Scroll\",\"Seal\",\"SealCheck\",\"SealQuestion\",\"SealWarning\",\"Selection\",\"SelectionAll\",\"SelectionBackground\",\"SelectionForeground\",\"SelectionInverse\",\"SelectionPlus\",\"SelectionSlash\",\"Shapes\",\"Share\",\"ShareFat\",\"ShareNetwork\",\"Shield\",\"ShieldCheck\",\"ShieldCheckered\",\"ShieldChevron\",\"ShieldPlus\",\"ShieldSlash\",\"ShieldStar\",\"ShieldWarning\",\"ShirtFolded\",\"ShootingStar\",\"ShoppingBag\",\"ShoppingBagOpen\",\"ShoppingCart\",\"ShoppingCartSimple\",\"Shower\",\"Shrimp\",\"Shuffle\",\"ShuffleAngular\",\"ShuffleSimple\",\"Sidebar\",\"SidebarSimple\",\"Sigma\",\"SignIn\",\"SignOut\",\"Signature\",\"Signpost\",\"SimCard\",\"Siren\",\"SketchLogo\",\"SkipBack\",\"SkipBackCircle\",\"SkipForward\",\"SkipForwardCircle\",\"Skull\",\"SlackLogo\",\"Sliders\",\"SlidersHorizontal\",\"Slideshow\",\"Smiley\",\"SmileyAngry\",\"SmileyBlank\",\"SmileyMeh\",\"SmileyNervous\",\"SmileySad\",\"SmileySticker\",\"SmileyWink\",\"SmileyXEyes\",\"SnapchatLogo\",\"Sneaker\",\"SneakerMove\",\"Snowflake\",\"SoccerBall\",\"SortAscending\",\"SortDescending\",\"SoundcloudLogo\",\"Spade\",\"Sparkle\",\"SpeakerHifi\",\"SpeakerHigh\",\"SpeakerLow\",\"SpeakerNone\",\"SpeakerSimpleHigh\",\"SpeakerSimpleLow\",\"SpeakerSimpleNone\",\"SpeakerSimpleSlash\",\"SpeakerSimpleX\",\"SpeakerSlash\",\"SpeakerX\",\"Spinner\",\"SpinnerGap\",\"Spiral\",\"SplitHorizontal\",\"SplitVertical\",\"SpotifyLogo\",\"Square\",\"SquareHalf\",\"SquareHalfBottom\",\"SquareLogo\",\"SquareSplitVertical\",\"SquaresFour\",\"Stack\",\"StackOverflowLogo\",\"StackSimple\",\"Stairs\",\"Stamp\",\"Star\",\"StarAndCrescent\",\"StarFour\",\"StarHalf\",\"StarOfDavid\",\"SteeringWheel\",\"Steps\",\"Stethoscope\",\"Sticker\",\"Stool\",\"Stop\",\"StopCircle\",\"Storefront\",\"Strategy\",\"StripeLogo\",\"Student\",\"Subtitles\",\"Subtract\",\"SubtractSquare\",\"Suitcase\",\"SuitcaseRolling\",\"SuitcaseSimple\",\"Sun\",\"SunDim\",\"SunHorizon\",\"Sunglasses\",\"Swap\",\"Swatches\",\"SwimmingPool\",\"Sword\",\"Synagogue\",\"Syringe\",\"TShirt\",\"Table\",\"Tabs\",\"Tag\",\"TagChevron\",\"TagSimple\",\"Target\",\"Taxi\",\"TelegramLogo\",\"Television\",\"TelevisionSimple\",\"TennisBall\",\"Tent\",\"Terminal\",\"TerminalWindow\",\"TestTube\",\"TextAUnderline\",\"TextAa\",\"TextAlignCenter\",\"TextAlignJustify\",\"TextAlignLeft\",\"TextAlignRight\",\"TextB\",\"TextColumns\",\"TextH\",\"TextHFive\",\"TextHFour\",\"TextHOne\",\"TextHSix\",\"TextHThree\",\"TextHTwo\",\"TextIndent\",\"TextItalic\",\"TextOutdent\",\"TextStrikethrough\",\"TextT\",\"TextUnderline\",\"Textbox\",\"Thermometer\",\"ThermometerCold\",\"ThermometerHot\",\"ThermometerSimple\",\"ThumbsDown\",\"ThumbsUp\",\"Ticket\",\"TidalLogo\",\"TiktokLogo\",\"Timer\",\"Tipi\",\"ToggleLeft\",\"ToggleRight\",\"Toilet\",\"ToiletPaper\",\"Toolbox\",\"Tooth\",\"Tote\",\"ToteSimple\",\"Trademark\",\"TrademarkRegistered\",\"TrafficCone\",\"TrafficSign\",\"TrafficSignal\",\"Train\",\"TrainRegional\",\"TrainSimple\",\"Tram\",\"Translate\",\"Trash\",\"TrashSimple\",\"Tray\",\"Tree\",\"TreeEvergreen\",\"TreePalm\",\"TreeStructure\",\"TrendDown\",\"TrendUp\",\"Triangle\",\"Trophy\",\"Truck\",\"TwitchLogo\",\"TwitterLogo\",\"Umbrella\",\"UmbrellaSimple\",\"Unite\",\"UniteSquare\",\"Upload\",\"UploadSimple\",\"Usb\",\"User\",\"UserCircle\",\"UserCircleGear\",\"UserCircleMinus\",\"UserCirclePlus\",\"UserFocus\",\"UserGear\",\"UserList\",\"UserMinus\",\"UserPlus\",\"UserRectangle\",\"UserSquare\",\"UserSwitch\",\"Users\",\"UsersFour\",\"UsersThree\",\"Van\",\"Vault\",\"Vibrate\",\"Video\",\"VideoCamera\",\"VideoCameraSlash\",\"Vignette\",\"VinylRecord\",\"VirtualReality\",\"Virus\",\"Voicemail\",\"Volleyball\",\"Wall\",\"Wallet\",\"Warehouse\",\"Warning\",\"WarningCircle\",\"WarningDiamond\",\"WarningOctagon\",\"Watch\",\"WaveSawtooth\",\"WaveSine\",\"WaveSquare\",\"WaveTriangle\",\"Waveform\",\"Waves\",\"Webcam\",\"WebcamSlash\",\"WebhooksLogo\",\"WechatLogo\",\"WhatsappLogo\",\"Wheelchair\",\"WheelchairMotion\",\"WifiHigh\",\"WifiLow\",\"WifiMedium\",\"WifiNone\",\"WifiSlash\",\"WifiX\",\"Wind\",\"WindowsLogo\",\"Wine\",\"Wrench\",\"X\",\"XCircle\",\"XSquare\",\"YinYang\",\"YoutubeLogo\",];const moduleBaseUrl=\"https://framer.com/m/phosphor-icons/\";const weightOptions=[\"thin\",\"light\",\"regular\",\"bold\",\"fill\",\"duotone\",];const lowercaseIconKeyPairs=iconKeys.reduce((res,key)=>{res[key.toLowerCase()]=key;return res;},{});/**\n * PHOSPHOR\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n */ export function Icon(props){const{color,selectByList,iconSearch,iconSelection,onClick,onMouseDown,onMouseUp,onMouseEnter,onMouseLeave,weight,mirrored}=props;const isMounted=useRef(false);const iconKey=useIconSelection(iconKeys,selectByList,iconSearch,iconSelection,lowercaseIconKeyPairs);const[SelectedIcon,setSelectedIcon]=useState(iconKey===\"Home\"?HouseFactory(React):null);async function importModule(){// Get the selected module\ntry{const version=\"0.0.53\";const iconModuleUrl=`${moduleBaseUrl}${iconKey}.js@${version}`;const module=await import(/* webpackIgnore: true */ iconModuleUrl);if(isMounted.current)setSelectedIcon(module.default(React));}catch(err){if(isMounted.current)setSelectedIcon(null);}}useEffect(()=>{isMounted.current=true;importModule();return()=>{isMounted.current=false;};},[iconKey]);const isOnCanvas=RenderTarget.current()===RenderTarget.canvas;const emptyState=isOnCanvas?/*#__PURE__*/ _jsx(NullState,{}):null;return /*#__PURE__*/ _jsx(motion.div,{style:{display:\"contents\"},onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,children:SelectedIcon?/*#__PURE__*/ _jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",viewBox:\"0 0 256 256\",style:{userSelect:\"none\",width:\"100%\",height:\"100%\",display:\"inline-block\",fill:color,color,flexShrink:0,transform:mirrored?\"scale(-1, 1)\":undefined},focusable:\"false\",color:color,children:/*#__PURE__*/ _jsx(SelectedIcon,{color:color,weight:weight})}):emptyState});}Icon.displayName=\"Phosphor\";Icon.defaultProps={width:24,height:24,iconSelection:\"House\",iconSearch:\"House\",color:\"#66F\",selectByList:true,weight:\"regular\",mirrored:false};addPropertyControls(Icon,{selectByList:{type:ControlType.Boolean,title:\"Select\",enabledTitle:\"List\",disabledTitle:\"Search\",defaultValue:Icon.defaultProps.selectByList},iconSelection:{type:ControlType.Enum,options:iconKeys,defaultValue:Icon.defaultProps.iconSelection,title:\"Name\",hidden:({selectByList})=>!selectByList,description:\"Find every icon name on the [Phosphor site](https://phosphoricons.com/)\"},iconSearch:{type:ControlType.String,title:\"Name\",placeholder:\"Menu, Wifi, Box\u2026\",hidden:({selectByList})=>selectByList},color:{type:ControlType.Color,title:\"Color\",defaultValue:Icon.defaultProps.color},weight:{type:ControlType.Enum,title:\"Weight\",optionTitles:weightOptions.map(piece=>piece.charAt(0).toUpperCase()+piece.slice(1)),options:weightOptions,defaultValue:Icon.defaultProps.weight},mirrored:{type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",defaultValue:Icon.defaultProps.mirrored},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Icon\":{\"type\":\"reactComponent\",\"name\":\"Icon\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"24\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"24\"}},\"IconProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Phosphor.map", "// Generated by Framer (8a81902)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,getPropertyControls,RichText,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor1}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/xAqQJJMKulaAU8gK10ZA/Phosphor.js\";const PhosphorFonts=getFonts(Phosphor);const Phosphor1Controls=getPropertyControls(Phosphor1);const cycleOrder=[\"ybxsfYqOv\"];const variantClassNames={ybxsfYqOv:\"framer-v-s0vwrn\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const getProps=({heading,height,id,name,subheading,width,...props})=>{var _ref,_ref1,_ref2;return{...props,apqac6aVy:(_ref=name!==null&&name!==void 0?name:props.apqac6aVy)!==null&&_ref!==void 0?_ref:\"TreeEvergreen\",dH9XCYGIU:(_ref1=subheading!==null&&subheading!==void 0?subheading:props.dH9XCYGIU)!==null&&_ref1!==void 0?_ref1:\"Founded in 2021\",uGBnf2C4v:(_ref2=heading!==null&&heading!==void 0?heading:props.uGBnf2C4v)!==null&&_ref2!==void 0?_ref2:\"2 years and counting\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale}=useLocaleInfo();const{style,className,layoutId,variant,apqac6aVy,uGBnf2C4v,dH9XCYGIU,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"ybxsfYqOv\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const defaultLayoutId=React.useId();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-i0qxd\",classNames),style:{display:\"contents\"},children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsx(motion.div,{...restProps,className:cx(\"framer-s0vwrn\",className),\"data-framer-name\":\"a stat\",layoutDependency:layoutDependency,layoutId:\"ybxsfYqOv\",ref:ref,style:{backgroundColor:\"var(--token-d2149080-5a22-443c-a13e-3b0aff07868e, rgb(32, 66, 144))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,...style},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1x3soh9\",\"data-framer-name\":\"inner_wrap\",layoutDependency:layoutDependency,layoutId:\"BGQZruZGr\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1y2b3v8-container\",layoutDependency:layoutDependency,layoutId:\"rGBurUJiA-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:'var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255)) /* {\"name\":\"White\"} */',height:\"100%\",iconSearch:\"tree\",iconSelection:apqac6aVy,id:\"rGBurUJiA\",layoutId:\"rGBurUJiA\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-m7e59b\",\"data-framer-name\":\"info\",layoutDependency:layoutDependency,layoutId:\"CAUyE07gz\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter-Medium\", \"Inter\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-31b4a2da-7cbc-4e4b-9a70-7da8ae695e40, rgb(238, 249, 228)))\"},children:\"2 years and counting\"})}),className:\"framer-iq9ly0\",\"data-framer-name\":\"5 years and counting\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"kv9xHbDAX\",style:{\"--extracted-r6o4lv\":\"var(--token-31b4a2da-7cbc-4e4b-9a70-7da8ae695e40, rgb(238, 249, 228))\",\"--framer-paragraph-spacing\":\"0px\"},text:uGBnf2C4v,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-838c3146-b5a5-4a6b-aa88-97b7b928d90b, rgba(238, 249, 228, 0.7)))\"},children:\"Founded in 2021\"})}),className:\"framer-1fk9ne1\",\"data-framer-name\":\"Founded in 2019\",layoutDependency:layoutDependency,layoutId:\"UNL3ufwcv\",style:{\"--extracted-r6o4lv\":\"var(--token-838c3146-b5a5-4a6b-aa88-97b7b928d90b, rgba(238, 249, 228, 0.7))\",\"--framer-paragraph-spacing\":\"0px\"},text:dH9XCYGIU,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})})});});const css=['.framer-i0qxd [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-i0qxd .framer-1f8tfdx { display: block; }\",\".framer-i0qxd .framer-s0vwrn { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 16px 5px 16px 10px; position: relative; width: 280px; }\",\".framer-i0qxd .framer-1x3soh9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-i0qxd .framer-1y2b3v8-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-i0qxd .framer-m7e59b { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: wrap; gap: 2px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-i0qxd .framer-iq9ly0, .framer-i0qxd .framer-1fk9ne1 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-i0qxd .framer-s0vwrn, .framer-i0qxd .framer-1x3soh9, .framer-i0qxd .framer-m7e59b { gap: 0px; } .framer-i0qxd .framer-s0vwrn > *, .framer-i0qxd .framer-1x3soh9 > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-i0qxd .framer-s0vwrn > :first-child, .framer-i0qxd .framer-1x3soh9 > :first-child { margin-left: 0px; } .framer-i0qxd .framer-s0vwrn > :last-child, .framer-i0qxd .framer-1x3soh9 > :last-child { margin-right: 0px; } .framer-i0qxd .framer-m7e59b > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } .framer-i0qxd .framer-m7e59b > :first-child { margin-top: 0px; } .framer-i0qxd .framer-m7e59b > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 74\n * @framerIntrinsicWidth 280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"apqac6aVy\":\"name\",\"uGBnf2C4v\":\"heading\",\"dH9XCYGIU\":\"subheading\"}\n * @framerImmutableVariables false\n */const Framerie3BnjY7k=withCSS(Component,css,\"framer-i0qxd\");export default Framerie3BnjY7k;Framerie3BnjY7k.displayName=\"stats\";Framerie3BnjY7k.defaultProps={height:74,width:280};addPropertyControls(Framerie3BnjY7k,{apqac6aVy:(Phosphor1Controls===null||Phosphor1Controls===void 0?void 0:Phosphor1Controls[\"iconSelection\"])&&{...Phosphor1Controls[\"iconSelection\"],defaultValue:\"TreeEvergreen\",hidden:undefined,title:\"Name\"},uGBnf2C4v:{defaultValue:\"2 years and counting\",displayTextArea:false,title:\"Heading\",type:ControlType.String},dH9XCYGIU:{defaultValue:\"Founded in 2021\",displayTextArea:false,title:\"Subheading\",type:ControlType.String}});addFonts(Framerie3BnjY7k,[...PhosphorFonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerie3BnjY7k\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"280\",\"framerVariables\":\"{\\\"apqac6aVy\\\":\\\"name\\\",\\\"uGBnf2C4v\\\":\\\"heading\\\",\\\"dH9XCYGIU\\\":\\\"subheading\\\"}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"74\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ie3BnjY7k.map", "// Generated by Framer (ab692b1)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,ResolveLinks,RichText,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/nFAy8p4fOASsyhPbo192/Ticker.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Mn69eMnaMcqJ65TjxwR1/Embed.js\";import ElementsTooltip from\"#framer/local/canvasComponent/heY_NFnAI/heY_NFnAI.js\";import Stats from\"#framer/local/canvasComponent/ie3BnjY7k/ie3BnjY7k.js\";import ApplyAndStart from\"#framer/local/canvasComponent/j8t0J284E/j8t0J284E.js\";import SMCFooter from\"#framer/local/canvasComponent/koAn38_au/koAn38_au.js\";import FeatureCard from\"#framer/local/canvasComponent/Kym4ifyAB/Kym4ifyAB.js\";import Topbar from\"#framer/local/canvasComponent/lWUcIJP0H/lWUcIJP0H.js\";import Button from\"#framer/local/canvasComponent/Tnz4seCKc/Tnz4seCKc.js\";import SMCPartnerLogos from\"#framer/local/canvasComponent/Z3RhAsmhx/Z3RhAsmhx.js\";import*as sharedStyle4 from\"#framer/local/css/C1DoGnPNz/C1DoGnPNz.js\";import*as sharedStyle6 from\"#framer/local/css/Hq8ZPdkeq/Hq8ZPdkeq.js\";import*as sharedStyle5 from\"#framer/local/css/i59KN99_1/i59KN99_1.js\";import*as sharedStyle3 from\"#framer/local/css/pbkah0okA/pbkah0okA.js\";import*as sharedStyle2 from\"#framer/local/css/puB8kY46u/puB8kY46u.js\";import*as sharedStyle from\"#framer/local/css/pzgAh97sX/pzgAh97sX.js\";import*as sharedStyle7 from\"#framer/local/css/xZndidUCt/xZndidUCt.js\";import*as sharedStyle1 from\"#framer/local/css/YAP816Y5n/YAP816Y5n.js\";import metadataProvider from\"#framer/local/webPageMetadata/AdmNKCxLL/AdmNKCxLL.js\";const TopbarFonts=getFonts(Topbar);const ButtonFonts=getFonts(Button);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const TickerFonts=getFonts(Ticker);const StatsFonts=getFonts(Stats);const EmbedFonts=getFonts(Embed);const MotionDivWithFX=withFX(motion.div);const FeatureCardFonts=getFonts(FeatureCard);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const ElementsTooltipFonts=getFonts(ElementsTooltip);const MotionAWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.a);const SMCPartnerLogosFonts=getFonts(SMCPartnerLogos);const ApplyAndStartFonts=getFonts(ApplyAndStart);const SMCFooterFonts=getFonts(SMCFooter);const breakpoints={iej5Y0Lr1:\"(min-width: 1200px)\",J38MTWnPq:\"(min-width: 810px) and (max-width: 1199px)\",uFBFo2gQP:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-yhnpg\";const variantClassNames={iej5Y0Lr1:\"framer-v-rejqlu\",J38MTWnPq:\"framer-v-fovtcj\",uFBFo2gQP:\"framer-v-ttlpgf\"};const transition1={damping:80,delay:.1,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:100};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1126,transition:transition1,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1126,x:0,y:100};const transition2={damping:60,delay:.3,mass:1,stiffness:500,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:3027,transition:transition2,x:0,y:0};const animation5={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:3027,x:0,y:32};const transition3={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition3};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:100};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:100};const transition4={damping:80,delay:.2,mass:1,stiffness:400,type:\"spring\"};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:100};const transition5={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation10={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:0};const animation11={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const animation12={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:150};const animation13={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const animation14={opacity:1,rotate:0,rotateX:0,rotateY:-180,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"iej5Y0Lr1\",Phone:\"uFBFo2gQP\",Tablet:\"J38MTWnPq\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"iej5Y0Lr1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const onTap3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"mWp8SPc22\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"yeDUrG_kY\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"H0gZbSAKf\");const router=useRouter();const ref3=React.useRef(null);const elementId3=useRouteElementId(\"JIz64ZFd9\");const ref4=React.useRef(null);const elementId4=useRouteElementId(\"b5nx7ab3Z\");const ref5=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"iej5Y0Lr1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: none; }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-rejqlu\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-15emu6b-container\",layoutScroll:true,nodeId:\"i24LM97ZY\",scopeId:\"AdmNKCxLL\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J38MTWnPq:{variant:\"ZQwaB4_p3\"},uFBFo2gQP:{variant:\"ZQwaB4_p3\"}},children:/*#__PURE__*/_jsx(Topbar,{height:\"100%\",id:\"i24LM97ZY\",layoutId:\"i24LM97ZY\",style:{width:\"100%\"},variant:\"jRXICbciv\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-h6br5f\",\"data-framer-name\":\"Header scroll\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1731vzk\",\"data-border\":true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uFBFo2gQP:{animate:animation2,initial:animation3,style:{transformPerspective:1126}}},children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-u6l2yg\",\"data-framer-appear-id\":\"u6l2yg\",\"data-framer-name\":\"Where Rows\",initial:animation1,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1b74ta\",\"data-styles-preset\":\"pzgAh97sX\",style:{\"--framer-text-color\":\"var(--token-e76e1640-3c3a-4d59-9e3a-b5282e12619a, rgb(17, 146, 209))\"},children:\"Travel Nursing in Canada!\"})}),className:\"framer-1rpfh2d\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J38MTWnPq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-3nqyhf\",\"data-styles-preset\":\"YAP816Y5n\",style:{\"--framer-text-color\":\"var(--token-d2149080-5a22-443c-a13e-3b0aff07868e, rgb(32, 66, 144))\"},children:\"Where do YOU want to travel nurse?\"})})},uFBFo2gQP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-3nqyhf\",\"data-styles-preset\":\"YAP816Y5n\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d2149080-5a22-443c-a13e-3b0aff07868e, rgb(32, 66, 144))\"},children:\"Where do YOU want to travel nurse?\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-3nqyhf\",\"data-styles-preset\":\"YAP816Y5n\",children:\"Where do YOU want to travel nurse?\"})}),className:\"framer-bv7ya7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uFBFo2gQP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11ru2ty\",\"data-styles-preset\":\"puB8kY46u\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"With our 25 years of experience we offer you the incredible freedom to explore Canada. From Bella Bella in BC to Goose Bay in NL we offer the greatest number of contracts to choose from.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11ru2ty\",\"data-styles-preset\":\"puB8kY46u\",style:{\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"With our 25 years of experience we offer you the incredible freedom to explore Canada. From Bella Bella in BC to Goose Bay in NL we offer the greatest number of contracts to choose from.\"})}),className:\"framer-1yq4kf7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u67ckl\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uFBFo2gQP:{width:\"170px\",y:(componentViewport?.y||0)+0+0+0+100+0+0+291.8+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fx3wtu-container\",nodeId:\"ZsTqmCt2t\",scopeId:\"AdmNKCxLL\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J38MTWnPq:{variant:\"zMIqz4YH_\"},uFBFo2gQP:{style:{width:\"100%\"},variant:\"zMIqz4YH_\"}},children:/*#__PURE__*/_jsx(Button,{Goeh0UlpU:\"AirplaneTakeoff\",height:\"100%\",hyoIEBZCr:\"Why Travel Nurse\",id:\"ZsTqmCt2t\",layoutId:\"ZsTqmCt2t\",Uwhubicpx:true,variant:\"koqbpXF0Q\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uFBFo2gQP:{width:\"170px\",y:(componentViewport?.y||0)+0+0+0+100+0+0+291.8+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hcs09g-container\",nodeId:\"dVqbpFI21\",scopeId:\"AdmNKCxLL\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J38MTWnPq:{variant:\"zMIqz4YH_\"},uFBFo2gQP:{style:{width:\"100%\"},variant:\"zMIqz4YH_\"}},children:/*#__PURE__*/_jsx(Button,{Goeh0UlpU:\"Laptop\",height:\"100%\",hyoIEBZCr:\"How It Works\",id:\"dVqbpFI21\",layoutId:\"dVqbpFI21\",Uwhubicpx:true,variant:\"koqbpXF0Q\",width:\"100%\"})})})})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wqu9sx\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-q4cbej-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"DwEFbkW1H\",scopeId:\"AdmNKCxLL\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uFBFo2gQP:{fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false}}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"top\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:15,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"DwEFbkW1H\",layoutId:\"DwEFbkW1H\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:112.5,intrinsicWidth:200,pixelHeight:225,pixelWidth:400,src:\"https://framerusercontent.com/images/uyMUtfGpV7dPfhOITmseUFEwU.jpg\"},className:\"framer-54f2g8\",\"data-framer-name\":\"$1b956894acd3_78661771_3592_42e9_a3b1_b9f6ff8a1864\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:150,intrinsicWidth:200,pixelHeight:300,pixelWidth:400,src:\"https://framerusercontent.com/images/XNZZlbRTF8Tgm7xIHaF4btQqqGM.jpg\"},className:\"framer-scr1aa\",\"data-framer-name\":\"a34829e35c5e_img_8982\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:112.5,intrinsicWidth:200,pixelHeight:225,pixelWidth:400,src:\"https://framerusercontent.com/images/sksP38SGPSedMzqVMwSWGHC99U.jpg\"},className:\"framer-u8u3h6\",\"data-framer-name\":\"b2709e55e253_inbound2072217824381575633\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:150,intrinsicWidth:200,pixelHeight:300,pixelWidth:400,src:\"https://framerusercontent.com/images/hbyWnIzeM5AgEllzs8J30h1GJes.jpg\"},className:\"framer-14cu59d\",\"data-framer-name\":\"f415553202f6_img_5903\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:150,intrinsicWidth:200,pixelHeight:300,pixelWidth:400,src:\"https://framerusercontent.com/images/A9edcsSRtb6Sr2DDyigA0w3ByHk.jpg\"},className:\"framer-86sg9j\",\"data-framer-name\":\"dfbcd79033ab_img_0294\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:333.5,intrinsicWidth:250,pixelHeight:667,pixelWidth:500,sizes:\"299.8501px\",src:\"https://framerusercontent.com/images/k077UKNxBCTvp8GlTbjgusCvA.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/k077UKNxBCTvp8GlTbjgusCvA.jpg 500w\"},className:\"framer-tct6f9\",\"data-framer-name\":\"BC_Kelowna_David_Dunphy_Kaitlind_Costello_9\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:333.5,intrinsicWidth:250,pixelHeight:667,pixelWidth:500,sizes:\"299.8501px\",src:\"https://framerusercontent.com/images/fkvwoQWBZ8C5lvc2Xs6qvX1S0U.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/fkvwoQWBZ8C5lvc2Xs6qvX1S0U.jpg 500w\"},className:\"framer-vip45r\",\"data-framer-name\":\"ON_Fort_Albany_Lindsay_Pentland_3\"})],speed:55,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tj3ngs-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"D2sXLS1nY\",scopeId:\"AdmNKCxLL\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"top\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:15,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"D2sXLS1nY\",layoutId:\"D2sXLS1nY\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:150,intrinsicWidth:200,pixelHeight:300,pixelWidth:400,src:\"https://framerusercontent.com/images/M0c1Srqxu62LwC2ulWQ5qZUo.jpg\"},className:\"framer-f8dpyb\",\"data-framer-name\":\"$3a855b7f6661_img_20231218_wa0001\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:112.5,intrinsicWidth:200,pixelHeight:225,pixelWidth:400,src:\"https://framerusercontent.com/images/P0wObQw9x69cZvWnEWT9cDlHqD0.jpg\"},className:\"framer-me0mw1\",\"data-framer-name\":\"$19052406ec1d_img_8124\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:266.5,intrinsicWidth:200,pixelHeight:533,pixelWidth:400,sizes:\"300.1876px\",src:\"https://framerusercontent.com/images/pBn4MbBkX4N0z2Mzi1tikLrw1sc.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/pBn4MbBkX4N0z2Mzi1tikLrw1sc.jpg 400w\"},className:\"framer-u1h40t\",\"data-framer-name\":\"Facetune_09_09_2023_23_02_06\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:266.5,intrinsicWidth:200,pixelHeight:533,pixelWidth:400,sizes:\"300.1876px\",src:\"https://framerusercontent.com/images/XSZgoyg4GK9jJEmgiQiVwrFrG2M.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/XSZgoyg4GK9jJEmgiQiVwrFrG2M.jpg 400w\"},className:\"framer-14gkx8z\",\"data-framer-name\":\"$372FF984_2BFD_4F91_8F9C_4B6F1508A733\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:333.5,intrinsicWidth:250,pixelHeight:667,pixelWidth:500,sizes:\"299.8501px\",src:\"https://framerusercontent.com/images/kKYMVTQS4y4q5A1JVyR69ADRMiE.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/kKYMVTQS4y4q5A1JVyR69ADRMiE.jpg 500w\"},className:\"framer-1ovncmm\",\"data-framer-name\":\"s_YK_Whitehorse_Ashley_Anne_Murray_6_1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:187.5,intrinsicWidth:250,pixelHeight:375,pixelWidth:500,src:\"https://framerusercontent.com/images/Fv5hv4kTJS3rPzp5W6XxK1sx4ME.jpg\"},className:\"framer-rljsg1\",\"data-framer-name\":\"s_IMG_7090_1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:333.5,intrinsicWidth:250,pixelHeight:667,pixelWidth:500,sizes:\"299.8501px\",src:\"https://framerusercontent.com/images/6Bl0472QTcZGBuYAI7jiclNzwD0.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/6Bl0472QTcZGBuYAI7jiclNzwD0.jpg 500w\"},className:\"framer-1yo3lj0\",\"data-framer-name\":\"s_IMG_4072_1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:266.5,intrinsicWidth:200,pixelHeight:533,pixelWidth:400,sizes:\"300.1876px\",src:\"https://framerusercontent.com/images/qSc9siuMuEWdEEpr1Fy88ZCE83A.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/qSc9siuMuEWdEEpr1Fy88ZCE83A.jpg 400w\"},className:\"framer-12bmzct\",\"data-framer-name\":\"$02aaa8e28064_fullsizerender\"})],speed:45,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]})}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation4,className:\"framer-1pwcycr\",\"data-framer-appear-id\":\"1pwcycr\",\"data-framer-name\":\"header proud\",id:elementId,initial:animation5,optimized:true,ref:ref1,style:{transformPerspective:3027},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pquxlc\",\"data-framer-name\":\"top_a\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kg71jn\",\"data-framer-name\":\"img_holder\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J38MTWnPq:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3024,intrinsicWidth:3084,pixelHeight:3024,pixelWidth:3084,sizes:`max(max((${componentViewport?.width||\"100vw\"} - 96px) / 2, 200px), 1px)`,src:\"https://framerusercontent.com/images/5LMeLgZ7QlqHWBSD6eZ4GVI4WVI.jpeg\",srcSet:\"https://framerusercontent.com/images/5LMeLgZ7QlqHWBSD6eZ4GVI4WVI.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/5LMeLgZ7QlqHWBSD6eZ4GVI4WVI.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/5LMeLgZ7QlqHWBSD6eZ4GVI4WVI.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/5LMeLgZ7QlqHWBSD6eZ4GVI4WVI.jpeg 3084w\"}},uFBFo2gQP:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3024,intrinsicWidth:3084,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1200+24+0+0+0+-45),pixelHeight:3024,pixelWidth:3084,sizes:`max(${componentViewport?.width||\"100vw\"} - 48px, 1px)`,src:\"https://framerusercontent.com/images/5LMeLgZ7QlqHWBSD6eZ4GVI4WVI.jpeg\",srcSet:\"https://framerusercontent.com/images/5LMeLgZ7QlqHWBSD6eZ4GVI4WVI.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/5LMeLgZ7QlqHWBSD6eZ4GVI4WVI.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/5LMeLgZ7QlqHWBSD6eZ4GVI4WVI.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/5LMeLgZ7QlqHWBSD6eZ4GVI4WVI.jpeg 3084w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3024,intrinsicWidth:3084,pixelHeight:3024,pixelWidth:3084,sizes:`max(max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 176px) / 2, 200px), 1px)`,src:\"https://framerusercontent.com/images/5LMeLgZ7QlqHWBSD6eZ4GVI4WVI.jpeg\",srcSet:\"https://framerusercontent.com/images/5LMeLgZ7QlqHWBSD6eZ4GVI4WVI.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/5LMeLgZ7QlqHWBSD6eZ4GVI4WVI.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/5LMeLgZ7QlqHWBSD6eZ4GVI4WVI.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/5LMeLgZ7QlqHWBSD6eZ4GVI4WVI.jpeg 3084w\"},className:\"framer-18oztlf\",\"data-framer-name\":\"hero image\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-lndm9r\",\"data-framer-name\":\"hero text\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jbya4b\",\"data-framer-name\":\"inner_wrap\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-njrjvp\",\"data-framer-name\":\"headings\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J38MTWnPq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1hk9i4u\",\"data-styles-preset\":\"C1DoGnPNz\",children:\"Welcome to Canada's most experienced travel nursing company!\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1tif1bq\",\"data-styles-preset\":\"pbkah0okA\",children:\"Welcome to Canada's most experienced travel nursing company!\"})}),className:\"framer-1v0wxd8\",\"data-framer-name\":\"We\u2019re changing how startups find talent. Join us.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f5pnw3\",\"data-framer-name\":\"mission and vision\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-qemwmo\",\"data-styles-preset\":\"i59KN99_1\",children:\"Our mission is to enhance the enjoyability and comfort of your travel, nursing contract, and Canadian adventure to the fullest extent possible.\"})}),className:\"framer-10k9j5h\",\"data-framer-name\":\"Our mission is to enable startups to build their dream teams through the tools and support we provide.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-qemwmo\",\"data-styles-preset\":\"i59KN99_1\",children:\"You are regarded as a highly valued team member, and we provide insurance and liability coverage to ensure your peace of mind.\"})}),className:\"framer-o5k07f\",\"data-framer-name\":\"We envision a world where every startup has access to the best talent and everyone the best job.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bluip4\",\"data-framer-name\":\"top_b\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16s77l2\",\"data-framer-name\":\"stats\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x2gq7w\",\"data-framer-name\":\"stats_a\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-9hnihn-container\",nodeId:\"K5tdsiKK8\",scopeId:\"AdmNKCxLL\",children:/*#__PURE__*/_jsx(Stats,{apqac6aVy:\"TreeEvergreen\",dH9XCYGIU:\"Founded in January 1999\",height:\"100%\",id:\"K5tdsiKK8\",layoutId:\"K5tdsiKK8\",style:{width:\"100%\"},uGBnf2C4v:\"25 Years and Counting\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-l2aewy-container\",nodeId:\"SMU6jTxcK\",scopeId:\"AdmNKCxLL\",children:/*#__PURE__*/_jsx(Stats,{apqac6aVy:\"StarFour\",dH9XCYGIU:\"In 2023.\",height:\"100%\",id:\"SMU6jTxcK\",layoutId:\"SMU6jTxcK\",style:{width:\"100%\"},uGBnf2C4v:\"2,109 Nurses Placements\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-joe2zs\",\"data-framer-name\":\"stats_b\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-hmrmty-container\",nodeId:\"IPm8qH01b\",scopeId:\"AdmNKCxLL\",children:/*#__PURE__*/_jsx(Stats,{apqac6aVy:\"MapPin\",dH9XCYGIU:\"In 2023.\",height:\"100%\",id:\"IPm8qH01b\",layoutId:\"IPm8qH01b\",style:{width:\"100%\"},uGBnf2C4v:\"857,709 Hours Of Care\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hdw3d3-container\",nodeId:\"HHFDW12um\",scopeId:\"AdmNKCxLL\",children:/*#__PURE__*/_jsx(Stats,{apqac6aVy:\"Hand\",dH9XCYGIU:\"We're here to help you!\",height:\"100%\",id:\"HHFDW12um\",layoutId:\"HHFDW12um\",style:{width:\"100%\"},uGBnf2C4v:\"43 Support Staff\",width:\"100%\"})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gkrcsv\",\"data-framer-name\":\"bottom imgs\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ns7555\",\"data-framer-name\":\"h_img_holder\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J38MTWnPq:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:902,intrinsicWidth:1200,pixelHeight:902,pixelWidth:1200,sizes:`max((${componentViewport?.width||\"100vw\"} - 96px) / 2, 1px)`,src:\"https://framerusercontent.com/images/iyJDuKsAHF3XPhRgbVevMDrzEFo.jpg\",srcSet:\"https://framerusercontent.com/images/iyJDuKsAHF3XPhRgbVevMDrzEFo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/iyJDuKsAHF3XPhRgbVevMDrzEFo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/iyJDuKsAHF3XPhRgbVevMDrzEFo.jpg 1200w\"}},uFBFo2gQP:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:902,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1200+24+901.8+0+336+0+0+0),pixelHeight:902,pixelWidth:1200,sizes:`max(${componentViewport?.width||\"100vw\"} - 48px, 1px)`,src:\"https://framerusercontent.com/images/iyJDuKsAHF3XPhRgbVevMDrzEFo.jpg\",srcSet:\"https://framerusercontent.com/images/iyJDuKsAHF3XPhRgbVevMDrzEFo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/iyJDuKsAHF3XPhRgbVevMDrzEFo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/iyJDuKsAHF3XPhRgbVevMDrzEFo.jpg 1200w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:902,intrinsicWidth:1200,pixelHeight:902,pixelWidth:1200,sizes:`max((max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 176px) / 2, 1px) - 16px) / 2, 1px)`,src:\"https://framerusercontent.com/images/iyJDuKsAHF3XPhRgbVevMDrzEFo.jpg\",srcSet:\"https://framerusercontent.com/images/iyJDuKsAHF3XPhRgbVevMDrzEFo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/iyJDuKsAHF3XPhRgbVevMDrzEFo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/iyJDuKsAHF3XPhRgbVevMDrzEFo.jpg 1200w\"},className:\"framer-19m9wq9\",\"data-framer-name\":\"hero image 2\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-17rxx6m\",\"data-framer-name\":\"h_img_holder\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J38MTWnPq:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:657,intrinsicWidth:1200,pixelHeight:657,pixelWidth:1200,sizes:`max((${componentViewport?.width||\"100vw\"} - 96px) / 2, 1px)`,src:\"https://framerusercontent.com/images/6f28Xvrl31bJfw9NBOG4bUS2V1g.jpg\",srcSet:\"https://framerusercontent.com/images/6f28Xvrl31bJfw9NBOG4bUS2V1g.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/6f28Xvrl31bJfw9NBOG4bUS2V1g.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/6f28Xvrl31bJfw9NBOG4bUS2V1g.jpg 1200w\"}},uFBFo2gQP:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:657,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1200+24+901.8+0+336+0+168+0),pixelHeight:657,pixelWidth:1200,sizes:`max(${componentViewport?.width||\"100vw\"} - 48px, 1px)`,src:\"https://framerusercontent.com/images/6f28Xvrl31bJfw9NBOG4bUS2V1g.jpg\",srcSet:\"https://framerusercontent.com/images/6f28Xvrl31bJfw9NBOG4bUS2V1g.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/6f28Xvrl31bJfw9NBOG4bUS2V1g.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/6f28Xvrl31bJfw9NBOG4bUS2V1g.jpg 1200w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:657,intrinsicWidth:1200,pixelHeight:657,pixelWidth:1200,sizes:`max((max((min(${componentViewport?.width||\"100vw\"}, 1440px) - 176px) / 2, 1px) - 16px) / 2, 1px)`,src:\"https://framerusercontent.com/images/6f28Xvrl31bJfw9NBOG4bUS2V1g.jpg\",srcSet:\"https://framerusercontent.com/images/6f28Xvrl31bJfw9NBOG4bUS2V1g.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/6f28Xvrl31bJfw9NBOG4bUS2V1g.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/6f28Xvrl31bJfw9NBOG4bUS2V1g.jpg 1200w\"},className:\"framer-xtpf00\",\"data-framer-name\":\"hero image 3\"})})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pfnflr\",\"data-framer-name\":\"Testimonials 2\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-86jh7n\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uFBFo2gQP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"29px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.1px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"What our nurses have to say!\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.1px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"What our nurses have to say!\"})}),className:\"framer-179u6l9\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11ru2ty\",\"data-styles-preset\":\"puB8kY46u\",style:{\"--framer-text-alignment\":\"center\"},children:\"Our nurses valuable feedback helps us continuously improve. We are sincerely grateful for their time and effort in sharing their thoughts.\"})}),className:\"framer-qy693f\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1p9pkjf-container\",isModuleExternal:true,nodeId:\"AocW81FQV\",scopeId:\"AdmNKCxLL\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<script src=\"https://static.elfsight.com/platform/platform.js\" data-use-service-core defer></script>\\n<div class=\"elfsight-app-b4c46350-ac5e-4e4c-b0dc-49eeab40181f\" data-elfsight-app-lazy></div>',id:\"AocW81FQV\",layoutId:\"AocW81FQV\",style:{width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J38MTWnPq:{background:{alt:\"\",fit:\"fill\",pixelHeight:936,pixelWidth:1600,positionX:\"left\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/WAOi1xPRJ2sX5glXKiSsTkSDCs.jpg\",srcSet:\"https://framerusercontent.com/images/WAOi1xPRJ2sX5glXKiSsTkSDCs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/WAOi1xPRJ2sX5glXKiSsTkSDCs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/WAOi1xPRJ2sX5glXKiSsTkSDCs.jpg 1600w\"}},uFBFo2gQP:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3577.3),pixelHeight:1514,pixelWidth:800,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/KFeEi0PLypAtO5GPDKCKKY5tZUM.jpg\",srcSet:\"https://framerusercontent.com/images/KFeEi0PLypAtO5GPDKCKKY5tZUM.jpg?scale-down-to=1024 541w,https://framerusercontent.com/images/KFeEi0PLypAtO5GPDKCKKY5tZUM.jpg 800w\"}}},children:/*#__PURE__*/_jsxs(Image,{as:\"header\",background:{alt:\"\",fit:\"fill\",pixelHeight:936,pixelWidth:1600,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/WAOi1xPRJ2sX5glXKiSsTkSDCs.jpg\",srcSet:\"https://framerusercontent.com/images/WAOi1xPRJ2sX5glXKiSsTkSDCs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/WAOi1xPRJ2sX5glXKiSsTkSDCs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/WAOi1xPRJ2sX5glXKiSsTkSDCs.jpg 1600w\"},className:\"framer-peb8xx\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J38MTWnPq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtOTAw\",\"--framer-font-family\":'\"Inter Tight\", sans-serif',\"--framer-font-size\":\"71.46039290476864px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"0.8em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-633663d4-6135-4d2d-a328-8707c8a7d2dc, rgb(255, 60, 0))\"},children:/*#__PURE__*/_jsxs(\"span\",{style:{\"--framer-font-size\":\"116.96432022529396px\"},children:[\"SELECT \",/*#__PURE__*/_jsx(\"br\",{}),\"SHOUTOUTS\"]})})}),viewBox:\"0 0 730 187\",viewBoxScale:.67},uFBFo2gQP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtOTAw\",\"--framer-font-family\":'\"Inter Tight\", sans-serif',\"--framer-font-size\":\"43px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"0.8em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-633663d4-6135-4d2d-a328-8707c8a7d2dc, rgb(255, 60, 0))\"},children:\"SELECT SHOUTOUTS\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtOTAw\",\"--framer-font-family\":'\"Inter Tight\", sans-serif',\"--framer-font-size\":\"90px\",\"--framer-font-weight\":\"900\",\"--framer-line-height\":\"0.8em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-633663d4-6135-4d2d-a328-8707c8a7d2dc, rgb(255, 60, 0))\"},children:\"SELECT SHOUTOUTS\"})}),className:\"framer-3p8swy\",fonts:[\"GF;Inter Tight-900\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J38MTWnPq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{className:\"framer-styles-preset-1hk9i4u\",\"data-styles-preset\":\"C1DoGnPNz\",style:{\"--framer-text-alignment\":\"center\"},children:[\"For 25 years our success has \",/*#__PURE__*/_jsx(\"br\",{}),\"been built on the dedication and \",/*#__PURE__*/_jsx(\"br\",{}),\"expertise of extraordinary nurses. \"]})})},uFBFo2gQP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h5\",{className:\"framer-styles-preset-1d0e3zq\",\"data-styles-preset\":\"Hq8ZPdkeq\",style:{\"--framer-text-alignment\":\"center\"},children:[\"For 25 years our success\",/*#__PURE__*/_jsx(\"br\",{}),\" has been built on the \",/*#__PURE__*/_jsx(\"br\",{}),\"dedication and \",/*#__PURE__*/_jsx(\"br\",{}),\"expertise of \",/*#__PURE__*/_jsx(\"br\",{}),\"extraordinary nurses. \"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1hk9i4u\",\"data-styles-preset\":\"C1DoGnPNz\",style:{\"--framer-text-alignment\":\"center\"},children:\"For 25 years our success has been built on the dedication and expertise of extraordinary nurses. \"})}),className:\"framer-lcco4s\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J38MTWnPq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{className:\"framer-styles-preset-1hk9i4u\",\"data-styles-preset\":\"C1DoGnPNz\",style:{\"--framer-text-alignment\":\"center\"},children:[\" We're honoured to shine\",/*#__PURE__*/_jsx(\"br\",{}),\" a spotlight on some of these \",/*#__PURE__*/_jsx(\"br\",{}),\"healthcare heroes.\"]})})},uFBFo2gQP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1d0e3zq\",\"data-styles-preset\":\"Hq8ZPdkeq\",style:{\"--framer-text-alignment\":\"right\"},children:\" We're honoured to shine a spotlight on some of these healthcare heroes.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1hk9i4u\",\"data-styles-preset\":\"C1DoGnPNz\",style:{\"--framer-text-alignment\":\"center\"},children:\" We're honoured to shine a spotlight on some of these healthcare heroes.\"})}),className:\"framer-lk8pbp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-rox4mc\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XqEy8ljt1\"},motionChild:true,nodeId:\"P87mpVC0I\",scopeId:\"AdmNKCxLL\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uFBFo2gQP:{transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-rifxia framer-1x8o5b1\",\"data-framer-name\":\"Button\",whileHover:animation6,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"See The Shoutouts\"})}),className:\"framer-qmi538\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})})})})]})}),/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uFBFo2gQP:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2e3,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4177.3),pixelHeight:2e3,pixelWidth:2e3,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/UyucgG4ATDifWJx7whwjzQ04.jpg\",srcSet:\"https://framerusercontent.com/images/UyucgG4ATDifWJx7whwjzQ04.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/UyucgG4ATDifWJx7whwjzQ04.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/UyucgG4ATDifWJx7whwjzQ04.jpg 2000w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2e3,intrinsicWidth:2e3,pixelHeight:2e3,pixelWidth:2e3,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/UyucgG4ATDifWJx7whwjzQ04.jpg\",srcSet:\"https://framerusercontent.com/images/UyucgG4ATDifWJx7whwjzQ04.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/UyucgG4ATDifWJx7whwjzQ04.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/UyucgG4ATDifWJx7whwjzQ04.jpg 2000w\"},className:\"framer-52gv5y\",id:elementId1,onTap:onTap3bnx0g({overlay}),ref:ref2,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yvypb5\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-m0ksx1\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1tif1bq\",\"data-styles-preset\":\"pbkah0okA\",style:{\"--framer-text-color\":\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\"},children:\"Travel  Nursing\"})}),className:\"framer-ajd46t\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\"},children:\"As a travel nurse in Canada, you can pursue your travel dreams while ensuring a stable income. These positions provide above-average wages and full coverage for travel and accommodation expenses, enabling you to freely explore and wander.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\"},children:\"With an extensive 25-year experience under our belt, rest assured that we will be dedicated to supporting you throughout the entire duration of your contract.\"})]}),className:\"framer-1nlhdyx\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uFBFo2gQP:{width:`max(min(min(min(${componentViewport?.width||\"100vw\"} - 40px, 1200px), 530px), 200px), 200px)`,y:(componentViewport?.y||0)+0+4177.3+50+0+0+0+0+407.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1azaw70-container\",nodeId:\"u7tC2B7bf\",scopeId:\"AdmNKCxLL\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J38MTWnPq:{variant:\"rR8gbhtfg\"},uFBFo2gQP:{style:{maxWidth:\"100%\",width:\"100%\"},variant:\"rR8gbhtfg\"}},children:/*#__PURE__*/_jsx(Button,{Goeh0UlpU:\"TelegramLogo\",height:\"100%\",hyoIEBZCr:\"Let's Get Started\",id:\"u7tC2B7bf\",layoutId:\"u7tC2B7bf\",Uwhubicpx:true,variant:\"koqbpXF0Q\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-v8q4yg\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"zr74cQ7wu\"},implicitPathVariables:undefined},{href:{webPageId:\"zr74cQ7wu\"},implicitPathVariables:undefined},{href:{webPageId:\"zr74cQ7wu\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation10,className:\"framer-yfka9s-container\",\"data-framer-appear-id\":\"yfka9s\",id:elementId2,initial:animation11,nodeId:\"H0gZbSAKf\",optimized:true,ref:ref3,rendersWithMotion:true,scopeId:\"AdmNKCxLL\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J38MTWnPq:{eZ5aNjZIy:resolvedLinks[1]},uFBFo2gQP:{eZ5aNjZIy:resolvedLinks[2],variant:\"KeWUWSw2t\"}},children:/*#__PURE__*/_jsx(FeatureCard,{EgEa9J473:\"Explore pages\",eZ5aNjZIy:resolvedLinks[0],fsUmuS24I:\"Most contracts last 6-8 weeks, though some travel jobs may be longer. Many contracts are renewed if the traveler and the hospital are in agreement. Some travel nurses extend multiple times, when the job is a perfect fit!\",g56HeEMzh:\"How long are contracts?\",height:\"100%\",HQlsDHpqI:true,id:\"H0gZbSAKf\",J2X4hmGjs:true,layoutId:\"H0gZbSAKf\",qKOBsbAyJ:false,style:{width:\"100%\"},SXDgbTQKy:\"Calendar\",variant:\"hUO6W9Cv4\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"zr74cQ7wu\"},implicitPathVariables:undefined},{href:{webPageId:\"zr74cQ7wu\"},implicitPathVariables:undefined},{href:{webPageId:\"zr74cQ7wu\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation10,className:\"framer-z1c143-container\",\"data-framer-appear-id\":\"z1c143\",id:elementId3,initial:animation12,nodeId:\"JIz64ZFd9\",optimized:true,ref:ref4,rendersWithMotion:true,scopeId:\"AdmNKCxLL\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J38MTWnPq:{eZ5aNjZIy:resolvedLinks1[1],fsUmuS24I:\"Absolutely. You\u2019ll have comprehensive coverage throughout your contract. As part of our team, you\u2019re protected under our insurance policy, which includes general and professional liability, malpractice, workers\u2019 compensation for injury, illness, and bullying or harassment, as well as cyber security and auto incident protection. \"},uFBFo2gQP:{eZ5aNjZIy:resolvedLinks1[2],variant:\"tV1BuQ2YI\"}},children:/*#__PURE__*/_jsx(FeatureCard,{EgEa9J473:\"Explore sections\",eZ5aNjZIy:resolvedLinks1[0],fsUmuS24I:\"Absolutely. You\u2019ll have comprehensive coverage throughout your contract. As part of our team, you\u2019re protected under our umbrella insurance policy, which includes general and professional liability, malpractice, workers\u2019 compensation for injury, illness, and bullying or harassment, as well as cyber security and auto incident protection. \",g56HeEMzh:\"Do you provide insurance?\",height:\"100%\",HQlsDHpqI:true,id:\"JIz64ZFd9\",J2X4hmGjs:true,layoutId:\"JIz64ZFd9\",qKOBsbAyJ:false,style:{width:\"100%\"},SXDgbTQKy:\"PawPrint\",variant:\"rnz703G5_\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"zr74cQ7wu\"},implicitPathVariables:undefined},{href:{webPageId:\"zr74cQ7wu\"},implicitPathVariables:undefined},{href:{webPageId:\"zr74cQ7wu\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation10,className:\"framer-144jb8r-container\",\"data-framer-appear-id\":\"144jb8r\",id:elementId4,initial:animation11,nodeId:\"b5nx7ab3Z\",optimized:true,ref:ref5,rendersWithMotion:true,scopeId:\"AdmNKCxLL\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J38MTWnPq:{eZ5aNjZIy:resolvedLinks2[1]},uFBFo2gQP:{eZ5aNjZIy:resolvedLinks2[2],variant:\"KeWUWSw2t\"}},children:/*#__PURE__*/_jsx(FeatureCard,{EgEa9J473:\"See styleguide\",eZ5aNjZIy:resolvedLinks2[0],fsUmuS24I:\"Traditionally, seasoned travel nurses start looking 6 to 10 weeks before they want to start their next travel assignment. If you know you\u2019re ready to travel or will be soon, we recommend filling out an application so you\u2019re prepared to seize the right opportunity.\",g56HeEMzh:\"How long is the application process?\",height:\"100%\",HQlsDHpqI:true,id:\"b5nx7ab3Z\",J2X4hmGjs:true,layoutId:\"b5nx7ab3Z\",qKOBsbAyJ:false,style:{width:\"100%\"},SXDgbTQKy:\"Users\",variant:\"hUO6W9Cv4\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Link,{href:\"/faq\",motionChild:true,nodeId:\"U_bc91F3E\",scopeId:\"AdmNKCxLL\",children:/*#__PURE__*/_jsx(MotionAWithOptimizedAppearEffect,{animate:animation13,className:\"framer-95k4qu framer-1x8o5b1\",\"data-framer-appear-id\":\"95k4qu\",initial:animation14,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation13,className:\"framer-tw16qd-container\",\"data-framer-appear-id\":\"tw16qd\",initial:animation12,nodeId:\"G4thJxwvo\",optimized:true,rendersWithMotion:true,scopeId:\"AdmNKCxLL\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ElementsTooltip,{dvR17uw_x:\"var(--token-33722da1-56ef-4815-82ed-442105eb06b1, rgb(0, 0, 0))\",height:\"100%\",hNHgX251k:\"   See all the FAQ's.  \",id:\"G4thJxwvo\",Jmoryo6og:\"var(--token-d76e7120-d27d-4da8-b15f-04234125e89d, rgb(255, 255, 255))\",layoutId:\"G4thJxwvo\",style:{height:\"100%\",width:\"100%\"},variant:\"YKo6d2cCo\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-1xi2e70\"),\"data-framer-portal-id\":elementId1,exit:{opacity:0,transition:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"MXaMvBoLf\")}),getContainer())})})]})})})}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-8rbswe\",\"data-framer-name\":\"Header\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1r8l67i\",\"data-framer-name\":\"Features\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dwb3j2\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bjbn3e\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1tif1bq\",\"data-styles-preset\":\"pbkah0okA\",style:{\"--framer-text-alignment\":\"center\"},children:\"We Have Contracts In:\"})}),className:\"framer-1nu7sna\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11ru2ty\",\"data-styles-preset\":\"puB8kY46u\",style:{\"--framer-text-alignment\":\"center\"},children:\"Yukon - British Columbia - Alberta -Saskatchewan - Manitoba - Ontario - Newfoundland and Labrador\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11ru2ty\",\"data-styles-preset\":\"puB8kY46u\",style:{\"--framer-text-alignment\":\"center\"},children:\"New Brunswick - Nova Scotia\"})]}),className:\"framer-3q4qxs\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uFBFo2gQP:{width:`max(min(min(${componentViewport?.width||\"100vw\"} - 120px, 1000px), 200px), 200px)`,y:(componentViewport?.y||0)+0+6065.1+30+0+0+0+0+0+0+347.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,children:/*#__PURE__*/_jsx(Container,{className:\"framer-awiw5q-container\",nodeId:\"gV6OXY8QK\",scopeId:\"AdmNKCxLL\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uFBFo2gQP:{style:{maxWidth:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(Button,{Goeh0UlpU:\"TelegramLogo\",height:\"100%\",hyoIEBZCr:\"Let's Get Started\",id:\"gV6OXY8QK\",layoutId:\"gV6OXY8QK\",Uwhubicpx:true,variant:\"koqbpXF0Q\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J38MTWnPq:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:727,intrinsicWidth:1090,pixelHeight:727,pixelWidth:1090,positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 80px, 1000px)`,src:\"https://framerusercontent.com/images/nlUctMQAamZKl1sfCGCXmVzvVo4.png\",srcSet:\"https://framerusercontent.com/images/nlUctMQAamZKl1sfCGCXmVzvVo4.png?scale-down-to=512 512w,https://framerusercontent.com/images/nlUctMQAamZKl1sfCGCXmVzvVo4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/nlUctMQAamZKl1sfCGCXmVzvVo4.png 1090w\"}},uFBFo2gQP:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:727,intrinsicWidth:1090,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6065.1+30+0+0+0+0+413.8),pixelHeight:727,pixelWidth:1090,positionX:\"center\",positionY:\"center\",sizes:\"1000px\",src:\"https://framerusercontent.com/images/nlUctMQAamZKl1sfCGCXmVzvVo4.png\",srcSet:\"https://framerusercontent.com/images/nlUctMQAamZKl1sfCGCXmVzvVo4.png?scale-down-to=512 512w,https://framerusercontent.com/images/nlUctMQAamZKl1sfCGCXmVzvVo4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/nlUctMQAamZKl1sfCGCXmVzvVo4.png 1090w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:727,intrinsicWidth:1090,pixelHeight:727,pixelWidth:1090,positionX:\"center\",positionY:\"center\",sizes:\"1000px\",src:\"https://framerusercontent.com/images/nlUctMQAamZKl1sfCGCXmVzvVo4.png\",srcSet:\"https://framerusercontent.com/images/nlUctMQAamZKl1sfCGCXmVzvVo4.png?scale-down-to=512 512w,https://framerusercontent.com/images/nlUctMQAamZKl1sfCGCXmVzvVo4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/nlUctMQAamZKl1sfCGCXmVzvVo4.png 1090w\"},className:\"framer-qqcge3\",\"data-framer-name\":\"Image\"})})]})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-kxa5jj-container\",nodeId:\"rv75QlrVJ\",scopeId:\"AdmNKCxLL\",children:/*#__PURE__*/_jsx(SMCPartnerLogos,{BTZ3MZF93:\"We are trusted by Health Authorities and Health Care Companies nationwide.\",height:\"100%\",id:\"rv75QlrVJ\",layoutId:\"rv75QlrVJ\",style:{width:\"100%\"},variant:\"JJCFSJWys\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1spsvqz\",\"data-framer-name\":\"Features Large\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-m1zi4t\",\"data-framer-name\":\"Features\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3qsoqr\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J38MTWnPq:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,pixelHeight:1080,pixelWidth:1080,sizes:`min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1000px)`,src:\"https://framerusercontent.com/images/jFD3p0DEYNDthByD5So2EEPgdc.png\",srcSet:\"https://framerusercontent.com/images/jFD3p0DEYNDthByD5So2EEPgdc.png?scale-down-to=512 512w,https://framerusercontent.com/images/jFD3p0DEYNDthByD5So2EEPgdc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jFD3p0DEYNDthByD5So2EEPgdc.png 1080w\"}},uFBFo2gQP:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7537.9+60+0+0+0+0),pixelHeight:1080,pixelWidth:1080,sizes:`min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1000px)`,src:\"https://framerusercontent.com/images/jFD3p0DEYNDthByD5So2EEPgdc.png\",srcSet:\"https://framerusercontent.com/images/jFD3p0DEYNDthByD5So2EEPgdc.png?scale-down-to=512 512w,https://framerusercontent.com/images/jFD3p0DEYNDthByD5So2EEPgdc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jFD3p0DEYNDthByD5So2EEPgdc.png 1080w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,pixelHeight:1080,pixelWidth:1080,sizes:`min(max(${componentViewport?.width||\"100vw\"}, 1px), 1000px)`,src:\"https://framerusercontent.com/images/jFD3p0DEYNDthByD5So2EEPgdc.png\",srcSet:\"https://framerusercontent.com/images/jFD3p0DEYNDthByD5So2EEPgdc.png?scale-down-to=512 512w,https://framerusercontent.com/images/jFD3p0DEYNDthByD5So2EEPgdc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jFD3p0DEYNDthByD5So2EEPgdc.png 1080w\"},className:\"framer-1ug6gvb\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1klgy76\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1tif1bq\",\"data-styles-preset\":\"pbkah0okA\",children:\"Why you should travel nurse.\"})}),className:\"framer-jvgxbv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11ru2ty\",\"data-styles-preset\":\"puB8kY46u\",children:\"This country is phenomenal! Get out and see it while you can.  From free travel and accommodation to meeting like minded people, let's explore the advantages of travel nursing together.\"})}),className:\"framer-tdwb0l\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-wf8gdv\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"BllTmCoBh\"},motionChild:true,nodeId:\"wrVWaOprs\",scopeId:\"AdmNKCxLL\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-16stebz framer-1x8o5b1\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"More Why You Should\"})}),className:\"framer-w2gvf0\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q63pkd\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s6cad8\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1tif1bq\",\"data-styles-preset\":\"pbkah0okA\",children:\"How we get you started.\"})}),className:\"framer-1nnrtqd\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11ru2ty\",\"data-styles-preset\":\"puB8kY46u\",children:\"With our 25 years of experience in contract nursing, we proudly stand by your side. When you are on contract we will be with you all the time.\"})}),className:\"framer-6txc68\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1e76ls9\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"uNgIcDSQh\"},motionChild:true,nodeId:\"o2zsZsE4S\",scopeId:\"AdmNKCxLL\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1s3ah7p framer-1x8o5b1\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"More How We Help\"})}),className:\"framer-mgtpv6\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J38MTWnPq:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,pixelHeight:1080,pixelWidth:1080,sizes:`min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1000px)`,src:\"https://framerusercontent.com/images/n8y08kvwqMwg8JXmJMFdXydnfwE.png\",srcSet:\"https://framerusercontent.com/images/n8y08kvwqMwg8JXmJMFdXydnfwE.png?scale-down-to=512 512w,https://framerusercontent.com/images/n8y08kvwqMwg8JXmJMFdXydnfwE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/n8y08kvwqMwg8JXmJMFdXydnfwE.png 1080w\"}},uFBFo2gQP:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7537.9+60+0+794.8+0+0),pixelHeight:1080,pixelWidth:1080,sizes:`min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1000px)`,src:\"https://framerusercontent.com/images/n8y08kvwqMwg8JXmJMFdXydnfwE.png\",srcSet:\"https://framerusercontent.com/images/n8y08kvwqMwg8JXmJMFdXydnfwE.png?scale-down-to=512 512w,https://framerusercontent.com/images/n8y08kvwqMwg8JXmJMFdXydnfwE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/n8y08kvwqMwg8JXmJMFdXydnfwE.png 1080w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1080,intrinsicWidth:1080,pixelHeight:1080,pixelWidth:1080,sizes:`min(max(${componentViewport?.width||\"100vw\"}, 1px), 1000px)`,src:\"https://framerusercontent.com/images/n8y08kvwqMwg8JXmJMFdXydnfwE.png\",srcSet:\"https://framerusercontent.com/images/n8y08kvwqMwg8JXmJMFdXydnfwE.png?scale-down-to=512 512w,https://framerusercontent.com/images/n8y08kvwqMwg8JXmJMFdXydnfwE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/n8y08kvwqMwg8JXmJMFdXydnfwE.png 1080w\"},className:\"framer-1uxilgp\",\"data-framer-name\":\"Image\"})})]})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ln436-container\",nodeId:\"FGiho_BG0\",scopeId:\"AdmNKCxLL\",children:/*#__PURE__*/_jsx(ApplyAndStart,{height:\"100%\",id:\"FGiho_BG0\",layoutId:\"FGiho_BG0\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1e3x78m-container\",nodeId:\"H9GsxEuIS\",scopeId:\"AdmNKCxLL\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{J38MTWnPq:{variant:\"Rkmbqbecp\"},uFBFo2gQP:{variant:\"Bccl45EPK\"}},children:/*#__PURE__*/_jsx(SMCFooter,{height:\"100%\",id:\"H9GsxEuIS\",layoutId:\"H9GsxEuIS\",style:{width:\"100%\"},variant:\"vA5geGlRR\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-yhnpg.framer-1x8o5b1, .framer-yhnpg .framer-1x8o5b1 { display: block; }\",\".framer-yhnpg.framer-rejqlu { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-yhnpg .framer-15emu6b-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\",\".framer-yhnpg .framer-h6br5f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 140px; height: 800px; justify-content: center; overflow: hidden; padding: 80px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-yhnpg .framer-1731vzk { --border-bottom-width: 25px; --border-color: var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, #ffffff); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: 1000px; justify-content: center; max-width: 1300px; overflow: visible; padding: 0px 50px 0px 50px; position: relative; width: 1px; }\",\".framer-yhnpg .framer-u6l2yg { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 450px; overflow: visible; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-yhnpg .framer-1rpfh2d, .framer-yhnpg .framer-w2gvf0, .framer-yhnpg .framer-mgtpv6 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-yhnpg .framer-bv7ya7, .framer-yhnpg .framer-1yq4kf7, .framer-yhnpg .framer-ajd46t, .framer-yhnpg .framer-1nlhdyx { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-yhnpg .framer-u67ckl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-yhnpg .framer-1fx3wtu-container, .framer-yhnpg .framer-1hcs09g-container, .framer-yhnpg .framer-1azaw70-container, .framer-yhnpg .framer-awiw5q-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-yhnpg .framer-1wqu9sx { display: grid; flex: 1 0 0px; gap: 20px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(200px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: 698px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-yhnpg .framer-q4cbej-container, .framer-yhnpg .framer-1tj3ngs-container { align-self: start; flex: none; grid-row: auto / span 2; height: 100%; justify-self: start; position: relative; width: 100%; }\",\".framer-yhnpg .framer-54f2g8, .framer-yhnpg .framer-u8u3h6 { aspect-ratio: 1.7777777777777777 / 1; height: var(--framer-aspect-ratio-supported, 168px); overflow: visible; position: relative; width: 299px; }\",\".framer-yhnpg .framer-scr1aa, .framer-yhnpg .framer-14cu59d { aspect-ratio: 1.3333333333333333 / 1; height: var(--framer-aspect-ratio-supported, 225px); overflow: visible; position: relative; width: 299px; }\",\".framer-yhnpg .framer-86sg9j { aspect-ratio: 1.3333333333333333 / 1; height: var(--framer-aspect-ratio-supported, 224px); overflow: visible; position: relative; width: 299px; }\",\".framer-yhnpg .framer-tct6f9, .framer-yhnpg .framer-vip45r, .framer-yhnpg .framer-1ovncmm, .framer-yhnpg .framer-1yo3lj0 { aspect-ratio: 0.7496251874062968 / 1; height: var(--framer-aspect-ratio-supported, 400px); overflow: visible; position: relative; width: 300px; }\",\".framer-yhnpg .framer-f8dpyb, .framer-yhnpg .framer-rljsg1 { aspect-ratio: 1.3333333333333333 / 1; height: var(--framer-aspect-ratio-supported, 225px); overflow: visible; position: relative; width: 300px; }\",\".framer-yhnpg .framer-me0mw1 { aspect-ratio: 1.7777777777777777 / 1; height: var(--framer-aspect-ratio-supported, 169px); overflow: visible; position: relative; width: 300px; }\",\".framer-yhnpg .framer-u1h40t, .framer-yhnpg .framer-14gkx8z, .framer-yhnpg .framer-12bmzct { aspect-ratio: 0.7504690431519699 / 1; height: var(--framer-aspect-ratio-supported, 400px); overflow: visible; position: relative; width: 300px; }\",'.framer-yhnpg .framer-1pwcycr { align-content: center; align-items: center; background: linear-gradient(180deg, var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, #ffffff) /* {\"name\":\"White\"} */ 0%, hsl(0, 0%, 100%) 39.910613738738746%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: visible; padding: 80px; position: relative; scroll-margin-top: 80px; width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }',\".framer-yhnpg .framer-pquxlc { display: grid; flex: none; gap: 16px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(200px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-yhnpg .framer-1kg71jn { align-content: center; align-items: center; align-self: start; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-yhnpg .framer-18oztlf { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: 1 0 0px; height: 577px; position: relative; width: 1px; }\",\".framer-yhnpg .framer-lndm9r { align-content: flex-start; align-items: flex-start; align-self: start; background-color: var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, #ffffff); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; justify-self: start; overflow: visible; padding: 24px 32px 32px 32px; position: relative; width: 100%; }\",\".framer-yhnpg .framer-1jbya4b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 521px; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-yhnpg .framer-njrjvp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 7px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 10px 0px; position: relative; width: 100%; }\",\".framer-yhnpg .framer-1v0wxd8 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-yhnpg .framer-1f5pnw3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-yhnpg .framer-10k9j5h, .framer-yhnpg .framer-o5k07f { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-yhnpg .framer-1bluip4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-yhnpg .framer-16s77l2 { align-content: center; align-items: center; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-yhnpg .framer-1x2gq7w, .framer-yhnpg .framer-joe2zs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-yhnpg .framer-9hnihn-container, .framer-yhnpg .framer-l2aewy-container, .framer-yhnpg .framer-hmrmty-container, .framer-yhnpg .framer-1hdw3d3-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-yhnpg .framer-gkrcsv { align-content: center; align-items: center; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: auto; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-yhnpg .framer-ns7555, .framer-yhnpg .framer-17rxx6m { align-content: center; align-items: center; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-yhnpg .framer-19m9wq9, .framer-yhnpg .framer-xtpf00 { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-yhnpg .framer-1pfnflr { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 20px 40px 60px 40px; position: relative; width: 100%; }\",\".framer-yhnpg .framer-86jh7n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 1000px; }\",\".framer-yhnpg .framer-179u6l9 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-yhnpg .framer-qy693f { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-yhnpg .framer-1p9pkjf-container, .framer-yhnpg .framer-kxa5jj-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-yhnpg .framer-peb8xx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 600px; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 100%; }\",\".framer-yhnpg .framer-3p8swy { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: sticky; top: 0px; white-space: pre-wrap; width: 700px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-yhnpg .framer-lcco4s { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: sticky; top: 0px; white-space: pre-wrap; width: 700px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-yhnpg .framer-lk8pbp { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 700px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-yhnpg .framer-rox4mc, .framer-yhnpg .framer-wf8gdv, .framer-yhnpg .framer-1e76ls9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-yhnpg .framer-rifxia { align-content: center; align-items: center; background-color: #ff3c00; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 0.7065919983928324px 0.7065919983928324px -0.625px rgba(0, 0, 0, 0.15), 0px 1.8065619053231785px 1.8065619053231785px -1.25px rgba(0, 0, 0, 0.14398), 0px 3.6217592146567767px 3.6217592146567767px -1.875px rgba(0, 0, 0, 0.13793), 0px 6.8655999097303715px 6.8655999097303715px -2.5px rgba(0, 0, 0, 0.12711), 0px 13.646761411524492px 13.646761411524492px -3.125px rgba(0, 0, 0, 0.10451), 0px 30px 30px -3.75px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 15px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-yhnpg .framer-qmi538 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-yhnpg .framer-52gv5y { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 100px; position: relative; width: 100%; }\",\".framer-yhnpg .framer-yvypb5 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-yhnpg .framer-m0ksx1 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 530px; overflow: visible; padding: 0px; position: sticky; top: 120px; width: 1px; z-index: 1; }\",\".framer-yhnpg .framer-v8q4yg { display: grid; flex: 1 0 0px; gap: 20px; grid-auto-rows: min-content; grid-template-columns: repeat(1, minmax(200px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-yhnpg .framer-yfka9s-container, .framer-yhnpg .framer-z1c143-container, .framer-yhnpg .framer-144jb8r-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-yhnpg .framer-95k4qu { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 60px; justify-content: center; justify-self: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-yhnpg .framer-tw16qd-container { flex: none; height: 39px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-yhnpg.framer-1xi2e70 { background-color: rgba(188, 41, 41, 0.8); inset: 0px; position: fixed; user-select: none; }\",\".framer-yhnpg .framer-8rbswe { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 100%; }\",\".framer-yhnpg .framer-1r8l67i { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-yhnpg .framer-dwb3j2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-yhnpg .framer-1bjbn3e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-yhnpg .framer-1nu7sna { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-yhnpg .framer-3q4qxs { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-yhnpg .framer-qqcge3 { align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 634px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1000px; will-change: var(--framer-will-change-override, transform); }\",\".framer-yhnpg .framer-1spsvqz { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 70px 0px 70px 0px; position: relative; width: 100%; }\",\".framer-yhnpg .framer-m1zi4t { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-yhnpg .framer-3qsoqr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-yhnpg .framer-1ug6gvb { align-content: center; align-items: center; aspect-ratio: 1.2 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 383px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-yhnpg .framer-1klgy76, .framer-yhnpg .framer-s6cad8 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-yhnpg .framer-jvgxbv { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 400px; word-break: break-word; word-wrap: break-word; }\",\".framer-yhnpg .framer-tdwb0l, .framer-yhnpg .framer-6txc68 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 420px; word-break: break-word; word-wrap: break-word; }\",\".framer-yhnpg .framer-16stebz, .framer-yhnpg .framer-1s3ah7p { align-content: center; align-items: center; background-color: #222222; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 0.7065919983928324px 0.7065919983928324px -0.625px rgba(0, 0, 0, 0.15), 0px 1.8065619053231785px 1.8065619053231785px -1.25px rgba(0, 0, 0, 0.14398), 0px 3.6217592146567767px 3.6217592146567767px -1.875px rgba(0, 0, 0, 0.13793), 0px 6.8655999097303715px 6.8655999097303715px -2.5px rgba(0, 0, 0, 0.12711), 0px 13.646761411524492px 13.646761411524492px -3.125px rgba(0, 0, 0, 0.10451), 0px 30px 30px -3.75px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 15px; position: relative; text-decoration: none; width: min-content; }\",\".framer-yhnpg .framer-1q63pkd { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-yhnpg .framer-1nnrtqd { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 380px; word-break: break-word; word-wrap: break-word; }\",\".framer-yhnpg .framer-1uxilgp { align-content: center; align-items: center; aspect-ratio: 1.2 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 384px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-yhnpg .framer-1ln436-container { flex: none; height: 600px; position: relative; width: 100%; }\",\".framer-yhnpg .framer-1e3x78m-container { flex: none; height: auto; position: relative; width: 1200px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-yhnpg.framer-rejqlu, .framer-yhnpg .framer-h6br5f, .framer-yhnpg .framer-1731vzk, .framer-yhnpg .framer-u6l2yg, .framer-yhnpg .framer-u67ckl, .framer-yhnpg .framer-1pwcycr, .framer-yhnpg .framer-1kg71jn, .framer-yhnpg .framer-lndm9r, .framer-yhnpg .framer-njrjvp, .framer-yhnpg .framer-1f5pnw3, .framer-yhnpg .framer-1bluip4, .framer-yhnpg .framer-16s77l2, .framer-yhnpg .framer-1x2gq7w, .framer-yhnpg .framer-joe2zs, .framer-yhnpg .framer-gkrcsv, .framer-yhnpg .framer-ns7555, .framer-yhnpg .framer-17rxx6m, .framer-yhnpg .framer-1pfnflr, .framer-yhnpg .framer-86jh7n, .framer-yhnpg .framer-peb8xx, .framer-yhnpg .framer-rox4mc, .framer-yhnpg .framer-rifxia, .framer-yhnpg .framer-52gv5y, .framer-yhnpg .framer-yvypb5, .framer-yhnpg .framer-m0ksx1, .framer-yhnpg .framer-95k4qu, .framer-yhnpg .framer-8rbswe, .framer-yhnpg .framer-1r8l67i, .framer-yhnpg .framer-dwb3j2, .framer-yhnpg .framer-1bjbn3e, .framer-yhnpg .framer-qqcge3, .framer-yhnpg .framer-1spsvqz, .framer-yhnpg .framer-m1zi4t, .framer-yhnpg .framer-3qsoqr, .framer-yhnpg .framer-1ug6gvb, .framer-yhnpg .framer-1klgy76, .framer-yhnpg .framer-wf8gdv, .framer-yhnpg .framer-16stebz, .framer-yhnpg .framer-1q63pkd, .framer-yhnpg .framer-s6cad8, .framer-yhnpg .framer-1e76ls9, .framer-yhnpg .framer-1s3ah7p, .framer-yhnpg .framer-1uxilgp { gap: 0px; } .framer-yhnpg.framer-rejqlu > *, .framer-yhnpg .framer-lndm9r > *, .framer-yhnpg .framer-86jh7n > *, .framer-yhnpg .framer-dwb3j2 > *, .framer-yhnpg .framer-qqcge3 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-yhnpg.framer-rejqlu > :first-child, .framer-yhnpg .framer-u6l2yg > :first-child, .framer-yhnpg .framer-1pwcycr > :first-child, .framer-yhnpg .framer-lndm9r > :first-child, .framer-yhnpg .framer-njrjvp > :first-child, .framer-yhnpg .framer-16s77l2 > :first-child, .framer-yhnpg .framer-1pfnflr > :first-child, .framer-yhnpg .framer-86jh7n > :first-child, .framer-yhnpg .framer-peb8xx > :first-child, .framer-yhnpg .framer-m0ksx1 > :first-child, .framer-yhnpg .framer-95k4qu > :first-child, .framer-yhnpg .framer-8rbswe > :first-child, .framer-yhnpg .framer-1r8l67i > :first-child, .framer-yhnpg .framer-dwb3j2 > :first-child, .framer-yhnpg .framer-1bjbn3e > :first-child, .framer-yhnpg .framer-qqcge3 > :first-child, .framer-yhnpg .framer-m1zi4t > :first-child, .framer-yhnpg .framer-1ug6gvb > :first-child, .framer-yhnpg .framer-1klgy76 > :first-child, .framer-yhnpg .framer-s6cad8 > :first-child, .framer-yhnpg .framer-1uxilgp > :first-child { margin-top: 0px; } .framer-yhnpg.framer-rejqlu > :last-child, .framer-yhnpg .framer-u6l2yg > :last-child, .framer-yhnpg .framer-1pwcycr > :last-child, .framer-yhnpg .framer-lndm9r > :last-child, .framer-yhnpg .framer-njrjvp > :last-child, .framer-yhnpg .framer-16s77l2 > :last-child, .framer-yhnpg .framer-1pfnflr > :last-child, .framer-yhnpg .framer-86jh7n > :last-child, .framer-yhnpg .framer-peb8xx > :last-child, .framer-yhnpg .framer-m0ksx1 > :last-child, .framer-yhnpg .framer-95k4qu > :last-child, .framer-yhnpg .framer-8rbswe > :last-child, .framer-yhnpg .framer-1r8l67i > :last-child, .framer-yhnpg .framer-dwb3j2 > :last-child, .framer-yhnpg .framer-1bjbn3e > :last-child, .framer-yhnpg .framer-qqcge3 > :last-child, .framer-yhnpg .framer-m1zi4t > :last-child, .framer-yhnpg .framer-1ug6gvb > :last-child, .framer-yhnpg .framer-1klgy76 > :last-child, .framer-yhnpg .framer-s6cad8 > :last-child, .framer-yhnpg .framer-1uxilgp > :last-child { margin-bottom: 0px; } .framer-yhnpg .framer-h6br5f > * { margin: 0px; margin-left: calc(140px / 2); margin-right: calc(140px / 2); } .framer-yhnpg .framer-h6br5f > :first-child, .framer-yhnpg .framer-1731vzk > :first-child, .framer-yhnpg .framer-u67ckl > :first-child, .framer-yhnpg .framer-1kg71jn > :first-child, .framer-yhnpg .framer-1f5pnw3 > :first-child, .framer-yhnpg .framer-1bluip4 > :first-child, .framer-yhnpg .framer-1x2gq7w > :first-child, .framer-yhnpg .framer-joe2zs > :first-child, .framer-yhnpg .framer-gkrcsv > :first-child, .framer-yhnpg .framer-ns7555 > :first-child, .framer-yhnpg .framer-17rxx6m > :first-child, .framer-yhnpg .framer-rox4mc > :first-child, .framer-yhnpg .framer-rifxia > :first-child, .framer-yhnpg .framer-52gv5y > :first-child, .framer-yhnpg .framer-yvypb5 > :first-child, .framer-yhnpg .framer-1spsvqz > :first-child, .framer-yhnpg .framer-3qsoqr > :first-child, .framer-yhnpg .framer-wf8gdv > :first-child, .framer-yhnpg .framer-16stebz > :first-child, .framer-yhnpg .framer-1q63pkd > :first-child, .framer-yhnpg .framer-1e76ls9 > :first-child, .framer-yhnpg .framer-1s3ah7p > :first-child { margin-left: 0px; } .framer-yhnpg .framer-h6br5f > :last-child, .framer-yhnpg .framer-1731vzk > :last-child, .framer-yhnpg .framer-u67ckl > :last-child, .framer-yhnpg .framer-1kg71jn > :last-child, .framer-yhnpg .framer-1f5pnw3 > :last-child, .framer-yhnpg .framer-1bluip4 > :last-child, .framer-yhnpg .framer-1x2gq7w > :last-child, .framer-yhnpg .framer-joe2zs > :last-child, .framer-yhnpg .framer-gkrcsv > :last-child, .framer-yhnpg .framer-ns7555 > :last-child, .framer-yhnpg .framer-17rxx6m > :last-child, .framer-yhnpg .framer-rox4mc > :last-child, .framer-yhnpg .framer-rifxia > :last-child, .framer-yhnpg .framer-52gv5y > :last-child, .framer-yhnpg .framer-yvypb5 > :last-child, .framer-yhnpg .framer-1spsvqz > :last-child, .framer-yhnpg .framer-3qsoqr > :last-child, .framer-yhnpg .framer-wf8gdv > :last-child, .framer-yhnpg .framer-16stebz > :last-child, .framer-yhnpg .framer-1q63pkd > :last-child, .framer-yhnpg .framer-1e76ls9 > :last-child, .framer-yhnpg .framer-1s3ah7p > :last-child { margin-right: 0px; } .framer-yhnpg .framer-1731vzk > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-yhnpg .framer-u6l2yg > *, .framer-yhnpg .framer-1pfnflr > *, .framer-yhnpg .framer-peb8xx > *, .framer-yhnpg .framer-m0ksx1 > *, .framer-yhnpg .framer-8rbswe > *, .framer-yhnpg .framer-1bjbn3e > *, .framer-yhnpg .framer-1ug6gvb > *, .framer-yhnpg .framer-1klgy76 > *, .framer-yhnpg .framer-s6cad8 > *, .framer-yhnpg .framer-1uxilgp > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-yhnpg .framer-u67ckl > *, .framer-yhnpg .framer-1kg71jn > *, .framer-yhnpg .framer-ns7555 > *, .framer-yhnpg .framer-17rxx6m > *, .framer-yhnpg .framer-rifxia > *, .framer-yhnpg .framer-1spsvqz > *, .framer-yhnpg .framer-16stebz > *, .framer-yhnpg .framer-1s3ah7p > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-yhnpg .framer-1pwcycr > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-yhnpg .framer-njrjvp > * { margin: 0px; margin-bottom: calc(7px / 2); margin-top: calc(7px / 2); } .framer-yhnpg .framer-1f5pnw3 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-yhnpg .framer-1bluip4 > *, .framer-yhnpg .framer-gkrcsv > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-yhnpg .framer-16s77l2 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-yhnpg .framer-1x2gq7w > *, .framer-yhnpg .framer-joe2zs > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-yhnpg .framer-rox4mc > *, .framer-yhnpg .framer-wf8gdv > *, .framer-yhnpg .framer-1e76ls9 > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-yhnpg .framer-52gv5y > *, .framer-yhnpg .framer-3qsoqr > *, .framer-yhnpg .framer-1q63pkd > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } .framer-yhnpg .framer-yvypb5 > * { margin: 0px; margin-left: calc(100px / 2); margin-right: calc(100px / 2); } .framer-yhnpg .framer-95k4qu > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-yhnpg .framer-1r8l67i > *, .framer-yhnpg .framer-m1zi4t > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,'.framer-yhnpg[data-border=\"true\"]::after, .framer-yhnpg [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-yhnpg.framer-rejqlu { width: 810px; } .framer-yhnpg .framer-h6br5f { gap: 0px; height: 90vh; padding: 0px; } .framer-yhnpg .framer-1731vzk { height: 752px; } .framer-yhnpg .framer-u67ckl { align-content: flex-start; align-items: flex-start; flex-direction: column; } .framer-yhnpg .framer-1wqu9sx { height: 672px; } .framer-yhnpg .framer-1pwcycr { max-width: 100%; padding: 40px 40px 80px 40px; } .framer-yhnpg .framer-pquxlc, .framer-yhnpg .framer-18oztlf { height: 403px; } .framer-yhnpg .framer-lndm9r { overflow: hidden; padding: 16px 20px 20px 20px; will-change: var(--framer-will-change-override, transform); } .framer-yhnpg .framer-1jbya4b { gap: 0px; height: min-content; justify-content: center; } .framer-yhnpg .framer-1f5pnw3 { flex-direction: column; gap: 16px; } .framer-yhnpg .framer-10k9j5h, .framer-yhnpg .framer-o5k07f, .framer-yhnpg .framer-9hnihn-container, .framer-yhnpg .framer-l2aewy-container, .framer-yhnpg .framer-hmrmty-container, .framer-yhnpg .framer-1hdw3d3-container, .framer-yhnpg .framer-v8q4yg { flex: none; width: 100%; } .framer-yhnpg .framer-1x2gq7w, .framer-yhnpg .framer-joe2zs, .framer-yhnpg .framer-gkrcsv { flex-direction: column; } .framer-yhnpg .framer-ns7555, .framer-yhnpg .framer-17rxx6m { height: 1px; width: 100%; } .framer-yhnpg .framer-1pfnflr { padding: 80px 40px 80px 40px; } .framer-yhnpg .framer-3p8swy { white-space: pre; width: 100%; } .framer-yhnpg .framer-lcco4s, .framer-yhnpg .framer-lk8pbp, .framer-yhnpg .framer-tdwb0l, .framer-yhnpg .framer-6txc68 { width: 100%; } .framer-yhnpg .framer-52gv5y { padding: 50px 50px 100px 50px; } .framer-yhnpg .framer-yvypb5 { flex-direction: column; gap: 50px; overflow: auto; } .framer-yhnpg .framer-m0ksx1 { flex: none; min-height: 330px; overflow: auto; position: relative; top: unset; width: 100%; } .framer-yhnpg .framer-qqcge3 { height: 505px; width: 100%; } .framer-yhnpg .framer-1spsvqz { padding: 40px; } .framer-yhnpg .framer-1ug6gvb, .framer-yhnpg .framer-1uxilgp { height: var(--framer-aspect-ratio-supported, 271px); } .framer-yhnpg .framer-1e3x78m-container { width: auto; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-yhnpg .framer-h6br5f, .framer-yhnpg .framer-u67ckl, .framer-yhnpg .framer-1jbya4b, .framer-yhnpg .framer-1f5pnw3, .framer-yhnpg .framer-1x2gq7w, .framer-yhnpg .framer-joe2zs, .framer-yhnpg .framer-gkrcsv, .framer-yhnpg .framer-yvypb5 { gap: 0px; } .framer-yhnpg .framer-h6br5f > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-yhnpg .framer-h6br5f > :first-child { margin-left: 0px; } .framer-yhnpg .framer-h6br5f > :last-child { margin-right: 0px; } .framer-yhnpg .framer-u67ckl > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-yhnpg .framer-u67ckl > :first-child, .framer-yhnpg .framer-1jbya4b > :first-child, .framer-yhnpg .framer-1f5pnw3 > :first-child, .framer-yhnpg .framer-1x2gq7w > :first-child, .framer-yhnpg .framer-joe2zs > :first-child, .framer-yhnpg .framer-gkrcsv > :first-child, .framer-yhnpg .framer-yvypb5 > :first-child { margin-top: 0px; } .framer-yhnpg .framer-u67ckl > :last-child, .framer-yhnpg .framer-1jbya4b > :last-child, .framer-yhnpg .framer-1f5pnw3 > :last-child, .framer-yhnpg .framer-1x2gq7w > :last-child, .framer-yhnpg .framer-joe2zs > :last-child, .framer-yhnpg .framer-gkrcsv > :last-child, .framer-yhnpg .framer-yvypb5 > :last-child { margin-bottom: 0px; } .framer-yhnpg .framer-1jbya4b > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-yhnpg .framer-1f5pnw3 > *, .framer-yhnpg .framer-gkrcsv > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-yhnpg .framer-1x2gq7w > *, .framer-yhnpg .framer-joe2zs > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-yhnpg .framer-yvypb5 > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } }}\",'@media (max-width: 809px) { .framer-yhnpg.framer-rejqlu { width: 390px; } .framer-yhnpg .framer-h6br5f { align-content: flex-start; align-items: flex-start; background: radial-gradient(106.89999999999999% 91.8% at 100% 100%, var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, #ffffff) /* {\"name\":\"White\"} */ 0%, var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255)) /* {\"name\":\"White\"} */ 100%); gap: 50px; height: 1200px; min-height: 70px; padding: 0px; } .framer-yhnpg .framer-1731vzk { flex-direction: column; gap: 50px; height: 1220px; justify-content: flex-start; padding: 100px 20px 0px 20px; position: sticky; top: 0px; z-index: 1; } .framer-yhnpg .framer-u6l2yg { align-content: center; align-items: center; flex: none; height: 400px; max-width: 600px; order: 0; position: sticky; top: 0px; width: 350px; z-index: 1; } .framer-yhnpg .framer-u67ckl, .framer-yhnpg .framer-3p8swy, .framer-yhnpg .framer-lcco4s, .framer-yhnpg .framer-lk8pbp, .framer-yhnpg .framer-tdwb0l, .framer-yhnpg .framer-6txc68 { width: 100%; } .framer-yhnpg .framer-1fx3wtu-container, .framer-yhnpg .framer-1hcs09g-container { flex: 1 0 0px; width: 1px; } .framer-yhnpg .framer-1wqu9sx { flex: none; grid-auto-rows: 400px; grid-template-rows: repeat(2, 400px); height: 632px; max-width: 1200px; order: 1; width: 335px; } .framer-yhnpg .framer-q4cbej-container, .framer-yhnpg .framer-1tj3ngs-container { height: 620px; } .framer-yhnpg .framer-1pwcycr { height: 1670px; max-width: 100%; padding: 24px 24px 40px 24px; } .framer-yhnpg .framer-pquxlc { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; justify-content: flex-start; } .framer-yhnpg .framer-1kg71jn { align-self: unset; aspect-ratio: 0.8875 / 1; height: var(--framer-aspect-ratio-supported, 386px); } .framer-yhnpg .framer-lndm9r { align-self: unset; padding: 16px 20px 20px 20px; } .framer-yhnpg .framer-1jbya4b { gap: 24px; height: min-content; justify-content: flex-start; } .framer-yhnpg .framer-1f5pnw3 { flex-direction: column; gap: 16px; } .framer-yhnpg .framer-10k9j5h, .framer-yhnpg .framer-o5k07f, .framer-yhnpg .framer-16s77l2, .framer-yhnpg .framer-9hnihn-container, .framer-yhnpg .framer-l2aewy-container, .framer-yhnpg .framer-hmrmty-container, .framer-yhnpg .framer-1hdw3d3-container, .framer-yhnpg .framer-v8q4yg, .framer-yhnpg .framer-1klgy76 { flex: none; width: 100%; } .framer-yhnpg .framer-1bluip4, .framer-yhnpg .framer-3qsoqr, .framer-yhnpg .framer-1q63pkd { flex-direction: column; } .framer-yhnpg .framer-1x2gq7w, .framer-yhnpg .framer-joe2zs { align-content: flex-start; align-items: flex-start; flex-direction: column; justify-content: flex-start; } .framer-yhnpg .framer-gkrcsv { align-self: unset; flex: none; flex-direction: column; height: 320px; width: 100%; } .framer-yhnpg .framer-ns7555, .framer-yhnpg .framer-17rxx6m { height: 1px; width: 100%; } .framer-yhnpg .framer-1pfnflr { padding: 60px 20px 60px 20px; } .framer-yhnpg .framer-peb8xx { align-content: flex-end; align-items: flex-end; padding: 60px; } .framer-yhnpg .framer-rox4mc { gap: 0px; min-height: 40px; width: 162px; } .framer-yhnpg .framer-rifxia { bottom: 0px; height: unset; left: 50%; position: absolute; top: 0px; transform: translateX(-50%); z-index: 1; } .framer-yhnpg .framer-52gv5y { flex-direction: column; gap: 50px; padding: 50px 20px 50px 20px; } .framer-yhnpg .framer-yvypb5 { flex: none; flex-direction: column; gap: 50px; width: 100%; } .framer-yhnpg .framer-m0ksx1 { flex: none; min-height: 330px; position: relative; top: unset; width: 100%; } .framer-yhnpg .framer-ajd46t { order: 0; } .framer-yhnpg .framer-1nlhdyx { order: 1; } .framer-yhnpg .framer-1azaw70-container { max-width: 200px; min-width: 200px; order: 2; width: 100%; } .framer-yhnpg .framer-8rbswe { padding: 30px 60px 60px 60px; } .framer-yhnpg .framer-1r8l67i, .framer-yhnpg .framer-m1zi4t { gap: 60px; } .framer-yhnpg .framer-dwb3j2 { gap: 20px; } .framer-yhnpg .framer-awiw5q-container { max-width: 200px; min-width: 200px; width: 100%; } .framer-yhnpg .framer-qqcge3 { height: 225px; } .framer-yhnpg .framer-1spsvqz { gap: 20px; padding: 60px 20px 60px 20px; } .framer-yhnpg .framer-1ug6gvb { flex: none; height: var(--framer-aspect-ratio-supported, 292px); width: 100%; } .framer-yhnpg .framer-s6cad8 { flex: none; order: 1; width: 100%; } .framer-yhnpg .framer-1uxilgp { flex: none; height: var(--framer-aspect-ratio-supported, 292px); order: 0; width: 100%; } .framer-yhnpg .framer-1e3x78m-container { width: auto; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-yhnpg .framer-h6br5f, .framer-yhnpg .framer-1731vzk, .framer-yhnpg .framer-pquxlc, .framer-yhnpg .framer-1jbya4b, .framer-yhnpg .framer-1f5pnw3, .framer-yhnpg .framer-1bluip4, .framer-yhnpg .framer-1x2gq7w, .framer-yhnpg .framer-joe2zs, .framer-yhnpg .framer-gkrcsv, .framer-yhnpg .framer-rox4mc, .framer-yhnpg .framer-52gv5y, .framer-yhnpg .framer-yvypb5, .framer-yhnpg .framer-1r8l67i, .framer-yhnpg .framer-dwb3j2, .framer-yhnpg .framer-1spsvqz, .framer-yhnpg .framer-m1zi4t, .framer-yhnpg .framer-3qsoqr, .framer-yhnpg .framer-1q63pkd { gap: 0px; } .framer-yhnpg .framer-h6br5f > * { margin: 0px; margin-left: calc(50px / 2); margin-right: calc(50px / 2); } .framer-yhnpg .framer-h6br5f > :first-child, .framer-yhnpg .framer-rox4mc > :first-child, .framer-yhnpg .framer-1spsvqz > :first-child { margin-left: 0px; } .framer-yhnpg .framer-h6br5f > :last-child, .framer-yhnpg .framer-rox4mc > :last-child, .framer-yhnpg .framer-1spsvqz > :last-child { margin-right: 0px; } .framer-yhnpg .framer-1731vzk > *, .framer-yhnpg .framer-52gv5y > *, .framer-yhnpg .framer-yvypb5 > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-yhnpg .framer-1731vzk > :first-child, .framer-yhnpg .framer-pquxlc > :first-child, .framer-yhnpg .framer-1jbya4b > :first-child, .framer-yhnpg .framer-1f5pnw3 > :first-child, .framer-yhnpg .framer-1bluip4 > :first-child, .framer-yhnpg .framer-1x2gq7w > :first-child, .framer-yhnpg .framer-joe2zs > :first-child, .framer-yhnpg .framer-gkrcsv > :first-child, .framer-yhnpg .framer-52gv5y > :first-child, .framer-yhnpg .framer-yvypb5 > :first-child, .framer-yhnpg .framer-1r8l67i > :first-child, .framer-yhnpg .framer-dwb3j2 > :first-child, .framer-yhnpg .framer-m1zi4t > :first-child, .framer-yhnpg .framer-3qsoqr > :first-child, .framer-yhnpg .framer-1q63pkd > :first-child { margin-top: 0px; } .framer-yhnpg .framer-1731vzk > :last-child, .framer-yhnpg .framer-pquxlc > :last-child, .framer-yhnpg .framer-1jbya4b > :last-child, .framer-yhnpg .framer-1f5pnw3 > :last-child, .framer-yhnpg .framer-1bluip4 > :last-child, .framer-yhnpg .framer-1x2gq7w > :last-child, .framer-yhnpg .framer-joe2zs > :last-child, .framer-yhnpg .framer-gkrcsv > :last-child, .framer-yhnpg .framer-52gv5y > :last-child, .framer-yhnpg .framer-yvypb5 > :last-child, .framer-yhnpg .framer-1r8l67i > :last-child, .framer-yhnpg .framer-dwb3j2 > :last-child, .framer-yhnpg .framer-m1zi4t > :last-child, .framer-yhnpg .framer-3qsoqr > :last-child, .framer-yhnpg .framer-1q63pkd > :last-child { margin-bottom: 0px; } .framer-yhnpg .framer-pquxlc > *, .framer-yhnpg .framer-1f5pnw3 > *, .framer-yhnpg .framer-1bluip4 > *, .framer-yhnpg .framer-gkrcsv > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-yhnpg .framer-1jbya4b > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-yhnpg .framer-1x2gq7w > *, .framer-yhnpg .framer-joe2zs > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-yhnpg .framer-rox4mc > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-yhnpg .framer-1r8l67i > *, .framer-yhnpg .framer-m1zi4t > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-yhnpg .framer-dwb3j2 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-yhnpg .framer-1spsvqz > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-yhnpg .framer-3qsoqr > *, .framer-yhnpg .framer-1q63pkd > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } }}'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 8325.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"J38MTWnPq\":{\"layout\":[\"fixed\",\"auto\"]},\"uFBFo2gQP\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"mWp8SPc22\":{\"pattern\":\":mWp8SPc22\",\"name\":\"header\"},\"yeDUrG_kY\":{\"pattern\":\":yeDUrG_kY\",\"name\":\"pages\"},\"H0gZbSAKf\":{\"pattern\":\":H0gZbSAKf\",\"name\":\"faq3\"},\"JIz64ZFd9\":{\"pattern\":\":JIz64ZFd9\",\"name\":\"faq1\"},\"b5nx7ab3Z\":{\"pattern\":\":b5nx7ab3Z\",\"name\":\"faq2\"}}\n * @framerResponsiveScreen\n */const FramerAdmNKCxLL=withCSS(Component,css,\"framer-yhnpg\");export default FramerAdmNKCxLL;FramerAdmNKCxLL.displayName=\"Home\";FramerAdmNKCxLL.defaultProps={height:8325.5,width:1200};addFonts(FramerAdmNKCxLL,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"},{family:\"Inter Tight\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjpgiqWSRToK8EPg.woff2\",weight:\"900\"}]},...TopbarFonts,...ButtonFonts,...TickerFonts,...StatsFonts,...EmbedFonts,...FeatureCardFonts,...ElementsTooltipFonts,...SMCPartnerLogosFonts,...ApplyAndStartFonts,...SMCFooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerAdmNKCxLL\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerResponsiveScreen\":\"\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"J38MTWnPq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"uFBFo2gQP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerScrollSections\":\"{\\\"mWp8SPc22\\\":{\\\"pattern\\\":\\\":mWp8SPc22\\\",\\\"name\\\":\\\"header\\\"},\\\"yeDUrG_kY\\\":{\\\"pattern\\\":\\\":yeDUrG_kY\\\",\\\"name\\\":\\\"pages\\\"},\\\"H0gZbSAKf\\\":{\\\"pattern\\\":\\\":H0gZbSAKf\\\",\\\"name\\\":\\\"faq3\\\"},\\\"JIz64ZFd9\\\":{\\\"pattern\\\":\\\":JIz64ZFd9\\\",\\\"name\\\":\\\"faq1\\\"},\\\"b5nx7ab3Z\\\":{\\\"pattern\\\":\\\":b5nx7ab3Z\\\",\\\"name\\\":\\\"faq2\\\"}}\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"8325.5\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "whDAA0X,IAAMA,GAAsB,CAAC,KAAKC,GAAQ,eAAeA,OAAY,MAAMA,GAAQ,cAAcA,OAAY,IAAIA,GAAQ,eAAeA,OAAY,OAAOA,GAAQ,cAAcA,MAAW,EAAQC,GAA8B,OAAO,UAAY,KAAa,OAAO,UAAU,UAAU,oBAAqB,WASzpB,SAARC,EAAwBC,EAAM,CAAa,GAAG,CAAC,MAAAC,EAAM,IAAAC,EAAI,QAAAC,EAAQ,eAAAC,EAAe,WAAAC,EAAW,aAAAC,EAAa,cAAAC,EAAc,YAAAC,EAAY,MAAAC,EAAM,YAAAC,EAAY,UAAAC,EAAU,UAAAC,EAAU,cAAAC,EAAc,YAAAC,EAAY,MAAAC,CAAK,EAAEf,EAAW,CAAC,YAAAgB,EAAY,SAAAC,EAAS,UAAAC,EAAU,UAAAC,EAAU,UAAAC,CAAS,EAAEN,EAAiB,CAAC,UAAAO,EAAU,WAAAC,EAAU,EAAET,EAAoBU,GAAanB,EAAe,GAAGC,OAAgBC,OAAkBC,OAAmBC,MAAgB,GAAGL,MAA+BqB,EAASC,GAAa,QAAQ,IAAIA,GAAa,OAAaC,GAAYC,GAAS,MAAM1B,CAAK,EAAQ2B,GAAYF,GAAY,EAAKf,IAAY,KAAMA,EAAU,QAAQ,IAAMkB,EAAalB,IAAY,QAAQA,IAAY,QAAcd,GAAOiC,GAAe,CAAC,EAAQC,GAAYnC,GAAsBe,CAAS,EAAQqB,GAAUC,GAAapC,GAAOkC,EAAW,EAA6BG,EAAUC,EAAO,IAAI,EAAQC,EAAYC,GAAQ,IAAW,CAAeC,GAAU,EAAgBA,GAAU,CAAC,EAAI,CAAC,CAAC,EAAO,CAACC,EAAKC,EAAO,EAAEC,GAAS,CAAC,OAAO,KAAK,SAAS,IAAI,CAAC,EAAmBC,GAAe,CAAC,EAAMC,GAAc,CAAC,EAA4BC,GAAY,EAAMC,GAAQ,EAAKrB,IACvnCoB,GAAYlB,GAAY,KAAK,MAAM,GAAGA,EAAW,EAAE,EAAEmB,GAAQ,GAAM,CAACrB,GAAUI,IAAaW,EAAK,SAAQK,GAAY,KAAK,MAAML,EAAK,OAAOA,EAAK,SAAS,CAAC,EAAE,EAAEM,GAAQ,GAAkC,IAAMC,GAAQC,GAAY,IAAI,CAAC,GAAGnB,IAAaM,EAAU,QAAQ,CAAC,IAAMc,EAAanB,EAAaK,EAAU,QAAQ,YAAYA,EAAU,QAAQ,aAAmBe,EAAMb,EAAY,CAAC,EAAE,QAAQP,EAAaO,EAAY,CAAC,EAAE,QAAQ,WAAWA,EAAY,CAAC,EAAE,QAAQ,UAAU,EAAkMc,GAAtLd,EAAY,CAAC,EAAE,QAAQP,EAAaO,EAAY,CAAC,EAAE,QAAQ,WAAWA,EAAY,CAAC,EAAE,QAAQ,YAAYA,EAAY,CAAC,EAAE,QAAQ,UAAUA,EAAY,CAAC,EAAE,QAAQ,aAAa,GAA2Ba,EAAM/C,EAAIsC,GAAQ,CAAC,OAAOQ,EAAa,SAASE,CAAc,CAAC,EAAG,EAAE,CAAC,CAAC,EAAQC,GAAe3B,EAAS,CAAC,kBAAkB,MAAM,EAAE,CAAC,EAAyC,GAAGI,GAAY,CACz2B,GAAG,CAACJ,EAAS,CAGG,IAAI4B,EAAcjB,EAAO,EAAI,EAAEkB,EAAU,KAAKP,GAAQ,EAASQ,GAAOpB,EAAU,QAAQ,CAAC,CAAC,YAAAqB,CAAW,IAAI,CAAI,CAACH,EAAc,UAAUG,EAAY,OAAOA,EAAY,SAAST,GAAQ,EAAGM,EAAc,QAAQ,EAAM,CAAC,GAAI,CAAC,CAAC,EAAGV,GAAef,GAAS,IAAI1B,EAAM,CAACuD,EAAMC,IAAQ,CAAC,IAAIC,EAAIC,EAAKC,EAAKC,EAAK,IAAIC,EAAQL,IAAQ,IAAGK,EAAK1B,EAAY,CAAC,GAAMqB,IAAQxD,EAAM,OAAO,IAAG6D,EAAK1B,EAAY,CAAC,GAAG,IAAMG,GAAK,CAAC,MAAMlB,GAAWqC,EAAIF,EAAM,SAAS,MAAME,IAAM,OAAO,OAAOA,EAAI,MAAM,OAAO,OAAOpC,IAAYqC,EAAKH,EAAM,SAAS,MAAMG,IAAO,OAAO,OAAOA,EAAK,OAAO,MAAM,EAAE,OAAqBI,EAAKC,EAAY,CAAC,QAAQ,KAAK,SAAuBD,EAAK,KAAK,CAAC,IAAID,EAAK,MAAMvB,GAAK,SAAuB0B,GAAaT,EAAM,CAAC,MAAM,CAAC,IAAII,EAAKJ,EAAM,SAAS,MAAMI,IAAO,OAAO,OAAOA,EAAK,MAAM,GAAGrB,GAAK,WAAW,EAAE,GAAGY,EAAc,EAAE,SAASK,EAAM,MAAM,SAASA,EAAM,MAAM,SAAS,aAAaC,EAAM,MAAS,GAAGI,EAAKL,EAAM,SAAS,MAAMK,IAAO,OAAO,OAAOA,EAAK,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAG,GAAG,CAACrC,EAAU,QAAQ0C,EAAE,EAAEA,EAAEtB,GAAYsB,IAAKvB,GAAc,CAAC,GAAGA,GAAc,GAAGhB,GAAS,IAAI1B,EAAM,CAACuD,EAAMW,IAAa,CAAC,IAAIT,EAAIC,EAAKC,EAAKC,EAAK,OAAqBE,EAAKC,EAAY,CAAC,QAAQ,KAAK,SAAuBD,EAAK,KAAK,CAAC,MAAM,CAAC,QAAQ,UAAU,EAAE,cAAc,GAAK,SAAuBE,GAAaT,EAAM,CAAC,IAAIU,EAAE,IAAIC,EAAW,MAAM,CAAC,IAAIT,EAAIF,EAAM,SAAS,MAAME,IAAM,OAAO,OAAOA,EAAI,MAAM,MAAMrC,GAAWsC,EAAKH,EAAM,SAAS,MAAMG,IAAO,OAAO,OAAOA,EAAK,MAAM,OAAO,OAAOrC,IAAYsC,EAAKJ,EAAM,SAAS,MAAMI,IAAO,OAAO,OAAOA,EAAK,OAAO,OAAO,WAAW,EAAE,GAAGT,EAAc,EAAE,SAASK,EAAM,MAAM,SAASA,EAAM,MAAM,SAAS,SAASU,EAAE,MAAS,GAAGL,EAAKL,EAAM,SAAS,MAAMK,IAAO,OAAO,OAAOA,EAAK,QAAQ,CAAC,EAAEK,EAAE,KAAKC,CAAU,CAAC,EAAED,EAAE,KAAKC,CAAU,CAAE,CAAC,CAAE,EAAI,IAAMC,EAAe7B,EAAK,SAASA,EAAK,SAAS,KAAK,MAAMA,EAAK,OAAOA,EAAK,QAAQ,EAAQ8B,GAAYlC,EAAO,IAAI,EAAQmC,GAASnC,EAAO,IAAI,EAAQoC,GAAKpC,EAAO,CAAC,EAAQqC,GAAQrC,EAAO,EAAK,EAAQsC,GAASC,GAAUxC,CAAS,EAAQyC,GAAgBC,GAAiB,EAAQC,GAAQ1C,EAAO,IAAI,EAAQ2C,GAAa3C,EAAO,IAAI,EAE/iEX,IAEG1B,GAA+BuD,EAAU,IAAI,CAAC,GAAG,EAAAsB,IAAiB,CAACP,GAAgB,CAAC3D,GAAe,OAAAqE,GAAa,QAAQD,GAAQ,QAAQ,QAAQ,CAAC,UAAU,CAAC9C,GAAY,CAAC,EAAEA,GAAYqC,CAAc,CAAE,CAAC,EAAE,CAAC,SAAS,KAAK,IAAIA,CAAc,EAAE3D,EAAM,IAAI,WAAW,IAAS,OAAO,QAAQ,CAAC,EAAQ,IAAIqE,GAAa,QAAQ,OAAO,CAAE,EAAE,CAACpE,EAAY0D,EAAe3D,CAAK,CAAC,EAGxWsE,GAAkBC,GAAG,CAAC,GAAG,CAACZ,GAAgBO,IAAiB7E,GAA+B,OAKnFuE,GAAY,UAAU,OAAMA,GAAY,QAAQW,GAAGA,EAAEA,EAAEX,GAAY,QAAqE,IAAIY,GAAjDX,GAAS,UAAU,KAAK,EAAEU,EAAEV,GAAS,UAA6B7D,EAAM,KAAQ+D,GAAQ,UAASS,GAAOvE,GAAa6D,GAAK,SAASU,EAAMV,GAAK,QAAQW,GAAK,EAAEd,EAAeG,GAAK,OAAO,EAAED,GAAS,QAAQU,EAAMP,IAAgB5E,GAAO,IAAI0E,GAAK,OAAO,CAAE,CAAC,GAAgB,IAAMY,GAActD,EAAa,WAAW,YAAkBuD,GAAelE,EAAU,EAAQmE,GAAa,IAAInE,EAAU,EAAQoE,GAAeC,GAAMpE,EAAU,EAAEiE,EAAc,EAAQI,GAAa,IAAIrE,EAAgBsE,GAAS,mBAAmBN,qBAAgC/D,MAAckE,yBAAqCF,yBAAqCC,sBAAgCjE,MAAcoE,OAAmC,OAAI5D,GAAuWmC,EAAK,UAAU,CAAC,MAAM,CAAC,GAAG2B,GAAe,QAAQ7C,GAAQ,gBAAgB7B,EAAYyE,GAAS,OAAU,aAAazE,EAAYyE,GAAS,OAAU,UAAUzE,EAAYyE,GAAS,OAAU,SAASxE,EAAS,UAAU,SAAS,QAAQM,EAAY,EAAE,IAAIW,EAAU,SAAuByD,EAAMC,EAAO,GAAG,CAAC,IAAIf,GAAQ,MAAM,CAAC,GAAGa,GAAe,IAAIxF,EAAI,IAAIS,IAAY,UAAUkF,GAAczB,CAAc,EAAE,CAACA,EAAe,OAAU,KAAKzD,IAAY,SAASkF,GAAczB,CAAc,EAAE,CAACA,EAAe,OAAU,WAAWxD,EAAU,SAAS,WAAW,cAAciB,EAAa,MAAM,SAAS,GAAGd,EAAM,UAAUjB,GAA8B,OAAUkC,GAAU,WAAW,WAAW,EAAE,aAAa,IAAI,CAACwC,GAAQ,QAAQ,GAAQM,GAAa,SAASA,GAAa,QAAQ,mBAAmBpE,CAAW,CAAG,EAAE,aAAa,IAAI,CAAC8D,GAAQ,QAAQ,GAASM,GAAa,SAASA,GAAa,QAAQ,mBAAmB,CAAC,CAAG,EAAE,SAAS,CAACpC,GAAeC,EAAa,CAAC,CAAC,CAAC,CAAC,EAArwCgD,EAAM,UAAU,CAAC,MAAMG,GAAkB,SAAS,CAAe/B,EAAK,MAAM,CAAC,MAAMgC,GAAY,SAAS,QAAG,CAAC,EAAgBhC,EAAK,IAAI,CAAC,MAAMiC,GAAY,SAAS,oBAAoB,CAAC,EAAgBjC,EAAK,IAAI,CAAC,MAAMkC,GAAe,SAAS,2DAA2D,CAAC,CAAC,CAAC,CAAC,CAA09B,CAA2BlG,EAAO,aAAa,CAAC,IAAI,GAAG,QAAQ,GAAG,cAAc,CAAC,UAAU,GAAK,WAAW,EAAI,EAAE,YAAY,CAAC,YAAY,GAAK,SAAS,GAAM,UAAU,GAAG,UAAU,EAAE,UAAU,CAAC,EAAE,UAAU,EAAI,EAA0BmG,GAAoBnG,EAAO,CAAC,MAAM,CAAC,KAAKoG,EAAY,MAAM,MAAM,WAAW,QAAQ,CAAC,KAAKA,EAAY,iBAAiB,CAAC,EAAE,MAAM,CAAC,KAAKA,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,IAAI,aAAa,IAAI,KAAK,IAAI,eAAe,GAAK,KAAK,CAAC,EAAE,UAAU,CAAC,KAAKA,EAAY,KAAK,MAAM,YAAY,QAAQ,CAAC,OAAO,QAAQ,MAAM,QAAQ,EAAE,YAAY,CAAC,iBAAiB,kBAAkB,eAAe,gBAAiB,EAAE,aAAa,CAAC,OAAO,QAAQ,MAAM,QAAQ,EAAE,aAAa,OAAO,wBAAwB,EAAI,EAAE,UAAU,CAAC,KAAKA,EAAY,KAAK,MAAM,QAAQ,QAAQ,CAAC,aAAa,SAAS,UAAU,EAAE,YAAY,CAAC,UAAU,CAAC,MAAM,CAAC,YAAY,eAAe,cAAc,EAAE,KAAK,CAAC,YAAY,eAAe,cAAc,EAAE,IAAI,CAAC,aAAa,eAAe,aAAa,EAAE,OAAO,CAAC,aAAa,eAAe,aAAa,CAAC,CAAC,EAAE,aAAa,SAAS,wBAAwB,EAAI,EAAE,IAAI,CAAC,KAAKA,EAAY,OAAO,MAAM,KAAK,EAAE,QAAQ,CAAC,MAAM,UAAU,KAAKA,EAAY,YAAY,UAAU,iBAAiB,aAAa,CAAC,UAAU,kBAAkB,EAAE,UAAU,CAAC,aAAa,eAAe,gBAAgB,aAAc,EAAE,YAAY,CAAC,IAAI,IAAI,IAAI,GAAG,EAAE,IAAI,CAAC,EAAE,cAAc,CAAC,KAAKA,EAAY,OAAO,MAAM,SAAS,SAAS,CAAC,UAAU,CAAC,KAAKA,EAAY,QAAQ,MAAM,QAAQ,aAAa,OAAO,cAAc,UAAU,aAAa,EAAI,EAAE,WAAW,CAAC,KAAKA,EAAY,QAAQ,MAAM,SAAS,aAAa,OAAO,cAAc,UAAU,aAAa,EAAI,CAAC,CAAC,EAAE,YAAY,CAAC,KAAKA,EAAY,OAAO,MAAM,WAAW,SAAS,CAAC,YAAY,CAAC,KAAKA,EAAY,QAAQ,MAAM,OAAO,aAAa,EAAI,EAAE,SAAS,CAAC,KAAKA,EAAY,QAAQ,MAAM,WAAW,aAAa,OAAO,cAAc,OAAO,aAAa,GAAM,OAAOnG,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAK,CAAC,EAAE,UAAU,CAAC,KAAKmG,EAAY,OAAO,MAAM,QAAQ,aAAa,GAAG,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAOnG,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,EAAE,UAAU,CAAC,KAAKmG,EAAY,OAAO,MAAM,QAAQ,aAAa,EAAE,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAOnG,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,EAAE,UAAU,CAAC,KAAKmG,EAAY,OAAO,MAAM,UAAU,aAAa,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,OAAOnG,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,CAAC,CAAC,EAAE,YAAY,CAAC,KAAKmG,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,aAAa,EAAE,KAAK,GAAG,eAAe,GAAK,YAAY,8CAA8C,CAAC,CAAC,EAA2B,IAAMT,GAAe,CAAC,QAAQ,OAAO,MAAM,OAAO,OAAO,OAAO,SAAS,OAAO,UAAU,OAAO,WAAW,SAAS,OAAO,EAAE,QAAQ,EAAE,cAAc,OAAO,WAAW,MAAM,EAAqBI,GAAkB,CAAC,QAAQ,OAAO,MAAM,OAAO,OAAO,OAAO,aAAa,SAAS,WAAW,SAAS,cAAc,SAAS,MAAM,OAAO,WAAW,0BAA0B,SAAS,GAAG,SAAS,SAAS,QAAQ,qBAAqB,EAAQC,GAAY,CAAC,SAAS,GAAG,aAAa,EAAE,EAAQC,GAAY,CAAC,OAAO,EAAE,aAAa,GAAG,WAAW,IAAI,UAAU,QAAQ,EAAQC,GAAe,CAAC,OAAO,EAAE,QAAQ,GAAG,SAAS,IAAI,WAAW,IAAI,UAAU,QAAQ,EAAiDV,GAAM,CAACa,EAAIC,EAAIC,IAAM,KAAK,IAAI,KAAK,IAAIF,EAAIC,CAAG,EAAEC,CAAG,EAAQT,GAAcU,GAAO,OAAOA,GAAQ,UAAU,CAAC,MAAMA,CAAK,EC1Bz7J,IAAMC,GAAS,CAAC,cAAc,oBAAoB,WAAW,mBAAmB,kBAAkB,kBAAkB,eAAe,UAAU,QAAQ,QAAQ,cAAc,oBAAoB,sBAAsB,YAAY,kBAAkB,aAAa,mBAAmB,WAAW,iBAAiB,aAAa,SAAS,eAAe,cAAc,cAAc,WAAW,eAAe,YAAY,YAAY,oBAAoB,UAAU,aAAa,cAAc,WAAW,eAAe,gBAAgB,oBAAoB,qBAAqB,oBAAoB,kBAAkB,qBAAqB,mBAAmB,kBAAkB,mBAAmB,kBAAkB,sBAAsB,uBAAuB,kBAAkB,mBAAmB,gBAAgB,oBAAoB,qBAAqB,iBAAiB,YAAY,gBAAgB,iBAAiB,qBAAqB,sBAAsB,iBAAiB,qBAAqB,mBAAmB,kBAAkB,sBAAsB,oBAAoB,mBAAmB,oBAAoB,eAAe,eAAe,mBAAmB,mBAAmB,oBAAoB,iBAAiB,oBAAoB,oBAAoB,qBAAqB,kBAAkB,gBAAgB,aAAa,YAAY,gBAAgB,oBAAoB,qBAAqB,gBAAgB,iBAAiB,cAAc,kBAAkB,mBAAmB,aAAa,kBAAkB,sBAAsB,uBAAuB,gBAAgB,kBAAkB,iBAAiB,mBAAmB,gBAAgB,oBAAoB,qBAAqB,iBAAiB,kBAAkB,iBAAiB,eAAe,kBAAkB,gBAAgB,eAAe,gBAAgB,UAAU,cAAc,eAAe,kBAAkB,eAAe,mBAAmB,WAAW,mBAAmB,uBAAuB,iBAAiB,kBAAkB,cAAc,YAAY,oBAAoB,kBAAkB,cAAc,iBAAiB,UAAU,gBAAgB,iBAAiB,WAAW,iBAAiB,KAAK,OAAO,OAAO,WAAW,YAAY,MAAM,YAAY,UAAU,WAAW,OAAO,UAAU,UAAU,YAAY,WAAW,cAAc,SAAS,aAAa,UAAU,kBAAkB,eAAe,cAAc,cAAc,aAAa,gBAAgB,cAAc,sBAAsB,uBAAuB,sBAAsB,sBAAsB,qBAAqB,iBAAiB,MAAM,aAAa,YAAY,cAAc,OAAO,cAAc,aAAa,oBAAoB,kBAAkB,cAAc,YAAY,QAAQ,cAAc,UAAU,aAAa,OAAO,YAAY,qBAAqB,iBAAiB,aAAa,OAAO,OAAO,OAAO,eAAe,WAAW,eAAe,WAAW,iBAAiB,YAAY,kBAAkB,QAAQ,OAAO,cAAc,WAAW,gBAAgB,gBAAgB,gBAAgB,iBAAiB,QAAQ,SAAS,SAAS,YAAY,iBAAiB,YAAY,QAAQ,UAAU,WAAW,MAAM,YAAY,WAAW,YAAY,MAAM,YAAY,SAAS,OAAO,aAAa,WAAW,gBAAgB,gBAAgB,eAAe,YAAY,WAAW,SAAS,aAAa,eAAe,cAAc,WAAW,MAAM,aAAa,YAAY,aAAa,QAAQ,sBAAsB,kBAAkB,kBAAkB,mBAAmB,gBAAgB,oBAAoB,kBAAkB,kBAAkB,mBAAmB,gBAAgB,YAAY,YAAY,aAAa,UAAU,cAAc,SAAS,eAAe,eAAe,MAAM,iBAAiB,iBAAiB,gBAAgB,mBAAmB,iBAAiB,kBAAkB,cAAc,cAAc,QAAQ,aAAa,mBAAmB,oBAAoB,YAAY,kBAAkB,WAAW,qBAAqB,aAAa,YAAY,gBAAgB,cAAc,WAAW,gBAAgB,aAAa,eAAe,OAAO,eAAe,mBAAmB,mBAAmB,aAAa,iBAAiB,iBAAiB,WAAW,eAAe,mBAAmB,mBAAmB,WAAW,QAAQ,cAAc,gBAAgB,QAAQ,cAAc,WAAW,cAAc,oBAAoB,SAAS,SAAS,SAAS,eAAe,aAAa,iBAAiB,cAAc,cAAc,eAAe,mBAAmB,YAAY,YAAY,gBAAgB,QAAQ,iBAAiB,iBAAiB,iBAAiB,mBAAmB,QAAQ,iBAAiB,eAAe,aAAa,WAAW,iBAAiB,YAAY,YAAY,aAAa,YAAY,WAAW,eAAe,SAAS,OAAO,aAAa,WAAW,OAAO,YAAY,aAAa,cAAc,kBAAkB,SAAS,OAAO,eAAe,QAAQ,UAAU,UAAU,UAAU,cAAc,gBAAgB,WAAW,qBAAqB,UAAU,SAAS,aAAa,OAAO,aAAa,WAAW,YAAY,YAAY,aAAa,QAAQ,MAAM,aAAa,OAAO,QAAQ,YAAY,kBAAkB,QAAQ,cAAc,OAAO,YAAY,kBAAkB,cAAc,uBAAuB,cAAc,iBAAiB,uBAAuB,cAAc,cAAc,cAAc,cAAc,cAAc,cAAc,cAAc,cAAc,cAAc,SAAS,cAAc,aAAa,WAAW,WAAW,UAAU,eAAe,YAAY,YAAY,eAAe,qBAAqB,sBAAsB,eAAe,qBAAqB,sBAAsB,UAAU,UAAU,eAAe,WAAW,WAAW,UAAU,UAAU,YAAY,UAAU,OAAO,cAAc,SAAS,MAAM,MAAM,OAAO,WAAW,MAAM,aAAa,WAAW,UAAU,kBAAkB,YAAY,kBAAkB,mBAAmB,oBAAoB,WAAW,iBAAiB,QAAQ,eAAe,OAAO,WAAW,iBAAiB,cAAc,MAAM,WAAW,MAAM,WAAW,QAAQ,cAAc,WAAW,SAAS,WAAW,eAAe,iBAAiB,qBAAqB,YAAY,SAAS,SAAS,gBAAgB,cAAc,OAAO,UAAU,gBAAgB,SAAS,MAAM,YAAY,WAAW,aAAa,mBAAmB,aAAa,WAAW,eAAe,UAAU,SAAS,mBAAmB,MAAM,cAAc,oBAAoB,UAAU,YAAY,OAAO,cAAc,gBAAgB,cAAc,YAAY,YAAY,WAAW,UAAU,UAAU,aAAa,UAAU,WAAW,YAAY,UAAU,SAAS,UAAU,WAAW,sBAAsB,YAAY,UAAU,WAAW,UAAU,UAAU,SAAS,UAAU,UAAU,WAAW,SAAS,UAAU,YAAY,UAAU,QAAQ,UAAU,UAAU,QAAQ,WAAW,aAAa,YAAY,YAAY,cAAc,oBAAoB,eAAe,OAAO,mBAAmB,aAAa,WAAW,cAAc,OAAO,aAAa,OAAO,aAAa,gBAAgB,cAAc,QAAQ,aAAa,QAAQ,aAAa,iBAAiB,YAAY,SAAS,cAAc,cAAc,eAAe,SAAS,eAAe,aAAa,cAAc,cAAc,mBAAmB,kBAAkB,kBAAkB,aAAa,aAAa,eAAe,qBAAqB,mBAAmB,oBAAoB,mBAAmB,mBAAmB,mBAAmB,aAAa,aAAa,UAAU,WAAW,aAAa,YAAY,eAAe,aAAa,WAAW,SAAS,eAAe,iBAAiB,SAAS,SAAS,UAAU,QAAQ,QAAQ,OAAO,WAAW,UAAU,eAAe,iBAAiB,aAAa,eAAe,kBAAkB,oBAAoB,QAAQ,MAAM,OAAO,YAAY,YAAY,UAAU,UAAU,WAAW,iBAAiB,aAAa,aAAa,mBAAmB,QAAQ,sBAAsB,sBAAsB,cAAc,aAAa,UAAU,gBAAgB,sBAAsB,mBAAmB,kBAAkB,aAAa,mBAAmB,iBAAiB,qBAAqB,WAAW,gBAAgB,SAAS,cAAc,QAAQ,WAAW,WAAW,SAAS,YAAY,SAAS,OAAO,YAAY,UAAU,WAAW,eAAe,YAAY,WAAW,eAAe,WAAW,gBAAgB,iBAAiB,UAAU,aAAa,UAAU,gBAAgB,gBAAgB,eAAe,YAAY,YAAY,aAAa,OAAO,eAAe,aAAa,aAAa,UAAU,QAAQ,aAAa,YAAY,gBAAgB,qBAAqB,YAAY,UAAU,WAAW,oBAAoB,SAAS,QAAQ,YAAY,gBAAgB,eAAe,kBAAkB,kBAAkB,sBAAsB,qBAAqB,QAAQ,YAAY,cAAc,WAAW,sBAAsB,qBAAqB,QAAQ,cAAc,SAAS,eAAe,WAAW,OAAO,gBAAgB,YAAY,kBAAkB,iBAAiB,OAAO,SAAS,MAAM,YAAY,WAAW,UAAU,QAAQ,SAAS,eAAe,OAAO,SAAS,SAAS,OAAO,WAAW,YAAY,oBAAoB,aAAa,YAAY,aAAa,iBAAiB,cAAc,eAAe,OAAO,YAAY,aAAa,kBAAkB,uBAAuB,eAAe,YAAY,OAAO,cAAc,aAAa,aAAa,sBAAsB,cAAc,WAAW,OAAO,UAAU,cAAc,gBAAgB,oBAAoB,WAAW,aAAa,iBAAiB,UAAU,YAAY,SAAS,iBAAiB,kBAAkB,uBAAuB,sBAAsB,SAAS,aAAa,aAAa,eAAe,UAAU,YAAY,UAAU,iBAAiB,QAAQ,gBAAgB,aAAa,YAAY,kBAAkB,gBAAgB,WAAW,YAAY,aAAa,kBAAkB,kBAAkB,qBAAqB,uBAAuB,qBAAqB,oBAAoB,QAAQ,cAAc,cAAc,QAAQ,UAAU,cAAc,OAAO,YAAY,QAAQ,aAAa,SAAS,aAAa,YAAY,QAAQ,cAAc,YAAY,kBAAkB,aAAa,iBAAiB,mBAAmB,kBAAkB,SAAS,YAAY,oBAAoB,UAAU,OAAO,YAAY,aAAa,WAAW,UAAU,eAAe,aAAa,oBAAoB,mBAAmB,mBAAmB,mBAAmB,kBAAkB,oBAAoB,kBAAkB,oBAAoB,kBAAkB,mBAAmB,cAAc,aAAa,aAAa,aAAa,YAAY,cAAc,YAAY,oBAAoB,mBAAmB,mBAAmB,mBAAmB,kBAAkB,oBAAoB,kBAAkB,oBAAoB,kBAAkB,mBAAmB,cAAc,YAAY,aAAa,MAAM,cAAc,UAAU,cAAc,SAAS,cAAc,UAAU,aAAa,kBAAkB,sBAAsB,cAAc,cAAc,UAAU,QAAQ,aAAa,kBAAkB,iBAAiB,YAAY,sBAAsB,YAAY,YAAY,gBAAgB,OAAO,WAAW,OAAO,cAAc,QAAQ,cAAc,WAAW,aAAa,QAAQ,MAAM,SAAS,iBAAiB,SAAS,eAAe,aAAa,eAAe,mBAAmB,oBAAoB,cAAc,YAAY,SAAS,UAAU,SAAS,mBAAmB,eAAe,mBAAmB,kBAAkB,oBAAoB,mBAAmB,cAAc,QAAQ,YAAY,kBAAkB,gBAAgB,gBAAgB,YAAY,aAAa,SAAS,eAAe,KAAK,YAAY,mBAAmB,YAAY,OAAO,gBAAgB,WAAW,QAAQ,cAAc,SAAS,QAAQ,OAAO,aAAa,YAAY,WAAW,OAAO,eAAe,QAAQ,iBAAiB,OAAO,aAAa,YAAY,aAAa,YAAY,YAAY,UAAU,UAAU,cAAc,QAAQ,eAAe,eAAe,oBAAoB,UAAU,WAAW,gBAAgB,kBAAkB,uBAAuB,QAAQ,UAAU,gBAAgB,qBAAqB,eAAe,cAAc,SAAS,WAAW,QAAQ,SAAS,UAAU,QAAQ,cAAc,cAAc,UAAU,eAAe,aAAa,UAAU,WAAW,SAAS,YAAY,UAAU,aAAa,SAAS,aAAa,SAAS,eAAe,cAAc,QAAQ,SAAS,eAAe,OAAO,MAAM,YAAY,MAAM,QAAQ,SAAS,OAAO,WAAW,UAAU,aAAa,eAAe,SAAS,OAAO,YAAY,eAAe,cAAc,YAAY,eAAe,sBAAsB,sBAAsB,mBAAmB,gBAAgB,iBAAiB,SAAS,QAAQ,WAAW,eAAe,SAAS,cAAc,kBAAkB,gBAAgB,aAAa,cAAc,aAAa,gBAAgB,cAAc,eAAe,cAAc,kBAAkB,eAAe,qBAAqB,SAAS,SAAS,UAAU,iBAAiB,gBAAgB,UAAU,gBAAgB,QAAQ,SAAS,UAAU,YAAY,WAAW,UAAU,QAAQ,aAAa,WAAW,iBAAiB,cAAc,oBAAoB,QAAQ,YAAY,UAAU,oBAAoB,YAAY,SAAS,cAAc,cAAc,YAAY,gBAAgB,YAAY,gBAAgB,aAAa,cAAc,eAAe,UAAU,cAAc,YAAY,aAAa,gBAAgB,iBAAiB,iBAAiB,QAAQ,UAAU,cAAc,cAAc,aAAa,cAAc,oBAAoB,mBAAmB,oBAAoB,qBAAqB,iBAAiB,eAAe,WAAW,UAAU,aAAa,SAAS,kBAAkB,gBAAgB,cAAc,SAAS,aAAa,mBAAmB,aAAa,sBAAsB,cAAc,QAAQ,oBAAoB,cAAc,SAAS,QAAQ,OAAO,kBAAkB,WAAW,WAAW,cAAc,gBAAgB,QAAQ,cAAc,UAAU,QAAQ,OAAO,aAAa,aAAa,WAAW,aAAa,UAAU,YAAY,WAAW,iBAAiB,WAAW,kBAAkB,iBAAiB,MAAM,SAAS,aAAa,aAAa,OAAO,WAAW,eAAe,QAAQ,YAAY,UAAU,SAAS,QAAQ,OAAO,MAAM,aAAa,YAAY,SAAS,OAAO,eAAe,aAAa,mBAAmB,aAAa,OAAO,WAAW,iBAAiB,WAAW,iBAAiB,SAAS,kBAAkB,mBAAmB,gBAAgB,iBAAiB,QAAQ,cAAc,QAAQ,YAAY,YAAY,WAAW,WAAW,aAAa,WAAW,aAAa,aAAa,cAAc,oBAAoB,QAAQ,gBAAgB,UAAU,cAAc,kBAAkB,iBAAiB,oBAAoB,aAAa,WAAW,SAAS,YAAY,aAAa,QAAQ,OAAO,aAAa,cAAc,SAAS,cAAc,UAAU,QAAQ,OAAO,aAAa,YAAY,sBAAsB,cAAc,cAAc,gBAAgB,QAAQ,gBAAgB,cAAc,OAAO,YAAY,QAAQ,cAAc,OAAO,OAAO,gBAAgB,WAAW,gBAAgB,YAAY,UAAU,WAAW,SAAS,QAAQ,aAAa,cAAc,WAAW,iBAAiB,QAAQ,cAAc,SAAS,eAAe,MAAM,OAAO,aAAa,iBAAiB,kBAAkB,iBAAiB,YAAY,WAAW,WAAW,YAAY,WAAW,gBAAgB,aAAa,aAAa,QAAQ,YAAY,aAAa,MAAM,QAAQ,UAAU,QAAQ,cAAc,mBAAmB,WAAW,cAAc,iBAAiB,QAAQ,YAAY,aAAa,OAAO,SAAS,YAAY,UAAU,gBAAgB,iBAAiB,iBAAiB,QAAQ,eAAe,WAAW,aAAa,eAAe,WAAW,QAAQ,SAAS,cAAc,eAAe,aAAa,eAAe,aAAa,mBAAmB,WAAW,UAAU,aAAa,WAAW,YAAY,QAAQ,OAAO,cAAc,OAAO,SAAS,IAAI,UAAU,UAAU,UAAU,aAAc,EAAQC,GAAc,uCAA6CC,GAAc,CAAC,OAAO,QAAQ,UAAU,OAAO,OAAO,SAAU,EAAQC,GAAsBH,GAAS,OAAO,CAACI,EAAIC,KAAOD,EAAIC,EAAI,YAAY,CAAC,EAAEA,EAAWD,GAAM,CAAC,CAAC,EAQ3ohB,SAASE,EAAKC,EAAM,CAAC,GAAK,CAAC,MAAAC,EAAM,aAAAC,EAAa,WAAAC,EAAW,cAAAC,EAAc,QAAAC,EAAQ,YAAAC,EAAY,UAAAC,EAAU,aAAAC,EAAa,aAAAC,EAAa,OAAAC,EAAO,SAAAC,CAAQ,EAAEX,EAAYY,EAAUC,EAAO,EAAK,EAAQC,EAAQC,GAAiBtB,GAASS,EAAaC,EAAWC,EAAcR,EAAqB,EAAO,CAACoB,EAAaC,CAAe,EAAEC,GAASJ,IAAU,OAAOK,GAAaC,EAAK,EAAE,IAAI,EAAE,eAAeC,GAAc,CACzZ,GAAG,CAAuF,IAAMC,EAAO,MAAM,OAA9D,GAAG5B,KAAgBoB,eAA8FF,EAAU,SAAQK,EAAgBK,EAAO,QAAQF,EAAK,CAAC,CAAE,MAAC,CAAcR,EAAU,SAAQK,EAAgB,IAAI,CAAE,CAAC,CAACM,EAAU,KAAKX,EAAU,QAAQ,GAAKS,EAAa,EAAQ,IAAI,CAACT,EAAU,QAAQ,EAAM,GAAI,CAACE,CAAO,CAAC,EAAgE,IAAMU,EAAnDC,GAAa,QAAQ,IAAIA,GAAa,OAAiDC,EAAKC,GAAU,CAAC,CAAC,EAAE,KAAK,OAAqBD,EAAKE,EAAO,IAAI,CAAC,MAAM,CAAC,QAAQ,UAAU,EAAE,QAAAvB,EAAQ,aAAAG,EAAa,aAAAC,EAAa,YAAAH,EAAY,UAAAC,EAAU,SAASS,EAA2BU,EAAK,MAAM,CAAC,MAAM,6BAA6B,QAAQ,cAAc,MAAM,CAAC,WAAW,OAAO,MAAM,OAAO,OAAO,OAAO,QAAQ,eAAe,KAAKzB,EAAM,MAAAA,EAAM,WAAW,EAAE,UAAUU,EAAS,eAAe,MAAS,EAAE,UAAU,QAAQ,MAAMV,EAAM,SAAuByB,EAAKV,EAAa,CAAC,MAAMf,EAAM,OAAOS,CAAM,CAAC,CAAC,CAAC,EAAEc,CAAU,CAAC,CAAE,CAACzB,EAAK,YAAY,WAAWA,EAAK,aAAa,CAAC,MAAM,GAAG,OAAO,GAAG,cAAc,QAAQ,WAAW,QAAQ,MAAM,OAAO,aAAa,GAAK,OAAO,UAAU,SAAS,EAAK,EAAE8B,GAAoB9B,EAAK,CAAC,aAAa,CAAC,KAAK+B,EAAY,QAAQ,MAAM,SAAS,aAAa,OAAO,cAAc,SAAS,aAAa/B,EAAK,aAAa,YAAY,EAAE,cAAc,CAAC,KAAK+B,EAAY,KAAK,QAAQrC,GAAS,aAAaM,EAAK,aAAa,cAAc,MAAM,OAAO,OAAO,CAAC,CAAC,aAAAG,CAAY,IAAI,CAACA,EAAa,YAAY,yEAAyE,EAAE,WAAW,CAAC,KAAK4B,EAAY,OAAO,MAAM,OAAO,YAAY,wBAAmB,OAAO,CAAC,CAAC,aAAA5B,CAAY,IAAIA,CAAY,EAAE,MAAM,CAAC,KAAK4B,EAAY,MAAM,MAAM,QAAQ,aAAa/B,EAAK,aAAa,KAAK,EAAE,OAAO,CAAC,KAAK+B,EAAY,KAAK,MAAM,SAAS,aAAanC,GAAc,IAAIoC,GAAOA,EAAM,OAAO,CAAC,EAAE,YAAY,EAAEA,EAAM,MAAM,CAAC,CAAC,EAAE,QAAQpC,GAAc,aAAaI,EAAK,aAAa,MAAM,EAAE,SAAS,CAAC,KAAK+B,EAAY,QAAQ,aAAa,MAAM,cAAc,KAAK,aAAa/B,EAAK,aAAa,QAAQ,EAAE,GAAGiC,EAAa,CAAC,ECRxhD,IAAMC,GAAcC,EAASC,CAAQ,EAAQC,GAAkBC,GAAoBF,EAAS,EAAQG,GAAW,CAAC,WAAW,EAAQC,GAAkB,CAAC,UAAU,iBAAiB,EAAkO,IAAMC,GAAY,CAAC,QAAQ,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,CAAC,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,EAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,GAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,GAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAAS,CAAC,CAAC,QAAAC,EAAQ,OAAAC,EAAO,GAAAC,EAAG,KAAAC,EAAK,WAAAC,EAAW,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAKC,EAAMC,EAAM,MAAM,CAAC,GAAGH,EAAM,WAAWC,EAAKJ,GAAgCG,EAAM,aAAa,MAAMC,IAAO,OAAOA,EAAK,gBAAgB,WAAWC,EAAMJ,GAAkDE,EAAM,aAAa,MAAME,IAAQ,OAAOA,EAAM,kBAAkB,WAAWC,EAAMT,GAAyCM,EAAM,aAAa,MAAMG,IAAQ,OAAOA,EAAM,sBAAsB,CAAE,EAAQC,GAAuB,CAACJ,EAAMK,IAAWA,EAAS,KAAK,GAAG,EAAEL,EAAM,iBAAuBM,GAA6BC,GAAW,SAASP,EAAMQ,EAAI,CAAC,GAAK,CAAC,aAAAC,CAAY,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAEzB,GAASO,CAAK,EAAO,CAAC,YAAAmB,EAAY,WAAAC,EAAW,eAAAC,EAAe,gBAAAC,EAAgB,WAAAC,EAAW,WAAAlC,EAAW,SAAAgB,CAAQ,EAAEmB,GAAgB,CAAC,WAAAC,GAAW,eAAe,YAAY,YAAA3C,GAAY,QAAAgC,EAAQ,kBAAAY,EAAiB,CAAC,EAAQC,EAAiBvB,GAAuBJ,EAAMK,CAAQ,EAAQuB,EAAsBC,GAAM,EAAE,OAAoBrC,EAAKsC,EAAY,CAAC,GAAGjB,GAA4Ce,EAAgB,SAAsBpC,EAAKuC,EAAO,IAAI,CAAC,QAAQjB,EAAQ,QAAQT,EAAS,aAAa,IAAIiB,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,WAAW,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,WAAW,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,MAAM,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,YAAY,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,UAAUU,EAAG,eAAeZ,CAAU,EAAE,MAAM,CAAC,QAAQ,UAAU,EAAE,SAAsB5B,EAAKT,GAAW,CAAC,MAAMM,EAAW,SAAsBG,EAAKuC,EAAO,IAAI,CAAC,GAAGb,EAAU,UAAUc,EAAG,gBAAgBpB,CAAS,EAAE,mBAAmB,SAAS,iBAAiBe,EAAiB,SAAS,YAAY,IAAInB,EAAI,MAAM,CAAC,gBAAgB,sEAAsE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,GAAGG,CAAK,EAAE,SAAsBsB,EAAMF,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,iBAAiBJ,EAAiB,SAAS,YAAY,SAAS,CAAcnC,EAAKuC,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiBJ,EAAiB,SAAS,sBAAsB,SAAsBnC,EAAK0C,EAAS,CAAC,MAAM,+FAA+F,OAAO,OAAO,WAAW,OAAO,cAAcnB,EAAU,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,OAAO,MAAM,MAAM,CAAC,CAAC,CAAC,EAAekB,EAAMF,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,iBAAiBJ,EAAiB,SAAS,YAAY,SAAS,CAAcnC,EAAK2C,EAAS,CAAC,sBAAsB,GAAK,SAAsB3C,EAAW4C,EAAS,CAAC,SAAsB5C,EAAKuC,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,sCAAsC,uBAAuB,MAAM,uBAAuB,OAAO,sBAAsB,gGAAgG,EAAE,SAAS,sBAAsB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,uBAAuB,MAAM,CAAC,cAAc,EAAE,iBAAiBJ,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,6BAA6B,KAAK,EAAE,KAAKX,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAexB,EAAK2C,EAAS,CAAC,sBAAsB,GAAK,SAAsB3C,EAAW4C,EAAS,CAAC,SAAsB5C,EAAKuC,EAAO,EAAE,CAAC,MAAM,CAAC,qBAAqB,OAAO,0BAA0B,MAAM,uBAAuB,OAAO,sBAAsB,sGAAsG,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,kBAAkB,iBAAiBJ,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,8EAA8E,6BAA6B,KAAK,EAAE,KAAKV,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQoB,GAAI,CAAC,sZAAsZ,kFAAkF,oDAAoD,6RAA6R,8RAA8R,yGAAyG,uSAAuS,mMAAmM,wxBAAwxB,EAO59PC,GAAgBC,GAAQjC,GAAU+B,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,QAAQA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,GAAG,EAAEG,GAAoBH,GAAgB,CAAC,UAAuEI,IAAkB,eAAmB,CAAC,GAAGA,GAAkB,cAAiB,aAAa,gBAAgB,OAAO,OAAU,MAAM,MAAM,EAAE,UAAU,CAAC,aAAa,uBAAuB,gBAAgB,GAAM,MAAM,UAAU,KAAKC,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,kBAAkB,gBAAgB,GAAM,MAAM,aAAa,KAAKA,EAAY,MAAM,CAAC,CAAC,EAAEC,GAASN,GAAgB,CAAC,GAAGO,EAAa,CAAC,ECP05C,IAAMC,GAAYC,EAASC,EAAM,EAAQC,GAAYF,EAASG,EAAM,EAAQC,GAAmCC,GAA0BC,EAAO,GAAG,EAAQC,GAAYP,EAASQ,CAAM,EAAQC,GAAWT,EAASU,EAAK,EAAQC,GAAWX,EAASY,EAAK,EAAQC,GAAgBC,GAAOR,EAAO,GAAG,EAAQS,GAAiBf,EAASgB,EAAW,EAAQC,GAAmCZ,GAA0Ba,CAAS,EAAQC,GAAqBnB,EAASoB,EAAe,EAAQC,GAAiChB,GAA0BC,EAAO,CAAC,EAAQgB,GAAqBtB,EAASuB,EAAe,EAAQC,GAAmBxB,EAASyB,EAAa,EAAQC,GAAe1B,EAAS2B,EAAS,EAAQC,GAAY,CAAC,UAAU,sBAAsB,UAAU,6CAA6C,UAAU,oBAAoB,EAAoD,IAAMC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,iBAAiB,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAW,CAAC,QAAQ,KAAK,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,GAAG,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWH,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQI,GAAW,CAAC,QAAQ,KAAK,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,GAAG,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAW,CAAC,QAAQ,KAAK,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,IAAI,MAAM,EAAE,MAAM,EAAE,WAAWD,EAAW,EAAQE,GAAmB,CAACC,EAAEC,IAAI,oBAAoBA,IAAUC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,GAAG,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWd,GAAY,EAAE,EAAE,EAAE,GAAG,EAAQe,GAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,EAAE,EAAE,GAAG,EAAQE,GAAY,CAAC,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAY,CAAC,QAAQ,KAAK,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,GAAG,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,CAAC,EAAQC,GAAY,CAAC,QAAQ,KAAK,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,GAAG,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWb,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQc,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,KAAK,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,CAAC,EAAQC,GAAa,IAAY,SAAS,cAAc,mBAAmB,GAAG,SAAS,cAAc,UAAU,GAAG,SAAS,KAAaC,GAAQ,CAAC,CAAC,SAAAC,EAAS,uBAAAC,EAAuB,QAAAC,EAAQ,EAAI,IAAI,CAAC,GAAK,CAACC,EAAQC,CAAU,EAAEC,GAAgB,CAAC,uBAAAJ,CAAsB,CAAC,EAAE,OAAOD,EAAS,CAAC,KAAK,IAAII,EAAW,EAAK,EAAE,KAAK,IAAIA,EAAW,EAAI,EAAE,OAAO,IAAIA,EAAW,CAACD,CAAO,EAAE,QAAQD,GAASC,CAAO,CAAC,CAAE,EAAQG,GAAU,CAAC,CAAC,MAAAC,CAAK,IAAoBC,GAAoB,EAAqB,KAAyBC,EAAK,QAAQ,CAAC,wBAAwB,CAAC,OAAOF,CAAK,EAAE,yBAAyB,EAAE,CAAC,EAAUG,GAAwB,CAAC,QAAQ,YAAY,MAAM,YAAY,OAAO,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,QAAQL,GAAwBK,EAAM,OAAO,GAAGA,EAAM,SAAS,WAAW,GAAUC,GAA6BC,GAAW,SAASF,EAAMG,EAAI,CAAC,IAAMC,EAAYC,EAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,GAAM,EAAO,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAQC,EAAkBC,GAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,GAAGC,CAAS,EAAEtB,GAASI,CAAK,EAAQmB,EAAU,IAAI,CAAC,IAAMC,EAASA,GAAiB,OAAUX,CAAY,EAAE,GAAGW,EAAS,OAAO,CAAC,IAAIC,EAAU,SAAS,cAAc,qBAAqB,EAAKA,EAAWA,EAAU,aAAa,UAAUD,EAAS,MAAM,GAAQC,EAAU,SAAS,cAAc,MAAM,EAAEA,EAAU,aAAa,OAAO,QAAQ,EAAEA,EAAU,aAAa,UAAUD,EAAS,MAAM,EAAE,SAAS,KAAK,YAAYC,CAAS,GAAI,EAAE,CAAC,OAAUZ,CAAY,CAAC,EAAQa,GAAmB,IAAI,CAAC,IAAMF,EAASA,GAAiB,OAAUX,CAAY,EAAE,SAAS,MAAMW,EAAS,OAAO,GAAMA,EAAS,UAAU,SAAS,cAAc,uBAAuB,GAAG,aAAa,UAAUA,EAAS,QAAQ,CAAG,EAAE,CAAC,OAAUX,CAAY,CAAC,EAAE,GAAK,CAACc,EAAYC,CAAmB,EAAEC,GAA8BR,EAAQS,GAAY,EAAK,EAAQC,EAAe,OAAe,CAAC,sBAAAC,EAAsB,MAAAC,CAAK,EAAEC,GAAyB,MAAS,EAAQC,EAAY,CAAC,CAAC,QAAAC,EAAQ,SAAAC,CAAQ,IAAIL,EAAsB,SAASM,KAAO,CAACF,EAAQ,OAAO,CAAE,CAAC,EAA6NG,EAAkBC,EAAG9E,GAAkB,GAAtO,CAAayD,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,EAAS,CAAuE,EAAQsB,EAAUC,GAAkB,WAAW,EAAQC,GAAWlC,EAAO,IAAI,EAAQmC,GAAWF,GAAkB,WAAW,EAAQG,EAAWpC,EAAO,IAAI,EAAQqC,GAAWJ,GAAkB,WAAW,EAAQK,GAAOC,GAAU,EAAQC,EAAWxC,EAAO,IAAI,EAAQyC,GAAWR,GAAkB,WAAW,EAAQS,GAAW1C,EAAO,IAAI,EAAQ2C,GAAWV,GAAkB,WAAW,EAAQW,EAAW5C,EAAO,IAAI,EAAE,OAAA6C,GAAiB,CAAC,CAAC,EAAsBxD,EAAKyD,GAA0B,SAAS,CAAC,MAAM,CAAC,iBAAiB,YAAY,kBAAA5F,EAAiB,EAAE,SAAsB6F,EAAMC,EAAY,CAAC,GAAGrC,GAAUT,EAAgB,SAAS,CAAcb,EAAKH,GAAU,CAAC,MAAM,iCAAiC,CAAC,EAAe6D,EAAME,EAAO,IAAI,CAAC,GAAGpC,EAAU,UAAUkB,EAAGD,EAAkB,gBAAgBpB,CAAS,EAAE,IAAIT,EAAW,MAAM,CAAC,GAAGQ,CAAK,EAAE,SAAS,CAAcpB,EAAK6D,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAQ,EAAE,EAAE,SAAsB7D,EAAK8D,EAAU,CAAC,UAAU,2BAA2B,aAAa,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB9D,EAAK+D,EAAkB,CAAC,WAAWlC,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAKgE,GAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehE,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,gBAAgB,SAAsB0D,EAAM,MAAM,CAAC,UAAU,iBAAiB,cAAc,GAAK,SAAS,CAAc1D,EAAK+D,EAAkB,CAAC,WAAWlC,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ5D,GAAW,QAAQC,GAAW,MAAM,CAAC,qBAAqB,IAAI,CAAC,CAAC,EAAE,SAAsBwF,EAAMO,GAAmC,CAAC,QAAQlG,GAAU,UAAU,gBAAgB,wBAAwB,SAAS,mBAAmB,aAAa,QAAQC,GAAW,UAAU,GAAK,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAcgC,EAAKkE,EAAS,CAAC,sBAAsB,GAAK,SAAsBlE,EAAWmE,EAAS,CAAC,SAAsBnE,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,sEAAsE,EAAE,SAAS,2BAA2B,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK+D,EAAkB,CAAC,WAAWlC,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWmE,EAAS,CAAC,SAAsBnE,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,qEAAqE,EAAE,SAAS,oCAAoC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWmE,EAAS,CAAC,SAAsBnE,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,qEAAqE,EAAE,SAAS,oCAAoC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKkE,EAAS,CAAC,sBAAsB,GAAK,SAAsBlE,EAAWmE,EAAS,CAAC,SAAsBnE,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,oCAAoC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK+D,EAAkB,CAAC,WAAWlC,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWmE,EAAS,CAAC,SAAsBnE,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,iBAAiB,EAAE,SAAS,4LAA4L,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKkE,EAAS,CAAC,sBAAsB,GAAK,SAAsBlE,EAAWmE,EAAS,CAAC,SAAsBnE,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,iBAAiB,EAAE,SAAS,4LAA4L,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe0D,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAc1D,EAAK+D,EAAkB,CAAC,WAAWlC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,QAAQ,GAAGX,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,IAAI,EAAE,EAAE,MAAM,CAAC,CAAC,EAAE,SAAsBlB,EAAK6D,EAA0B,CAAC,OAAO,GAAG,SAAsB7D,EAAK8D,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsB9D,EAAK+D,EAAkB,CAAC,WAAWlC,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAKoE,GAAO,CAAC,UAAU,kBAAkB,OAAO,OAAO,UAAU,mBAAmB,GAAG,YAAY,SAAS,YAAY,UAAU,GAAK,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAepE,EAAK+D,EAAkB,CAAC,WAAWlC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,QAAQ,GAAGX,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,IAAI,EAAE,EAAE,MAAM,CAAC,CAAC,EAAE,SAAsBlB,EAAK6D,EAA0B,CAAC,OAAO,GAAG,SAAsB7D,EAAK8D,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsB9D,EAAK+D,EAAkB,CAAC,WAAWlC,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAKoE,GAAO,CAAC,UAAU,SAAS,OAAO,OAAO,UAAU,eAAe,GAAG,YAAY,SAAS,YAAY,UAAU,GAAK,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeV,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAc1D,EAAK6D,EAA0B,CAAC,SAAsB7D,EAAK8D,EAAU,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB9D,EAAK+D,EAAkB,CAAC,WAAWlC,EAAY,UAAU,CAAC,UAAU,CAAC,YAAY,CAAC,UAAU,EAAE,YAAY,GAAK,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,CAAC,CAAC,EAAE,SAAsB7B,EAAKqE,EAAO,CAAC,UAAU,SAAS,UAAU,MAAM,YAAY,CAAC,UAAU,EAAE,YAAY,GAAK,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,GAAG,OAAO,OAAO,YAAY,EAAE,GAAG,YAAY,SAAS,YAAY,QAAQ,GAAG,cAAc,GAAG,YAAY,GAAG,eAAe,GAAM,aAAa,GAAG,WAAW,GAAG,cAAc,CAAC,WAAW,GAAK,UAAU,EAAI,EAAE,MAAM,CAAcrE,EAAKsE,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,MAAM,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,IAAI,oEAAoE,EAAE,UAAU,gBAAgB,mBAAmB,oDAAoD,CAAC,EAAetE,EAAKsE,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,mBAAmB,uBAAuB,CAAC,EAAetE,EAAKsE,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,MAAM,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,mBAAmB,yCAAyC,CAAC,EAAetE,EAAKsE,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,EAAE,UAAU,iBAAiB,mBAAmB,uBAAuB,CAAC,EAAetE,EAAKsE,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,mBAAmB,uBAAuB,CAAC,EAAetE,EAAKsE,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,MAAM,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,MAAM,aAAa,IAAI,uFAAuF,OAAO,yEAAyE,EAAE,UAAU,gBAAgB,mBAAmB,6CAA6C,CAAC,EAAetE,EAAKsE,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,MAAM,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,MAAM,aAAa,IAAI,wFAAwF,OAAO,0EAA0E,EAAE,UAAU,gBAAgB,mBAAmB,mCAAmC,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAetE,EAAK6D,EAA0B,CAAC,SAAsB7D,EAAK8D,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB9D,EAAKqE,EAAO,CAAC,UAAU,SAAS,UAAU,MAAM,YAAY,CAAC,UAAU,EAAE,YAAY,GAAK,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,GAAG,OAAO,OAAO,YAAY,EAAE,GAAG,YAAY,SAAS,YAAY,QAAQ,GAAG,cAAc,GAAG,YAAY,GAAG,eAAe,GAAM,aAAa,GAAG,WAAW,GAAG,cAAc,CAAC,WAAW,GAAK,UAAU,EAAI,EAAE,MAAM,CAAcrE,EAAKsE,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,IAAI,mEAAmE,EAAE,UAAU,gBAAgB,mBAAmB,mCAAmC,CAAC,EAAetE,EAAKsE,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,MAAM,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,mBAAmB,wBAAwB,CAAC,EAAetE,EAAKsE,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,MAAM,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,MAAM,aAAa,IAAI,yFAAyF,OAAO,2EAA2E,EAAE,UAAU,gBAAgB,mBAAmB,8BAA8B,CAAC,EAAetE,EAAKsE,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,MAAM,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,MAAM,aAAa,IAAI,yFAAyF,OAAO,2EAA2E,EAAE,UAAU,iBAAiB,mBAAmB,uCAAuC,CAAC,EAAetE,EAAKsE,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,MAAM,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,MAAM,aAAa,IAAI,yFAAyF,OAAO,2EAA2E,EAAE,UAAU,iBAAiB,mBAAmB,wCAAwC,CAAC,EAAetE,EAAKsE,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,MAAM,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,mBAAmB,cAAc,CAAC,EAAetE,EAAKsE,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,MAAM,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,MAAM,aAAa,IAAI,yFAAyF,OAAO,2EAA2E,EAAE,UAAU,iBAAiB,mBAAmB,cAAc,CAAC,EAAetE,EAAKsE,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,MAAM,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,MAAM,aAAa,IAAI,yFAAyF,OAAO,2EAA2E,EAAE,UAAU,iBAAiB,mBAAmB,8BAA8B,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeZ,EAAMO,GAAmC,CAAC,QAAQ7F,GAAW,UAAU,iBAAiB,wBAAwB,UAAU,mBAAmB,eAAe,GAAGuE,EAAU,QAAQtE,GAAW,UAAU,GAAK,IAAIwE,GAAK,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAca,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,SAAS,CAAc1D,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,SAAsBA,EAAK+D,EAAkB,CAAC,WAAWlC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,MAAM,YAAYX,GAAmB,OAAO,oCAAoC,IAAI,wEAAwE,OAAO,wWAAwW,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQqD,GAA2BrD,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,OAAOA,GAAmB,OAAO,uBAAuB,IAAI,wEAAwE,OAAO,wWAAwW,CAAC,CAAC,EAAE,SAAsBlB,EAAKsE,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,MAAM,gBAAgBpD,GAAmB,OAAO,8CAA8C,IAAI,wEAAwE,OAAO,wWAAwW,EAAE,UAAU,iBAAiB,mBAAmB,YAAY,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelB,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,SAAsB0D,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,SAAS,CAAc1D,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,SAAsBA,EAAK+D,EAAkB,CAAC,WAAWlC,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWmE,EAAS,CAAC,SAAsBnE,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,8DAA8D,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKkE,EAAS,CAAC,sBAAsB,GAAK,SAAsBlE,EAAWmE,EAAS,CAAC,SAAsBnE,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,8DAA8D,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,yDAAoD,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe0D,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,qBAAqB,SAAS,CAAc1D,EAAKkE,EAAS,CAAC,sBAAsB,GAAK,SAAsBlE,EAAWmE,EAAS,CAAC,SAAsBnE,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,iJAAiJ,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,yGAAyG,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKkE,EAAS,CAAC,sBAAsB,GAAK,SAAsBlE,EAAWmE,EAAS,CAAC,SAAsBnE,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,gIAAgI,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,mGAAmG,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe0D,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAc1D,EAAK6D,EAA0B,CAAC,SAAsB7D,EAAK8D,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsB9D,EAAKwE,GAAM,CAAC,UAAU,gBAAgB,UAAU,0BAA0B,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,wBAAwB,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAexE,EAAK6D,EAA0B,CAAC,SAAsB7D,EAAK8D,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsB9D,EAAKwE,GAAM,CAAC,UAAU,WAAW,UAAU,WAAW,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,0BAA0B,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAed,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAc1D,EAAK6D,EAA0B,CAAC,SAAsB7D,EAAK8D,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsB9D,EAAKwE,GAAM,CAAC,UAAU,SAAS,UAAU,WAAW,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,wBAAwB,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAexE,EAAK6D,EAA0B,CAAC,SAAsB7D,EAAK8D,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsB9D,EAAKwE,GAAM,CAAC,UAAU,OAAO,UAAU,0BAA0B,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,mBAAmB,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAed,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,cAAc,SAAS,CAAc1D,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,SAAsBA,EAAK+D,EAAkB,CAAC,WAAWlC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,KAAK,YAAY,IAAI,WAAW,KAAK,MAAM,QAAQX,GAAmB,OAAO,4BAA4B,IAAI,uEAAuE,OAAO,sQAAsQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,KAAK,QAAQqD,GAA2BrD,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,MAAM,EAAE,IAAI,EAAE,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,KAAK,MAAM,OAAOA,GAAmB,OAAO,uBAAuB,IAAI,uEAAuE,OAAO,sQAAsQ,CAAC,CAAC,EAAE,SAAsBlB,EAAKsE,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,KAAK,YAAY,IAAI,WAAW,KAAK,MAAM,iBAAiBpD,GAAmB,OAAO,wDAAwD,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,UAAU,iBAAiB,mBAAmB,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelB,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,eAAe,SAAsBA,EAAK+D,EAAkB,CAAC,WAAWlC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,KAAK,YAAY,IAAI,WAAW,KAAK,MAAM,QAAQX,GAAmB,OAAO,4BAA4B,IAAI,uEAAuE,OAAO,sQAAsQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,KAAK,QAAQqD,GAA2BrD,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,MAAM,EAAE,IAAI,EAAE,IAAI,CAAC,EAAE,YAAY,IAAI,WAAW,KAAK,MAAM,OAAOA,GAAmB,OAAO,uBAAuB,IAAI,uEAAuE,OAAO,sQAAsQ,CAAC,CAAC,EAAE,SAAsBlB,EAAKsE,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,KAAK,YAAY,IAAI,WAAW,KAAK,MAAM,iBAAiBpD,GAAmB,OAAO,wDAAwD,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,UAAU,gBAAgB,mBAAmB,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewC,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,iBAAiB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAc1D,EAAK+D,EAAkB,CAAC,WAAWlC,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWmE,EAAS,CAAC,SAAsBnE,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,0BAA0B,OAAO,sBAAsB,mEAAmE,EAAE,SAAS,8BAA8B,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKkE,EAAS,CAAC,sBAAsB,GAAK,SAAsBlE,EAAWmE,EAAS,CAAC,SAAsBnE,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,0BAA0B,OAAO,sBAAsB,mEAAmE,EAAE,SAAS,8BAA8B,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,cAAc,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKkE,EAAS,CAAC,sBAAsB,GAAK,SAAsBlE,EAAWmE,EAAS,CAAC,SAAsBnE,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,4IAA4I,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK6D,EAA0B,CAAC,SAAsB7D,EAAK8D,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB9D,EAAKyE,GAAM,CAAC,OAAO,OAAO,KAAK;AAAA,8FAAqM,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,KAAK,OAAO,IAAI,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAezE,EAAK+D,EAAkB,CAAC,WAAWlC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,IAAI,WAAW,KAAK,UAAU,OAAO,UAAU,SAAS,MAAMX,GAAmB,OAAO,QAAQ,IAAI,sEAAsE,OAAO,mQAAmQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQqD,GAA2BrD,GAAmB,GAAG,GAAG,EAAE,MAAM,EAAE,YAAY,KAAK,WAAW,IAAI,MAAMA,GAAmB,OAAO,QAAQ,IAAI,uEAAuE,OAAO,wKAAwK,CAAC,CAAC,EAAE,SAAsBwC,EAAMY,EAAM,CAAC,GAAG,SAAS,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,IAAI,WAAW,KAAK,MAAMpD,GAAmB,OAAO,QAAQ,IAAI,sEAAsE,OAAO,mQAAmQ,EAAE,UAAU,gBAAgB,mBAAmB,SAAS,SAAS,CAAclB,EAAK+D,EAAkB,CAAC,WAAWlC,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWmE,EAAS,CAAC,SAAsBnE,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,4BAA4B,qBAAqB,sBAAsB,uBAAuB,MAAM,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,oEAAoE,EAAE,SAAsB0D,EAAM,OAAO,CAAC,MAAM,CAAC,qBAAqB,sBAAsB,EAAE,SAAS,CAAC,UAAuB1D,EAAK,KAAK,CAAC,CAAC,EAAE,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,QAAQ,cAAc,aAAa,GAAG,EAAE,UAAU,CAAC,SAAsBA,EAAWmE,EAAS,CAAC,SAAsBnE,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,4BAA4B,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,QAAQ,0BAA0B,QAAQ,sBAAsB,oEAAoE,EAAE,SAAS,kBAAkB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKkE,EAAS,CAAC,sBAAsB,GAAK,SAAsBlE,EAAWmE,EAAS,CAAC,SAAsBnE,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,4BAA4B,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,oEAAoE,EAAE,SAAS,kBAAkB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,oBAAoB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK+D,EAAkB,CAAC,WAAWlC,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWmE,EAAS,CAAC,SAAsBT,EAAM,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,CAAC,gCAA6C1D,EAAK,KAAK,CAAC,CAAC,EAAE,oCAAiDA,EAAK,KAAK,CAAC,CAAC,EAAE,qCAAqC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWmE,EAAS,CAAC,SAAsBT,EAAM,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,CAAC,2BAAwC1D,EAAK,KAAK,CAAC,CAAC,EAAE,0BAAuCA,EAAK,KAAK,CAAC,CAAC,EAAE,kBAA+BA,EAAK,KAAK,CAAC,CAAC,EAAE,gBAA6BA,EAAK,KAAK,CAAC,CAAC,EAAE,wBAAwB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKkE,EAAS,CAAC,sBAAsB,GAAK,SAAsBlE,EAAWmE,EAAS,CAAC,SAAsBnE,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,mGAAmG,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK+D,EAAkB,CAAC,WAAWlC,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWmE,EAAS,CAAC,SAAsBT,EAAM,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,CAAC,2BAAwC1D,EAAK,KAAK,CAAC,CAAC,EAAE,iCAA8CA,EAAK,KAAK,CAAC,CAAC,EAAE,oBAAoB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWmE,EAAS,CAAC,SAAsBnE,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,EAAE,SAAS,0EAA0E,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKkE,EAAS,CAAC,sBAAsB,GAAK,SAAsBlE,EAAWmE,EAAS,CAAC,SAAsBnE,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,0EAA0E,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAK0E,GAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB1E,EAAK+D,EAAkB,CAAC,WAAWlC,EAAY,UAAU,CAAC,UAAU,CAAC,kBAAkBrD,EAAkB,CAAC,EAAE,SAAsBwB,EAAK4D,EAAO,EAAE,CAAC,UAAU,+BAA+B,mBAAmB,SAAS,WAAWrF,GAAW,SAAsByB,EAAKkE,EAAS,CAAC,sBAAsB,GAAK,SAAsBlE,EAAWmE,EAAS,CAAC,SAAsBnE,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,oBAAoB,EAAE,SAAS,mBAAmB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,cAAc,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKV,GAAQ,CAAC,SAASgD,GAAsBtC,EAAK2E,GAAU,CAAC,SAAsB3E,EAAK+D,EAAkB,CAAC,WAAWlC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQ0C,GAA2BrD,GAAmB,GAAG,GAAG,EAAE,MAAM,EAAE,YAAY,IAAI,WAAW,IAAI,MAAMA,GAAmB,OAAO,QAAQ,IAAI,oEAAoE,OAAO,6PAA6P,CAAC,CAAC,EAAE,SAAsBwC,EAAMY,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,MAAMpD,GAAmB,OAAO,QAAQ,IAAI,oEAAoE,OAAO,6PAA6P,EAAE,UAAU,gBAAgB,GAAG4B,GAAW,MAAMT,EAAY,CAAC,QAAAC,CAAO,CAAC,EAAE,IAAIS,EAAK,SAAS,CAAcW,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcA,EAAMkB,GAAgB,CAAC,kBAAkB,CAAC,WAAW9G,EAAW,EAAE,sBAAsB,GAAK,gBAAgBa,GAAW,eAAeC,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAcoB,EAAKkE,EAAS,CAAC,sBAAsB,GAAK,SAAsBlE,EAAWmE,EAAS,CAAC,SAAsBnE,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKkE,EAAS,CAAC,sBAAsB,GAAK,SAAsBR,EAAYS,EAAS,CAAC,SAAS,CAAcnE,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,gPAAgP,CAAC,EAAeA,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,gKAAgK,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK+D,EAAkB,CAAC,WAAWlC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,mBAAmBX,GAAmB,OAAO,kDAAkD,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,EAAE,EAAE,KAAK,CAAC,EAAE,SAAsBlB,EAAK6D,EAA0B,CAAC,OAAO,GAAG,SAAsB7D,EAAK8D,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsB9D,EAAK+D,EAAkB,CAAC,WAAWlC,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,MAAM,CAAC,SAAS,OAAO,MAAM,MAAM,EAAE,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAKoE,GAAO,CAAC,UAAU,eAAe,OAAO,OAAO,UAAU,oBAAoB,GAAG,YAAY,SAAS,YAAY,UAAU,GAAK,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeV,EAAMkB,GAAgB,CAAC,kBAAkB,CAAC,WAAW/F,EAAW,EAAE,sBAAsB,GAAK,gBAAgBF,GAAW,eAAeG,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAckB,EAAK6E,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASC,GAA4B9E,EAAK6D,EAA0B,CAAC,SAAsB7D,EAAK+E,GAAmC,CAAC,QAAQ/F,GAAY,UAAU,0BAA0B,wBAAwB,SAAS,GAAGgE,GAAW,QAAQ/D,GAAY,OAAO,YAAY,UAAU,GAAK,IAAIkE,EAAK,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsBnD,EAAK+D,EAAkB,CAAC,WAAWlC,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUiD,EAAc,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAc,CAAC,EAAE,QAAQ,WAAW,CAAC,EAAE,SAAsB9E,EAAKgF,GAAY,CAAC,UAAU,gBAAgB,UAAUF,EAAc,CAAC,EAAE,UAAU,+NAA+N,UAAU,0BAA0B,OAAO,OAAO,UAAU,GAAK,GAAG,YAAY,UAAU,GAAK,SAAS,YAAY,UAAU,GAAM,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,WAAW,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe9E,EAAK6E,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASI,GAA6BjF,EAAK6D,EAA0B,CAAC,SAAsB7D,EAAK+E,GAAmC,CAAC,QAAQ/F,GAAY,UAAU,0BAA0B,wBAAwB,SAAS,GAAGoE,GAAW,QAAQlE,GAAY,OAAO,YAAY,UAAU,GAAK,IAAImE,GAAK,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsBrD,EAAK+D,EAAkB,CAAC,WAAWlC,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUoD,EAAe,CAAC,EAAE,UAAU,2VAA4U,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,EAAE,QAAQ,WAAW,CAAC,EAAE,SAAsBjF,EAAKgF,GAAY,CAAC,UAAU,mBAAmB,UAAUC,EAAe,CAAC,EAAE,UAAU,qWAAsV,UAAU,4BAA4B,OAAO,OAAO,UAAU,GAAK,GAAG,YAAY,UAAU,GAAK,SAAS,YAAY,UAAU,GAAM,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,WAAW,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAejF,EAAK6E,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASK,GAA6BlF,EAAK6D,EAA0B,CAAC,SAAsB7D,EAAK+E,GAAmC,CAAC,QAAQ/F,GAAY,UAAU,2BAA2B,wBAAwB,UAAU,GAAGsE,GAAW,QAAQrE,GAAY,OAAO,YAAY,UAAU,GAAK,IAAIsE,EAAK,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsBvD,EAAK+D,EAAkB,CAAC,WAAWlC,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUqD,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,EAAE,QAAQ,WAAW,CAAC,EAAE,SAAsBlF,EAAKgF,GAAY,CAAC,UAAU,iBAAiB,UAAUE,EAAe,CAAC,EAAE,UAAU,qRAA2Q,UAAU,uCAAuC,OAAO,OAAO,UAAU,GAAK,GAAG,YAAY,UAAU,GAAK,SAAS,YAAY,UAAU,GAAM,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,QAAQ,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelF,EAAK0E,GAAK,CAAC,KAAK,OAAO,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB1E,EAAKmF,GAAiC,CAAC,QAAQhG,GAAY,UAAU,+BAA+B,wBAAwB,SAAS,QAAQC,GAAY,UAAU,GAAK,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsBY,EAAK6D,EAA0B,CAAC,SAAsB7D,EAAK+E,GAAmC,CAAC,QAAQ5F,GAAY,UAAU,0BAA0B,wBAAwB,SAAS,QAAQD,GAAY,OAAO,YAAY,UAAU,GAAK,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsBc,EAAKoF,GAAgB,CAAC,UAAU,kEAAkE,OAAO,OAAO,UAAU,0BAA0B,GAAG,YAAY,UAAU,wEAAwE,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAepF,EAAKqF,GAAgB,CAAC,SAAS/C,EAAQ,SAAsBtC,EAAK2E,GAAU,CAAC,SAA+BW,GAA0BtF,EAAWmE,EAAS,CAAC,SAAsBnE,EAAK4D,EAAO,IAAI,CAAC,QAAQ,CAAC,QAAQ,EAAE,WAAW,CAAC,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,GAAG,EAAE,IAAI,GAAG,EAAE,KAAK,OAAO,CAAC,EAAE,UAAUlB,EAAGD,EAAkB,gBAAgB,EAAE,wBAAwBK,GAAW,KAAK,CAAC,QAAQ,EAAE,WAAW,CAAC,MAAM,EAAE,SAAS,EAAE,KAAK,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,KAAK,OAAO,CAAC,EAAE,QAAQ,CAAC,QAAQ,CAAC,EAAE,MAAM,IAAIR,EAAQ,KAAK,CAAC,EAAE,WAAW,CAAC,CAAC,EAAEjD,GAAa,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeW,EAAK,SAAS,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,SAAsBA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,SAAsB0D,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAc1D,EAAKkE,EAAS,CAAC,sBAAsB,GAAK,SAAsBlE,EAAWmE,EAAS,CAAC,SAAsBnE,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,uBAAuB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKkE,EAAS,CAAC,sBAAsB,GAAK,SAAsBR,EAAYS,EAAS,CAAC,SAAS,CAAcnE,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,mGAAmG,CAAC,EAAeA,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,6BAA6B,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK+D,EAAkB,CAAC,WAAWlC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,eAAeX,GAAmB,OAAO,2CAA2C,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,KAAK,CAAC,EAAE,SAAsBlB,EAAK6D,EAA0B,CAAC,OAAO,GAAG,SAAsB7D,EAAK8D,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsB9D,EAAK+D,EAAkB,CAAC,WAAWlC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,CAAC,SAAS,OAAO,MAAM,MAAM,CAAC,CAAC,EAAE,SAAsB7B,EAAKoE,GAAO,CAAC,UAAU,eAAe,OAAO,OAAO,UAAU,oBAAoB,GAAG,YAAY,SAAS,YAAY,UAAU,GAAK,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAepE,EAAK+D,EAAkB,CAAC,WAAWlC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,KAAK,YAAY,IAAI,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,OAAOX,GAAmB,OAAO,0BAA0B,IAAI,uEAAuE,OAAO,sQAAsQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,KAAK,QAAQqD,GAA2BrD,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,EAAE,EAAE,KAAK,EAAE,YAAY,IAAI,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,SAAS,IAAI,uEAAuE,OAAO,sQAAsQ,CAAC,CAAC,EAAE,SAAsBlB,EAAKsE,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,KAAK,YAAY,IAAI,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,SAAS,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAetE,EAAK6D,EAA0B,CAAC,SAAsB7D,EAAK8D,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsB9D,EAAKuF,GAAgB,CAAC,UAAU,6EAA6E,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAevF,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,iBAAiB,SAAsB0D,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAc1D,EAAK+D,EAAkB,CAAC,WAAWlC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,MAAM,WAAWX,GAAmB,OAAO,gCAAgC,IAAI,sEAAsE,OAAO,mQAAmQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQqD,GAA2BrD,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,WAAWA,GAAmB,OAAO,gCAAgC,IAAI,sEAAsE,OAAO,mQAAmQ,CAAC,CAAC,EAAE,SAAsBlB,EAAKsE,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,MAAM,WAAWpD,GAAmB,OAAO,yBAAyB,IAAI,sEAAsE,OAAO,mQAAmQ,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,CAAC,CAAC,CAAC,EAAewC,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAc1D,EAAKkE,EAAS,CAAC,sBAAsB,GAAK,SAAsBlE,EAAWmE,EAAS,CAAC,SAAsBnE,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,8BAA8B,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKkE,EAAS,CAAC,sBAAsB,GAAK,SAAsBlE,EAAWmE,EAAS,CAAC,SAAsBnE,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,2LAA2L,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAK0E,GAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB1E,EAAK4D,EAAO,EAAE,CAAC,UAAU,gCAAgC,mBAAmB,SAAS,SAAsB5D,EAAKkE,EAAS,CAAC,sBAAsB,GAAK,SAAsBlE,EAAWmE,EAAS,CAAC,SAAsBnE,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,oBAAoB,EAAE,SAAS,qBAAqB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,cAAc,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe0D,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAc1D,EAAKkE,EAAS,CAAC,sBAAsB,GAAK,SAAsBlE,EAAWmE,EAAS,CAAC,SAAsBnE,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,yBAAyB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKkE,EAAS,CAAC,sBAAsB,GAAK,SAAsBlE,EAAWmE,EAAS,CAAC,SAAsBnE,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,gJAAgJ,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAK0E,GAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB1E,EAAK4D,EAAO,EAAE,CAAC,UAAU,gCAAgC,mBAAmB,SAAS,SAAsB5D,EAAKkE,EAAS,CAAC,sBAAsB,GAAK,SAAsBlE,EAAWmE,EAAS,CAAC,SAAsBnE,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,oBAAoB,EAAE,SAAS,kBAAkB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,cAAc,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK+D,EAAkB,CAAC,WAAWlC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,MAAM,WAAWX,GAAmB,OAAO,gCAAgC,IAAI,uEAAuE,OAAO,sQAAsQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQqD,GAA2BrD,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,MAAM,EAAE,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,WAAWA,GAAmB,OAAO,gCAAgC,IAAI,uEAAuE,OAAO,sQAAsQ,CAAC,CAAC,EAAE,SAAsBlB,EAAKsE,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,MAAM,WAAWpD,GAAmB,OAAO,yBAAyB,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelB,EAAK6D,EAA0B,CAAC,SAAsB7D,EAAK8D,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsB9D,EAAKwF,GAAc,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAexF,EAAK6D,EAA0B,CAAC,SAAsB7D,EAAK8D,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsB9D,EAAK+D,EAAkB,CAAC,WAAWlC,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAKyF,GAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAezF,EAAK,MAAM,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQ0F,GAAI,CAAC,kFAAkF,kFAAkF,wQAAwQ,qKAAqK,oRAAoR,qhBAAqhB,mXAAmX,0PAA0P,6UAA6U,wRAAwR,mOAAmO,2TAA2T,kNAAkN,iNAAiN,kNAAkN,mLAAmL,+QAA+Q,iNAAiN,mLAAmL,iPAAiP,kjBAAkjB,6TAA6T,ifAAif,kOAAkO,6hBAA6hB,uQAAuQ,qSAAqS,qKAAqK,uRAAuR,qMAAqM,6QAA6Q,mYAAmY,0SAA0S,mOAAmO,gSAAgS,keAAke,+PAA+P,2TAA2T,kSAAkS,kPAAkP,wNAAwN,iJAAiJ,0QAA0Q,uSAAuS,sQAAsQ,8PAA8P,iVAAiV,27BAA27B,8NAA8N,wSAAwS,+SAA+S,sUAAsU,0TAA0T,oSAAoS,2YAA2Y,2KAA2K,6HAA6H,2SAA2S,gUAAgU,6QAA6Q,8PAA8P,qQAAqQ,uLAAuL,scAAsc,sTAAsT,iUAAiU,2QAA2Q,qgBAAqgB,sSAAsS,qQAAqQ,sNAAsN,w5BAAw5B,uSAAuS,sQAAsQ,qgBAAqgB,yGAAyG,2GAA2G,q1PAAq1P,GAAeA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,gcAAgc,+5HAA+5H,yhQAAyhQ,EAWp7wGC,GAAgBC,GAAQrF,GAAUmF,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,OAAOA,GAAgB,aAAa,CAAC,OAAO,OAAO,MAAM,IAAI,EAAEG,GAASH,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,IAAI,0GAA0G,OAAO,KAAK,EAAE,CAAC,OAAO,cAAc,OAAO,SAAS,MAAM,SAAS,IAAI,qGAAqG,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGI,GAAY,GAAGC,GAAY,GAAGC,GAAY,GAAGC,GAAW,GAAGC,GAAW,GAAGC,GAAiB,GAAGC,GAAqB,GAAGC,GAAqB,GAAGC,GAAmB,GAAGC,GAAe,GAAGC,EAAoCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,EAChrF,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,yBAA2B,QAAQ,uBAAyB,GAAG,6BAA+B,OAAO,oCAAsC,4JAA0L,sBAAwB,IAAI,qBAAuB,sQAAwT,4BAA8B,OAAO,qBAAuB,OAAO,yBAA2B,OAAO,sBAAwB,QAAQ,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC",
  "names": ["directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "resize", "contentSize", "child", "index", "ref", "ref1", "ref2", "ref3", "ref4", "p", "LayoutGroup", "q", "i", "childIndex", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isInView", "useInView", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "iconKeys", "moduleBaseUrl", "weightOptions", "lowercaseIconKeyPairs", "res", "key", "Icon", "props", "color", "selectByList", "iconSearch", "iconSelection", "onClick", "onMouseDown", "onMouseUp", "onMouseEnter", "onMouseLeave", "weight", "mirrored", "isMounted", "pe", "iconKey", "useIconSelection", "SelectedIcon", "setSelectedIcon", "ye", "House_default", "npm_react_18_2_exports", "importModule", "module", "ue", "emptyState", "RenderTarget", "p", "NullState", "motion", "addPropertyControls", "ControlType", "piece", "defaultEvents", "PhosphorFonts", "getFonts", "Icon", "Phosphor1Controls", "getPropertyControls", "cycleOrder", "variantClassNames", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "getProps", "heading", "height", "id", "name", "subheading", "width", "props", "_ref", "_ref1", "_ref2", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "apqac6aVy", "uGBnf2C4v", "dH9XCYGIU", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "defaultLayoutId", "ae", "LayoutGroup", "motion", "cx", "u", "Icon", "RichText2", "x", "css", "Framerie3BnjY7k", "withCSS", "ie3BnjY7k_default", "addPropertyControls", "Phosphor1Controls", "ControlType", "addFonts", "PhosphorFonts", "TopbarFonts", "getFonts", "lWUcIJP0H_default", "ButtonFonts", "Tnz4seCKc_default", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "TickerFonts", "Ticker", "StatsFonts", "ie3BnjY7k_default", "EmbedFonts", "Embed", "MotionDivWithFX", "withFX", "FeatureCardFonts", "Kym4ifyAB_default", "ContainerWithOptimizedAppearEffect", "Container", "ElementsTooltipFonts", "heY_NFnAI_default", "MotionAWithOptimizedAppearEffect", "SMCPartnerLogosFonts", "Z3RhAsmhx_default", "ApplyAndStartFonts", "j8t0J284E_default", "SMCFooterFonts", "koAn38_au_default", "breakpoints", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "animation2", "animation3", "transition2", "animation4", "animation5", "transition3", "animation6", "transformTemplate1", "_", "t", "animation7", "animation8", "transition4", "animation9", "transition5", "animation10", "animation11", "animation12", "animation13", "animation14", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap3bnx0g", "overlay", "loadMore", "args", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "elementId2", "router", "useRouter", "ref3", "elementId3", "ref4", "elementId4", "ref5", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "PropertyOverrides2", "lWUcIJP0H_default", "MotionDivWithOptimizedAppearEffect", "RichText2", "x", "Tnz4seCKc_default", "Ticker", "Image2", "getLoadingLazyAtYPosition", "ie3BnjY7k_default", "Embed", "Link", "l", "MotionDivWithFX", "ResolveLinks", "resolvedLinks", "ContainerWithOptimizedAppearEffect", "Kym4ifyAB_default", "resolvedLinks1", "resolvedLinks2", "MotionAWithOptimizedAppearEffect", "heY_NFnAI_default", "AnimatePresence", "Ga", "Z3RhAsmhx_default", "j8t0J284E_default", "koAn38_au_default", "css", "FramerAdmNKCxLL", "withCSS", "AdmNKCxLL_default", "addFonts", "TopbarFonts", "ButtonFonts", "TickerFonts", "StatsFonts", "EmbedFonts", "FeatureCardFonts", "ElementsTooltipFonts", "SMCPartnerLogosFonts", "ApplyAndStartFonts", "SMCFooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
