{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/jfK7C7JmdHGaVBsvt1V7/G0lF2a2mezep3QZSQZwm/DotLottie.js", "ssg:https://framerusercontent.com/modules/8jq9zgLV9BIDgyZnqWAA/47uc1qXDACkCTIWtANjH/JACW2tB9f.js", "ssg:https://framerusercontent.com/modules/584keDCGuoUs18ywsjJd/uQczYLzDJn5Swxhev4n7/JACW2tB9f.js", "ssg:https://framerusercontent.com/modules/584keDCGuoUs18ywsjJd/uQczYLzDJn5Swxhev4n7/JACW2tB9f-0.js", "ssg:https://framerusercontent.com/modules/0V4U725MO1fL2jl4GLOK/SxYrsiO2l7Ag9znZWp72/DjI7JA7Q6.js", "ssg:https://framerusercontent.com/modules/wCRKHVfqN18tNm66xJWO/2RRmC46D3twYjzmDtAr4/Dqv5GIiFX.js", "ssg:https://framerusercontent.com/modules/57FhkldN9P7x88MqAEaR/UfMN9oeTJKQqVQHIwZ5z/LocaleSelector.js", "ssg:https://framerusercontent.com/modules/cuKUFdzXlhvw8OVOBeAc/T08RxQJ4qrs7LLc8wx4E/border.js", "ssg:https://framerusercontent.com/modules/9muYaW1MvHoRQJ0P7dkP/V2GVvLqiMxXRSxszkCSa/focus.js", "ssg:https://framerusercontent.com/modules/YfmtnpWjJrP37sQ18QUZ/9Y2P24U2SBIbf2fPVsOX/hover.js", "ssg:https://framerusercontent.com/modules/wjZLfSMaP1TvJDu5PCwr/6SPClu354QJPCp6Xj5C0/padding.js", "ssg:https://framerusercontent.com/modules/N6MwtHbWoiZJNn1xpqxu/58OHv7BfCzgeBhiv1TYu/radius.js", "ssg:https://framerusercontent.com/modules/Pa4s3PbXfJ6vruViIjPB/0HakGOpnX56g6d8JHtkl/Z9mbc4vSs.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import*as React from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useEffect,useRef,useState}from\"react\";const placeholderUrl=\"https://lottie.host/d826e0a7-b7e8-4072-8afe-c943ed2dd2ca/DpX3m5yT5Z.lottie\";/**\n * DOT LOTTIE\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 200\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */ export default function DotLottie(props){return /*#__PURE__*/ _jsx(OptimizationFriendly,{loading:/*#__PURE__*/ _jsx(\"div\",{}),loaded:/*#__PURE__*/ _jsx(LottiePlayer,{...props})});};function LottiePlayer(props){/* Checks */ const isCanvas=RenderTarget.current()===RenderTarget.canvas;const lottieInstanceRef=useRef(null);const shouldPlay=isCanvas||props.hover===true||props.autoplay===false?null:true;/* File or URL */ let src;switch(props.srcType){case\"url\":src=props.srcUrl;break;case\"file\":src=props.srcFile;break;default:src=placeholderUrl;break;}/* Progress */ const[isReady,setIsReady]=useState(false);/* For canvas states */ useEffect(()=>{if(!lottieInstanceRef.current)return;lottieInstanceRef.current.addEventListener(\"ready\",()=>setIsReady(true));},[]);useEffect(()=>{if(!lottieInstanceRef.current)return;lottieInstanceRef.current.seek(`${props.progress}%`);},[isReady,props.progress]);const lastVariant=useRef();/* For component variant support */ useEffect(()=>{if(isCanvas)return;if(lastVariant.current!==props.autoplay){if(!lottieInstanceRef.current)return;if(props.autoplay===true){lottieInstanceRef.current.play();}if(props.autoplay===false){lottieInstanceRef.current.pause();}}lastVariant.current=props.autoplay;},[props.autoplay]);return(// @ts-ignore\n/*#__PURE__*/ _jsx(\"dotlottie-player\",{src:src,ref:lottieInstanceRef,autoplay:shouldPlay,loop:props.loop?true:null,hover:props.hover?true:null,controls:props.controls?true:null,background:props.background?props.background:null,speed:props.speed,direction:props.direction,style:{...props.style,width:\"100%\",height:\"100%\"}},src));}DotLottie.defaultProps={srcUrl:placeholderUrl,autoplay:true,background:\"#05F\",controls:false,direction:1,hover:false,loop:true,speed:1};DotLottie.displayName=\"Dot Lottie\";addPropertyControls(DotLottie,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"url\",\"file\"],optionTitles:[\"URL\",\"File\"]},srcUrl:{type:ControlType.String,title:\"Link\",placeholder:\"../example.lottie\",hidden:props=>props.srcType===\"file\"},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"lottie\",\"json\"],hidden:props=>props.srcType===\"url\"},autoplay:{type:ControlType.Boolean,title:\"Autoplay\",defaultValue:true},background:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"#05F\"},controls:{type:ControlType.Boolean,title:\"Controls\"},direction:{type:ControlType.Enum,title:\"Direction\",defaultValue:\"1\",displaySegmentedControl:true,segmentedControlDirection:\"horizontal\",options:[\"1\",\"-1\"],optionTitles:[\"Normal\",\"Reverse\"]},hover:{type:ControlType.Boolean,title:\"Hover Play\"},loop:{type:ControlType.Boolean,title:\"Loop\"},speed:{type:ControlType.Number,title:\"Speed\",defaultValue:1,min:1,max:10,unit:\"x\",step:.5,displayStepper:true},progress:{type:ControlType.Number,title:\"Progress\",defaultValue:0,min:0,max:100,step:1,description:\"This component is made for Lottie files. [Learn more here](https://dotlottie.io/).\"}});/* For SSG */ function OptimizationFriendly({loading,loaded}){const[isLoading,setLoading]=React.useState(true);// We can't load web-components in ssg on the server,\n// so we defer rendering until we hit the client.\nReact.useEffect(()=>{import(\"https://unpkg.com/@dotlottie/player-component@1.3.2/dist/dotlottie-player.js\").then(()=>{setLoading(false);});},[]);return isLoading?loading:loaded;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"DotLottie\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"200\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./DotLottie.map", "// Generated by Framer (6421805)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,ResolveLinks,SmartComponentScopedContainer,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import getLocalizedValue from\"https://framerusercontent.com/modules/584keDCGuoUs18ywsjJd/uQczYLzDJn5Swxhev4n7/JACW2tB9f.js\";import ProfilPicture from\"https://framerusercontent.com/modules/0V4U725MO1fL2jl4GLOK/SxYrsiO2l7Ag9znZWp72/DjI7JA7Q6.js\";import Langue from\"https://framerusercontent.com/modules/wCRKHVfqN18tNm66xJWO/2RRmC46D3twYjzmDtAr4/Dqv5GIiFX.js\";import Buttons from\"https://framerusercontent.com/modules/Xe2iY0oLoqpANkiB4w6j/14fYZ2TChFoFLUnDLZd1/urU5jeK4C.js\";const ButtonsFonts=getFonts(Buttons);const ProfilPictureFonts=getFonts(ProfilPicture);const LangueFonts=getFonts(Langue);const cycleOrder=[\"nHRWfqKs5\",\"UsJpIfuzz\",\"BVF7gWL0K\",\"AdmWa1hVg\",\"OILoSCHve\",\"pZ7hkS8SB\",\"rLPO3Xk0x\",\"QV_Ppxn3y\",\"FEwdBWE0V\",\"fI1eJVGra\"];const serializationHash=\"framer-wk6JN\";const variantClassNames={AdmWa1hVg:\"framer-v-10co7hq\",BVF7gWL0K:\"framer-v-1l63g84\",FEwdBWE0V:\"framer-v-1edkisq\",fI1eJVGra:\"framer-v-1xmo1m9\",nHRWfqKs5:\"framer-v-obwua9\",OILoSCHve:\"framer-v-njmnz5\",pZ7hkS8SB:\"framer-v-1pfz19w\",QV_Ppxn3y:\"framer-v-133lor1\",rLPO3Xk0x:\"framer-v-1g1t0ox\",UsJpIfuzz:\"framer-v-57h08l\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transition2={delay:0,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const convertFromEnum=(value,activeLocale)=>{switch(value){case\"default\":return\"mosjFLOn1\";case\"KH4XtYOIu\":return\"wYPUxq19y\";default:return\"mosjFLOn1\";}};const convertFromEnum1=(value,activeLocale)=>{switch(value){case\"default\":return\"Ev7PCYIDH\";case\"KH4XtYOIu\":return\"D1fvp5jIR\";default:return\"Ev7PCYIDH\";}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop English\":\"pZ7hkS8SB\",\"Laptop English\":\"rLPO3Xk0x\",\"Phone - Collapsed\":\"OILoSCHve\",\"Phone - Open\":\"AdmWa1hVg\",\"Phone English Collapsed\":\"fI1eJVGra\",\"Phone English Open\":\"FEwdBWE0V\",\"Tablet English\":\"QV_Ppxn3y\",Desktop:\"nHRWfqKs5\",Laptop:\"UsJpIfuzz\",Tablet:\"BVF7gWL0K\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"nHRWfqKs5\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"nHRWfqKs5\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapza6n95=activeVariantCallback(async(...args)=>{setVariant(\"h7yiRwQy9\");});const onTapf8c00b=activeVariantCallback(async(...args)=>{setVariant(\"OILoSCHve\");});const onTap1qi8pgi=activeVariantCallback(async(...args)=>{setVariant(\"AdmWa1hVg\");});const onTap1vy1j62=activeVariantCallback(async(...args)=>{setVariant(\"fI1eJVGra\");});const onTapopzz2l=activeVariantCallback(async(...args)=>{setVariant(\"FEwdBWE0V\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"AdmWa1hVg\",\"OILoSCHve\",\"FEwdBWE0V\",\"fI1eJVGra\"].includes(baseVariant))return false;return true;};const router=useRouter();const isDisplayed1=()=>{if([\"AdmWa1hVg\",\"OILoSCHve\",\"FEwdBWE0V\",\"fI1eJVGra\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if([\"OILoSCHve\",\"fI1eJVGra\"].includes(baseVariant))return true;return false;};const isDisplayed3=()=>{if([\"AdmWa1hVg\",\"FEwdBWE0V\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({AdmWa1hVg:{value:transition2},FEwdBWE0V:{value:transition2},fI1eJVGra:{value:transition2},OILoSCHve:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-obwua9\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"nHRWfqKs5\",ref:ref??ref1,style:{backdropFilter:\"blur(10px)\",backgroundColor:\"rgba(250, 250, 250, 0.8)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,boxShadow:\"0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.17997), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.15889), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.0625)\",WebkitBackdropFilter:\"blur(10px)\",...style},variants:{FEwdBWE0V:{borderBottomLeftRadius:0,borderBottomRightRadius:0},fI1eJVGra:{borderBottomLeftRadius:8,borderBottomRightRadius:8},OILoSCHve:{borderBottomLeftRadius:8,borderBottomRightRadius:8},pZ7hkS8SB:{borderBottomLeftRadius:0,borderBottomRightRadius:0},QV_Ppxn3y:{borderBottomLeftRadius:0,borderBottomRightRadius:0},rLPO3Xk0x:{borderBottomLeftRadius:0,borderBottomRightRadius:0}},...addPropertyOverrides({AdmWa1hVg:{\"data-framer-name\":\"Phone - Open\"},BVF7gWL0K:{\"data-framer-name\":\"Tablet\"},FEwdBWE0V:{\"data-framer-name\":\"Phone English Open\"},fI1eJVGra:{\"data-framer-name\":\"Phone English Collapsed\"},OILoSCHve:{\"data-framer-name\":\"Phone - Collapsed\"},pZ7hkS8SB:{\"data-framer-name\":\"Desktop English\"},QV_Ppxn3y:{\"data-framer-name\":\"Tablet English\"},rLPO3Xk0x:{\"data-framer-name\":\"Laptop English\"},UsJpIfuzz:{\"data-framer-name\":\"Laptop\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ysmi7k\",\"data-framer-name\":\"Logo + Links\",layoutDependency:layoutDependency,layoutId:\"mERAy_sdp\",children:[/*#__PURE__*/_jsx(Link,{href:{hash:\":M86w4tAXn\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"MleiU9NtY\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-15dybtx framer-ngq9mx\",\"data-framer-name\":\"Logo-B\\xe9lier\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"MleiU9NtY\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 40 40\"><g transform=\"translate(0.254 0.229)\" id=\"ss8884939445_1\"><g transform=\"translate(0 0)\" id=\"ss8884939445_2\"><path d=\"M 19.756 0 C 8.845 0 0 8.845 0 19.756 C 0 30.667 8.845 39.511 19.756 39.511 C 30.667 39.511 39.511 30.667 39.511 19.756 C 39.511 8.845 30.666 0 19.756 0 Z M 37.59 24.143 C 35.623 32.165 28.385 38.117 19.756 38.117 C 9.615 38.117 1.394 29.896 1.394 19.756 C 1.394 9.615 9.615 1.394 19.756 1.394 C 27.346 1.394 33.861 6 36.658 12.569 C 36.707 12.626 36.756 12.683 36.804 12.741 C 37.219 13.246 37.549 13.785 37.785 14.345 C 38.02 14.903 38.155 15.466 38.187 16.017 C 38.218 16.554 38.15 17.066 37.985 17.54 C 38.073 18.275 38.118 19.015 38.118 19.756 C 38.118 19.834 38.117 19.912 38.116 19.99 C 38.121 19.957 38.127 19.924 38.131 19.891 L 38.258 19.001 L 38.613 19.827 C 39.192 21.177 39.003 22.682 38.134 23.662 C 37.972 23.843 37.789 24.005 37.59 24.143 Z\" fill=\"var(--token-160825c1-5f3f-4523-8cd4-8866b1d95eb8, rgb(17, 17, 17)) /* {&quot;name&quot;:&quot;Black&quot;} */\"></path><path d=\"M 8.477 12.595 C 10.961 10.114 14.815 9.656 17.721 11.445 C 20.433 13.115 21.787 16.414 21.033 19.592 C 21.284 19.536 21.477 19.335 21.523 19.081 L 23.898 18.911 C 23.945 18.906 24.375 18.865 24.686 19.199 C 24.96 19.491 24.936 19.853 24.931 19.912 C 24.9 20.653 24.972 21.395 25.144 22.117 C 25.089 23.21 24.608 24.239 23.802 24.982 C 24.275 25.087 24.77 24.968 25.144 24.66 C 24.895 25.827 24.394 26.926 23.675 27.878 C 24.185 27.787 24.669 27.583 25.091 27.282 C 25.351 27.095 25.584 26.873 25.783 26.622 C 25.964 27.421 26.145 28.219 26.326 29.018 C 26.301 29.881 25.866 30.68 25.155 31.169 L 23.462 32.98 C 23.275 32.85 23.107 32.696 22.961 32.522 C 22.721 32.233 22.546 31.895 22.45 31.531 C 22.49 32.247 22.73 32.937 23.142 33.523 C 23.033 33.6 22.93 33.686 22.833 33.779 C 22.765 33.844 22.705 33.909 22.652 33.97 C 22.527 33.85 22.435 33.7 22.386 33.534 C 22.377 33.659 22.388 33.785 22.418 33.906 C 22.438 33.987 22.466 34.066 22.503 34.141 C 22.467 34.194 22.432 34.247 22.397 34.301 C 22.205 34.087 22.067 33.832 21.992 33.555 C 22.007 33.748 22.032 33.94 22.066 34.13 C 22.097 34.299 22.134 34.455 22.173 34.599 C 22.125 34.732 22.107 34.873 22.12 35.014 C 21.083 34.001 20.569 32.568 20.724 31.127 C 21.353 30.657 21.881 30.067 22.279 29.391 C 23.157 29.631 24.095 29.336 24.676 28.635 C 24.53 28.698 24.137 28.843 23.675 28.72 C 23.511 28.676 23.356 28.604 23.217 28.507 C 22.95 26.362 22.684 24.218 22.418 22.074 C 22.733 21.997 23.675 21.723 24.111 20.881 C 24.174 20.759 24.224 20.63 24.26 20.498 C 22.961 21.162 21.561 21.608 20.117 21.818 C 18.307 22.385 16.592 23.218 15.027 24.289 C 14.088 25.073 12.894 25.486 11.672 25.45 C 12.06 25.385 12.845 25.196 13.567 24.566 C 13.871 24.3 14.13 23.987 14.334 23.639 C 13.481 24.041 12.521 24.157 11.597 23.97 C 11.742 23.974 12.205 23.97 12.608 23.639 C 12.758 23.516 12.881 23.364 12.971 23.192 C 12.805 23.239 11.656 23.542 10.585 22.819 C 9.662 22.197 9.436 21.246 9.392 21.04 C 9.359 21.851 9.416 23.368 10.255 24.96 C 10.629 25.67 10.798 26.398 11.448 26.621 C 12.021 26.718 12.932 26.793 13.94 26.482 C 14.441 26.328 14.845 26.313 16.539 24.97 C 18.076 23.751 19.855 22.872 21.757 22.393 C 20.809 23.025 19.959 23.793 19.233 24.672 C 18.937 25.031 18.663 25.408 18.413 25.801 C 17.898 27.149 16.915 28.268 15.644 28.953 C 16.08 28.496 16.427 27.962 16.666 27.377 C 16.796 27.058 16.893 26.726 16.954 26.387 C 16.126 27.499 15.04 28.394 13.791 28.996 C 12.011 29.85 10.395 29.868 9.626 29.826 C 9.879 29.765 10.772 29.515 11.266 28.676 C 11.392 28.462 11.482 28.228 11.533 27.984 C 10.488 28.865 9.554 29.179 8.87 29.296 C 7.51 29.529 4.169 29.989 4.15 29.988 C 2.775 28.398 2.608 26.342 2.068 25.232 C 0.517 22.04 0.545 18.641 0.567 18.636 C 0.582 18.635 0.566 18.634 0.567 18.636 C 0.874 18.521 1.087 18.412 1.404 18.27 C 3.017 17.549 4.337 16.636 5.396 15.722 C 6.015 15.188 6.739 14.787 7.524 14.559 C 9.649 13.945 11.934 14.495 13.386 16.023 C 14.863 17.577 15.292 19.948 14.504 22.093 C 14.659 21.985 16.754 20.477 16.677 17.833 C 16.606 15.441 14.816 14.092 14.6 13.935 C 15.215 13.996 16.132 14.185 17.017 14.798 C 19.496 16.513 19.325 19.891 19.307 20.155 C 19.476 19.597 20.285 16.736 18.732 14.382 C 16.912 11.625 12.519 10.585 8.477 12.595 Z\" fill=\"var(--token-160825c1-5f3f-4523-8cd4-8866b1d95eb8, rgb(17, 17, 17)) /* {&quot;name&quot;:&quot;Black&quot;} */\"></path><g transform=\"translate(19.856 4.75)\" id=\"ss8884939445_5\"><path d=\"M 1.581 11.684 C 2.642 12.718 4.084 13.265 5.564 13.196 C 4.804 13.505 3.997 13.681 3.178 13.718 C 2.461 13.75 2.261 13.745 1.792 13.646 C 1.83 13.406 1.805 13.192 1.792 12.788 C 1.778 12.321 1.609 11.978 1.581 11.684 Z\" fill=\"var(--token-160825c1-5f3f-4523-8cd4-8866b1d95eb8, rgb(17, 17, 17)) /* {&quot;name&quot;:&quot;Black&quot;} */\"></path><path d=\"M 7.683 12.972 C 7.68 13.453 7.742 14.344 8.258 15.273 C 8.465 15.644 8.723 15.985 9.025 16.285 C 8.947 16.06 8.192 13.816 8.951 12.344 C 9.118 12.019 9.42 11.434 10.069 11.173 C 10.269 11.093 10.482 11.049 10.697 11.045 C 10.732 11.083 10.774 11.219 10.788 11.423 C 10.802 11.638 10.769 11.783 10.74 11.822 C 10.664 11.84 10.401 11.911 10.218 12.163 C 9.957 12.523 10.086 12.939 10.101 12.983 C 10.195 13.692 10.487 14.36 10.942 14.911 C 10.849 14.527 10.76 13.875 11.049 13.217 C 11.089 13.126 11.135 13.037 11.187 12.951 C 11.285 13.149 11.507 13.25 11.709 13.196 C 11.89 13.148 12.023 12.985 12.039 12.791 C 12.247 11.926 12.214 11.02 11.944 10.171 C 12.317 10.295 12.637 10.543 12.849 10.874 C 12.927 10.256 12.858 9.629 12.647 9.042 C 12.496 8.629 12.277 8.243 11.997 7.903 C 12.259 7.886 12.519 7.949 12.743 8.084 C 12.774 7.872 12.778 7.658 12.754 7.445 C 12.515 5.363 9.505 3.083 6.875 3.835 C 5.851 4.127 4.642 5.028 4.17 6.455 C 3.766 7.674 4.08 8.738 4.212 9.116 C 3.907 8.706 3.368 7.852 3.339 6.709 C 3.288 4.722 4.814 2.98 6.491 2.407 C 8.672 1.661 11.384 2.795 12.69 5.282 C 12.562 4.697 12.166 3.279 10.89 2.226 C 8.654 0.378 5.675 1.317 4.937 1.587 C 4.43 1.771 2.349 2.529 1.379 4.654 C 0.999 5.487 0.913 6.257 0.9 6.763 L 1.805 5.346 C 1.575 8.574 3.541 11.02 5.607 11.214 C 6.919 11.338 8.693 10.593 9.377 9.01 C 9.907 7.784 9.543 6.613 9.42 6.262 C 9.755 6.628 10.624 7.68 10.495 8.957 C 10.383 10.072 9.53 11.146 8.213 11.795 C 6.471 12.653 4.403 12.514 2.774 11.458 C 2.413 11.225 2.077 10.954 1.773 10.651 C 1.414 10.293 1.101 9.892 0.841 9.456 C -0.569 7.089 -0.169 4.071 1.764 2.107 C 1.805 2.065 1.833 2.038 1.858 2.013 C 3.867 0.054 6.586 0.01 7.151 0.001 C 7.374 -0.003 9.497 -0.018 11.156 0.938 C 14.18 2.68 15.573 7.595 14.159 12.941 C 14.401 12.649 14.615 12.335 14.798 12.003 C 15.929 9.945 15.528 7.747 15.288 6.795 C 17.576 8.42 18.565 10.904 17.865 12.781 C 17.511 13.732 16.787 14.354 16.193 14.73 C 16.024 14.813 15.863 14.913 15.714 15.028 C 15.449 15.232 15.222 15.481 15.043 15.763 C 14.994 15.874 14.901 16.045 14.723 16.168 C 14.366 16.414 13.797 16.146 13.744 16.295 C 13.618 16.646 13.304 18.105 12.519 19.565 C 12.163 20.226 11.7 20.663 11.401 20.907 C 10.815 20.44 10.399 19.792 10.218 19.065 C 10.131 18.939 9.971 18.887 9.835 18.937 C 9.682 18.993 9.591 19.163 9.633 19.331 C 9.662 19.585 9.719 19.836 9.804 20.077 C 9.944 20.475 10.157 20.843 10.432 21.163 C 10.319 21.235 10.192 21.282 10.059 21.302 C 9.205 21.419 8.43 20.227 8.036 19.619 C 7.613 18.968 6.853 17.798 7.29 17.212 C 7.457 16.989 7.748 16.917 7.982 16.893 C 7.613 15.621 7.511 14.287 7.684 12.974 Z\" fill=\"var(--token-160825c1-5f3f-4523-8cd4-8866b1d95eb8, rgb(17, 17, 17)) /* {&quot;name&quot;:&quot;Black&quot;} */\"></path><path d=\"M 13.754 17.52 C 13.798 17.384 13.84 17.242 13.882 17.094 C 13.925 16.937 13.964 16.784 13.999 16.636 C 14.466 16.697 14.933 16.521 15.245 16.167 C 15.304 16.925 15.757 17.597 16.438 17.935 C 16.373 17.98 15.814 18.35 15.17 18.127 C 14.967 18.056 14.784 17.937 14.636 17.781 C 14.459 17.594 14.21 17.491 13.952 17.499 L 13.946 17.499 C 13.881 17.501 13.817 17.508 13.754 17.52 Z\" fill=\"var(--token-160825c1-5f3f-4523-8cd4-8866b1d95eb8, rgb(17, 17, 17)) /* {&quot;name&quot;:&quot;Black&quot;} */\"></path><path d=\"M 13.701 17.861 C 13.834 17.828 13.974 17.832 14.105 17.871 L 14.107 17.871 C 14.166 17.891 14.221 17.922 14.268 17.963 C 14.932 18.538 15.503 18.575 15.713 18.574 C 16.948 18.569 18.233 17.219 18.525 15.177 C 19.061 16.427 18.896 17.835 18.088 18.744 C 16.999 19.972 14.864 20.153 13.307 18.904 C 13.368 18.789 13.43 18.661 13.488 18.521 C 13.576 18.307 13.647 18.086 13.701 17.861 Z M 6.714 13.356 C 6.611 14.338 6.687 15.33 6.938 16.285 C 6.652 16.161 6.398 15.976 6.192 15.742 C 5.872 15.375 5.749 14.97 5.7 14.682 C 5.642 14.332 5.746 13.972 5.991 13.717 C 5.998 13.71 6.004 13.703 6.011 13.697 C 6.201 13.509 6.449 13.389 6.714 13.356 Z\" fill=\"var(--token-160825c1-5f3f-4523-8cd4-8866b1d95eb8, rgb(17, 17, 17)) /* {&quot;name&quot;:&quot;Black&quot;} */\"></path><path d=\"M 7.119 19.192 C 7.472 19.898 7.956 20.531 8.546 21.056 C 8.435 21.082 8.06 21.157 7.662 20.96 C 7.454 20.856 7.277 20.698 7.151 20.502 C 6.935 20.095 6.923 19.61 7.119 19.192 Z\" fill=\"var(--token-160825c1-5f3f-4523-8cd4-8866b1d95eb8, rgb(17, 17, 17)) /* {&quot;name&quot;:&quot;Black&quot;} */\"></path></g></g></g></svg>',svgContentId:8884939445,withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-i4u360\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"Y7azDJBwk\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+(16+((componentViewport?.height||72)-32-40)/2)+0+0,...addPropertyOverrides({BVF7gWL0K:{y:(componentViewport?.y||0)+(16+((componentViewport?.height||200)-32-40)/2)+0+0},QV_Ppxn3y:{y:(componentViewport?.y||0)+(16+((componentViewport?.height||200)-32-40)/2)+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-c7m7zg-container\",layoutDependency:layoutDependency,layoutId:\"PLyzneXBa-container\",nodeId:\"PLyzneXBa\",rendersWithMotion:true,scopeId:\"JACW2tB9f\",children:/*#__PURE__*/_jsx(Buttons,{height:\"100%\",id:\"PLyzneXBa\",j6LAoSH16:true,kH1xx4xP3:false,layoutId:\"PLyzneXBa\",LtXLYMDSx:false,p7RDeJRVU:\"Home\",pMEOHIK6c:resolvedLinks[0],qWUPNVCCx:\"Home\",rQn95ZWGH:\"Eye\",variant:\"CjhfEg4Xo\",VIfuDh0Xp:false,width:\"100%\",yP1IBixjx:getLocalizedValue(\"v0\",activeLocale)??\"Accueil\",...addPropertyOverrides({BVF7gWL0K:{pMEOHIK6c:resolvedLinks[2]},pZ7hkS8SB:{pMEOHIK6c:resolvedLinks[3],yP1IBixjx:\"Home\"},QV_Ppxn3y:{pMEOHIK6c:resolvedLinks[5],yP1IBixjx:\"Home\"},rLPO3Xk0x:{pMEOHIK6c:resolvedLinks[4],yP1IBixjx:\"Home\"},UsJpIfuzz:{pMEOHIK6c:resolvedLinks[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":O0j3ZWKaM\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":O0j3ZWKaM\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":O0j3ZWKaM\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":O0j3ZWKaM\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":O0j3ZWKaM\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":O0j3ZWKaM\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+(16+((componentViewport?.height||72)-32-40)/2)+0+0,...addPropertyOverrides({BVF7gWL0K:{y:(componentViewport?.y||0)+(16+((componentViewport?.height||200)-32-40)/2)+0+0},QV_Ppxn3y:{y:(componentViewport?.y||0)+(16+((componentViewport?.height||200)-32-40)/2)+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ry2k9k-container\",layoutDependency:layoutDependency,layoutId:\"W5puWrpM8-container\",nodeId:\"W5puWrpM8\",rendersWithMotion:true,scopeId:\"JACW2tB9f\",children:/*#__PURE__*/_jsx(Buttons,{height:\"100%\",id:\"W5puWrpM8\",j6LAoSH16:true,kH1xx4xP3:false,layoutId:\"W5puWrpM8\",LtXLYMDSx:false,p7RDeJRVU:\"Home\",pMEOHIK6c:resolvedLinks1[0],qWUPNVCCx:\"DesignServices\",rQn95ZWGH:\"Eye\",variant:\"CjhfEg4Xo\",VIfuDh0Xp:false,width:\"100%\",yP1IBixjx:getLocalizedValue(\"v1\",activeLocale)??\"Projets\",...addPropertyOverrides({BVF7gWL0K:{pMEOHIK6c:resolvedLinks1[2]},pZ7hkS8SB:{pMEOHIK6c:resolvedLinks1[3],yP1IBixjx:\"Projects\"},QV_Ppxn3y:{pMEOHIK6c:resolvedLinks1[5],yP1IBixjx:\"Projects\"},rLPO3Xk0x:{pMEOHIK6c:resolvedLinks1[4],yP1IBixjx:\"Projects\"},UsJpIfuzz:{pMEOHIK6c:resolvedLinks1[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"tvPP4QYln\"},implicitPathVariables:undefined},{href:{webPageId:\"tvPP4QYln\"},implicitPathVariables:undefined},{href:{webPageId:\"tvPP4QYln\"},implicitPathVariables:undefined},{href:{webPageId:\"tvPP4QYln\"},implicitPathVariables:undefined},{href:{webPageId:\"tvPP4QYln\"},implicitPathVariables:undefined},{href:{webPageId:\"tvPP4QYln\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+(16+((componentViewport?.height||72)-32-40)/2)+0+0,...addPropertyOverrides({BVF7gWL0K:{y:(componentViewport?.y||0)+(16+((componentViewport?.height||200)-32-40)/2)+0+0},QV_Ppxn3y:{y:(componentViewport?.y||0)+(16+((componentViewport?.height||200)-32-40)/2)+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1v11v0s-container\",layoutDependency:layoutDependency,layoutId:\"PfoV7AZco-container\",nodeId:\"PfoV7AZco\",rendersWithMotion:true,scopeId:\"JACW2tB9f\",children:/*#__PURE__*/_jsx(Buttons,{height:\"100%\",id:\"PfoV7AZco\",j6LAoSH16:true,kH1xx4xP3:false,layoutId:\"PfoV7AZco\",LtXLYMDSx:false,p7RDeJRVU:\"Home\",pMEOHIK6c:resolvedLinks2[0],qWUPNVCCx:\"Person\",rQn95ZWGH:\"Eye\",variant:\"CjhfEg4Xo\",VIfuDh0Xp:false,width:\"100%\",yP1IBixjx:getLocalizedValue(\"v2\",activeLocale)??\"Profil\",...addPropertyOverrides({BVF7gWL0K:{pMEOHIK6c:resolvedLinks2[2]},pZ7hkS8SB:{pMEOHIK6c:resolvedLinks2[3]},QV_Ppxn3y:{pMEOHIK6c:resolvedLinks2[5]},rLPO3Xk0x:{pMEOHIK6c:resolvedLinks2[4]},UsJpIfuzz:{pMEOHIK6c:resolvedLinks2[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":UZgPBG45b\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":UZgPBG45b\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":UZgPBG45b\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":UZgPBG45b\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":UZgPBG45b\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":UZgPBG45b\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+(16+((componentViewport?.height||72)-32-40)/2)+0+0,...addPropertyOverrides({BVF7gWL0K:{y:(componentViewport?.y||0)+(16+((componentViewport?.height||200)-32-40)/2)+0+0},QV_Ppxn3y:{y:(componentViewport?.y||0)+(16+((componentViewport?.height||200)-32-40)/2)+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-z0xmec-container\",layoutDependency:layoutDependency,layoutId:\"yqKq5hPcb-container\",nodeId:\"yqKq5hPcb\",rendersWithMotion:true,scopeId:\"JACW2tB9f\",children:/*#__PURE__*/_jsx(Buttons,{height:\"100%\",id:\"yqKq5hPcb\",j6LAoSH16:true,kH1xx4xP3:false,layoutId:\"yqKq5hPcb\",LtXLYMDSx:false,p7RDeJRVU:\"Home\",pMEOHIK6c:resolvedLinks3[0],qWUPNVCCx:\"Storefront\",rQn95ZWGH:\"Eye\",variant:\"CjhfEg4Xo\",VIfuDh0Xp:false,width:\"100%\",yP1IBixjx:getLocalizedValue(\"v3\",activeLocale)??\"Boutique\",...addPropertyOverrides({BVF7gWL0K:{pMEOHIK6c:resolvedLinks3[2]},pZ7hkS8SB:{pMEOHIK6c:resolvedLinks3[3],yP1IBixjx:\"Shop\"},QV_Ppxn3y:{pMEOHIK6c:resolvedLinks3[5],yP1IBixjx:\"Shop\"},rLPO3Xk0x:{pMEOHIK6c:resolvedLinks3[4],yP1IBixjx:\"Shop\"},UsJpIfuzz:{pMEOHIK6c:resolvedLinks3[1]}},baseVariant,gestureVariant)})})})})]})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pd86r2\",layoutDependency:layoutDependency,layoutId:\"i5aMPl2Da\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(Link,{motionChild:true,nodeId:\"Glk79cu1X\",...addPropertyOverrides({AdmWa1hVg:{href:{webPageId:\"augiA20Il\"}},FEwdBWE0V:{href:{webPageId:\"augiA20Il\"}},fI1eJVGra:{href:{webPageId:\"augiA20Il\"}},OILoSCHve:{href:{webPageId:\"augiA20Il\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-hxwdi5 framer-ngq9mx\",\"data-framer-name\":\"Logo-B\\xe9lier\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"Glk79cu1X\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 40 40\"><g transform=\"translate(0.254 0.229)\" id=\"ss11281650062_1\"><g transform=\"translate(0 0)\" id=\"ss11281650062_2\"><path d=\"M 19.756 0 C 8.845 0 0 8.845 0 19.756 C 0 30.667 8.845 39.511 19.756 39.511 C 30.667 39.511 39.511 30.667 39.511 19.756 C 39.511 8.845 30.666 0 19.756 0 Z M 37.59 24.143 C 35.623 32.165 28.385 38.117 19.756 38.117 C 9.615 38.117 1.394 29.896 1.394 19.756 C 1.394 9.615 9.615 1.394 19.756 1.394 C 27.346 1.394 33.861 6 36.658 12.569 C 36.707 12.626 36.756 12.683 36.804 12.741 C 37.219 13.246 37.549 13.785 37.785 14.345 C 38.02 14.903 38.155 15.466 38.187 16.017 C 38.218 16.554 38.15 17.066 37.985 17.54 C 38.073 18.275 38.118 19.015 38.118 19.756 C 38.118 19.834 38.117 19.912 38.116 19.99 C 38.121 19.957 38.127 19.924 38.131 19.891 L 38.258 19.001 L 38.613 19.827 C 39.192 21.177 39.003 22.682 38.134 23.662 C 37.972 23.843 37.789 24.005 37.59 24.143 Z\" fill=\"var(--token-812a50bd-7d8d-4099-85e5-bff332bc5665, rgb(18, 201, 113))\"></path><path d=\"M 8.477 12.595 C 10.961 10.114 14.815 9.656 17.721 11.445 C 20.433 13.115 21.787 16.414 21.033 19.592 C 21.284 19.536 21.477 19.335 21.523 19.081 L 23.898 18.911 C 23.945 18.906 24.375 18.865 24.686 19.199 C 24.96 19.491 24.936 19.853 24.931 19.912 C 24.9 20.653 24.972 21.395 25.144 22.117 C 25.089 23.21 24.608 24.239 23.802 24.982 C 24.275 25.087 24.77 24.968 25.144 24.66 C 24.895 25.827 24.394 26.926 23.675 27.878 C 24.185 27.787 24.669 27.583 25.091 27.282 C 25.351 27.095 25.584 26.873 25.783 26.622 C 25.964 27.421 26.145 28.219 26.326 29.018 C 26.301 29.881 25.866 30.68 25.155 31.169 L 23.462 32.98 C 23.275 32.85 23.107 32.696 22.961 32.522 C 22.721 32.233 22.546 31.895 22.45 31.531 C 22.49 32.247 22.73 32.937 23.142 33.523 C 23.033 33.6 22.93 33.686 22.833 33.779 C 22.765 33.844 22.705 33.909 22.652 33.97 C 22.527 33.85 22.435 33.7 22.386 33.534 C 22.377 33.659 22.388 33.785 22.418 33.906 C 22.438 33.987 22.466 34.066 22.503 34.141 C 22.467 34.194 22.432 34.247 22.397 34.301 C 22.205 34.087 22.067 33.832 21.992 33.555 C 22.007 33.748 22.032 33.94 22.066 34.13 C 22.097 34.299 22.134 34.455 22.173 34.599 C 22.125 34.732 22.107 34.873 22.12 35.014 C 21.083 34.001 20.569 32.568 20.724 31.127 C 21.353 30.657 21.881 30.067 22.279 29.391 C 23.157 29.631 24.095 29.336 24.676 28.635 C 24.53 28.698 24.137 28.843 23.675 28.72 C 23.511 28.676 23.356 28.604 23.217 28.507 C 22.95 26.362 22.684 24.218 22.418 22.074 C 22.733 21.997 23.675 21.723 24.111 20.881 C 24.174 20.759 24.224 20.63 24.26 20.498 C 22.961 21.162 21.561 21.608 20.117 21.818 C 18.307 22.385 16.592 23.218 15.027 24.289 C 14.088 25.073 12.894 25.486 11.672 25.45 C 12.06 25.385 12.845 25.196 13.567 24.566 C 13.871 24.3 14.13 23.987 14.334 23.639 C 13.481 24.041 12.521 24.157 11.597 23.97 C 11.742 23.974 12.205 23.97 12.608 23.639 C 12.758 23.516 12.881 23.364 12.971 23.192 C 12.805 23.239 11.656 23.542 10.585 22.819 C 9.662 22.197 9.436 21.246 9.392 21.04 C 9.359 21.851 9.416 23.368 10.255 24.96 C 10.629 25.67 10.798 26.398 11.448 26.621 C 12.021 26.718 12.932 26.793 13.94 26.482 C 14.441 26.328 14.845 26.313 16.539 24.97 C 18.076 23.751 19.855 22.872 21.757 22.393 C 20.809 23.025 19.959 23.793 19.233 24.672 C 18.937 25.031 18.663 25.408 18.413 25.801 C 17.898 27.149 16.915 28.268 15.644 28.953 C 16.08 28.496 16.427 27.962 16.666 27.377 C 16.796 27.058 16.893 26.726 16.954 26.387 C 16.126 27.499 15.04 28.394 13.791 28.996 C 12.011 29.85 10.395 29.868 9.626 29.826 C 9.879 29.765 10.772 29.515 11.266 28.676 C 11.392 28.462 11.482 28.228 11.533 27.984 C 10.488 28.865 9.554 29.179 8.87 29.296 C 7.51 29.529 4.169 29.989 4.15 29.988 C 2.775 28.398 2.608 26.342 2.068 25.232 C 0.517 22.04 0.545 18.641 0.567 18.636 C 0.582 18.635 0.566 18.634 0.567 18.636 C 0.874 18.521 1.087 18.412 1.404 18.27 C 3.017 17.549 4.337 16.636 5.396 15.722 C 6.015 15.188 6.739 14.787 7.524 14.559 C 9.649 13.945 11.934 14.495 13.386 16.023 C 14.863 17.577 15.292 19.948 14.504 22.093 C 14.659 21.985 16.754 20.477 16.677 17.833 C 16.606 15.441 14.816 14.092 14.6 13.935 C 15.215 13.996 16.132 14.185 17.017 14.798 C 19.496 16.513 19.325 19.891 19.307 20.155 C 19.476 19.597 20.285 16.736 18.732 14.382 C 16.912 11.625 12.519 10.585 8.477 12.595 Z\" fill=\"var(--token-812a50bd-7d8d-4099-85e5-bff332bc5665, rgb(18, 201, 113))\"></path><g transform=\"translate(19.856 4.75)\" id=\"ss11281650062_5\"><path d=\"M 1.581 11.684 C 2.642 12.718 4.084 13.265 5.564 13.196 C 4.804 13.505 3.997 13.681 3.178 13.718 C 2.461 13.75 2.261 13.745 1.792 13.646 C 1.83 13.406 1.805 13.192 1.792 12.788 C 1.778 12.321 1.609 11.978 1.581 11.684 Z\" fill=\"var(--token-812a50bd-7d8d-4099-85e5-bff332bc5665, rgb(18, 201, 113))\"></path><path d=\"M 7.683 12.972 C 7.68 13.453 7.742 14.344 8.258 15.273 C 8.465 15.644 8.723 15.985 9.025 16.285 C 8.947 16.06 8.192 13.816 8.951 12.344 C 9.118 12.019 9.42 11.434 10.069 11.173 C 10.269 11.093 10.482 11.049 10.697 11.045 C 10.732 11.083 10.774 11.219 10.788 11.423 C 10.802 11.638 10.769 11.783 10.74 11.822 C 10.664 11.84 10.401 11.911 10.218 12.163 C 9.957 12.523 10.086 12.939 10.101 12.983 C 10.195 13.692 10.487 14.36 10.942 14.911 C 10.849 14.527 10.76 13.875 11.049 13.217 C 11.089 13.126 11.135 13.037 11.187 12.951 C 11.285 13.149 11.507 13.25 11.709 13.196 C 11.89 13.148 12.023 12.985 12.039 12.791 C 12.247 11.926 12.214 11.02 11.944 10.171 C 12.317 10.295 12.637 10.543 12.849 10.874 C 12.927 10.256 12.858 9.629 12.647 9.042 C 12.496 8.629 12.277 8.243 11.997 7.903 C 12.259 7.886 12.519 7.949 12.743 8.084 C 12.774 7.872 12.778 7.658 12.754 7.445 C 12.515 5.363 9.505 3.083 6.875 3.835 C 5.851 4.127 4.642 5.028 4.17 6.455 C 3.766 7.674 4.08 8.738 4.212 9.116 C 3.907 8.706 3.368 7.852 3.339 6.709 C 3.288 4.722 4.814 2.98 6.491 2.407 C 8.672 1.661 11.384 2.795 12.69 5.282 C 12.562 4.697 12.166 3.279 10.89 2.226 C 8.654 0.378 5.675 1.317 4.937 1.587 C 4.43 1.771 2.349 2.529 1.379 4.654 C 0.999 5.487 0.913 6.257 0.9 6.763 L 1.805 5.346 C 1.575 8.574 3.541 11.02 5.607 11.214 C 6.919 11.338 8.693 10.593 9.377 9.01 C 9.907 7.784 9.543 6.613 9.42 6.262 C 9.755 6.628 10.624 7.68 10.495 8.957 C 10.383 10.072 9.53 11.146 8.213 11.795 C 6.471 12.653 4.403 12.514 2.774 11.458 C 2.413 11.225 2.077 10.954 1.773 10.651 C 1.414 10.293 1.101 9.892 0.841 9.456 C -0.569 7.089 -0.169 4.071 1.764 2.107 C 1.805 2.065 1.833 2.038 1.858 2.013 C 3.867 0.054 6.586 0.01 7.151 0.001 C 7.374 -0.003 9.497 -0.018 11.156 0.938 C 14.18 2.68 15.573 7.595 14.159 12.941 C 14.401 12.649 14.615 12.335 14.798 12.003 C 15.929 9.945 15.528 7.747 15.288 6.795 C 17.576 8.42 18.565 10.904 17.865 12.781 C 17.511 13.732 16.787 14.354 16.193 14.73 C 16.024 14.813 15.863 14.913 15.714 15.028 C 15.449 15.232 15.222 15.481 15.043 15.763 C 14.994 15.874 14.901 16.045 14.723 16.168 C 14.366 16.414 13.797 16.146 13.744 16.295 C 13.618 16.646 13.304 18.105 12.519 19.565 C 12.163 20.226 11.7 20.663 11.401 20.907 C 10.815 20.44 10.399 19.792 10.218 19.065 C 10.131 18.939 9.971 18.887 9.835 18.937 C 9.682 18.993 9.591 19.163 9.633 19.331 C 9.662 19.585 9.719 19.836 9.804 20.077 C 9.944 20.475 10.157 20.843 10.432 21.163 C 10.319 21.235 10.192 21.282 10.059 21.302 C 9.205 21.419 8.43 20.227 8.036 19.619 C 7.613 18.968 6.853 17.798 7.29 17.212 C 7.457 16.989 7.748 16.917 7.982 16.893 C 7.613 15.621 7.511 14.287 7.684 12.974 Z\" fill=\"var(--token-812a50bd-7d8d-4099-85e5-bff332bc5665, rgb(18, 201, 113))\"></path><path d=\"M 13.754 17.52 C 13.798 17.384 13.84 17.242 13.882 17.094 C 13.925 16.937 13.964 16.784 13.999 16.636 C 14.466 16.697 14.933 16.521 15.245 16.167 C 15.304 16.925 15.757 17.597 16.438 17.935 C 16.373 17.98 15.814 18.35 15.17 18.127 C 14.967 18.056 14.784 17.937 14.636 17.781 C 14.459 17.594 14.21 17.491 13.952 17.499 L 13.946 17.499 C 13.881 17.501 13.817 17.508 13.754 17.52 Z\" fill=\"var(--token-812a50bd-7d8d-4099-85e5-bff332bc5665, rgb(18, 201, 113))\"></path><path d=\"M 13.701 17.861 C 13.834 17.828 13.974 17.832 14.105 17.871 L 14.107 17.871 C 14.166 17.891 14.221 17.922 14.268 17.963 C 14.932 18.538 15.503 18.575 15.713 18.574 C 16.948 18.569 18.233 17.219 18.525 15.177 C 19.061 16.427 18.896 17.835 18.088 18.744 C 16.999 19.972 14.864 20.153 13.307 18.904 C 13.368 18.789 13.43 18.661 13.488 18.521 C 13.576 18.307 13.647 18.086 13.701 17.861 Z M 6.714 13.356 C 6.611 14.338 6.687 15.33 6.938 16.285 C 6.652 16.161 6.398 15.976 6.192 15.742 C 5.872 15.375 5.749 14.97 5.7 14.682 C 5.642 14.332 5.746 13.972 5.991 13.717 C 5.998 13.71 6.004 13.703 6.011 13.697 C 6.201 13.509 6.449 13.389 6.714 13.356 Z\" fill=\"var(--token-812a50bd-7d8d-4099-85e5-bff332bc5665, rgb(18, 201, 113))\"></path><path d=\"M 7.119 19.192 C 7.472 19.898 7.956 20.531 8.546 21.056 C 8.435 21.082 8.06 21.157 7.662 20.96 C 7.454 20.856 7.277 20.698 7.151 20.502 C 6.935 20.095 6.923 19.61 7.119 19.192 Z\" fill=\"var(--token-812a50bd-7d8d-4099-85e5-bff332bc5665, rgb(18, 201, 113))\"></path></g></g></g></svg>',svgContentId:11281650062,withExternalLayout:true,...addPropertyOverrides({AdmWa1hVg:{as:\"a\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 40 40\"><g transform=\"translate(0.254 0.229)\" id=\"ss11772636900_1\"><g transform=\"translate(0 0)\" id=\"ss11772636900_2\"><path d=\"M 19.756 0 C 8.845 0 0 8.845 0 19.756 C 0 30.667 8.845 39.511 19.756 39.511 C 30.667 39.511 39.511 30.667 39.511 19.756 C 39.511 8.845 30.666 0 19.756 0 Z M 37.59 24.143 C 35.623 32.165 28.385 38.117 19.756 38.117 C 9.615 38.117 1.394 29.896 1.394 19.756 C 1.394 9.615 9.615 1.394 19.756 1.394 C 27.346 1.394 33.861 6 36.658 12.569 C 36.707 12.626 36.756 12.683 36.804 12.741 C 37.219 13.246 37.549 13.785 37.785 14.345 C 38.02 14.903 38.155 15.466 38.187 16.017 C 38.218 16.554 38.15 17.066 37.985 17.54 C 38.073 18.275 38.118 19.015 38.118 19.756 C 38.118 19.834 38.117 19.912 38.116 19.99 C 38.121 19.957 38.127 19.924 38.131 19.891 L 38.258 19.001 L 38.613 19.827 C 39.192 21.177 39.003 22.682 38.134 23.662 C 37.972 23.843 37.789 24.005 37.59 24.143 Z\" fill=\"var(--token-160825c1-5f3f-4523-8cd4-8866b1d95eb8, rgb(17, 17, 17)) /* {&quot;name&quot;:&quot;Black&quot;} */\"></path><path d=\"M 8.477 12.595 C 10.961 10.114 14.815 9.656 17.721 11.445 C 20.433 13.115 21.787 16.414 21.033 19.592 C 21.284 19.536 21.477 19.335 21.523 19.081 L 23.898 18.911 C 23.945 18.906 24.375 18.865 24.686 19.199 C 24.96 19.491 24.936 19.853 24.931 19.912 C 24.9 20.653 24.972 21.395 25.144 22.117 C 25.089 23.21 24.608 24.239 23.802 24.982 C 24.275 25.087 24.77 24.968 25.144 24.66 C 24.895 25.827 24.394 26.926 23.675 27.878 C 24.185 27.787 24.669 27.583 25.091 27.282 C 25.351 27.095 25.584 26.873 25.783 26.622 C 25.964 27.421 26.145 28.219 26.326 29.018 C 26.301 29.881 25.866 30.68 25.155 31.169 L 23.462 32.98 C 23.275 32.85 23.107 32.696 22.961 32.522 C 22.721 32.233 22.546 31.895 22.45 31.531 C 22.49 32.247 22.73 32.937 23.142 33.523 C 23.033 33.6 22.93 33.686 22.833 33.779 C 22.765 33.844 22.705 33.909 22.652 33.97 C 22.527 33.85 22.435 33.7 22.386 33.534 C 22.377 33.659 22.388 33.785 22.418 33.906 C 22.438 33.987 22.466 34.066 22.503 34.141 C 22.467 34.194 22.432 34.247 22.397 34.301 C 22.205 34.087 22.067 33.832 21.992 33.555 C 22.007 33.748 22.032 33.94 22.066 34.13 C 22.097 34.299 22.134 34.455 22.173 34.599 C 22.125 34.732 22.107 34.873 22.12 35.014 C 21.083 34.001 20.569 32.568 20.724 31.127 C 21.353 30.657 21.881 30.067 22.279 29.391 C 23.157 29.631 24.095 29.336 24.676 28.635 C 24.53 28.698 24.137 28.843 23.675 28.72 C 23.511 28.676 23.356 28.604 23.217 28.507 C 22.95 26.362 22.684 24.218 22.418 22.074 C 22.733 21.997 23.675 21.723 24.111 20.881 C 24.174 20.759 24.224 20.63 24.26 20.498 C 22.961 21.162 21.561 21.608 20.117 21.818 C 18.307 22.385 16.592 23.218 15.027 24.289 C 14.088 25.073 12.894 25.486 11.672 25.45 C 12.06 25.385 12.845 25.196 13.567 24.566 C 13.871 24.3 14.13 23.987 14.334 23.639 C 13.481 24.041 12.521 24.157 11.597 23.97 C 11.742 23.974 12.205 23.97 12.608 23.639 C 12.758 23.516 12.881 23.364 12.971 23.192 C 12.805 23.239 11.656 23.542 10.585 22.819 C 9.662 22.197 9.436 21.246 9.392 21.04 C 9.359 21.851 9.416 23.368 10.255 24.96 C 10.629 25.67 10.798 26.398 11.448 26.621 C 12.021 26.718 12.932 26.793 13.94 26.482 C 14.441 26.328 14.845 26.313 16.539 24.97 C 18.076 23.751 19.855 22.872 21.757 22.393 C 20.809 23.025 19.959 23.793 19.233 24.672 C 18.937 25.031 18.663 25.408 18.413 25.801 C 17.898 27.149 16.915 28.268 15.644 28.953 C 16.08 28.496 16.427 27.962 16.666 27.377 C 16.796 27.058 16.893 26.726 16.954 26.387 C 16.126 27.499 15.04 28.394 13.791 28.996 C 12.011 29.85 10.395 29.868 9.626 29.826 C 9.879 29.765 10.772 29.515 11.266 28.676 C 11.392 28.462 11.482 28.228 11.533 27.984 C 10.488 28.865 9.554 29.179 8.87 29.296 C 7.51 29.529 4.169 29.989 4.15 29.988 C 2.775 28.398 2.608 26.342 2.068 25.232 C 0.517 22.04 0.545 18.641 0.567 18.636 C 0.582 18.635 0.566 18.634 0.567 18.636 C 0.874 18.521 1.087 18.412 1.404 18.27 C 3.017 17.549 4.337 16.636 5.396 15.722 C 6.015 15.188 6.739 14.787 7.524 14.559 C 9.649 13.945 11.934 14.495 13.386 16.023 C 14.863 17.577 15.292 19.948 14.504 22.093 C 14.659 21.985 16.754 20.477 16.677 17.833 C 16.606 15.441 14.816 14.092 14.6 13.935 C 15.215 13.996 16.132 14.185 17.017 14.798 C 19.496 16.513 19.325 19.891 19.307 20.155 C 19.476 19.597 20.285 16.736 18.732 14.382 C 16.912 11.625 12.519 10.585 8.477 12.595 Z\" fill=\"var(--token-160825c1-5f3f-4523-8cd4-8866b1d95eb8, rgb(17, 17, 17)) /* {&quot;name&quot;:&quot;Black&quot;} */\"></path><g transform=\"translate(19.856 4.75)\" id=\"ss11772636900_5\"><path d=\"M 1.581 11.684 C 2.642 12.718 4.084 13.265 5.564 13.196 C 4.804 13.505 3.997 13.681 3.178 13.718 C 2.461 13.75 2.261 13.745 1.792 13.646 C 1.83 13.406 1.805 13.192 1.792 12.788 C 1.778 12.321 1.609 11.978 1.581 11.684 Z\" fill=\"var(--token-160825c1-5f3f-4523-8cd4-8866b1d95eb8, rgb(17, 17, 17)) /* {&quot;name&quot;:&quot;Black&quot;} */\"></path><path d=\"M 7.683 12.972 C 7.68 13.453 7.742 14.344 8.258 15.273 C 8.465 15.644 8.723 15.985 9.025 16.285 C 8.947 16.06 8.192 13.816 8.951 12.344 C 9.118 12.019 9.42 11.434 10.069 11.173 C 10.269 11.093 10.482 11.049 10.697 11.045 C 10.732 11.083 10.774 11.219 10.788 11.423 C 10.802 11.638 10.769 11.783 10.74 11.822 C 10.664 11.84 10.401 11.911 10.218 12.163 C 9.957 12.523 10.086 12.939 10.101 12.983 C 10.195 13.692 10.487 14.36 10.942 14.911 C 10.849 14.527 10.76 13.875 11.049 13.217 C 11.089 13.126 11.135 13.037 11.187 12.951 C 11.285 13.149 11.507 13.25 11.709 13.196 C 11.89 13.148 12.023 12.985 12.039 12.791 C 12.247 11.926 12.214 11.02 11.944 10.171 C 12.317 10.295 12.637 10.543 12.849 10.874 C 12.927 10.256 12.858 9.629 12.647 9.042 C 12.496 8.629 12.277 8.243 11.997 7.903 C 12.259 7.886 12.519 7.949 12.743 8.084 C 12.774 7.872 12.778 7.658 12.754 7.445 C 12.515 5.363 9.505 3.083 6.875 3.835 C 5.851 4.127 4.642 5.028 4.17 6.455 C 3.766 7.674 4.08 8.738 4.212 9.116 C 3.907 8.706 3.368 7.852 3.339 6.709 C 3.288 4.722 4.814 2.98 6.491 2.407 C 8.672 1.661 11.384 2.795 12.69 5.282 C 12.562 4.697 12.166 3.279 10.89 2.226 C 8.654 0.378 5.675 1.317 4.937 1.587 C 4.43 1.771 2.349 2.529 1.379 4.654 C 0.999 5.487 0.913 6.257 0.9 6.763 L 1.805 5.346 C 1.575 8.574 3.541 11.02 5.607 11.214 C 6.919 11.338 8.693 10.593 9.377 9.01 C 9.907 7.784 9.543 6.613 9.42 6.262 C 9.755 6.628 10.624 7.68 10.495 8.957 C 10.383 10.072 9.53 11.146 8.213 11.795 C 6.471 12.653 4.403 12.514 2.774 11.458 C 2.413 11.225 2.077 10.954 1.773 10.651 C 1.414 10.293 1.101 9.892 0.841 9.456 C -0.569 7.089 -0.169 4.071 1.764 2.107 C 1.805 2.065 1.833 2.038 1.858 2.013 C 3.867 0.054 6.586 0.01 7.151 0.001 C 7.374 -0.003 9.497 -0.018 11.156 0.938 C 14.18 2.68 15.573 7.595 14.159 12.941 C 14.401 12.649 14.615 12.335 14.798 12.003 C 15.929 9.945 15.528 7.747 15.288 6.795 C 17.576 8.42 18.565 10.904 17.865 12.781 C 17.511 13.732 16.787 14.354 16.193 14.73 C 16.024 14.813 15.863 14.913 15.714 15.028 C 15.449 15.232 15.222 15.481 15.043 15.763 C 14.994 15.874 14.901 16.045 14.723 16.168 C 14.366 16.414 13.797 16.146 13.744 16.295 C 13.618 16.646 13.304 18.105 12.519 19.565 C 12.163 20.226 11.7 20.663 11.401 20.907 C 10.815 20.44 10.399 19.792 10.218 19.065 C 10.131 18.939 9.971 18.887 9.835 18.937 C 9.682 18.993 9.591 19.163 9.633 19.331 C 9.662 19.585 9.719 19.836 9.804 20.077 C 9.944 20.475 10.157 20.843 10.432 21.163 C 10.319 21.235 10.192 21.282 10.059 21.302 C 9.205 21.419 8.43 20.227 8.036 19.619 C 7.613 18.968 6.853 17.798 7.29 17.212 C 7.457 16.989 7.748 16.917 7.982 16.893 C 7.613 15.621 7.511 14.287 7.684 12.974 Z\" fill=\"var(--token-160825c1-5f3f-4523-8cd4-8866b1d95eb8, rgb(17, 17, 17)) /* {&quot;name&quot;:&quot;Black&quot;} */\"></path><path d=\"M 13.754 17.52 C 13.798 17.384 13.84 17.242 13.882 17.094 C 13.925 16.937 13.964 16.784 13.999 16.636 C 14.466 16.697 14.933 16.521 15.245 16.167 C 15.304 16.925 15.757 17.597 16.438 17.935 C 16.373 17.98 15.814 18.35 15.17 18.127 C 14.967 18.056 14.784 17.937 14.636 17.781 C 14.459 17.594 14.21 17.491 13.952 17.499 L 13.946 17.499 C 13.881 17.501 13.817 17.508 13.754 17.52 Z\" fill=\"var(--token-160825c1-5f3f-4523-8cd4-8866b1d95eb8, rgb(17, 17, 17)) /* {&quot;name&quot;:&quot;Black&quot;} */\"></path><path d=\"M 13.701 17.861 C 13.834 17.828 13.974 17.832 14.105 17.871 L 14.107 17.871 C 14.166 17.891 14.221 17.922 14.268 17.963 C 14.932 18.538 15.503 18.575 15.713 18.574 C 16.948 18.569 18.233 17.219 18.525 15.177 C 19.061 16.427 18.896 17.835 18.088 18.744 C 16.999 19.972 14.864 20.153 13.307 18.904 C 13.368 18.789 13.43 18.661 13.488 18.521 C 13.576 18.307 13.647 18.086 13.701 17.861 Z M 6.714 13.356 C 6.611 14.338 6.687 15.33 6.938 16.285 C 6.652 16.161 6.398 15.976 6.192 15.742 C 5.872 15.375 5.749 14.97 5.7 14.682 C 5.642 14.332 5.746 13.972 5.991 13.717 C 5.998 13.71 6.004 13.703 6.011 13.697 C 6.201 13.509 6.449 13.389 6.714 13.356 Z\" fill=\"var(--token-160825c1-5f3f-4523-8cd4-8866b1d95eb8, rgb(17, 17, 17)) /* {&quot;name&quot;:&quot;Black&quot;} */\"></path><path d=\"M 7.119 19.192 C 7.472 19.898 7.956 20.531 8.546 21.056 C 8.435 21.082 8.06 21.157 7.662 20.96 C 7.454 20.856 7.277 20.698 7.151 20.502 C 6.935 20.095 6.923 19.61 7.119 19.192 Z\" fill=\"var(--token-160825c1-5f3f-4523-8cd4-8866b1d95eb8, rgb(17, 17, 17)) /* {&quot;name&quot;:&quot;Black&quot;} */\"></path></g></g></g></svg>',svgContentId:11772636900},FEwdBWE0V:{as:\"a\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 40 40\"><g transform=\"translate(0.254 0.229)\" id=\"ss11772636900_1\"><g transform=\"translate(0 0)\" id=\"ss11772636900_2\"><path d=\"M 19.756 0 C 8.845 0 0 8.845 0 19.756 C 0 30.667 8.845 39.511 19.756 39.511 C 30.667 39.511 39.511 30.667 39.511 19.756 C 39.511 8.845 30.666 0 19.756 0 Z M 37.59 24.143 C 35.623 32.165 28.385 38.117 19.756 38.117 C 9.615 38.117 1.394 29.896 1.394 19.756 C 1.394 9.615 9.615 1.394 19.756 1.394 C 27.346 1.394 33.861 6 36.658 12.569 C 36.707 12.626 36.756 12.683 36.804 12.741 C 37.219 13.246 37.549 13.785 37.785 14.345 C 38.02 14.903 38.155 15.466 38.187 16.017 C 38.218 16.554 38.15 17.066 37.985 17.54 C 38.073 18.275 38.118 19.015 38.118 19.756 C 38.118 19.834 38.117 19.912 38.116 19.99 C 38.121 19.957 38.127 19.924 38.131 19.891 L 38.258 19.001 L 38.613 19.827 C 39.192 21.177 39.003 22.682 38.134 23.662 C 37.972 23.843 37.789 24.005 37.59 24.143 Z\" fill=\"var(--token-160825c1-5f3f-4523-8cd4-8866b1d95eb8, rgb(17, 17, 17)) /* {&quot;name&quot;:&quot;Black&quot;} */\"></path><path d=\"M 8.477 12.595 C 10.961 10.114 14.815 9.656 17.721 11.445 C 20.433 13.115 21.787 16.414 21.033 19.592 C 21.284 19.536 21.477 19.335 21.523 19.081 L 23.898 18.911 C 23.945 18.906 24.375 18.865 24.686 19.199 C 24.96 19.491 24.936 19.853 24.931 19.912 C 24.9 20.653 24.972 21.395 25.144 22.117 C 25.089 23.21 24.608 24.239 23.802 24.982 C 24.275 25.087 24.77 24.968 25.144 24.66 C 24.895 25.827 24.394 26.926 23.675 27.878 C 24.185 27.787 24.669 27.583 25.091 27.282 C 25.351 27.095 25.584 26.873 25.783 26.622 C 25.964 27.421 26.145 28.219 26.326 29.018 C 26.301 29.881 25.866 30.68 25.155 31.169 L 23.462 32.98 C 23.275 32.85 23.107 32.696 22.961 32.522 C 22.721 32.233 22.546 31.895 22.45 31.531 C 22.49 32.247 22.73 32.937 23.142 33.523 C 23.033 33.6 22.93 33.686 22.833 33.779 C 22.765 33.844 22.705 33.909 22.652 33.97 C 22.527 33.85 22.435 33.7 22.386 33.534 C 22.377 33.659 22.388 33.785 22.418 33.906 C 22.438 33.987 22.466 34.066 22.503 34.141 C 22.467 34.194 22.432 34.247 22.397 34.301 C 22.205 34.087 22.067 33.832 21.992 33.555 C 22.007 33.748 22.032 33.94 22.066 34.13 C 22.097 34.299 22.134 34.455 22.173 34.599 C 22.125 34.732 22.107 34.873 22.12 35.014 C 21.083 34.001 20.569 32.568 20.724 31.127 C 21.353 30.657 21.881 30.067 22.279 29.391 C 23.157 29.631 24.095 29.336 24.676 28.635 C 24.53 28.698 24.137 28.843 23.675 28.72 C 23.511 28.676 23.356 28.604 23.217 28.507 C 22.95 26.362 22.684 24.218 22.418 22.074 C 22.733 21.997 23.675 21.723 24.111 20.881 C 24.174 20.759 24.224 20.63 24.26 20.498 C 22.961 21.162 21.561 21.608 20.117 21.818 C 18.307 22.385 16.592 23.218 15.027 24.289 C 14.088 25.073 12.894 25.486 11.672 25.45 C 12.06 25.385 12.845 25.196 13.567 24.566 C 13.871 24.3 14.13 23.987 14.334 23.639 C 13.481 24.041 12.521 24.157 11.597 23.97 C 11.742 23.974 12.205 23.97 12.608 23.639 C 12.758 23.516 12.881 23.364 12.971 23.192 C 12.805 23.239 11.656 23.542 10.585 22.819 C 9.662 22.197 9.436 21.246 9.392 21.04 C 9.359 21.851 9.416 23.368 10.255 24.96 C 10.629 25.67 10.798 26.398 11.448 26.621 C 12.021 26.718 12.932 26.793 13.94 26.482 C 14.441 26.328 14.845 26.313 16.539 24.97 C 18.076 23.751 19.855 22.872 21.757 22.393 C 20.809 23.025 19.959 23.793 19.233 24.672 C 18.937 25.031 18.663 25.408 18.413 25.801 C 17.898 27.149 16.915 28.268 15.644 28.953 C 16.08 28.496 16.427 27.962 16.666 27.377 C 16.796 27.058 16.893 26.726 16.954 26.387 C 16.126 27.499 15.04 28.394 13.791 28.996 C 12.011 29.85 10.395 29.868 9.626 29.826 C 9.879 29.765 10.772 29.515 11.266 28.676 C 11.392 28.462 11.482 28.228 11.533 27.984 C 10.488 28.865 9.554 29.179 8.87 29.296 C 7.51 29.529 4.169 29.989 4.15 29.988 C 2.775 28.398 2.608 26.342 2.068 25.232 C 0.517 22.04 0.545 18.641 0.567 18.636 C 0.582 18.635 0.566 18.634 0.567 18.636 C 0.874 18.521 1.087 18.412 1.404 18.27 C 3.017 17.549 4.337 16.636 5.396 15.722 C 6.015 15.188 6.739 14.787 7.524 14.559 C 9.649 13.945 11.934 14.495 13.386 16.023 C 14.863 17.577 15.292 19.948 14.504 22.093 C 14.659 21.985 16.754 20.477 16.677 17.833 C 16.606 15.441 14.816 14.092 14.6 13.935 C 15.215 13.996 16.132 14.185 17.017 14.798 C 19.496 16.513 19.325 19.891 19.307 20.155 C 19.476 19.597 20.285 16.736 18.732 14.382 C 16.912 11.625 12.519 10.585 8.477 12.595 Z\" fill=\"var(--token-160825c1-5f3f-4523-8cd4-8866b1d95eb8, rgb(17, 17, 17)) /* {&quot;name&quot;:&quot;Black&quot;} */\"></path><g transform=\"translate(19.856 4.75)\" id=\"ss11772636900_5\"><path d=\"M 1.581 11.684 C 2.642 12.718 4.084 13.265 5.564 13.196 C 4.804 13.505 3.997 13.681 3.178 13.718 C 2.461 13.75 2.261 13.745 1.792 13.646 C 1.83 13.406 1.805 13.192 1.792 12.788 C 1.778 12.321 1.609 11.978 1.581 11.684 Z\" fill=\"var(--token-160825c1-5f3f-4523-8cd4-8866b1d95eb8, rgb(17, 17, 17)) /* {&quot;name&quot;:&quot;Black&quot;} */\"></path><path d=\"M 7.683 12.972 C 7.68 13.453 7.742 14.344 8.258 15.273 C 8.465 15.644 8.723 15.985 9.025 16.285 C 8.947 16.06 8.192 13.816 8.951 12.344 C 9.118 12.019 9.42 11.434 10.069 11.173 C 10.269 11.093 10.482 11.049 10.697 11.045 C 10.732 11.083 10.774 11.219 10.788 11.423 C 10.802 11.638 10.769 11.783 10.74 11.822 C 10.664 11.84 10.401 11.911 10.218 12.163 C 9.957 12.523 10.086 12.939 10.101 12.983 C 10.195 13.692 10.487 14.36 10.942 14.911 C 10.849 14.527 10.76 13.875 11.049 13.217 C 11.089 13.126 11.135 13.037 11.187 12.951 C 11.285 13.149 11.507 13.25 11.709 13.196 C 11.89 13.148 12.023 12.985 12.039 12.791 C 12.247 11.926 12.214 11.02 11.944 10.171 C 12.317 10.295 12.637 10.543 12.849 10.874 C 12.927 10.256 12.858 9.629 12.647 9.042 C 12.496 8.629 12.277 8.243 11.997 7.903 C 12.259 7.886 12.519 7.949 12.743 8.084 C 12.774 7.872 12.778 7.658 12.754 7.445 C 12.515 5.363 9.505 3.083 6.875 3.835 C 5.851 4.127 4.642 5.028 4.17 6.455 C 3.766 7.674 4.08 8.738 4.212 9.116 C 3.907 8.706 3.368 7.852 3.339 6.709 C 3.288 4.722 4.814 2.98 6.491 2.407 C 8.672 1.661 11.384 2.795 12.69 5.282 C 12.562 4.697 12.166 3.279 10.89 2.226 C 8.654 0.378 5.675 1.317 4.937 1.587 C 4.43 1.771 2.349 2.529 1.379 4.654 C 0.999 5.487 0.913 6.257 0.9 6.763 L 1.805 5.346 C 1.575 8.574 3.541 11.02 5.607 11.214 C 6.919 11.338 8.693 10.593 9.377 9.01 C 9.907 7.784 9.543 6.613 9.42 6.262 C 9.755 6.628 10.624 7.68 10.495 8.957 C 10.383 10.072 9.53 11.146 8.213 11.795 C 6.471 12.653 4.403 12.514 2.774 11.458 C 2.413 11.225 2.077 10.954 1.773 10.651 C 1.414 10.293 1.101 9.892 0.841 9.456 C -0.569 7.089 -0.169 4.071 1.764 2.107 C 1.805 2.065 1.833 2.038 1.858 2.013 C 3.867 0.054 6.586 0.01 7.151 0.001 C 7.374 -0.003 9.497 -0.018 11.156 0.938 C 14.18 2.68 15.573 7.595 14.159 12.941 C 14.401 12.649 14.615 12.335 14.798 12.003 C 15.929 9.945 15.528 7.747 15.288 6.795 C 17.576 8.42 18.565 10.904 17.865 12.781 C 17.511 13.732 16.787 14.354 16.193 14.73 C 16.024 14.813 15.863 14.913 15.714 15.028 C 15.449 15.232 15.222 15.481 15.043 15.763 C 14.994 15.874 14.901 16.045 14.723 16.168 C 14.366 16.414 13.797 16.146 13.744 16.295 C 13.618 16.646 13.304 18.105 12.519 19.565 C 12.163 20.226 11.7 20.663 11.401 20.907 C 10.815 20.44 10.399 19.792 10.218 19.065 C 10.131 18.939 9.971 18.887 9.835 18.937 C 9.682 18.993 9.591 19.163 9.633 19.331 C 9.662 19.585 9.719 19.836 9.804 20.077 C 9.944 20.475 10.157 20.843 10.432 21.163 C 10.319 21.235 10.192 21.282 10.059 21.302 C 9.205 21.419 8.43 20.227 8.036 19.619 C 7.613 18.968 6.853 17.798 7.29 17.212 C 7.457 16.989 7.748 16.917 7.982 16.893 C 7.613 15.621 7.511 14.287 7.684 12.974 Z\" fill=\"var(--token-160825c1-5f3f-4523-8cd4-8866b1d95eb8, rgb(17, 17, 17)) /* {&quot;name&quot;:&quot;Black&quot;} */\"></path><path d=\"M 13.754 17.52 C 13.798 17.384 13.84 17.242 13.882 17.094 C 13.925 16.937 13.964 16.784 13.999 16.636 C 14.466 16.697 14.933 16.521 15.245 16.167 C 15.304 16.925 15.757 17.597 16.438 17.935 C 16.373 17.98 15.814 18.35 15.17 18.127 C 14.967 18.056 14.784 17.937 14.636 17.781 C 14.459 17.594 14.21 17.491 13.952 17.499 L 13.946 17.499 C 13.881 17.501 13.817 17.508 13.754 17.52 Z\" fill=\"var(--token-160825c1-5f3f-4523-8cd4-8866b1d95eb8, rgb(17, 17, 17)) /* {&quot;name&quot;:&quot;Black&quot;} */\"></path><path d=\"M 13.701 17.861 C 13.834 17.828 13.974 17.832 14.105 17.871 L 14.107 17.871 C 14.166 17.891 14.221 17.922 14.268 17.963 C 14.932 18.538 15.503 18.575 15.713 18.574 C 16.948 18.569 18.233 17.219 18.525 15.177 C 19.061 16.427 18.896 17.835 18.088 18.744 C 16.999 19.972 14.864 20.153 13.307 18.904 C 13.368 18.789 13.43 18.661 13.488 18.521 C 13.576 18.307 13.647 18.086 13.701 17.861 Z M 6.714 13.356 C 6.611 14.338 6.687 15.33 6.938 16.285 C 6.652 16.161 6.398 15.976 6.192 15.742 C 5.872 15.375 5.749 14.97 5.7 14.682 C 5.642 14.332 5.746 13.972 5.991 13.717 C 5.998 13.71 6.004 13.703 6.011 13.697 C 6.201 13.509 6.449 13.389 6.714 13.356 Z\" fill=\"var(--token-160825c1-5f3f-4523-8cd4-8866b1d95eb8, rgb(17, 17, 17)) /* {&quot;name&quot;:&quot;Black&quot;} */\"></path><path d=\"M 7.119 19.192 C 7.472 19.898 7.956 20.531 8.546 21.056 C 8.435 21.082 8.06 21.157 7.662 20.96 C 7.454 20.856 7.277 20.698 7.151 20.502 C 6.935 20.095 6.923 19.61 7.119 19.192 Z\" fill=\"var(--token-160825c1-5f3f-4523-8cd4-8866b1d95eb8, rgb(17, 17, 17)) /* {&quot;name&quot;:&quot;Black&quot;} */\"></path></g></g></g></svg>',svgContentId:11772636900},fI1eJVGra:{as:\"a\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 40 40\"><g transform=\"translate(0.254 0.229)\" id=\"ss11772636900_1\"><g transform=\"translate(0 0)\" id=\"ss11772636900_2\"><path d=\"M 19.756 0 C 8.845 0 0 8.845 0 19.756 C 0 30.667 8.845 39.511 19.756 39.511 C 30.667 39.511 39.511 30.667 39.511 19.756 C 39.511 8.845 30.666 0 19.756 0 Z M 37.59 24.143 C 35.623 32.165 28.385 38.117 19.756 38.117 C 9.615 38.117 1.394 29.896 1.394 19.756 C 1.394 9.615 9.615 1.394 19.756 1.394 C 27.346 1.394 33.861 6 36.658 12.569 C 36.707 12.626 36.756 12.683 36.804 12.741 C 37.219 13.246 37.549 13.785 37.785 14.345 C 38.02 14.903 38.155 15.466 38.187 16.017 C 38.218 16.554 38.15 17.066 37.985 17.54 C 38.073 18.275 38.118 19.015 38.118 19.756 C 38.118 19.834 38.117 19.912 38.116 19.99 C 38.121 19.957 38.127 19.924 38.131 19.891 L 38.258 19.001 L 38.613 19.827 C 39.192 21.177 39.003 22.682 38.134 23.662 C 37.972 23.843 37.789 24.005 37.59 24.143 Z\" fill=\"var(--token-160825c1-5f3f-4523-8cd4-8866b1d95eb8, rgb(17, 17, 17)) /* {&quot;name&quot;:&quot;Black&quot;} */\"></path><path d=\"M 8.477 12.595 C 10.961 10.114 14.815 9.656 17.721 11.445 C 20.433 13.115 21.787 16.414 21.033 19.592 C 21.284 19.536 21.477 19.335 21.523 19.081 L 23.898 18.911 C 23.945 18.906 24.375 18.865 24.686 19.199 C 24.96 19.491 24.936 19.853 24.931 19.912 C 24.9 20.653 24.972 21.395 25.144 22.117 C 25.089 23.21 24.608 24.239 23.802 24.982 C 24.275 25.087 24.77 24.968 25.144 24.66 C 24.895 25.827 24.394 26.926 23.675 27.878 C 24.185 27.787 24.669 27.583 25.091 27.282 C 25.351 27.095 25.584 26.873 25.783 26.622 C 25.964 27.421 26.145 28.219 26.326 29.018 C 26.301 29.881 25.866 30.68 25.155 31.169 L 23.462 32.98 C 23.275 32.85 23.107 32.696 22.961 32.522 C 22.721 32.233 22.546 31.895 22.45 31.531 C 22.49 32.247 22.73 32.937 23.142 33.523 C 23.033 33.6 22.93 33.686 22.833 33.779 C 22.765 33.844 22.705 33.909 22.652 33.97 C 22.527 33.85 22.435 33.7 22.386 33.534 C 22.377 33.659 22.388 33.785 22.418 33.906 C 22.438 33.987 22.466 34.066 22.503 34.141 C 22.467 34.194 22.432 34.247 22.397 34.301 C 22.205 34.087 22.067 33.832 21.992 33.555 C 22.007 33.748 22.032 33.94 22.066 34.13 C 22.097 34.299 22.134 34.455 22.173 34.599 C 22.125 34.732 22.107 34.873 22.12 35.014 C 21.083 34.001 20.569 32.568 20.724 31.127 C 21.353 30.657 21.881 30.067 22.279 29.391 C 23.157 29.631 24.095 29.336 24.676 28.635 C 24.53 28.698 24.137 28.843 23.675 28.72 C 23.511 28.676 23.356 28.604 23.217 28.507 C 22.95 26.362 22.684 24.218 22.418 22.074 C 22.733 21.997 23.675 21.723 24.111 20.881 C 24.174 20.759 24.224 20.63 24.26 20.498 C 22.961 21.162 21.561 21.608 20.117 21.818 C 18.307 22.385 16.592 23.218 15.027 24.289 C 14.088 25.073 12.894 25.486 11.672 25.45 C 12.06 25.385 12.845 25.196 13.567 24.566 C 13.871 24.3 14.13 23.987 14.334 23.639 C 13.481 24.041 12.521 24.157 11.597 23.97 C 11.742 23.974 12.205 23.97 12.608 23.639 C 12.758 23.516 12.881 23.364 12.971 23.192 C 12.805 23.239 11.656 23.542 10.585 22.819 C 9.662 22.197 9.436 21.246 9.392 21.04 C 9.359 21.851 9.416 23.368 10.255 24.96 C 10.629 25.67 10.798 26.398 11.448 26.621 C 12.021 26.718 12.932 26.793 13.94 26.482 C 14.441 26.328 14.845 26.313 16.539 24.97 C 18.076 23.751 19.855 22.872 21.757 22.393 C 20.809 23.025 19.959 23.793 19.233 24.672 C 18.937 25.031 18.663 25.408 18.413 25.801 C 17.898 27.149 16.915 28.268 15.644 28.953 C 16.08 28.496 16.427 27.962 16.666 27.377 C 16.796 27.058 16.893 26.726 16.954 26.387 C 16.126 27.499 15.04 28.394 13.791 28.996 C 12.011 29.85 10.395 29.868 9.626 29.826 C 9.879 29.765 10.772 29.515 11.266 28.676 C 11.392 28.462 11.482 28.228 11.533 27.984 C 10.488 28.865 9.554 29.179 8.87 29.296 C 7.51 29.529 4.169 29.989 4.15 29.988 C 2.775 28.398 2.608 26.342 2.068 25.232 C 0.517 22.04 0.545 18.641 0.567 18.636 C 0.582 18.635 0.566 18.634 0.567 18.636 C 0.874 18.521 1.087 18.412 1.404 18.27 C 3.017 17.549 4.337 16.636 5.396 15.722 C 6.015 15.188 6.739 14.787 7.524 14.559 C 9.649 13.945 11.934 14.495 13.386 16.023 C 14.863 17.577 15.292 19.948 14.504 22.093 C 14.659 21.985 16.754 20.477 16.677 17.833 C 16.606 15.441 14.816 14.092 14.6 13.935 C 15.215 13.996 16.132 14.185 17.017 14.798 C 19.496 16.513 19.325 19.891 19.307 20.155 C 19.476 19.597 20.285 16.736 18.732 14.382 C 16.912 11.625 12.519 10.585 8.477 12.595 Z\" fill=\"var(--token-160825c1-5f3f-4523-8cd4-8866b1d95eb8, rgb(17, 17, 17)) /* {&quot;name&quot;:&quot;Black&quot;} */\"></path><g transform=\"translate(19.856 4.75)\" id=\"ss11772636900_5\"><path d=\"M 1.581 11.684 C 2.642 12.718 4.084 13.265 5.564 13.196 C 4.804 13.505 3.997 13.681 3.178 13.718 C 2.461 13.75 2.261 13.745 1.792 13.646 C 1.83 13.406 1.805 13.192 1.792 12.788 C 1.778 12.321 1.609 11.978 1.581 11.684 Z\" fill=\"var(--token-160825c1-5f3f-4523-8cd4-8866b1d95eb8, rgb(17, 17, 17)) /* {&quot;name&quot;:&quot;Black&quot;} */\"></path><path d=\"M 7.683 12.972 C 7.68 13.453 7.742 14.344 8.258 15.273 C 8.465 15.644 8.723 15.985 9.025 16.285 C 8.947 16.06 8.192 13.816 8.951 12.344 C 9.118 12.019 9.42 11.434 10.069 11.173 C 10.269 11.093 10.482 11.049 10.697 11.045 C 10.732 11.083 10.774 11.219 10.788 11.423 C 10.802 11.638 10.769 11.783 10.74 11.822 C 10.664 11.84 10.401 11.911 10.218 12.163 C 9.957 12.523 10.086 12.939 10.101 12.983 C 10.195 13.692 10.487 14.36 10.942 14.911 C 10.849 14.527 10.76 13.875 11.049 13.217 C 11.089 13.126 11.135 13.037 11.187 12.951 C 11.285 13.149 11.507 13.25 11.709 13.196 C 11.89 13.148 12.023 12.985 12.039 12.791 C 12.247 11.926 12.214 11.02 11.944 10.171 C 12.317 10.295 12.637 10.543 12.849 10.874 C 12.927 10.256 12.858 9.629 12.647 9.042 C 12.496 8.629 12.277 8.243 11.997 7.903 C 12.259 7.886 12.519 7.949 12.743 8.084 C 12.774 7.872 12.778 7.658 12.754 7.445 C 12.515 5.363 9.505 3.083 6.875 3.835 C 5.851 4.127 4.642 5.028 4.17 6.455 C 3.766 7.674 4.08 8.738 4.212 9.116 C 3.907 8.706 3.368 7.852 3.339 6.709 C 3.288 4.722 4.814 2.98 6.491 2.407 C 8.672 1.661 11.384 2.795 12.69 5.282 C 12.562 4.697 12.166 3.279 10.89 2.226 C 8.654 0.378 5.675 1.317 4.937 1.587 C 4.43 1.771 2.349 2.529 1.379 4.654 C 0.999 5.487 0.913 6.257 0.9 6.763 L 1.805 5.346 C 1.575 8.574 3.541 11.02 5.607 11.214 C 6.919 11.338 8.693 10.593 9.377 9.01 C 9.907 7.784 9.543 6.613 9.42 6.262 C 9.755 6.628 10.624 7.68 10.495 8.957 C 10.383 10.072 9.53 11.146 8.213 11.795 C 6.471 12.653 4.403 12.514 2.774 11.458 C 2.413 11.225 2.077 10.954 1.773 10.651 C 1.414 10.293 1.101 9.892 0.841 9.456 C -0.569 7.089 -0.169 4.071 1.764 2.107 C 1.805 2.065 1.833 2.038 1.858 2.013 C 3.867 0.054 6.586 0.01 7.151 0.001 C 7.374 -0.003 9.497 -0.018 11.156 0.938 C 14.18 2.68 15.573 7.595 14.159 12.941 C 14.401 12.649 14.615 12.335 14.798 12.003 C 15.929 9.945 15.528 7.747 15.288 6.795 C 17.576 8.42 18.565 10.904 17.865 12.781 C 17.511 13.732 16.787 14.354 16.193 14.73 C 16.024 14.813 15.863 14.913 15.714 15.028 C 15.449 15.232 15.222 15.481 15.043 15.763 C 14.994 15.874 14.901 16.045 14.723 16.168 C 14.366 16.414 13.797 16.146 13.744 16.295 C 13.618 16.646 13.304 18.105 12.519 19.565 C 12.163 20.226 11.7 20.663 11.401 20.907 C 10.815 20.44 10.399 19.792 10.218 19.065 C 10.131 18.939 9.971 18.887 9.835 18.937 C 9.682 18.993 9.591 19.163 9.633 19.331 C 9.662 19.585 9.719 19.836 9.804 20.077 C 9.944 20.475 10.157 20.843 10.432 21.163 C 10.319 21.235 10.192 21.282 10.059 21.302 C 9.205 21.419 8.43 20.227 8.036 19.619 C 7.613 18.968 6.853 17.798 7.29 17.212 C 7.457 16.989 7.748 16.917 7.982 16.893 C 7.613 15.621 7.511 14.287 7.684 12.974 Z\" fill=\"var(--token-160825c1-5f3f-4523-8cd4-8866b1d95eb8, rgb(17, 17, 17)) /* {&quot;name&quot;:&quot;Black&quot;} */\"></path><path d=\"M 13.754 17.52 C 13.798 17.384 13.84 17.242 13.882 17.094 C 13.925 16.937 13.964 16.784 13.999 16.636 C 14.466 16.697 14.933 16.521 15.245 16.167 C 15.304 16.925 15.757 17.597 16.438 17.935 C 16.373 17.98 15.814 18.35 15.17 18.127 C 14.967 18.056 14.784 17.937 14.636 17.781 C 14.459 17.594 14.21 17.491 13.952 17.499 L 13.946 17.499 C 13.881 17.501 13.817 17.508 13.754 17.52 Z\" fill=\"var(--token-160825c1-5f3f-4523-8cd4-8866b1d95eb8, rgb(17, 17, 17)) /* {&quot;name&quot;:&quot;Black&quot;} */\"></path><path d=\"M 13.701 17.861 C 13.834 17.828 13.974 17.832 14.105 17.871 L 14.107 17.871 C 14.166 17.891 14.221 17.922 14.268 17.963 C 14.932 18.538 15.503 18.575 15.713 18.574 C 16.948 18.569 18.233 17.219 18.525 15.177 C 19.061 16.427 18.896 17.835 18.088 18.744 C 16.999 19.972 14.864 20.153 13.307 18.904 C 13.368 18.789 13.43 18.661 13.488 18.521 C 13.576 18.307 13.647 18.086 13.701 17.861 Z M 6.714 13.356 C 6.611 14.338 6.687 15.33 6.938 16.285 C 6.652 16.161 6.398 15.976 6.192 15.742 C 5.872 15.375 5.749 14.97 5.7 14.682 C 5.642 14.332 5.746 13.972 5.991 13.717 C 5.998 13.71 6.004 13.703 6.011 13.697 C 6.201 13.509 6.449 13.389 6.714 13.356 Z\" fill=\"var(--token-160825c1-5f3f-4523-8cd4-8866b1d95eb8, rgb(17, 17, 17)) /* {&quot;name&quot;:&quot;Black&quot;} */\"></path><path d=\"M 7.119 19.192 C 7.472 19.898 7.956 20.531 8.546 21.056 C 8.435 21.082 8.06 21.157 7.662 20.96 C 7.454 20.856 7.277 20.698 7.151 20.502 C 6.935 20.095 6.923 19.61 7.119 19.192 Z\" fill=\"var(--token-160825c1-5f3f-4523-8cd4-8866b1d95eb8, rgb(17, 17, 17)) /* {&quot;name&quot;:&quot;Black&quot;} */\"></path></g></g></g></svg>',svgContentId:11772636900},OILoSCHve:{as:\"a\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 40 40\"><g transform=\"translate(0.254 0.229)\" id=\"ss11772636900_1\"><g transform=\"translate(0 0)\" id=\"ss11772636900_2\"><path d=\"M 19.756 0 C 8.845 0 0 8.845 0 19.756 C 0 30.667 8.845 39.511 19.756 39.511 C 30.667 39.511 39.511 30.667 39.511 19.756 C 39.511 8.845 30.666 0 19.756 0 Z M 37.59 24.143 C 35.623 32.165 28.385 38.117 19.756 38.117 C 9.615 38.117 1.394 29.896 1.394 19.756 C 1.394 9.615 9.615 1.394 19.756 1.394 C 27.346 1.394 33.861 6 36.658 12.569 C 36.707 12.626 36.756 12.683 36.804 12.741 C 37.219 13.246 37.549 13.785 37.785 14.345 C 38.02 14.903 38.155 15.466 38.187 16.017 C 38.218 16.554 38.15 17.066 37.985 17.54 C 38.073 18.275 38.118 19.015 38.118 19.756 C 38.118 19.834 38.117 19.912 38.116 19.99 C 38.121 19.957 38.127 19.924 38.131 19.891 L 38.258 19.001 L 38.613 19.827 C 39.192 21.177 39.003 22.682 38.134 23.662 C 37.972 23.843 37.789 24.005 37.59 24.143 Z\" fill=\"var(--token-160825c1-5f3f-4523-8cd4-8866b1d95eb8, rgb(17, 17, 17)) /* {&quot;name&quot;:&quot;Black&quot;} */\"></path><path d=\"M 8.477 12.595 C 10.961 10.114 14.815 9.656 17.721 11.445 C 20.433 13.115 21.787 16.414 21.033 19.592 C 21.284 19.536 21.477 19.335 21.523 19.081 L 23.898 18.911 C 23.945 18.906 24.375 18.865 24.686 19.199 C 24.96 19.491 24.936 19.853 24.931 19.912 C 24.9 20.653 24.972 21.395 25.144 22.117 C 25.089 23.21 24.608 24.239 23.802 24.982 C 24.275 25.087 24.77 24.968 25.144 24.66 C 24.895 25.827 24.394 26.926 23.675 27.878 C 24.185 27.787 24.669 27.583 25.091 27.282 C 25.351 27.095 25.584 26.873 25.783 26.622 C 25.964 27.421 26.145 28.219 26.326 29.018 C 26.301 29.881 25.866 30.68 25.155 31.169 L 23.462 32.98 C 23.275 32.85 23.107 32.696 22.961 32.522 C 22.721 32.233 22.546 31.895 22.45 31.531 C 22.49 32.247 22.73 32.937 23.142 33.523 C 23.033 33.6 22.93 33.686 22.833 33.779 C 22.765 33.844 22.705 33.909 22.652 33.97 C 22.527 33.85 22.435 33.7 22.386 33.534 C 22.377 33.659 22.388 33.785 22.418 33.906 C 22.438 33.987 22.466 34.066 22.503 34.141 C 22.467 34.194 22.432 34.247 22.397 34.301 C 22.205 34.087 22.067 33.832 21.992 33.555 C 22.007 33.748 22.032 33.94 22.066 34.13 C 22.097 34.299 22.134 34.455 22.173 34.599 C 22.125 34.732 22.107 34.873 22.12 35.014 C 21.083 34.001 20.569 32.568 20.724 31.127 C 21.353 30.657 21.881 30.067 22.279 29.391 C 23.157 29.631 24.095 29.336 24.676 28.635 C 24.53 28.698 24.137 28.843 23.675 28.72 C 23.511 28.676 23.356 28.604 23.217 28.507 C 22.95 26.362 22.684 24.218 22.418 22.074 C 22.733 21.997 23.675 21.723 24.111 20.881 C 24.174 20.759 24.224 20.63 24.26 20.498 C 22.961 21.162 21.561 21.608 20.117 21.818 C 18.307 22.385 16.592 23.218 15.027 24.289 C 14.088 25.073 12.894 25.486 11.672 25.45 C 12.06 25.385 12.845 25.196 13.567 24.566 C 13.871 24.3 14.13 23.987 14.334 23.639 C 13.481 24.041 12.521 24.157 11.597 23.97 C 11.742 23.974 12.205 23.97 12.608 23.639 C 12.758 23.516 12.881 23.364 12.971 23.192 C 12.805 23.239 11.656 23.542 10.585 22.819 C 9.662 22.197 9.436 21.246 9.392 21.04 C 9.359 21.851 9.416 23.368 10.255 24.96 C 10.629 25.67 10.798 26.398 11.448 26.621 C 12.021 26.718 12.932 26.793 13.94 26.482 C 14.441 26.328 14.845 26.313 16.539 24.97 C 18.076 23.751 19.855 22.872 21.757 22.393 C 20.809 23.025 19.959 23.793 19.233 24.672 C 18.937 25.031 18.663 25.408 18.413 25.801 C 17.898 27.149 16.915 28.268 15.644 28.953 C 16.08 28.496 16.427 27.962 16.666 27.377 C 16.796 27.058 16.893 26.726 16.954 26.387 C 16.126 27.499 15.04 28.394 13.791 28.996 C 12.011 29.85 10.395 29.868 9.626 29.826 C 9.879 29.765 10.772 29.515 11.266 28.676 C 11.392 28.462 11.482 28.228 11.533 27.984 C 10.488 28.865 9.554 29.179 8.87 29.296 C 7.51 29.529 4.169 29.989 4.15 29.988 C 2.775 28.398 2.608 26.342 2.068 25.232 C 0.517 22.04 0.545 18.641 0.567 18.636 C 0.582 18.635 0.566 18.634 0.567 18.636 C 0.874 18.521 1.087 18.412 1.404 18.27 C 3.017 17.549 4.337 16.636 5.396 15.722 C 6.015 15.188 6.739 14.787 7.524 14.559 C 9.649 13.945 11.934 14.495 13.386 16.023 C 14.863 17.577 15.292 19.948 14.504 22.093 C 14.659 21.985 16.754 20.477 16.677 17.833 C 16.606 15.441 14.816 14.092 14.6 13.935 C 15.215 13.996 16.132 14.185 17.017 14.798 C 19.496 16.513 19.325 19.891 19.307 20.155 C 19.476 19.597 20.285 16.736 18.732 14.382 C 16.912 11.625 12.519 10.585 8.477 12.595 Z\" fill=\"var(--token-160825c1-5f3f-4523-8cd4-8866b1d95eb8, rgb(17, 17, 17)) /* {&quot;name&quot;:&quot;Black&quot;} */\"></path><g transform=\"translate(19.856 4.75)\" id=\"ss11772636900_5\"><path d=\"M 1.581 11.684 C 2.642 12.718 4.084 13.265 5.564 13.196 C 4.804 13.505 3.997 13.681 3.178 13.718 C 2.461 13.75 2.261 13.745 1.792 13.646 C 1.83 13.406 1.805 13.192 1.792 12.788 C 1.778 12.321 1.609 11.978 1.581 11.684 Z\" fill=\"var(--token-160825c1-5f3f-4523-8cd4-8866b1d95eb8, rgb(17, 17, 17)) /* {&quot;name&quot;:&quot;Black&quot;} */\"></path><path d=\"M 7.683 12.972 C 7.68 13.453 7.742 14.344 8.258 15.273 C 8.465 15.644 8.723 15.985 9.025 16.285 C 8.947 16.06 8.192 13.816 8.951 12.344 C 9.118 12.019 9.42 11.434 10.069 11.173 C 10.269 11.093 10.482 11.049 10.697 11.045 C 10.732 11.083 10.774 11.219 10.788 11.423 C 10.802 11.638 10.769 11.783 10.74 11.822 C 10.664 11.84 10.401 11.911 10.218 12.163 C 9.957 12.523 10.086 12.939 10.101 12.983 C 10.195 13.692 10.487 14.36 10.942 14.911 C 10.849 14.527 10.76 13.875 11.049 13.217 C 11.089 13.126 11.135 13.037 11.187 12.951 C 11.285 13.149 11.507 13.25 11.709 13.196 C 11.89 13.148 12.023 12.985 12.039 12.791 C 12.247 11.926 12.214 11.02 11.944 10.171 C 12.317 10.295 12.637 10.543 12.849 10.874 C 12.927 10.256 12.858 9.629 12.647 9.042 C 12.496 8.629 12.277 8.243 11.997 7.903 C 12.259 7.886 12.519 7.949 12.743 8.084 C 12.774 7.872 12.778 7.658 12.754 7.445 C 12.515 5.363 9.505 3.083 6.875 3.835 C 5.851 4.127 4.642 5.028 4.17 6.455 C 3.766 7.674 4.08 8.738 4.212 9.116 C 3.907 8.706 3.368 7.852 3.339 6.709 C 3.288 4.722 4.814 2.98 6.491 2.407 C 8.672 1.661 11.384 2.795 12.69 5.282 C 12.562 4.697 12.166 3.279 10.89 2.226 C 8.654 0.378 5.675 1.317 4.937 1.587 C 4.43 1.771 2.349 2.529 1.379 4.654 C 0.999 5.487 0.913 6.257 0.9 6.763 L 1.805 5.346 C 1.575 8.574 3.541 11.02 5.607 11.214 C 6.919 11.338 8.693 10.593 9.377 9.01 C 9.907 7.784 9.543 6.613 9.42 6.262 C 9.755 6.628 10.624 7.68 10.495 8.957 C 10.383 10.072 9.53 11.146 8.213 11.795 C 6.471 12.653 4.403 12.514 2.774 11.458 C 2.413 11.225 2.077 10.954 1.773 10.651 C 1.414 10.293 1.101 9.892 0.841 9.456 C -0.569 7.089 -0.169 4.071 1.764 2.107 C 1.805 2.065 1.833 2.038 1.858 2.013 C 3.867 0.054 6.586 0.01 7.151 0.001 C 7.374 -0.003 9.497 -0.018 11.156 0.938 C 14.18 2.68 15.573 7.595 14.159 12.941 C 14.401 12.649 14.615 12.335 14.798 12.003 C 15.929 9.945 15.528 7.747 15.288 6.795 C 17.576 8.42 18.565 10.904 17.865 12.781 C 17.511 13.732 16.787 14.354 16.193 14.73 C 16.024 14.813 15.863 14.913 15.714 15.028 C 15.449 15.232 15.222 15.481 15.043 15.763 C 14.994 15.874 14.901 16.045 14.723 16.168 C 14.366 16.414 13.797 16.146 13.744 16.295 C 13.618 16.646 13.304 18.105 12.519 19.565 C 12.163 20.226 11.7 20.663 11.401 20.907 C 10.815 20.44 10.399 19.792 10.218 19.065 C 10.131 18.939 9.971 18.887 9.835 18.937 C 9.682 18.993 9.591 19.163 9.633 19.331 C 9.662 19.585 9.719 19.836 9.804 20.077 C 9.944 20.475 10.157 20.843 10.432 21.163 C 10.319 21.235 10.192 21.282 10.059 21.302 C 9.205 21.419 8.43 20.227 8.036 19.619 C 7.613 18.968 6.853 17.798 7.29 17.212 C 7.457 16.989 7.748 16.917 7.982 16.893 C 7.613 15.621 7.511 14.287 7.684 12.974 Z\" fill=\"var(--token-160825c1-5f3f-4523-8cd4-8866b1d95eb8, rgb(17, 17, 17)) /* {&quot;name&quot;:&quot;Black&quot;} */\"></path><path d=\"M 13.754 17.52 C 13.798 17.384 13.84 17.242 13.882 17.094 C 13.925 16.937 13.964 16.784 13.999 16.636 C 14.466 16.697 14.933 16.521 15.245 16.167 C 15.304 16.925 15.757 17.597 16.438 17.935 C 16.373 17.98 15.814 18.35 15.17 18.127 C 14.967 18.056 14.784 17.937 14.636 17.781 C 14.459 17.594 14.21 17.491 13.952 17.499 L 13.946 17.499 C 13.881 17.501 13.817 17.508 13.754 17.52 Z\" fill=\"var(--token-160825c1-5f3f-4523-8cd4-8866b1d95eb8, rgb(17, 17, 17)) /* {&quot;name&quot;:&quot;Black&quot;} */\"></path><path d=\"M 13.701 17.861 C 13.834 17.828 13.974 17.832 14.105 17.871 L 14.107 17.871 C 14.166 17.891 14.221 17.922 14.268 17.963 C 14.932 18.538 15.503 18.575 15.713 18.574 C 16.948 18.569 18.233 17.219 18.525 15.177 C 19.061 16.427 18.896 17.835 18.088 18.744 C 16.999 19.972 14.864 20.153 13.307 18.904 C 13.368 18.789 13.43 18.661 13.488 18.521 C 13.576 18.307 13.647 18.086 13.701 17.861 Z M 6.714 13.356 C 6.611 14.338 6.687 15.33 6.938 16.285 C 6.652 16.161 6.398 15.976 6.192 15.742 C 5.872 15.375 5.749 14.97 5.7 14.682 C 5.642 14.332 5.746 13.972 5.991 13.717 C 5.998 13.71 6.004 13.703 6.011 13.697 C 6.201 13.509 6.449 13.389 6.714 13.356 Z\" fill=\"var(--token-160825c1-5f3f-4523-8cd4-8866b1d95eb8, rgb(17, 17, 17)) /* {&quot;name&quot;:&quot;Black&quot;} */\"></path><path d=\"M 7.119 19.192 C 7.472 19.898 7.956 20.531 8.546 21.056 C 8.435 21.082 8.06 21.157 7.662 20.96 C 7.454 20.856 7.277 20.698 7.151 20.502 C 6.935 20.095 6.923 19.61 7.119 19.192 Z\" fill=\"var(--token-160825c1-5f3f-4523-8cd4-8866b1d95eb8, rgb(17, 17, 17)) /* {&quot;name&quot;:&quot;Black&quot;} */\"></path></g></g></g></svg>',svgContentId:11772636900}},baseVariant,gestureVariant)})}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1y9kee8\",\"data-framer-name\":\"Icon\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"EhgqYMf_K\",onTap:onTapza6n95,...addPropertyOverrides({AdmWa1hVg:{onTap:onTapf8c00b},FEwdBWE0V:{onTap:onTap1vy1j62},fI1eJVGra:{onTap:onTapopzz2l},OILoSCHve:{onTap:onTap1qi8pgi}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-2sur6t\",\"data-framer-name\":\"Bottom\",layoutDependency:layoutDependency,layoutId:\"zOPwKP1Yh\",style:{backgroundColor:\"var(--token-b6e98851-2272-4c88-9dde-6a8d75901be1, rgb(128, 131, 141))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:-45},variants:{AdmWa1hVg:{rotate:0},FEwdBWE0V:{rotate:0}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1d4a4j5\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"aEtkOrskU\",style:{backgroundColor:\"var(--token-b6e98851-2272-4c88-9dde-6a8d75901be1, rgb(128, 131, 141))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:45},variants:{AdmWa1hVg:{rotate:0},FEwdBWE0V:{rotate:0}}})]})]}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hual9c\",\"data-framer-name\":\"Links - Mobile\",layoutDependency:layoutDependency,layoutId:\"UAyAWetko\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jq59nc\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"Noxk4J4US\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,...addPropertyOverrides({fI1eJVGra:{y:(componentViewport?.y||0)+16+(((componentViewport?.height||200)-48-404)/2+44+32)+0+0+0+0},OILoSCHve:{y:(componentViewport?.y||0)+16+(((componentViewport?.height||200)-48-404)/2+44+32)+0+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1rcg6fq-container\",layoutDependency:layoutDependency,layoutId:\"ObPerYBVT-container\",nodeId:\"ObPerYBVT\",rendersWithMotion:true,scopeId:\"JACW2tB9f\",children:/*#__PURE__*/_jsx(Buttons,{height:\"100%\",id:\"ObPerYBVT\",j6LAoSH16:false,kH1xx4xP3:false,layoutId:\"ObPerYBVT\",LtXLYMDSx:false,p7RDeJRVU:\"Home\",pMEOHIK6c:resolvedLinks4[0],qWUPNVCCx:\"Home\",rQn95ZWGH:\"Eye\",variant:\"CjhfEg4Xo\",VIfuDh0Xp:false,width:\"100%\",yP1IBixjx:getLocalizedValue(\"v0\",activeLocale)??\"Accueil\",...addPropertyOverrides({fI1eJVGra:{j6LAoSH16:true,pMEOHIK6c:resolvedLinks4[2],yP1IBixjx:\"Home\"},OILoSCHve:{j6LAoSH16:true,pMEOHIK6c:resolvedLinks4[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"I1CJdMd6k\"},implicitPathVariables:undefined},{href:{webPageId:\"I1CJdMd6k\"},implicitPathVariables:undefined},{href:{webPageId:\"I1CJdMd6k\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,...addPropertyOverrides({fI1eJVGra:{y:(componentViewport?.y||0)+16+(((componentViewport?.height||200)-48-404)/2+44+32)+0+0+0+72},OILoSCHve:{y:(componentViewport?.y||0)+16+(((componentViewport?.height||200)-48-404)/2+44+32)+0+0+0+72}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-sxrv7i-container\",layoutDependency:layoutDependency,layoutId:\"cm_RZtBJ7-container\",nodeId:\"cm_RZtBJ7\",rendersWithMotion:true,scopeId:\"JACW2tB9f\",children:/*#__PURE__*/_jsx(Buttons,{height:\"100%\",id:\"cm_RZtBJ7\",j6LAoSH16:false,kH1xx4xP3:false,layoutId:\"cm_RZtBJ7\",LtXLYMDSx:false,p7RDeJRVU:\"Home\",pMEOHIK6c:resolvedLinks5[0],qWUPNVCCx:\"DesignServices\",rQn95ZWGH:\"Eye\",variant:\"CjhfEg4Xo\",VIfuDh0Xp:false,width:\"100%\",yP1IBixjx:getLocalizedValue(\"v1\",activeLocale)??\"Projets\",...addPropertyOverrides({fI1eJVGra:{j6LAoSH16:true,pMEOHIK6c:resolvedLinks5[2],yP1IBixjx:\"Projects\"},OILoSCHve:{j6LAoSH16:true,pMEOHIK6c:resolvedLinks5[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"tvPP4QYln\"},implicitPathVariables:undefined},{href:{webPageId:\"tvPP4QYln\"},implicitPathVariables:undefined},{href:{webPageId:\"tvPP4QYln\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,...addPropertyOverrides({fI1eJVGra:{y:(componentViewport?.y||0)+16+(((componentViewport?.height||200)-48-404)/2+44+32)+0+0+0+144},OILoSCHve:{y:(componentViewport?.y||0)+16+(((componentViewport?.height||200)-48-404)/2+44+32)+0+0+0+144}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1lixe4o-container\",layoutDependency:layoutDependency,layoutId:\"pKW_onJSg-container\",nodeId:\"pKW_onJSg\",rendersWithMotion:true,scopeId:\"JACW2tB9f\",children:/*#__PURE__*/_jsx(Buttons,{height:\"100%\",id:\"pKW_onJSg\",j6LAoSH16:false,kH1xx4xP3:false,layoutId:\"pKW_onJSg\",LtXLYMDSx:false,p7RDeJRVU:\"Home\",pMEOHIK6c:resolvedLinks6[0],qWUPNVCCx:\"Person\",rQn95ZWGH:\"Eye\",variant:\"CjhfEg4Xo\",VIfuDh0Xp:false,width:\"100%\",yP1IBixjx:getLocalizedValue(\"v2\",activeLocale)??\"Profil\",...addPropertyOverrides({fI1eJVGra:{j6LAoSH16:true,pMEOHIK6c:resolvedLinks6[2]},OILoSCHve:{j6LAoSH16:true,pMEOHIK6c:resolvedLinks6[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"LPCiMTJ4c\"},implicitPathVariables:undefined},{href:{webPageId:\"LPCiMTJ4c\"},implicitPathVariables:undefined},{href:{webPageId:\"LPCiMTJ4c\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,...addPropertyOverrides({fI1eJVGra:{y:(componentViewport?.y||0)+16+(((componentViewport?.height||200)-48-404)/2+44+32)+0+0+0+216},OILoSCHve:{y:(componentViewport?.y||0)+16+(((componentViewport?.height||200)-48-404)/2+44+32)+0+0+0+216}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-m28hrv-container\",layoutDependency:layoutDependency,layoutId:\"FG6jWduRt-container\",nodeId:\"FG6jWduRt\",rendersWithMotion:true,scopeId:\"JACW2tB9f\",children:/*#__PURE__*/_jsx(Buttons,{height:\"100%\",id:\"FG6jWduRt\",j6LAoSH16:false,kH1xx4xP3:false,layoutId:\"FG6jWduRt\",LtXLYMDSx:false,p7RDeJRVU:\"Home\",pMEOHIK6c:resolvedLinks7[0],qWUPNVCCx:\"Storefront\",rQn95ZWGH:\"Eye\",variant:\"CjhfEg4Xo\",VIfuDh0Xp:false,width:\"100%\",yP1IBixjx:getLocalizedValue(\"v3\",activeLocale)??\"Boutique\",...addPropertyOverrides({fI1eJVGra:{j6LAoSH16:true,pMEOHIK6c:resolvedLinks7[2],yP1IBixjx:\"Shop\"},OILoSCHve:{j6LAoSH16:true,pMEOHIK6c:resolvedLinks7[1]}},baseVariant,gestureVariant)})})})})]})}),isDisplayed3()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-y3cnlb\",\"data-framer-name\":\"Profil + Contact\",layoutDependency:layoutDependency,layoutId:\"FSfLldjl4\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"40px\",y:(componentViewport?.y||0)+(16+((componentViewport?.height||72)-32-40)/2)+0,...addPropertyOverrides({BVF7gWL0K:{y:(componentViewport?.y||0)+(16+((componentViewport?.height||200)-32-40)/2)+0},fI1eJVGra:{y:(componentViewport?.y||0)+16+(((componentViewport?.height||200)-48-404)/2+300+64)+0},OILoSCHve:{y:(componentViewport?.y||0)+16+(((componentViewport?.height||200)-48-404)/2+300+64)+0},QV_Ppxn3y:{y:(componentViewport?.y||0)+(16+((componentViewport?.height||200)-32-40)/2)+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-115cqr3-container\",layoutDependency:layoutDependency,layoutId:\"FXa_ouBeS-container\",nodeId:\"FXa_ouBeS\",rendersWithMotion:true,scopeId:\"JACW2tB9f\",children:/*#__PURE__*/_jsx(ProfilPicture,{height:\"100%\",id:\"FXa_ouBeS\",layoutId:\"FXa_ouBeS\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":Z2sQHN0oh\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":Z2sQHN0oh\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":Z2sQHN0oh\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":Z2sQHN0oh\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":Z2sQHN0oh\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":Z2sQHN0oh\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":Z2sQHN0oh\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":Z2sQHN0oh\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+(16+((componentViewport?.height||72)-32-40)/2)+0,...addPropertyOverrides({BVF7gWL0K:{y:(componentViewport?.y||0)+(16+((componentViewport?.height||200)-32-40)/2)+0},fI1eJVGra:{y:(componentViewport?.y||0)+16+(((componentViewport?.height||200)-48-404)/2+300+64)+0},OILoSCHve:{y:(componentViewport?.y||0)+16+(((componentViewport?.height||200)-48-404)/2+300+64)+0},QV_Ppxn3y:{y:(componentViewport?.y||0)+(16+((componentViewport?.height||200)-32-40)/2)+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1m0q95x-container\",layoutDependency:layoutDependency,layoutId:\"UgH9IhOML-container\",nodeId:\"UgH9IhOML\",rendersWithMotion:true,scopeId:\"JACW2tB9f\",children:/*#__PURE__*/_jsx(Buttons,{height:\"100%\",id:\"UgH9IhOML\",j6LAoSH16:false,kH1xx4xP3:true,layoutId:\"UgH9IhOML\",LtXLYMDSx:false,p7RDeJRVU:\"Send\",pMEOHIK6c:resolvedLinks8[0],qWUPNVCCx:\"Send\",rQn95ZWGH:\"Phone\",style:{height:\"100%\"},variant:\"mTiSlyO6Z\",VIfuDh0Xp:false,width:\"100%\",yP1IBixjx:getLocalizedValue(\"v4\",activeLocale)??\"Contactez-moi\",...addPropertyOverrides({BVF7gWL0K:{pMEOHIK6c:resolvedLinks8[2]},fI1eJVGra:{pMEOHIK6c:resolvedLinks8[7],yP1IBixjx:\"Get in touch\"},OILoSCHve:{pMEOHIK6c:resolvedLinks8[3]},pZ7hkS8SB:{pMEOHIK6c:resolvedLinks8[4],yP1IBixjx:\"Get in touch\"},QV_Ppxn3y:{pMEOHIK6c:resolvedLinks8[6],yP1IBixjx:\"Get in touch\"},rLPO3Xk0x:{pMEOHIK6c:resolvedLinks8[5],yP1IBixjx:\"Get in touch\"},UsJpIfuzz:{pMEOHIK6c:resolvedLinks8[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+(16+((componentViewport?.height||72)-32-40)/2)+0,...addPropertyOverrides({BVF7gWL0K:{y:(componentViewport?.y||0)+(16+((componentViewport?.height||200)-32-40)/2)+0},fI1eJVGra:{y:(componentViewport?.y||0)+16+(((componentViewport?.height||200)-48-404)/2+300+64)+0},OILoSCHve:{y:(componentViewport?.y||0)+16+(((componentViewport?.height||200)-48-404)/2+300+64)+0},QV_Ppxn3y:{y:(componentViewport?.y||0)+(16+((componentViewport?.height||200)-32-40)/2)+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1c3nzap-container\",layoutDependency:layoutDependency,layoutId:\"chqx8b1fS-container\",nodeId:\"chqx8b1fS\",rendersWithMotion:true,scopeId:\"JACW2tB9f\",children:/*#__PURE__*/_jsx(Langue,{height:\"100%\",id:\"chqx8b1fS\",layoutId:\"chqx8b1fS\",style:{height:\"100%\"},variant:convertFromEnum(activeLocale?.id,activeLocale),width:\"100%\",...addPropertyOverrides({BVF7gWL0K:{variant:convertFromEnum1(activeLocale?.id,activeLocale)},fI1eJVGra:{variant:convertFromEnum1(activeLocale?.id,activeLocale)},OILoSCHve:{variant:convertFromEnum1(activeLocale?.id,activeLocale)},QV_Ppxn3y:{variant:convertFromEnum1(activeLocale?.id,activeLocale)}},baseVariant,gestureVariant)})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-wk6JN.framer-ngq9mx, .framer-wk6JN .framer-ngq9mx { display: block; }\",\".framer-wk6JN.framer-obwua9 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 16px 100px 16px 100px; position: relative; width: 1440px; }\",\".framer-wk6JN .framer-1ysmi7k, .framer-wk6JN .framer-i4u360 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-wk6JN .framer-15dybtx { flex: none; height: 40px; position: relative; text-decoration: none; width: 40px; }\",\".framer-wk6JN .framer-c7m7zg-container, .framer-wk6JN .framer-1ry2k9k-container, .framer-wk6JN .framer-1v11v0s-container, .framer-wk6JN .framer-z0xmec-container, .framer-wk6JN .framer-1rcg6fq-container, .framer-wk6JN .framer-sxrv7i-container, .framer-wk6JN .framer-1lixe4o-container, .framer-wk6JN .framer-m28hrv-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-wk6JN .framer-1pd86r2 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; min-height: 142px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-wk6JN .framer-hxwdi5, .framer-wk6JN .framer-115cqr3-container { flex: none; height: 40px; position: relative; width: 40px; }\",\".framer-wk6JN .framer-1y9kee8 { cursor: pointer; flex: none; height: 44px; overflow: hidden; position: relative; width: 44px; }\",\".framer-wk6JN .framer-2sur6t, .framer-wk6JN .framer-1d4a4j5 { flex: none; height: 2px; left: calc(50.00000000000002% - 24px / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 2px / 2); width: 24px; will-change: var(--framer-will-change-override, transform); }\",\".framer-wk6JN .framer-1hual9c { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-wk6JN .framer-1jq59nc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-wk6JN .framer-y3cnlb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-wk6JN .framer-1m0q95x-container { align-self: stretch; flex: none; height: auto; position: relative; width: auto; }\",\".framer-wk6JN .framer-1c3nzap-container { flex: none; height: 40px; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-wk6JN .framer-1ysmi7k, .framer-wk6JN .framer-i4u360, .framer-wk6JN .framer-1hual9c, .framer-wk6JN .framer-1jq59nc, .framer-wk6JN .framer-y3cnlb { gap: 0px; } .framer-wk6JN .framer-1ysmi7k > *, .framer-wk6JN .framer-i4u360 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-wk6JN .framer-1ysmi7k > :first-child, .framer-wk6JN .framer-i4u360 > :first-child, .framer-wk6JN .framer-y3cnlb > :first-child { margin-left: 0px; } .framer-wk6JN .framer-1ysmi7k > :last-child, .framer-wk6JN .framer-i4u360 > :last-child, .framer-wk6JN .framer-y3cnlb > :last-child { margin-right: 0px; } .framer-wk6JN .framer-1hual9c > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-wk6JN .framer-1hual9c > :first-child, .framer-wk6JN .framer-1jq59nc > :first-child { margin-top: 0px; } .framer-wk6JN .framer-1hual9c > :last-child, .framer-wk6JN .framer-1jq59nc > :last-child { margin-bottom: 0px; } .framer-wk6JN .framer-1jq59nc > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-wk6JN .framer-y3cnlb > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } }\",\".framer-wk6JN.framer-v-57h08l.framer-obwua9, .framer-wk6JN.framer-v-1g1t0ox.framer-obwua9 { width: 1270px; }\",\".framer-wk6JN.framer-v-1l63g84.framer-obwua9, .framer-wk6JN.framer-v-133lor1.framer-obwua9 { padding: 16px 32px 16px 32px; width: 1024px; }\",\".framer-wk6JN.framer-v-1l63g84 .framer-y3cnlb { gap: 16px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-wk6JN.framer-v-1l63g84 .framer-y3cnlb { gap: 0px; } .framer-wk6JN.framer-v-1l63g84 .framer-y3cnlb > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-wk6JN.framer-v-1l63g84 .framer-y3cnlb > :first-child { margin-left: 0px; } .framer-wk6JN.framer-v-1l63g84 .framer-y3cnlb > :last-child { margin-right: 0px; } }\",\".framer-wk6JN.framer-v-10co7hq.framer-obwua9, .framer-wk6JN.framer-v-1edkisq.framer-obwua9 { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 32px; justify-content: center; padding: 16px 32px 16px 32px; width: 390px; }\",\".framer-wk6JN.framer-v-10co7hq .framer-1pd86r2, .framer-wk6JN.framer-v-njmnz5 .framer-1pd86r2, .framer-wk6JN.framer-v-1edkisq .framer-1pd86r2, .framer-wk6JN.framer-v-1xmo1m9 .framer-1pd86r2 { flex: none; min-height: unset; width: 100%; }\",\".framer-wk6JN.framer-v-10co7hq .framer-hxwdi5, .framer-wk6JN.framer-v-1edkisq .framer-hxwdi5 { order: 0; text-decoration: none; }\",\".framer-wk6JN.framer-v-10co7hq .framer-1y9kee8, .framer-wk6JN.framer-v-1edkisq .framer-1y9kee8 { order: 1; }\",\".framer-wk6JN.framer-v-10co7hq .framer-2sur6t, .framer-wk6JN.framer-v-1edkisq .framer-2sur6t { top: calc(36.36363636363639% - 2px / 2); }\",\".framer-wk6JN.framer-v-10co7hq .framer-1d4a4j5, .framer-wk6JN.framer-v-1edkisq .framer-1d4a4j5 { top: calc(61.36363636363639% - 2px / 2); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-wk6JN.framer-v-10co7hq.framer-obwua9 { gap: 0px; } .framer-wk6JN.framer-v-10co7hq.framer-obwua9 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-wk6JN.framer-v-10co7hq.framer-obwua9 > :first-child { margin-top: 0px; } .framer-wk6JN.framer-v-10co7hq.framer-obwua9 > :last-child { margin-bottom: 0px; } }\",\".framer-wk6JN.framer-v-njmnz5.framer-obwua9, .framer-wk6JN.framer-v-1xmo1m9.framer-obwua9 { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 32px; justify-content: center; padding: 16px 32px 32px 32px; width: 390px; }\",\".framer-wk6JN.framer-v-njmnz5 .framer-hxwdi5, .framer-wk6JN.framer-v-1xmo1m9 .framer-hxwdi5 { text-decoration: none; }\",\".framer-wk6JN.framer-v-njmnz5 .framer-1hual9c, .framer-wk6JN.framer-v-1xmo1m9 .framer-1hual9c { flex: none; width: 100%; }\",\".framer-wk6JN.framer-v-njmnz5 .framer-y3cnlb, .framer-wk6JN.framer-v-1xmo1m9 .framer-y3cnlb { gap: unset; justify-content: space-between; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-wk6JN.framer-v-njmnz5.framer-obwua9, .framer-wk6JN.framer-v-njmnz5 .framer-y3cnlb { gap: 0px; } .framer-wk6JN.framer-v-njmnz5.framer-obwua9 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-wk6JN.framer-v-njmnz5.framer-obwua9 > :first-child { margin-top: 0px; } .framer-wk6JN.framer-v-njmnz5.framer-obwua9 > :last-child { margin-bottom: 0px; } .framer-wk6JN.framer-v-njmnz5 .framer-y3cnlb > *, .framer-wk6JN.framer-v-njmnz5 .framer-y3cnlb > :first-child, .framer-wk6JN.framer-v-njmnz5 .framer-y3cnlb > :last-child { margin: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-wk6JN.framer-v-1edkisq.framer-obwua9 { gap: 0px; } .framer-wk6JN.framer-v-1edkisq.framer-obwua9 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-wk6JN.framer-v-1edkisq.framer-obwua9 > :first-child { margin-top: 0px; } .framer-wk6JN.framer-v-1edkisq.framer-obwua9 > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-wk6JN.framer-v-1xmo1m9.framer-obwua9, .framer-wk6JN.framer-v-1xmo1m9 .framer-y3cnlb { gap: 0px; } .framer-wk6JN.framer-v-1xmo1m9.framer-obwua9 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-wk6JN.framer-v-1xmo1m9.framer-obwua9 > :first-child { margin-top: 0px; } .framer-wk6JN.framer-v-1xmo1m9.framer-obwua9 > :last-child { margin-bottom: 0px; } .framer-wk6JN.framer-v-1xmo1m9 .framer-y3cnlb > *, .framer-wk6JN.framer-v-1xmo1m9 .framer-y3cnlb > :first-child, .framer-wk6JN.framer-v-1xmo1m9 .framer-y3cnlb > :last-child { margin: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 72\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"UsJpIfuzz\":{\"layout\":[\"fixed\",\"auto\"]},\"BVF7gWL0K\":{\"layout\":[\"fixed\",\"auto\"]},\"AdmWa1hVg\":{\"layout\":[\"fixed\",\"auto\"]},\"OILoSCHve\":{\"layout\":[\"fixed\",\"auto\"]},\"pZ7hkS8SB\":{\"layout\":[\"fixed\",\"auto\"]},\"rLPO3Xk0x\":{\"layout\":[\"fixed\",\"auto\"]},\"QV_Ppxn3y\":{\"layout\":[\"fixed\",\"auto\"]},\"FEwdBWE0V\":{\"layout\":[\"fixed\",\"auto\"]},\"fI1eJVGra\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerJACW2tB9f=withCSS(Component,css,\"framer-wk6JN\");export default FramerJACW2tB9f;FramerJACW2tB9f.displayName=\"Navbar\";FramerJACW2tB9f.defaultProps={height:72,width:1440};addPropertyControls(FramerJACW2tB9f,{variant:{options:[\"nHRWfqKs5\",\"UsJpIfuzz\",\"BVF7gWL0K\",\"AdmWa1hVg\",\"OILoSCHve\",\"pZ7hkS8SB\",\"rLPO3Xk0x\",\"QV_Ppxn3y\",\"FEwdBWE0V\",\"fI1eJVGra\"],optionTitles:[\"Desktop\",\"Laptop\",\"Tablet\",\"Phone - Open\",\"Phone - Collapsed\",\"Desktop English\",\"Laptop English\",\"Tablet English\",\"Phone English Open\",\"Phone English Collapsed\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerJACW2tB9f,[{explicitInter:true,fonts:[]},...ButtonsFonts,...ProfilPictureFonts,...LangueFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerJACW2tB9f\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1440\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UsJpIfuzz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"BVF7gWL0K\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"AdmWa1hVg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"OILoSCHve\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"pZ7hkS8SB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rLPO3Xk0x\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"QV_Ppxn3y\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FEwdBWE0V\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fI1eJVGra\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"72\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (6421805)\nimport*as localizedValues from\"./JACW2tB9f-0.js\";const valuesByLocaleId={KH4XtYOIu:localizedValues};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value)return value;}locale=locale.fallback;}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "export const v0=\"Home\";export const v1=\"Projects\";export const v2=\"Profile\";export const v3=\"Shop\";export const v4=\"Get in touch\";\nexport const __FramerMetadata__ = {\"exports\":{\"v3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (48da836)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,getLoadingLazyAtYPosition,Image,Link,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import DotLottie from\"https://framerusercontent.com/modules/jfK7C7JmdHGaVBsvt1V7/G0lF2a2mezep3QZSQZwm/DotLottie.js\";const DotLottieFonts=getFonts(DotLottie);const enabledGestures={rrGMz4I5w:{hover:true}};const serializationHash=\"framer-XuAhT\";const variantClassNames={rrGMz4I5w:\"framer-v-16ek892\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:35,delay:0,mass:2.5,stiffness:300,type:\"spring\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"rrGMz4I5w\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:{hash:\":Z2sQHN0oh\",webPageId:\"augiA20Il\"},nodeId:\"rrGMz4I5w\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-16ek892\",className,classNames)} framer-1aqsqgv`,\"data-framer-name\":\"Profil Picture\",layoutDependency:layoutDependency,layoutId:\"rrGMz4I5w\",ref:ref??ref1,style:{...style},...addPropertyOverrides({\"rrGMz4I5w-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-18612gz\",\"data-framer-name\":\"Placeholder\",layoutDependency:layoutDependency,layoutId:\"AydZ4fDsK\",style:{backgroundColor:\"var(--token-160825c1-5f3f-4523-8cd4-8866b1d95eb8, rgb(17, 17, 17))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,opacity:0},transformTemplate:transformTemplate1,variants:{\"rrGMz4I5w-hover\":{opacity:1}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6d458e21-6557-4950-9915-05195464bc86, rgb(250, 249, 249)))\"},children:\"Open for Work\"})}),className:\"framer-wsl7xe\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"hprWZE5CZ\",style:{\"--extracted-r6o4lv\":\"var(--token-6d458e21-6557-4950-9915-05195464bc86, rgb(250, 249, 249))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vxnws5\",\"data-framer-name\":\"Profil Picture\",layoutDependency:layoutDependency,layoutId:\"HTnYqSXEC\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Photo de profil d'Ilies Manata\",fit:\"fill\",intrinsicHeight:1440,intrinsicWidth:1440,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:1e3,pixelWidth:1e3,sizes:\"40px\",src:\"https://framerusercontent.com/images/T91k0ImNuxdnKauwMLPUeFc58.png\",srcSet:\"https://framerusercontent.com/images/T91k0ImNuxdnKauwMLPUeFc58.png?scale-down-to=512 512w,https://framerusercontent.com/images/T91k0ImNuxdnKauwMLPUeFc58.png 1000w\"},className:\"framer-mipt3l\",\"data-framer-name\":\"Profil Picture\",layoutDependency:layoutDependency,layoutId:\"fnGr4MH8M\",style:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17tha64\",\"data-framer-name\":\"Lottie Animation\",layoutDependency:layoutDependency,layoutId:\"K_RaNVmyG\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ki50ie-container\",layoutDependency:layoutDependency,layoutId:\"sqNDCsMyh-container\",children:/*#__PURE__*/_jsx(DotLottie,{autoplay:true,background:\"rgba(255, 255, 255, 0)\",controls:false,direction:\"1\",height:\"100%\",hover:false,id:\"sqNDCsMyh\",layoutId:\"sqNDCsMyh\",loop:true,progress:0,speed:1,srcType:\"url\",srcUrl:\"https://lottie.host/674d87e0-1630-442c-ab6d-71d33f85e31d/Ac6txHrPgH.lottie\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1tj6t78\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"db82TbMlE\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><path d=\"M 8 0 C 12.418 0 16 3.582 16 8 C 16 12.418 12.418 16 8 16 C 3.582 16 0 12.418 0 8 C 0 3.582 3.582 0 8 0 Z\" fill=\"var(--token-6d458e21-6557-4950-9915-05195464bc86, rgb(250, 249, 249))\"></path></svg>',svgContentId:9041251252,withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1moey8t\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"WWFl2hfxZ-shape\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12 12\"><path d=\"M 6 0 C 9.314 0 12 2.686 12 6 C 12 9.314 9.314 12 6 12 C 2.686 12 0 9.314 0 6 C 0 2.686 2.686 0 6 0 Z\" fill=\"var(--token-812a50bd-7d8d-4099-85e5-bff332bc5665, rgb(18, 201, 113))\"></path></svg>',svgContentId:9159740007,withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-74apj9-container\",layoutDependency:layoutDependency,layoutId:\"yUNYGc3eM-container\",style:{opacity:0,rotate:-32},variants:{\"rrGMz4I5w-hover\":{opacity:1}},children:/*#__PURE__*/_jsx(DotLottie,{autoplay:true,background:\"rgba(255, 255, 255, 0)\",controls:false,direction:\"1\",height:\"100%\",hover:false,id:\"yUNYGc3eM\",layoutId:\"yUNYGc3eM\",loop:true,progress:0,speed:1,srcType:\"url\",srcUrl:\"https://lottie.host/8ca9ebb1-3014-42dd-9e3d-a2c5c3e0463d/jU2PXRqJiy.json\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-XuAhT.framer-1aqsqgv, .framer-XuAhT .framer-1aqsqgv { display: block; }\",\".framer-XuAhT.framer-16ek892 { cursor: pointer; height: 40px; overflow: visible; position: relative; text-decoration: none; width: 40px; }\",\".framer-XuAhT .framer-18612gz { align-content: center; align-items: center; bottom: -58px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; left: 48%; overflow: hidden; padding: 8px; position: absolute; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-XuAhT .framer-wsl7xe { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-XuAhT .framer-vxnws5 { bottom: -16px; flex: none; left: 0px; overflow: visible; position: absolute; right: -15px; top: 0px; }\",\".framer-XuAhT .framer-mipt3l { flex: none; height: 40px; left: 0px; overflow: visible; position: absolute; top: 0px; width: 40px; }\",\".framer-XuAhT .framer-17tha64 { bottom: 0px; flex: none; height: 40px; overflow: visible; position: absolute; right: 0px; width: 40px; }\",\".framer-XuAhT .framer-1ki50ie-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-XuAhT .framer-1tj6t78 { flex: none; height: 16px; left: calc(50.00000000000002% - 16px / 2); position: absolute; top: calc(50.00000000000002% - 16px / 2); width: 16px; }\",\".framer-XuAhT .framer-1moey8t { flex: none; height: 12px; left: calc(50.00000000000002% - 12px / 2); position: absolute; top: calc(50.00000000000002% - 12px / 2); width: 12px; }\",\".framer-XuAhT .framer-74apj9-container { aspect-ratio: 1 / 1; bottom: -49px; flex: none; height: var(--framer-aspect-ratio-supported, 32px); left: -15px; position: absolute; width: 32px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-XuAhT .framer-18612gz { gap: 0px; } .framer-XuAhT .framer-18612gz > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-XuAhT .framer-18612gz > :first-child { margin-left: 0px; } .framer-XuAhT .framer-18612gz > :last-child { margin-right: 0px; } }\",\".framer-XuAhT.framer-v-16ek892.hover.framer-16ek892 { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 40px); }\",\".framer-XuAhT.framer-v-16ek892.hover .framer-18612gz { bottom: -38px; }\",\".framer-XuAhT.framer-v-16ek892.hover .framer-74apj9-container { bottom: -20px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 40\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"vCgNWFcLo\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerDjI7JA7Q6=withCSS(Component,css,\"framer-XuAhT\");export default FramerDjI7JA7Q6;FramerDjI7JA7Q6.displayName=\"Profil Picture\";FramerDjI7JA7Q6.defaultProps={height:40,width:40};addFonts(FramerDjI7JA7Q6,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...DotLottieFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerDjI7JA7Q6\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"40\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"40\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"vCgNWFcLo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./DjI7JA7Q6.map", "// Generated by Framer (48da836)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import LocaleSelector from\"https://framerusercontent.com/modules/57FhkldN9P7x88MqAEaR/UfMN9oeTJKQqVQHIwZ5z/LocaleSelector.js\";import LocaleSelector1 from\"https://framerusercontent.com/modules/Pa4s3PbXfJ6vruViIjPB/0HakGOpnX56g6d8JHtkl/Z9mbc4vSs.js\";const LocaleSelectorFonts=getFonts(LocaleSelector);const LocaleSelector1Fonts=getFonts(LocaleSelector1);const enabledGestures={D1fvp5jIR:{hover:true},Ev7PCYIDH:{hover:true},mosjFLOn1:{hover:true},wYPUxq19y:{hover:true}};const cycleOrder=[\"mosjFLOn1\",\"wYPUxq19y\",\"Ev7PCYIDH\",\"D1fvp5jIR\"];const serializationHash=\"framer-dk91I\";const variantClassNames={D1fvp5jIR:\"framer-v-1obtohk\",Ev7PCYIDH:\"framer-v-1xru1me\",mosjFLOn1:\"framer-v-1q8l90h\",wYPUxq19y:\"framer-v-ddfouw\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"EN Tiny\":\"D1fvp5jIR\",\"FR Tiny\":\"Ev7PCYIDH\",EN:\"wYPUxq19y\",FR:\"mosjFLOn1\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"mosjFLOn1\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"mosjFLOn1\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1q8l90h\",className,classNames),\"data-framer-name\":\"FR\",layoutDependency:layoutDependency,layoutId:\"mosjFLOn1\",ref:ref??ref1,style:{...style},...addPropertyOverrides({\"D1fvp5jIR-hover\":{\"data-framer-name\":undefined},\"Ev7PCYIDH-hover\":{\"data-framer-name\":undefined},\"mosjFLOn1-hover\":{\"data-framer-name\":undefined},\"wYPUxq19y-hover\":{\"data-framer-name\":undefined},D1fvp5jIR:{\"data-framer-name\":\"EN Tiny\"},Ev7PCYIDH:{\"data-framer-name\":\"FR Tiny\"},wYPUxq19y:{\"data-framer-name\":\"EN\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-11bi0t3-container\",layoutDependency:layoutDependency,layoutId:\"JZt3P1ePa-container\",children:/*#__PURE__*/_jsx(LocaleSelector,{font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1.5em\"},height:\"100%\",id:\"JZt3P1ePa\",layoutId:\"JZt3P1ePa\",options:{focus:{color:\"rgb(0, 153, 255)\",offset:0,style:\"solid\",width:1},gap:8,title:false},padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,radius:0,radiusBottomLeft:0,radiusBottomRight:0,radiusPerConrner:false,radiusTopLeft:0,radiusTopRight:0,style:{height:\"100%\",width:\"100%\"},textColor:\"rgb(0, 0, 0)\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"112px\",y:(componentViewport?.y||0)+(0+((componentViewport?.height||40)-0-40)/2),...addPropertyOverrides({\"D1fvp5jIR-hover\":{width:undefined},\"Ev7PCYIDH-hover\":{width:undefined},D1fvp5jIR:{width:undefined},Ev7PCYIDH:{width:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-7f3fmv-container\",layoutDependency:layoutDependency,layoutId:\"CYbN1avpq-container\",children:/*#__PURE__*/_jsx(LocaleSelector1,{gjfSUYxvL:\"FR\",height:\"100%\",id:\"CYbN1avpq\",layoutId:\"CYbN1avpq\",style:{height:\"100%\",width:\"100%\"},variant:\"Nrqv31Drj\",width:\"100%\",...addPropertyOverrides({\"D1fvp5jIR-hover\":{variant:\"R1ubmOvEp\"},\"Ev7PCYIDH-hover\":{variant:\"wPWVy3bPO\"},\"mosjFLOn1-hover\":{variant:\"NZNxvbGkY\"},\"wYPUxq19y-hover\":{variant:\"y3tjezZys\"},D1fvp5jIR:{style:{height:\"100%\"},variant:\"JZhBwTqp1\"},Ev7PCYIDH:{style:{height:\"100%\"},variant:\"tbjPFViSY\"},wYPUxq19y:{gjfSUYxvL:\"EN\",variant:\"Ds2B3ZVUy\"}},baseVariant,gestureVariant)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-dk91I.framer-1q4iddx, .framer-dk91I .framer-1q4iddx { display: block; }\",\".framer-dk91I.framer-1q8l90h { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-dk91I .framer-11bi0t3-container { flex: none; height: 100%; left: calc(50.00000000000002% - 112px / 2); position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 112px; z-index: 2; }\",\".framer-dk91I .framer-7f3fmv-container { flex: none; height: 40px; position: relative; width: 112px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-dk91I.framer-1q8l90h { gap: 0px; } .framer-dk91I.framer-1q8l90h > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-dk91I.framer-1q8l90h > :first-child { margin-left: 0px; } .framer-dk91I.framer-1q8l90h > :last-child { margin-right: 0px; } }\",\".framer-dk91I.framer-v-1xru1me .framer-7f3fmv-container, .framer-dk91I.framer-v-1obtohk .framer-7f3fmv-container { width: auto; }\",\".framer-dk91I.framer-v-1q8l90h.hover .framer-11bi0t3-container { order: 0; }\",\".framer-dk91I.framer-v-1q8l90h.hover .framer-7f3fmv-container { order: 1; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 112\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"wYPUxq19y\":{\"layout\":[\"auto\",\"fixed\"]},\"Ev7PCYIDH\":{\"layout\":[\"auto\",\"fixed\"]},\"D1fvp5jIR\":{\"layout\":[\"auto\",\"fixed\"]},\"sL8jKG17N\":{\"layout\":[\"auto\",\"fixed\"]},\"bNw0wSQPP\":{\"layout\":[\"auto\",\"fixed\"]},\"WsH1ah_Qo\":{\"layout\":[\"auto\",\"fixed\"]},\"S0RfakkAe\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerDqv5GIiFX=withCSS(Component,css,\"framer-dk91I\");export default FramerDqv5GIiFX;FramerDqv5GIiFX.displayName=\"Langue\";FramerDqv5GIiFX.defaultProps={height:40,width:112};addPropertyControls(FramerDqv5GIiFX,{variant:{options:[\"mosjFLOn1\",\"wYPUxq19y\",\"Ev7PCYIDH\",\"D1fvp5jIR\"],optionTitles:[\"FR\",\"EN\",\"FR Tiny\",\"EN Tiny\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerDqv5GIiFX,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...LocaleSelectorFonts,...LocaleSelector1Fonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerDqv5GIiFX\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"40\",\"framerIntrinsicWidth\":\"112\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"wYPUxq19y\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"Ev7PCYIDH\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"D1fvp5jIR\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"sL8jKG17N\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"bNw0wSQPP\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"WsH1ah_Qo\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"S0RfakkAe\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,// @ts-ignore Internal function\nuseLocaleInfo,withCSS}from\"framer\";import{useId,useState}from\"react\";import{getBorderStyle,borderControls}from\"https://framerusercontent.com/modules/cuKUFdzXlhvw8OVOBeAc/T08RxQJ4qrs7LLc8wx4E/border.js\";import{getFocusStyle,focusControls}from\"https://framerusercontent.com/modules/9muYaW1MvHoRQJ0P7dkP/V2GVvLqiMxXRSxszkCSa/focus.js\";import{getHoverStyle,hoverControls}from\"https://framerusercontent.com/modules/YfmtnpWjJrP37sQ18QUZ/9Y2P24U2SBIbf2fPVsOX/hover.js\";import{getPaddingStyle,paddingControls}from\"https://framerusercontent.com/modules/wjZLfSMaP1TvJDu5PCwr/6SPClu354QJPCp6Xj5C0/padding.js\";import{getRadiusStyle,radiusControls}from\"https://framerusercontent.com/modules/N6MwtHbWoiZJNn1xpqxu/58OHv7BfCzgeBhiv1TYu/radius.js\";const className=\"framer-locale-picker\";function addPixel(value){if(typeof value===\"number\"){return`${value}px`;}return value;}var IconType;(function(IconType){IconType[\"Default\"]=\"default\";IconType[\"Custom\"]=\"custom\";})(IconType||(IconType={}));function Icon({type,color,image,size}){if(type===\"custom\"&&image){return /*#__PURE__*/_jsx(\"img\",{...image,width:size,height:size});}return /*#__PURE__*/_jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",viewBox:\"0 0 256 256\",width:size,height:size,fill:color,children:/*#__PURE__*/_jsx(\"path\",{d:\"M128,24A104,104,0,1,0,232,128,104.11,104.11,0,0,0,128,24Zm87.63,96H175.8c-1.41-28.46-10.27-55.47-25.12-77A88.2,88.2,0,0,1,215.63,120ZM128,215.89c-18.73-20.27-30.09-49-31.77-79.89h63.54C158.09,166.87,146.73,195.62,128,215.89ZM96.23,120c1.68-30.87,13-59.62,31.77-79.89,18.73,20.27,30.09,49,31.77,79.89Zm9.09-77C90.47,64.53,81.61,91.54,80.2,120H40.37A88.2,88.2,0,0,1,105.32,43ZM40.37,136H80.2c1.41,28.46,10.27,55.47,25.12,77A88.2,88.2,0,0,1,40.37,136Zm110.31,77c14.85-21.56,23.71-48.57,25.12-77h39.83A88.2,88.2,0,0,1,150.68,213Z\"})});}var CaretType;(function(CaretType){CaretType[\"Default\"]=\"default\";CaretType[\"Custom\"]=\"custom\";})(CaretType||(CaretType={}));function Caret({type,color,image,size}){if(type===\"custom\"&&image){return /*#__PURE__*/_jsx(\"img\",{...image,width:size,height:size});}return /*#__PURE__*/_jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",viewBox:\"0 0 12 12\",width:size,height:size,children:/*#__PURE__*/_jsx(\"path\",{d:\"M 2 4.5 L 6 8.5 L 10 4.5\",fill:\"none\",stroke:color,strokeWidth:1.5,strokeLinecap:\"round\",strokeLinejoin:\"round\"})});}/**\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any\n * @framerDisableUnlink\n * @framerIntrinsicWidth 120\n * @framerIntrinsicHeight 34\n */const LocaleSelector=withCSS(({font,fillColor,textColor,icon,caret,options:{title,gap,border,hover,focus},style,...props})=>{const id=useId();const{activeLocale,locales,setLocale}=useLocaleInfo();var _activeLocale_id;const activeLocaleId=(_activeLocale_id=activeLocale===null||activeLocale===void 0?void 0:activeLocale.id)!==null&&_activeLocale_id!==void 0?_activeLocale_id:\"default\";const[lastActiveLocaleId,setLastActiveLocaleId]=useState(activeLocaleId);// The useLocaleInfo hook updates the activeLocale variable inside\n// a startTransition to load the translations with Suspense. To make\n// the component feel responsive we update our own state without Suspense.\nconst[selectedLocaleId,setSelectedLocaleId]=useState(activeLocaleId);const selectedLocale=locales.find(locale=>locale.id===selectedLocaleId);// The active locale was updated. Ensure we update our internal state as well.\nif(lastActiveLocaleId!==activeLocaleId){setLastActiveLocaleId(activeLocaleId);if(selectedLocaleId!==activeLocaleId){setSelectedLocaleId(activeLocaleId);}}function handleChange(event){const localeId=event.target.value;setSelectedLocaleId(localeId);const locale=locales.find(locale=>locale.id===localeId);setLocale(locale);}var _selectedLocale_name;return /*#__PURE__*/_jsxs(\"div\",{className:className,style:style,children:[/*#__PURE__*/_jsx(\"label\",{htmlFor:id,children:\"Select Language\"}),/*#__PURE__*/_jsx(\"select\",{id:id,value:selectedLocaleId,onChange:handleChange,// If a navigation occurs from switching locales\n// the browser can attempt to autofill the select to the last value\n// when you use browser back navigation. We don't want that.\nautoComplete:\"off\",children:locales.map(locale=>/*#__PURE__*/_jsx(\"option\",{value:locale.id,children:locale.name},locale.id))}),/*#__PURE__*/_jsxs(\"div\",{className:\"input\",style:{...font,\"--framer-background-color\":fillColor,\"--framer-color\":textColor,...getPaddingStyle(props),...getRadiusStyle(props),...getBorderStyle(border),...getHoverStyle(hover),...getFocusStyle(focus),gap},children:[icon&&/*#__PURE__*/_jsx(\"div\",{className:\"icon\",children:/*#__PURE__*/_jsx(Icon,{...icon})}),title&&/*#__PURE__*/_jsx(\"div\",{className:\"title\",children:(_selectedLocale_name=selectedLocale===null||selectedLocale===void 0?void 0:selectedLocale.name)!==null&&_selectedLocale_name!==void 0?_selectedLocale_name:\"English\"}),caret&&/*#__PURE__*/_jsx(\"div\",{className:\"caret\",children:/*#__PURE__*/_jsx(Caret,{...caret})})]})]});},[`\n            .${className} {\n                position: relative;\n            }\n        `,`\n            .${className} label {\n                position: absolute;\n                width: 1px;\n                height: 1px;\n                margin: -1px;\n                overflow: hidden;\n                white-space: nowrap;\n                clip: rect(0 0 0 0);\n                clip-path: inset(50%);\n            }\n        `,`\n            .${className} select {\n                appearance: none;\n                position: absolute;\n                opacity: 0;\n                top: 0;\n                right: 0;\n                bottom: 0;\n                left: 0;\n                cursor: inherit;\n                width: 100%;\n            }\n        `,`\n            .${className} .input {\n                display: flex;\n                justify-content: center;\n                align-items: center;\n                height: 100%;\n                pointer-events: none;\n                overflow: hidden;\n                background-color: var(--framer-background-color);\n                color: var(--framer-color);\n                border-color: var(--framer-border-color);\n            }\n        `,`\n            .${className} select:focus-visible + .input  {\n                outline: var(--framer-focus-outline, none);\n                outline-offset: var(--framer-focus-outline-offset);\n            }\n        `,`\n            .${className}:hover .input {\n                background-color: var(--framer-hover-background-color, var(--framer-background-color));\n                color: var(--framer-hover-color, var(--framer-color));\n                border-color: var(--framer-hover-border-color, var(--framer-border-color));\n            }\n        `,`\n            .${className} .title {\n                flex: 1 1 auto;\n                white-space: nowrap;\n                text-overflow: ellipsis;\n                overflow: hidden;\n            }\n        `,`\n            .${className} .icon, .${className} .caret {\n                display: flex;\n                align-items: center;\n            }\n        `]);LocaleSelector.displayName=\"Locale Selector\";addPropertyControls(LocaleSelector,{font:{// @ts-ignore\ntype:ControlType.Font,controls:\"extended\",defaultFontType:\"sans-serif\",defaultValue:{fontSize:14,lineHeight:\"1.5em\"}},fillColor:{type:ControlType.Color,title:\"Fill\",optional:true,defaultValue:\"#eee\"},textColor:{type:ControlType.Color,title:\"Text\",defaultValue:\"#000\"},...paddingControls,...radiusControls,icon:{type:ControlType.Object,buttonTitle:\"Size, Color\",optional:true,controls:{type:{type:ControlType.Enum,title:\"Icon\",options:Object.values(IconType),optionTitles:[\"Default\",\"Custom\"],displaySegmentedControl:true,defaultValue:\"default\"},color:{type:ControlType.Color,displaySegmentedControl:true,defaultValue:\"#000\",hidden:props=>props.type!==\"default\"},image:{type:ControlType.ResponsiveImage,title:\"File\",allowedFileTypes:[\"jpg\",\"png\",\"svg\"],hidden:props=>props.type!==\"custom\"},size:{type:ControlType.Number,displayStepper:true,defaultValue:18}}},caret:{type:ControlType.Object,buttonTitle:\"Size, Color\",optional:true,controls:{type:{type:ControlType.Enum,title:\"Icon\",options:Object.values(CaretType),optionTitles:[\"Default\",\"Custom\"],displaySegmentedControl:true,defaultValue:\"default\"},color:{type:ControlType.Color,displaySegmentedControl:true,defaultValue:\"#000\",hidden:props=>props.type!==\"default\"},image:{type:ControlType.ResponsiveImage,title:\"File\",allowedFileTypes:[\"jpg\",\"png\",\"svg\"],hidden:props=>props.type!==\"custom\"},size:{type:ControlType.Number,displayStepper:true,defaultValue:12}},defaultValue:{}},options:{type:ControlType.Object,title:\"Options\",buttonTitle:\"Border, Hover\",controls:{title:{type:ControlType.Boolean,defaultValue:true},gap:{type:ControlType.Number,displayStepper:true,defaultValue:5},border:{type:ControlType.Object,buttonTitle:\"Color, Width\",optional:true,controls:borderControls},hover:{type:ControlType.Object,buttonTitle:\"Fill, Border\",optional:true,controls:hoverControls},focus:{type:ControlType.Object,buttonTitle:\"Color, Width\",controls:focusControls}}}});export default LocaleSelector;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"LocaleSelector\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerSupportedLayoutHeight\":\"any\",\"framerDisableUnlink\":\"* @framerIntrinsicWidth 120\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"34\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./LocaleSelector.map", "import{ControlType as e}from\"framer\";export function getBorderStyle({color:e,width:t=0,widthPerSide:o=!1,widthTop:d=0,widthRight:r=0,widthBottom:i=0,widthLeft:l=0,style:h=\"none\"}={}){let b={};return e?(b[\"--framer-border-color\"]=e,b.borderStyle=h,o?(b.borderTopWidth=d,b.borderRightWidth=r,b.borderBottomWidth=i,b.borderLeftWidth=l):(b.borderTopWidth=t,b.borderRightWidth=t,b.borderBottomWidth=t,b.borderLeftWidth=t)):b.border=\"none\",b;}export const borderControls={color:{type:e.Color,defaultValue:\"#444\"},width:{type:e.FusedNumber,toggleKey:\"widthPerSide\",toggleTitles:[\"Width\",\"Width per side\"],valueKeys:[\"widthTop\",\"widthRight\",\"widthBottom\",\"widthLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],defaultValue:1,min:0},style:{type:e.Enum,options:[\"solid\",\"dashed\",\"dotted\",\"double\"],optionTitles:[\"Solid\",\"Dashed\",\"Dotted\",\"double\"],defaultValue:\"solid\"}};\nexport const __FramerMetadata__ = {\"exports\":{\"borderControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getBorderStyle\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"BorderOptions\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./border.map", "import{ControlType}from\"framer\";export function getFocusStyle({color,width,style,offset}={}){const result={};if(color){result[\"--framer-focus-outline\"]=`${width}px ${style} ${color}`;result[\"--framer-focus-outline-offset\"]=`${offset}px`;}return result;}export const focusControls={color:{type:ControlType.Color,defaultValue:\"#09f\"},width:{type:ControlType.Number,displayStepper:true,defaultValue:1,min:0},style:{type:ControlType.Enum,options:[\"solid\",\"dashed\",\"dotted\",\"double\"],optionTitles:[\"Solid\",\"Dashed\",\"Dotted\",\"double\"],defaultValue:\"solid\"},offset:{type:ControlType.Number,displayStepper:true}};\nexport const __FramerMetadata__ = {\"exports\":{\"focusControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getFocusStyle\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"FocusOptions\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./focus.map", "import{ControlType}from\"framer\";export function getHoverStyle({fillColor,textColor,borderColor}={}){return{\"--framer-hover-background-color\":fillColor,\"--framer-hover-color\":textColor,\"--framer-hover-border-color\":borderColor};}export const hoverControls={fillColor:{type:ControlType.Color,title:\"Fill\",optional:true},textColor:{type:ControlType.Color,title:\"Text\",optional:true},borderColor:{type:ControlType.Color,title:\"Border\",optional:true}};\nexport const __FramerMetadata__ = {\"exports\":{\"HoverOptions\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getHoverStyle\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"hoverControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./hover.map", "import{ControlType}from\"framer\";export function getPaddingStyle({padding=0,paddingPerSide=false,paddingTop=0,paddingRight=0,paddingBottom=0,paddingLeft=0}={}){if(paddingPerSide){return{paddingTop:paddingTop,paddingRight:paddingRight,paddingBottom:paddingBottom,paddingLeft:paddingLeft};}else{return{paddingTop:padding,paddingRight:padding,paddingBottom:padding,paddingLeft:padding};}}export const paddingControls={padding:{type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],defaultValue:10,min:0}};\nexport const __FramerMetadata__ = {\"exports\":{\"getPaddingStyle\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"paddingControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"PaddingOptions\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./padding.map", "import{ControlType}from\"framer\";export function getRadiusStyle({radius=0,radiusPerCorner=false,radiusTopLeft=0,radiusTopRight=0,radiusBottomRight=0,radiusBottomLeft=0}={}){const result={};if(radiusPerCorner){result.borderTopLeftRadius=radiusTopLeft;result.borderTopRightRadius=radiusTopRight;result.borderBottomRightRadius=radiusBottomRight;result.borderBottomLeftRadius=radiusBottomLeft;}else{result.borderTopLeftRadius=radius;result.borderTopRightRadius=radius;result.borderBottomRightRadius=radius;result.borderBottomLeftRadius=radius;}return result;}export const radiusControls={radius:{type:ControlType.FusedNumber,toggleKey:\"radiusPerConrner\",toggleTitles:[\"Radius\",\"Radius per side\"],valueKeys:[\"radiusTopLeft\",\"radiusTopRight\",\"radiusBottomRight\",\"radiusBottomLeft\",],valueLabels:[\"TL\",\"TR\",\"BR\",\"BL\"],defaultValue:10,min:0}};\nexport const __FramerMetadata__ = {\"exports\":{\"getRadiusStyle\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"radiusControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"RadiusOptions\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./radius.map", "// Generated by Framer (48da836)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Material}from\"https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/SflnVWik1LVN96y2Lmqy/RKaJV5sb3PABjg1Qatj6/NjnYXHlJM.js\";const MaterialFonts=getFonts(Material);const cycleOrder=[\"Nrqv31Drj\",\"NZNxvbGkY\",\"Ds2B3ZVUy\",\"y3tjezZys\",\"tbjPFViSY\",\"JZhBwTqp1\",\"wPWVy3bPO\",\"R1ubmOvEp\"];const serializationHash=\"framer-ehcZZ\";const variantClassNames={Ds2B3ZVUy:\"framer-v-11x62v7\",JZhBwTqp1:\"framer-v-1f6h8mj\",Nrqv31Drj:\"framer-v-yrn8yw\",NZNxvbGkY:\"framer-v-12manl0\",R1ubmOvEp:\"framer-v-t4nlf7\",tbjPFViSY:\"framer-v-1rerm1z\",wPWVy3bPO:\"framer-v-1r51mq1\",y3tjezZys:\"framer-v-pr2ahb\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"EN Hover\":\"y3tjezZys\",\"EN Tiny Hover\":\"R1ubmOvEp\",\"EN Tiny\":\"JZhBwTqp1\",\"FR Hover\":\"NZNxvbGkY\",\"FR Tiny \":\"tbjPFViSY\",\"FR Tiny Hover\":\"wPWVy3bPO\",EN:\"Ds2B3ZVUy\",FR:\"Nrqv31Drj\"};const getProps=({height,id,langue,width,...props})=>{return{...props,gjfSUYxvL:langue??props.gjfSUYxvL??\"FR\",variant:humanReadableVariantMap[props.variant]??props.variant??\"Nrqv31Drj\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,gjfSUYxvL,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Nrqv31Drj\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"Ds2B3ZVUy\",\"y3tjezZys\",\"JZhBwTqp1\",\"R1ubmOvEp\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"Ds2B3ZVUy\",\"y3tjezZys\",\"JZhBwTqp1\",\"R1ubmOvEp\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if([\"tbjPFViSY\",\"JZhBwTqp1\",\"wPWVy3bPO\",\"R1ubmOvEp\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-yrn8yw\",className,classNames),\"data-framer-name\":\"FR\",layoutDependency:layoutDependency,layoutId:\"Nrqv31Drj\",ref:ref??ref1,style:{backgroundColor:\"var(--token-6d458e21-6557-4950-9915-05195464bc86, rgb(250, 249, 249))\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,...style},...addPropertyOverrides({Ds2B3ZVUy:{\"data-framer-name\":\"EN\"},JZhBwTqp1:{\"data-framer-name\":\"EN Tiny\"},NZNxvbGkY:{\"data-framer-name\":\"FR Hover\"},R1ubmOvEp:{\"data-framer-name\":\"EN Tiny Hover\"},tbjPFViSY:{\"data-framer-name\":\"FR Tiny \"},wPWVy3bPO:{\"data-framer-name\":\"FR Tiny Hover\"},y3tjezZys:{\"data-framer-name\":\"EN Hover\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1y3qunp\",\"data-framer-name\":\"Drapeau\",layoutDependency:layoutDependency,layoutId:\"WmnU8Y33I\",children:[isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"Drapeau fran\\xe7ais pour la selection de la langue\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(12+((componentViewport?.height||40)-24-((componentViewport?.height||40)-24)*1)/2)+0+0),pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/9BubOy4nqqLvAP2br5LJ9KAc6pA.png\"},className:\"framer-z9gmf4\",\"data-framer-name\":\"Drapeau Fran\\xe7ais\",layoutDependency:layoutDependency,layoutId:\"UgYkN11no\",...addPropertyOverrides({NZNxvbGkY:{background:{alt:\"Drapeau fran\\xe7ais pour la selection de la langue\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(12+((componentViewport?.height||40)-24-((componentViewport?.height||40)-24)*1)/2)+28+(((componentViewport?.height||40)-24)*1-28-68+0+0)),pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/9BubOy4nqqLvAP2br5LJ9KAc6pA.png\"}},wPWVy3bPO:{background:{alt:\"Drapeau fran\\xe7ais pour la selection de la langue\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(12+((componentViewport?.height||40)-24-((componentViewport?.height||40)-24)*1)/2)+28+(((componentViewport?.height||40)-24)*1-28-68+0+0)),pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/9BubOy4nqqLvAP2br5LJ9KAc6pA.png\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-o6dx8b-container\",layoutDependency:layoutDependency,layoutId:\"Oh8NKy9FT-container\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-160825c1-5f3f-4523-8cd4-8866b1d95eb8, rgb(17, 17, 17))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Language\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"Oh8NKy9FT\",layoutId:\"Oh8NKy9FT\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"Drapeau des \\xc9tats-Unis d'Am\\xe9rique pour la selection de la langue\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:512,pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/mUt3dNog2RGNMj55SdloCmryrg.png\"},className:\"framer-9chuqv\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"QEklvcEpF\",...addPropertyOverrides({Ds2B3ZVUy:{background:{alt:\"Drapeau des \\xc9tats-Unis d'Am\\xe9rique pour la selection de la langue\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(12+((componentViewport?.height||40)-24-((componentViewport?.height||40)-24)*1)/2)+0+0),pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/mUt3dNog2RGNMj55SdloCmryrg.png\"}},JZhBwTqp1:{background:{alt:\"Drapeau des \\xc9tats-Unis d'Am\\xe9rique pour la selection de la langue\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(12+((componentViewport?.height||40)-24-((componentViewport?.height||40)-24)*1)/2)+0+0),pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/mUt3dNog2RGNMj55SdloCmryrg.png\"}},R1ubmOvEp:{background:{alt:\"Drapeau des \\xc9tats-Unis d'Am\\xe9rique pour la selection de la langue\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(12+((componentViewport?.height||40)-24-((componentViewport?.height||40)-24)*1)/2)+28+(((componentViewport?.height||40)-24)*1-28-69+0+0)),pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/mUt3dNog2RGNMj55SdloCmryrg.png\"}},y3tjezZys:{background:{alt:\"Drapeau des \\xc9tats-Unis d'Am\\xe9rique pour la selection de la langue\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:512,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(12+((componentViewport?.height||40)-24-((componentViewport?.height||40)-24)*1)/2)+28+(((componentViewport?.height||40)-24)*1-28-69+0+0)),pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/mUt3dNog2RGNMj55SdloCmryrg.png\"}}},baseVariant,gestureVariant)})]}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-fff9ij\",\"data-framer-name\":\"Langue\",layoutDependency:layoutDependency,layoutId:\"lIXzbLS0j\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-179mksp\",\"data-styles-preset\":\"NjnYXHlJM\",children:\"FR\"})}),className:\"framer-fkzjt8\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"rSS9Lpe_2\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:gjfSUYxvL,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-zohu6-container\",layoutDependency:layoutDependency,layoutId:\"ER43uZPsz-container\",style:{rotate:90},children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-160825c1-5f3f-4523-8cd4-8866b1d95eb8, rgb(17, 17, 17))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"ChevronRight\",iconStyle15:\"Rounded\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"ER43uZPsz\",layoutId:\"ER43uZPsz\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ehcZZ.framer-47ohuj, .framer-ehcZZ .framer-47ohuj { display: block; }\",\".framer-ehcZZ.framer-yrn8yw { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: 40px; justify-content: center; overflow: hidden; padding: 12px 16px 12px 16px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-ehcZZ .framer-1y3qunp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 100%; justify-content: flex-start; overflow: visible; padding: 0px 0px 24px 0px; position: relative; width: 24px; }\",\".framer-ehcZZ .framer-z9gmf4 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); overflow: visible; position: relative; width: 24px; }\",\".framer-ehcZZ .framer-o6dx8b-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 27px); position: relative; width: 24px; }\",\".framer-ehcZZ .framer-9chuqv { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 25px); overflow: visible; position: relative; width: 24px; }\",\".framer-ehcZZ .framer-fff9ij { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 36px; }\",\".framer-ehcZZ .framer-fkzjt8 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-ehcZZ .framer-zohu6-container { flex: none; height: 27px; position: relative; width: 24px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ehcZZ.framer-yrn8yw, .framer-ehcZZ .framer-1y3qunp, .framer-ehcZZ .framer-fff9ij { gap: 0px; } .framer-ehcZZ.framer-yrn8yw > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-ehcZZ.framer-yrn8yw > :first-child { margin-left: 0px; } .framer-ehcZZ.framer-yrn8yw > :last-child { margin-right: 0px; } .framer-ehcZZ .framer-1y3qunp > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-ehcZZ .framer-1y3qunp > :first-child, .framer-ehcZZ .framer-fff9ij > :first-child { margin-top: 0px; } .framer-ehcZZ .framer-1y3qunp > :last-child, .framer-ehcZZ .framer-fff9ij > :last-child { margin-bottom: 0px; } .framer-ehcZZ .framer-fff9ij > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-ehcZZ.framer-v-12manl0 .framer-1y3qunp, .framer-ehcZZ.framer-v-pr2ahb .framer-1y3qunp, .framer-ehcZZ.framer-v-1r51mq1 .framer-1y3qunp, .framer-ehcZZ.framer-v-t4nlf7 .framer-1y3qunp { justify-content: flex-end; padding: 28px 0px 0px 0px; }\",\".framer-ehcZZ.framer-v-11x62v7 .framer-o6dx8b-container, .framer-ehcZZ.framer-v-pr2ahb .framer-o6dx8b-container, .framer-ehcZZ.framer-v-1f6h8mj .framer-o6dx8b-container, .framer-ehcZZ.framer-v-t4nlf7 .framer-o6dx8b-container { order: 2; }\",\".framer-ehcZZ.framer-v-11x62v7 .framer-9chuqv, .framer-ehcZZ.framer-v-pr2ahb .framer-9chuqv, .framer-ehcZZ.framer-v-1f6h8mj .framer-9chuqv, .framer-ehcZZ.framer-v-t4nlf7 .framer-9chuqv { height: var(--framer-aspect-ratio-supported, 24px); order: 0; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 124\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"NZNxvbGkY\":{\"layout\":[\"auto\",\"fixed\"]},\"Ds2B3ZVUy\":{\"layout\":[\"auto\",\"fixed\"]},\"y3tjezZys\":{\"layout\":[\"auto\",\"fixed\"]},\"tbjPFViSY\":{\"layout\":[\"auto\",\"fixed\"]},\"JZhBwTqp1\":{\"layout\":[\"auto\",\"fixed\"]},\"wPWVy3bPO\":{\"layout\":[\"auto\",\"fixed\"]},\"R1ubmOvEp\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"gjfSUYxvL\":\"langue\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerZ9mbc4vSs=withCSS(Component,css,\"framer-ehcZZ\");export default FramerZ9mbc4vSs;FramerZ9mbc4vSs.displayName=\"Locale Selector\";FramerZ9mbc4vSs.defaultProps={height:40,width:124};addPropertyControls(FramerZ9mbc4vSs,{variant:{options:[\"Nrqv31Drj\",\"NZNxvbGkY\",\"Ds2B3ZVUy\",\"y3tjezZys\",\"tbjPFViSY\",\"JZhBwTqp1\",\"wPWVy3bPO\",\"R1ubmOvEp\"],optionTitles:[\"FR\",\"FR Hover\",\"EN\",\"EN Hover\",\"FR Tiny \",\"EN Tiny\",\"FR Tiny Hover\",\"EN Tiny Hover\"],title:\"Variant\",type:ControlType.Enum},gjfSUYxvL:{defaultValue:\"FR\",displayTextArea:false,title:\"Langue\",type:ControlType.String}});addFonts(FramerZ9mbc4vSs,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...MaterialFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZ9mbc4vSs\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"40\",\"framerIntrinsicWidth\":\"124\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"NZNxvbGkY\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"Ds2B3ZVUy\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"y3tjezZys\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"tbjPFViSY\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"JZhBwTqp1\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"wPWVy3bPO\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"R1ubmOvEp\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"gjfSUYxvL\\\":\\\"langue\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Z9mbc4vSs.map"],
  "mappings": "mcAAAA,IAAqL,IAAMC,GAAe,6EASvL,SAARC,GAA2BC,EAAM,CAAC,OAAqBC,EAAKC,GAAqB,CAAC,QAAsBD,EAAK,MAAM,CAAC,CAAC,EAAE,OAAqBA,EAAKE,GAAa,CAAC,GAAGH,CAAK,CAAC,CAAC,CAAC,CAAE,CAAE,SAASG,GAAaH,EAAM,CAAc,IAAMI,EAASC,GAAa,QAAQ,IAAIA,GAAa,OAAaC,EAAkBC,EAAO,IAAI,EAAQC,EAAWJ,GAAUJ,EAAM,QAAQ,IAAMA,EAAM,WAAW,GAAM,KAAK,GAA2BS,EAAI,OAAOT,EAAM,QAAQ,CAAC,IAAI,MAAMS,EAAIT,EAAM,OAAO,MAAM,IAAI,OAAOS,EAAIT,EAAM,QAAQ,MAAM,QAAQS,EAAIX,GAAe,KAAM,CAAgB,GAAK,CAACY,EAAQC,CAAU,EAAEC,GAAS,EAAK,EAA0BC,GAAU,IAAI,CAAKP,EAAkB,SAAeA,EAAkB,QAAQ,iBAAiB,QAAQ,IAAIK,EAAW,EAAI,CAAC,CAAE,EAAE,CAAC,CAAC,EAAEE,GAAU,IAAI,CAAKP,EAAkB,SAAeA,EAAkB,QAAQ,KAAK,GAAGN,EAAM,WAAW,CAAE,EAAE,CAACU,EAAQV,EAAM,QAAQ,CAAC,EAAE,IAAMc,EAAYP,EAAO,EAAsC,OAAAM,GAAU,IAAI,CAAC,GAAG,CAAAT,EAAgB,IAAGU,EAAY,UAAUd,EAAM,SAAS,CAAC,GAAG,CAACM,EAAkB,QAAQ,OAAUN,EAAM,WAAW,IAAMM,EAAkB,QAAQ,KAAK,EAAMN,EAAM,WAAW,IAAOM,EAAkB,QAAQ,MAAM,EAAIQ,EAAY,QAAQd,EAAM,SAAS,EAAE,CAACA,EAAM,QAAQ,CAAC,EACptCC,EAAK,mBAAmB,CAAC,IAAIQ,EAAI,IAAIH,EAAkB,SAASE,EAAW,KAAKR,EAAM,KAAK,GAAK,KAAK,MAAMA,EAAM,MAAM,GAAK,KAAK,SAASA,EAAM,SAAS,GAAK,KAAK,WAAWA,EAAM,WAAWA,EAAM,WAAW,KAAK,MAAMA,EAAM,MAAM,UAAUA,EAAM,UAAU,MAAM,CAAC,GAAGA,EAAM,MAAM,MAAM,OAAO,OAAO,MAAM,CAAC,EAAES,CAAG,CAAG,CAACV,GAAU,aAAa,CAAC,OAAOD,GAAe,SAAS,GAAK,WAAW,OAAO,SAAS,GAAM,UAAU,EAAE,MAAM,GAAM,KAAK,GAAK,MAAM,CAAC,EAAEC,GAAU,YAAY,aAAagB,EAAoBhB,GAAU,CAAC,QAAQ,CAAC,KAAKiB,EAAY,KAAK,wBAAwB,GAAK,MAAM,SAAS,QAAQ,CAAC,MAAM,MAAM,EAAE,aAAa,CAAC,MAAM,MAAM,CAAC,EAAE,OAAO,CAAC,KAAKA,EAAY,OAAO,MAAM,OAAO,YAAY,oBAAoB,OAAOhB,GAAOA,EAAM,UAAU,MAAM,EAAE,QAAQ,CAAC,KAAKgB,EAAY,KAAK,MAAM,OAAO,iBAAiB,CAAC,SAAS,MAAM,EAAE,OAAOhB,GAAOA,EAAM,UAAU,KAAK,EAAE,SAAS,CAAC,KAAKgB,EAAY,QAAQ,MAAM,WAAW,aAAa,EAAI,EAAE,WAAW,CAAC,KAAKA,EAAY,MAAM,MAAM,WAAW,aAAa,MAAM,EAAE,SAAS,CAAC,KAAKA,EAAY,QAAQ,MAAM,UAAU,EAAE,UAAU,CAAC,KAAKA,EAAY,KAAK,MAAM,YAAY,aAAa,IAAI,wBAAwB,GAAK,0BAA0B,aAAa,QAAQ,CAAC,IAAI,IAAI,EAAE,aAAa,CAAC,SAAS,SAAS,CAAC,EAAE,MAAM,CAAC,KAAKA,EAAY,QAAQ,MAAM,YAAY,EAAE,KAAK,CAAC,KAAKA,EAAY,QAAQ,MAAM,MAAM,EAAE,MAAM,CAAC,KAAKA,EAAY,OAAO,MAAM,QAAQ,aAAa,EAAE,IAAI,EAAE,IAAI,GAAG,KAAK,IAAI,KAAK,GAAG,eAAe,EAAI,EAAE,SAAS,CAAC,KAAKA,EAAY,OAAO,MAAM,WAAW,aAAa,EAAE,IAAI,EAAE,IAAI,IAAI,KAAK,EAAE,YAAY,oFAAoF,CAAC,CAAC,EAAgB,SAASd,GAAqB,CAAC,QAAAe,EAAQ,OAAAC,CAAM,EAAE,CAAC,GAAK,CAACC,EAAUC,CAAU,EAAQR,GAAS,EAAI,EAEpvD,OAAMC,GAAU,IAAI,CAAC,OAAO,iCAA8E,EAAE,KAAK,IAAI,CAACO,EAAW,EAAK,CAAE,CAAC,CAAE,EAAE,CAAC,CAAC,EAASD,EAAUF,EAAQC,CAAO,CCZjLG,ICAAC,ICAA,IAAAC,GAAA,GAAAC,GAAAD,GAAA,wBAAAE,GAAA,OAAAC,GAAA,OAAAC,GAAA,OAAAC,GAAA,OAAAC,GAAA,OAAAC,KAAAC,IAAO,IAAML,GAAG,OAAoBC,GAAG,WAAwBC,GAAG,UAAuBC,GAAG,OAAoBC,GAAG,eACtGL,GAAqB,CAAC,QAAU,CAAC,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC,EDA/X,IAAMO,GAAiB,CAAC,UAAUC,EAAe,EAAiB,SAARC,EAAmCC,EAAIC,EAAO,CAAC,KAAMA,GAAO,CAAC,IAAMC,EAAOL,GAAiBI,EAAO,EAAE,EAAE,GAAGC,EAAO,CAAC,IAAMC,EAAMD,EAAOF,CAAG,EAAE,GAAGG,EAAM,OAAOA,EAAOF,EAAOA,EAAO,SAAU,CEDnSG,IAC2b,IAAMC,GAAeC,EAASC,EAAS,EAAQC,GAAgB,CAAC,UAAU,CAAC,MAAM,EAAI,CAAC,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAAAD,GAAU,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,IAAI,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAmB,CAACC,EAAEC,IAAI,oBAAoBA,IAAUC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWL,GAAOE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,CAAK,GAAUC,GAAuB,CAACD,EAAMxB,IAAewB,EAAM,iBAAwBxB,EAAS,KAAK,GAAG,EAAEwB,EAAM,iBAAwBxB,EAAS,KAAK,GAAG,EAAU0B,GAA6BC,EAAW,SAASH,EAAMI,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAhC,EAAQ,GAAGiC,CAAS,EAAEf,GAASI,CAAK,EAAO,CAAC,YAAAY,EAAY,WAAAC,EAAW,oBAAAC,GAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,GAAgB,WAAAC,EAAW,SAAA3C,CAAQ,EAAE4C,EAAgB,CAAC,eAAe,YAAY,gBAAAjD,GAAgB,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQgD,EAAiBpB,GAAuBD,EAAMxB,CAAQ,EAAuC8C,EAAkBC,EAAGnD,GAAkB,GAAhD,CAAC,CAAuE,EAAQoD,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,EAAM,EAAQC,EAAkBC,EAAqB,EAAE,OAAoBrC,EAAKsC,EAAY,CAAC,GAAGpB,GAAUgB,EAAgB,SAAsBlC,EAAKC,GAAS,CAAC,QAAQjB,EAAS,QAAQ,GAAM,SAAsBgB,EAAKT,GAAW,CAAC,MAAMJ,GAAY,SAAsBa,EAAKuC,GAAK,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,OAAO,YAAY,aAAa,GAAM,aAAa,GAAK,SAAsBC,EAAMtC,EAAO,EAAE,CAAC,GAAGiB,EAAU,GAAGI,EAAgB,UAAU,GAAGQ,EAAGD,EAAkB,iBAAiBb,EAAUI,CAAU,mBAAmB,mBAAmB,iBAAiB,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIjB,GAAKoB,EAAK,MAAM,CAAC,GAAGhB,CAAK,EAAE,GAAGlC,GAAqB,CAAC,kBAAkB,CAAC,mBAAmB,MAAS,CAAC,EAAEsC,EAAYI,CAAc,EAAE,SAAS,CAAcxB,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,cAAc,iBAAiB2B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qEAAqE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,QAAQ,CAAC,EAAE,kBAAkBzC,GAAmB,SAAS,CAAC,kBAAkB,CAAC,QAAQ,CAAC,CAAC,EAAE,SAAsBY,EAAKyC,GAAS,CAAC,sBAAsB,GAAK,SAAsBzC,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,qBAAqB,OAAO,sBAAsB,gGAAgG,EAAE,SAAS,eAAe,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiB2B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeW,EAAMtC,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,iBAAiB,iBAAiB2B,EAAiB,SAAS,YAAY,SAAS,CAAc7B,EAAK0C,GAAM,CAAC,WAAW,CAAC,IAAI,iCAAiC,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQC,GAA2BP,GAAmB,GAAG,GAAG,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,OAAO,IAAI,qEAAqE,OAAO,oKAAoK,EAAE,UAAU,gBAAgB,mBAAmB,iBAAiB,iBAAiBP,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,CAAC,CAAC,EAAeW,EAAMtC,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,mBAAmB,iBAAiB2B,EAAiB,SAAS,YAAY,SAAS,CAAc7B,EAAK4C,EAA0B,CAAC,SAAsB5C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB2B,EAAiB,SAAS,sBAAsB,SAAsB7B,EAAKtB,GAAU,CAAC,SAAS,GAAK,WAAW,yBAAyB,SAAS,GAAM,UAAU,IAAI,OAAO,OAAO,MAAM,GAAM,GAAG,YAAY,SAAS,YAAY,KAAK,GAAK,SAAS,EAAE,MAAM,EAAE,QAAQ,MAAM,OAAO,6EAA6E,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAesB,EAAK6C,GAAI,CAAC,UAAU,iBAAiB,OAAO,WAAW,iBAAiBhB,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,wTAAwT,aAAa,WAAW,mBAAmB,EAAI,CAAC,EAAe7B,EAAK6C,GAAI,CAAC,UAAU,iBAAiB,OAAO,WAAW,iBAAiBhB,EAAiB,SAAS,kBAAkB,QAAQ,EAAE,IAAI,mTAAmT,aAAa,WAAW,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe7B,EAAK4C,EAA0B,CAAC,SAAsB5C,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB2B,EAAiB,SAAS,sBAAsB,MAAM,CAAC,QAAQ,EAAE,OAAO,GAAG,EAAE,SAAS,CAAC,kBAAkB,CAAC,QAAQ,CAAC,CAAC,EAAE,SAAsB7B,EAAKtB,GAAU,CAAC,SAAS,GAAK,WAAW,yBAAyB,SAAS,GAAM,UAAU,IAAI,OAAO,OAAO,MAAM,GAAM,GAAG,YAAY,SAAS,YAAY,KAAK,GAAK,SAAS,EAAE,MAAM,EAAE,QAAQ,MAAM,OAAO,2EAA2E,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQoE,GAAI,CAAC,kFAAkF,kFAAkF,6IAA6I,yWAAyW,gHAAgH,wIAAwI,sIAAsI,2IAA2I,wLAAwL,oLAAoL,oLAAoL,+LAA+L,iXAAiX,mIAAmI,0EAA0E,kFAAkF,EAQ3jTC,GAAgBC,EAAQtC,GAAUoC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,iBAAiBA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,EAAE,EAAEG,GAASH,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGvE,EAAc,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECT10D2E,ICAAC,ICAAC,IAA4C,SAASC,GAAe,CAAC,MAAMC,EAAE,MAAMC,EAAE,EAAE,aAAaC,EAAE,GAAG,SAASC,EAAE,EAAE,WAAWC,EAAE,EAAE,YAAYC,EAAE,EAAE,UAAUC,EAAE,EAAE,MAAMC,EAAE,MAAM,EAAE,CAAC,EAAE,CAAC,IAAIC,EAAE,CAAC,EAAE,OAAOR,GAAGQ,EAAE,uBAAuB,EAAER,EAAEQ,EAAE,YAAYD,EAAEL,GAAGM,EAAE,eAAeL,EAAEK,EAAE,iBAAiBJ,EAAEI,EAAE,kBAAkBH,EAAEG,EAAE,gBAAgBF,IAAIE,EAAE,eAAeP,EAAEO,EAAE,iBAAiBP,EAAEO,EAAE,kBAAkBP,EAAEO,EAAE,gBAAgBP,IAAIO,EAAE,OAAO,OAAOA,CAAE,CAAQ,IAAMC,GAAe,CAAC,MAAM,CAAC,KAAKC,EAAE,MAAM,aAAa,MAAM,EAAE,MAAM,CAAC,KAAKA,EAAE,YAAY,UAAU,eAAe,aAAa,CAAC,QAAQ,gBAAgB,EAAE,UAAU,CAAC,WAAW,aAAa,cAAc,WAAW,EAAE,YAAY,CAAC,IAAI,IAAI,IAAI,GAAG,EAAE,aAAa,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,KAAKA,EAAE,KAAK,QAAQ,CAAC,QAAQ,SAAS,SAAS,QAAQ,EAAE,aAAa,CAAC,QAAQ,SAAS,SAAS,QAAQ,EAAE,aAAa,OAAO,CAAC,ECA/0BC,IAAuC,SAASC,GAAc,CAAC,MAAAC,EAAM,MAAAC,EAAM,MAAAC,EAAM,OAAAC,CAAM,EAAE,CAAC,EAAE,CAAC,IAAMC,EAAO,CAAC,EAAE,OAAGJ,IAAOI,EAAO,wBAAwB,EAAE,GAAGH,OAAWC,KAASF,IAAQI,EAAO,+BAA+B,EAAE,GAAGD,OAAmBC,CAAO,CAAQ,IAAMC,GAAc,CAAC,MAAM,CAAC,KAAKC,EAAY,MAAM,aAAa,MAAM,EAAE,MAAM,CAAC,KAAKA,EAAY,OAAO,eAAe,GAAK,aAAa,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,KAAKA,EAAY,KAAK,QAAQ,CAAC,QAAQ,SAAS,SAAS,QAAQ,EAAE,aAAa,CAAC,QAAQ,SAAS,SAAS,QAAQ,EAAE,aAAa,OAAO,EAAE,OAAO,CAAC,KAAKA,EAAY,OAAO,eAAe,EAAI,CAAC,ECA3lBC,IAAuC,SAASC,GAAc,CAAC,UAAAC,EAAU,UAAAC,EAAU,YAAAC,CAAW,EAAE,CAAC,EAAE,CAAC,MAAM,CAAC,kCAAkCF,EAAU,uBAAuBC,EAAU,8BAA8BC,CAAW,CAAE,CAAQ,IAAMC,GAAc,CAAC,UAAU,CAAC,KAAKC,EAAY,MAAM,MAAM,OAAO,SAAS,EAAI,EAAE,UAAU,CAAC,KAAKA,EAAY,MAAM,MAAM,OAAO,SAAS,EAAI,EAAE,YAAY,CAAC,KAAKA,EAAY,MAAM,MAAM,SAAS,SAAS,EAAI,CAAC,ECA7bC,IAAuC,SAASC,GAAgB,CAAC,QAAAC,EAAQ,EAAE,eAAAC,EAAe,GAAM,WAAAC,EAAW,EAAE,aAAAC,EAAa,EAAE,cAAAC,EAAc,EAAE,YAAAC,EAAY,CAAC,EAAE,CAAC,EAAE,CAAC,OAAGJ,EAAsB,CAAC,WAAWC,EAAW,aAAaC,EAAa,cAAcC,EAAc,YAAYC,CAAW,EAAc,CAAC,WAAWL,EAAQ,aAAaA,EAAQ,cAAcA,EAAQ,YAAYA,CAAO,CAAG,CAAQ,IAAMM,GAAgB,CAAC,QAAQ,CAAC,KAAKC,EAAY,YAAY,UAAU,iBAAiB,aAAa,CAAC,UAAU,kBAAkB,EAAE,UAAU,CAAC,aAAa,eAAe,gBAAgB,aAAc,EAAE,YAAY,CAAC,IAAI,IAAI,IAAI,GAAG,EAAE,aAAa,GAAG,IAAI,CAAC,CAAC,ECAtoBC,IAAuC,SAASC,GAAe,CAAC,OAAAC,EAAO,EAAE,gBAAAC,EAAgB,GAAM,cAAAC,EAAc,EAAE,eAAAC,EAAe,EAAE,kBAAAC,EAAkB,EAAE,iBAAAC,EAAiB,CAAC,EAAE,CAAC,EAAE,CAAC,IAAMC,EAAO,CAAC,EAAE,OAAGL,GAAiBK,EAAO,oBAAoBJ,EAAcI,EAAO,qBAAqBH,EAAeG,EAAO,wBAAwBF,EAAkBE,EAAO,uBAAuBD,IAAuBC,EAAO,oBAAoBN,EAAOM,EAAO,qBAAqBN,EAAOM,EAAO,wBAAwBN,EAAOM,EAAO,uBAAuBN,GAAeM,CAAO,CAAQ,IAAMC,GAAe,CAAC,OAAO,CAAC,KAAKC,EAAY,YAAY,UAAU,mBAAmB,aAAa,CAAC,SAAS,iBAAiB,EAAE,UAAU,CAAC,gBAAgB,iBAAiB,oBAAoB,kBAAmB,EAAE,YAAY,CAAC,KAAK,KAAK,KAAK,IAAI,EAAE,aAAa,GAAG,IAAI,CAAC,CAAC,ELCrG,IAAMC,EAAU,uBAA8G,IAAIC,IAAU,SAASA,EAAS,CAACA,EAAS,QAAW,UAAUA,EAAS,OAAU,QAAS,GAAGA,KAAWA,GAAS,CAAC,EAAE,EAAE,SAASC,GAAK,CAAC,KAAAC,EAAK,MAAAC,EAAM,MAAAC,EAAM,KAAAC,CAAI,EAAE,CAAC,OAAGH,IAAO,UAAUE,EAA2BE,EAAK,MAAM,CAAC,GAAGF,EAAM,MAAMC,EAAK,OAAOA,CAAI,CAAC,EAAuBC,EAAK,MAAM,CAAC,MAAM,6BAA6B,QAAQ,cAAc,MAAMD,EAAK,OAAOA,EAAK,KAAKF,EAAM,SAAsBG,EAAK,OAAO,CAAC,EAAE,+gBAA+gB,CAAC,CAAC,CAAC,CAAE,CAAC,IAAIC,IAAW,SAASA,EAAU,CAACA,EAAU,QAAW,UAAUA,EAAU,OAAU,QAAS,GAAGA,KAAYA,GAAU,CAAC,EAAE,EAAE,SAASC,GAAM,CAAC,KAAAN,EAAK,MAAAC,EAAM,MAAAC,EAAM,KAAAC,CAAI,EAAE,CAAC,OAAGH,IAAO,UAAUE,EAA2BE,EAAK,MAAM,CAAC,GAAGF,EAAM,MAAMC,EAAK,OAAOA,CAAI,CAAC,EAAuBC,EAAK,MAAM,CAAC,MAAM,6BAA6B,QAAQ,YAAY,MAAMD,EAAK,OAAOA,EAAK,SAAsBC,EAAK,OAAO,CAAC,EAAE,2BAA2B,KAAK,OAAO,OAAOH,EAAM,YAAY,IAAI,cAAc,QAAQ,eAAe,OAAO,CAAC,CAAC,CAAC,CAAE,CAMlxE,IAAMM,GAAeC,EAAQ,CAAC,CAAC,KAAAC,EAAK,UAAAC,EAAU,UAAAC,EAAU,KAAAC,EAAK,MAAAC,EAAM,QAAQ,CAAC,MAAAC,EAAM,IAAAC,EAAI,OAAAC,EAAO,MAAAC,EAAM,MAAAC,CAAK,EAAE,MAAAC,EAAM,GAAGC,EAAK,IAAI,CAAC,IAAMC,EAAGC,EAAM,EAAO,CAAC,aAAAC,EAAa,QAAAC,EAAQ,UAAAC,EAAS,EAAEC,EAAc,EAAE,IAAIC,EAAiB,IAAMC,GAAgBD,EAAmEJ,GAAa,MAAM,MAAMI,IAAmB,OAAOA,EAAiB,UAAe,CAACE,EAAmBC,CAAqB,EAAEC,GAASH,CAAc,EAGrc,CAACI,EAAiBC,CAAmB,EAAEF,GAASH,CAAc,EAAQM,EAAeV,EAAQ,KAAKW,GAAQA,EAAO,KAAKH,CAAgB,EACxIH,IAAqBD,IAAgBE,EAAsBF,CAAc,EAAKI,IAAmBJ,GAAgBK,EAAoBL,CAAc,GAAI,SAASQ,EAAaC,EAAM,CAAC,IAAMC,GAASD,EAAM,OAAO,MAAMJ,EAAoBK,EAAQ,EAAE,IAAMH,EAAOX,EAAQ,KAAKW,IAAQA,GAAO,KAAKG,EAAQ,EAAEb,GAAUU,CAAM,CAAE,CAAC,IAAII,GAAqB,OAAoBC,EAAM,MAAM,CAAC,UAAUC,EAAU,MAAMtB,EAAM,SAAS,CAAcf,EAAK,QAAQ,CAAC,QAAQiB,EAAG,SAAS,iBAAiB,CAAC,EAAejB,EAAK,SAAS,CAAC,GAAGiB,EAAG,MAAMW,EAAiB,SAASI,EAG3iB,aAAa,MAAM,SAASZ,EAAQ,IAAIW,GAAqB/B,EAAK,SAAS,CAAC,MAAM+B,EAAO,GAAG,SAASA,EAAO,IAAI,EAAEA,EAAO,EAAE,CAAC,CAAC,CAAC,EAAeK,EAAM,MAAM,CAAC,UAAU,QAAQ,MAAM,CAAC,GAAG/B,EAAK,4BAA4BC,EAAU,iBAAiBC,EAAU,GAAG+B,GAAgBtB,EAAK,EAAE,GAAGuB,GAAevB,EAAK,EAAE,GAAGwB,GAAe5B,CAAM,EAAE,GAAG6B,GAAc5B,CAAK,EAAE,GAAG6B,GAAc5B,CAAK,EAAE,IAAAH,CAAG,EAAE,SAAS,CAACH,GAAmBR,EAAK,MAAM,CAAC,UAAU,OAAO,SAAsBA,EAAKL,GAAK,CAAC,GAAGa,CAAI,CAAC,CAAC,CAAC,EAAEE,GAAoBV,EAAK,MAAM,CAAC,UAAU,QAAQ,UAAUmC,GAA2EL,GAAe,QAAQ,MAAMK,KAAuB,OAAOA,GAAqB,SAAS,CAAC,EAAE1B,GAAoBT,EAAK,MAAM,CAAC,UAAU,QAAQ,SAAsBA,EAAKE,GAAM,CAAC,GAAGO,CAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,EAAE,CAAC;AAAA,eACnyB4B;AAAA;AAAA;AAAA,UAGL;AAAA,eACKA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,UAUL;AAAA,eACKA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,UAWL;AAAA,eACKA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,UAWL;AAAA,eACKA;AAAA;AAAA;AAAA;AAAA,UAIL;AAAA,eACKA;AAAA;AAAA;AAAA;AAAA;AAAA,UAKL;AAAA,eACKA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,UAML;AAAA,eACKA,aAAqBA;AAAA;AAAA;AAAA;AAAA,SAI3B,CAAC,EAAElC,GAAe,YAAY,kBAAkBwC,EAAoBxC,GAAe,CAAC,KAAK,CAClG,KAAKyC,EAAY,KAAK,SAAS,WAAW,gBAAgB,aAAa,aAAa,CAAC,SAAS,GAAG,WAAW,OAAO,CAAC,EAAE,UAAU,CAAC,KAAKA,EAAY,MAAM,MAAM,OAAO,SAAS,GAAK,aAAa,MAAM,EAAE,UAAU,CAAC,KAAKA,EAAY,MAAM,MAAM,OAAO,aAAa,MAAM,EAAE,GAAGC,GAAgB,GAAGC,GAAe,KAAK,CAAC,KAAKF,EAAY,OAAO,YAAY,cAAc,SAAS,GAAK,SAAS,CAAC,KAAK,CAAC,KAAKA,EAAY,KAAK,MAAM,OAAO,QAAQ,OAAO,OAAOlD,EAAQ,EAAE,aAAa,CAAC,UAAU,QAAQ,EAAE,wBAAwB,GAAK,aAAa,SAAS,EAAE,MAAM,CAAC,KAAKkD,EAAY,MAAM,wBAAwB,GAAK,aAAa,OAAO,OAAO5B,GAAOA,EAAM,OAAO,SAAS,EAAE,MAAM,CAAC,KAAK4B,EAAY,gBAAgB,MAAM,OAAO,iBAAiB,CAAC,MAAM,MAAM,KAAK,EAAE,OAAO5B,GAAOA,EAAM,OAAO,QAAQ,EAAE,KAAK,CAAC,KAAK4B,EAAY,OAAO,eAAe,GAAK,aAAa,EAAE,CAAC,CAAC,EAAE,MAAM,CAAC,KAAKA,EAAY,OAAO,YAAY,cAAc,SAAS,GAAK,SAAS,CAAC,KAAK,CAAC,KAAKA,EAAY,KAAK,MAAM,OAAO,QAAQ,OAAO,OAAO3C,EAAS,EAAE,aAAa,CAAC,UAAU,QAAQ,EAAE,wBAAwB,GAAK,aAAa,SAAS,EAAE,MAAM,CAAC,KAAK2C,EAAY,MAAM,wBAAwB,GAAK,aAAa,OAAO,OAAO5B,GAAOA,EAAM,OAAO,SAAS,EAAE,MAAM,CAAC,KAAK4B,EAAY,gBAAgB,MAAM,OAAO,iBAAiB,CAAC,MAAM,MAAM,KAAK,EAAE,OAAO5B,GAAOA,EAAM,OAAO,QAAQ,EAAE,KAAK,CAAC,KAAK4B,EAAY,OAAO,eAAe,GAAK,aAAa,EAAE,CAAC,EAAE,aAAa,CAAC,CAAC,EAAE,QAAQ,CAAC,KAAKA,EAAY,OAAO,MAAM,UAAU,YAAY,gBAAgB,SAAS,CAAC,MAAM,CAAC,KAAKA,EAAY,QAAQ,aAAa,EAAI,EAAE,IAAI,CAAC,KAAKA,EAAY,OAAO,eAAe,GAAK,aAAa,CAAC,EAAE,OAAO,CAAC,KAAKA,EAAY,OAAO,YAAY,eAAe,SAAS,GAAK,SAASG,EAAc,EAAE,MAAM,CAAC,KAAKH,EAAY,OAAO,YAAY,eAAe,SAAS,GAAK,SAASI,EAAa,EAAE,MAAM,CAAC,KAAKJ,EAAY,OAAO,YAAY,eAAe,SAASK,EAAa,CAAC,CAAC,CAAC,CAAC,EAAE,IAAOC,GAAQ/C,GM7Ev4DgD,IACymB,IAAMC,GAAcC,EAASC,EAAQ,EAAQC,GAAW,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,iBAAiB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAAAD,GAAU,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,OAAO,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWL,GAAOE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,WAAW,YAAY,gBAAgB,YAAY,UAAU,YAAY,WAAW,YAAY,WAAW,YAAY,gBAAgB,YAAY,GAAG,YAAY,GAAG,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,OAAAC,EAAO,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,UAAUF,GAAQE,EAAM,WAAW,KAAK,QAAQN,GAAwBM,EAAM,OAAO,GAAGA,EAAM,SAAS,WAAW,GAAUC,GAAuB,CAACD,EAAMvB,IAAeuB,EAAM,iBAAwBvB,EAAS,KAAK,GAAG,EAAEuB,EAAM,iBAAwBvB,EAAS,KAAK,GAAG,EAAUyB,GAA6BC,EAAW,SAASH,EAAMI,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAA/B,EAAQ,UAAAgC,EAAU,GAAGC,CAAS,EAAEjB,GAASK,CAAK,EAAO,CAAC,YAAAa,EAAY,WAAAC,GAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,GAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAA3C,CAAQ,EAAE4C,EAAgB,CAAC,WAAAjD,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQgD,EAAiBrB,GAAuBD,EAAMvB,CAAQ,EAA4D8C,EAAkBC,EAAGnD,GAAkB,GAArE,CAAaoC,EAAS,CAAuE,EAAQgB,EAAWC,EAAO,IAAI,EAAQC,EAAY,IAAQ,EAAC,YAAY,YAAY,YAAY,WAAW,EAAE,SAASd,CAAW,EAAmCe,GAAa,IAAQ,GAAC,YAAY,YAAY,YAAY,WAAW,EAAE,SAASf,CAAW,EAAmCgB,EAAa,IAAQ,EAAC,YAAY,YAAY,YAAY,WAAW,EAAE,SAAShB,CAAW,EAAmCiB,GAAsBC,EAAM,EAAQC,EAAkBC,EAAqB,EAAE,OAAoB3C,EAAK4C,EAAY,CAAC,GAAGxB,GAAUoB,GAAgB,SAAsBxC,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBuD,EAAM3C,EAAO,IAAI,CAAC,GAAGoB,EAAU,GAAGI,EAAgB,UAAUQ,EAAGD,EAAkB,gBAAgBd,EAAUK,EAAU,EAAE,mBAAmB,KAAK,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIlB,GAAKqB,EAAK,MAAM,CAAC,gBAAgB,wEAAwE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,GAAGjB,CAAK,EAAE,GAAGjC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,IAAI,EAAE,UAAU,CAAC,mBAAmB,SAAS,EAAE,UAAU,CAAC,mBAAmB,UAAU,EAAE,UAAU,CAAC,mBAAmB,eAAe,EAAE,UAAU,CAAC,mBAAmB,UAAU,EAAE,UAAU,CAAC,mBAAmB,eAAe,EAAE,UAAU,CAAC,mBAAmB,UAAU,CAAC,EAAEsC,EAAYI,CAAc,EAAE,SAAS,CAAckB,EAAM3C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,iBAAiB8B,EAAiB,SAAS,YAAY,SAAS,CAACK,EAAY,GAAgBrC,EAAK8C,GAAM,CAAC,WAAW,CAAC,IAAI,qDAAqD,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQC,GAA2BL,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,IAAI,KAAKA,GAAmB,QAAQ,IAAI,IAAI,GAAG,GAAG,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,mBAAmB,sBAAsB,iBAAiBV,EAAiB,SAAS,YAAY,GAAG/C,GAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,qDAAqD,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQ8D,GAA2BL,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,IAAI,KAAKA,GAAmB,QAAQ,IAAI,IAAI,GAAG,GAAG,MAAMA,GAAmB,QAAQ,IAAI,IAAI,EAAE,GAAG,GAAG,EAAE,EAAE,EAAE,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,qDAAqD,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQK,GAA2BL,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,IAAI,KAAKA,GAAmB,QAAQ,IAAI,IAAI,GAAG,GAAG,MAAMA,GAAmB,QAAQ,IAAI,IAAI,EAAE,GAAG,GAAG,EAAE,EAAE,EAAE,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,CAAC,CAAC,EAAEnB,EAAYI,CAAc,CAAC,CAAC,EAAe3B,EAAKgD,EAA0B,CAAC,SAAsBhD,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKnB,GAAS,CAAC,MAAM,qEAAqE,OAAO,OAAO,WAAW,OAAO,cAAc,WAAW,YAAY,SAAS,WAAW,SAAS,WAAW,SAAS,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEyD,GAAa,GAAgBtC,EAAK8C,GAAM,CAAC,WAAW,CAAC,IAAI,yEAAyE,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,iBAAiBd,EAAiB,SAAS,YAAY,GAAG/C,GAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,yEAAyE,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQ8D,GAA2BL,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,IAAI,KAAKA,GAAmB,QAAQ,IAAI,IAAI,GAAG,GAAG,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,IAAI,qEAAqE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,yEAAyE,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQK,GAA2BL,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,IAAI,KAAKA,GAAmB,QAAQ,IAAI,IAAI,GAAG,GAAG,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,IAAI,qEAAqE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,yEAAyE,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQK,GAA2BL,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,IAAI,KAAKA,GAAmB,QAAQ,IAAI,IAAI,GAAG,GAAG,MAAMA,GAAmB,QAAQ,IAAI,IAAI,EAAE,GAAG,GAAG,EAAE,EAAE,EAAE,YAAY,IAAI,WAAW,IAAI,IAAI,qEAAqE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,yEAAyE,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQK,GAA2BL,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,IAAI,KAAKA,GAAmB,QAAQ,IAAI,IAAI,GAAG,GAAG,MAAMA,GAAmB,QAAQ,IAAI,IAAI,EAAE,GAAG,GAAG,EAAE,EAAE,EAAE,YAAY,IAAI,WAAW,IAAI,IAAI,qEAAqE,CAAC,CAAC,EAAEnB,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEY,EAAa,GAAgBvC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiB8B,EAAiB,SAAS,YAAY,SAAsBhC,EAAKiD,GAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,IAAI,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,KAAKX,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAerB,EAAKgD,EAA0B,CAAC,SAAsBhD,EAAKE,EAAO,IAAI,CAAC,UAAU,yBAAyB,iBAAiB8B,EAAiB,SAAS,sBAAsB,MAAM,CAAC,OAAO,EAAE,EAAE,SAAsBhC,EAAKnB,GAAS,CAAC,MAAM,qEAAqE,OAAO,OAAO,WAAW,OAAO,cAAc,eAAe,YAAY,UAAU,WAAW,SAAS,WAAW,SAAS,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQqE,GAAI,CAAC,kFAAkF,gFAAgF,0UAA0U,2RAA2R,4KAA4K,mKAAmK,4KAA4K,gRAAgR,gHAAgH,uGAAuG,g2BAAg2B,yPAAyP,iPAAiP,6PAA6P,GAAeA,EAAG,EASn7ZC,GAAgBC,EAAQxC,GAAUsC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,kBAAkBA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,GAAG,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,KAAK,WAAW,KAAK,WAAW,WAAW,UAAU,gBAAgB,eAAe,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,KAAK,gBAAgB,GAAM,MAAM,SAAS,KAAKA,EAAY,MAAM,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGxE,GAAc,GAAG8E,GAAoCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,EPT5sD,IAAMC,GAAoBC,EAASC,EAAc,EAAQC,GAAqBF,EAASG,EAAe,EAAQC,GAAgB,CAAC,UAAU,CAAC,MAAM,EAAI,EAAE,UAAU,CAAC,MAAM,EAAI,EAAE,UAAU,CAAC,MAAM,EAAI,EAAE,UAAU,CAAC,MAAM,EAAI,CAAC,EAAQC,GAAW,CAAC,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,iBAAiB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAAAD,GAAU,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,OAAO,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWL,GAAOE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,UAAU,YAAY,UAAU,YAAY,GAAG,YAAY,GAAG,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,QAAQL,GAAwBK,EAAM,OAAO,GAAGA,EAAM,SAAS,WAAW,GAAUC,GAAuB,CAACD,EAAMtB,IAAesB,EAAM,iBAAwBtB,EAAS,KAAK,GAAG,EAAEsB,EAAM,iBAAwBtB,EAAS,KAAK,GAAG,EAAUwB,GAA6BC,EAAW,SAASH,EAAMI,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAA9B,EAAQ,GAAG+B,CAAS,EAAEf,GAASI,CAAK,EAAO,CAAC,YAAAY,EAAY,WAAAC,EAAW,oBAAAC,GAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,GAAgB,WAAAC,EAAW,SAAAzC,CAAQ,EAAE0C,EAAgB,CAAC,WAAA/C,GAAW,eAAe,YAAY,gBAAAD,GAAgB,QAAAQ,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ8C,EAAiBpB,GAAuBD,EAAMtB,CAAQ,EAAuC4C,EAAkBC,EAAGjD,GAAkB,GAAhD,CAAC,CAAuE,EAAQkD,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,EAAM,EAAQC,EAAkBC,EAAqB,EAAE,OAAoBtC,EAAKuC,EAAY,CAAC,GAAGpB,GAAUgB,EAAgB,SAAsBnC,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBkD,EAAMtC,EAAO,IAAI,CAAC,GAAGkB,EAAU,GAAGI,EAAgB,UAAUQ,EAAGD,EAAkB,iBAAiBb,EAAUI,CAAU,EAAE,mBAAmB,KAAK,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIjB,GAAKoB,EAAK,MAAM,CAAC,GAAGhB,CAAK,EAAE,GAAGhC,GAAqB,CAAC,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,UAAU,CAAC,mBAAmB,SAAS,EAAE,UAAU,CAAC,mBAAmB,SAAS,EAAE,UAAU,CAAC,mBAAmB,IAAI,CAAC,EAAEoC,EAAYI,CAAc,EAAE,SAAS,CAAczB,EAAKyC,EAA0B,CAAC,SAAsBzC,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB4B,EAAiB,SAAS,sBAAsB,SAAsB9B,EAAKtB,GAAe,CAAC,KAAK,CAAC,WAAW,sBAAsB,SAAS,OAAO,UAAU,SAAS,cAAc,MAAM,WAAW,OAAO,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,CAAC,MAAM,CAAC,MAAM,mBAAmB,OAAO,EAAE,MAAM,QAAQ,MAAM,CAAC,EAAE,IAAI,EAAE,MAAM,EAAK,EAAE,QAAQ,EAAE,cAAc,EAAE,YAAY,EAAE,eAAe,GAAM,aAAa,EAAE,WAAW,EAAE,OAAO,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,iBAAiB,GAAM,cAAc,EAAE,eAAe,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,UAAU,eAAe,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAesB,EAAKyC,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAQ,GAAGJ,GAAmB,GAAG,IAAI,IAAIA,GAAmB,QAAQ,IAAI,EAAE,IAAI,GAAG,GAAGpD,GAAqB,CAAC,kBAAkB,CAAC,MAAM,MAAS,EAAE,kBAAkB,CAAC,MAAM,MAAS,EAAE,UAAU,CAAC,MAAM,MAAS,EAAE,UAAU,CAAC,MAAM,MAAS,CAAC,EAAEoC,EAAYI,CAAc,EAAE,SAAsBzB,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB4B,EAAiB,SAAS,sBAAsB,SAAsB9B,EAAKpB,GAAgB,CAAC,UAAU,KAAK,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,GAAGK,GAAqB,CAAC,kBAAkB,CAAC,QAAQ,WAAW,EAAE,kBAAkB,CAAC,QAAQ,WAAW,EAAE,kBAAkB,CAAC,QAAQ,WAAW,EAAE,kBAAkB,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,MAAM,CAAC,OAAO,MAAM,EAAE,QAAQ,WAAW,EAAE,UAAU,CAAC,MAAM,CAAC,OAAO,MAAM,EAAE,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAU,KAAK,QAAQ,WAAW,CAAC,EAAEoC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQiB,GAAI,CAAC,kFAAkF,kFAAkF,iRAAiR,4MAA4M,yGAAyG,+WAA+W,oIAAoI,+EAA+E,6EAA6E,EAQtkNC,GAAgBC,EAAQjC,GAAU+B,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,SAASA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,GAAG,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,KAAK,KAAK,UAAU,SAAS,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGnE,GAAoB,GAAGG,EAAoB,EAAE,CAAC,6BAA6B,EAAI,CAAC,EJR3rC,IAAMsE,GAAaC,EAASC,CAAO,EAAQC,GAAmBF,EAASG,EAAa,EAAQC,GAAYJ,EAASK,EAAM,EAAQC,GAAW,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,iBAAiB,EAAE,SAASC,EAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAAAD,GAAU,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,OAAO,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,QAAQ,EAAQC,GAAY,CAAC,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAgB,CAACC,EAAMC,IAAe,CAAC,OAAOD,EAAM,CAAC,IAAI,UAAU,MAAM,YAAY,IAAI,YAAY,MAAM,YAAY,QAAQ,MAAM,WAAY,CAAC,EAAQE,GAAiB,CAACF,EAAMC,IAAe,CAAC,OAAOD,EAAM,CAAC,IAAI,UAAU,MAAM,YAAY,IAAI,YAAY,MAAM,YAAY,QAAQ,MAAM,WAAY,CAAC,EAAQG,GAAW,CAAC,CAAC,MAAAH,EAAM,SAAAI,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWR,GAAOK,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,kBAAkB,YAAY,iBAAiB,YAAY,oBAAoB,YAAY,eAAe,YAAY,0BAA0B,YAAY,qBAAqB,YAAY,iBAAiB,YAAY,QAAQ,YAAY,OAAO,YAAY,OAAO,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,QAAQL,GAAwBK,EAAM,OAAO,GAAGA,EAAM,SAAS,WAAW,GAAUC,GAAuB,CAACD,EAAM1B,IAAe0B,EAAM,iBAAwB1B,EAAS,KAAK,GAAG,EAAE0B,EAAM,iBAAwB1B,EAAS,KAAK,GAAG,EAAU4B,GAA6BC,EAAW,SAASH,EAAMI,EAAI,CAAC,GAAK,CAAC,aAAAvB,EAAa,UAAAwB,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAjC,EAAQ,GAAGkC,CAAS,EAAEd,GAASI,CAAK,EAAO,CAAC,YAAAW,EAAY,WAAAC,EAAW,oBAAAC,GAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,GAAgB,WAAAC,EAAW,SAAA5C,CAAQ,EAAE6C,EAAgB,CAAC,WAAAlD,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQiD,EAAiBnB,GAAuBD,EAAM1B,CAAQ,EAAO,CAAC,sBAAA+C,EAAsB,MAAAC,CAAK,EAAEC,GAAyBZ,CAAW,EAAQa,EAAYH,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQQ,EAAYL,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQS,EAAaN,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQU,GAAaP,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQW,EAAYR,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAuCY,EAAkBC,EAAG7D,GAAkB,GAAhD,CAAC,CAAuE,EAAQ8D,GAAWC,EAAO,IAAI,EAAQC,GAAY,IAAQ,EAAC,YAAY,YAAY,YAAY,WAAW,EAAE,SAASvB,CAAW,EAAmCwB,GAAOC,GAAU,EAAQC,GAAa,IAAQ,GAAC,YAAY,YAAY,YAAY,WAAW,EAAE,SAAS1B,CAAW,EAAmC2B,GAAa,IAAQ,GAAC,YAAY,WAAW,EAAE,SAAS3B,CAAW,EAAmC4B,GAAa,IAAQ,EAAC,YAAY,WAAW,EAAE,SAAS5B,CAAW,EAAmC6B,GAAsBC,EAAM,EAAQC,EAAkBC,EAAqB,EAAE,OAAoBpD,EAAKqD,EAAY,CAAC,GAAGnC,GAAU+B,GAAgB,SAAsBjD,EAAKC,GAAS,CAAC,QAAQlB,EAAS,QAAQ,GAAM,SAAsBiB,EAAKR,GAAW,CAAC,MAAMN,GAAY,GAAGL,EAAqB,CAAC,UAAU,CAAC,MAAMM,EAAW,EAAE,UAAU,CAAC,MAAMA,EAAW,EAAE,UAAU,CAAC,MAAMA,EAAW,EAAE,UAAU,CAAC,MAAMA,EAAW,CAAC,EAAEiC,EAAYI,CAAc,EAAE,SAAsB8B,EAAMpD,EAAO,IAAI,CAAC,GAAGiB,EAAU,GAAGI,EAAgB,UAAUiB,EAAGD,EAAkB,gBAAgBtB,EAAUI,CAAU,EAAE,mBAAmB,UAAU,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIhB,GAAK4B,GAAK,MAAM,CAAC,eAAe,aAAa,gBAAgB,2BAA2B,uBAAuB,EAAE,wBAAwB,EAAE,UAAU,uMAAuM,qBAAqB,aAAa,GAAGzB,CAAK,EAAE,SAAS,CAAC,UAAU,CAAC,uBAAuB,EAAE,wBAAwB,CAAC,EAAE,UAAU,CAAC,uBAAuB,EAAE,wBAAwB,CAAC,EAAE,UAAU,CAAC,uBAAuB,EAAE,wBAAwB,CAAC,EAAE,UAAU,CAAC,uBAAuB,EAAE,wBAAwB,CAAC,EAAE,UAAU,CAAC,uBAAuB,EAAE,wBAAwB,CAAC,EAAE,UAAU,CAAC,uBAAuB,EAAE,wBAAwB,CAAC,CAAC,EAAE,GAAGnC,EAAqB,CAAC,UAAU,CAAC,mBAAmB,cAAc,EAAE,UAAU,CAAC,mBAAmB,QAAQ,EAAE,UAAU,CAAC,mBAAmB,oBAAoB,EAAE,UAAU,CAAC,mBAAmB,yBAAyB,EAAE,UAAU,CAAC,mBAAmB,mBAAmB,EAAE,UAAU,CAAC,mBAAmB,iBAAiB,EAAE,UAAU,CAAC,mBAAmB,gBAAgB,EAAE,UAAU,CAAC,mBAAmB,gBAAgB,EAAE,UAAU,CAAC,mBAAmB,QAAQ,CAAC,EAAEuC,EAAYI,CAAc,EAAE,SAAS,CAACmB,GAAY,GAAgBW,EAAMpD,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,eAAe,iBAAiB2B,EAAiB,SAAS,YAAY,SAAS,CAAc7B,EAAKuD,GAAK,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,aAAa,GAAK,SAAsBvD,EAAKwD,GAAI,CAAC,GAAG,IAAI,UAAU,+BAA+B,mBAAmB,iBAAiB,OAAO,WAAW,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,4hSAA4hS,aAAa,WAAW,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeyB,EAAMpD,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,iBAAiB2B,EAAiB,SAAS,YAAY,SAAS,CAAc7B,EAAKyD,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASC,GAA4B1D,EAAK2D,EAA0B,CAAC,OAAO,GAAG,GAAGR,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,IAAI,GAAG,IAAI,GAAG,EAAE,EAAE,GAAGtE,EAAqB,CAAC,UAAU,CAAC,GAAGsE,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,IAAI,GAAG,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,IAAI,GAAG,EAAE,CAAC,CAAC,EAAE/B,EAAYI,CAAc,EAAE,SAAsBxB,EAAK4D,EAA8B,CAAC,UAAU,0BAA0B,iBAAiB/B,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB7B,EAAK3B,EAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU,GAAK,UAAU,GAAM,SAAS,YAAY,UAAU,GAAM,UAAU,OAAO,UAAUqF,EAAc,CAAC,EAAE,UAAU,OAAO,UAAU,MAAM,QAAQ,YAAY,UAAU,GAAM,MAAM,OAAO,UAAUG,EAAkB,KAAKvE,CAAY,GAAG,UAAU,GAAGT,EAAqB,CAAC,UAAU,CAAC,UAAU6E,EAAc,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAc,CAAC,EAAE,UAAU,MAAM,EAAE,UAAU,CAAC,UAAUA,EAAc,CAAC,EAAE,UAAU,MAAM,EAAE,UAAU,CAAC,UAAUA,EAAc,CAAC,EAAE,UAAU,MAAM,EAAE,UAAU,CAAC,UAAUA,EAAc,CAAC,CAAC,CAAC,EAAEtC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAexB,EAAKyD,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASK,GAA6B9D,EAAK2D,EAA0B,CAAC,OAAO,GAAG,GAAGR,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,IAAI,GAAG,IAAI,GAAG,EAAE,EAAE,GAAGtE,EAAqB,CAAC,UAAU,CAAC,GAAGsE,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,IAAI,GAAG,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,IAAI,GAAG,EAAE,CAAC,CAAC,EAAE/B,EAAYI,CAAc,EAAE,SAAsBxB,EAAK4D,EAA8B,CAAC,UAAU,2BAA2B,iBAAiB/B,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB7B,EAAK3B,EAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU,GAAK,UAAU,GAAM,SAAS,YAAY,UAAU,GAAM,UAAU,OAAO,UAAUyF,EAAe,CAAC,EAAE,UAAU,iBAAiB,UAAU,MAAM,QAAQ,YAAY,UAAU,GAAM,MAAM,OAAO,UAAUD,EAAkB,KAAKvE,CAAY,GAAG,UAAU,GAAGT,EAAqB,CAAC,UAAU,CAAC,UAAUiF,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,EAAE,UAAU,UAAU,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,EAAE,UAAU,UAAU,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,EAAE,UAAU,UAAU,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE1C,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAexB,EAAKyD,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASM,GAA6B/D,EAAK2D,EAA0B,CAAC,OAAO,GAAG,GAAGR,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,IAAI,GAAG,IAAI,GAAG,EAAE,EAAE,GAAGtE,EAAqB,CAAC,UAAU,CAAC,GAAGsE,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,IAAI,GAAG,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,IAAI,GAAG,EAAE,CAAC,CAAC,EAAE/B,EAAYI,CAAc,EAAE,SAAsBxB,EAAK4D,EAA8B,CAAC,UAAU,2BAA2B,iBAAiB/B,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB7B,EAAK3B,EAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU,GAAK,UAAU,GAAM,SAAS,YAAY,UAAU,GAAM,UAAU,OAAO,UAAU0F,EAAe,CAAC,EAAE,UAAU,SAAS,UAAU,MAAM,QAAQ,YAAY,UAAU,GAAM,MAAM,OAAO,UAAUF,EAAkB,KAAKvE,CAAY,GAAG,SAAS,GAAGT,EAAqB,CAAC,UAAU,CAAC,UAAUkF,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE3C,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAexB,EAAKyD,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASO,GAA6BhE,EAAK2D,EAA0B,CAAC,OAAO,GAAG,GAAGR,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,IAAI,GAAG,IAAI,GAAG,EAAE,EAAE,GAAGtE,EAAqB,CAAC,UAAU,CAAC,GAAGsE,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,IAAI,GAAG,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,IAAI,GAAG,EAAE,CAAC,CAAC,EAAE/B,EAAYI,CAAc,EAAE,SAAsBxB,EAAK4D,EAA8B,CAAC,UAAU,0BAA0B,iBAAiB/B,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB7B,EAAK3B,EAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU,GAAK,UAAU,GAAM,SAAS,YAAY,UAAU,GAAM,UAAU,OAAO,UAAU2F,EAAe,CAAC,EAAE,UAAU,aAAa,UAAU,MAAM,QAAQ,YAAY,UAAU,GAAM,MAAM,OAAO,UAAUH,EAAkB,KAAKvE,CAAY,GAAG,WAAW,GAAGT,EAAqB,CAAC,UAAU,CAAC,UAAUmF,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,EAAE,UAAU,MAAM,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,EAAE,UAAU,MAAM,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,EAAE,UAAU,MAAM,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE5C,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEsB,GAAa,GAAgBQ,EAAMpD,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB2B,EAAiB,SAAS,YAAY,SAAS,CAACiB,GAAa,GAAgB9C,EAAKuD,GAAK,CAAC,YAAY,GAAK,OAAO,YAAY,GAAG1E,EAAqB,CAAC,UAAU,CAAC,KAAK,CAAC,UAAU,WAAW,CAAC,EAAE,UAAU,CAAC,KAAK,CAAC,UAAU,WAAW,CAAC,EAAE,UAAU,CAAC,KAAK,CAAC,UAAU,WAAW,CAAC,EAAE,UAAU,CAAC,KAAK,CAAC,UAAU,WAAW,CAAC,CAAC,EAAEuC,EAAYI,CAAc,EAAE,SAAsBxB,EAAKwD,GAAI,CAAC,UAAU,8BAA8B,mBAAmB,iBAAiB,OAAO,WAAW,iBAAiB3B,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,gwRAAgwR,aAAa,YAAY,mBAAmB,GAAK,GAAGhD,EAAqB,CAAC,UAAU,CAAC,GAAG,IAAI,IAAI,+hSAA+hS,aAAa,WAAW,EAAE,UAAU,CAAC,GAAG,IAAI,IAAI,+hSAA+hS,aAAa,WAAW,EAAE,UAAU,CAAC,GAAG,IAAI,IAAI,+hSAA+hS,aAAa,WAAW,EAAE,UAAU,CAAC,GAAG,IAAI,IAAI,+hSAA+hS,aAAa,WAAW,CAAC,EAAEuC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,EAAEsB,GAAa,GAAgBQ,EAAMpD,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,iBAAiB,GAAK,iBAAiB2B,EAAiB,SAAS,YAAY,MAAMI,EAAY,GAAGpD,EAAqB,CAAC,UAAU,CAAC,MAAMsD,CAAW,EAAE,UAAU,CAAC,MAAME,EAAY,EAAE,UAAU,CAAC,MAAMC,CAAW,EAAE,UAAU,CAAC,MAAMF,CAAY,CAAC,EAAEhB,EAAYI,CAAc,EAAE,SAAS,CAAcxB,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiB2B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wEAAwE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,OAAO,GAAG,EAAE,SAAS,CAAC,UAAU,CAAC,OAAO,CAAC,EAAE,UAAU,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,EAAe7B,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,iBAAiB2B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wEAAwE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,OAAO,EAAE,EAAE,SAAS,CAAC,UAAU,CAAC,OAAO,CAAC,EAAE,UAAU,CAAC,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEkB,GAAa,GAAgB/C,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,iBAAiB,iBAAiB2B,EAAiB,SAAS,YAAY,SAAsByB,EAAMpD,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,iBAAiB2B,EAAiB,SAAS,YAAY,SAAS,CAAc7B,EAAKyD,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASQ,GAA6BjE,EAAK2D,EAA0B,CAAC,OAAO,GAAG,GAAG9E,EAAqB,CAAC,UAAU,CAAC,GAAGsE,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,KAAK,GAAG,KAAK,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,KAAK,GAAG,KAAK,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,CAAC,CAAC,EAAE/B,EAAYI,CAAc,EAAE,SAAsBxB,EAAK4D,EAA8B,CAAC,UAAU,2BAA2B,iBAAiB/B,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB7B,EAAK3B,EAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU,GAAM,UAAU,GAAM,SAAS,YAAY,UAAU,GAAM,UAAU,OAAO,UAAU4F,EAAe,CAAC,EAAE,UAAU,OAAO,UAAU,MAAM,QAAQ,YAAY,UAAU,GAAM,MAAM,OAAO,UAAUJ,EAAkB,KAAKvE,CAAY,GAAG,UAAU,GAAGT,EAAqB,CAAC,UAAU,CAAC,UAAU,GAAK,UAAUoF,EAAe,CAAC,EAAE,UAAU,MAAM,EAAE,UAAU,CAAC,UAAU,GAAK,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE7C,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAexB,EAAKyD,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASS,GAA6BlE,EAAK2D,EAA0B,CAAC,OAAO,GAAG,GAAG9E,EAAqB,CAAC,UAAU,CAAC,GAAGsE,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,KAAK,GAAG,KAAK,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,KAAK,GAAG,KAAK,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE/B,EAAYI,CAAc,EAAE,SAAsBxB,EAAK4D,EAA8B,CAAC,UAAU,0BAA0B,iBAAiB/B,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB7B,EAAK3B,EAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU,GAAM,UAAU,GAAM,SAAS,YAAY,UAAU,GAAM,UAAU,OAAO,UAAU6F,EAAe,CAAC,EAAE,UAAU,iBAAiB,UAAU,MAAM,QAAQ,YAAY,UAAU,GAAM,MAAM,OAAO,UAAUL,EAAkB,KAAKvE,CAAY,GAAG,UAAU,GAAGT,EAAqB,CAAC,UAAU,CAAC,UAAU,GAAK,UAAUqF,EAAe,CAAC,EAAE,UAAU,UAAU,EAAE,UAAU,CAAC,UAAU,GAAK,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE9C,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAexB,EAAKyD,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASU,GAA6BnE,EAAK2D,EAA0B,CAAC,OAAO,GAAG,GAAG9E,EAAqB,CAAC,UAAU,CAAC,GAAGsE,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,KAAK,GAAG,KAAK,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,GAAG,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,KAAK,GAAG,KAAK,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,GAAG,CAAC,EAAE/B,EAAYI,CAAc,EAAE,SAAsBxB,EAAK4D,EAA8B,CAAC,UAAU,2BAA2B,iBAAiB/B,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB7B,EAAK3B,EAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU,GAAM,UAAU,GAAM,SAAS,YAAY,UAAU,GAAM,UAAU,OAAO,UAAU8F,EAAe,CAAC,EAAE,UAAU,SAAS,UAAU,MAAM,QAAQ,YAAY,UAAU,GAAM,MAAM,OAAO,UAAUN,EAAkB,KAAKvE,CAAY,GAAG,SAAS,GAAGT,EAAqB,CAAC,UAAU,CAAC,UAAU,GAAK,UAAUsF,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAU,GAAK,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE/C,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAexB,EAAKyD,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASW,GAA6BpE,EAAK2D,EAA0B,CAAC,OAAO,GAAG,GAAG9E,EAAqB,CAAC,UAAU,CAAC,GAAGsE,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,KAAK,GAAG,KAAK,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,GAAG,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,KAAK,GAAG,KAAK,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,GAAG,CAAC,EAAE/B,EAAYI,CAAc,EAAE,SAAsBxB,EAAK4D,EAA8B,CAAC,UAAU,0BAA0B,iBAAiB/B,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB7B,EAAK3B,EAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU,GAAM,UAAU,GAAM,SAAS,YAAY,UAAU,GAAM,UAAU,OAAO,UAAU+F,EAAe,CAAC,EAAE,UAAU,aAAa,UAAU,MAAM,QAAQ,YAAY,UAAU,GAAM,MAAM,OAAO,UAAUP,EAAkB,KAAKvE,CAAY,GAAG,WAAW,GAAGT,EAAqB,CAAC,UAAU,CAAC,UAAU,GAAK,UAAUuF,EAAe,CAAC,EAAE,UAAU,MAAM,EAAE,UAAU,CAAC,UAAU,GAAK,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAEhD,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEwB,GAAa,GAAgBM,EAAMpD,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,mBAAmB,iBAAiB2B,EAAiB,SAAS,YAAY,SAAS,CAAc7B,EAAK2D,EAA0B,CAAC,OAAO,GAAG,MAAM,OAAO,GAAGR,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,IAAI,GAAG,IAAI,GAAG,EAAE,GAAGtE,EAAqB,CAAC,UAAU,CAAC,GAAGsE,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,IAAI,GAAG,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,KAAK,GAAG,KAAK,EAAE,IAAI,IAAI,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,KAAK,GAAG,KAAK,EAAE,IAAI,IAAI,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,IAAI,GAAG,CAAC,CAAC,EAAE/B,EAAYI,CAAc,EAAE,SAAsBxB,EAAK4D,EAA8B,CAAC,UAAU,2BAA2B,iBAAiB/B,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB7B,EAAKzB,GAAc,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeyB,EAAKyD,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASY,GAA6BrE,EAAK2D,EAA0B,CAAC,OAAO,GAAG,GAAGR,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,IAAI,GAAG,IAAI,GAAG,EAAE,GAAGtE,EAAqB,CAAC,UAAU,CAAC,GAAGsE,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,IAAI,GAAG,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,KAAK,GAAG,KAAK,EAAE,IAAI,IAAI,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,KAAK,GAAG,KAAK,EAAE,IAAI,IAAI,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,IAAI,GAAG,CAAC,CAAC,EAAE/B,EAAYI,CAAc,EAAE,SAAsBxB,EAAK4D,EAA8B,CAAC,UAAU,2BAA2B,iBAAiB/B,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB7B,EAAK3B,EAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU,GAAM,UAAU,GAAK,SAAS,YAAY,UAAU,GAAM,UAAU,OAAO,UAAUgG,EAAe,CAAC,EAAE,UAAU,OAAO,UAAU,QAAQ,MAAM,CAAC,OAAO,MAAM,EAAE,QAAQ,YAAY,UAAU,GAAM,MAAM,OAAO,UAAUR,EAAkB,KAAKvE,CAAY,GAAG,gBAAgB,GAAGT,EAAqB,CAAC,UAAU,CAAC,UAAUwF,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,EAAE,UAAU,cAAc,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,EAAE,UAAU,cAAc,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,EAAE,UAAU,cAAc,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,EAAE,UAAU,cAAc,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAEjD,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAexB,EAAK2D,EAA0B,CAAC,OAAO,GAAG,GAAGR,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,IAAI,GAAG,IAAI,GAAG,EAAE,GAAGtE,EAAqB,CAAC,UAAU,CAAC,GAAGsE,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,IAAI,GAAG,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,KAAK,GAAG,KAAK,EAAE,IAAI,IAAI,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,KAAK,GAAG,KAAK,EAAE,IAAI,IAAI,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,IAAI,GAAG,CAAC,CAAC,EAAE/B,EAAYI,CAAc,EAAE,SAAsBxB,EAAK4D,EAA8B,CAAC,UAAU,2BAA2B,iBAAiB/B,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB7B,EAAKvB,GAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,MAAM,EAAE,QAAQW,GAAgBE,GAAc,GAAGA,CAAY,EAAE,MAAM,OAAO,GAAGT,EAAqB,CAAC,UAAU,CAAC,QAAQU,GAAiBD,GAAc,GAAGA,CAAY,CAAC,EAAE,UAAU,CAAC,QAAQC,GAAiBD,GAAc,GAAGA,CAAY,CAAC,EAAE,UAAU,CAAC,QAAQC,GAAiBD,GAAc,GAAGA,CAAY,CAAC,EAAE,UAAU,CAAC,QAAQC,GAAiBD,GAAc,GAAGA,CAAY,CAAC,CAAC,EAAE8B,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQ8C,GAAI,CAAC,kFAAkF,gFAAgF,gRAAgR,kTAAkT,sHAAsH,oYAAoY,+RAA+R,uIAAuI,kIAAkI,8RAA8R,kRAAkR,+RAA+R,oRAAoR,8HAA8H,yGAAyG,2uCAA2uC,+GAA+G,8IAA8I,+DAA+D,mbAAmb,6PAA6P,gPAAgP,oIAAoI,+GAA+G,4IAA4I,8IAA8I,+aAA+a,4PAA4P,yHAAyH,6HAA6H,2JAA2J,opBAAopB,+aAA+a,2pBAA2pB,EAQ1nxFC,GAAgBC,EAAQ7D,GAAU2D,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,SAASA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,IAAI,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,UAAU,SAAS,SAAS,eAAe,oBAAoB,kBAAkB,iBAAiB,iBAAiB,qBAAqB,yBAAyB,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,EAAE,GAAGpG,GAAa,GAAGG,GAAmB,GAAGE,EAAW,EAAE,CAAC,6BAA6B,EAAI,CAAC",
  "names": ["init_ssg_sandbox_shims", "placeholderUrl", "DotLottie", "props", "p", "OptimizationFriendly", "LottiePlayer", "isCanvas", "RenderTarget", "lottieInstanceRef", "pe", "shouldPlay", "src", "isReady", "setIsReady", "ye", "ue", "lastVariant", "addPropertyControls", "ControlType", "loading", "loaded", "isLoading", "setLoading", "init_ssg_sandbox_shims", "init_ssg_sandbox_shims", "JACW2tB9f_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v2", "v3", "v4", "init_ssg_sandbox_shims", "valuesByLocaleId", "JACW2tB9f_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "init_ssg_sandbox_shims", "DotLottieFonts", "getFonts", "DotLottie", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "RichText2", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "SVG", "css", "FramerDjI7JA7Q6", "withCSS", "DjI7JA7Q6_default", "addFonts", "init_ssg_sandbox_shims", "init_ssg_sandbox_shims", "init_ssg_sandbox_shims", "getBorderStyle", "e", "t", "o", "d", "r", "i", "l", "h", "b", "borderControls", "ControlType", "init_ssg_sandbox_shims", "getFocusStyle", "color", "width", "style", "offset", "result", "focusControls", "ControlType", "init_ssg_sandbox_shims", "getHoverStyle", "fillColor", "textColor", "borderColor", "hoverControls", "ControlType", "init_ssg_sandbox_shims", "getPaddingStyle", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "paddingControls", "ControlType", "init_ssg_sandbox_shims", "getRadiusStyle", "radius", "radiusPerCorner", "radiusTopLeft", "radiusTopRight", "radiusBottomRight", "radiusBottomLeft", "result", "radiusControls", "ControlType", "className", "IconType", "Icon", "type", "color", "image", "size", "p", "CaretType", "Caret", "LocaleSelector", "withCSS", "font", "fillColor", "textColor", "icon", "caret", "title", "gap", "border", "hover", "focus", "style", "props", "id", "ae", "activeLocale", "locales", "setLocale", "useLocaleInfo", "_activeLocale_id", "activeLocaleId", "lastActiveLocaleId", "setLastActiveLocaleId", "ye", "selectedLocaleId", "setSelectedLocaleId", "selectedLocale", "locale", "handleChange", "event", "localeId", "_selectedLocale_name", "u", "className", "getPaddingStyle", "getRadiusStyle", "getBorderStyle", "getHoverStyle", "getFocusStyle", "addPropertyControls", "ControlType", "paddingControls", "radiusControls", "borderControls", "hoverControls", "focusControls", "LocaleSelector_default", "init_ssg_sandbox_shims", "MaterialFonts", "getFonts", "Icon", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "langue", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "gjfSUYxvL", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "RichText2", "css", "FramerZ9mbc4vSs", "withCSS", "Z9mbc4vSs_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "LocaleSelectorFonts", "getFonts", "LocaleSelector_default", "LocaleSelector1Fonts", "Z9mbc4vSs_default", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "ComponentViewportProvider", "css", "FramerDqv5GIiFX", "withCSS", "Dqv5GIiFX_default", "addPropertyControls", "ControlType", "addFonts", "ButtonsFonts", "getFonts", "urU5jeK4C_default", "ProfilPictureFonts", "DjI7JA7Q6_default", "LangueFonts", "Dqv5GIiFX_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "convertFromEnum", "value", "activeLocale", "convertFromEnum1", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapza6n95", "args", "onTapf8c00b", "onTap1qi8pgi", "onTap1vy1j62", "onTapopzz2l", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "router", "useRouter", "isDisplayed1", "isDisplayed2", "isDisplayed3", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "Link", "SVG", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "SmartComponentScopedContainer", "getLocalizedValue", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "resolvedLinks7", "resolvedLinks8", "css", "FramerJACW2tB9f", "withCSS", "JACW2tB9f_default", "addPropertyControls", "ControlType", "addFonts"]
}
