{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/9rhBPUZttCbLCWqJEL42/YouTube.js", "ssg:https://framerusercontent.com/modules/qRicPjsn7lqAFhUpVEJw/wsYYtENjQk0KRlujgBY2/HgKWRU5cM.js", "ssg:https://framerusercontent.com/modules/4YWWzj4Km7yqicjoCm2H/jO5zdHqCH551J62O4W3P/JDIZfHyyT.js", "ssg:https://framerusercontent.com/modules/6EzSknSEitz8b2YIGy4N/QtCgpPCGiFzrZjTOXOg6/iABnuMu3V.js", "ssg:https://framerusercontent.com/modules/V4ZDZpuYpggvmjH0jSsQ/Y4mcuts7HIUrBcFcXEB3/SRKZeeBA_.js", "ssg:https://framerusercontent.com/modules/Oaz72hXVEk9sISYktJU8/W0LUHpSlRwUYOywWB615/U4d4L3keE.js", "ssg:https://framerusercontent.com/modules/7DToYwtXghXAydnOkCDc/BJEQgqUch621CVcHSrR0/ZWcMpDP2w.js", "ssg:https://framerusercontent.com/modules/mrbtNCUnsEwqtvllkUfP/JBHAvJvAD8Nn7tPOmFZX/vF2SIzeSX.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useReducer,useState,useSyncExternalStore}from\"react\";import{ControlType,addPropertyControls}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles,defaultEvents,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var PlayOptions;(function(PlayOptions){PlayOptions[\"Normal\"]=\"Off\";PlayOptions[\"Auto\"]=\"On\";PlayOptions[\"Loop\"]=\"Loop\";})(PlayOptions||(PlayOptions={}));var ThumbnailOptions;(function(ThumbnailOptions){ThumbnailOptions[\"High\"]=\"High Quality\";ThumbnailOptions[\"Medium\"]=\"Medium Quality\";ThumbnailOptions[\"Low\"]=\"Low Quality\";ThumbnailOptions[\"Off\"]=\"Off\";})(ThumbnailOptions||(ThumbnailOptions={}));var ThumbnailFormat;(function(ThumbnailFormat){ThumbnailFormat[\"WebP\"]=\"webp\";ThumbnailFormat[\"JPG\"]=\"jpg\";})(ThumbnailFormat||(ThumbnailFormat={}));let _isBot=null;function isBot(){if(_isBot===null)_isBot=/bot|-Google|Google-|yandex|ia_archiver/iu.test(navigator.userAgent);return _isBot;}const emptySubscribe=()=>()=>{};/**\n * @framerIntrinsicWidth 560\n * @framerIntrinsicHeight 315\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerComponentPresetProps isRed, borderRadius\n */export function Youtube({url,play,shouldMute,thumbnail,isRed,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,title,...props}){const onCanvas=useIsOnCanvas();const isAutoplay=play!==\"Off\";const showThumbnail=onCanvas||thumbnail!==\"Off\"&&!isAutoplay;const[isPreloading,preloadVideo]=useReducer(()=>true,false);const[showVideo,startVideo]=useReducer(()=>true,!showThumbnail);const[isHovered,setHovered]=useState(false);// https://tkdodo.eu/blog/avoiding-hydration-mismatches-with-use-sync-external-store#usesyncexternalstore\nconst iframeIsDefaultVisible=useSyncExternalStore(emptySubscribe,// bots should not have display:none on the iframe\n()=>isBot(),()=>false);const borderRadius=useRadius(props);const hasBorderRadius=borderRadius!==\"0px 0px 0px 0px\"&&borderRadius!==\"0px\";if(url===\"\"){return /*#__PURE__*/_jsx(Instructions,{});}const parsedURL=parseVideoURL(url);if(parsedURL===undefined){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Invalid Youtube URL.\"});}const[videoId,embedURL]=parsedURL;// https://stackoverflow.com/questions/2068344/how-do-i-get-a-youtube-video-thumbnail-from-the-youtube-api\nconst thumbnailURL=getThumbnailURL(videoId,thumbnail,getWebPSupported()?\"webp\":\"jpg\");// https://developers.google.com/youtube/player_parameters\nconst searchParams=embedURL.searchParams;searchParams.set(\"iv_load_policy\",\"3\");searchParams.set(\"rel\",\"0\");searchParams.set(\"modestbranding\",\"1\");searchParams.set(\"playsinline\",\"1\");if(// bots shouldn't autoplay the video but see the iframe in the DOM\n!iframeIsDefaultVisible&&(isAutoplay||// when there is no thumbnail, we don't want to autoplay, unless video is started\nshowThumbnail&&showVideo)){searchParams.set(\"autoplay\",\"1\");}if(isAutoplay&&shouldMute){searchParams.set(\"mute\",\"1\");}if(play===\"Loop\"){searchParams.set(\"loop\",\"1\");searchParams.set(\"playlist\",videoId);}if(!isRed){searchParams.set(\"color\",\"white\");}return /*#__PURE__*/_jsxs(\"article\",{onPointerEnter:()=>setHovered(true),onPointerLeave:()=>setHovered(false),onPointerOver:preloadVideo,onKeyDown:startVideo,onClick:startVideo,style:{...wrapperStyle,borderRadius,transform:// Safari sometimes struggles to render border-radius:\n// - on the canvas when changing from 0 to any other value\n// - or when rendering an iframe\nhasBorderRadius&&(showVideo||onCanvas)?\"translateZ(0.000001px)\":\"unset\",cursor:\"pointer\",overflow:\"hidden\"},role:\"presentation\",children:[isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.youtube.com\"}),isPreloading&&/*#__PURE__*/_jsx(\"link\",{rel:\"preconnect\",href:\"https://www.google.com\"}),/*#__PURE__*/_jsx(\"div\",{style:{...videoStyle,background:showThumbnail?`center / cover url(${thumbnailURL}) no-repeat`:undefined}}),!onCanvas?/*#__PURE__*/_jsx(\"iframe\",{title:title||\"Youtube Video\",style:{...videoStyle,display:showVideo||iframeIsDefaultVisible?undefined:\"none\"},src:embedURL.href,frameBorder:\"0\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",onClick:onClick,onMouseEnter:onMouseEnter,onMouseLeave:onMouseLeave,onMouseDown:onMouseDown,onMouseUp:onMouseUp,loading:\"lazy\"}):null,showVideo||iframeIsDefaultVisible?null:/*#__PURE__*/_jsx(PlayButton,{onClick:startVideo,isHovered:isHovered,isRed:isRed})]});}Youtube.displayName=\"YouTube\";addPropertyControls(Youtube,{url:{type:ControlType.String,title:\"Video\"},play:{type:ControlType.Enum,title:\"Autoplay\",options:Object.values(PlayOptions)},shouldMute:{title:\"Mute\",type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",hidden(props){return props.play===\"Off\";}},thumbnail:{title:\"Thumbnail\",description:\"Showing a thumbnail improves performance.\",type:ControlType.Enum,options:Object.values(ThumbnailOptions),hidden(props){return props.play!==\"Off\";}},isRed:{title:\"Color\",type:ControlType.Boolean,enabledTitle:\"Red\",disabledTitle:\"White\"},...borderRadiusControl,...defaultEvents});const defaultProps={url:\"https://youtu.be/smPos0mJvh8\",play:\"Off\",shouldMute:true,thumbnail:\"Medium Quality\",isRed:true};Youtube.defaultProps=defaultProps;function parseVideoURL(urlString){let url;try{url=new URL(urlString);}catch{const embedURL=getEmbedURL(urlString);return[urlString,embedURL];}if(url.hostname===\"youtube.com\"||url.hostname===\"www.youtube.com\"||url.hostname===\"youtube-nocookie.com\"||url.hostname===\"www.youtube-nocookie.com\"){const pathSegments=url.pathname.slice(1).split(\"/\");// https://www.youtube.com/watch?v=Fop2oskTug8\nif(pathSegments[0]===\"watch\"){const videoId=url.searchParams.get(\"v\");const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}// https://www.youtube.com/embed/Fop2oskTug8\nif(pathSegments[0]===\"embed\"){const videoId=pathSegments[1];return[videoId,url];}}// https://youtu.be/Fop2oskTug8\nif(url.hostname===\"youtu.be\"){const videoId=url.pathname.slice(1);const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}}function getEmbedURL(videoId){return new URL(`https://www.youtube.com/embed/${videoId}`);}function getThumbnailURL(videoId,res,format=\"jpg\"){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst useWebP=format===\"webp\";const pre=useWebP?\"https://i.ytimg.com/vi_webp/\":\"https://i.ytimg.com/vi/\";const ext=useWebP?\"webp\":\"jpg\";switch(res){case\"Low Quality\":return`${pre}${videoId}/hqdefault.${ext}`;case\"Medium Quality\":return`${pre}${videoId}/sddefault.${ext}`;case\"High Quality\":return`${pre}${videoId}/maxresdefault.${ext}`;default:return`${pre}${videoId}/0.${ext}`;}}let _getWebPSupported;// https://stackoverflow.com/a/27232658\nfunction getWebPSupported(){// We're going to default to webp because it's pretty widely supported by now\nif(!window){return true;}if(_getWebPSupported!==undefined){return _getWebPSupported;}const element=document.createElement(\"canvas\");if(element.getContext&&element.getContext(\"2d\")){// was able or not to get WebP representation\nreturn element.toDataURL(\"image/webp\").indexOf(\"data:image/webp\")===0;}else{// very old browser like IE 8, canvas not supported\nreturn false;}}// Helper components\nfunction Instructions(){return /*#__PURE__*/_jsx(\"div\",{style:{...emptyStateStyle,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a Youtube video, add the URL to the properties\\xa0panel.\"})});}function ErrorMessage({message}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsxs(\"div\",{style:centerTextStyle,children:[\"Error: \",message]})});}function PlayButton({onClick,isHovered,isRed}){return /*#__PURE__*/_jsx(\"button\",{onClick:onClick,\"aria-label\":\"Play\",style:buttonStyle,children:/*#__PURE__*/_jsxs(\"svg\",{height:\"100%\",version:\"1.1\",viewBox:\"0 0 68 48\",width:\"100%\",children:[/*#__PURE__*/_jsx(\"path\",{d:\"M66.52,7.74c-0.78-2.93-2.49-5.41-5.42-6.19C55.79,.13,34,0,34,0S12.21,.13,6.9,1.55 C3.97,2.33,2.27,4.81,1.48,7.74C0.06,13.05,0,24,0,24s0.06,10.95,1.48,16.26c0.78,2.93,2.49,5.41,5.42,6.19 C12.21,47.87,34,48,34,48s21.79-0.13,27.1-1.55c2.93-0.78,4.64-3.26,5.42-6.19C67.94,34.95,68,24,68,24S67.94,13.05,66.52,7.74z\",fill:isHovered?isRed?\"#f00\":\"#000\":\"#212121\",fillOpacity:isHovered?isRed?1:.8:.8,style:{transition:\"fill .1s cubic-bezier(0.4, 0, 1, 1), fill-opacity .1s cubic-bezier(0.4, 0, 1, 1)\"}}),/*#__PURE__*/_jsx(\"path\",{d:\"M 45,24 27,14 27,34\",fill:\"#fff\"})]})});}const buttonStyle={position:\"absolute\",top:\"50%\",left:\"50%\",transform:\"translate(-50%, -50%)\",width:68,height:48,padding:0,border:\"none\",background:\"transparent\",cursor:\"pointer\"};const wrapperStyle={position:\"relative\",width:\"100%\",height:\"100%\"};const centerTextStyle={textAlign:\"center\",minWidth:140};const videoStyle={position:\"absolute\",top:0,left:0,height:\"100%\",width:\"100%\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Youtube\":{\"type\":\"reactComponent\",\"name\":\"Youtube\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerIntrinsicWidth\":\"560\",\"framerIntrinsicHeight\":\"315\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"GF;Inter-600\"]);export const fonts=[{family:\"Inter\",moduleAsset:{localModuleIdentifier:\"local-module:css/HgKWRU5cM:default\",url:\"https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuGKYMZhrib2Bg-4.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuGKYMZhrib2Bg-4.ttf\",weight:\"600\"}];export const css=['.framer-6hRrT .framer-styles-preset-1wjjzog:not(.rich-text-wrapper), .framer-6hRrT .framer-styles-preset-1wjjzog.rich-text-wrapper p, .framer-6hRrT .framer-styles-preset-1wjjzog.rich-text-wrapper [data-preset-tag=\"p\"] { --framer-font-family: \"Inter\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-weight: 600; --framer-letter-spacing: 0px; --framer-line-height: 1.5em; --framer-paragraph-spacing: 0px; --framer-text-alignment: left; --framer-text-color: #666666; --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-6hRrT\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (0885f34)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useActiveVariantCallback,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/qRicPjsn7lqAFhUpVEJw/wsYYtENjQk0KRlujgBY2/HgKWRU5cM.js\";const cycleOrder=[\"N61FsPvBt\",\"JZTi9zOUa\"];const variantClassNames={JZTi9zOUa:\"framer-v-2lyczf\",N61FsPvBt:\"framer-v-1d51j9y\"};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 humanReadableVariantMap={Closed:\"N61FsPvBt\",Open:\"JZTi9zOUa\"};const transitions={default:{damping:40,delay:0,duration:0,ease:[.44,0,.56,1],mass:1,stiffness:400,type:\"spring\"}};const Component=/*#__PURE__*/ React.forwardRef(function({id,style,className,width,height,layoutId,variant:outerVariant=\"N61FsPvBt\",question:W88zB8mIG=\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",answer:T8rQFvSBR=\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",...restProps},ref){const outerVariantId=humanReadableVariantMap[outerVariant];const variant=outerVariantId||outerVariant;const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"N61FsPvBt\",transitions,variant,variantClassNames});const layoutDependency=variants.join(\"-\")+restProps.layoutDependency;const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap2wrxd7=activeVariantCallback(async(...args)=>{setVariant(\"JZTi9zOUa\");});const onTapzc6ei0=activeVariantCallback(async(...args)=>{setVariant(\"N61FsPvBt\");});const isDisplayed=()=>{if(baseVariant===\"JZTi9zOUa\")return true;return false;};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-VVL85\",sharedStyle.className,classNames),style:{display:\"contents\"},children:/*#__PURE__*/ _jsxs(motion.div,{...restProps,className:cx(\"framer-1d51j9y\",className),\"data-framer-name\":\"Closed\",layoutDependency:layoutDependency,layoutId:\"N61FsPvBt\",ref:ref,style:{...style},transition:transition,...addPropertyOverrides({JZTi9zOUa:{\"data-framer-name\":\"Open\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/ _jsxs(motion.div,{className:\"framer-kc1y8h\",\"data-framer-name\":\"Question\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"bQOn5duVh\",onTap:onTap2wrxd7,transition:transition,...addPropertyOverrides({JZTi9zOUa:{onTap:onTapzc6ei0}},baseVariant,gestureVariant),children:[/*#__PURE__*/ _jsxs(motion.div,{className:\"framer-1k6lcpt\",\"data-framer-name\":\"Plus\",layoutDependency:layoutDependency,layoutId:\"v4VcYOUIZ\",style:{opacity:.3,rotate:0},transition:transition,variants:{JZTi9zOUa:{rotate:45}},children:[/*#__PURE__*/ _jsx(motion.div,{className:\"framer-1cniqsp\",layoutDependency:layoutDependency,layoutId:\"O9no9JEmD\",style:{backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},transition:transition}),/*#__PURE__*/ _jsx(motion.div,{className:\"framer-5jljo8\",layoutDependency:layoutDependency,layoutId:\"bQOcxcL7T\",style:{backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},transition:transition})]}),/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.p,{className:\"framer-styles-preset-1wjjzog\",\"data-styles-preset\":\"HgKWRU5cM\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"What is Framer?\"})}),className:\"framer-q7ceo4\",layoutDependency:layoutDependency,layoutId:\"c3uDyFyT2\",style:{\"--extracted-r6o4lv\":\"rgb(51, 51, 51)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:W88zB8mIG,transition:transition,verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/ _jsx(motion.div,{className:\"framer-1xmf1aa\",\"data-framer-name\":\"Answer\",layoutDependency:layoutDependency,layoutId:\"QSIj1YYQm\",style:{opacity:0},transition:transition,variants:{JZTi9zOUa:{opacity:1}},children:/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.p,{className:\"framer-styles-preset-1wjjzog\",\"data-styles-preset\":\"HgKWRU5cM\",children:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\"})}),className:\"framer-1yk021p\",layoutDependency:layoutDependency,layoutId:\"YY93wzcf5\",style:{\"--framer-paragraph-spacing\":\"0px\",opacity:.6},text:T8rQFvSBR,transition:transition,variants:{JZTi9zOUa:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true})})]})})});});const css=['.framer-VVL85 [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-VVL85 * { box-sizing: border-box; }\",\".framer-VVL85 .framer-xy52j3 { display: block; }\",\".framer-VVL85 .framer-1d51j9y { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 400px; }\",\".framer-VVL85 .framer-kc1y8h { -webkit-user-select: none; align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px 0px 20px 40px; position: relative; user-select: none; width: 100%; }\",\".framer-VVL85 .framer-1k6lcpt { flex: none; height: 16px; left: 0px; overflow: hidden; position: absolute; top: 25px; width: 16px; z-index: 1; }\",\".framer-VVL85 .framer-1cniqsp { flex: none; height: 2px; left: calc(50.00000000000002% - 16px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 2px / 2); width: 16px; }\",\".framer-VVL85 .framer-5jljo8 { flex: none; height: 16px; left: calc(50.00000000000002% - 2px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 16px / 2); width: 2px; }\",\".framer-VVL85 .framer-q7ceo4 { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-VVL85 .framer-1xmf1aa { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 20px 20px 40px; position: relative; width: 100%; }\",\".framer-VVL85 .framer-1yk021p { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; 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-VVL85 .framer-1d51j9y, .framer-VVL85 .framer-kc1y8h, .framer-VVL85 .framer-1xmf1aa { gap: 0px; } .framer-VVL85 .framer-1d51j9y > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-VVL85 .framer-1d51j9y > :first-child, .framer-VVL85 .framer-1xmf1aa > :first-child { margin-top: 0px; } .framer-VVL85 .framer-1d51j9y > :last-child, .framer-VVL85 .framer-1xmf1aa > :last-child { margin-bottom: 0px; } .framer-VVL85 .framer-kc1y8h > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-VVL85 .framer-kc1y8h > :first-child { margin-left: 0px; } .framer-VVL85 .framer-kc1y8h > :last-child { margin-right: 0px; } .framer-VVL85 .framer-1xmf1aa > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 88\n * @framerIntrinsicWidth 400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"JZTi9zOUa\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"W88zB8mIG\":\"question\",\"T8rQFvSBR\":\"answer\"}\n */ const FramerJDIZfHyyT=withCSS(Component,css,\"framer-VVL85\");export default FramerJDIZfHyyT;FramerJDIZfHyyT.displayName=\"Row\";FramerJDIZfHyyT.defaultProps={height:88,width:400};addPropertyControls(FramerJDIZfHyyT,{variant:{options:[\"N61FsPvBt\",\"JZTi9zOUa\"],optionTitles:[\"Closed\",\"Open\"],title:\"Variant\",type:ControlType.Enum},W88zB8mIG:{defaultValue:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",displayTextArea:true,title:\"Question\",type:ControlType.String},T8rQFvSBR:{defaultValue:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\",displayTextArea:true,title:\"Answer\",type:ControlType.String}});addFonts(FramerJDIZfHyyT,[...sharedStyle.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerJDIZfHyyT\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"88\",\"framerIntrinsicWidth\":\"400\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"JZTi9zOUa\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"W88zB8mIG\\\":\\\"question\\\",\\\"T8rQFvSBR\\\":\\\"answer\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./JDIZfHyyT.map", "// Generated by Framer (838580a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Row from\"https://framerusercontent.com/modules/4YWWzj4Km7yqicjoCm2H/jO5zdHqCH551J62O4W3P/JDIZfHyyT.js\";const RowFonts=getFonts(Row);const cycleOrder=[\"nwJqAAl_M\"];const serializationHash=\"framer-yBvON\";const variantClassNames={nwJqAAl_M:\"framer-v-1inxbp6\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:40,delay:0,mass:1,stiffness:400,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 Variants=motion(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"nwJqAAl_M\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1inxbp6\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"nwJqAAl_M\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-40c03004-286a-43c1-b36f-58b60663152c, rgb(242, 242, 242))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1k95r8n-container\",layoutDependency:layoutDependency,layoutId:\"F_FP3A1wJ-container\",children:/*#__PURE__*/_jsx(Row,{answer:\"Whether you're a beginner or ready to dive into advanced topics (Intermediate & Advanced), our program offers sections tailored to your skill level session wise. Learn essential concepts, explore in-demand topics/skills, and gain practical experience \u2013 all in one program!\",height:\"100%\",id:\"F_FP3A1wJ\",layoutId:\"F_FP3A1wJ\",question:\"Is this course for Beginner, Intermediate, and Advanced level?\",style:{width:\"100%\"},variant:\"N61FsPvBt\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-11ck0r7-container\",layoutDependency:layoutDependency,layoutId:\"ovjdu03kJ-container\",children:/*#__PURE__*/_jsx(Row,{answer:\"Our Pre-graduation Program is designed to be completed in just 3 months, less than a semester, allowing you to gain valuable skills in a focused and accelerated timeframe helping you to kickstart your career early!\",height:\"100%\",id:\"ovjdu03kJ\",layoutId:\"ovjdu03kJ\",question:\"What is the duration of this Program?\",style:{width:\"100%\"},variant:\"N61FsPvBt\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1blmpss-container\",layoutDependency:layoutDependency,layoutId:\"iK0QU_oGa-container\",children:/*#__PURE__*/_jsx(Row,{answer:\"We understand that scheduling batch reasons may arise. While we can't guarantee batch transfers, we encourage you to reach out to our support team at support@pregrad.in. We'll do our best to accommodate your request based on availability in other batches and ensure a smooth learning experience.\",height:\"100%\",id:\"iK0QU_oGa\",layoutId:\"iK0QU_oGa\",question:\"Is it possible to shift my batch?\",style:{width:\"100%\"},variant:\"N61FsPvBt\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-40kl9-container\",layoutDependency:layoutDependency,layoutId:\"A0mZ_UNng-container\",children:/*#__PURE__*/_jsx(Row,{answer:\"Framer is a web builder for creative pros. Be sure to check out framer.com to learn more.\\n\",height:\"100%\",id:\"A0mZ_UNng\",layoutId:\"A0mZ_UNng\",question:\"Is this course for Beginner, Intermediate, and Advanced level?\",style:{width:\"100%\"},variant:\"N61FsPvBt\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-143w5nl\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"Gmi9p8Vtn\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-119mcbl-container\",layoutDependency:layoutDependency,layoutId:\"GtlBpcdNy-container\",children:/*#__PURE__*/_jsx(Row,{answer:\"Classes are held every Friday, Saturday, and Sunday once your specific batch begins. The sessions take place in the evenings to accommodate diverse schedules. We'll provide you with the exact class timings after you join your designated batch.\",height:\"100%\",id:\"GtlBpcdNy\",layoutId:\"GtlBpcdNy\",question:\"What is the class schedule for the Program?\",style:{width:\"100%\"},variant:\"N61FsPvBt\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1aocn7g\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"KVqH8gMQg\",style:{backgroundColor:\"rgba(0, 0, 0, 0.05)\"}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-csp60-container\",layoutDependency:layoutDependency,layoutId:\"GfnGZDlHW-container\",children:/*#__PURE__*/_jsx(Row,{answer:\"You'll receive recordings of all live sessions. This allows you to review the material at your own pace, reinforce your learning, and access valuable resources throughout your coding journey. We provide lifetime access to these recordings, ensuring you can refer back to them whenever needed.\",height:\"100%\",id:\"GfnGZDlHW\",layoutId:\"GfnGZDlHW\",question:\"Will I be provided with recordings of classes and how long will we have access to it?\",style:{width:\"100%\"},variant:\"N61FsPvBt\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pox18q-container\",layoutDependency:layoutDependency,layoutId:\"WVa0i43Wb-container\",children:/*#__PURE__*/_jsx(Row,{answer:'\"Your mentor acts as your guide throughout the program. They\\'ll:\\n\\n- Help you grasp complex concepts through personalised guidance and support.\\n- Review your code and provide constructive feedback to help you improve.\\n- Answer your questions and address any challenges you encounter.\\n- Offer career advice and help you connect with potential opportunities.\"',height:\"100%\",id:\"WVa0i43Wb\",layoutId:\"WVa0i43Wb\",question:\"What is the role of the mentor?\",style:{width:\"100%\"},variant:\"N61FsPvBt\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-bf0xdf-container\",layoutDependency:layoutDependency,layoutId:\"jaU0XcDwW-container\",children:/*#__PURE__*/_jsx(Row,{answer:\"Our mentors are industry professionals with extensive experience & expertise in their domain. They come from diverse backgrounds, including software development, data science, artificial intelligence and web development.\",height:\"100%\",id:\"jaU0XcDwW\",layoutId:\"jaU0XcDwW\",question:\"What are the profiles of the mentors?\",style:{width:\"100%\"},variant:\"N61FsPvBt\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-18kfv0t-container\",layoutDependency:layoutDependency,layoutId:\"qwsyxqh4U-container\",children:/*#__PURE__*/_jsx(Row,{answer:\"Our Batch starts in the first week of every month. This allows for flexibility and lets you join the program at a time that best suits your schedule.\",height:\"100%\",id:\"qwsyxqh4U\",layoutId:\"qwsyxqh4U\",question:\"How often does the new Batch start?\",style:{width:\"100%\"},variant:\"N61FsPvBt\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-11fhw5w-container\",layoutDependency:layoutDependency,layoutId:\"mBkUD4hyG-container\",children:/*#__PURE__*/_jsx(Row,{answer:\"We provide assured internship opportunities, and companies offer internship opportunities after Pre-graduation Program completion. We'll connect you with relevant internship postings and guide you through the application process.\",height:\"100%\",id:\"mBkUD4hyG\",layoutId:\"mBkUD4hyG\",question:\"When will we be getting internship opportunities?\",style:{width:\"100%\"},variant:\"N61FsPvBt\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-47qb2b-container\",layoutDependency:layoutDependency,layoutId:\"UuwsrZ87q-container\",children:/*#__PURE__*/_jsx(Row,{answer:\"We have a strong network of industry partners and are committed to connecting our graduates with exciting career opportunities. Our program equips you with in-demand skills and provides the support you need to excel in the job market.\",height:\"100%\",id:\"UuwsrZ87q\",layoutId:\"UuwsrZ87q\",question:\"How is placement at Pregrad?\",style:{width:\"100%\"},variant:\"N61FsPvBt\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-vu7002-container\",layoutDependency:layoutDependency,layoutId:\"dQ5180OAQ-container\",children:/*#__PURE__*/_jsx(Row,{answer:\"Success is our priority! We focus on providing high-quality education and career support to maximise your chances of success. Our alumni have landed jobs in various industries and received positive feedback about the program's impact on their skill development and career goals.\",height:\"100%\",id:\"dQ5180OAQ\",layoutId:\"dQ5180OAQ\",question:\"What is the success rate of the Pregrad's Pre-graduation Program?\",style:{width:\"100%\"},variant:\"N61FsPvBt\",width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-yBvON.framer-1x4iquq, .framer-yBvON .framer-1x4iquq { display: block; }\",\".framer-yBvON.framer-1inxbp6 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 20px 0px 20px; position: relative; width: 1000px; will-change: var(--framer-will-change-override, transform); }\",\".framer-yBvON .framer-1k95r8n-container, .framer-yBvON .framer-11ck0r7-container, .framer-yBvON .framer-1blmpss-container, .framer-yBvON .framer-40kl9-container, .framer-yBvON .framer-119mcbl-container, .framer-yBvON .framer-csp60-container, .framer-yBvON .framer-1pox18q-container, .framer-yBvON .framer-bf0xdf-container, .framer-yBvON .framer-18kfv0t-container, .framer-yBvON .framer-11fhw5w-container, .framer-yBvON .framer-47qb2b-container, .framer-yBvON .framer-vu7002-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-yBvON .framer-143w5nl, .framer-yBvON .framer-1aocn7g { flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-yBvON.framer-1inxbp6 { gap: 0px; } .framer-yBvON.framer-1inxbp6 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-yBvON.framer-1inxbp6 > :first-child { margin-top: 0px; } .framer-yBvON.framer-1inxbp6 > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 770\n * @framerIntrinsicWidth 1000\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameriABnuMu3V=withCSS(Component,css,\"framer-yBvON\");export default FrameriABnuMu3V;FrameriABnuMu3V.displayName=\"Accordion Copy\";FrameriABnuMu3V.defaultProps={height:770,width:1e3};addFonts(FrameriABnuMu3V,[{explicitInter:true,fonts:[]},...RowFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameriABnuMu3V\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1000\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"770\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./iABnuMu3V.map", "import{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Poppins-700\",\"GF;Poppins-900\",\"GF;Poppins-900italic\",\"GF;Poppins-700italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLCz7V15vFP-KUEg.woff2\",weight:\"700\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLBT5V15vFP-KUEg.woff2\",weight:\"900\"},{family:\"Poppins\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/poppins/v21/pxiDyp8kv8JHgFVrJJLm81xlFd2PQEhcqw.woff2\",weight:\"900\"},{family:\"Poppins\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/poppins/v21/pxiDyp8kv8JHgFVrJJLmy15lFd2PQEhcqw.woff2\",weight:\"700\"}]}];export const css=['.framer-Cnp4z .framer-styles-preset-5136qt:not(.rich-text-wrapper), .framer-Cnp4z .framer-styles-preset-5136qt.rich-text-wrapper h4 { --framer-font-family: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-family-bold: \"Poppins\", sans-serif; --framer-font-family-bold-italic: \"Poppins\", sans-serif; --framer-font-family-italic: \"Poppins\", \"Poppins Placeholder\", sans-serif; --framer-font-size: 26px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: 0em; --framer-line-height: 0.5em; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: var(--token-74db18ed-e4d6-438b-8da3-23688fc26f7c, #ffffff); --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-Cnp4z\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (838580a)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Inter-regular\",\"GF;Inter-700\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\",weight:\"400\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"}]}];export const css=['.framer-DSIo1 .framer-styles-preset-xj7c63:not(.rich-text-wrapper), .framer-DSIo1 .framer-styles-preset-xj7c63.rich-text-wrapper h5 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #c4b3b3; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-DSIo1\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Fragment Mono-regular\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Fragment Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/fragmentmono/v4/4iCr6K5wfMRRjxp0DA6-2CLnN4FNh4UI_1U.woff2\",weight:\"400\"}]}];export const css=['.framer-XWQcy .framer-styles-preset-u70kxo { --framer-code-font-family: \"Fragment Mono\", monospace; --framer-code-font-style: normal; --framer-code-font-weight: 400; --framer-code-text-color: #333; --framer-font-size-scale: 1; background-color: rgba(0, 0, 0, 0.1); border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; padding-bottom: 0.1em; padding-left: 0.2em; padding-right: 0.2em; padding-top: 0.1em; }'];export const className=\"framer-XWQcy\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (013b13c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PropertyOverrides,RichText,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useQueryData,withCodeBoundaryForOverrides,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Logo from\"https://framerusercontent.com/modules/IQXqjAGXltPKLdfjcdtf/AdYVRfUvx2HLE5qL3Xfw/Logo.js\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/9rhBPUZttCbLCWqJEL42/YouTube.js\";import{Icon as Iconoir}from\"https://framerusercontent.com/modules/zL9598C4KbEbqUGvSR14/rI8sPHpnG9XGcCPc0vU4/Iconoir.js\";import MainNavigation from\"#framer/local/canvasComponent/i2pwdxb26/i2pwdxb26.js\";import AccordionCopy from\"#framer/local/canvasComponent/iABnuMu3V/iABnuMu3V.js\";import Footer from\"#framer/local/canvasComponent/qAGAx5IyX/qAGAx5IyX.js\";import{withSecondTallyPopup,withTallyPopup}from\"#framer/local/codeFile/Sw9V8dg/Tally_form.js\";import Courses from\"#framer/local/collection/e3xqH8NeD/e3xqH8NeD.js\";import*as sharedStyle1 from\"#framer/local/css/Cfgskolrl/Cfgskolrl.js\";import*as sharedStyle4 from\"#framer/local/css/gTRROj_Rf/gTRROj_Rf.js\";import*as sharedStyle from\"#framer/local/css/SRKZeeBA_/SRKZeeBA_.js\";import*as sharedStyle3 from\"#framer/local/css/U4d4L3keE/U4d4L3keE.js\";import*as sharedStyle2 from\"#framer/local/css/UtIdaBxPV/UtIdaBxPV.js\";import*as sharedStyle5 from\"#framer/local/css/ZWcMpDP2w/ZWcMpDP2w.js\";import metadataProvider from\"#framer/local/webPageMetadata/vF2SIzeSX/vF2SIzeSX.js\";const MainNavigationFonts=getFonts(MainNavigation);const LogoFonts=getFonts(Logo);const MotionAWithTallyPopupj74sk0=withCodeBoundaryForOverrides(motion.a,{nodeId:\"dcOYtlSL0\",override:withTallyPopup,scopeId:\"vF2SIzeSX\"});const YouTubeFonts=getFonts(YouTube);const MotionAWithTallyPopup1cx77e4=withCodeBoundaryForOverrides(motion.a,{nodeId:\"piEnXWM3H\",override:withTallyPopup,scopeId:\"vF2SIzeSX\"});const MotionDivWithSecondTallyPopupgo8lse=withCodeBoundaryForOverrides(motion.div,{nodeId:\"cHcKjIIpf\",override:withSecondTallyPopup,scopeId:\"vF2SIzeSX\"});const IconoirFonts=getFonts(Iconoir);const AccordionCopyFonts=getFonts(AccordionCopy);const FooterFonts=getFonts(Footer);const breakpoints={BoiTJxKk2:\"(min-width: 810px) and (max-width: 1279px)\",OCIK0rmcr:\"(max-width: 809px)\",so30tE_oD:\"(min-width: 1280px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-CBFyH\";const variantClassNames={BoiTJxKk2:\"framer-v-1d1j4ji\",OCIK0rmcr:\"framer-v-1w3r7sc\",so30tE_oD:\"framer-v-11wqoj7\"};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const negate=value=>{return!value;};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"so30tE_oD\",Phone:\"OCIK0rmcr\",Tablet:\"BoiTJxKk2\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"so30tE_oD\"};};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 currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"vF2SIzeSX\",data:Courses,type:\"Collection\"},select:[{collection:\"vF2SIzeSX\",name:\"Zy0AC5zhK\",type:\"Identifier\"},{collection:\"vF2SIzeSX\",name:\"IR1z058_Z\",type:\"Identifier\"},{collection:\"vF2SIzeSX\",name:\"jfC3jjNaf\",type:\"Identifier\"},{collection:\"vF2SIzeSX\",name:\"P28E2vBrf\",type:\"Identifier\"},{collection:\"vF2SIzeSX\",name:\"iX6ImTZaO\",type:\"Identifier\"},{collection:\"vF2SIzeSX\",name:\"r5hiRTInM\",type:\"Identifier\"},{collection:\"vF2SIzeSX\",name:\"XVzKJ2jta\",type:\"Identifier\"},{collection:\"vF2SIzeSX\",name:\"JYRntqjV2\",type:\"Identifier\"},{collection:\"vF2SIzeSX\",name:\"jhf_G0Bkv\",type:\"Identifier\"},{collection:\"vF2SIzeSX\",name:\"MXR1VM9kU\",type:\"Identifier\"},{collection:\"vF2SIzeSX\",name:\"j_AqZi_4m\",type:\"Identifier\"},{collection:\"vF2SIzeSX\",name:\"m8Z7w3NtI\",type:\"Identifier\"},{collection:\"vF2SIzeSX\",name:\"CBCtknb56\",type:\"Identifier\"},{collection:\"vF2SIzeSX\",name:\"QBCwa_H9R\",type:\"Identifier\"},{collection:\"vF2SIzeSX\",name:\"a6aFDul_b\",type:\"Identifier\"},{collection:\"vF2SIzeSX\",name:\"yg53FjL9s\",type:\"Identifier\"},{collection:\"vF2SIzeSX\",name:\"sInkfhj_a\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"vF2SIzeSX\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,lBy1fqXEL,XvUqGyGPb,Zy0AC5zhK=getFromCurrentRouteData(\"Zy0AC5zhK\")??\"\",XVzKJ2jta=getFromCurrentRouteData(\"XVzKJ2jta\")??\"\",sInkfhj_a=getFromCurrentRouteData(\"sInkfhj_a\")??\"\",yg53FjL9s=getFromCurrentRouteData(\"yg53FjL9s\"),a6DZ23o0f,IR1z058_Z=getFromCurrentRouteData(\"IR1z058_Z\")??\"\",IuPGBuDPu,ueVrX7xyZ,jfC3jjNaf=getFromCurrentRouteData(\"jfC3jjNaf\")??\"\",yCDIheto4,KQiBRx_2q,P28E2vBrf=getFromCurrentRouteData(\"P28E2vBrf\")??\"\",FxCigUfmQ,iX6ImTZaO=getFromCurrentRouteData(\"iX6ImTZaO\")??\"\",cN6YEQWH3,JYRntqjV2=getFromCurrentRouteData(\"JYRntqjV2\")??\"\",CzbX0uQjG,jhf_G0Bkv=getFromCurrentRouteData(\"jhf_G0Bkv\")??\"\",MXR1VM9kU=getFromCurrentRouteData(\"MXR1VM9kU\")??\"\",j_AqZi_4m=getFromCurrentRouteData(\"j_AqZi_4m\")??\"\",m8Z7w3NtI=getFromCurrentRouteData(\"m8Z7w3NtI\")??\"\",CBCtknb56=getFromCurrentRouteData(\"CBCtknb56\")??\"\",QBCwa_H9R=getFromCurrentRouteData(\"QBCwa_H9R\")??\"\",a6aFDul_b=getFromCurrentRouteData(\"a6aFDul_b\")??\"\",sszf4Hd0e,zXM5tAjtM,Gsunb6dvA,wwDfcyOm4,bQgqazyzF,n5q9dvJgs,ejV_HCfoQ,PqjSMB1Uj,ETt29Y3G2,zb0jja3ag,Ll9Dm4j3f,C3WTFohfI,HJdhpnhR6,BFhrsTegM,SydogvCUp,ztOtQzI2v,r5hiRTInM=getFromCurrentRouteData(\"r5hiRTInM\")??\"\",tDG9Y1T9b,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(currentRouteData,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);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const visible=negate(isSet(sInkfhj_a));const visible1=isSet(sInkfhj_a);const visible2=isSet(j_AqZi_4m);const visible3=isSet(MXR1VM9kU);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"so30tE_oD\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-74db18ed-e4d6-438b-8da3-23688fc26f7c, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-11wqoj7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BoiTJxKk2:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-13pldck-container\",nodeId:\"PTKAcxszw\",scopeId:\"vF2SIzeSX\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OCIK0rmcr:{style:{width:\"100%\"},variant:\"AwHuJi63I\"}},children:/*#__PURE__*/_jsx(MainNavigation,{height:\"100%\",id:\"PTKAcxszw\",layoutId:\"PTKAcxszw\",style:{height:\"100%\",width:\"100%\"},variant:\"aolZ3LjSj\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-q3zsv2\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zvg4h9\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1b49rh8\",\"data-framer-name\":\"Left\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wjwp2x\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1een5x8\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OCIK0rmcr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgba(237, 237, 237, 0.68)\"},children:\"Powered by: \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.6)\"},children:\"Powered by: \"})}),className:\"framer-bhfixy\",fonts:[\"Inter-Bold\"],text:lBy1fqXEL,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uyboqs\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OCIK0rmcr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(21, 114, 207)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\" \"}),\"IBM\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(21, 114, 207)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\" \"}),\"IBM\"]})}),className:\"framer-13i87ih\",fonts:[\"Inter-Bold\"],text:XvUqGyGPb,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ub3ion-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ISKf7Cfwo\",scopeId:\"vF2SIzeSX\",children:/*#__PURE__*/_jsx(Logo,{company:\"microsoft\",height:\"100%\",id:\"ISKf7Cfwo\",isSearch:true,layoutId:\"ISKf7Cfwo\",radius:0,srcType:\"URL\",srcUrl:\"\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-16rxr8b-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"cZq8pxOSK\",scopeId:\"vF2SIzeSX\",children:/*#__PURE__*/_jsx(Logo,{company:\"quickbooks\",height:\"100%\",id:\"cZq8pxOSK\",isSearch:true,layoutId:\"cZq8pxOSK\",radius:100,srcType:\"URL\",srcUrl:\"\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-v08ddx-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"NmWzqNlCG\",scopeId:\"vF2SIzeSX\",children:/*#__PURE__*/_jsx(Logo,{company:\"Meta\",height:\"100%\",id:\"NmWzqNlCG\",isSearch:true,layoutId:\"NmWzqNlCG\",radius:0,srcType:\"URL\",srcUrl:\"\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1y1k9jx-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"mFGa7x4WI\",scopeId:\"vF2SIzeSX\",children:/*#__PURE__*/_jsx(Logo,{company:\"Cisco\",height:\"100%\",id:\"mFGa7x4WI\",isSearch:true,layoutId:\"mFGa7x4WI\",radius:0,srcType:\"URL\",srcUrl:\"\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OCIK0rmcr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7TGV4ZW5kIEV4YS02MDA=\",\"--framer-font-family\":'\"Lexend Exa\", \"Lexend Exa Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-2.6px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-74db18ed-e4d6-438b-8da3-23688fc26f7c, rgb(255, 255, 255))\"},children:\"Android App Development\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7TGV4ZW5kIEV4YS02MDA=\",\"--framer-font-family\":'\"Lexend Exa\", \"Lexend Exa Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-2.6px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-74db18ed-e4d6-438b-8da3-23688fc26f7c, rgb(255, 255, 255))\"},children:\"Data Science & Analytics \"})}),className:\"framer-tjzew2\",fonts:[\"GF;Lexend Exa-600\"],text:Zy0AC5zhK,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BoiTJxKk2:{stylesPresetsClassNames:{blockquote:\"framer-styles-preset-1sa70hy\",code:\"framer-styles-preset-u70kxo\",h4:\"framer-styles-preset-5136qt\",h5:\"framer-styles-preset-xj7c63\",h6:\"framer-styles-preset-rvhz2w\",p:\"framer-styles-preset-1hvrwyl\"}},OCIK0rmcr:{stylesPresetsClassNames:{blockquote:\"framer-styles-preset-1sa70hy\",code:\"framer-styles-preset-u70kxo\",h4:\"framer-styles-preset-5136qt\",h5:\"framer-styles-preset-xj7c63\",h6:\"framer-styles-preset-rvhz2w\",p:\"framer-styles-preset-1hvrwyl\"}}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:XVzKJ2jta,className:\"framer-1fxehho\",fonts:[\"GF;Inter-500\"],stylesPresetsClassNames:{blockquote:\"framer-styles-preset-1sa70hy\",h4:\"framer-styles-preset-5136qt\",p:\"framer-styles-preset-1hvrwyl\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-9sj67a\",children:/*#__PURE__*/_jsx(Link,{href:\"https://tally.so/r/3X0Bqz\",motionChild:true,nodeId:\"dcOYtlSL0\",openInNewTab:true,scopeId:\"vF2SIzeSX\",children:/*#__PURE__*/_jsx(MotionAWithTallyPopupj74sk0,{className:\"framer-j74sk0 framer-zlcqt4\",\"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\"},children:\"Connect with Counselor\"})}),className:\"framer-1wr7thf\",\"data-framer-name\":\"Connect with counselor\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dtd7aw\",\"data-framer-name\":\"Right\",children:[visible&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BoiTJxKk2:{background:{alt:\"\",fit:\"fill\",sizes:\"436px\",...toResponsiveImage(yg53FjL9s)}},OCIK0rmcr:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+64+30+0+0+295.2+0+-288),sizes:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,...toResponsiveImage(yg53FjL9s)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+64+0+0+54+0+-126),sizes:\"436px\",...toResponsiveImage(yg53FjL9s)},className:\"framer-cmqimt\"})}),visible1&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-zzia1a-container\",isModuleExternal:true,nodeId:\"cToI9aDjz\",scopeId:\"vF2SIzeSX\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:20,bottomLeftRadius:20,bottomRightRadius:20,height:\"100%\",id:\"cToI9aDjz\",isMixedBorderRadius:false,isRed:true,layoutId:\"cToI9aDjz\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:20,topRightRadius:20,url:sInkfhj_a,width:\"100%\"})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-usg5hc\",\"data-border\":true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10k7r92\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u95urd\",\"data-border\":true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TGV4ZW5kIERlY2EtNTAw\",\"--framer-font-family\":'\"Lexend Deca\", \"Lexend Deca Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-74db18ed-e4d6-438b-8da3-23688fc26f7c, rgb(255, 255, 255))\"},children:\"DURATION\"})}),className:\"framer-29qv09\",fonts:[\"GF;Lexend Deca-500\"],text:a6DZ23o0f,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7TGV4ZW5kIERlY2EtNjAw\",\"--framer-font-family\":'\"Lexend Deca\", \"Lexend Deca Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-74db18ed-e4d6-438b-8da3-23688fc26f7c, rgb(255, 255, 255))\"},children:\"4 Months\"})}),className:\"framer-wb8n87\",fonts:[\"GF;Lexend Deca-600\"],text:IR1z058_Z,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-74db18ed-e4d6-438b-8da3-23688fc26f7c, rgb(255, 255, 255))\"},children:\"Intensive\"})}),className:\"framer-93058e\",fonts:[\"GF;Inter-500\"],text:IuPGBuDPu,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pe6n0e\",\"data-border\":true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-74db18ed-e4d6-438b-8da3-23688fc26f7c, rgb(255, 255, 255))\"},children:\"MODE\"})}),className:\"framer-t56udi\",fonts:[\"GF;Inter-500\"],text:ueVrX7xyZ,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7TGV4ZW5kIERlY2EtNjAw\",\"--framer-font-family\":'\"Lexend Deca\", \"Lexend Deca Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-74db18ed-e4d6-438b-8da3-23688fc26f7c, rgb(255, 255, 255))\"},children:\"Live Online \"})}),className:\"framer-nxjkcw\",fonts:[\"GF;Lexend Deca-600\"],text:jfC3jjNaf,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-74db18ed-e4d6-438b-8da3-23688fc26f7c, rgb(255, 255, 255))\"},children:\"Intensive\"})}),className:\"framer-1b83axu\",fonts:[\"GF;Inter-500\"],text:yCDIheto4,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sy5pnt\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yg4zmr\",\"data-border\":true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-74db18ed-e4d6-438b-8da3-23688fc26f7c, rgb(255, 255, 255))\"},children:\"FORMAT\"})}),className:\"framer-c9hiva\",fonts:[\"GF;Inter-500\"],text:KQiBRx_2q,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7TGV4ZW5kIERlY2EtNjAw\",\"--framer-font-family\":'\"Lexend Deca\", \"Lexend Deca Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-74db18ed-e4d6-438b-8da3-23688fc26f7c, rgb(255, 255, 255))\"},children:\"Hybrid\"})}),className:\"framer-1cfrsir\",fonts:[\"GF;Lexend Deca-600\"],text:P28E2vBrf,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-74db18ed-e4d6-438b-8da3-23688fc26f7c, rgb(255, 255, 255))\"},children:\"Hands-on, Practical\"})}),className:\"framer-1vulm62\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-93pece\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-74db18ed-e4d6-438b-8da3-23688fc26f7c, rgb(255, 255, 255))\"},children:\"STARTING \"})}),className:\"framer-1jlyhib\",fonts:[\"GF;Inter-500\"],text:FxCigUfmQ,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7TGV4ZW5kIERlY2EtNjAw\",\"--framer-font-family\":'\"Lexend Deca\", \"Lexend Deca Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(66, 235, 0)\"},children:\"APRIL 2024\"})}),className:\"framer-1v0e4z3\",fonts:[\"GF;Lexend Deca-600\"],text:iX6ImTZaO,verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ssbmw\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15p8ftp\",\"data-framer-name\":\"2 Columns Text Image\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-gfs1zh\",\"data-framer-name\":\"left\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-waq87n\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10mjk52\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BoiTJxKk2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-74db18ed-e4d6-438b-8da3-23688fc26f7c, rgb(255, 255, 255))\"},children:\"Program Details\"})}),text:undefined},OCIK0rmcr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-74db18ed-e4d6-438b-8da3-23688fc26f7c, rgb(255, 255, 255))\"},children:\"Program Details\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-74db18ed-e4d6-438b-8da3-23688fc26f7c, rgb(255, 255, 255))\"},children:\"Program Details\"})}),className:\"framer-7lzuq6\",fonts:[\"GF;Inter-600\"],text:cN6YEQWH3,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BoiTJxKk2:{stylesPresetsClassNames:{blockquote:\"framer-styles-preset-1sa70hy\",code:\"framer-styles-preset-u70kxo\",h5:\"framer-styles-preset-xj7c63\",h6:\"framer-styles-preset-rvhz2w\",p:\"framer-styles-preset-1hvrwyl\"}},OCIK0rmcr:{stylesPresetsClassNames:{blockquote:\"framer-styles-preset-1sa70hy\",code:\"framer-styles-preset-u70kxo\",h5:\"framer-styles-preset-xj7c63\",h6:\"framer-styles-preset-rvhz2w\",p:\"framer-styles-preset-1hvrwyl\"}}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:JYRntqjV2,className:\"framer-1k2oya2\",fonts:[\"GF;Inter-500\"],id:\"1k2oya2\",stylesPresetsClassNames:{blockquote:\"framer-styles-preset-1sa70hy\",p:\"framer-styles-preset-1hvrwyl\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gdjd3l\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BoiTJxKk2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-74db18ed-e4d6-438b-8da3-23688fc26f7c, rgb(255, 255, 255))\"},children:\"Who should enroll?\"})}),text:undefined},OCIK0rmcr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-74db18ed-e4d6-438b-8da3-23688fc26f7c, rgb(255, 255, 255))\"},children:\"Who should enroll?\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-74db18ed-e4d6-438b-8da3-23688fc26f7c, rgb(255, 255, 255))\"},children:\"Who should enroll?\"})}),className:\"framer-jktnl8\",fonts:[\"GF;Inter-600\"],text:CzbX0uQjG,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BoiTJxKk2:{stylesPresetsClassNames:{blockquote:\"framer-styles-preset-1sa70hy\",code:\"framer-styles-preset-u70kxo\",h5:\"framer-styles-preset-xj7c63\",h6:\"framer-styles-preset-rvhz2w\",p:\"framer-styles-preset-1hvrwyl\"}}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:jhf_G0Bkv,className:\"framer-1mu948a\",fonts:[\"GF;Inter-500\"],stylesPresetsClassNames:{blockquote:\"framer-styles-preset-1sa70hy\",p:\"framer-styles-preset-1hvrwyl\"},verticalAlignment:\"top\",withExternalLayout:true})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b4byyk\",\"data-framer-name\":\"right\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-74db18ed-e4d6-438b-8da3-23688fc26f7c, rgb(255, 255, 255))\"},children:\"Join our community to learn, connect with like-minded peers, and get updates on the scholarship test\"})}),className:\"framer-130btji\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-74db18ed-e4d6-438b-8da3-23688fc26f7c, rgb(255, 255, 255))\"},children:\"Limited Seats in the Cohort\"})}),className:\"framer-1tykg8h\",fonts:[\"GF;Poppins-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:\"https://tally.so/r/3X0Bqz\",motionChild:true,nodeId:\"piEnXWM3H\",openInNewTab:true,scopeId:\"vF2SIzeSX\",children:/*#__PURE__*/_jsx(MotionAWithTallyPopup1cx77e4,{className:\"framer-1cx77e4 framer-zlcqt4\",\"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\"},children:\"Connect with counselor\"})}),className:\"framer-1j34eg5\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://rzp.io/rzp/ImvzTQb\",motionChild:true,nodeId:\"RQZzeRZY6\",openInNewTab:true,scopeId:\"vF2SIzeSX\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-m5yakv framer-zlcqt4\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAwaXRhbGlj\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(5, 5, 5)\"},children:\"ENROLL NOW\"})}),className:\"framer-l5ws8o\",fonts:[\"GF;Inter-700italic\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vh05u5\",\"data-framer-name\":\"Teaching Plan\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5iy43j\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BoiTJxKk2:{viewBox:\"0 0 550 36\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-74db18ed-e4d6-438b-8da3-23688fc26f7c, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-weight\":\"700\"},children:\"TEACHING\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-weight\":\"600\"},children:\" \"}),\"PLAN (3 Month Program)\"]})}),className:\"framer-1eyvjzb\",fonts:[\"GF;Montserrat-regular\",\"GF;Montserrat-700\",\"GF;Montserrat-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-d7d7q7\",\"data-framer-name\":\"Row\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jkn24d\",\"data-framer-name\":\"Teaching plan modules\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-19dyygt\",\"data-border\":true,\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BoiTJxKk2:{stylesPresetsClassNames:{blockquote:\"framer-styles-preset-1sa70hy\",code:\"framer-styles-preset-u70kxo\",h5:\"framer-styles-preset-xj7c63\",h6:\"framer-styles-preset-rvhz2w\"}},OCIK0rmcr:{stylesPresetsClassNames:{blockquote:\"framer-styles-preset-1sa70hy\",code:\"framer-styles-preset-u70kxo\",h5:\"framer-styles-preset-xj7c63\",h6:\"framer-styles-preset-rvhz2w\"}}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:MXR1VM9kU,className:\"framer-1kh1dsz\",fonts:[\"GF;Inter-600\"],stylesPresetsClassNames:{blockquote:\"framer-styles-preset-1sa70hy\",h6:\"framer-styles-preset-rvhz2w\"},verticalAlignment:\"top\",withExternalLayout:true})})}),visible2&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-99mo7\",\"data-border\":true,\"data-framer-name\":\"Content\",children:visible3&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BoiTJxKk2:{stylesPresetsClassNames:{blockquote:\"framer-styles-preset-1sa70hy\",code:\"framer-styles-preset-u70kxo\",h5:\"framer-styles-preset-xj7c63\",h6:\"framer-styles-preset-rvhz2w\"}},OCIK0rmcr:{stylesPresetsClassNames:{blockquote:\"framer-styles-preset-1sa70hy\",code:\"framer-styles-preset-u70kxo\",h5:\"framer-styles-preset-xj7c63\",h6:\"framer-styles-preset-rvhz2w\"}}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:j_AqZi_4m,className:\"framer-mnjknb\",fonts:[\"GF;Inter-600\"],stylesPresetsClassNames:{blockquote:\"framer-styles-preset-1sa70hy\",h6:\"framer-styles-preset-rvhz2w\"},verticalAlignment:\"top\",withExternalLayout:true})})}),visible2&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1a79575\",\"data-border\":true,\"data-framer-name\":\"Content\",children:visible3&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BoiTJxKk2:{stylesPresetsClassNames:{blockquote:\"framer-styles-preset-1sa70hy\",code:\"framer-styles-preset-u70kxo\",h5:\"framer-styles-preset-xj7c63\",h6:\"framer-styles-preset-rvhz2w\"}},OCIK0rmcr:{stylesPresetsClassNames:{blockquote:\"framer-styles-preset-1sa70hy\",code:\"framer-styles-preset-u70kxo\",h5:\"framer-styles-preset-xj7c63\",h6:\"framer-styles-preset-rvhz2w\"}}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:m8Z7w3NtI,className:\"framer-1wy98uf\",fonts:[\"GF;Inter-600\"],stylesPresetsClassNames:{blockquote:\"framer-styles-preset-1sa70hy\",h6:\"framer-styles-preset-rvhz2w\"},verticalAlignment:\"top\",withExternalLayout:true})})}),visible2&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-tmm6ip\",\"data-border\":true,\"data-framer-name\":\"Content\",children:visible3&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BoiTJxKk2:{stylesPresetsClassNames:{blockquote:\"framer-styles-preset-1sa70hy\",code:\"framer-styles-preset-u70kxo\",h5:\"framer-styles-preset-xj7c63\",h6:\"framer-styles-preset-rvhz2w\"}},OCIK0rmcr:{stylesPresetsClassNames:{blockquote:\"framer-styles-preset-1sa70hy\",code:\"framer-styles-preset-u70kxo\",h5:\"framer-styles-preset-xj7c63\",h6:\"framer-styles-preset-rvhz2w\"}}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:CBCtknb56,className:\"framer-1twqyho\",fonts:[\"GF;Inter-600\"],stylesPresetsClassNames:{blockquote:\"framer-styles-preset-1sa70hy\",h6:\"framer-styles-preset-rvhz2w\"},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-17hoy07\",\"data-border\":true,\"data-framer-name\":\"Content\",children:visible3&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BoiTJxKk2:{stylesPresetsClassNames:{blockquote:\"framer-styles-preset-1sa70hy\",code:\"framer-styles-preset-u70kxo\",h5:\"framer-styles-preset-xj7c63\",h6:\"framer-styles-preset-rvhz2w\"}},OCIK0rmcr:{stylesPresetsClassNames:{blockquote:\"framer-styles-preset-1sa70hy\",code:\"framer-styles-preset-u70kxo\",h5:\"framer-styles-preset-xj7c63\",h6:\"framer-styles-preset-rvhz2w\"}}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:QBCwa_H9R,className:\"framer-17xfeqb\",fonts:[\"GF;Inter-600\"],stylesPresetsClassNames:{blockquote:\"framer-styles-preset-1sa70hy\",h6:\"framer-styles-preset-rvhz2w\"},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-pwa5ky\",\"data-border\":true,\"data-framer-name\":\"Content\",children:visible3&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BoiTJxKk2:{stylesPresetsClassNames:{blockquote:\"framer-styles-preset-1sa70hy\",code:\"framer-styles-preset-u70kxo\",h5:\"framer-styles-preset-xj7c63\",h6:\"framer-styles-preset-rvhz2w\"}},OCIK0rmcr:{stylesPresetsClassNames:{blockquote:\"framer-styles-preset-1sa70hy\",code:\"framer-styles-preset-u70kxo\",h5:\"framer-styles-preset-xj7c63\",h6:\"framer-styles-preset-rvhz2w\"}}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:a6aFDul_b,className:\"framer-1ovdm5y\",fonts:[\"GF;Inter-600\"],stylesPresetsClassNames:{blockquote:\"framer-styles-preset-1sa70hy\",h6:\"framer-styles-preset-rvhz2w\"},verticalAlignment:\"top\",withExternalLayout:true})})})]})}),/*#__PURE__*/_jsx(MotionDivWithSecondTallyPopupgo8lse,{className:\"framer-go8lse\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OCIK0rmcr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(5, 5, 5)\"},children:\"Download Complete 3 Months Plan\"})})}},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\":\"25px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(5, 5, 5)\"},children:\"Download Complete 3 Months Plan\"})}),className:\"framer-bdh0qs\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-f8zioh\",\"data-framer-name\":\"Teaching Plan\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-p4ns0q\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b5j2y\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BoiTJxKk2:{viewBox:\"0 0 488 36\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-74db18ed-e4d6-438b-8da3-23688fc26f7c, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-weight\":\"700\"},children:\"CAREER \"}),\"DEVELOPMENT\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-weight\":\"700\"},children:\" \"}),\"TRACK\"]})}),className:\"framer-4bu53e\",fonts:[\"GF;Montserrat-regular\",\"GF;Montserrat-700\"],text:sszf4Hd0e,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:zXM5tAjtM,className:\"framer-13vnkze\",fonts:[\"Inter\"],stylesPresetsClassNames:{blockquote:\"framer-styles-preset-1sa70hy\",code:\"framer-styles-preset-u70kxo\",h5:\"framer-styles-preset-xj7c63\",h6:\"framer-styles-preset-rvhz2w\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1trb6uj\",\"data-framer-name\":\"Row\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pyfn2r\",\"data-framer-name\":\"Teaching plan modules\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kwqorm\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"ol\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-74db18ed-e4d6-438b-8da3-23688fc26f7c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"h2\",{children:\"Pregrad Career Assist Access\"})})})}),className:\"framer-78z750\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"ul\",{style:{\"--framer-text-color\":\"var(--token-74db18ed-e4d6-438b-8da3-23688fc26f7c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Mentoring\"})})})}),className:\"framer-1edybfv\",fonts:[\"Inter\"],text:Gsunb6dvA,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"ul\",{style:{\"--framer-text-color\":\"var(--token-74db18ed-e4d6-438b-8da3-23688fc26f7c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"career-specific resume tailoring\"})})})}),className:\"framer-17g96dl\",fonts:[\"Inter\"],text:wwDfcyOm4,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xhzqpc\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"ol\",{start:\"2\",style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-74db18ed-e4d6-438b-8da3-23688fc26f7c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"h2\",{children:\"Personal Branding\"})})})}),className:\"framer-n4y4vf\",fonts:[\"GF;Inter-600\"],text:bQgqazyzF,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"ul\",{style:{\"--framer-text-color\":\"var(--token-74db18ed-e4d6-438b-8da3-23688fc26f7c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Build and showcase your skills in public\"})})})}),className:\"framer-wfb5wv\",fonts:[\"Inter\"],text:n5q9dvJgs,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"ul\",{style:{\"--framer-text-color\":\"var(--token-74db18ed-e4d6-438b-8da3-23688fc26f7c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Strategic LinkedIn profiling\"})})})}),className:\"framer-7m3bev\",fonts:[\"Inter\"],text:ejV_HCfoQ,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dru4\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"ol\",{start:\"3\",style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-74db18ed-e4d6-438b-8da3-23688fc26f7c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"h2\",{children:\"Community Session\"})})})}),className:\"framer-4gu5rh\",fonts:[\"GF;Inter-600\"],text:PqjSMB1Uj,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"ul\",{style:{\"--framer-text-color\":\"var(--token-74db18ed-e4d6-438b-8da3-23688fc26f7c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Strengthen Communication \"})})})}),className:\"framer-1vtuhxa\",fonts:[\"Inter\"],text:ETt29Y3G2,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"ul\",{style:{\"--framer-text-color\":\"var(--token-74db18ed-e4d6-438b-8da3-23688fc26f7c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Improve presentation skills\"})})})}),className:\"framer-u027hq\",fonts:[\"Inter\"],text:zb0jja3ag,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x2a2tx\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"ol\",{start:\"4\",style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-74db18ed-e4d6-438b-8da3-23688fc26f7c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"h2\",{children:\"Interview Preparation\"})})})}),className:\"framer-133yfvv\",fonts:[\"GF;Inter-600\"],text:Ll9Dm4j3f,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"ul\",{style:{\"--framer-text-color\":\"var(--token-74db18ed-e4d6-438b-8da3-23688fc26f7c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Mock community sessions & GD \"})})})}),className:\"framer-1ufd915\",fonts:[\"Inter\"],text:C3WTFohfI,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"ul\",{style:{\"--framer-text-color\":\"var(--token-74db18ed-e4d6-438b-8da3-23688fc26f7c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Art of negotiation\"})})})}),className:\"framer-1j8o97v\",fonts:[\"Inter\"],text:HJdhpnhR6,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-moyk7p\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"ol\",{start:\"5\",style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-74db18ed-e4d6-438b-8da3-23688fc26f7c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"h2\",{children:\"Domain workshops/Masterclasses\"})})})}),className:\"framer-1l1jaiq\",fonts:[\"GF;Inter-600\"],text:BFhrsTegM,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"ul\",{style:{\"--framer-text-color\":\"var(--token-74db18ed-e4d6-438b-8da3-23688fc26f7c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Masterclasses from professionals \"})})})}),className:\"framer-wqtqnl\",fonts:[\"Inter\"],text:SydogvCUp,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"ul\",{style:{\"--framer-text-color\":\"var(--token-74db18ed-e4d6-438b-8da3-23688fc26f7c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"HR Session\"})})})}),className:\"framer-1ujeoup\",fonts:[\"Inter\"],text:ztOtQzI2v,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ptmp6m\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"ol\",{start:\"6\",style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-74db18ed-e4d6-438b-8da3-23688fc26f7c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"h2\",{children:\"Career Kick-start\"})})})}),className:\"framer-pf6183\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"ul\",{style:{\"--framer-text-color\":\"var(--token-74db18ed-e4d6-438b-8da3-23688fc26f7c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Internship/Freelance/ Applications & Interview\"})})})}),className:\"framer-1fea4bw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"ul\",{style:{\"--framer-text-color\":\"var(--token-74db18ed-e4d6-438b-8da3-23688fc26f7c, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Placement assistance in final year\"})})})}),className:\"framer-1k365ug\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1oosak9\",\"data-framer-name\":\"2 Columns Image Text\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-og84ok\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BoiTJxKk2:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:1344,pixelWidth:896,sizes:`calc((${componentViewport?.width||\"100vw\"} - 20px) * 0.3291)`,src:\"https://framerusercontent.com/images/kI2D8ujVvcQrHxifGbs3Mp2uZN8.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/kI2D8ujVvcQrHxifGbs3Mp2uZN8.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/kI2D8ujVvcQrHxifGbs3Mp2uZN8.jpg 896w\"}},OCIK0rmcr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6399.4+0+0+30+0),pixelHeight:1344,pixelWidth:896,sizes:`calc(${componentViewport?.width||\"100vw\"} - 60px)`,src:\"https://framerusercontent.com/images/mFSfozF656zg5yU0CrbAyjpp9I.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/mFSfozF656zg5yU0CrbAyjpp9I.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/mFSfozF656zg5yU0CrbAyjpp9I.jpg 896w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3667+0+106.5),pixelHeight:1344,pixelWidth:896,sizes:\"456px\",src:\"https://framerusercontent.com/images/mFSfozF656zg5yU0CrbAyjpp9I.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/mFSfozF656zg5yU0CrbAyjpp9I.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/mFSfozF656zg5yU0CrbAyjpp9I.jpg 896w\"},className:\"framer-4xq7s5\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1h6nsq3\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1r406i4\",\"data-border\":true,\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-edldrd\",\"data-border\":true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Total Fee of the Program\"})}),className:\"framer-1hxdua9\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"\u20B9 17999/- All inclusive\"})}),className:\"framer-1grnzma\",fonts:[\"GF;Inter-700\"],text:r5hiRTInM,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"(Non-refundable)\"})}),className:\"framer-oiy8ks\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kk0uh0\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"0% cost EMI Option Available*\"})}),className:\"framer-13ywxdx\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"EMI options for admission will not be available on discounted Fee or  admission through scholarship \"})}),className:\"framer-ny8isa\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gybekx\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://tally.so/r/3X0Bqz\",motionChild:true,nodeId:\"mtsJqWe9C\",openInNewTab:true,scopeId:\"vF2SIzeSX\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1koh227 framer-zlcqt4\",\"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\":\"var(--token-74db18ed-e4d6-438b-8da3-23688fc26f7c, rgb(255, 255, 255))\"},children:\"Connect with counselor\"})}),className:\"framer-ha33wy\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://rzp.io/rzp/ImvzTQb\",motionChild:true,nodeId:\"IVL2t62ej\",openInNewTab:true,scopeId:\"vF2SIzeSX\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-12akz0h framer-zlcqt4\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAwaXRhbGlj\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-74db18ed-e4d6-438b-8da3-23688fc26f7c, rgb(255, 255, 255))\"},children:\"ENROLL NOW\"})}),className:\"framer-163ejgt\",fonts:[\"GF;Inter-700italic\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ckv2hf\",\"data-border\":true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4o552o\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-7f0qsq-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"IXYjFK_PZ\",scopeId:\"vF2SIzeSX\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"rgb(15, 15, 15)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"CheckCircledOutline\",id:\"IXYjFK_PZ\",layoutId:\"IXYjFK_PZ\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Live Learning delivered by Industry veteran \"})}),className:\"framer-iwpxvt\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dxkkrf\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-qhyzv6-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"mgxVc5S7p\",scopeId:\"vF2SIzeSX\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"rgb(15, 15, 15)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"CheckCircledOutline\",id:\"mgxVc5S7p\",layoutId:\"mgxVc5S7p\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Sessions Backup\"})}),className:\"framer-yy1nw8\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-j9yd1n\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-l0nb2o-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"CPGbxXoyE\",scopeId:\"vF2SIzeSX\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"rgb(15, 15, 15)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"CheckCircledOutline\",id:\"CPGbxXoyE\",layoutId:\"CPGbxXoyE\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Hands-On Projects & Challenges\"})}),className:\"framer-1vvkwu5\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1owqgex\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1m09a9j-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"gaXrOrGqC\",scopeId:\"vF2SIzeSX\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"rgb(15, 15, 15)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"CheckCircledOutline\",id:\"gaXrOrGqC\",layoutId:\"gaXrOrGqC\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Global Certifications\"})}),className:\"framer-wpgiss\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xamtms\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-5cvvi8-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"oBTxZq1WB\",scopeId:\"vF2SIzeSX\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"rgb(15, 15, 15)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"CheckCircledOutline\",id:\"oBTxZq1WB\",layoutId:\"oBTxZq1WB\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Access to Career Assist cell*\"})}),className:\"framer-ze7of7\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vm9ywq\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gc2k5w-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ykvr_WO0Y\",scopeId:\"vF2SIzeSX\",children:/*#__PURE__*/_jsx(Logo,{company:\"razorpay\",height:\"100%\",id:\"ykvr_WO0Y\",isSearch:true,layoutId:\"ykvr_WO0Y\",radius:100,srcType:\"URL\",srcUrl:\"\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Payment gateway Razorpay\"})}),className:\"framer-1icv3wl\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-achm59\",\"data-framer-name\":\"FAQ\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BoiTJxKk2:{text:undefined},OCIK0rmcr:{text:undefined}},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.6px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"FAQ\"})}),className:\"framer-10vgpoq\",fonts:[\"GF;Inter-700\"],text:tDG9Y1T9b,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1axde29\",\"data-framer-name\":\"Column\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BoiTJxKk2:{y:undefined},OCIK0rmcr:{y:(componentViewport?.y||0)+0+5389.4+60+120+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:770,width:`max(min(1000px, ${componentViewport?.width||\"100vw\"}), 1px)`,y:(componentViewport?.y||0)+0+4494+100+120+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-9w191c-container\",nodeId:\"BcYrUnXDg\",scopeId:\"vF2SIzeSX\",children:/*#__PURE__*/_jsx(AccordionCopy,{height:\"100%\",id:\"BcYrUnXDg\",layoutId:\"BcYrUnXDg\",style:{width:\"100%\"},width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BoiTJxKk2:{y:undefined},OCIK0rmcr:{y:(componentViewport?.y||0)+0+7647.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:570,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+5584,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1i5icdx-container\",nodeId:\"BTCqJhcZx\",scopeId:\"vF2SIzeSX\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BoiTJxKk2:{variant:\"pYQ20fsPB\"},OCIK0rmcr:{variant:\"pYQ20fsPB\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"BTCqJhcZx\",layoutId:\"BTCqJhcZx\",style:{width:\"100%\"},variant:\"TozN5JSrI\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-CBFyH.framer-zlcqt4, .framer-CBFyH .framer-zlcqt4 { display: block; }\",\".framer-CBFyH.framer-11wqoj7 { align-content: center; align-items: center; background-color: var(--token-74db18ed-e4d6-438b-8da3-23688fc26f7c, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1280px; }\",\".framer-CBFyH .framer-13pldck-container { flex: none; height: 64px; position: relative; width: 100%; z-index: 2; }\",\".framer-CBFyH .framer-q3zsv2 { align-content: center; align-items: center; background-color: var(--token-c61342c1-5394-433a-a898-35d294ede9de, #13191f); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-CBFyH .framer-zvg4h9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 52px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-CBFyH .framer-1b49rh8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 378px; justify-content: center; overflow: hidden; padding: 0px 0px 0px 20px; position: relative; width: min-content; }\",\".framer-CBFyH .framer-wjwp2x { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 17px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-CBFyH .framer-1een5x8 { align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0.1); border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 10px 0px 10px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-CBFyH .framer-bhfixy { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 112px; word-break: break-word; word-wrap: break-word; }\",\".framer-CBFyH .framer-uyboqs { 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: 5px 0px 5px 0px; position: relative; width: min-content; }\",\".framer-CBFyH .framer-13i87ih { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-CBFyH .framer-1ub3ion-container, .framer-CBFyH .framer-16rxr8b-container, .framer-CBFyH .framer-v08ddx-container { flex: none; height: 25px; position: relative; width: 25px; }\",\".framer-CBFyH .framer-1y1k9jx-container { flex: none; height: 25px; position: relative; width: 39px; }\",\".framer-CBFyH .framer-tjzew2 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-CBFyH .framer-1fxehho { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; overflow: visible; position: relative; white-space: pre-wrap; width: 580px; word-break: break-word; word-wrap: break-word; }\",\".framer-CBFyH .framer-9sj67a { 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-CBFyH .framer-j74sk0 { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 15px 30px 15px 30px; position: relative; text-decoration: none; width: min-content; }\",\".framer-CBFyH .framer-1wr7thf, .framer-CBFyH .framer-1j34eg5, .framer-CBFyH .framer-l5ws8o, .framer-CBFyH .framer-bdh0qs, .framer-CBFyH .framer-ha33wy, .framer-CBFyH .framer-163ejgt { --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-CBFyH .framer-1dtd7aw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 22px; height: 270px; justify-content: center; overflow: hidden; padding: 0px 0px 0px 20px; position: relative; width: 456px; }\",\".framer-CBFyH .framer-cmqimt { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: 250px; position: relative; width: 100%; }\",\".framer-CBFyH .framer-zzia1a-container { flex: none; height: 250px; position: relative; width: 100%; }\",\".framer-CBFyH .framer-usg5hc { --border-bottom-width: 1px; --border-color: #222222; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0.07); 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: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 10px 0px 10px 0px; position: relative; width: min-content; }\",\".framer-CBFyH .framer-10k7r92, .framer-CBFyH .framer-1vm9ywq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-CBFyH .framer-u95urd { --border-bottom-width: 0px; --border-color: rgba(255, 255, 255, 0.34); --border-left-width: 0px; --border-right-width: 1px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; padding: 0px; position: relative; width: 270px; }\",\".framer-CBFyH .framer-29qv09, .framer-CBFyH .framer-93058e, .framer-CBFyH .framer-t56udi, .framer-CBFyH .framer-1b83axu, .framer-CBFyH .framer-c9hiva, .framer-CBFyH .framer-1vulm62, .framer-CBFyH .framer-1mu948a, .framer-CBFyH .framer-130btji, .framer-CBFyH .framer-1tykg8h, .framer-CBFyH .framer-1hxdua9, .framer-CBFyH .framer-oiy8ks { --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-CBFyH .framer-wb8n87, .framer-CBFyH .framer-nxjkcw, .framer-CBFyH .framer-1cfrsir, .framer-CBFyH .framer-7lzuq6, .framer-CBFyH .framer-1kh1dsz, .framer-CBFyH .framer-mnjknb, .framer-CBFyH .framer-1wy98uf, .framer-CBFyH .framer-1twqyho, .framer-CBFyH .framer-17xfeqb, .framer-CBFyH .framer-1ovdm5y, .framer-CBFyH .framer-78z750, .framer-CBFyH .framer-n4y4vf, .framer-CBFyH .framer-4gu5rh, .framer-CBFyH .framer-133yfvv, .framer-CBFyH .framer-1l1jaiq, .framer-CBFyH .framer-pf6183, .framer-CBFyH .framer-1grnzma { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-CBFyH .framer-1pe6n0e, .framer-CBFyH .framer-yg4zmr { --border-bottom-width: 0px; --border-color: rgba(255, 255, 255, 0.34); --border-left-width: 0px; --border-right-width: 1px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 270px; }\",\".framer-CBFyH .framer-1sy5pnt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 95px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-CBFyH .framer-93pece { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; width: min-content; }\",\".framer-CBFyH .framer-1jlyhib { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 270px; word-break: break-word; word-wrap: break-word; }\",\".framer-CBFyH .framer-1v0e4z3 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 270px; word-break: break-word; word-wrap: break-word; }\",\".framer-CBFyH .framer-ssbmw { align-content: center; align-items: center; background-color: var(--token-c61342c1-5394-433a-a898-35d294ede9de, #13191f); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 50px 0px; position: relative; width: 100%; }\",\".framer-CBFyH .framer-15p8ftp { align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0.17); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 40px 20px 40px 20px; position: relative; width: min-content; }\",\".framer-CBFyH .framer-gfs1zh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 10px 0px 0px 0px; position: relative; width: 720px; }\",\".framer-CBFyH .framer-waq87n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-CBFyH .framer-10mjk52, .framer-CBFyH .framer-gdjd3l { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-CBFyH .framer-1k2oya2 { --framer-paragraph-spacing: 1px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 91%; word-break: break-word; word-wrap: break-word; }\",\".framer-CBFyH .framer-jktnl8, .framer-CBFyH .framer-10vgpoq { --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-CBFyH .framer-b4byyk { align-content: center; align-items: center; background-color: rgba(19, 25, 31, 0.75); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 1px 9px 3px rgba(0, 0, 0, 0.12); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 24px; position: relative; width: 360px; will-change: var(--framer-will-change-override, transform); }\",\".framer-CBFyH .framer-1cx77e4 { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 15px 30px 15px 30px; position: relative; text-decoration: none; width: 100%; }\",\".framer-CBFyH .framer-m5yakv { align-content: center; align-items: center; background-color: #57de21; border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 15px 30px 15px 30px; position: relative; text-decoration: none; width: 100%; }\",\".framer-CBFyH .framer-1vh05u5 { align-content: center; align-items: center; background-color: rgba(19, 25, 31, 0.99); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 100px 20px 0px 20px; position: relative; width: 100%; z-index: 1; }\",\".framer-CBFyH .framer-5iy43j { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 50px 0px; position: sticky; top: 0px; width: 100%; z-index: 1; }\",\".framer-CBFyH .framer-1eyvjzb { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 1160px; word-break: break-word; word-wrap: break-word; }\",\".framer-CBFyH .framer-d7d7q7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 31px; height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-CBFyH .framer-jkn24d { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-CBFyH .framer-19dyygt, .framer-CBFyH .framer-99mo7, .framer-CBFyH .framer-1a79575, .framer-CBFyH .framer-tmm6ip, .framer-CBFyH .framer-17hoy07, .framer-CBFyH .framer-pwa5ky { --border-bottom-width: 2px; --border-color: #13191f; --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; align-content: flex-start; align-items: flex-start; background-color: var(--token-74db18ed-e4d6-438b-8da3-23688fc26f7c, #ffffff); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: inset 0px 1px 3px 5px rgba(43, 43, 43, 0.21); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 20px; position: sticky; top: 0px; width: 100%; z-index: 1; }\",\".framer-CBFyH .framer-go8lse { align-content: center; align-items: center; background-color: var(--token-74db18ed-e4d6-438b-8da3-23688fc26f7c, #ffffff); border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; box-shadow: 1px 1px 0px 6px #50d91a; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 30px; position: relative; width: min-content; }\",\".framer-CBFyH .framer-f8zioh { align-content: center; align-items: center; background-color: var(--token-c61342c1-5394-433a-a898-35d294ede9de, #13191f); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 50px 20px 0px 20px; position: relative; width: 100%; z-index: 1; }\",\".framer-CBFyH .framer-p4ns0q { align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0.05); 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: 50px; height: min-content; justify-content: flex-start; overflow: visible; padding: 50px 20px 0px 20px; position: relative; width: 100%; z-index: 1; }\",\".framer-CBFyH .framer-1b5j2y { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 20px; position: relative; width: 100%; z-index: 1; }\",\".framer-CBFyH .framer-4bu53e { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-CBFyH .framer-13vnkze { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 60%; word-break: break-word; word-wrap: break-word; }\",\".framer-CBFyH .framer-1trb6uj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-CBFyH .framer-pyfn2r { display: grid; flex: 1 0 0px; gap: 30px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(200px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 50px 0px; position: relative; width: 1px; }\",\".framer-CBFyH .framer-kwqorm, .framer-CBFyH .framer-xhzqpc, .framer-CBFyH .framer-1dru4, .framer-CBFyH .framer-1x2a2tx, .framer-CBFyH .framer-moyk7p, .framer-CBFyH .framer-1ptmp6m { align-content: flex-start; align-items: flex-start; align-self: center; background-color: rgba(255, 255, 255, 0.09); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 100%; justify-content: center; justify-self: center; padding: 30px; position: relative; width: 100%; z-index: 1; }\",\".framer-CBFyH .framer-1edybfv, .framer-CBFyH .framer-17g96dl, .framer-CBFyH .framer-wfb5wv, .framer-CBFyH .framer-7m3bev, .framer-CBFyH .framer-1vtuhxa, .framer-CBFyH .framer-u027hq, .framer-CBFyH .framer-1ufd915, .framer-CBFyH .framer-1j8o97v, .framer-CBFyH .framer-wqtqnl, .framer-CBFyH .framer-1ujeoup, .framer-CBFyH .framer-1fea4bw, .framer-CBFyH .framer-1k365ug { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 390px; word-break: break-word; word-wrap: break-word; }\",\".framer-CBFyH .framer-1oosak9 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-CBFyH .framer-og84ok { 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: 30px; position: relative; width: 1200px; }\",\".framer-CBFyH .framer-4xq7s5 { 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: 20px; height: 614px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 40%; will-change: var(--framer-will-change-override, transform); }\",\".framer-CBFyH .framer-1h6nsq3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 5px; position: relative; width: 50%; }\",\".framer-CBFyH .framer-1r406i4 { --border-bottom-width: 1px; --border-color: rgba(33, 33, 33, 0.21); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: var(--token-74db18ed-e4d6-438b-8da3-23688fc26f7c, #ffffff); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.36); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 2018px; padding: 30px; position: relative; width: min-content; }\",\".framer-CBFyH .framer-edldrd { --border-bottom-width: 1px; --border-color: #7d7d7d; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 10px; position: relative; width: auto; }\",\".framer-CBFyH .framer-kk0uh0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 10px; position: relative; width: min-content; }\",\".framer-CBFyH .framer-13ywxdx { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 400px; word-break: break-word; word-wrap: break-word; }\",\".framer-CBFyH .framer-ny8isa, .framer-CBFyH .framer-iwpxvt, .framer-CBFyH .framer-yy1nw8, .framer-CBFyH .framer-1vvkwu5, .framer-CBFyH .framer-wpgiss, .framer-CBFyH .framer-ze7of7, .framer-CBFyH .framer-1icv3wl { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 400px; word-break: break-word; word-wrap: break-word; }\",\".framer-CBFyH .framer-gybekx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 59px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 356px; }\",\".framer-CBFyH .framer-1koh227 { align-content: center; align-items: center; background-color: var(--token-c61342c1-5394-433a-a898-35d294ede9de, #13191f); border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 15px 30px 15px 30px; position: relative; text-decoration: none; width: min-content; }\",\".framer-CBFyH .framer-12akz0h { align-content: center; align-items: center; background-color: var(--token-f3ab2111-eb9a-4761-ac13-e438849abd31, #5baf3b); border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 15px 30px 15px 30px; position: relative; text-decoration: none; width: min-content; }\",\".framer-CBFyH .framer-ckv2hf { --border-bottom-width: 0px; --border-color: #7d7d7d; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 460px; }\",\".framer-CBFyH .framer-4o552o, .framer-CBFyH .framer-dxkkrf, .framer-CBFyH .framer-j9yd1n, .framer-CBFyH .framer-1owqgex, .framer-CBFyH .framer-xamtms { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 10px; position: relative; width: min-content; }\",\".framer-CBFyH .framer-7f0qsq-container, .framer-CBFyH .framer-qhyzv6-container, .framer-CBFyH .framer-l0nb2o-container, .framer-CBFyH .framer-1m09a9j-container, .framer-CBFyH .framer-5cvvi8-container { flex: none; height: 30px; position: relative; width: 30px; }\",\".framer-CBFyH .framer-1gc2k5w-container { flex: none; height: 64px; position: relative; width: 64px; }\",\".framer-CBFyH .framer-achm59 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-CBFyH .framer-1axde29 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 1000px; }\",\".framer-CBFyH .framer-9w191c-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; z-index: 2; }\",\".framer-CBFyH .framer-1i5icdx-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-CBFyH.framer-11wqoj7, .framer-CBFyH .framer-q3zsv2, .framer-CBFyH .framer-zvg4h9, .framer-CBFyH .framer-1b49rh8, .framer-CBFyH .framer-wjwp2x, .framer-CBFyH .framer-1een5x8, .framer-CBFyH .framer-uyboqs, .framer-CBFyH .framer-9sj67a, .framer-CBFyH .framer-j74sk0, .framer-CBFyH .framer-1dtd7aw, .framer-CBFyH .framer-usg5hc, .framer-CBFyH .framer-10k7r92, .framer-CBFyH .framer-u95urd, .framer-CBFyH .framer-1pe6n0e, .framer-CBFyH .framer-1sy5pnt, .framer-CBFyH .framer-yg4zmr, .framer-CBFyH .framer-93pece, .framer-CBFyH .framer-ssbmw, .framer-CBFyH .framer-15p8ftp, .framer-CBFyH .framer-gfs1zh, .framer-CBFyH .framer-waq87n, .framer-CBFyH .framer-10mjk52, .framer-CBFyH .framer-gdjd3l, .framer-CBFyH .framer-b4byyk, .framer-CBFyH .framer-1cx77e4, .framer-CBFyH .framer-m5yakv, .framer-CBFyH .framer-1vh05u5, .framer-CBFyH .framer-5iy43j, .framer-CBFyH .framer-d7d7q7, .framer-CBFyH .framer-jkn24d, .framer-CBFyH .framer-19dyygt, .framer-CBFyH .framer-99mo7, .framer-CBFyH .framer-1a79575, .framer-CBFyH .framer-tmm6ip, .framer-CBFyH .framer-17hoy07, .framer-CBFyH .framer-pwa5ky, .framer-CBFyH .framer-go8lse, .framer-CBFyH .framer-f8zioh, .framer-CBFyH .framer-p4ns0q, .framer-CBFyH .framer-1b5j2y, .framer-CBFyH .framer-1trb6uj, .framer-CBFyH .framer-kwqorm, .framer-CBFyH .framer-xhzqpc, .framer-CBFyH .framer-1dru4, .framer-CBFyH .framer-1x2a2tx, .framer-CBFyH .framer-moyk7p, .framer-CBFyH .framer-1ptmp6m, .framer-CBFyH .framer-1oosak9, .framer-CBFyH .framer-og84ok, .framer-CBFyH .framer-4xq7s5, .framer-CBFyH .framer-1h6nsq3, .framer-CBFyH .framer-1r406i4, .framer-CBFyH .framer-edldrd, .framer-CBFyH .framer-kk0uh0, .framer-CBFyH .framer-gybekx, .framer-CBFyH .framer-1koh227, .framer-CBFyH .framer-12akz0h, .framer-CBFyH .framer-ckv2hf, .framer-CBFyH .framer-4o552o, .framer-CBFyH .framer-dxkkrf, .framer-CBFyH .framer-j9yd1n, .framer-CBFyH .framer-1owqgex, .framer-CBFyH .framer-xamtms, .framer-CBFyH .framer-1vm9ywq, .framer-CBFyH .framer-achm59, .framer-CBFyH .framer-1axde29 { gap: 0px; } .framer-CBFyH.framer-11wqoj7 > *, .framer-CBFyH .framer-1b49rh8 > *, .framer-CBFyH .framer-ckv2hf > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-CBFyH.framer-11wqoj7 > :first-child, .framer-CBFyH .framer-q3zsv2 > :first-child, .framer-CBFyH .framer-1b49rh8 > :first-child, .framer-CBFyH .framer-wjwp2x > :first-child, .framer-CBFyH .framer-1dtd7aw > :first-child, .framer-CBFyH .framer-u95urd > :first-child, .framer-CBFyH .framer-1pe6n0e > :first-child, .framer-CBFyH .framer-yg4zmr > :first-child, .framer-CBFyH .framer-93pece > :first-child, .framer-CBFyH .framer-ssbmw > :first-child, .framer-CBFyH .framer-gfs1zh > :first-child, .framer-CBFyH .framer-waq87n > :first-child, .framer-CBFyH .framer-10mjk52 > :first-child, .framer-CBFyH .framer-gdjd3l > :first-child, .framer-CBFyH .framer-b4byyk > :first-child, .framer-CBFyH .framer-1vh05u5 > :first-child, .framer-CBFyH .framer-5iy43j > :first-child, .framer-CBFyH .framer-jkn24d > :first-child, .framer-CBFyH .framer-19dyygt > :first-child, .framer-CBFyH .framer-99mo7 > :first-child, .framer-CBFyH .framer-1a79575 > :first-child, .framer-CBFyH .framer-tmm6ip > :first-child, .framer-CBFyH .framer-17hoy07 > :first-child, .framer-CBFyH .framer-pwa5ky > :first-child, .framer-CBFyH .framer-f8zioh > :first-child, .framer-CBFyH .framer-p4ns0q > :first-child, .framer-CBFyH .framer-1b5j2y > :first-child, .framer-CBFyH .framer-kwqorm > :first-child, .framer-CBFyH .framer-xhzqpc > :first-child, .framer-CBFyH .framer-1dru4 > :first-child, .framer-CBFyH .framer-1x2a2tx > :first-child, .framer-CBFyH .framer-moyk7p > :first-child, .framer-CBFyH .framer-1ptmp6m > :first-child, .framer-CBFyH .framer-4xq7s5 > :first-child, .framer-CBFyH .framer-1r406i4 > :first-child, .framer-CBFyH .framer-edldrd > :first-child, .framer-CBFyH .framer-kk0uh0 > :first-child, .framer-CBFyH .framer-ckv2hf > :first-child, .framer-CBFyH .framer-achm59 > :first-child { margin-top: 0px; } .framer-CBFyH.framer-11wqoj7 > :last-child, .framer-CBFyH .framer-q3zsv2 > :last-child, .framer-CBFyH .framer-1b49rh8 > :last-child, .framer-CBFyH .framer-wjwp2x > :last-child, .framer-CBFyH .framer-1dtd7aw > :last-child, .framer-CBFyH .framer-u95urd > :last-child, .framer-CBFyH .framer-1pe6n0e > :last-child, .framer-CBFyH .framer-yg4zmr > :last-child, .framer-CBFyH .framer-93pece > :last-child, .framer-CBFyH .framer-ssbmw > :last-child, .framer-CBFyH .framer-gfs1zh > :last-child, .framer-CBFyH .framer-waq87n > :last-child, .framer-CBFyH .framer-10mjk52 > :last-child, .framer-CBFyH .framer-gdjd3l > :last-child, .framer-CBFyH .framer-b4byyk > :last-child, .framer-CBFyH .framer-1vh05u5 > :last-child, .framer-CBFyH .framer-5iy43j > :last-child, .framer-CBFyH .framer-jkn24d > :last-child, .framer-CBFyH .framer-19dyygt > :last-child, .framer-CBFyH .framer-99mo7 > :last-child, .framer-CBFyH .framer-1a79575 > :last-child, .framer-CBFyH .framer-tmm6ip > :last-child, .framer-CBFyH .framer-17hoy07 > :last-child, .framer-CBFyH .framer-pwa5ky > :last-child, .framer-CBFyH .framer-f8zioh > :last-child, .framer-CBFyH .framer-p4ns0q > :last-child, .framer-CBFyH .framer-1b5j2y > :last-child, .framer-CBFyH .framer-kwqorm > :last-child, .framer-CBFyH .framer-xhzqpc > :last-child, .framer-CBFyH .framer-1dru4 > :last-child, .framer-CBFyH .framer-1x2a2tx > :last-child, .framer-CBFyH .framer-moyk7p > :last-child, .framer-CBFyH .framer-1ptmp6m > :last-child, .framer-CBFyH .framer-4xq7s5 > :last-child, .framer-CBFyH .framer-1r406i4 > :last-child, .framer-CBFyH .framer-edldrd > :last-child, .framer-CBFyH .framer-kk0uh0 > :last-child, .framer-CBFyH .framer-ckv2hf > :last-child, .framer-CBFyH .framer-achm59 > :last-child { margin-bottom: 0px; } .framer-CBFyH .framer-q3zsv2 > *, .framer-CBFyH .framer-waq87n > *, .framer-CBFyH .framer-b4byyk > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-CBFyH .framer-zvg4h9 > * { margin: 0px; margin-left: calc(52px / 2); margin-right: calc(52px / 2); } .framer-CBFyH .framer-zvg4h9 > :first-child, .framer-CBFyH .framer-1een5x8 > :first-child, .framer-CBFyH .framer-uyboqs > :first-child, .framer-CBFyH .framer-9sj67a > :first-child, .framer-CBFyH .framer-j74sk0 > :first-child, .framer-CBFyH .framer-usg5hc > :first-child, .framer-CBFyH .framer-10k7r92 > :first-child, .framer-CBFyH .framer-1sy5pnt > :first-child, .framer-CBFyH .framer-15p8ftp > :first-child, .framer-CBFyH .framer-1cx77e4 > :first-child, .framer-CBFyH .framer-m5yakv > :first-child, .framer-CBFyH .framer-d7d7q7 > :first-child, .framer-CBFyH .framer-go8lse > :first-child, .framer-CBFyH .framer-1trb6uj > :first-child, .framer-CBFyH .framer-1oosak9 > :first-child, .framer-CBFyH .framer-og84ok > :first-child, .framer-CBFyH .framer-1h6nsq3 > :first-child, .framer-CBFyH .framer-gybekx > :first-child, .framer-CBFyH .framer-1koh227 > :first-child, .framer-CBFyH .framer-12akz0h > :first-child, .framer-CBFyH .framer-4o552o > :first-child, .framer-CBFyH .framer-dxkkrf > :first-child, .framer-CBFyH .framer-j9yd1n > :first-child, .framer-CBFyH .framer-1owqgex > :first-child, .framer-CBFyH .framer-xamtms > :first-child, .framer-CBFyH .framer-1vm9ywq > :first-child, .framer-CBFyH .framer-1axde29 > :first-child { margin-left: 0px; } .framer-CBFyH .framer-zvg4h9 > :last-child, .framer-CBFyH .framer-1een5x8 > :last-child, .framer-CBFyH .framer-uyboqs > :last-child, .framer-CBFyH .framer-9sj67a > :last-child, .framer-CBFyH .framer-j74sk0 > :last-child, .framer-CBFyH .framer-usg5hc > :last-child, .framer-CBFyH .framer-10k7r92 > :last-child, .framer-CBFyH .framer-1sy5pnt > :last-child, .framer-CBFyH .framer-15p8ftp > :last-child, .framer-CBFyH .framer-1cx77e4 > :last-child, .framer-CBFyH .framer-m5yakv > :last-child, .framer-CBFyH .framer-d7d7q7 > :last-child, .framer-CBFyH .framer-go8lse > :last-child, .framer-CBFyH .framer-1trb6uj > :last-child, .framer-CBFyH .framer-1oosak9 > :last-child, .framer-CBFyH .framer-og84ok > :last-child, .framer-CBFyH .framer-1h6nsq3 > :last-child, .framer-CBFyH .framer-gybekx > :last-child, .framer-CBFyH .framer-1koh227 > :last-child, .framer-CBFyH .framer-12akz0h > :last-child, .framer-CBFyH .framer-4o552o > :last-child, .framer-CBFyH .framer-dxkkrf > :last-child, .framer-CBFyH .framer-j9yd1n > :last-child, .framer-CBFyH .framer-1owqgex > :last-child, .framer-CBFyH .framer-xamtms > :last-child, .framer-CBFyH .framer-1vm9ywq > :last-child, .framer-CBFyH .framer-1axde29 > :last-child { margin-right: 0px; } .framer-CBFyH .framer-wjwp2x > * { margin: 0px; margin-bottom: calc(17px / 2); margin-top: calc(17px / 2); } .framer-CBFyH .framer-1een5x8 > *, .framer-CBFyH .framer-uyboqs > *, .framer-CBFyH .framer-j74sk0 > *, .framer-CBFyH .framer-usg5hc > *, .framer-CBFyH .framer-10k7r92 > *, .framer-CBFyH .framer-1sy5pnt > *, .framer-CBFyH .framer-1cx77e4 > *, .framer-CBFyH .framer-m5yakv > *, .framer-CBFyH .framer-go8lse > *, .framer-CBFyH .framer-og84ok > *, .framer-CBFyH .framer-1h6nsq3 > *, .framer-CBFyH .framer-gybekx > *, .framer-CBFyH .framer-1koh227 > *, .framer-CBFyH .framer-12akz0h > *, .framer-CBFyH .framer-4o552o > *, .framer-CBFyH .framer-dxkkrf > *, .framer-CBFyH .framer-j9yd1n > *, .framer-CBFyH .framer-1owqgex > *, .framer-CBFyH .framer-xamtms > *, .framer-CBFyH .framer-1vm9ywq > *, .framer-CBFyH .framer-1axde29 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-CBFyH .framer-9sj67a > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-CBFyH .framer-1dtd7aw > * { margin: 0px; margin-bottom: calc(22px / 2); margin-top: calc(22px / 2); } .framer-CBFyH .framer-u95urd > *, .framer-CBFyH .framer-1pe6n0e > *, .framer-CBFyH .framer-yg4zmr > *, .framer-CBFyH .framer-93pece > *, .framer-CBFyH .framer-ssbmw > *, .framer-CBFyH .framer-gfs1zh > *, .framer-CBFyH .framer-10mjk52 > *, .framer-CBFyH .framer-gdjd3l > *, .framer-CBFyH .framer-1b5j2y > *, .framer-CBFyH .framer-edldrd > *, .framer-CBFyH .framer-kk0uh0 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-CBFyH .framer-15p8ftp > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-CBFyH .framer-1vh05u5 > *, .framer-CBFyH .framer-f8zioh > *, .framer-CBFyH .framer-achm59 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-CBFyH .framer-5iy43j > *, .framer-CBFyH .framer-p4ns0q > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-CBFyH .framer-d7d7q7 > * { margin: 0px; margin-left: calc(31px / 2); margin-right: calc(31px / 2); } .framer-CBFyH .framer-jkn24d > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-CBFyH .framer-19dyygt > *, .framer-CBFyH .framer-99mo7 > *, .framer-CBFyH .framer-1a79575 > *, .framer-CBFyH .framer-tmm6ip > *, .framer-CBFyH .framer-17hoy07 > *, .framer-CBFyH .framer-pwa5ky > *, .framer-CBFyH .framer-kwqorm > *, .framer-CBFyH .framer-xhzqpc > *, .framer-CBFyH .framer-1dru4 > *, .framer-CBFyH .framer-1x2a2tx > *, .framer-CBFyH .framer-moyk7p > *, .framer-CBFyH .framer-1ptmp6m > *, .framer-CBFyH .framer-4xq7s5 > *, .framer-CBFyH .framer-1r406i4 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-CBFyH .framer-1trb6uj > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-CBFyH .framer-1oosak9 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,'.framer-CBFyH[data-border=\"true\"]::after, .framer-CBFyH [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (max-width: 809px) { .framer-CBFyH.framer-11wqoj7 { width: 390px; } .framer-CBFyH .framer-13pldck-container { height: auto; order: 0; position: sticky; top: 0px; z-index: 1; } .framer-CBFyH .framer-q3zsv2 { gap: 51px; justify-content: flex-start; order: 1; overflow: visible; padding: 30px 20px 20px 20px; } .framer-CBFyH .framer-zvg4h9 { flex-direction: column; gap: 31px; } .framer-CBFyH .framer-1b49rh8 { height: min-content; padding: 0px; width: 100%; } .framer-CBFyH .framer-wjwp2x, .framer-CBFyH .framer-1eyvjzb, .framer-CBFyH .framer-go8lse, .framer-CBFyH .framer-13vnkze, .framer-CBFyH .framer-1edybfv, .framer-CBFyH .framer-17g96dl, .framer-CBFyH .framer-wfb5wv, .framer-CBFyH .framer-7m3bev, .framer-CBFyH .framer-1vtuhxa, .framer-CBFyH .framer-u027hq, .framer-CBFyH .framer-1ufd915, .framer-CBFyH .framer-1j8o97v, .framer-CBFyH .framer-wqtqnl, .framer-CBFyH .framer-1ujeoup, .framer-CBFyH .framer-1fea4bw, .framer-CBFyH .framer-1k365ug, .framer-CBFyH .framer-1h6nsq3, .framer-CBFyH .framer-kk0uh0, .framer-CBFyH .framer-13ywxdx, .framer-CBFyH .framer-ny8isa, .framer-CBFyH .framer-ckv2hf, .framer-CBFyH .framer-4o552o, .framer-CBFyH .framer-dxkkrf, .framer-CBFyH .framer-j9yd1n, .framer-CBFyH .framer-1owqgex, .framer-CBFyH .framer-xamtms, .framer-CBFyH .framer-1vm9ywq { width: 100%; } .framer-CBFyH .framer-1een5x8 { justify-content: center; order: 2; width: 100%; } .framer-CBFyH .framer-bhfixy { white-space: pre; width: auto; } .framer-CBFyH .framer-1y1k9jx-container { width: 30px; } .framer-CBFyH .framer-tjzew2 { order: 0; } .framer-CBFyH .framer-1fxehho { order: 1; } .framer-CBFyH .framer-9sj67a { align-content: flex-start; align-items: flex-start; flex-direction: column; order: 3; } .framer-CBFyH .framer-1dtd7aw { height: 234px; justify-content: flex-end; padding: 0px; width: 100%; } .framer-CBFyH .framer-usg5hc { flex-direction: column; gap: 29px; width: 100%; } .framer-CBFyH .framer-10k7r92, .framer-CBFyH .framer-1sy5pnt { gap: 0px; width: 100%; } .framer-CBFyH .framer-u95urd { order: 0; width: 50%; } .framer-CBFyH .framer-29qv09, .framer-CBFyH .framer-wb8n87, .framer-CBFyH .framer-93058e { width: 195px; } .framer-CBFyH .framer-1pe6n0e { order: 1; width: 50%; } .framer-CBFyH .framer-yg4zmr, .framer-CBFyH .framer-93pece { width: 50%; } .framer-CBFyH .framer-ssbmw { order: 2; padding: 0px 20px 50px 20px; } .framer-CBFyH .framer-15p8ftp { flex-direction: column; gap: 40px; padding: 20px 20px 33px 20px; width: 100%; } .framer-CBFyH .framer-gfs1zh { order: 0; width: 100%; } .framer-CBFyH .framer-1k2oya2 { max-height: 50%; width: 100%; } .framer-CBFyH .framer-1mu948a { max-height: 50%; } .framer-CBFyH .framer-b4byyk { order: 1; width: 100%; } .framer-CBFyH .framer-1vh05u5 { order: 3; padding: 60px 20px 60px 20px; } .framer-CBFyH .framer-d7d7q7, .framer-CBFyH .framer-1trb6uj { flex-direction: column; } .framer-CBFyH .framer-jkn24d { flex: none; width: 100%; } .framer-CBFyH .framer-bdh0qs { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-CBFyH .framer-f8zioh { order: 4; padding: 60px 0px 60px 0px; } .framer-CBFyH .framer-pyfn2r { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; width: 100%; } .framer-CBFyH .framer-kwqorm, .framer-CBFyH .framer-xhzqpc, .framer-CBFyH .framer-1dru4, .framer-CBFyH .framer-1x2a2tx, .framer-CBFyH .framer-moyk7p, .framer-CBFyH .framer-1ptmp6m { align-self: unset; height: min-content; } .framer-CBFyH .framer-1oosak9 { flex-direction: column; order: 6; } .framer-CBFyH .framer-og84ok { flex-direction: column; order: 0; width: 100%; } .framer-CBFyH .framer-4xq7s5 { height: 400px; width: 100%; } .framer-CBFyH .framer-1r406i4 { padding: 20px; width: 100%; } .framer-CBFyH .framer-edldrd { align-self: unset; width: 100%; } .framer-CBFyH .framer-gybekx { flex-direction: column; height: min-content; width: 100%; } .framer-CBFyH .framer-iwpxvt, .framer-CBFyH .framer-yy1nw8, .framer-CBFyH .framer-1vvkwu5, .framer-CBFyH .framer-wpgiss, .framer-CBFyH .framer-ze7of7 { flex: 1 0 0px; width: 1px; } .framer-CBFyH .framer-1icv3wl { width: 80%; } .framer-CBFyH .framer-achm59 { order: 5; padding: 60px 20px 60px 20px; } .framer-CBFyH .framer-9w191c-container { z-index: 0; } .framer-CBFyH .framer-1i5icdx-container { order: 7; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-CBFyH .framer-q3zsv2, .framer-CBFyH .framer-zvg4h9, .framer-CBFyH .framer-9sj67a, .framer-CBFyH .framer-usg5hc, .framer-CBFyH .framer-10k7r92, .framer-CBFyH .framer-1sy5pnt, .framer-CBFyH .framer-15p8ftp, .framer-CBFyH .framer-d7d7q7, .framer-CBFyH .framer-1trb6uj, .framer-CBFyH .framer-pyfn2r, .framer-CBFyH .framer-1oosak9, .framer-CBFyH .framer-og84ok, .framer-CBFyH .framer-gybekx { gap: 0px; } .framer-CBFyH .framer-q3zsv2 > * { margin: 0px; margin-bottom: calc(51px / 2); margin-top: calc(51px / 2); } .framer-CBFyH .framer-q3zsv2 > :first-child, .framer-CBFyH .framer-zvg4h9 > :first-child, .framer-CBFyH .framer-9sj67a > :first-child, .framer-CBFyH .framer-usg5hc > :first-child, .framer-CBFyH .framer-15p8ftp > :first-child, .framer-CBFyH .framer-d7d7q7 > :first-child, .framer-CBFyH .framer-1trb6uj > :first-child, .framer-CBFyH .framer-pyfn2r > :first-child, .framer-CBFyH .framer-1oosak9 > :first-child, .framer-CBFyH .framer-og84ok > :first-child, .framer-CBFyH .framer-gybekx > :first-child { margin-top: 0px; } .framer-CBFyH .framer-q3zsv2 > :last-child, .framer-CBFyH .framer-zvg4h9 > :last-child, .framer-CBFyH .framer-9sj67a > :last-child, .framer-CBFyH .framer-usg5hc > :last-child, .framer-CBFyH .framer-15p8ftp > :last-child, .framer-CBFyH .framer-d7d7q7 > :last-child, .framer-CBFyH .framer-1trb6uj > :last-child, .framer-CBFyH .framer-pyfn2r > :last-child, .framer-CBFyH .framer-1oosak9 > :last-child, .framer-CBFyH .framer-og84ok > :last-child, .framer-CBFyH .framer-gybekx > :last-child { margin-bottom: 0px; } .framer-CBFyH .framer-zvg4h9 > *, .framer-CBFyH .framer-d7d7q7 > * { margin: 0px; margin-bottom: calc(31px / 2); margin-top: calc(31px / 2); } .framer-CBFyH .framer-9sj67a > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-CBFyH .framer-usg5hc > * { margin: 0px; margin-bottom: calc(29px / 2); margin-top: calc(29px / 2); } .framer-CBFyH .framer-10k7r92 > *, .framer-CBFyH .framer-1sy5pnt > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-CBFyH .framer-10k7r92 > :first-child, .framer-CBFyH .framer-1sy5pnt > :first-child { margin-left: 0px; } .framer-CBFyH .framer-10k7r92 > :last-child, .framer-CBFyH .framer-1sy5pnt > :last-child { margin-right: 0px; } .framer-CBFyH .framer-15p8ftp > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-CBFyH .framer-1trb6uj > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-CBFyH .framer-pyfn2r > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-CBFyH .framer-1oosak9 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-CBFyH .framer-og84ok > *, .framer-CBFyH .framer-gybekx > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }}\",\"@media (min-width: 810px) and (max-width: 1279px) { .framer-CBFyH.framer-11wqoj7 { width: 810px; } .framer-CBFyH .framer-13pldck-container { order: 0; } .framer-CBFyH .framer-q3zsv2 { justify-content: flex-start; order: 1; } .framer-CBFyH .framer-zvg4h9 { flex-direction: column; gap: 0px; justify-content: flex-start; } .framer-CBFyH .framer-1b49rh8 { align-content: center; align-items: center; width: 100%; } .framer-CBFyH .framer-wjwp2x { align-content: center; align-items: center; } .framer-CBFyH .framer-usg5hc { flex-direction: column; gap: 29px; width: 100%; } .framer-CBFyH .framer-10k7r92 { width: 550px; } .framer-CBFyH .framer-u95urd { width: 49%; } .framer-CBFyH .framer-1pe6n0e { --border-right-width: 0px; } .framer-CBFyH .framer-ssbmw { order: 2; } .framer-CBFyH .framer-15p8ftp { flex-direction: column; gap: 35px; padding: 50px 20px 40px 20px; width: 100%; } .framer-CBFyH .framer-gfs1zh, .framer-CBFyH .framer-b4byyk, .framer-CBFyH .framer-13vnkze, .framer-CBFyH .framer-1edybfv, .framer-CBFyH .framer-17g96dl, .framer-CBFyH .framer-wfb5wv, .framer-CBFyH .framer-7m3bev, .framer-CBFyH .framer-1vtuhxa, .framer-CBFyH .framer-u027hq, .framer-CBFyH .framer-1ufd915, .framer-CBFyH .framer-1j8o97v, .framer-CBFyH .framer-wqtqnl, .framer-CBFyH .framer-1ujeoup, .framer-CBFyH .framer-1fea4bw, .framer-CBFyH .framer-1k365ug, .framer-CBFyH .framer-kk0uh0, .framer-CBFyH .framer-13ywxdx, .framer-CBFyH .framer-ny8isa, .framer-CBFyH .framer-ckv2hf, .framer-CBFyH .framer-4o552o, .framer-CBFyH .framer-dxkkrf, .framer-CBFyH .framer-j9yd1n, .framer-CBFyH .framer-1owqgex, .framer-CBFyH .framer-xamtms, .framer-CBFyH .framer-1vm9ywq { width: 100%; } .framer-CBFyH .framer-1cx77e4 { width: 56%; } .framer-CBFyH .framer-1vh05u5 { order: 3; padding: 80px 40px 80px 40px; } .framer-CBFyH .framer-1eyvjzb { white-space: pre; width: 100%; } .framer-CBFyH .framer-f8zioh { order: 4; padding: 80px 40px 80px 40px; } .framer-CBFyH .framer-4bu53e { white-space: pre; } .framer-CBFyH .framer-1oosak9 { order: 5; } .framer-CBFyH .framer-og84ok { padding: 10px; width: 100%; } .framer-CBFyH .framer-4xq7s5 { height: 670px; width: 33%; } .framer-CBFyH .framer-1h6nsq3 { width: 62%; } .framer-CBFyH .framer-1r406i4 { padding: 40px; width: 100%; } .framer-CBFyH .framer-edldrd { align-self: unset; width: 100%; } .framer-CBFyH .framer-iwpxvt, .framer-CBFyH .framer-yy1nw8, .framer-CBFyH .framer-1vvkwu5, .framer-CBFyH .framer-wpgiss, .framer-CBFyH .framer-ze7of7, .framer-CBFyH .framer-1icv3wl { width: 90%; } .framer-CBFyH .framer-achm59 { order: 6; padding: 80px 40px 80px 40px; } .framer-CBFyH .framer-1i5icdx-container { order: 7; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-CBFyH .framer-zvg4h9, .framer-CBFyH .framer-usg5hc, .framer-CBFyH .framer-15p8ftp { gap: 0px; } .framer-CBFyH .framer-zvg4h9 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-CBFyH .framer-zvg4h9 > :first-child, .framer-CBFyH .framer-usg5hc > :first-child, .framer-CBFyH .framer-15p8ftp > :first-child { margin-top: 0px; } .framer-CBFyH .framer-zvg4h9 > :last-child, .framer-CBFyH .framer-usg5hc > :last-child, .framer-CBFyH .framer-15p8ftp > :last-child { margin-bottom: 0px; } .framer-CBFyH .framer-usg5hc > * { margin: 0px; margin-bottom: calc(29px / 2); margin-top: calc(29px / 2); } .framer-CBFyH .framer-15p8ftp > * { margin: 0px; margin-bottom: calc(35px / 2); margin-top: calc(35px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7979\n * @framerIntrinsicWidth 1280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"OCIK0rmcr\":{\"layout\":[\"fixed\",\"auto\"]},\"BoiTJxKk2\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramervF2SIzeSX=withCSS(Component,css,\"framer-CBFyH\");export default FramervF2SIzeSX;FramervF2SIzeSX.displayName=\"Page\";FramervF2SIzeSX.defaultProps={height:7979,width:1280};addFonts(FramervF2SIzeSX,[{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/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Lexend Exa\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/lexendexa/v30/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9olSabCHJ8BRq0b.woff2\",weight:\"600\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"},{family:\"Lexend Deca\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4ws1AqRPCqLNflg.woff2\",weight:\"500\"},{family:\"Lexend Deca\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/lexenddeca/v21/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4LspAqRPCqLNflg.woff2\",weight:\"600\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\",weight:\"600\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v22/pxiByp8kv8JHgFVrLGT9V15vFP-KUEg.woff2\",weight:\"500\"},{family:\"Inter\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCM3FwrK3iLTcvneQg7Ca725JhhKnNqk4j1ebLhAm8SrXTcPtxhiJ-Ek-7MeA.woff2\",weight:\"700\"},{family:\"Montserrat\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v29/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Ew7Y3tcoqK5.woff2\",weight:\"400\"},{family:\"Montserrat\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v29/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCuM70w7Y3tcoqK5.woff2\",weight:\"700\"},{family:\"Montserrat\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v29/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCu170w7Y3tcoqK5.woff2\",weight:\"600\"},{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\"}]},...MainNavigationFonts,...LogoFonts,...YouTubeFonts,...IconoirFonts,...AccordionCopyFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramervF2SIzeSX\",\"slots\":[],\"annotations\":{\"framerAcceptsLayoutTemplate\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1280\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"OCIK0rmcr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"BoiTJxKk2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"7979\",\"framerScrollSections\":\"* @framerResponsiveScreen\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "4gCAAqU,IAAIA,IAAa,SAASA,EAAY,CAACA,EAAY,OAAU,MAAMA,EAAY,KAAQ,KAAKA,EAAY,KAAQ,MAAO,GAAGA,KAAcA,GAAY,CAAC,EAAE,EAAE,IAAIC,IAAkB,SAASA,EAAiB,CAACA,EAAiB,KAAQ,eAAeA,EAAiB,OAAU,iBAAiBA,EAAiB,IAAO,cAAcA,EAAiB,IAAO,KAAM,GAAGA,KAAmBA,GAAiB,CAAC,EAAE,EAAE,IAAIC,IAAiB,SAASA,EAAgB,CAACA,EAAgB,KAAQ,OAAOA,EAAgB,IAAO,KAAM,GAAGA,KAAkBA,GAAgB,CAAC,EAAE,EAAE,IAAIC,GAAO,KAAK,SAASC,IAAO,CAAC,OAAGD,KAAS,OAAKA,GAAO,2CAA2C,KAAKE,EAAU,SAAS,GAASF,EAAO,CAAC,IAAMG,GAAe,IAAI,IAAI,CAAC,EAQzgC,SAASC,GAAQ,CAAC,IAAAC,EAAI,KAAAC,EAAK,WAAAC,EAAW,UAAAC,EAAU,MAAAC,EAAM,QAAAC,EAAQ,aAAAC,EAAa,aAAAC,EAAa,YAAAC,EAAY,UAAAC,EAAU,MAAAC,EAAM,GAAGC,CAAK,EAAE,CAAC,IAAMC,EAASC,GAAc,EAAQC,EAAWb,IAAO,MAAYc,EAAcH,GAAUT,IAAY,OAAO,CAACW,EAAgB,CAACE,EAAaC,CAAY,EAAEC,GAAW,IAAI,GAAK,EAAK,EAAO,CAACC,EAAUC,CAAU,EAAEF,GAAW,IAAI,GAAK,CAACH,CAAa,EAAO,CAACM,EAAUC,CAAU,EAAEC,GAAS,EAAK,EACnaC,EAAuBC,GAAqB3B,GAClD,IAAIF,GAAM,EAAE,IAAI,EAAK,EAAQ8B,EAAaC,GAAUhB,CAAK,EAAQiB,GAAgBF,IAAe,mBAAmBA,IAAe,MAAM,GAAG1B,IAAM,GAAI,OAAoB6B,EAAKC,GAAa,CAAC,CAAC,EAAG,IAAMC,EAAUC,GAAchC,CAAG,EAAE,GAAG+B,IAAY,OAAW,OAAoBF,EAAKI,GAAa,CAAC,QAAQ,sBAAsB,CAAC,EAAG,GAAK,CAACC,EAAQC,CAAQ,EAAEJ,EACxVK,GAAaC,GAAgBH,EAAQ/B,EAAUmC,GAAiB,EAAE,OAAO,KAAK,EAC9EC,EAAaJ,EAAS,aAAa,OAAAI,EAAa,IAAI,iBAAiB,GAAG,EAAEA,EAAa,IAAI,MAAM,GAAG,EAAEA,EAAa,IAAI,iBAAiB,GAAG,EAAEA,EAAa,IAAI,cAAc,GAAG,EACrL,CAACf,IAAyBV,GAC1BC,GAAeI,IAAYoB,EAAa,IAAI,WAAW,GAAG,EAAMzB,GAAYZ,GAAYqC,EAAa,IAAI,OAAO,GAAG,EAAMtC,IAAO,SAAQsC,EAAa,IAAI,OAAO,GAAG,EAAEA,EAAa,IAAI,WAAWL,CAAO,GAAO9B,GAAOmC,EAAa,IAAI,QAAQ,OAAO,EAAuBC,EAAM,UAAU,CAAC,eAAe,IAAIlB,EAAW,EAAI,EAAE,eAAe,IAAIA,EAAW,EAAK,EAAE,cAAcL,EAAa,UAAUG,EAAW,QAAQA,EAAW,MAAM,CAAC,GAAGqB,GAAa,aAAAf,EAAa,UAG9cE,KAAkBT,GAAWP,GAAU,yBAAyB,QAAQ,OAAO,UAAU,SAAS,QAAQ,EAAE,KAAK,eAAe,SAAS,CAACI,GAA2Ba,EAAK,OAAO,CAAC,IAAI,aAAa,KAAK,yBAAyB,CAAC,EAAEb,GAA2Ba,EAAK,OAAO,CAAC,IAAI,aAAa,KAAK,wBAAwB,CAAC,EAAeA,EAAK,MAAM,CAAC,MAAM,CAAC,GAAGa,GAAW,WAAW3B,EAAc,sBAAsBqB,gBAA0B,MAAS,CAAC,CAAC,EAAGxB,EAAga,KAA1YiB,EAAK,SAAS,CAAC,MAAMnB,GAAO,gBAAgB,MAAM,CAAC,GAAGgC,GAAW,QAAQvB,GAAWK,EAAuB,OAAU,MAAM,EAAE,IAAIW,EAAS,KAAK,YAAY,IAAI,MAAM,oGAAoG,QAAQ9B,EAAQ,aAAaC,EAAa,aAAaC,EAAa,YAAYC,EAAY,UAAUC,EAAU,QAAQ,MAAM,CAAC,EAAOU,GAAWK,EAAuB,KAAkBK,EAAKc,GAAW,CAAC,QAAQvB,EAAW,UAAUC,EAAU,MAAMjB,CAAK,CAAC,CAAC,CAAC,CAAC,CAAE,CAACL,GAAQ,YAAY,UAAU6C,GAAoB7C,GAAQ,CAAC,IAAI,CAAC,KAAK8C,EAAY,OAAO,MAAM,OAAO,EAAE,KAAK,CAAC,KAAKA,EAAY,KAAK,MAAM,WAAW,QAAQ,OAAO,OAAOrD,EAAW,CAAC,EAAE,WAAW,CAAC,MAAM,OAAO,KAAKqD,EAAY,QAAQ,aAAa,MAAM,cAAc,KAAK,OAAOlC,EAAM,CAAC,OAAOA,EAAM,OAAO,KAAM,CAAC,EAAE,UAAU,CAAC,MAAM,YAAY,YAAY,4CAA4C,KAAKkC,EAAY,KAAK,QAAQ,OAAO,OAAOpD,EAAgB,EAAE,OAAOkB,EAAM,CAAC,OAAOA,EAAM,OAAO,KAAM,CAAC,EAAE,MAAM,CAAC,MAAM,QAAQ,KAAKkC,EAAY,QAAQ,aAAa,MAAM,cAAc,OAAO,EAAE,GAAGC,GAAoB,GAAGC,EAAa,CAAC,EAAE,IAAMC,GAAa,CAAC,IAAI,+BAA+B,KAAK,MAAM,WAAW,GAAK,UAAU,iBAAiB,MAAM,EAAI,EAAEjD,GAAQ,aAAaiD,GAAa,SAAShB,GAAciB,EAAU,CAAC,IAAIjD,EAAI,GAAG,CAACA,EAAI,IAAI,IAAIiD,CAAS,CAAE,MAAC,CAAM,IAAMd,EAASe,GAAYD,CAAS,EAAE,MAAM,CAACA,EAAUd,CAAQ,CAAE,CAAC,GAAGnC,EAAI,WAAW,eAAeA,EAAI,WAAW,mBAAmBA,EAAI,WAAW,wBAAwBA,EAAI,WAAW,2BAA2B,CAAC,IAAMmD,EAAanD,EAAI,SAAS,MAAM,CAAC,EAAE,MAAM,GAAG,EAChlE,GAAGmD,EAAa,CAAC,IAAI,QAAQ,CAAC,IAAMjB,EAAQlC,EAAI,aAAa,IAAI,GAAG,EAAQmC,EAASe,GAAYhB,CAAO,EAAE,MAAM,CAACA,EAAQC,CAAQ,EACjI,GAAGgB,EAAa,CAAC,IAAI,QAAuC,MAAM,CAAtBA,EAAa,CAAC,EAAiBnD,CAAG,EAC9E,GAAGA,EAAI,WAAW,WAAW,CAAC,IAAMkC,EAAQlC,EAAI,SAAS,MAAM,CAAC,EAAQmC,EAASe,GAAYhB,CAAO,EAAE,MAAM,CAACA,EAAQC,CAAQ,EAAG,CAAC,SAASe,GAAYhB,EAAQ,CAAC,OAAO,IAAI,IAAI,iCAAiCA,GAAS,CAAE,CAAC,SAASG,GAAgBH,EAAQkB,EAAIC,EAAO,MAAM,CAC7Q,IAAMC,EAAQD,IAAS,OAAaE,EAAID,EAAQ,+BAA+B,0BAAgCE,EAAIF,EAAQ,OAAO,MAAM,OAAOF,EAAI,CAAC,IAAI,cAAc,MAAM,GAAGG,IAAMrB,eAAqBsB,IAAM,IAAI,iBAAiB,MAAM,GAAGD,IAAMrB,eAAqBsB,IAAM,IAAI,eAAe,MAAM,GAAGD,IAAMrB,mBAAyBsB,IAAM,QAAQ,MAAM,GAAGD,IAAMrB,OAAasB,GAAM,CAAC,CAAC,IAAIC,GAChY,SAASnB,IAAkB,CAC3B,GAAG,CAACoB,EAAQ,MAAO,GAAM,GAAGD,KAAoB,OAAW,OAAOA,GAAmB,IAAME,EAAQ,SAAS,cAAc,QAAQ,EAAE,OAAGA,EAAQ,YAAYA,EAAQ,WAAW,IAAI,EAC3KA,EAAQ,UAAU,YAAY,EAAE,QAAQ,iBAAiB,IAAI,EAC7D,EAAO,CACd,SAAS7B,IAAc,CAAC,OAAoBD,EAAK,MAAM,CAAC,MAAM,CAAC,GAAG+B,GAAgB,SAAS,QAAQ,EAAE,SAAsB/B,EAAK,MAAM,CAAC,MAAMgC,GAAgB,SAAS,mEAAmE,CAAC,CAAC,CAAC,CAAE,CAAC,SAAS5B,GAAa,CAAC,QAAA6B,CAAO,EAAE,CAAC,OAAoBjC,EAAK,MAAM,CAAC,UAAU,oCAAoC,MAAM,CAAC,GAAGkC,GAAgB,SAAS,QAAQ,EAAE,SAAsBvB,EAAM,MAAM,CAAC,MAAMqB,GAAgB,SAAS,CAAC,UAAUC,CAAO,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,SAASnB,GAAW,CAAC,QAAAtC,EAAQ,UAAAgB,EAAU,MAAAjB,CAAK,EAAE,CAAC,OAAoByB,EAAK,SAAS,CAAC,QAAQxB,EAAQ,aAAa,OAAO,MAAM2D,GAAY,SAAsBxB,EAAM,MAAM,CAAC,OAAO,OAAO,QAAQ,MAAM,QAAQ,YAAY,MAAM,OAAO,SAAS,CAAcX,EAAK,OAAO,CAAC,EAAE,wTAAwT,KAAKR,EAAUjB,EAAM,OAAO,OAAO,UAAU,YAAYiB,GAAUjB,EAAM,EAAK,GAAG,MAAM,CAAC,WAAW,kFAAkF,CAAC,CAAC,EAAeyB,EAAK,OAAO,CAAC,EAAE,sBAAsB,KAAK,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,IAAMmC,GAAY,CAAC,SAAS,WAAW,IAAI,MAAM,KAAK,MAAM,UAAU,wBAAwB,MAAM,GAAG,OAAO,GAAG,QAAQ,EAAE,OAAO,OAAO,WAAW,cAAc,OAAO,SAAS,EAAQvB,GAAa,CAAC,SAAS,WAAW,MAAM,OAAO,OAAO,MAAM,EAAQoB,GAAgB,CAAC,UAAU,SAAS,SAAS,GAAG,EAAQnB,GAAW,CAAC,SAAS,WAAW,IAAI,EAAE,KAAK,EAAE,OAAO,OAAO,MAAM,MAAM,EC1B1oDuB,EAAU,0BAA0B,CAAC,cAAc,CAAC,EAAS,IAAMC,GAAM,CAAC,CAAC,OAAO,QAAQ,YAAY,CAAC,sBAAsB,qCAAqC,IAAI,uGAAuG,EAAE,MAAM,SAAS,IAAI,wGAAwG,OAAO,KAAK,CAAC,EAAeC,GAAI,CAAC,ojBAAojB,EAAeC,GAAU,eCChqB,IAAMC,GAAW,CAAC,YAAY,WAAW,EAAQC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,kBAAkB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAwB,CAAC,OAAO,YAAY,KAAK,WAAW,EAAQC,GAAY,CAAC,QAAQ,CAAC,QAAQ,GAAG,MAAM,EAAE,SAAS,EAAE,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,CAAC,EAAQC,GAA8BC,EAAW,SAAS,CAAC,GAAAC,EAAG,MAAAC,EAAM,UAAAC,EAAU,MAAAC,EAAM,OAAAC,EAAO,SAAAC,EAAS,QAAQC,EAAa,YAAY,SAASC,EAAU,4FAA4F,OAAOC,EAAU,4FAA4F,GAAGC,CAAS,EAAEC,EAAI,CAA4D,IAAMf,EAA5CC,GAAwBU,CAAY,GAAgCA,EAAkB,CAAC,YAAAK,EAAY,WAAAC,EAAW,eAAAC,EAAe,gBAAAC,EAAgB,WAAAC,EAAW,WAAAC,EAAW,SAAAvB,CAAQ,EAAEwB,GAAgB,CAAC,WAAA5B,GAAW,eAAe,YAAY,YAAAQ,GAAY,QAAAF,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ4B,EAAiBzB,EAAS,KAAK,GAAG,EAAEgB,EAAU,iBAAsB,CAAC,sBAAAU,EAAsB,MAAAC,CAAK,EAAEC,GAAyBV,CAAW,EAAQW,GAAYH,EAAsB,SAASI,KAAO,CAACR,EAAW,WAAW,CAAE,CAAC,EAAQS,EAAYL,EAAsB,SAASI,KAAO,CAACR,EAAW,WAAW,CAAE,CAAC,EAAQU,EAAY,IAAQd,IAAc,YAA6Ce,EAAsBC,EAAM,EAAE,OAAqBC,EAAKC,EAAY,CAAC,GAAGxB,GAA4CqB,EAAgB,SAAuBE,EAAKE,EAAO,IAAI,CAAC,QAAQnC,EAAQ,QAAQF,EAAS,aAAa,IAAIqB,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,UAAUiB,EAAG,eAA2B7B,GAAUU,CAAU,EAAE,MAAM,CAAC,QAAQ,UAAU,EAAE,SAAuBoB,EAAMF,EAAO,IAAI,CAAC,GAAGrB,EAAU,UAAUsB,EAAG,iBAAiB7B,CAAS,EAAE,mBAAmB,SAAS,iBAAiBgB,EAAiB,SAAS,YAAY,IAAIR,EAAI,MAAM,CAAC,GAAGT,CAAK,EAAE,WAAWe,EAAW,GAAGzB,GAAqB,CAAC,UAAU,CAAC,mBAAmB,MAAM,CAAC,EAAEoB,EAAYE,CAAc,EAAE,SAAS,CAAemB,EAAMF,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB,GAAK,iBAAiBZ,EAAiB,SAAS,YAAY,MAAMI,GAAY,WAAWN,EAAW,GAAGzB,GAAqB,CAAC,UAAU,CAAC,MAAMiC,CAAW,CAAC,EAAEb,EAAYE,CAAc,EAAE,SAAS,CAAemB,EAAMF,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,iBAAiBZ,EAAiB,SAAS,YAAY,MAAM,CAAC,QAAQ,GAAG,OAAO,CAAC,EAAE,WAAWF,EAAW,SAAS,CAAC,UAAU,CAAC,OAAO,EAAE,CAAC,EAAE,SAAS,CAAeY,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBZ,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,eAAe,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,WAAWF,CAAU,CAAC,EAAgBY,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBZ,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,eAAe,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,WAAWF,CAAU,CAAC,CAAC,CAAC,CAAC,EAAgBY,EAAKK,EAAS,CAAC,sBAAsB,GAAK,SAAuBL,EAAWM,EAAS,CAAC,SAAuBN,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,yBAAyB,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,iBAAiBZ,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,2BAA2B,mBAAmB,gCAAgC,YAAY,6BAA6B,KAAK,EAAE,KAAKX,EAAU,WAAWS,EAAW,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAES,EAAY,GAAiBG,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiBZ,EAAiB,SAAS,YAAY,MAAM,CAAC,QAAQ,CAAC,EAAE,WAAWF,EAAW,SAAS,CAAC,UAAU,CAAC,QAAQ,CAAC,CAAC,EAAE,SAAuBY,EAAKK,EAAS,CAAC,sBAAsB,GAAK,SAAuBL,EAAWM,EAAS,CAAC,SAAuBN,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,2FAA2F,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,iBAAiBZ,EAAiB,SAAS,YAAY,MAAM,CAAC,6BAA6B,MAAM,QAAQ,EAAE,EAAE,KAAKV,EAAU,WAAWQ,EAAW,SAAS,CAAC,UAAU,CAAC,QAAQ,CAAC,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQmB,GAAI,CAAC,sZAAsZ,kFAAkF,8CAA8C,mDAAmD,4RAA4R,+VAA+V,mJAAmJ,qMAAqM,oMAAoM,sKAAsK,4SAA4S,mNAAmN,w2BAAw2B,GAAeA,EAAG,EAMlgRC,GAAgBC,EAAQvC,GAAUqC,GAAI,cAAc,EAASG,EAAQF,GAAgBA,GAAgB,YAAY,MAAMA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,GAAG,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,SAAS,MAAM,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,4FAA4F,gBAAgB,GAAK,MAAM,WAAW,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,4FAA4F,gBAAgB,GAAK,MAAM,SAAS,KAAKA,EAAY,MAAM,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,GAAeM,EAAK,CAAC,ECN5V,IAAMC,GAASC,EAASC,CAAG,EAAQC,GAAW,CAAC,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,EAAkO,IAAMC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,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,GAASC,EAAaC,CAAQ,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,CAAK,GAAUC,GAAuB,CAACD,EAAME,IAAeF,EAAM,iBAAwBE,EAAS,KAAK,GAAG,EAAEF,EAAM,iBAAwBE,EAAS,KAAK,GAAG,EAAUC,GAA6BC,EAAW,SAASJ,EAAMK,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,GAAGC,CAAS,EAAEjB,GAASI,CAAK,EAAO,CAAC,YAAAc,EAAY,WAAAC,EAAW,gBAAAC,EAAgB,eAAAC,EAAe,gBAAAC,EAAgB,WAAAC,EAAW,SAAAjB,CAAQ,EAAEkB,GAAgB,CAAC,WAAAC,GAAW,eAAe,YAAY,QAAAT,EAAQ,kBAAAU,EAAiB,CAAC,EAAQC,EAAiBtB,GAAuBD,EAAME,CAAQ,EAAQsB,EAAWC,GAAO,IAAI,EAAQC,EAAsBC,EAAM,EAAQC,EAAsB,CAAC,EAAQC,EAAkBC,GAAqB,EAAE,OAAoBtC,EAAKuC,EAAY,CAAC,GAAGpB,GAA4Ce,EAAgB,SAAsBlC,EAAKC,GAAS,CAAC,QAAQS,EAAS,QAAQ,GAAM,SAAsBV,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBkD,EAAMtC,EAAO,IAAI,CAAC,GAAGmB,EAAU,GAAGG,EAAgB,UAAUiB,EAAGC,GAAkB,GAAGN,EAAsB,iBAAiBlB,EAAUK,CAAU,EAAE,mBAAmB,YAAY,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIlB,GAA6BmB,EAAK,MAAM,CAAC,gBAAgB,wEAAwE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,GAAGf,CAAK,EAAE,SAAS,CAAcjB,EAAK2C,EAA0B,CAAC,SAAsB3C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB6B,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAK4C,EAAI,CAAC,OAAO,wRAAmR,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,SAAS,iEAAiE,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe5C,EAAK2C,EAA0B,CAAC,SAAsB3C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB6B,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAK4C,EAAI,CAAC,OAAO,yNAAyN,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,SAAS,wCAAwC,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe5C,EAAK2C,EAA0B,CAAC,SAAsB3C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB6B,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAK4C,EAAI,CAAC,OAAO,0SAA0S,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,SAAS,oCAAoC,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe5C,EAAK2C,EAA0B,CAAC,SAAsB3C,EAAKE,EAAO,IAAI,CAAC,UAAU,yBAAyB,iBAAiB6B,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAK4C,EAAI,CAAC,OAAO;AAAA,EAA8F,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,SAAS,iEAAiE,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe5C,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,iBAAiB6B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,CAAC,CAAC,EAAe/B,EAAK2C,EAA0B,CAAC,SAAsB3C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB6B,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAK4C,EAAI,CAAC,OAAO,sPAAsP,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,SAAS,8CAA8C,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe5C,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,iBAAiB6B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,CAAC,CAAC,EAAe/B,EAAK2C,EAA0B,CAAC,SAAsB3C,EAAKE,EAAO,IAAI,CAAC,UAAU,yBAAyB,iBAAiB6B,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAK4C,EAAI,CAAC,OAAO,uSAAuS,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,SAAS,wFAAwF,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe5C,EAAK2C,EAA0B,CAAC,SAAsB3C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB6B,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAK4C,EAAI,CAAC,OAAO;AAAA;AAAA;AAAA;AAAA;AAAA,2EAA6W,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,SAAS,kCAAkC,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe5C,EAAK2C,EAA0B,CAAC,SAAsB3C,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB6B,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAK4C,EAAI,CAAC,OAAO,+NAA+N,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,SAAS,wCAAwC,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe5C,EAAK2C,EAA0B,CAAC,SAAsB3C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB6B,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAK4C,EAAI,CAAC,OAAO,wJAAwJ,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,SAAS,sCAAsC,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe5C,EAAK2C,EAA0B,CAAC,SAAsB3C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB6B,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAK4C,EAAI,CAAC,OAAO,wOAAwO,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,SAAS,oDAAoD,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe5C,EAAK2C,EAA0B,CAAC,SAAsB3C,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB6B,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAK4C,EAAI,CAAC,OAAO,6OAA6O,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,SAAS,+BAA+B,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe5C,EAAK2C,EAA0B,CAAC,SAAsB3C,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB6B,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAK4C,EAAI,CAAC,OAAO,yRAAyR,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,SAAS,oEAAoE,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQC,GAAI,CAAC,kFAAkF,kFAAkF,0VAA0V,qiBAAqiB,+IAA+I,4WAA4W,EAQ1iYC,GAAgBC,EAAQpC,GAAUkC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,iBAAiBA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAG,EAAEG,GAASH,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,EAAE,GAAGI,EAAQ,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECTzQC,EAAU,UAAU,CAAC,iBAAiB,iBAAiB,uBAAuB,sBAAsB,CAAC,EAAS,IAAMC,GAAM,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,UAAU,OAAO,SAAS,MAAM,SAAS,IAAI,gFAAgF,OAAO,KAAK,EAAE,CAAC,OAAO,UAAU,OAAO,SAAS,MAAM,SAAS,IAAI,gFAAgF,OAAO,KAAK,EAAE,CAAC,OAAO,UAAU,OAAO,SAAS,MAAM,SAAS,IAAI,mFAAmF,OAAO,KAAK,EAAE,CAAC,OAAO,UAAU,OAAO,SAAS,MAAM,SAAS,IAAI,mFAAmF,OAAO,KAAK,CAAC,CAAC,CAAC,EAAeC,GAAI,CAAC,27BAA27B,EAAeC,GAAU,eCCjtDC,EAAU,UAAU,CAAC,mBAAmB,cAAc,CAAC,EAAS,IAAMC,GAAM,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,IAAI,0GAA0G,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,IAAI,0GAA0G,OAAO,KAAK,CAAC,CAAC,CAAC,EAAeC,GAAI,CAAC,ssBAAssB,EAAeC,GAAU,eCDlrCC,EAAU,UAAU,CAAC,0BAA0B,CAAC,EAAS,IAAMC,GAAM,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,IAAI,wFAAwF,OAAO,KAAK,CAAC,CAAC,CAAC,EAAeC,GAAI,CAAC,8dAA8d,EAAeC,GAAU,eCCk/B,IAAMC,GAAoBC,EAASC,EAAc,EAAQC,GAAUF,EAASG,CAAI,EAAQC,GAA4BC,GAA6BC,EAAO,EAAE,CAAC,OAAO,YAAY,SAASC,GAAe,QAAQ,WAAW,CAAC,EAAQC,GAAaR,EAASS,EAAO,EAAQC,GAA6BL,GAA6BC,EAAO,EAAE,CAAC,OAAO,YAAY,SAASC,GAAe,QAAQ,WAAW,CAAC,EAAQI,GAAoCN,GAA6BC,EAAO,IAAI,CAAC,OAAO,YAAY,SAASM,GAAqB,QAAQ,WAAW,CAAC,EAAQC,GAAab,EAASc,CAAO,EAAQC,GAAmBf,EAASgB,EAAa,EAAQC,GAAYjB,EAASkB,EAAM,EAAQC,GAAY,CAAC,UAAU,6CAA6C,UAAU,qBAAqB,UAAU,qBAAqB,EAAoD,IAAMC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,EAAQC,GAAMC,GAAW,MAAM,QAAQA,CAAK,EAASA,EAAM,OAAO,EAA4BA,GAAQ,MAAMA,IAAQ,GAAWC,GAAOD,GAAc,CAACA,EAAcE,GAAkBF,GAAW,OAAOA,GAAQ,UAAUA,IAAQ,MAAM,OAAOA,EAAM,KAAM,SAAiBA,EAAc,OAAOA,GAAQ,SAAS,CAAC,IAAIA,CAAK,EAAE,OAAkBG,GAAU,CAAC,CAAC,MAAAH,CAAK,IAAoBI,GAAoB,EAAqB,KAAyBC,EAAK,QAAQ,CAAC,wBAAwB,CAAC,OAAOL,CAAK,EAAE,yBAAyB,EAAE,CAAC,EAAUM,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,EAAW,SAASF,EAAMG,EAAI,CAAC,IAAMC,EAAYC,GAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,EAAM,EAAO,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAQC,EAAkBC,GAAqB,EAAQC,EAAqBC,GAAwB,EAAO,CAACC,CAAgB,EAAEC,GAAa,CAAC,KAAK,CAAC,MAAM,YAAY,KAAKC,GAAQ,KAAK,YAAY,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,CAAC,EAAE,MAAMC,GAAoCL,EAAqB,WAAW,CAAC,CAAC,EAAQM,EAAwBC,GAAK,CAAC,GAAG,CAACL,EAAiB,MAAM,IAAIM,GAAc,mCAAmC,KAAK,UAAUR,CAAoB,GAAG,EAAE,OAAOE,EAAiBK,CAAG,CAAE,EAAO,CAAC,MAAAE,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAUT,EAAwB,WAAW,GAAG,GAAG,UAAAU,EAAUV,EAAwB,WAAW,GAAG,GAAG,UAAAW,EAAUX,EAAwB,WAAW,GAAG,GAAG,UAAAY,EAAUZ,EAAwB,WAAW,EAAE,UAAAa,EAAU,UAAAC,EAAUd,EAAwB,WAAW,GAAG,GAAG,UAAAe,GAAU,UAAAC,EAAU,UAAAC,EAAUjB,EAAwB,WAAW,GAAG,GAAG,UAAAkB,EAAU,UAAAC,GAAU,UAAAC,EAAUpB,EAAwB,WAAW,GAAG,GAAG,UAAAqB,GAAU,UAAAC,GAAUtB,EAAwB,WAAW,GAAG,GAAG,UAAAuB,GAAU,UAAAC,GAAUxB,EAAwB,WAAW,GAAG,GAAG,UAAAyB,GAAU,UAAAC,GAAU1B,EAAwB,WAAW,GAAG,GAAG,UAAA2B,GAAU3B,EAAwB,WAAW,GAAG,GAAG,UAAA4B,GAAU5B,EAAwB,WAAW,GAAG,GAAG,UAAA6B,GAAU7B,EAAwB,WAAW,GAAG,GAAG,UAAA8B,GAAU9B,EAAwB,WAAW,GAAG,GAAG,UAAA+B,GAAU/B,EAAwB,WAAW,GAAG,GAAG,UAAAgC,GAAUhC,EAAwB,WAAW,GAAG,GAAG,UAAAiC,GAAU,UAAAC,GAAU,UAAAC,GAAU,UAAAC,GAAU,UAAAC,GAAU,UAAAC,GAAU,UAAAC,GAAU,UAAAC,GAAU,UAAAC,GAAU,UAAAC,GAAU,UAAAC,GAAU,UAAAC,GAAU,UAAAC,GAAU,UAAAC,GAAU,UAAAC,GAAU,UAAAC,GAAU,UAAAC,GAAUjD,EAAwB,WAAW,GAAG,GAAG,UAAAkD,GAAU,GAAGC,EAAS,EAAE3E,GAASI,CAAK,EAAQwE,GAAU,IAAI,CAAC,IAAMC,EAASA,GAAiBzD,EAAiBP,CAAY,EAAE,GAAGgE,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,CAAC1D,EAAiBP,CAAY,CAAC,EAAQkE,GAAmB,IAAI,CAAC,IAAMF,EAASA,GAAiBzD,EAAiBP,CAAY,EAAE,SAAS,MAAMgE,EAAS,OAAO,GAAMA,EAAS,UAAU,SAAS,cAAc,uBAAuB,GAAG,aAAa,UAAUA,EAAS,QAAQ,CAAG,EAAE,CAACzD,EAAiBP,CAAY,CAAC,EAAE,GAAK,CAACmE,EAAYC,EAAmB,EAAEC,GAA8BpD,EAAQqD,GAAY,EAAK,EAAQC,GAAe,OAAuLC,GAAkBC,EAAGhG,GAAkB,GAAxL,CAAasC,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,EAAS,CAAuE,EAAQ2D,GAAQ7F,GAAOF,GAAM2C,CAAS,CAAC,EAAQqD,GAAShG,GAAM2C,CAAS,EAAQsD,GAASjG,GAAM4D,EAAS,EAAQsC,GAASlG,GAAM2D,EAAS,EAAE,OAAAwC,GAAiB,CAAC,CAAC,EAAsB7F,EAAK8F,GAA0B,SAAS,CAAC,MAAM,CAAC,iBAAiB,YAAY,kBAAArG,EAAiB,EAAE,SAAsBsG,EAAMC,EAAY,CAAC,GAAGjE,GAAUlB,EAAgB,SAAS,CAAcb,EAAKF,GAAU,CAAC,MAAM,kGAAkG,CAAC,EAAeiG,EAAME,EAAO,IAAI,CAAC,GAAGpB,GAAU,UAAUW,EAAGD,GAAkB,iBAAiBzD,CAAS,EAAE,IAAIlB,EAAW,MAAM,CAAC,GAAGiB,CAAK,EAAE,SAAS,CAAc7B,EAAKkG,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,MAAS,CAAC,EAAE,SAAsBlF,EAAKmG,EAA0B,CAAC,OAAO,GAAG,MAAMjF,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,SAAsBlB,EAAKoG,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBpG,EAAKkG,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,WAAW,CAAC,EAAE,SAAsBlF,EAAKqG,GAAe,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeN,EAAM,SAAS,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAc/F,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,SAAsB+F,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAc/F,EAAKkG,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBlF,EAAWsG,EAAS,CAAC,SAAsBtG,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,sBAAsB,2BAA2B,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKuG,EAAS,CAAC,sBAAsB,GAAK,SAAsBvG,EAAWsG,EAAS,CAAC,SAAsBtG,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,uBAAuB,MAAM,sBAAsB,0BAA0B,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,YAAY,EAAE,KAAKiC,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe8D,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAc/F,EAAKkG,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBlF,EAAWsG,EAAS,CAAC,SAAsBP,EAAM,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,sBAAsB,mBAAmB,EAAE,SAAS,CAAc/F,EAAK,OAAO,CAAC,MAAM,CAAC,sBAAsB,cAAc,EAAE,SAAS,GAAG,CAAC,EAAE,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKuG,EAAS,CAAC,sBAAsB,GAAK,SAAsBvG,EAAWsG,EAAS,CAAC,SAAsBP,EAAM,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,sBAAsB,mBAAmB,EAAE,SAAS,CAAc/F,EAAK,OAAO,CAAC,MAAM,CAAC,sBAAsB,cAAc,EAAE,SAAS,GAAG,CAAC,EAAE,KAAK,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,YAAY,EAAE,KAAKkC,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAelC,EAAKmG,EAA0B,CAAC,SAAsBnG,EAAKoG,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBpG,EAAKwG,EAAK,CAAC,QAAQ,YAAY,OAAO,OAAO,GAAG,YAAY,SAAS,GAAK,SAAS,YAAY,OAAO,EAAE,QAAQ,MAAM,OAAO,GAAG,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAexG,EAAKmG,EAA0B,CAAC,SAAsBnG,EAAKoG,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBpG,EAAKwG,EAAK,CAAC,QAAQ,aAAa,OAAO,OAAO,GAAG,YAAY,SAAS,GAAK,SAAS,YAAY,OAAO,IAAI,QAAQ,MAAM,OAAO,GAAG,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAexG,EAAKmG,EAA0B,CAAC,SAAsBnG,EAAKoG,EAAU,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBpG,EAAKwG,EAAK,CAAC,QAAQ,OAAO,OAAO,OAAO,GAAG,YAAY,SAAS,GAAK,SAAS,YAAY,OAAO,EAAE,QAAQ,MAAM,OAAO,GAAG,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAexG,EAAKmG,EAA0B,CAAC,SAAsBnG,EAAKoG,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBpG,EAAKwG,EAAK,CAAC,QAAQ,QAAQ,OAAO,OAAO,GAAG,YAAY,SAAS,GAAK,SAAS,YAAY,OAAO,EAAE,QAAQ,MAAM,OAAO,GAAG,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAexG,EAAKkG,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBlF,EAAWsG,EAAS,CAAC,SAAsBtG,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,qDAAqD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,yBAAyB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKuG,EAAS,CAAC,sBAAsB,GAAK,SAAsBvG,EAAWsG,EAAS,CAAC,SAAsBtG,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,qDAAqD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,2BAA2B,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,mBAAmB,EAAE,KAAKmC,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAenC,EAAKkG,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,wBAAwB,CAAC,WAAW,+BAA+B,KAAK,8BAA8B,GAAG,8BAA8B,GAAG,8BAA8B,GAAG,8BAA8B,EAAE,8BAA8B,CAAC,EAAE,UAAU,CAAC,wBAAwB,CAAC,WAAW,+BAA+B,KAAK,8BAA8B,GAAG,8BAA8B,GAAG,8BAA8B,GAAG,8BAA8B,EAAE,8BAA8B,CAAC,CAAC,EAAE,SAAsBlF,EAAKuG,EAAS,CAAC,sBAAsB,GAAK,SAASnE,EAAU,UAAU,iBAAiB,MAAM,CAAC,cAAc,EAAE,wBAAwB,CAAC,WAAW,+BAA+B,GAAG,8BAA8B,EAAE,8BAA8B,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAepC,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAKyG,EAAK,CAAC,KAAK,4BAA4B,YAAY,GAAK,OAAO,YAAY,aAAa,GAAK,QAAQ,YAAY,SAAsBzG,EAAK0G,GAA4B,CAAC,UAAU,8BAA8B,mBAAmB,SAAS,SAAsB1G,EAAKuG,EAAS,CAAC,sBAAsB,GAAK,SAAsBvG,EAAWsG,EAAS,CAAC,SAAsBtG,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,QAAQ,EAAE,SAAS,wBAAwB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,yBAAyB,MAAM,CAAC,cAAc,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+F,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,SAAS,CAACN,IAAsBzF,EAAKkG,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,QAAQ,GAAGrF,GAAkByC,CAAS,CAAC,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQqE,IAA2BzF,GAAmB,GAAG,GAAG,EAAE,GAAG,GAAG,EAAE,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,QAAQA,GAAmB,OAAO,kBAAkB,GAAGrB,GAAkByC,CAAS,CAAC,CAAC,CAAC,EAAE,SAAsBtC,EAAK4G,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQD,IAA2BzF,GAAmB,GAAG,GAAG,EAAE,GAAG,EAAE,EAAE,GAAG,EAAE,IAAI,EAAE,MAAM,QAAQ,GAAGrB,GAAkByC,CAAS,CAAC,EAAE,UAAU,eAAe,CAAC,CAAC,CAAC,EAAEoD,IAAuB1F,EAAKmG,EAA0B,CAAC,SAAsBnG,EAAKoG,EAAU,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBpG,EAAK6G,GAAQ,CAAC,aAAa,GAAG,iBAAiB,GAAG,kBAAkB,GAAG,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,MAAM,GAAK,SAAS,YAAY,KAAK,MAAM,WAAW,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,UAAU,iBAAiB,cAAc,GAAG,eAAe,GAAG,IAAIxE,EAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe0D,EAAM,MAAM,CAAC,UAAU,gBAAgB,cAAc,GAAK,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,cAAc,GAAK,SAAS,CAAc/F,EAAKuG,EAAS,CAAC,sBAAsB,GAAK,SAAsBvG,EAAWsG,EAAS,CAAC,SAAsBtG,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,uDAAuD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,oBAAoB,EAAE,KAAKuC,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAevC,EAAKuG,EAAS,CAAC,sBAAsB,GAAK,SAAsBvG,EAAWsG,EAAS,CAAC,SAAsBtG,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,uDAAuD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,MAAM,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,oBAAoB,EAAE,KAAKwC,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAexC,EAAKuG,EAAS,CAAC,sBAAsB,GAAK,SAAsBvG,EAAWsG,EAAS,CAAC,SAAsBtG,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,cAAc,EAAE,KAAKyC,GAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAesD,EAAM,MAAM,CAAC,UAAU,iBAAiB,cAAc,GAAK,SAAS,CAAc/F,EAAKuG,EAAS,CAAC,sBAAsB,GAAK,SAAsBvG,EAAWsG,EAAS,CAAC,SAAsBtG,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,cAAc,EAAE,KAAK0C,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe1C,EAAKuG,EAAS,CAAC,sBAAsB,GAAK,SAAsBvG,EAAWsG,EAAS,CAAC,SAAsBtG,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,uDAAuD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,MAAM,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,oBAAoB,EAAE,KAAK2C,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe3C,EAAKuG,EAAS,CAAC,sBAAsB,GAAK,SAAsBvG,EAAWsG,EAAS,CAAC,SAAsBtG,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,cAAc,EAAE,KAAK4C,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAemD,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,cAAc,GAAK,SAAS,CAAc/F,EAAKuG,EAAS,CAAC,sBAAsB,GAAK,SAAsBvG,EAAWsG,EAAS,CAAC,SAAsBtG,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,cAAc,EAAE,KAAK6C,GAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe7C,EAAKuG,EAAS,CAAC,sBAAsB,GAAK,SAAsBvG,EAAWsG,EAAS,CAAC,SAAsBtG,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,uDAAuD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,MAAM,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,oBAAoB,EAAE,KAAK8C,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe9C,EAAKuG,EAAS,CAAC,sBAAsB,GAAK,SAAsBvG,EAAWsG,EAAS,CAAC,SAAsBtG,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,qBAAqB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,cAAc,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe+F,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAc/F,EAAKuG,EAAS,CAAC,sBAAsB,GAAK,SAAsBvG,EAAWsG,EAAS,CAAC,SAAsBtG,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,cAAc,EAAE,KAAK+C,GAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe/C,EAAKuG,EAAS,CAAC,sBAAsB,GAAK,SAAsBvG,EAAWsG,EAAS,CAAC,SAAsBtG,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,uDAAuD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,MAAM,0BAA0B,SAAS,sBAAsB,iBAAiB,EAAE,SAAS,YAAY,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,oBAAoB,EAAE,KAAKgD,GAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehD,EAAK,MAAM,CAAC,UAAU,eAAe,SAAsB+F,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,uBAAuB,SAAS,CAAc/F,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,SAAsB+F,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAc/F,EAAKkG,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBlF,EAAWsG,EAAS,CAAC,SAAsBtG,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,MAAM,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,KAAK,MAAS,EAAE,UAAU,CAAC,SAAsBA,EAAWsG,EAAS,CAAC,SAAsBtG,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,MAAM,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKuG,EAAS,CAAC,sBAAsB,GAAK,SAAsBvG,EAAWsG,EAAS,CAAC,SAAsBtG,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,MAAM,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,cAAc,EAAE,KAAKiD,GAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAejD,EAAKkG,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,wBAAwB,CAAC,WAAW,+BAA+B,KAAK,8BAA8B,GAAG,8BAA8B,GAAG,8BAA8B,EAAE,8BAA8B,CAAC,EAAE,UAAU,CAAC,wBAAwB,CAAC,WAAW,+BAA+B,KAAK,8BAA8B,GAAG,8BAA8B,GAAG,8BAA8B,EAAE,8BAA8B,CAAC,CAAC,EAAE,SAAsBlF,EAAKuG,EAAS,CAAC,sBAAsB,GAAK,SAASrD,GAAU,UAAU,iBAAiB,MAAM,CAAC,cAAc,EAAE,GAAG,UAAU,wBAAwB,CAAC,WAAW,+BAA+B,EAAE,8BAA8B,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe6C,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAc/F,EAAKkG,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBlF,EAAWsG,EAAS,CAAC,SAAsBtG,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,MAAM,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,oBAAoB,CAAC,CAAC,CAAC,EAAE,KAAK,MAAS,EAAE,UAAU,CAAC,SAAsBA,EAAWsG,EAAS,CAAC,SAAsBtG,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,MAAM,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,oBAAoB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKuG,EAAS,CAAC,sBAAsB,GAAK,SAAsBvG,EAAWsG,EAAS,CAAC,SAAsBtG,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,MAAM,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,oBAAoB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,cAAc,EAAE,KAAKmD,GAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAenD,EAAKkG,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,wBAAwB,CAAC,WAAW,+BAA+B,KAAK,8BAA8B,GAAG,8BAA8B,GAAG,8BAA8B,EAAE,8BAA8B,CAAC,CAAC,EAAE,SAAsBlF,EAAKuG,EAAS,CAAC,sBAAsB,GAAK,SAASnD,GAAU,UAAU,iBAAiB,MAAM,CAAC,cAAc,EAAE,wBAAwB,CAAC,WAAW,+BAA+B,EAAE,8BAA8B,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe2C,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,SAAS,CAAc/F,EAAKuG,EAAS,CAAC,sBAAsB,GAAK,SAAsBvG,EAAWsG,EAAS,CAAC,SAAsBtG,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,sGAAsG,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,cAAc,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKuG,EAAS,CAAC,sBAAsB,GAAK,SAAsBvG,EAAWsG,EAAS,CAAC,SAAsBtG,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,6BAA6B,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,gBAAgB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKyG,EAAK,CAAC,KAAK,4BAA4B,YAAY,GAAK,OAAO,YAAY,aAAa,GAAK,QAAQ,YAAY,SAAsBzG,EAAK8G,GAA6B,CAAC,UAAU,+BAA+B,mBAAmB,SAAS,SAAsB9G,EAAKuG,EAAS,CAAC,sBAAsB,GAAK,SAAsBvG,EAAWsG,EAAS,CAAC,SAAsBtG,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,QAAQ,EAAE,SAAS,wBAAwB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,cAAc,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKyG,EAAK,CAAC,KAAK,6BAA6B,YAAY,GAAK,OAAO,YAAY,aAAa,GAAK,QAAQ,YAAY,SAAsBzG,EAAKiG,EAAO,EAAE,CAAC,UAAU,8BAA8B,mBAAmB,SAAS,SAAsBjG,EAAKuG,EAAS,CAAC,sBAAsB,GAAK,SAAsBvG,EAAWsG,EAAS,CAAC,SAAsBtG,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,sBAAsB,SAAS,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,cAAc,EAAE,SAAS,YAAY,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,oBAAoB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,SAAsB+F,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAc/F,EAAKkG,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,YAAY,CAAC,EAAE,SAAsBlF,EAAKuG,EAAS,CAAC,sBAAsB,GAAK,SAAsBvG,EAAWsG,EAAS,CAAC,SAAsBP,EAAM,KAAK,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,qDAAqD,qBAAqB,OAAO,0BAA0B,MAAM,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,CAAc/F,EAAK,OAAO,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,KAAK,EAAE,SAAS,UAAU,CAAC,EAAeA,EAAK,OAAO,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,KAAK,EAAE,SAAS,GAAG,CAAC,EAAE,wBAAwB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,wBAAwB,oBAAoB,mBAAmB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,SAAsB+F,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,wBAAwB,SAAS,CAAc/F,EAAK,MAAM,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,UAAU,SAAsBA,EAAKkG,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,wBAAwB,CAAC,WAAW,+BAA+B,KAAK,8BAA8B,GAAG,8BAA8B,GAAG,6BAA6B,CAAC,EAAE,UAAU,CAAC,wBAAwB,CAAC,WAAW,+BAA+B,KAAK,8BAA8B,GAAG,8BAA8B,GAAG,6BAA6B,CAAC,CAAC,EAAE,SAAsBlF,EAAKuG,EAAS,CAAC,sBAAsB,GAAK,SAASlD,GAAU,UAAU,iBAAiB,MAAM,CAAC,cAAc,EAAE,wBAAwB,CAAC,WAAW,+BAA+B,GAAG,6BAA6B,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEsC,IAAuB3F,EAAK,MAAM,CAAC,UAAU,eAAe,cAAc,GAAK,mBAAmB,UAAU,SAAS4F,IAAuB5F,EAAKkG,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,wBAAwB,CAAC,WAAW,+BAA+B,KAAK,8BAA8B,GAAG,8BAA8B,GAAG,6BAA6B,CAAC,EAAE,UAAU,CAAC,wBAAwB,CAAC,WAAW,+BAA+B,KAAK,8BAA8B,GAAG,8BAA8B,GAAG,6BAA6B,CAAC,CAAC,EAAE,SAAsBlF,EAAKuG,EAAS,CAAC,sBAAsB,GAAK,SAASjD,GAAU,UAAU,gBAAgB,MAAM,CAAC,cAAc,EAAE,wBAAwB,CAAC,WAAW,+BAA+B,GAAG,6BAA6B,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEqC,IAAuB3F,EAAK,MAAM,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,UAAU,SAAS4F,IAAuB5F,EAAKkG,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,wBAAwB,CAAC,WAAW,+BAA+B,KAAK,8BAA8B,GAAG,8BAA8B,GAAG,6BAA6B,CAAC,EAAE,UAAU,CAAC,wBAAwB,CAAC,WAAW,+BAA+B,KAAK,8BAA8B,GAAG,8BAA8B,GAAG,6BAA6B,CAAC,CAAC,EAAE,SAAsBlF,EAAKuG,EAAS,CAAC,sBAAsB,GAAK,SAAShD,GAAU,UAAU,iBAAiB,MAAM,CAAC,cAAc,EAAE,wBAAwB,CAAC,WAAW,+BAA+B,GAAG,6BAA6B,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEoC,IAAuB3F,EAAK,MAAM,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,UAAU,SAAS4F,IAAuB5F,EAAKkG,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,wBAAwB,CAAC,WAAW,+BAA+B,KAAK,8BAA8B,GAAG,8BAA8B,GAAG,6BAA6B,CAAC,EAAE,UAAU,CAAC,wBAAwB,CAAC,WAAW,+BAA+B,KAAK,8BAA8B,GAAG,8BAA8B,GAAG,6BAA6B,CAAC,CAAC,EAAE,SAAsBlF,EAAKuG,EAAS,CAAC,sBAAsB,GAAK,SAAS/C,GAAU,UAAU,iBAAiB,MAAM,CAAC,cAAc,EAAE,wBAAwB,CAAC,WAAW,+BAA+B,GAAG,6BAA6B,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAexD,EAAK,MAAM,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,UAAU,SAAS4F,IAAuB5F,EAAKkG,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,wBAAwB,CAAC,WAAW,+BAA+B,KAAK,8BAA8B,GAAG,8BAA8B,GAAG,6BAA6B,CAAC,EAAE,UAAU,CAAC,wBAAwB,CAAC,WAAW,+BAA+B,KAAK,8BAA8B,GAAG,8BAA8B,GAAG,6BAA6B,CAAC,CAAC,EAAE,SAAsBlF,EAAKuG,EAAS,CAAC,sBAAsB,GAAK,SAAS9C,GAAU,UAAU,iBAAiB,MAAM,CAAC,cAAc,EAAE,wBAAwB,CAAC,WAAW,+BAA+B,GAAG,6BAA6B,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAezD,EAAK,MAAM,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,UAAU,SAAS4F,IAAuB5F,EAAKkG,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,wBAAwB,CAAC,WAAW,+BAA+B,KAAK,8BAA8B,GAAG,8BAA8B,GAAG,6BAA6B,CAAC,EAAE,UAAU,CAAC,wBAAwB,CAAC,WAAW,+BAA+B,KAAK,8BAA8B,GAAG,8BAA8B,GAAG,6BAA6B,CAAC,CAAC,EAAE,SAAsBlF,EAAKuG,EAAS,CAAC,sBAAsB,GAAK,SAAS7C,GAAU,UAAU,iBAAiB,MAAM,CAAC,cAAc,EAAE,wBAAwB,CAAC,WAAW,+BAA+B,GAAG,6BAA6B,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe1D,EAAK+G,GAAoC,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,SAAsB/G,EAAKkG,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBlF,EAAWsG,EAAS,CAAC,SAAsBtG,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,cAAc,EAAE,SAAS,iCAAiC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKuG,EAAS,CAAC,sBAAsB,GAAK,SAAsBvG,EAAWsG,EAAS,CAAC,SAAsBtG,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,cAAc,EAAE,SAAS,iCAAiC,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,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,gBAAgB,SAAsB+F,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAc/F,EAAKkG,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,YAAY,CAAC,EAAE,SAAsBlF,EAAKuG,EAAS,CAAC,sBAAsB,GAAK,SAAsBvG,EAAWsG,EAAS,CAAC,SAAsBP,EAAM,KAAK,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,qDAAqD,qBAAqB,OAAO,0BAA0B,MAAM,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,CAAc/F,EAAK,OAAO,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,KAAK,EAAE,SAAS,SAAS,CAAC,EAAE,cAA2BA,EAAK,OAAO,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,KAAK,EAAE,SAAS,GAAG,CAAC,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,wBAAwB,mBAAmB,EAAE,KAAK2D,GAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe3D,EAAKuG,EAAS,CAAC,sBAAsB,GAAK,SAAS3C,GAAU,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,wBAAwB,CAAC,WAAW,+BAA+B,KAAK,8BAA8B,GAAG,8BAA8B,GAAG,6BAA6B,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe5D,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,SAAsB+F,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,wBAAwB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAc/F,EAAKuG,EAAS,CAAC,sBAAsB,GAAK,SAAsBvG,EAAWsG,EAAS,CAAC,SAAsBtG,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAsBA,EAAK,KAAK,CAAC,SAAsBA,EAAK,KAAK,CAAC,SAAS,8BAA8B,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,cAAc,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKuG,EAAS,CAAC,sBAAsB,GAAK,SAAsBvG,EAAWsG,EAAS,CAAC,SAAsBtG,EAAK,KAAK,CAAC,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAsBA,EAAK,KAAK,CAAC,SAAsBA,EAAK,IAAI,CAAC,SAAS,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,KAAK6D,GAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe7D,EAAKuG,EAAS,CAAC,sBAAsB,GAAK,SAAsBvG,EAAWsG,EAAS,CAAC,SAAsBtG,EAAK,KAAK,CAAC,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAsBA,EAAK,KAAK,CAAC,SAAsBA,EAAK,IAAI,CAAC,SAAS,kCAAkC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,KAAK8D,GAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeiC,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAc/F,EAAKuG,EAAS,CAAC,sBAAsB,GAAK,SAAsBvG,EAAWsG,EAAS,CAAC,SAAsBtG,EAAK,KAAK,CAAC,MAAM,IAAI,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAsBA,EAAK,KAAK,CAAC,SAAsBA,EAAK,KAAK,CAAC,SAAS,mBAAmB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,cAAc,EAAE,KAAK+D,GAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe/D,EAAKuG,EAAS,CAAC,sBAAsB,GAAK,SAAsBvG,EAAWsG,EAAS,CAAC,SAAsBtG,EAAK,KAAK,CAAC,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAsBA,EAAK,KAAK,CAAC,SAAsBA,EAAK,IAAI,CAAC,SAAS,0CAA0C,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,KAAKgE,GAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAehE,EAAKuG,EAAS,CAAC,sBAAsB,GAAK,SAAsBvG,EAAWsG,EAAS,CAAC,SAAsBtG,EAAK,KAAK,CAAC,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAsBA,EAAK,KAAK,CAAC,SAAsBA,EAAK,IAAI,CAAC,SAAS,8BAA8B,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,KAAKiE,GAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe8B,EAAM,MAAM,CAAC,UAAU,eAAe,mBAAmB,UAAU,SAAS,CAAc/F,EAAKuG,EAAS,CAAC,sBAAsB,GAAK,SAAsBvG,EAAWsG,EAAS,CAAC,SAAsBtG,EAAK,KAAK,CAAC,MAAM,IAAI,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAsBA,EAAK,KAAK,CAAC,SAAsBA,EAAK,KAAK,CAAC,SAAS,mBAAmB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,cAAc,EAAE,KAAKkE,GAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAelE,EAAKuG,EAAS,CAAC,sBAAsB,GAAK,SAAsBvG,EAAWsG,EAAS,CAAC,SAAsBtG,EAAK,KAAK,CAAC,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAsBA,EAAK,KAAK,CAAC,SAAsBA,EAAK,IAAI,CAAC,SAAS,2BAA2B,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,KAAKmE,GAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAenE,EAAKuG,EAAS,CAAC,sBAAsB,GAAK,SAAsBvG,EAAWsG,EAAS,CAAC,SAAsBtG,EAAK,KAAK,CAAC,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAsBA,EAAK,KAAK,CAAC,SAAsBA,EAAK,IAAI,CAAC,SAAS,6BAA6B,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,KAAKoE,GAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe2B,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAc/F,EAAKuG,EAAS,CAAC,sBAAsB,GAAK,SAAsBvG,EAAWsG,EAAS,CAAC,SAAsBtG,EAAK,KAAK,CAAC,MAAM,IAAI,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAsBA,EAAK,KAAK,CAAC,SAAsBA,EAAK,KAAK,CAAC,SAAS,uBAAuB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,cAAc,EAAE,KAAKqE,GAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAerE,EAAKuG,EAAS,CAAC,sBAAsB,GAAK,SAAsBvG,EAAWsG,EAAS,CAAC,SAAsBtG,EAAK,KAAK,CAAC,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAsBA,EAAK,KAAK,CAAC,SAAsBA,EAAK,IAAI,CAAC,SAAS,+BAA+B,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,KAAKsE,GAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAetE,EAAKuG,EAAS,CAAC,sBAAsB,GAAK,SAAsBvG,EAAWsG,EAAS,CAAC,SAAsBtG,EAAK,KAAK,CAAC,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAsBA,EAAK,KAAK,CAAC,SAAsBA,EAAK,IAAI,CAAC,SAAS,oBAAoB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,KAAKuE,GAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAewB,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAc/F,EAAKuG,EAAS,CAAC,sBAAsB,GAAK,SAAsBvG,EAAWsG,EAAS,CAAC,SAAsBtG,EAAK,KAAK,CAAC,MAAM,IAAI,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAsBA,EAAK,KAAK,CAAC,SAAsBA,EAAK,KAAK,CAAC,SAAS,gCAAgC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,cAAc,EAAE,KAAKwE,GAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAexE,EAAKuG,EAAS,CAAC,sBAAsB,GAAK,SAAsBvG,EAAWsG,EAAS,CAAC,SAAsBtG,EAAK,KAAK,CAAC,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAsBA,EAAK,KAAK,CAAC,SAAsBA,EAAK,IAAI,CAAC,SAAS,mCAAmC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,KAAKyE,GAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAezE,EAAKuG,EAAS,CAAC,sBAAsB,GAAK,SAAsBvG,EAAWsG,EAAS,CAAC,SAAsBtG,EAAK,KAAK,CAAC,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAsBA,EAAK,KAAK,CAAC,SAAsBA,EAAK,IAAI,CAAC,SAAS,YAAY,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,KAAK0E,GAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeqB,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAc/F,EAAKuG,EAAS,CAAC,sBAAsB,GAAK,SAAsBvG,EAAWsG,EAAS,CAAC,SAAsBtG,EAAK,KAAK,CAAC,MAAM,IAAI,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAsBA,EAAK,KAAK,CAAC,SAAsBA,EAAK,KAAK,CAAC,SAAS,mBAAmB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,cAAc,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKuG,EAAS,CAAC,sBAAsB,GAAK,SAAsBvG,EAAWsG,EAAS,CAAC,SAAsBtG,EAAK,KAAK,CAAC,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAsBA,EAAK,KAAK,CAAC,SAAsBA,EAAK,IAAI,CAAC,SAAS,gDAAgD,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKuG,EAAS,CAAC,sBAAsB,GAAK,SAAsBvG,EAAWsG,EAAS,CAAC,SAAsBtG,EAAK,KAAK,CAAC,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAsBA,EAAK,KAAK,CAAC,SAAsBA,EAAK,IAAI,CAAC,SAAS,oCAAoC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,uBAAuB,SAAsB+F,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAc/F,EAAKkG,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,KAAK,WAAW,IAAI,MAAM,SAAShE,GAAmB,OAAO,4BAA4B,IAAI,0FAA0F,OAAO,wKAAwK,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQyF,IAA2BzF,GAAmB,GAAG,GAAG,EAAE,OAAO,EAAE,EAAE,GAAG,CAAC,EAAE,YAAY,KAAK,WAAW,IAAI,MAAM,QAAQA,GAAmB,OAAO,kBAAkB,IAAI,yFAAyF,OAAO,sKAAsK,CAAC,CAAC,EAAE,SAAsBlB,EAAK4G,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQD,IAA2BzF,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,KAAK,EAAE,YAAY,KAAK,WAAW,IAAI,MAAM,QAAQ,IAAI,yFAAyF,OAAO,sKAAsK,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,CAAC,CAAC,CAAC,EAAelB,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsB+F,EAAM,MAAM,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,UAAU,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,cAAc,GAAK,SAAS,CAAc/F,EAAKuG,EAAS,CAAC,sBAAsB,GAAK,SAAsBvG,EAAWsG,EAAS,CAAC,SAAsBtG,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,0BAA0B,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,cAAc,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKuG,EAAS,CAAC,sBAAsB,GAAK,SAAsBvG,EAAWsG,EAAS,CAAC,SAAsBtG,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,OAAO,0BAA0B,OAAO,sBAAsB,iBAAiB,EAAE,SAAS,8BAAyB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,cAAc,EAAE,KAAK2E,GAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe3E,EAAKuG,EAAS,CAAC,sBAAsB,GAAK,SAAsBvG,EAAWsG,EAAS,CAAC,SAAsBtG,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,kBAAkB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,cAAc,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe+F,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAc/F,EAAKuG,EAAS,CAAC,sBAAsB,GAAK,SAAsBvG,EAAWsG,EAAS,CAAC,SAAsBtG,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,OAAO,0BAA0B,OAAO,sBAAsB,iBAAiB,EAAE,SAAS,+BAA+B,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,cAAc,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKuG,EAAS,CAAC,sBAAsB,GAAK,SAAsBvG,EAAWsG,EAAS,CAAC,SAAsBtG,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,sGAAsG,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,cAAc,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe+F,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAc/F,EAAKyG,EAAK,CAAC,KAAK,4BAA4B,YAAY,GAAK,OAAO,YAAY,aAAa,GAAK,QAAQ,YAAY,SAAsBzG,EAAKiG,EAAO,EAAE,CAAC,UAAU,+BAA+B,mBAAmB,SAAS,SAAsBjG,EAAKuG,EAAS,CAAC,sBAAsB,GAAK,SAAsBvG,EAAWsG,EAAS,CAAC,SAAsBtG,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,wBAAwB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,cAAc,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKyG,EAAK,CAAC,KAAK,6BAA6B,YAAY,GAAK,OAAO,YAAY,aAAa,GAAK,QAAQ,YAAY,SAAsBzG,EAAKiG,EAAO,EAAE,CAAC,UAAU,+BAA+B,mBAAmB,SAAS,SAAsBjG,EAAKuG,EAAS,CAAC,sBAAsB,GAAK,SAAsBvG,EAAWsG,EAAS,CAAC,SAAsBtG,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,sBAAsB,SAAS,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,YAAY,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,oBAAoB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+F,EAAM,MAAM,CAAC,UAAU,gBAAgB,cAAc,GAAK,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAc/F,EAAKmG,EAA0B,CAAC,SAAsBnG,EAAKoG,EAAU,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBpG,EAAKgH,EAAQ,CAAC,MAAM,kBAAkB,OAAO,OAAO,WAAW,OAAO,cAAc,sBAAsB,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehH,EAAKuG,EAAS,CAAC,sBAAsB,GAAK,SAAsBvG,EAAWsG,EAAS,CAAC,SAAsBtG,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,8CAA8C,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,cAAc,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe+F,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAc/F,EAAKmG,EAA0B,CAAC,SAAsBnG,EAAKoG,EAAU,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBpG,EAAKgH,EAAQ,CAAC,MAAM,kBAAkB,OAAO,OAAO,WAAW,OAAO,cAAc,sBAAsB,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehH,EAAKuG,EAAS,CAAC,sBAAsB,GAAK,SAAsBvG,EAAWsG,EAAS,CAAC,SAAsBtG,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,cAAc,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe+F,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAc/F,EAAKmG,EAA0B,CAAC,SAAsBnG,EAAKoG,EAAU,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBpG,EAAKgH,EAAQ,CAAC,MAAM,kBAAkB,OAAO,OAAO,WAAW,OAAO,cAAc,sBAAsB,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehH,EAAKuG,EAAS,CAAC,sBAAsB,GAAK,SAAsBvG,EAAWsG,EAAS,CAAC,SAAsBtG,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,gCAAgC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,cAAc,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe+F,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAc/F,EAAKmG,EAA0B,CAAC,SAAsBnG,EAAKoG,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBpG,EAAKgH,EAAQ,CAAC,MAAM,kBAAkB,OAAO,OAAO,WAAW,OAAO,cAAc,sBAAsB,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehH,EAAKuG,EAAS,CAAC,sBAAsB,GAAK,SAAsBvG,EAAWsG,EAAS,CAAC,SAAsBtG,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,uBAAuB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,cAAc,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe+F,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAc/F,EAAKmG,EAA0B,CAAC,SAAsBnG,EAAKoG,EAAU,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBpG,EAAKgH,EAAQ,CAAC,MAAM,kBAAkB,OAAO,OAAO,WAAW,OAAO,cAAc,sBAAsB,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehH,EAAKuG,EAAS,CAAC,sBAAsB,GAAK,SAAsBvG,EAAWsG,EAAS,CAAC,SAAsBtG,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,+BAA+B,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,cAAc,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+F,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAc/F,EAAKmG,EAA0B,CAAC,SAAsBnG,EAAKoG,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBpG,EAAKwG,EAAK,CAAC,QAAQ,WAAW,OAAO,OAAO,GAAG,YAAY,SAAS,GAAK,SAAS,YAAY,OAAO,IAAI,QAAQ,MAAM,OAAO,GAAG,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAexG,EAAKuG,EAAS,CAAC,sBAAsB,GAAK,SAAsBvG,EAAWsG,EAAS,CAAC,SAAsBtG,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,0BAA0B,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,cAAc,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+F,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,SAAS,CAAc/F,EAAKkG,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,KAAK,MAAS,EAAE,UAAU,CAAC,KAAK,MAAS,CAAC,EAAE,SAAsBlF,EAAKuG,EAAS,CAAC,sBAAsB,GAAK,SAAsBvG,EAAWsG,EAAS,CAAC,SAAsBtG,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,0BAA0B,SAAS,sBAAsB,iBAAiB,EAAE,SAAS,KAAK,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,cAAc,EAAE,KAAK4E,GAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe5E,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,SAAsBA,EAAKkG,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,MAAS,EAAE,UAAU,CAAC,GAAGhE,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAI,CAAC,CAAC,EAAE,SAAsBlB,EAAKmG,EAA0B,CAAC,OAAO,IAAI,MAAM,mBAAmBjF,GAAmB,OAAO,iBAAiB,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,IAAI,IAAI,EAAE,SAAsBlB,EAAKoG,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBpG,EAAKiH,GAAc,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAejH,EAAKkG,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,MAAS,EAAE,UAAU,CAAC,GAAGhE,GAAmB,GAAG,GAAG,EAAE,MAAM,CAAC,EAAE,SAAsBlB,EAAKmG,EAA0B,CAAC,OAAO,IAAI,MAAMjF,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,SAAsBlB,EAAKoG,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBpG,EAAKkG,EAAkB,CAAC,WAAWhB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBlF,EAAKkH,GAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelH,EAAK,MAAM,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQmH,GAAI,CAAC,kFAAkF,gFAAgF,mVAAmV,qHAAqH,0WAA0W,4QAA4Q,qSAAqS,8RAA8R,0gBAA0gB,kPAAkP,oSAAoS,8LAA8L,0LAA0L,yGAAyG,mSAAmS,2OAA2O,oRAAoR,2cAA2c,uXAAuX,wRAAwR,+NAA+N,yGAAyG,slBAAslB,mTAAmT,4aAA4a,0gBAA0gB,8wBAA8wB,ycAAyc,6QAA6Q,oQAAoQ,0NAA0N,uSAAuS,yWAAyW,kdAAkd,6RAA6R,gRAAgR,wSAAwS,wNAAwN,gRAAgR,4iBAA4iB,qcAAqc,ocAAoc,uVAAuV,iTAAiT,wSAAwS,gSAAgS,kRAAkR,o1BAAo1B,6fAA6f,yXAAyX,4dAA4d,gTAAgT,iTAAiT,wNAAwN,6SAA6S,6UAA6U,ynBAAynB,2iBAA2iB,uSAAuS,0SAA0S,ocAAoc,6QAA6Q,ysBAAysB,+bAA+b,uRAAuR,uSAAuS,+YAA+Y,sQAAsQ,+fAA+f,+fAA+f,yaAAya,6YAA6Y,yQAAyQ,yGAAyG,4TAA4T,iSAAiS,sHAAsH,yGAAyG,8xWAA8xW,GAAeA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,gcAAgc,4kOAA4kO,k3GAAk3G,EAWhikHC,GAAgBC,EAAQ9G,GAAU4G,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,OAAOA,GAAgB,aAAa,CAAC,OAAO,KAAK,MAAM,IAAI,EAAEG,GAASH,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,uEAAuE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,uEAAuE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,aAAa,OAAO,SAAS,MAAM,SAAS,IAAI,mGAAmG,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,IAAI,0GAA0G,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,IAAI,0GAA0G,OAAO,KAAK,EAAE,CAAC,OAAO,cAAc,OAAO,SAAS,MAAM,SAAS,IAAI,sGAAsG,OAAO,KAAK,EAAE,CAAC,OAAO,cAAc,OAAO,SAAS,MAAM,SAAS,IAAI,sGAAsG,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,IAAI,0GAA0G,OAAO,KAAK,EAAE,CAAC,OAAO,UAAU,OAAO,SAAS,MAAM,SAAS,IAAI,gFAAgF,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,IAAI,6GAA6G,OAAO,KAAK,EAAE,CAAC,OAAO,aAAa,OAAO,SAAS,MAAM,SAAS,IAAI,oGAAoG,OAAO,KAAK,EAAE,CAAC,OAAO,aAAa,OAAO,SAAS,MAAM,SAAS,IAAI,oGAAoG,OAAO,KAAK,EAAE,CAAC,OAAO,aAAa,OAAO,SAAS,MAAM,SAAS,IAAI,oGAAoG,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,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,CAAC,CAAC,EAAE,GAAGI,GAAoB,GAAGC,GAAU,GAAGC,GAAa,GAAGC,GAAa,GAAGC,GAAmB,GAAGC,GAAY,GAAGC,EAAoCC,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,EAC/gL,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,4BAA8B,OAAO,yBAA2B,QAAQ,yBAA2B,OAAO,qBAAuB,OAAO,oCAAsC,4JAA0L,6BAA+B,OAAO,sBAAwB,IAAI,sBAAwB,OAAO,qBAAuB,2BAA2B,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC",
  "names": ["PlayOptions", "ThumbnailOptions", "ThumbnailFormat", "_isBot", "isBot", "navigator", "emptySubscribe", "Youtube", "url", "play", "shouldMute", "thumbnail", "isRed", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "title", "props", "onCanvas", "useIsOnCanvas", "isAutoplay", "showThumbnail", "isPreloading", "preloadVideo", "le", "showVideo", "startVideo", "isHovered", "setHovered", "ye", "iframeIsDefaultVisible", "de", "borderRadius", "useRadius", "hasBorderRadius", "p", "Instructions", "parsedURL", "parseVideoURL", "ErrorMessage", "videoId", "embedURL", "thumbnailURL", "getThumbnailURL", "getWebPSupported", "searchParams", "u", "wrapperStyle", "videoStyle", "PlayButton", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "defaultProps", "urlString", "getEmbedURL", "pathSegments", "res", "format", "useWebP", "pre", "ext", "_getWebPSupported", "window", "element", "emptyStateStyle", "centerTextStyle", "message", "containerStyles", "buttonStyle", "fontStore", "fonts", "css", "className", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "humanReadableVariantMap", "transitions", "Component", "Y", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "W88zB8mIG", "T8rQFvSBR", "restProps", "ref", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "transition", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap2wrxd7", "args", "onTapzc6ei0", "isDisplayed", "defaultLayoutId", "ae", "p", "LayoutGroup", "motion", "cx", "u", "RichText2", "x", "css", "FramerJDIZfHyyT", "withCSS", "JDIZfHyyT_default", "addPropertyControls", "ControlType", "addFonts", "fonts", "RowFonts", "getFonts", "JDIZfHyyT_default", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "ComponentViewportProvider", "JDIZfHyyT_default", "css", "FrameriABnuMu3V", "withCSS", "iABnuMu3V_default", "addFonts", "RowFonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "MainNavigationFonts", "getFonts", "i2pwdxb26_default", "LogoFonts", "Logo", "MotionAWithTallyPopupj74sk0", "withCodeBoundaryForOverrides", "motion", "withTallyPopup", "YouTubeFonts", "Youtube", "MotionAWithTallyPopup1cx77e4", "MotionDivWithSecondTallyPopupgo8lse", "withSecondTallyPopup", "IconoirFonts", "Icon", "AccordionCopyFonts", "iABnuMu3V_default", "FooterFonts", "qAGAx5IyX_default", "breakpoints", "serializationHash", "variantClassNames", "isSet", "value", "negate", "toResponsiveImage", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "useQueryData", "e3xqH8NeD_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "lBy1fqXEL", "XvUqGyGPb", "Zy0AC5zhK", "XVzKJ2jta", "sInkfhj_a", "yg53FjL9s", "a6DZ23o0f", "IR1z058_Z", "IuPGBuDPu", "ueVrX7xyZ", "jfC3jjNaf", "yCDIheto4", "KQiBRx_2q", "P28E2vBrf", "FxCigUfmQ", "iX6ImTZaO", "cN6YEQWH3", "JYRntqjV2", "CzbX0uQjG", "jhf_G0Bkv", "MXR1VM9kU", "j_AqZi_4m", "m8Z7w3NtI", "CBCtknb56", "QBCwa_H9R", "a6aFDul_b", "sszf4Hd0e", "zXM5tAjtM", "Gsunb6dvA", "wwDfcyOm4", "bQgqazyzF", "n5q9dvJgs", "ejV_HCfoQ", "PqjSMB1Uj", "ETt29Y3G2", "zb0jja3ag", "Ll9Dm4j3f", "C3WTFohfI", "HJdhpnhR6", "BFhrsTegM", "SydogvCUp", "ztOtQzI2v", "r5hiRTInM", "tDG9Y1T9b", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "visible", "visible1", "visible2", "visible3", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "PropertyOverrides2", "ComponentViewportProvider", "Container", "i2pwdxb26_default", "x", "RichText2", "Logo", "Link", "MotionAWithTallyPopupj74sk0", "getLoadingLazyAtYPosition", "Image2", "Youtube", "MotionAWithTallyPopup1cx77e4", "MotionDivWithSecondTallyPopupgo8lse", "Icon", "iABnuMu3V_default", "qAGAx5IyX_default", "css", "FramervF2SIzeSX", "withCSS", "vF2SIzeSX_default", "addFonts", "MainNavigationFonts", "LogoFonts", "YouTubeFonts", "IconoirFonts", "AccordionCopyFonts", "FooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
