{"version":3,"file":"dWpzLuJps22bhcKEf4qCq1-xEoGm-ZJ6HMw1LXU8Rpk.D8fIQQMo.mjs","names":["props","PlayOptions","ThumbnailOptions","fonts","css","className","fonts","css","className","Topbar","Phosphor","YouTube","Button","CTA","FooterSection","props","Integrations","metadata","className","PropertyOverrides","css"],"sources":["https:/framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/8aCGinfRQO68tQ3QF42d/YouTube.js","https:/framerusercontent.com/modules/3jvovJYlqNCH69T8XNSY/NCKqe2DVXNynNOiNtWj3/D8D9DAEGL.js","https:/framerusercontent.com/modules/OK6Jwo2dfcXRAEAhsChb/zWJiBrj2GndbPFcWvwtO/Moneywonz.js","https:/framerusercontent.com/modules/VPMgnVcYn1OWf2o26hJP/sMYYhltsKUia88yBmRt4/AygPt60n6.js","https:/framerusercontent.com/modules/8xyadfM0zr9v0gWTk8Cq/ko1q16iJkt8GbFj4LId5/AygPt60n6.js"],"sourcesContent":["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useReducer,useState}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={}));/**\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);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://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(!showVideo){// if a browser does not support `loading=lazy`, make sure the video doesn't start playing in the background\nsearchParams.set(\"autoplay\",\"0\");}else if(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\");}const iframeProps={title:title||\"Youtube Video\",allow:\"presentation; fullscreen; accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture\",src:embedURL.href,frameBorder:\"0\",onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp};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(${getThumbnailURL(videoId,thumbnail)}) no-repeat`:undefined}}),!onCanvas?/*#__PURE__*/_jsx(\"iframe\",{loading:!showVideo?\"lazy\":undefined,style:!showVideo?{...videoStyle,display:\"none\"}:videoStyle,...iframeProps}):null,showVideo?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://www.youtube.com/shorts/zwMEhBq4kYM\nif(pathSegments[0]===\"shorts\"){const videoId=pathSegments[1];const embedURL=getEmbedURL(videoId);return[videoId,embedURL];}}// 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){// https://gist.github.com/a1ip/be4514c1fd392a8c13b05e082c4da363\nconst pre=\"https://i.ytimg.com/vi_webp/\";const ext=\"webp\";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}`;}}// 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\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"315\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"560\",\"framerComponentPresetProps\":\"isRed, borderRadius\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YouTube.map","import{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-Bold\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[];export const css=['.framer-mJ4Ro .framer-styles-preset-n7w2n:not(.rich-text-wrapper), .framer-mJ4Ro .framer-styles-preset-n7w2n.rich-text-wrapper h1 { --framer-font-family: \"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter-Black\", \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter-BlackItalic\", \"Inter\", sans-serif; --framer-font-family-italic: \"Inter-BoldItalic\", \"Inter\", \"Inter 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: -0.04em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: #333333; --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-mJ4Ro\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (c105afa)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-DG6vh .framer-styles-preset-qi15hr:not(.rich-text-wrapper), .framer-DG6vh .framer-styles-preset-qi15hr.rich-text-wrapper a { --framer-link-current-text-color: #ffffff; --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: #ffffff; --framer-link-hover-text-decoration: underline; --framer-link-text-color: rgba(255, 255, 255, 0.9); --framer-link-text-decoration: none; }\"];export const className=\"framer-DG6vh\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (3bdc3c5)\nimport{LazyValue}from\"framer\";const valuesByLocaleId={AqLkIll0Y:new LazyValue(()=>import(\"./AygPt60n6-7.js\")),BWWxQuYiY:new LazyValue(()=>import(\"./AygPt60n6-0.js\")),FQCkg6Jhd:new LazyValue(()=>import(\"./AygPt60n6-9.js\")),I99tlXki1:new LazyValue(()=>import(\"./AygPt60n6-4.js\")),iUcfZB7QR:new LazyValue(()=>import(\"./AygPt60n6-6.js\")),MGSLdUony:new LazyValue(()=>import(\"./AygPt60n6-1.js\")),NyGHY0906:new LazyValue(()=>import(\"./AygPt60n6-3.js\")),s8d_svzKi:new LazyValue(()=>import(\"./AygPt60n6-8.js\")),sXp9CkCyc:new LazyValue(()=>import(\"./AygPt60n6-2.js\")),yfogoAKsW:new LazyValue(()=>import(\"./AygPt60n6-5.js\"))};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values.read()[key];if(value)return value;}locale=locale.fallback;}}function preload(locale){const promises=[];while(locale){const values=valuesByLocaleId[locale.id];if(values){const promise=values.preload();if(promise)promises.push(promise);}locale=locale.fallback;}if(promises.length>0)return Promise.all(promises);}export function usePreloadLocalizedValues(locale){const preloadPromise=preload(locale);if(preloadPromise)throw preloadPromise;}\nexport const __FramerMetadata__ = {\"exports\":{\"usePreloadLocalizedValues\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (3bdc3c5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentPresetsProvider,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getWhereExpressionFromPathVariables,Link,NotFoundError,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useMetadata,useQueryData,useRouter,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/8aCGinfRQO68tQ3QF42d/YouTube.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import FooterSection from\"#framer/local/canvasComponent/EMFImvNqq/EMFImvNqq.js\";import Topbar from\"#framer/local/canvasComponent/jkqwVx08O/jkqwVx08O.js\";import Button from\"#framer/local/canvasComponent/syT4rrETn/syT4rrETn.js\";import CTA from\"#framer/local/canvasComponent/vVUPHW32c/vVUPHW32c.js\";import Integrations from\"#framer/local/collection/CJx6IaPw7/CJx6IaPw7.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle9 from\"#framer/local/css/AS4PcgcTr/AS4PcgcTr.js\";import*as sharedStyle7 from\"#framer/local/css/BTAYseOlj/BTAYseOlj.js\";import*as sharedStyle12 from\"#framer/local/css/CMGQTlim6/CMGQTlim6.js\";import*as sharedStyle1 from\"#framer/local/css/D8D9DAEGL/D8D9DAEGL.js\";import*as sharedStyle10 from\"#framer/local/css/EjC9d_Yj1/EjC9d_Yj1.js\";import*as sharedStyle3 from\"#framer/local/css/fVxnimdqP/fVxnimdqP.js\";import*as sharedStyle13 from\"#framer/local/css/k32DmqACN/k32DmqACN.js\";import*as sharedStyle14 from\"#framer/local/css/Moneywonz/Moneywonz.js\";import*as sharedStyle6 from\"#framer/local/css/nVrBiSF4P/nVrBiSF4P.js\";import*as sharedStyle5 from\"#framer/local/css/TMeZR6gRy/TMeZR6gRy.js\";import*as sharedStyle11 from\"#framer/local/css/X9UCAPkO5/X9UCAPkO5.js\";import*as sharedStyle from\"#framer/local/css/xxrpaKQuu/xxrpaKQuu.js\";import*as sharedStyle8 from\"#framer/local/css/xZndidUCt/xZndidUCt.js\";import*as sharedStyle2 from\"#framer/local/css/YAP816Y5n/YAP816Y5n.js\";import*as sharedStyle4 from\"#framer/local/css/YckFIlg3V/YckFIlg3V.js\";import getLocalizedValue,{usePreloadLocalizedValues}from\"#framer/local/localization/AygPt60n6/AygPt60n6.js\";import metadataProvider from\"#framer/local/webPageMetadata/AygPt60n6/AygPt60n6.js\";const TopbarFonts=getFonts(Topbar);const PhosphorFonts=getFonts(Phosphor);const LogoFonts=getFonts(Logo);const YouTubeFonts=getFonts(YouTube);const ButtonFonts=getFonts(Button);const CTAFonts=getFonts(CTA);const FooterSectionFonts=getFonts(FooterSection);const breakpoints={K2FwteT2P:\"(min-width: 1200px)\",YeuTUTLiM:\"(max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-AAskT\";const variantClassNames={K2FwteT2P:\"framer-v-1sodo1g\",YeuTUTLiM:\"framer-v-1rahosa\"};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"K2FwteT2P\",Phone:\"YeuTUTLiM\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"K2FwteT2P\"};};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:\"AygPt60n6\",data:Integrations,type:\"Collection\"},select:[{collection:\"AygPt60n6\",name:\"jRJrbBBZ6\",type:\"Identifier\"},{collection:\"AygPt60n6\",name:\"B27vsuhd5\",type:\"Identifier\"},{collection:\"AygPt60n6\",name:\"cwJ9L0_Ks\",type:\"Identifier\"},{collection:\"AygPt60n6\",name:\"BXHUVVhIS\",type:\"Identifier\"},{collection:\"AygPt60n6\",name:\"fFlzek2I4\",type:\"Identifier\"},{collection:\"AygPt60n6\",name:\"aTpPAgGTF\",type:\"Identifier\"},{collection:\"AygPt60n6\",name:\"crShAs7uy\",type:\"Identifier\"},{collection:\"AygPt60n6\",name:\"BXytUuP3p\",type:\"Identifier\"},{collection:\"AygPt60n6\",name:\"mfBCy1Q9L\",type:\"Identifier\"},{collection:\"AygPt60n6\",name:\"g_YLbEJRM\",type:\"Identifier\"},{collection:\"AygPt60n6\",name:\"SgydAKhde\",type:\"Identifier\"},{collection:\"AygPt60n6\",name:\"F9KxyOWE3\",type:\"Identifier\"},{collection:\"AygPt60n6\",name:\"p4S_QaTuY\",type:\"Identifier\"},{collection:\"AygPt60n6\",name:\"q1OjE2ERN\",type:\"Identifier\"},{collection:\"AygPt60n6\",name:\"su1sf8Pri\",type:\"Identifier\"},{collection:\"AygPt60n6\",name:\"se_Qyuwrg\",type:\"Identifier\"},{collection:\"AygPt60n6\",name:\"kAyv7qq0T\",type:\"Identifier\"},{collection:\"AygPt60n6\",name:\"W24XrpLUL\",type:\"Identifier\"},{collection:\"AygPt60n6\",name:\"S7aVLJCg2\",type:\"Identifier\"},{collection:\"AygPt60n6\",name:\"MIa1jtwzV\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"AygPt60n6\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,BXHUVVhIS=getFromCurrentRouteData(\"BXHUVVhIS\")??\"\",jRJrbBBZ6=getFromCurrentRouteData(\"jRJrbBBZ6\")??\"\",B27vsuhd5=getFromCurrentRouteData(\"B27vsuhd5\")??\"\",W24XrpLUL=getFromCurrentRouteData(\"W24XrpLUL\")??\"\",cwJ9L0_Ks=getFromCurrentRouteData(\"cwJ9L0_Ks\")??\"\",MIa1jtwzV=getFromCurrentRouteData(\"MIa1jtwzV\")??\"\",crShAs7uy=getFromCurrentRouteData(\"crShAs7uy\")??\"\",BXytUuP3p=getFromCurrentRouteData(\"BXytUuP3p\")??\"\",mfBCy1Q9L=getFromCurrentRouteData(\"mfBCy1Q9L\")??\"\",g_YLbEJRM=getFromCurrentRouteData(\"g_YLbEJRM\")??\"\",SgydAKhde=getFromCurrentRouteData(\"SgydAKhde\")??\"\",F9KxyOWE3=getFromCurrentRouteData(\"F9KxyOWE3\")??\"\",p4S_QaTuY=getFromCurrentRouteData(\"p4S_QaTuY\")??\"\",q1OjE2ERN=getFromCurrentRouteData(\"q1OjE2ERN\")??\"\",su1sf8Pri=getFromCurrentRouteData(\"su1sf8Pri\")??\"\",se_Qyuwrg=getFromCurrentRouteData(\"se_Qyuwrg\")??\"\",aTpPAgGTF=getFromCurrentRouteData(\"aTpPAgGTF\")??\"\",fFlzek2I4=getFromCurrentRouteData(\"fFlzek2I4\")??\"\",S7aVLJCg2=getFromCurrentRouteData(\"S7aVLJCg2\")??\"\",kAyv7qq0T=getFromCurrentRouteData(\"kAyv7qq0T\")??\"\",...restProps}=getProps(props);const metadata=React.useMemo(()=>metadataProvider(currentRouteData,activeLocale),[currentRouteData,activeLocale]);useMetadata(metadata);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className,sharedStyle11.className,sharedStyle12.className,sharedStyle13.className,sharedStyle14.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);usePreloadLocalizedValues(activeLocale);const router=useRouter();const visible=isSet(crShAs7uy);const visible1=isSet(BXytUuP3p);const visible2=isSet(mfBCy1Q9L);const visible3=isSet(g_YLbEJRM);const visible4=isSet(SgydAKhde);const visible5=isSet(F9KxyOWE3);const visible6=isSet(p4S_QaTuY);const visible7=isSet(q1OjE2ERN);const visible8=isSet(su1sf8Pri);const visible9=isSet(se_Qyuwrg);const visible10=isSet(kAyv7qq0T);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"K2FwteT2P\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1sodo1g\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-dfvy8c-container\",nodeId:\"RBsJakpkZ\",scopeId:\"AygPt60n6\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YeuTUTLiM:{variant:\"rXck_MiQh\"}},children:/*#__PURE__*/_jsx(Topbar,{height:\"100%\",id:\"RBsJakpkZ\",layoutId:\"RBsJakpkZ\",style:{width:\"100%\"},variant:\"BpXi6rsw4\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2v2ehg\",\"data-border\":true,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gq4qab\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e1nwdj\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1s9czea-container\",isModuleExternal:true,nodeId:\"Gb0b4ZKyW\",scopeId:\"AygPt60n6\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(34, 125, 231)\",height:\"100%\",iconSearch:getLocalizedValue(\"v0\",activeLocale)??\"CaretLeft\",iconSelection:\"House\",id:\"Gb0b4ZKyW\",layoutId:\"Gb0b4ZKyW\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1ib2xk\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgba(113, 113, 122, 0.7)\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"K8z9YqGw6\"},motionChild:true,nodeId:\"nQ7Jw5GcZ\",openInNewTab:false,relValues:[],scopeId:\"AygPt60n6\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1bwzom3\",\"data-styles-preset\":\"xxrpaKQuu\",children:\"Go back to the integrations\"})})})}),className:\"framer-1lovf71\",fonts:[\"FS;Manrope-bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yflu8w\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16gd3x5\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rh40zz\",\"data-border\":true,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-117lkxe\",\"data-border\":true,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nvgl7u-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"cNF03_bvk\",scopeId:\"AygPt60n6\",children:/*#__PURE__*/_jsx(Logo,{company:getLocalizedValue(\"v2\",activeLocale)??\"Framer\",height:\"100%\",id:\"cNF03_bvk\",isSearch:false,layoutId:\"cNF03_bvk\",radius:10,srcType:\"URL\",srcUrl:BXHUVVhIS,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1g22d1w\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YeuTUTLiM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-n7w2n\",\"data-styles-preset\":\"D8D9DAEGL\",style:{\"--framer-text-alignment\":\"left\"},children:\"Zapier\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-n7w2n\",\"data-styles-preset\":\"D8D9DAEGL\",style:{\"--framer-text-alignment\":\"center\"},children:\"Zapier\"})}),className:\"framer-11x3gqv\",\"data-framer-name\":\"name\",fonts:[\"Inter\"],text:jRJrbBBZ6,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-srd1c1\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YeuTUTLiM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"Automate Breakcold with 6000+ applications\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"Create and update leads from 7+ platforms.\"})}),className:\"framer-6twkz1\",\"data-framer-name\":\"provider_name\",fonts:[\"GF;Manrope-500\"],text:B27vsuhd5,verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12ttf9r\",\"data-border\":true,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gu54g4\",\"data-framer-name\":\"Video 1\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-af0es5-container\",isModuleExternal:true,nodeId:\"n_xLT9gPv\",scopeId:\"AygPt60n6\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"n_xLT9gPv\",isMixedBorderRadius:false,isRed:false,layoutId:\"n_xLT9gPv\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:W24XrpLUL,width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-l9zqg1\",\"data-border\":true,children:/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:0sWquksFr1YDkaIgrl9Z/VgWe6mCMJOseqaLiMnaC/Vimeo.js:default\":componentPresets.props[\"k72YiG4ti\"],\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\":componentPresets.props[\"PtnY28bje\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"PGk5KK79k\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:cwJ9L0_Ks,className:\"framer-jpol45\",\"data-framer-name\":\"description_html\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-fsrzda\",blockquote:\"framer-styles-preset-80bz11\",code:\"framer-styles-preset-spqoy6\",h1:\"framer-styles-preset-3nqyhf\",h2:\"framer-styles-preset-1wml6uu\",h3:\"framer-styles-preset-12lj5ox\",h4:\"framer-styles-preset-aqgkdx\",h5:\"framer-styles-preset-bd65jw\",h6:\"framer-styles-preset-1vwxz9c\",img:\"framer-styles-preset-18x7l37\",p:\"framer-styles-preset-21ogod\",table:\"framer-styles-preset-yfwvhb\"},verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u8crhm\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kkroc9\",\"data-border\":true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s8bhcs\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YeuTUTLiM:{children:getLocalizedValue(\"v4\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"div\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS03MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Install Integration\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v3\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"div\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS03MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Install Integration\"})}),className:\"framer-11zddg3\",fonts:[\"GF;Manrope-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YeuTUTLiM:{children:getLocalizedValue(\"v6\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"div\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS03MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.8)\"},children:\"Add this integration to Breakcold to enhance your capabilities.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v5\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"div\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS03MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.8)\"},children:\"Add this integration to Breakcold to enhance your capabilities.\"})}),className:\"framer-1304lb\",fonts:[\"GF;Manrope-700\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dorecj\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:MIa1jtwzV,implicitPathVariables:undefined},{href:MIa1jtwzV,implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YeuTUTLiM:{y:(componentViewport?.y||0)+0+80+30+0+0+65.6+0+830.4+0+0+30+161+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,width:`calc(min(400px, min(${componentViewport?.width||\"100vw\"}, 1400px)) - 60px)`,y:(componentViewport?.y||0)+0+80+30+0+0+65.6+0+0+0+30+180.6+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-g0dt6x-container\",nodeId:\"tpr5xeJ_r\",scopeId:\"AygPt60n6\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YeuTUTLiM:{EU6ywjAOx:resolvedLinks[1],variant:\"nE1_HygmY\"}},children:/*#__PURE__*/_jsx(Button,{a3QCF6cRp:100,al8OwCgnb:true,D0bDI5SL6:\"House\",EU6ywjAOx:resolvedLinks[0],F3JhtinxZ:getLocalizedValue(\"v7\",activeLocale)??\"Install now\",gPzRw1RMG:false,height:\"100%\",id:\"tpr5xeJ_r\",l41SWI7xB:\"Download\",layoutId:\"tpr5xeJ_r\",py5Uxrklc:true,style:{width:\"100%\"},variant:\"ovBW_tmX5\",VEnw4OvGX:\"fill\",width:\"100%\",zyLfdIqW_:\"duotone\"})})})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v8\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"div\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"2em\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.8)\"},children:[\"By installing, you agree to the \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ARl9x1WaS\"},motionChild:true,nodeId:\"g48671pId\",openInNewTab:true,relValues:[],scopeId:\"AygPt60n6\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-qi15hr\",\"data-styles-preset\":\"Moneywonz\",children:\"terms and conditions.\"})})]})}),className:\"framer-2v0xk6\",fonts:[\"GF;Manrope-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),visible&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mwgbih\",\"data-border\":true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v9\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1ib2xk\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\"},children:\"Key Features\"})}),className:\"framer-udmi01\",fonts:[\"FS;Manrope-bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p7qycz\",children:[visible&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1de06hi\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-tufsx8-container\",isModuleExternal:true,nodeId:\"MdElARr_g\",scopeId:\"AygPt60n6\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(0, 89, 247)\",height:\"100%\",iconSearch:getLocalizedValue(\"v10\",activeLocale)??\"checkCircle\",iconSelection:\"House\",id:\"MdElARr_g\",layoutId:\"MdElARr_g\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YeuTUTLiM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\"},children:\"Popular Trigger: new leads\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Add and manage leads from LinkedIn\"})}),className:\"framer-vbr7cb\",fonts:[\"Inter\"],text:crShAs7uy,verticalAlignment:\"top\",withExternalLayout:true})})]}),visible1&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-iqnmy7\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jaikuf-container\",isModuleExternal:true,nodeId:\"OR298VH6P\",scopeId:\"AygPt60n6\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(0, 89, 247)\",height:\"100%\",iconSearch:getLocalizedValue(\"v10\",activeLocale)??\"checkCircle\",iconSelection:\"House\",id:\"OR298VH6P\",layoutId:\"OR298VH6P\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YeuTUTLiM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\"},children:\"Popular Action: create or update leads\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Add and manage leads from LinkedIn Sales Navigator\"})}),className:\"framer-1wvhkdv\",fonts:[\"Inter\"],text:BXytUuP3p,verticalAlignment:\"top\",withExternalLayout:true})})]}),visible2&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-813btf\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-gyfz3c-container\",isModuleExternal:true,nodeId:\"l0lEM6e36\",scopeId:\"AygPt60n6\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(0, 89, 247)\",height:\"100%\",iconSearch:getLocalizedValue(\"v10\",activeLocale)??\"checkCircle\",iconSelection:\"House\",id:\"l0lEM6e36\",layoutId:\"l0lEM6e36\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YeuTUTLiM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\"},children:\"Popular Action: create task\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Add and manage leads from WhatsApp\"})}),className:\"framer-dy7tsv\",fonts:[\"Inter\"],text:mfBCy1Q9L,verticalAlignment:\"top\",withExternalLayout:true})})]}),visible3&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tijyof\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1x9sv0j-container\",isModuleExternal:true,nodeId:\"SBY75xCvo\",scopeId:\"AygPt60n6\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(0, 89, 247)\",height:\"100%\",iconSearch:getLocalizedValue(\"v10\",activeLocale)??\"checkCircle\",iconSelection:\"House\",id:\"SBY75xCvo\",layoutId:\"SBY75xCvo\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YeuTUTLiM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\"},children:\"Content\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Add and manage leads from 𝕏 (Twitter)\"})}),className:\"framer-o4cqut\",fonts:[\"Inter\"],text:g_YLbEJRM,verticalAlignment:\"top\",withExternalLayout:true})})]}),visible4&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u92soz\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jn043l-container\",isModuleExternal:true,nodeId:\"C4Hvi5io0\",scopeId:\"AygPt60n6\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(0, 89, 247)\",height:\"100%\",iconSearch:getLocalizedValue(\"v10\",activeLocale)??\"checkCircle\",iconSelection:\"House\",id:\"C4Hvi5io0\",layoutId:\"C4Hvi5io0\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YeuTUTLiM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\"},children:\"Content\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Add and manage leads from Gmail\"})}),className:\"framer-10od3hx\",fonts:[\"Inter\"],text:SgydAKhde,verticalAlignment:\"top\",withExternalLayout:true})})]}),visible5&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-v2v1la\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-8veqor-container\",isModuleExternal:true,nodeId:\"woznCsecy\",scopeId:\"AygPt60n6\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(0, 89, 247)\",height:\"100%\",iconSearch:getLocalizedValue(\"v10\",activeLocale)??\"checkCircle\",iconSelection:\"House\",id:\"woznCsecy\",layoutId:\"woznCsecy\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YeuTUTLiM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\"},children:\"Content\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Add and manage leads from Instagram\"})}),className:\"framer-1ycystj\",fonts:[\"Inter\"],text:F9KxyOWE3,verticalAlignment:\"top\",withExternalLayout:true})})]}),visible6&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ct3k24\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-2jdjqk-container\",isModuleExternal:true,nodeId:\"KfSJOm3zZ\",scopeId:\"AygPt60n6\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(0, 89, 247)\",height:\"100%\",iconSearch:getLocalizedValue(\"v10\",activeLocale)??\"checkCircle\",iconSelection:\"House\",id:\"KfSJOm3zZ\",layoutId:\"KfSJOm3zZ\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YeuTUTLiM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\"},children:\"Content\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Add and manage leads from Youtube\"})}),className:\"framer-12q2ctr\",fonts:[\"Inter\"],text:p4S_QaTuY,verticalAlignment:\"top\",withExternalLayout:true})})]}),visible7&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mgne9n\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-193aws9-container\",isModuleExternal:true,nodeId:\"LaiCxo_v_\",scopeId:\"AygPt60n6\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(0, 89, 247)\",height:\"100%\",iconSearch:getLocalizedValue(\"v10\",activeLocale)??\"checkCircle\",iconSelection:\"House\",id:\"LaiCxo_v_\",layoutId:\"LaiCxo_v_\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YeuTUTLiM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\"},children:\"Content\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Add and manage leads from Facebook\"})}),className:\"framer-ue10wf\",fonts:[\"Inter\"],text:q1OjE2ERN,verticalAlignment:\"top\",withExternalLayout:true})})]}),visible8&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kz52me\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-12k1525-container\",isModuleExternal:true,nodeId:\"iFMCVg1cU\",scopeId:\"AygPt60n6\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(0, 89, 247)\",height:\"100%\",iconSearch:getLocalizedValue(\"v10\",activeLocale)??\"checkCircle\",iconSelection:\"House\",id:\"iFMCVg1cU\",layoutId:\"iFMCVg1cU\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YeuTUTLiM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\"},children:\"Content\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Content\"})}),className:\"framer-65vfiv\",fonts:[\"Inter\"],text:su1sf8Pri,verticalAlignment:\"top\",withExternalLayout:true})})]}),visible9&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1a58s3e\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1p31lce-container\",isModuleExternal:true,nodeId:\"Tbz46VEn2\",scopeId:\"AygPt60n6\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(0, 89, 247)\",height:\"100%\",iconSearch:getLocalizedValue(\"v10\",activeLocale)??\"checkCircle\",iconSelection:\"House\",id:\"Tbz46VEn2\",layoutId:\"Tbz46VEn2\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"duotone\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YeuTUTLiM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\"},children:\"Content\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Content\"})}),className:\"framer-hhqfm6\",fonts:[\"Inter\"],text:se_Qyuwrg,verticalAlignment:\"top\",withExternalLayout:true})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2bmmc5\",\"data-border\":true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v11\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1ib2xk\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"2em\"},children:\"Developer Information\"})}),className:\"framer-17ylnpf\",\"data-framer-name\":\"provider_icon_url\",fonts:[\"FS;Manrope-bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h35mop\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YeuTUTLiM:{children:getLocalizedValue(\"v13\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1ib2xk\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"2em\",\"--framer-text-color\":\"rgba(113, 113, 122, 0.7)\"},children:\"Ressources\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v12\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1ib2xk\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"2em\",\"--framer-text-color\":\"rgba(113, 113, 122, 0.7)\"},children:\"Ressources\"})}),className:\"framer-18mg8xj\",\"data-framer-name\":\"provider_icon_url\",fonts:[\"FS;Manrope-bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v14\",activeLocale)?.({aTpPAgGTF})??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1ib2xk\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"2em\"},children:/*#__PURE__*/_jsx(Link,{href:aTpPAgGTF,motionChild:true,nodeId:\"Qd2diXkkE\",openInNewTab:false,relValues:[],scopeId:\"AygPt60n6\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1bwzom3\",\"data-styles-preset\":\"xxrpaKQuu\",children:\"Website\"})})})}),className:\"framer-19821u4\",\"data-framer-name\":\"provider_icon_url\",fonts:[\"FS;Manrope-bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-62qg0w\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YeuTUTLiM:{children:getLocalizedValue(\"v16\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1ib2xk\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"2em\",\"--framer-text-color\":\"rgba(113, 113, 122, 0.7)\"},children:\"Build by\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v15\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1ib2xk\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"2em\",\"--framer-text-color\":\"rgba(113, 113, 122, 0.7)\"},children:\"Build by\"})}),className:\"framer-vptpp7\",\"data-framer-name\":\"provider_icon_url\",fonts:[\"FS;Manrope-bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gweuyj\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-13rmy9e-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"sHZqR2Gxz\",scopeId:\"AygPt60n6\",children:/*#__PURE__*/_jsx(Logo,{company:getLocalizedValue(\"v2\",activeLocale)??\"Framer\",height:\"100%\",id:\"sHZqR2Gxz\",isSearch:false,layoutId:\"sHZqR2Gxz\",radius:6,srcType:\"URL\",srcUrl:fFlzek2I4,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1ib2xk\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"2em\"},children:\"Breakcold\"})}),className:\"framer-1t4gk97\",\"data-framer-name\":\"provider_icon_url\",fonts:[\"FS;Manrope-bold\"],text:S7aVLJCg2,verticalAlignment:\"top\",withExternalLayout:true})]})]}),visible10&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1m6lzgp\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v17\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1ib2xk\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"2em\",\"--framer-text-color\":\"rgba(113, 113, 122, 0.7)\"},children:\"First Released\"})}),className:\"framer-ie0gis\",\"data-framer-name\":\"provider_icon_url\",fonts:[\"FS;Manrope-bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1ib2xk\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"2em\"},children:\"Content\"})}),className:\"framer-4qhwlx\",\"data-framer-name\":\"provider_icon_url\",fonts:[\"FS;Manrope-bold\"],text:kAyv7qq0T,verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-tllvhx\",\"data-framer-name\":\"Footer CTA Section\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YeuTUTLiM:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1400px) - 48px)`,y:(componentViewport?.y||0)+0+2386+24+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:431,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1400px) - 88px)`,y:(componentViewport?.y||0)+0+1513.2+44+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-s397am-container\",nodeId:\"K6LHpJXRU\",scopeId:\"AygPt60n6\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YeuTUTLiM:{variant:\"cnBrC6eGh\"}},children:/*#__PURE__*/_jsx(CTA,{height:\"100%\",id:\"K6LHpJXRU\",layoutId:\"K6LHpJXRU\",style:{height:\"100%\",width:\"100%\"},variant:\"s8DqUgniW\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YeuTUTLiM:{y:(componentViewport?.y||0)+0+2865}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:640,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+2032.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-158yelc-container\",nodeId:\"J3pssHAL_\",scopeId:\"AygPt60n6\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{YeuTUTLiM:{variant:\"cOxLhcnIT\"}},children:/*#__PURE__*/_jsx(FooterSection,{height:\"100%\",id:\"J3pssHAL_\",layoutId:\"J3pssHAL_\",style:{width:\"100%\"},variant:\"BYwwEe6EK\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-AAskT.framer-hten0v, .framer-AAskT .framer-hten0v { display: block; }\",\".framer-AAskT.framer-1sodo1g { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-AAskT .framer-dfvy8c-container { flex: none; height: auto; position: sticky; top: 0px; width: 100%; z-index: 8; }\",\".framer-AAskT .framer-2v2ehg { --border-bottom-width: 1px; --border-color: var(--token-f65dbc61-dc39-4ef8-884a-5dfcc2881a7e, #e5e7eb); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #fafafa; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 30px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-AAskT .framer-gq4qab { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1400px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-AAskT .framer-1e1nwdj { 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: hidden; padding: 24px 24px 10px 24px; position: relative; width: 100%; }\",\".framer-AAskT .framer-1s9czea-container { flex: none; height: 21px; position: relative; width: 21px; }\",\".framer-AAskT .framer-1lovf71, .framer-AAskT .framer-2v0xk6 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-AAskT .framer-1yflu8w { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 24px 64px 24px; position: relative; width: 100%; }\",\".framer-AAskT .framer-16gd3x5 { 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: flex-start; max-width: 100%; padding: 0px; position: relative; width: 1px; }\",\".framer-AAskT .framer-1rh40zz { --border-bottom-width: 1px; --border-color: var(--token-f65dbc61-dc39-4ef8-884a-5dfcc2881a7e, #e5e7eb); --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: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0px 0px 1px #f2f5fc; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: hidden; padding: 30px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-AAskT .framer-117lkxe { --border-bottom-width: 1px; --border-color: var(--token-f65dbc61-dc39-4ef8-884a-5dfcc2881a7e, #e5e7eb); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; aspect-ratio: 1 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 100px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 90px; will-change: var(--framer-will-change-override, transform); }\",\".framer-AAskT .framer-1nvgl7u-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 80px); position: relative; width: 70px; }\",\".framer-AAskT .framer-1g22d1w { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-AAskT .framer-11x3gqv { flex: none; height: auto; max-width: 600px; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-AAskT .framer-srd1c1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-AAskT .framer-6twkz1, .framer-AAskT .framer-1t4gk97 { flex: 1 0 0px; height: auto; max-width: 600px; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-AAskT .framer-12ttf9r { --border-bottom-width: 1px; --border-color: var(--token-f65dbc61-dc39-4ef8-884a-5dfcc2881a7e, #e5e7eb); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; 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; box-shadow: 0px 0px 0px 1px var(--token-eedd5ba1-aa65-498e-9c39-9ad611ed7eb6, #f7f7f7); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-AAskT .framer-1gu54g4 { align-content: center; align-items: center; background-color: #c7c7c7; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-AAskT .framer-af0es5-container { aspect-ratio: 1.7857142857142858 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 405px); position: relative; width: 723px; }\",\".framer-AAskT .framer-l9zqg1 { --border-bottom-width: 1px; --border-color: var(--token-f65dbc61-dc39-4ef8-884a-5dfcc2881a7e, #e5e7eb); --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: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0px 0px 1px #f2f5fc; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 30px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-AAskT .framer-jpol45 { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 600px; position: relative; white-space: pre-wrap; width: 601px; word-break: break-word; word-wrap: break-word; }\",\".framer-AAskT .framer-u8crhm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; max-width: 100%; padding: 0px; position: relative; width: 400px; }\",\".framer-AAskT .framer-kkroc9 { --border-bottom-width: 1px; --border-color: var(--token-f65dbc61-dc39-4ef8-884a-5dfcc2881a7e, #e5e7eb); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background: linear-gradient(180deg, #2563eb 0%, rgb(29, 78, 216) 100%); 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: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 30px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-AAskT .framer-s8bhcs, .framer-AAskT .framer-dorecj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-AAskT .framer-11zddg3, .framer-AAskT .framer-udmi01 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-AAskT .framer-1304lb { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-AAskT .framer-g0dt6x-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-AAskT .framer-mwgbih { --border-bottom-width: 1px; --border-color: var(--token-f65dbc61-dc39-4ef8-884a-5dfcc2881a7e, #e5e7eb); --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: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0px 0px 1px #f2f5fc; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 30px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-AAskT .framer-1p7qycz { display: grid; flex: none; gap: 15px; grid-auto-rows: min-content; grid-template-columns: repeat(1, minmax(171px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-AAskT .framer-1de06hi, .framer-AAskT .framer-iqnmy7, .framer-AAskT .framer-813btf, .framer-AAskT .framer-1tijyof, .framer-AAskT .framer-u92soz, .framer-AAskT .framer-v2v1la, .framer-AAskT .framer-1ct3k24, .framer-AAskT .framer-1mgne9n, .framer-AAskT .framer-1kz52me, .framer-AAskT .framer-1a58s3e { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-AAskT .framer-tufsx8-container, .framer-AAskT .framer-1jaikuf-container, .framer-AAskT .framer-gyfz3c-container, .framer-AAskT .framer-1x9sv0j-container, .framer-AAskT .framer-1jn043l-container, .framer-AAskT .framer-8veqor-container, .framer-AAskT .framer-2jdjqk-container, .framer-AAskT .framer-193aws9-container, .framer-AAskT .framer-12k1525-container, .framer-AAskT .framer-1p31lce-container { flex: none; height: 22px; position: relative; width: 22px; }\",\".framer-AAskT .framer-vbr7cb, .framer-AAskT .framer-1wvhkdv, .framer-AAskT .framer-dy7tsv, .framer-AAskT .framer-o4cqut, .framer-AAskT .framer-10od3hx, .framer-AAskT .framer-1ycystj, .framer-AAskT .framer-12q2ctr, .framer-AAskT .framer-ue10wf, .framer-AAskT .framer-65vfiv, .framer-AAskT .framer-hhqfm6 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-AAskT .framer-2bmmc5 { --border-bottom-width: 1px; --border-color: var(--token-f65dbc61-dc39-4ef8-884a-5dfcc2881a7e, #e5e7eb); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0px 0px 1px #f2f5fc; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 30px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-AAskT .framer-17ylnpf, .framer-AAskT .framer-18mg8xj, .framer-AAskT .framer-19821u4, .framer-AAskT .framer-vptpp7, .framer-AAskT .framer-ie0gis, .framer-AAskT .framer-4qhwlx { flex: none; height: auto; max-width: 600px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-AAskT .framer-1h35mop, .framer-AAskT .framer-62qg0w, .framer-AAskT .framer-1m6lzgp { 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: 100%; }\",\".framer-AAskT .framer-gweuyj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-AAskT .framer-13rmy9e-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 34px); position: relative; width: 24px; }\",\".framer-AAskT .framer-tllvhx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1400px; overflow: visible; padding: 44px; position: relative; width: 100%; z-index: 2; }\",\".framer-AAskT .framer-s397am-container { flex: none; height: 431px; position: relative; width: 100%; }\",\".framer-AAskT .framer-158yelc-container { flex: none; height: auto; position: relative; width: 100%; z-index: 2; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,...sharedStyle11.css,...sharedStyle12.css,...sharedStyle13.css,...sharedStyle14.css,'.framer-AAskT[data-border=\"true\"]::after, .framer-AAskT [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: 1199px) { .framer-AAskT.framer-1sodo1g { width: 390px; } .framer-AAskT .framer-1yflu8w { flex-direction: column; gap: 20px; } .framer-AAskT .framer-16gd3x5 { flex: none; gap: 20px; width: 100%; } .framer-AAskT .framer-1rh40zz { flex-direction: column; } .framer-AAskT .framer-117lkxe { height: var(--framer-aspect-ratio-supported, 70px); width: 80px; } .framer-AAskT .framer-1nvgl7u-container { height: var(--framer-aspect-ratio-supported, 70px); width: 60px; } .framer-AAskT .framer-1g22d1w { flex: none; width: 100%; } .framer-AAskT .framer-11x3gqv, .framer-AAskT .framer-jpol45 { width: 100%; } .framer-AAskT .framer-af0es5-container { flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 112px); width: 1px; } .framer-AAskT .framer-u8crhm { gap: 20px; } .framer-AAskT .framer-2v0xk6 { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-AAskT .framer-tufsx8-container, .framer-AAskT .framer-1jaikuf-container, .framer-AAskT .framer-gyfz3c-container, .framer-AAskT .framer-1x9sv0j-container, .framer-AAskT .framer-1jn043l-container, .framer-AAskT .framer-8veqor-container, .framer-AAskT .framer-2jdjqk-container, .framer-AAskT .framer-193aws9-container, .framer-AAskT .framer-12k1525-container, .framer-AAskT .framer-1p31lce-container { height: 18px; width: 18px; } .framer-AAskT .framer-tllvhx { padding: 24px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 2185\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"YeuTUTLiM\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerAygPt60n6=withCSS(Component,css,\"framer-AAskT\");export default FramerAygPt60n6;FramerAygPt60n6.displayName=\"Application\";FramerAygPt60n6.defaultProps={height:2185,width:1200};addFonts(FramerAygPt60n6,[{explicitInter:true,fonts:[{family:\"Manrope\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NGBUP45ES3F7RD5XGKPEDJ6QEPO4TMOK/EXDVWJ2EDDVVV65UENMX33EDDYBX6OF7/6P4FPMFQH7CCC7RZ4UU4NKSGJ2RLF7V5.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Manrope\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v19/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk7PFO_A87jxeN7B.woff2\",weight:\"500\"},{family:\"Manrope\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v19/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk4aE-_A87jxeN7B.woff2\",weight:\"700\"}]},...TopbarFonts,...PhosphorFonts,...LogoFonts,...YouTubeFonts,...ButtonFonts,...CTAFonts,...FooterSectionFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...getFontsFromSharedStyle(sharedStyle10.fonts),...getFontsFromSharedStyle(sharedStyle11.fonts),...getFontsFromSharedStyle(sharedStyle12.fonts),...getFontsFromSharedStyle(sharedStyle13.fonts),...getFontsFromSharedStyle(sharedStyle14.fonts),...componentPresets.fonts?.[\"PGk5KK79k\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"PGk5KK79k\"]):[],...componentPresets.fonts?.[\"k72YiG4ti\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"k72YiG4ti\"]):[],...componentPresets.fonts?.[\"PtnY28bje\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"PtnY28bje\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerAygPt60n6\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerColorSyntax\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerIntrinsicHeight\":\"2185\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"YeuTUTLiM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],"mappings":"4kFAQG,SAAgB,EAAQ,CAAC,MAAI,OAAK,aAAW,YAAU,QAAM,WAAQ,gBAAa,eAAa,eAAY,aAAU,QAAM,GAAGe,GAAM,CAAC,CAAC,IAAM,EAAS,IAAe,CAAO,EAAW,IAAO,MAAY,EAAc,GAAU,IAAY,QAAQ,EAAgB,CAAC,EAAa,EAAa,CAAC,EAAW,KAAI,GAAK,EAAM,CAAM,CAAC,EAAU,EAAW,CAAC,EAAW,KAAI,GAAM,EAAc,CAAM,CAAC,EAAU,EAAW,CAAC,GAAS,EAAM,CAAO,EAAa,GAAUA,GAAM,CAAO,EAAgB,IAAe,mBAAmB,IAAe,MAAM,GAAG,IAAM,GAAI,MAAoB,GAAK,GAAa,CAAE,EAAC,CAAE,IAAM,EAAU,GAAc,EAAI,CAAC,GAAG,QAAA,GAAuB,MAAoB,GAAK,GAAa,CAAC,QAAQ,sBAAuB,EAAC,CAAE,GAAK,CAAC,EAAQ,EAAS,CAAC,EAC5uB,EAAa,EAAS,aAAa,EAAa,IAAI,iBAAiB,IAAI,CAAC,EAAa,IAAI,MAAM,IAAI,CAAC,EAAa,IAAI,iBAAiB,IAAI,CAAC,EAAa,IAAI,cAAc,IAAI,CAAK,GACjJ,GAC1C,GAAe,IAAW,EAAa,IAAI,WAAW,IAAI,CAD1D,EAAa,IAAI,WAAW,IAAI,CAC+B,GAAY,GAAY,EAAa,IAAI,OAAO,IAAI,CAAK,IAAO,SAAQ,EAAa,IAAI,OAAO,IAAI,CAAC,EAAa,IAAI,WAAW,EAAQ,EAAM,GAAO,EAAa,IAAI,QAAQ,QAAQ,CAAE,IAAM,EAAY,CAAC,MAAM,GAAO,gBAAgB,MAAM,oGAAoG,IAAI,EAAS,KAAK,YAAY,IAAI,WAAQ,gBAAa,eAAa,eAAY,YAAU,EAAC,MAAoB,GAAM,UAAU,CAAC,eAAe,IAAI,GAAW,EAAK,CAAC,eAAe,IAAI,GAAW,EAAM,CAAC,cAAc,EAAa,UAAU,EAAW,QAAQ,EAAW,MAAM,CAAC,GAAG,GAAa,eAAa,UAGlsB,IAAkB,GAAW,GAAU,yBAAyB,QAAQ,OAAO,UAAU,SAAS,QAAS,EAAC,KAAK,eAAe,SAAS,CAAC,GAA2B,EAAK,OAAO,CAAC,IAAI,aAAa,KAAK,yBAA0B,EAAC,CAAC,GAA2B,EAAK,OAAO,CAAC,IAAI,aAAa,KAAK,wBAAyB,EAAC,CAAc,EAAK,MAAM,CAAC,MAAM,CAAC,GAAG,EAAW,WAAW,GAAe,qBAAqB,GAAgB,EAAQ,EAAU,CAAC,iBAAA,EAAuB,CAAC,EAAC,CAAE,EAAqJ,KAA/H,EAAK,SAAS,CAAC,QAAS,MAAU,GAAA,OAAiB,MAAO,EAAyC,EAA/B,CAAC,GAAG,EAAW,QAAQ,MAAO,EAAY,GAAG,CAAY,EAAC,CAAM,EAAU,KAAkB,EAAK,GAAW,CAAC,QAAQ,EAAqB,YAAgB,OAAM,EAAC,AAAC,CAAC,EAAC,AAAE,CAAsxB,SAAS,GAAc,EAAU,CAAC,IAAI,EAAI,GAAG,CAAC,EAAI,IAAI,IAAI,EAAY,MAAK,CAAC,IAAM,EAAS,EAAY,EAAU,CAAC,MAAM,CAAC,EAAU,CAAS,CAAE,IAAG,EAAI,WAAW,eAAe,EAAI,WAAW,mBAAmB,EAAI,WAAW,wBAAwB,EAAI,WAAW,2BAA2B,CAAC,IAAM,EAAa,EAAI,SAAS,MAAM,EAAE,CAAC,MAAM,IAAI,CACp0D,GAAG,EAAa,KAAK,QAAQ,CAAC,IAAM,EAAQ,EAAI,aAAa,IAAI,IAAI,CAAO,EAAS,EAAY,EAAQ,CAAC,MAAM,CAAC,EAAQ,CAAS,CAAE,CACpI,GAAG,EAAa,KAAK,QAAQ,CAAC,IAAM,EAAQ,EAAa,GAAG,MAAM,CAAC,EAAQ,CAAI,CAAE,CACjF,GAAG,EAAa,KAAK,SAAS,CAAC,IAAM,EAAQ,EAAa,GAAS,EAAS,EAAY,EAAQ,CAAC,MAAM,CAAC,EAAQ,CAAS,CAAE,CAAC,CAC5H,GAAG,EAAI,WAAW,WAAW,CAAC,IAAM,EAAQ,EAAI,SAAS,MAAM,EAAE,CAAO,EAAS,EAAY,EAAQ,CAAC,MAAM,CAAC,EAAQ,CAAS,CAAE,CAAC,UAAS,EAAY,EAAQ,CAAC,OAAO,IAAI,KAAK,gCAAgC,IAAY,UAAS,GAAgB,EAAQ,EAAI,CAChQ,IAAM,EAAI,+BAAqC,EAAI,OAAO,OAAO,EAAP,CAAY,IAAI,cAAc,SAAS,IAAM,EAAQ,aAAa,IAAM,IAAI,iBAAiB,SAAS,IAAM,EAAQ,aAAa,IAAM,IAAI,eAAe,SAAS,IAAM,EAAQ,iBAAiB,IAAM,QAAQ,SAAS,IAAM,EAAQ,KAAK,GAAO,CAAC,CAC9S,SAAS,IAAc,CAAC,MAAoB,GAAK,MAAM,CAAC,MAAM,CAAC,GAAG,GAAgB,SAAS,QAAS,EAAC,SAAsB,EAAK,MAAM,CAAC,MAAM,EAAgB,SAAS,mEAAoE,EAAC,AAAC,EAAC,AAAE,UAAS,GAAa,CAAC,UAAQ,CAAC,CAAC,MAAoB,GAAK,MAAM,CAAC,UAAU,oCAAoC,MAAM,CAAC,GAAG,EAAgB,SAAS,QAAS,EAAC,SAAsB,EAAM,MAAM,CAAC,MAAM,EAAgB,SAAS,CAAC,UAAU,CAAQ,CAAC,EAAC,AAAC,EAAC,AAAE,UAAS,GAAW,CAAC,UAAQ,YAAU,QAAM,CAAC,CAAC,MAAoB,GAAK,SAAS,CAAS,UAAQ,aAAa,OAAO,MAAM,GAAY,SAAsB,EAAM,MAAM,CAAC,OAAO,OAAO,QAAQ,MAAM,QAAQ,YAAY,MAAM,OAAO,SAAS,CAAc,EAAK,OAAO,CAAC,EAAE,wTAAwT,KAAK,EAAU,EAAM,OAAO,OAAO,UAAU,YAAY,GAAU,EAAM,EAAE,GAAM,MAAM,CAAC,WAAW,kFAAmF,CAAC,EAAC,CAAc,EAAK,OAAO,CAAC,EAAE,sBAAsB,KAAK,MAAO,EAAC,AAAC,CAAC,EAAC,AAAC,EAAC,AAAE,kCAAsT,AApBjmD,GAAyD,IAAuC,IAAoD,IAA4J,CAAgB,AAAC,SAASd,EAAY,CAAsD,AAArD,EAAY,OAAU,MAAM,EAAY,KAAQ,KAAK,EAAY,KAAQ,MAAQ,EAAgB,KAAY,CAAE,EAAE,CAAsB,AAAC,SAASC,EAAiB,CAA2H,AAA1H,EAAiB,KAAQ,eAAe,EAAiB,OAAU,iBAAiB,EAAiB,IAAO,cAAc,EAAiB,IAAO,KAAO,EAAqB,KAAiB,CAAE,EAAE,CAc2B,EAAQ,YAAY,UAAU,EAAoB,EAAQ,CAAC,IAAI,CAAC,KAAK,EAAY,OAAO,MAAM,OAAQ,EAAC,KAAK,CAAC,KAAK,EAAY,KAAK,MAAM,WAAW,QAAQ,OAAO,OAAO,GAAY,AAAC,EAAC,WAAW,CAAC,MAAM,OAAO,KAAK,EAAY,QAAQ,aAAa,MAAM,cAAc,KAAK,OAAOa,EAAM,CAAC,OAAOA,EAAM,OAAO,KAAO,CAAC,EAAC,UAAU,CAAC,MAAM,YAAY,YAAY,4CAA4C,KAAK,EAAY,KAAK,QAAQ,OAAO,OAAO,GAAiB,CAAC,OAAOA,EAAM,CAAC,OAAOA,EAAM,OAAO,KAAO,CAAC,EAAC,MAAM,CAAC,MAAM,QAAQ,KAAK,EAAY,QAAQ,aAAa,MAAM,cAAc,OAAQ,EAAC,GAAG,EAAoB,GAAG,CAAc,EAAC,CAAO,GAAa,CAAC,IAAI,+BAA+B,KAAK,MAAM,YAAW,EAAK,UAAU,iBAAiB,OAAM,CAAK,EAAC,EAAQ,aAAa,GAMhL,GAAY,CAAC,SAAS,WAAW,IAAI,MAAM,KAAK,MAAM,UAAU,wBAAwB,MAAM,GAAG,OAAO,GAAG,QAAQ,EAAE,OAAO,OAAO,WAAW,cAAc,OAAO,SAAU,EAAO,GAAa,CAAC,SAAS,WAAW,MAAM,OAAO,OAAO,MAAO,EAAO,EAAgB,CAAC,UAAU,SAAS,SAAS,GAAI,EAAO,EAAW,CAAC,SAAS,WAAW,IAAI,EAAE,KAAK,EAAE,OAAO,OAAO,MAAM,MAAO,uBCpBxjBG,AAAjnC,GAA8B,GAAU,UAAU,CAAC,aAAa,cAAc,oBAAoB,kBAAmB,EAAC,CAAcZ,GAAM,CAAE,EAAcc,GAAI,CAAC,m8BAAo8B,EAAcF,GAAU,oCCC1lBA,AAAjiB,GAA8B,GAAU,UAAU,CAAE,EAAC,CAAcZ,GAAM,CAAC,CAAC,eAAc,EAAK,MAAM,CAAE,CAAE,CAAA,EAAcc,GAAI,CAAC,uZAAwZ,EAAcF,GAAU,iBCA4D,SAAwB,EAAkB,EAAI,EAAO,CAAC,KAAM,GAAO,CAAC,IAAM,EAAO,EAAiB,EAAO,IAAI,GAAG,EAAO,CAAC,IAAM,EAAM,EAAO,MAAM,CAAC,GAAK,GAAG,EAAM,OAAO,CAAO,GAAO,EAAO,QAAU,CAAC,UAAS,GAAQ,EAAO,CAAC,IAAM,EAAS,CAAE,EAAC,KAAM,GAAO,CAAC,IAAM,EAAO,EAAiB,EAAO,IAAI,GAAG,EAAO,CAAC,IAAM,EAAQ,EAAO,SAAS,CAAC,AAAG,GAAQ,EAAS,KAAK,EAAQ,AAAE,GAAO,EAAO,QAAU,IAAG,EAAS,OAAO,EAAE,MAAO,SAAQ,IAAI,EAAS,AAAE,UAAgB,GAA0B,EAAO,CAAC,IAAM,EAAe,GAAQ,EAAO,CAAC,GAAG,EAAe,MAAM,CAAgB,iBAAnoC,AAApC,GAA8B,CAAM,EAAiB,CAAC,UAAU,IAAI,EAAU,IAAI,OAAO,+BAAqB,UAAU,IAAI,EAAU,IAAI,OAAO,+BAAqB,UAAU,IAAI,EAAU,IAAI,OAAO,+BAAqB,UAAU,IAAI,EAAU,IAAI,OAAO,+BAAqB,UAAU,IAAI,EAAU,IAAI,OAAO,+BAAqB,UAAU,IAAI,EAAU,IAAI,OAAO,+BAAqB,UAAU,IAAI,EAAU,IAAI,OAAO,+BAAqB,UAAU,IAAI,EAAU,IAAI,OAAO,+BAAqB,UAAU,IAAI,EAAU,IAAI,OAAO,+BAAqB,UAAU,IAAI,EAAU,IAAI,OAAO,8BAAqB,qECczlB,AAdb,GAAyD,IAA4b,KAA8C,IAA4B,CAA0B,GAA0G,KAA2H,KAA0H,IAAgF,KAAyE,KAAyE,IAAsE,KAA0E,KAAqG,IAAsE,KAAsE,KAAuE,KAAsE,KAAuE,KAAsE,KAAuE,KAAuE,KAAsE,KAAsE,KAAuE,IAAqE,KAAsE,KAAsE,KAAsE,KAA4G,KAAmF,CAAM,GAAY,EAAST,GAAO,CAAO,GAAc,EAASC,EAAS,CAAO,GAAU,EAAS,EAAK,CAAO,GAAa,EAASC,EAAQ,CAAO,GAAY,EAASC,GAAO,CAAO,GAAS,EAASC,GAAI,CAAO,GAAmB,EAASC,GAAc,CAAO,GAAY,CAAC,UAAU,sBAAsB,UAAU,qBAAsB,EAAyD,GAAkB,eAAqB,GAAkB,CAAC,UAAU,mBAAmB,UAAU,kBAAmB,EAAO,EAAM,GAAW,MAAM,QAAQ,EAAM,CAAQ,EAAM,OAAO,EAAS,GAA2B,MAAM,IAAQ,GAAW,GAAU,CAAC,CAAC,QAAM,GAAG,CAAC,IAAM,EAAS,IAAqB,CAAyB,OAArB,EAAgB,KAAyB,EAAK,QAAQ,CAAC,wBAAwB,CAAC,OAAO,CAAM,EAAC,yBAAyB,EAAG,EAAC,AAAE,EAAO,GAAwB,CAAC,QAAQ,YAAY,MAAM,WAAY,EAAO,GAAS,CAAC,CAAC,SAAO,KAAG,QAAM,GAAGC,EAAM,IAAU,CAAC,GAAGA,EAAM,QAAQ,GAAwBA,EAAM,UAAUA,EAAM,SAAS,WAAY,GAAS,GAAuB,EAAiB,SAASA,EAAM,EAAI,CAAC,IAAM,EAAY,GAAO,KAAK,CAAO,EAAW,GAAK,EAAkB,EAAgB,GAAa,CAAM,CAAC,eAAa,aAAU,CAAC,IAAe,CAAO,EAAkB,IAAsB,CAAO,EAAqB,IAAyB,CAAM,CAAC,EAAiB,CAAC,GAAa,CAAC,KAAK,CAAC,MAAM,YAAY,KAAKC,GAAa,KAAK,YAAa,EAAC,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAa,EAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAa,EAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAa,EAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAa,EAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAa,EAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAa,EAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAa,EAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAa,EAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAa,EAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAa,EAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAa,EAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAa,EAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAa,EAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAa,EAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAa,EAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAa,EAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAa,EAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAa,EAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAa,EAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAa,CAAC,EAAC,MAAM,GAAoC,EAAqB,YAAY,AAAC,EAAC,CAAO,EAAwB,GAAK,CAAC,IAAI,EAAiB,MAAM,IAAI,GAAe,kCAAkC,KAAK,UAAU,EAAqB,IAAI,OAAO,EAAiB,EAAM,EAAM,CAAC,QAAM,UAAA,EAAU,WAAS,UAAQ,YAAU,EAAwB,YAAY,EAAE,GAAG,aAAU,EAAwB,YAAY,EAAE,GAAG,aAAU,EAAwB,YAAY,EAAE,GAAG,aAAU,EAAwB,YAAY,EAAE,GAAG,aAAU,EAAwB,YAAY,EAAE,GAAG,YAAU,EAAwB,YAAY,EAAE,GAAG,YAAU,EAAwB,YAAY,EAAE,GAAG,YAAU,EAAwB,YAAY,EAAE,GAAG,YAAU,EAAwB,YAAY,EAAE,GAAG,YAAU,EAAwB,YAAY,EAAE,GAAG,aAAU,EAAwB,YAAY,EAAE,GAAG,aAAU,EAAwB,YAAY,EAAE,GAAG,YAAU,EAAwB,YAAY,EAAE,GAAG,YAAU,EAAwB,YAAY,EAAE,GAAG,YAAU,EAAwB,YAAY,EAAE,GAAG,YAAU,EAAwB,YAAY,EAAE,GAAG,YAAU,EAAwB,YAAY,EAAE,GAAG,aAAU,EAAwB,YAAY,EAAE,GAAG,aAAU,EAAwB,YAAY,EAAE,GAAG,YAAU,EAAwB,YAAY,EAAE,GAAG,GAAG,GAAU,CAAC,GAASD,EAAM,CAAOE,GAAS,GAAc,IAAI,GAAiB,EAAiB,EAAa,CAAC,CAAC,EAAiB,CAAa,EAAC,CAAC,GAAYA,GAAS,CAAC,GAAK,CAAC,EAAY,GAAoB,CAAC,GAA8B,EAAQ,IAAY,EAAM,CAAO,GAA+B,GAAsB,6CAA8V,EAAO,GAAkB,EAAG,GAAkB,GAAG,GAAsB,CAAC,GAA0B,EAAa,CAAC,IAAM,GAAO,IAAW,CAAO,EAAQ,EAAM,EAAU,CAAO,GAAS,EAAM,EAAU,CAAO,GAAS,EAAM,EAAU,CAAO,GAAS,EAAM,EAAU,CAAO,GAAS,EAAM,GAAU,CAAO,GAAS,EAAM,GAAU,CAAO,GAAS,EAAM,EAAU,CAAO,GAAS,EAAM,EAAU,CAAO,EAAS,EAAM,EAAU,CAAO,GAAS,EAAM,EAAU,CAAO,GAAU,EAAM,EAAU,CAAsB,MAArB,IAAiB,CAAE,EAAC,CAAqB,EAAK,EAA0B,SAAS,CAAC,MAAM,CAAC,iBAAiB,YAAY,oBAAkB,EAAC,SAAsB,EAAM,GAAY,CAAC,GAAG,GAAU,EAAgB,SAAS,CAAc,EAAK,GAAU,CAAC,MAAM,+CAAgD,EAAC,CAAc,EAAM,EAAO,IAAI,CAAC,GAAG,GAAU,UAAU,EAAG,GAAkB,iBAAiBC,EAAU,CAAC,IAAI,EAAW,MAAM,CAAC,GAAG,CAAM,EAAC,SAAS,CAAc,EAAK,EAA0B,CAAC,OAAO,GAAG,MAAM,GAAmB,OAAO,QAAQ,GAAG,GAAmB,GAAG,GAAG,EAAE,EAAE,SAAsB,EAAK,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsB,EAAKC,EAAkB,CAAC,WAAW,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAY,CAAC,EAAC,SAAsB,EAAKV,GAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAO,EAAC,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,MAAM,CAAC,UAAU,gBAAgB,eAAc,EAAK,SAAsB,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAc,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAc,EAAK,EAA0B,CAAC,SAAsB,EAAK,EAAU,CAAC,UAAU,2BAA2B,kBAAiB,EAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB,EAAKC,EAAS,CAAC,MAAM,oBAAoB,OAAO,OAAO,WAAW,EAAkB,KAAK,EAAa,EAAE,YAAY,cAAc,QAAQ,GAAG,YAAY,SAAS,YAAY,UAAS,EAAM,cAAa,EAAM,MAAM,CAAC,OAAO,OAAO,MAAM,MAAO,EAAC,OAAO,OAAO,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAS,EAAkB,KAAK,EAAa,EAAe,EAAA,EAAoB,CAAC,SAAsB,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,sBAAsB,0BAA2B,EAAC,SAAsB,EAAK,EAAK,CAAC,KAAK,CAAC,UAAU,WAAY,EAAC,aAAY,EAAK,OAAO,YAAY,cAAa,EAAM,UAAU,CAAE,EAAC,QAAQ,YAAY,cAAa,EAAM,SAAsB,EAAK,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,6BAA8B,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,CAAC,UAAU,iBAAiB,MAAM,CAAC,iBAAkB,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,AAAC,CAAC,EAAC,CAAc,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAc,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAc,EAAM,MAAM,CAAC,UAAU,iBAAiB,eAAc,EAAK,SAAS,CAAc,EAAK,MAAM,CAAC,UAAU,iBAAiB,eAAc,EAAK,SAAsB,EAAK,EAA0B,CAAC,SAAsB,EAAK,EAAU,CAAC,UAAU,2BAA2B,kBAAiB,EAAK,kBAAiB,EAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB,EAAK,EAAK,CAAC,QAAQ,EAAkB,KAAK,EAAa,EAAE,SAAS,OAAO,OAAO,GAAG,YAAY,UAAS,EAAM,SAAS,YAAY,OAAO,GAAG,QAAQ,MAAM,OAAO,EAAU,MAAM,CAAC,OAAO,OAAO,MAAM,MAAO,EAAC,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAc,EAAKS,EAAkB,CAAC,WAAW,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,KAAK,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAO,EAAC,SAAS,QAAS,EAAC,AAAC,EAAC,AAAC,CAAC,EAAC,SAAsB,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,KAAK,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAS,EAAC,SAAS,QAAS,EAAC,AAAC,EAAC,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,MAAM,CAAC,OAAQ,EAAC,KAAK,GAAU,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,AAAC,EAAC,CAAc,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsB,EAAKA,EAAkB,CAAC,WAAW,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,oBAAqB,EAAC,SAAS,4CAA6C,EAAC,AAAC,EAAC,AAAC,CAAC,EAAC,SAAsB,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,uBAAuB,MAAM,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,oBAAqB,EAAC,SAAS,4CAA6C,EAAC,AAAC,EAAC,CAAC,UAAU,gBAAgB,mBAAmB,gBAAgB,MAAM,CAAC,gBAAiB,EAAC,KAAK,GAAU,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,CAAC,EAAC,AAAC,CAAC,EAAC,CAAc,EAAK,MAAM,CAAC,UAAU,iBAAiB,eAAc,EAAK,SAAsB,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAsB,EAAK,EAA0B,CAAC,SAAsB,EAAK,EAAU,CAAC,UAAU,0BAA0B,kBAAiB,EAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB,EAAKR,EAAQ,CAAC,aAAa,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,OAAO,OAAO,GAAG,YAAY,qBAAoB,EAAM,OAAM,EAAM,SAAS,YAAY,KAAK,MAAM,YAAW,EAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAO,EAAC,UAAU,iBAAiB,cAAc,EAAE,eAAe,EAAE,IAAI,GAAU,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,MAAM,CAAC,UAAU,gBAAgB,eAAc,EAAK,SAAsB,EAAK,GAAyB,CAAC,QAAQ,CAAC,oEAAA,EAAoE,UAAoC,sEAAA,EAAsE,UAAoC,wEAAA,EAAwE,SAAoC,EAAC,SAAsB,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAS,GAAU,UAAU,gBAAgB,mBAAmB,mBAAmB,MAAM,CAAC,OAAQ,EAAC,wBAAwB,CAAC,EAAE,8BAA8B,WAAW,8BAA8B,KAAK,8BAA8B,GAAG,8BAA8B,GAAG,+BAA+B,GAAG,+BAA+B,GAAG,8BAA8B,GAAG,8BAA8B,GAAG,+BAA+B,IAAI,+BAA+B,EAAE,8BAA8B,MAAM,6BAA8B,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,CAAC,EAAC,CAAc,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAc,EAAM,MAAM,CAAC,UAAU,gBAAgB,eAAc,EAAK,SAAS,CAAc,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAc,EAAKQ,EAAkB,CAAC,WAAW,EAAY,UAAU,CAAC,UAAU,CAAC,SAAS,EAAkB,KAAK,EAAa,EAAe,EAAA,EAAoB,CAAC,SAAsB,EAAK,MAAM,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,sBAAsB,oBAAqB,EAAC,SAAS,qBAAsB,EAAC,AAAC,EAAC,AAAC,CAAC,EAAC,SAAsB,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAS,EAAkB,KAAK,EAAa,EAAe,EAAA,EAAoB,CAAC,SAAsB,EAAK,MAAM,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,sBAAsB,oBAAqB,EAAC,SAAS,qBAAsB,EAAC,AAAC,EAAC,CAAC,UAAU,iBAAiB,MAAM,CAAC,gBAAiB,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,AAAC,EAAC,CAAc,EAAKA,EAAkB,CAAC,WAAW,EAAY,UAAU,CAAC,UAAU,CAAC,SAAS,EAAkB,KAAK,EAAa,EAAe,EAAA,EAAoB,CAAC,SAAsB,EAAK,MAAM,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,sBAAsB,0BAA2B,EAAC,SAAS,iEAAkE,EAAC,AAAC,EAAC,AAAC,CAAC,EAAC,SAAsB,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAS,EAAkB,KAAK,EAAa,EAAe,EAAA,EAAoB,CAAC,SAAsB,EAAK,MAAM,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,sBAAsB,0BAA2B,EAAC,SAAS,iEAAkE,EAAC,AAAC,EAAC,CAAC,UAAU,gBAAgB,MAAM,CAAC,gBAAiB,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,AAAC,EAAC,AAAC,CAAC,EAAC,CAAc,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAc,EAAK,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,EAAU,0BAAA,EAAgC,EAAC,CAAC,KAAK,EAAU,0BAAA,EAAiC,CAAA,EAAC,SAAS,GAA4B,EAAKA,EAAkB,CAAC,WAAW,EAAY,UAAU,CAAC,UAAU,CAAC,GAAG,GAAmB,GAAG,GAAG,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,EAAE,MAAM,EAAE,EAAE,GAAG,IAAI,EAAE,CAAE,CAAC,EAAC,SAAsB,EAAK,EAA0B,CAAC,OAAO,GAAG,OAAO,sBAAsB,GAAmB,OAAO,QAAQ,oBAAoB,GAAG,GAAmB,GAAG,GAAG,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,EAAE,EAAE,EAAE,GAAG,MAAM,EAAE,EAAE,SAAsB,EAAK,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsB,EAAKA,EAAkB,CAAC,WAAW,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU,EAAc,GAAG,QAAQ,WAAY,CAAC,EAAC,SAAsB,EAAKP,GAAO,CAAC,UAAU,IAAI,WAAU,EAAK,UAAU,QAAQ,UAAU,EAAc,GAAG,UAAU,EAAkB,KAAK,EAAa,EAAE,cAAc,WAAU,EAAM,OAAO,OAAO,GAAG,YAAY,UAAU,WAAW,SAAS,YAAY,WAAU,EAAK,MAAM,CAAC,MAAM,MAAO,EAAC,QAAQ,YAAY,UAAU,OAAO,MAAM,OAAO,UAAU,SAAU,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAS,EAAkB,KAAK,EAAa,EAAe,EAAA,EAAoB,CAAC,SAAsB,EAAM,MAAM,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,MAAM,sBAAsB,0BAA2B,EAAC,SAAS,CAAC,mCAAgD,EAAK,EAAK,CAAC,KAAK,CAAC,UAAU,WAAY,EAAC,aAAY,EAAK,OAAO,YAAY,cAAa,EAAK,UAAU,CAAE,EAAC,QAAQ,YAAY,cAAa,EAAM,SAAsB,EAAK,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,uBAAwB,EAAC,AAAC,EAAC,AAAC,CAAC,EAAC,AAAC,EAAC,CAAC,UAAU,gBAAgB,MAAM,CAAC,gBAAiB,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,AAAC,CAAC,EAAC,AAAC,CAAC,EAAC,CAAC,GAAsB,EAAM,MAAM,CAAC,UAAU,gBAAgB,eAAc,EAAK,SAAS,CAAc,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAS,EAAkB,KAAK,EAAa,EAAe,EAAA,EAAoB,CAAC,SAAsB,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,KAAM,EAAC,SAAS,cAAe,EAAC,AAAC,EAAC,CAAC,UAAU,gBAAgB,MAAM,CAAC,iBAAkB,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,CAAc,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAC,GAAsB,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAc,EAAK,EAA0B,CAAC,SAAsB,EAAK,EAAU,CAAC,UAAU,0BAA0B,kBAAiB,EAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB,EAAKF,EAAS,CAAC,MAAM,kBAAkB,OAAO,OAAO,WAAW,EAAkB,MAAM,EAAa,EAAE,cAAc,cAAc,QAAQ,GAAG,YAAY,SAAS,YAAY,UAAS,EAAM,cAAa,EAAM,MAAM,CAAC,OAAO,OAAO,MAAM,MAAO,EAAC,OAAO,UAAU,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAKS,EAAkB,CAAC,WAAW,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,IAAI,CAAC,MAAM,CAAC,qBAAqB,MAAO,EAAC,SAAS,4BAA6B,EAAC,AAAC,EAAC,AAAC,CAAC,EAAC,SAAsB,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,IAAI,CAAC,SAAS,oCAAqC,EAAC,AAAC,EAAC,CAAC,UAAU,gBAAgB,MAAM,CAAC,OAAQ,EAAC,KAAK,EAAU,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,AAAC,EAAC,AAAC,CAAC,EAAC,CAAC,IAAuB,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAc,EAAK,EAA0B,CAAC,SAAsB,EAAK,EAAU,CAAC,UAAU,2BAA2B,kBAAiB,EAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB,EAAKT,EAAS,CAAC,MAAM,kBAAkB,OAAO,OAAO,WAAW,EAAkB,MAAM,EAAa,EAAE,cAAc,cAAc,QAAQ,GAAG,YAAY,SAAS,YAAY,UAAS,EAAM,cAAa,EAAM,MAAM,CAAC,OAAO,OAAO,MAAM,MAAO,EAAC,OAAO,UAAU,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAKS,EAAkB,CAAC,WAAW,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,IAAI,CAAC,MAAM,CAAC,qBAAqB,MAAO,EAAC,SAAS,wCAAyC,EAAC,AAAC,EAAC,AAAC,CAAC,EAAC,SAAsB,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,IAAI,CAAC,SAAS,oDAAqD,EAAC,AAAC,EAAC,CAAC,UAAU,iBAAiB,MAAM,CAAC,OAAQ,EAAC,KAAK,EAAU,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,AAAC,EAAC,AAAC,CAAC,EAAC,CAAC,IAAuB,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAc,EAAK,EAA0B,CAAC,SAAsB,EAAK,EAAU,CAAC,UAAU,0BAA0B,kBAAiB,EAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB,EAAKT,EAAS,CAAC,MAAM,kBAAkB,OAAO,OAAO,WAAW,EAAkB,MAAM,EAAa,EAAE,cAAc,cAAc,QAAQ,GAAG,YAAY,SAAS,YAAY,UAAS,EAAM,cAAa,EAAM,MAAM,CAAC,OAAO,OAAO,MAAM,MAAO,EAAC,OAAO,UAAU,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAKS,EAAkB,CAAC,WAAW,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,IAAI,CAAC,MAAM,CAAC,qBAAqB,MAAO,EAAC,SAAS,6BAA8B,EAAC,AAAC,EAAC,AAAC,CAAC,EAAC,SAAsB,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,IAAI,CAAC,SAAS,oCAAqC,EAAC,AAAC,EAAC,CAAC,UAAU,gBAAgB,MAAM,CAAC,OAAQ,EAAC,KAAK,EAAU,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,AAAC,EAAC,AAAC,CAAC,EAAC,CAAC,IAAuB,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAc,EAAK,EAA0B,CAAC,SAAsB,EAAK,EAAU,CAAC,UAAU,2BAA2B,kBAAiB,EAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB,EAAKT,EAAS,CAAC,MAAM,kBAAkB,OAAO,OAAO,WAAW,EAAkB,MAAM,EAAa,EAAE,cAAc,cAAc,QAAQ,GAAG,YAAY,SAAS,YAAY,UAAS,EAAM,cAAa,EAAM,MAAM,CAAC,OAAO,OAAO,MAAM,MAAO,EAAC,OAAO,UAAU,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAKS,EAAkB,CAAC,WAAW,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,IAAI,CAAC,MAAM,CAAC,qBAAqB,MAAO,EAAC,SAAS,SAAU,EAAC,AAAC,EAAC,AAAC,CAAC,EAAC,SAAsB,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,IAAI,CAAC,SAAS,wCAAyC,EAAC,AAAC,EAAC,CAAC,UAAU,gBAAgB,MAAM,CAAC,OAAQ,EAAC,KAAK,EAAU,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,AAAC,EAAC,AAAC,CAAC,EAAC,CAAC,IAAuB,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAc,EAAK,EAA0B,CAAC,SAAsB,EAAK,EAAU,CAAC,UAAU,2BAA2B,kBAAiB,EAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB,EAAKT,EAAS,CAAC,MAAM,kBAAkB,OAAO,OAAO,WAAW,EAAkB,MAAM,EAAa,EAAE,cAAc,cAAc,QAAQ,GAAG,YAAY,SAAS,YAAY,UAAS,EAAM,cAAa,EAAM,MAAM,CAAC,OAAO,OAAO,MAAM,MAAO,EAAC,OAAO,UAAU,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAKS,EAAkB,CAAC,WAAW,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,IAAI,CAAC,MAAM,CAAC,qBAAqB,MAAO,EAAC,SAAS,SAAU,EAAC,AAAC,EAAC,AAAC,CAAC,EAAC,SAAsB,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,IAAI,CAAC,SAAS,iCAAkC,EAAC,AAAC,EAAC,CAAC,UAAU,iBAAiB,MAAM,CAAC,OAAQ,EAAC,KAAK,GAAU,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,AAAC,EAAC,AAAC,CAAC,EAAC,CAAC,IAAuB,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAc,EAAK,EAA0B,CAAC,SAAsB,EAAK,EAAU,CAAC,UAAU,0BAA0B,kBAAiB,EAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB,EAAKT,EAAS,CAAC,MAAM,kBAAkB,OAAO,OAAO,WAAW,EAAkB,MAAM,EAAa,EAAE,cAAc,cAAc,QAAQ,GAAG,YAAY,SAAS,YAAY,UAAS,EAAM,cAAa,EAAM,MAAM,CAAC,OAAO,OAAO,MAAM,MAAO,EAAC,OAAO,UAAU,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAKS,EAAkB,CAAC,WAAW,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,IAAI,CAAC,MAAM,CAAC,qBAAqB,MAAO,EAAC,SAAS,SAAU,EAAC,AAAC,EAAC,AAAC,CAAC,EAAC,SAAsB,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,IAAI,CAAC,SAAS,qCAAsC,EAAC,AAAC,EAAC,CAAC,UAAU,iBAAiB,MAAM,CAAC,OAAQ,EAAC,KAAK,GAAU,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,AAAC,EAAC,AAAC,CAAC,EAAC,CAAC,IAAuB,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAc,EAAK,EAA0B,CAAC,SAAsB,EAAK,EAAU,CAAC,UAAU,0BAA0B,kBAAiB,EAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB,EAAKT,EAAS,CAAC,MAAM,kBAAkB,OAAO,OAAO,WAAW,EAAkB,MAAM,EAAa,EAAE,cAAc,cAAc,QAAQ,GAAG,YAAY,SAAS,YAAY,UAAS,EAAM,cAAa,EAAM,MAAM,CAAC,OAAO,OAAO,MAAM,MAAO,EAAC,OAAO,UAAU,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAKS,EAAkB,CAAC,WAAW,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,IAAI,CAAC,MAAM,CAAC,qBAAqB,MAAO,EAAC,SAAS,SAAU,EAAC,AAAC,EAAC,AAAC,CAAC,EAAC,SAAsB,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,IAAI,CAAC,SAAS,mCAAoC,EAAC,AAAC,EAAC,CAAC,UAAU,iBAAiB,MAAM,CAAC,OAAQ,EAAC,KAAK,EAAU,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,AAAC,EAAC,AAAC,CAAC,EAAC,CAAC,IAAuB,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAc,EAAK,EAA0B,CAAC,SAAsB,EAAK,EAAU,CAAC,UAAU,2BAA2B,kBAAiB,EAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB,EAAKT,EAAS,CAAC,MAAM,kBAAkB,OAAO,OAAO,WAAW,EAAkB,MAAM,EAAa,EAAE,cAAc,cAAc,QAAQ,GAAG,YAAY,SAAS,YAAY,UAAS,EAAM,cAAa,EAAM,MAAM,CAAC,OAAO,OAAO,MAAM,MAAO,EAAC,OAAO,UAAU,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAKS,EAAkB,CAAC,WAAW,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,IAAI,CAAC,MAAM,CAAC,qBAAqB,MAAO,EAAC,SAAS,SAAU,EAAC,AAAC,EAAC,AAAC,CAAC,EAAC,SAAsB,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,IAAI,CAAC,SAAS,oCAAqC,EAAC,AAAC,EAAC,CAAC,UAAU,gBAAgB,MAAM,CAAC,OAAQ,EAAC,KAAK,EAAU,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,AAAC,EAAC,AAAC,CAAC,EAAC,CAAC,GAAuB,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAc,EAAK,EAA0B,CAAC,SAAsB,EAAK,EAAU,CAAC,UAAU,2BAA2B,kBAAiB,EAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB,EAAKT,EAAS,CAAC,MAAM,kBAAkB,OAAO,OAAO,WAAW,EAAkB,MAAM,EAAa,EAAE,cAAc,cAAc,QAAQ,GAAG,YAAY,SAAS,YAAY,UAAS,EAAM,cAAa,EAAM,MAAM,CAAC,OAAO,OAAO,MAAM,MAAO,EAAC,OAAO,UAAU,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAKS,EAAkB,CAAC,WAAW,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,IAAI,CAAC,MAAM,CAAC,qBAAqB,MAAO,EAAC,SAAS,SAAU,EAAC,AAAC,EAAC,AAAC,CAAC,EAAC,SAAsB,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,IAAI,CAAC,SAAS,SAAU,EAAC,AAAC,EAAC,CAAC,UAAU,gBAAgB,MAAM,CAAC,OAAQ,EAAC,KAAK,EAAU,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,AAAC,EAAC,AAAC,CAAC,EAAC,CAAC,IAAuB,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAc,EAAK,EAA0B,CAAC,SAAsB,EAAK,EAAU,CAAC,UAAU,2BAA2B,kBAAiB,EAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB,EAAKT,EAAS,CAAC,MAAM,kBAAkB,OAAO,OAAO,WAAW,EAAkB,MAAM,EAAa,EAAE,cAAc,cAAc,QAAQ,GAAG,YAAY,SAAS,YAAY,UAAS,EAAM,cAAa,EAAM,MAAM,CAAC,OAAO,OAAO,MAAM,MAAO,EAAC,OAAO,UAAU,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAKS,EAAkB,CAAC,WAAW,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,IAAI,CAAC,MAAM,CAAC,qBAAqB,MAAO,EAAC,SAAS,SAAU,EAAC,AAAC,EAAC,AAAC,CAAC,EAAC,SAAsB,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,IAAI,CAAC,SAAS,SAAU,EAAC,AAAC,EAAC,CAAC,UAAU,gBAAgB,MAAM,CAAC,OAAQ,EAAC,KAAK,EAAU,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,AAAC,EAAC,AAAC,CAAC,EAAC,AAAC,CAAC,EAAC,AAAC,CAAC,EAAC,CAAc,EAAM,MAAM,CAAC,UAAU,gBAAgB,eAAc,EAAK,SAAS,CAAc,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAS,EAAkB,MAAM,EAAa,EAAe,EAAA,EAAoB,CAAC,SAAsB,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,KAAM,EAAC,SAAS,uBAAwB,EAAC,AAAC,EAAC,CAAC,UAAU,iBAAiB,mBAAmB,oBAAoB,MAAM,CAAC,iBAAkB,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,CAAc,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAc,EAAKA,EAAkB,CAAC,WAAW,EAAY,UAAU,CAAC,UAAU,CAAC,SAAS,EAAkB,MAAM,EAAa,EAAe,EAAA,EAAoB,CAAC,SAAsB,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,MAAM,sBAAsB,0BAA2B,EAAC,SAAS,YAAa,EAAC,AAAC,EAAC,AAAC,CAAC,EAAC,SAAsB,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAS,EAAkB,MAAM,EAAa,EAAe,EAAA,EAAoB,CAAC,SAAsB,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,uBAAuB,MAAM,uBAAuB,MAAM,sBAAsB,0BAA2B,EAAC,SAAS,YAAa,EAAC,AAAC,EAAC,CAAC,UAAU,iBAAiB,mBAAmB,oBAAoB,MAAM,CAAC,iBAAkB,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,AAAC,EAAC,CAAc,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAS,EAAkB,MAAM,EAAa,GAAG,CAAC,WAAU,EAAC,EAAe,EAAA,EAAoB,CAAC,SAAsB,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,uBAAuB,MAAM,uBAAuB,KAAM,EAAC,SAAsB,EAAK,EAAK,CAAC,KAAK,EAAU,aAAY,EAAK,OAAO,YAAY,cAAa,EAAM,UAAU,CAAE,EAAC,QAAQ,YAAY,cAAa,EAAM,SAAsB,EAAK,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,SAAU,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,CAAC,UAAU,iBAAiB,mBAAmB,oBAAoB,MAAM,CAAC,iBAAkB,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,AAAC,CAAC,EAAC,CAAc,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAc,EAAKA,EAAkB,CAAC,WAAW,EAAY,UAAU,CAAC,UAAU,CAAC,SAAS,EAAkB,MAAM,EAAa,EAAe,EAAA,EAAoB,CAAC,SAAsB,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,MAAM,sBAAsB,0BAA2B,EAAC,SAAS,UAAW,EAAC,AAAC,EAAC,AAAC,CAAC,EAAC,SAAsB,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAS,EAAkB,MAAM,EAAa,EAAe,EAAA,EAAoB,CAAC,SAAsB,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,uBAAuB,MAAM,uBAAuB,MAAM,sBAAsB,0BAA2B,EAAC,SAAS,UAAW,EAAC,AAAC,EAAC,CAAC,UAAU,gBAAgB,mBAAmB,oBAAoB,MAAM,CAAC,iBAAkB,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,AAAC,EAAC,CAAc,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAc,EAAK,EAA0B,CAAC,SAAsB,EAAK,EAAU,CAAC,UAAU,2BAA2B,kBAAiB,EAAK,kBAAiB,EAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB,EAAK,EAAK,CAAC,QAAQ,EAAkB,KAAK,EAAa,EAAE,SAAS,OAAO,OAAO,GAAG,YAAY,UAAS,EAAM,SAAS,YAAY,OAAO,EAAE,QAAQ,MAAM,OAAO,GAAU,MAAM,CAAC,OAAO,OAAO,MAAM,MAAO,EAAC,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,uBAAuB,MAAM,uBAAuB,KAAM,EAAC,SAAS,WAAY,EAAC,AAAC,EAAC,CAAC,UAAU,iBAAiB,mBAAmB,oBAAoB,MAAM,CAAC,iBAAkB,EAAC,KAAK,GAAU,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,AAAC,CAAC,EAAC,AAAC,CAAC,EAAC,CAAC,IAAwB,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAc,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAS,EAAkB,MAAM,EAAa,EAAe,EAAA,EAAoB,CAAC,SAAsB,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,uBAAuB,MAAM,uBAAuB,MAAM,sBAAsB,0BAA2B,EAAC,SAAS,gBAAiB,EAAC,AAAC,EAAC,CAAC,UAAU,gBAAgB,mBAAmB,oBAAoB,MAAM,CAAC,iBAAkB,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,CAAc,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,uBAAuB,MAAM,uBAAuB,KAAM,EAAC,SAAS,SAAU,EAAC,AAAC,EAAC,CAAC,UAAU,gBAAgB,mBAAmB,oBAAoB,MAAM,CAAC,iBAAkB,EAAC,KAAK,EAAU,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,AAAC,CAAC,EAAC,AAAC,CAAC,EAAC,AAAC,CAAC,EAAC,AAAC,CAAC,EAAC,AAAC,CAAC,EAAC,AAAC,EAAC,CAAc,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,qBAAqB,SAAsB,EAAKA,EAAkB,CAAC,WAAW,EAAY,UAAU,CAAC,UAAU,CAAC,OAAO,WAAW,GAAmB,OAAO,QAAQ,mBAAmB,GAAG,GAAmB,GAAG,GAAG,EAAE,KAAK,GAAG,CAAE,CAAC,EAAC,SAAsB,EAAK,EAA0B,CAAC,OAAO,IAAI,OAAO,WAAW,GAAmB,OAAO,QAAQ,mBAAmB,GAAG,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,SAAsB,EAAK,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsB,EAAKA,EAAkB,CAAC,WAAW,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAY,CAAC,EAAC,SAAsB,EAAKN,GAAI,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAO,EAAC,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAKM,EAAkB,CAAC,WAAW,EAAY,UAAU,CAAC,UAAU,CAAC,GAAG,GAAmB,GAAG,GAAG,EAAE,IAAK,CAAC,EAAC,SAAsB,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,GAAmB,OAAO,QAAQ,GAAG,GAAmB,GAAG,GAAG,EAAE,OAAO,SAAsB,EAAK,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsB,EAAKA,EAAkB,CAAC,WAAW,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAY,CAAC,EAAC,SAAsB,EAAKL,GAAc,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAO,EAAC,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,CAAC,EAAC,CAAc,EAAK,MAAM,CAAC,GAAG,SAAU,EAAC,AAAC,CAAC,EAAC,AAAC,EAAC,AAAE,EAAC,CAAOM,GAAI,CAAC,kFAAkF,gFAAgF,mSAAmS,4HAA4H,qgBAAqgB,kSAAkS,iSAAiS,yGAAyG,+IAA+I,oSAAoS,qRAAqR,+tBAA+tB,2sBAA2sB,oKAAoK,6RAA6R,uLAAuL,+QAA+Q,uNAAuN,8uBAA8uB,0SAA0S,sLAAsL,iuBAAiuB,wNAAwN,mRAAmR,yuBAAyuB,oTAAoT,4NAA4N,iPAAiP,wGAAwG,iuBAAiuB,uTAAuT,olBAAolB,sdAAsd,qgBAAqgB,ytBAAytB,+UAA+U,4UAA4U,2QAA2Q,oKAAoK,gTAAgT,yGAAyG,qHAAqH,GAAA,GAAmB,GAAA,GAAoB,GAAA,GAAoB,GAAA,GAAoB,GAAA,GAAoB,GAAA,GAAoB,GAAA,GAAoB,GAAA,EAAoB,GAAA,GAAoB,GAAA,GAAoB,GAAA,GAAqB,GAAA,EAAqB,GAAA,GAAqB,GAAA,GAAqB,GAAA,GAAqB,gcAAgc,02CAA22C,EAanoqD,EAAgB,GAAQ,GAAUA,GAAI,eAAe,IAAgB,EAAgB,EAAgB,YAAY,cAAc,EAAgB,aAAa,CAAC,OAAO,KAAK,MAAM,IAAK,EAAC,EAAS,EAAgB,CAAC,CAAC,eAAc,EAAK,MAAM,CAAC,CAAC,OAAO,UAAU,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAM,EAAC,CAAC,OAAO,UAAU,OAAO,SAAS,MAAM,SAAS,IAAI,6FAA6F,OAAO,KAAM,EAAC,CAAC,OAAO,UAAU,OAAO,SAAS,MAAM,SAAS,IAAI,6FAA6F,OAAO,KAAM,CAAC,CAAC,EAAC,GAAG,GAAY,GAAG,GAAc,GAAG,GAAU,GAAG,GAAa,GAAG,GAAY,GAAG,GAAS,GAAG,GAAmB,GAAG,EAAA,EAA0C,CAAC,GAAG,EAAA,GAA2C,CAAC,GAAG,EAAA,GAA2C,CAAC,GAAG,EAAA,GAA2C,CAAC,GAAG,EAAA,GAA2C,CAAC,GAAG,EAAA,GAA2C,CAAC,GAAG,EAAA,GAA2C,CAAC,GAAG,EAAA,GAA2C,CAAC,GAAG,EAAA,GAA2C,CAAC,GAAG,EAAA,EAA2C,CAAC,GAAG,EAAA,GAA4C,CAAC,GAAG,EAAA,GAA4C,CAAC,GAAG,EAAA,GAA4C,CAAC,GAAG,EAAA,GAA4C,CAAC,GAAG,EAAA,GAA4C,CAAC,GAAA,EAAG,UAAsC,EAAA,EAA4B,UAAsC,CAAC,CAAE,EAAC,GAAA,EAAG,UAAsC,EAAA,EAA4B,UAAsC,CAAC,CAAE,EAAC,GAAA,EAAG,UAAsC,EAAA,EAA4B,UAAsC,CAAC,CAAE,CAAC,EAAC,CAAC,8BAA6B,CAAK,EAAC,CAC59G,GAAqB,CAAC,QAAU,CAAC,QAAU,CAAC,KAAO,iBAAiB,KAAO,kBAAkB,MAAQ,CAAE,EAAC,YAAc,CAAC,qBAAuB,OAAO,kBAAoB,OAAO,qBAAuB,OAAO,yBAA2B,OAAO,4BAA8B,OAAO,qBAAuB,4BAA4B,sBAAwB,OAAO,sBAAwB,IAAI,6BAA+B,OAAO,yBAA2B,QAAQ,oCAAsC,mHAA0I,CAAC,EAAC,MAAQ,CAAC,KAAO,SAAS,YAAc,CAAC,sBAAwB,GAAI,CAAC,EAAC,mBAAqB,CAAC,KAAO,UAAW,CAAC,CAAC"}