@cnamts/synapse 0.0.3-alpha → 0.0.4-alpha
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/design-system-v3.d.ts +712 -27
- package/dist/design-system-v3.js +2715 -1485
- package/dist/design-system-v3.umd.cjs +10 -1
- package/dist/style.css +1 -1
- package/package.json +5 -2
- package/src/components/Alert/Alert.mdx +1 -1
- package/src/components/Alert/Alert.stories.ts +91 -1
- package/src/components/BackBtn/BackBtn.mdx +1 -1
- package/src/components/BackBtn/BackBtn.stories.ts +84 -1
- package/src/components/BackToTopBtn/BackToTopBtn.mdx +3 -3
- package/src/components/BackToTopBtn/BackToTopBtn.stories.ts +172 -11
- package/src/components/CollapsibleList/CollapsibleList.mdx +2 -2
- package/src/components/CollapsibleList/CollapsibleList.stories.ts +37 -1
- package/src/components/CopyBtn/CopyBtn.mdx +1 -1
- package/src/components/CopyBtn/CopyBtn.stories.ts +120 -1
- package/src/components/CopyBtn/CopyBtn.vue +1 -1
- package/src/components/Customs/CustomInputSelect/CustomInputSelect.mdx +6 -8
- package/src/components/Customs/CustomInputSelect/CustomInputSelect.stories.ts +270 -4
- package/src/components/Customs/CustomInputSelect/CustomInputSelect.vue +80 -53
- package/src/components/Customs/CustomInputSelect/config.ts +10 -0
- package/src/components/Customs/CustomSelect/CustomSelect.mdx +3 -3
- package/src/components/Customs/CustomSelect/CustomSelect.stories.ts +158 -2
- package/src/components/Customs/CustomSelect/CustomSelect.vue +25 -6
- package/src/components/Customs/CustomTextField/CustomTextField.mdx +44 -0
- package/src/components/Customs/CustomTextField/CustomTextField.stories.ts +403 -0
- package/src/components/Customs/CustomTextField/CustomTextField.vue +110 -0
- package/src/components/Customs/CustomTextField/tests/CustomTextField.spec.ts +93 -0
- package/src/components/Customs/CustomTextField/tests/__snapshots__/CustomTextField.spec.ts.snap +59 -0
- package/src/components/Customs/CustomTextField/types.d.ts +3 -0
- package/src/components/DataList/DataList.mdx +77 -0
- package/src/components/DataList/DataList.stories.ts +960 -0
- package/src/components/DataList/DataList.vue +140 -0
- package/src/components/DataList/DataListLoading/DataListLoading.vue +56 -0
- package/src/components/DataList/DataListLoading/tests/DataListLoading.spec.ts +23 -0
- package/src/components/DataList/locales.ts +3 -0
- package/src/components/DataList/tests/DataList.spec.ts +194 -0
- package/src/components/DataList/types.d.ts +23 -0
- package/src/components/DataListGroup/DataListGroup.mdx +77 -0
- package/src/components/DataListGroup/DataListGroup.stories.ts +987 -0
- package/src/components/DataListGroup/DataListGroup.vue +59 -0
- package/src/components/DataListGroup/tests/DataListGroup.spec.ts +54 -0
- package/src/components/DataListGroup/tests/data/dataListGroupItems.ts +41 -0
- package/src/components/DataListGroup/types.d.ts +15 -0
- package/src/components/DataListItem/DataListItem.vue +135 -0
- package/src/components/DataListItem/config.ts +17 -0
- package/src/components/DataListItem/locales.ts +3 -0
- package/src/components/DataListItem/tests/DataListItem.spec.ts +156 -0
- package/src/components/DataListItem/types.d.ts +23 -0
- package/src/components/DownloadBtn/Accessibilite.mdx +14 -0
- package/src/components/DownloadBtn/Accessibilite.stories.ts +166 -0
- package/src/components/DownloadBtn/AccessibiliteItems.ts +129 -0
- package/src/components/DownloadBtn/DownloadBtn.mdx +5 -6
- package/src/components/DownloadBtn/DownloadBtn.stories.ts +207 -2
- package/src/components/DownloadBtn/constants/ExpertiseLevelEnum.ts +4 -0
- package/src/components/FooterBar/FooterBar.mdx +2 -2
- package/src/components/FooterBar/FooterBar.stories.ts +1 -1
- package/src/components/FranceConnectBtn/FranceConnectBtn.mdx +1 -1
- package/src/components/FranceConnectBtn/FranceConnectBtn.stories.ts +58 -1
- package/src/components/HeaderBar/HeaderBar.mdx +164 -45
- package/src/components/HeaderBar/HeaderBar.stories.ts +559 -15
- package/src/components/HeaderBar/HeaderBar.vue +60 -22
- package/src/components/HeaderBar/HeaderBurgerMenu/HeaderBurgerMenu.mdx +433 -0
- package/src/components/HeaderBar/HeaderBurgerMenu/HeaderBurgerMenu.stories.ts +1089 -0
- package/src/components/HeaderBar/{HeaderComplexMenu/HeaderComplexMenu.vue → HeaderBurgerMenu/HeaderBurgerMenu.vue} +74 -45
- package/src/components/HeaderBar/HeaderBurgerMenu/HeaderMenuItem/HeaderMenuItem.mdx +38 -0
- package/src/components/HeaderBar/HeaderBurgerMenu/HeaderMenuItem/HeaderMenuItem.stories.ts +89 -0
- package/src/components/HeaderBar/{HeaderComplexMenu → HeaderBurgerMenu}/HeaderMenuItem/tests/__snapshots__/HeaderMenuItem.spec.ts.snap +1 -1
- package/src/components/HeaderBar/HeaderBurgerMenu/HeaderMenuSection/HeaderMenuSection.mdx +17 -0
- package/src/components/HeaderBar/HeaderBurgerMenu/HeaderMenuSection/HeaderMenuSection.stories.ts +121 -0
- package/src/components/HeaderBar/{HeaderComplexMenu → HeaderBurgerMenu}/HeaderMenuSection/HeaderMenuSection.vue +2 -2
- package/src/components/HeaderBar/{HeaderComplexMenu → HeaderBurgerMenu}/HeaderMenuSection/tests/HeaderMenuSection.spec.ts +1 -3
- package/src/components/HeaderBar/HeaderBurgerMenu/HeaderSubMenu/HeaderSubMenu.mdx +43 -0
- package/src/components/HeaderBar/HeaderBurgerMenu/HeaderSubMenu/HeaderSubMenu.stories.ts +261 -0
- package/src/components/HeaderBar/{HeaderComplexMenu → HeaderBurgerMenu}/HeaderSubMenu/HeaderSubMenu.vue +17 -3
- package/src/components/HeaderBar/{HeaderComplexMenu → HeaderBurgerMenu}/HeaderSubMenu/tests/HeaderSubMenu.spec.ts +1 -1
- package/src/components/HeaderBar/HeaderBurgerMenu/tests/HeaderBurgerMenu.spec.ts +180 -0
- package/src/components/HeaderBar/HeaderBurgerMenu/tests/__snapshots__/HeaderBurgerMenu.spec.ts.snap +13 -0
- package/src/components/HeaderBar/HeaderBurgerMenu/tests/__snapshots__/HeaderComplexMenu.spec.ts.snap +13 -0
- package/src/components/HeaderBar/HeaderLogo/HeaderLogo.vue +62 -25
- package/src/components/HeaderBar/HeaderLogo/tests/HeaderLogo.spec.ts +49 -1
- package/src/components/HeaderBar/HeaderMenuBtn/HeaderMenuBtn.vue +19 -23
- package/src/components/HeaderBar/HeaderMenuBtn/tests/HeaderMenuBtn.spec.ts +70 -0
- package/src/components/HeaderBar/Usages.mdx +85 -0
- package/src/components/HeaderBar/consts.scss +0 -1
- package/src/components/HeaderBar/tests/HeaderBar.spec.ts +8 -2
- package/src/components/HeaderBar/tests/__snapshots__/HeaderBar.spec.ts.snap +5 -10
- package/src/components/HeaderLoading/HeaderLoading.mdx +28 -0
- package/src/components/HeaderLoading/HeaderLoading.stories.ts +62 -0
- package/src/components/HeaderLoading/HeaderLoading.vue +45 -0
- package/src/components/HeaderLoading/tests/HeaderLoading.spec.ts +22 -0
- package/src/components/HeaderNavigationBar/HeaderNavigationBar.mdx +128 -0
- package/src/components/HeaderNavigationBar/HeaderNavigationBar.stories.ts +784 -0
- package/src/components/HeaderNavigationBar/HeaderNavigationBar.vue +194 -0
- package/src/components/HeaderNavigationBar/HorizontalNavbar/HorizontalNavbar.vue +74 -0
- package/src/components/HeaderNavigationBar/HorizontalNavbar/config.ts +18 -0
- package/src/components/HeaderNavigationBar/tests/HeaderNavigationBar.spec.ts +127 -0
- package/src/components/HeaderNavigationBar/types.ts +7 -0
- package/src/components/HeaderToolbar/HeaderToolbar.mdx +31 -0
- package/src/components/HeaderToolbar/HeaderToolbar.stories.ts +343 -0
- package/src/components/HeaderToolbar/HeaderToolbar.vue +487 -0
- package/src/components/HeaderToolbar/tests/HeaderToolbar.spec.ts +196 -0
- package/src/components/HeaderToolbar/types.d.ts +20 -0
- package/src/components/LangBtn/LangBtn.mdx +1 -1
- package/src/components/LangBtn/LangBtn.stories.ts +125 -8
- package/src/components/Logo/Logo.mdx +2 -2
- package/src/components/Logo/Logo.stories.ts +147 -1
- package/src/components/LogoBrandSection/LogoBrandSection.mdx +14 -0
- package/src/components/LogoBrandSection/LogoBrandSection.stories.ts +158 -0
- package/src/components/LogoBrandSection/LogoBrandSection.vue +312 -0
- package/src/components/LogoBrandSection/assets/ameli-pro.svg +1 -0
- package/src/components/LogoBrandSection/assets/ameli.svg +1 -0
- package/src/components/LogoBrandSection/assets/cnam.svg +1 -0
- package/src/components/LogoBrandSection/assets/compte-ameli.svg +1 -0
- package/src/components/LogoBrandSection/dividerDimensionsMapping.ts +14 -0
- package/src/components/LogoBrandSection/locales.ts +14 -0
- package/src/components/LogoBrandSection/secondaryLogoMapping.ts +24 -0
- package/src/components/LogoBrandSection/tests/LogoBrandSection.spec.ts +365 -0
- package/src/components/LogoBrandSection/tests/__snapshots__/LogoBrandSection.spec.ts.snap +14 -0
- package/src/components/LogoBrandSection/types.ts +8 -0
- package/src/components/NotificationBar/NotificationBar.mdx +6 -6
- package/src/components/NotificationBar/NotificationBar.stories.ts +1 -1
- package/src/components/NotificationBar/NotificationBar.vue +2 -2
- package/src/components/NotificationBar/tests/NotificationBar.spec.ts +1 -1
- package/src/components/PageContainer/PageContainer.mdx +1 -1
- package/src/components/PageContainer/PageContainer.stories.ts +86 -1
- package/src/components/PhoneField/PhoneField.mdx +49 -0
- package/src/components/PhoneField/PhoneField.stories.ts +869 -0
- package/src/components/PhoneField/PhoneField.vue +230 -0
- package/src/components/PhoneField/indicatifs.ts +104 -0
- package/src/components/PhoneField/locales.ts +4 -0
- package/src/components/PhoneField/tests/PhoneField.spec.ts +179 -0
- package/src/components/SkipLink/SkipLink.stories.ts +50 -1
- package/src/components/SocialMediaLinks/SocialMediaLinks.mdx +28 -1
- package/src/components/SocialMediaLinks/SocialMediaLinks.stories.ts +37 -1
- package/src/components/SubHeader/SubHeader.mdx +31 -0
- package/src/components/SubHeader/SubHeader.stories.ts +1032 -0
- package/src/components/SubHeader/SubHeader.vue +185 -0
- package/src/components/SubHeader/config.ts +12 -0
- package/src/components/SubHeader/locales.ts +3 -0
- package/src/components/SubHeader/tests/SubHeader.spec.ts +144 -0
- package/src/components/index.ts +24 -7
- package/src/composables/widthable/index.ts +29 -0
- package/src/composables/widthable/tests/widthable.spec.ts +52 -0
- package/src/designTokens/tokens/cnam/cnamLightTheme.ts +2 -2
- package/src/main.ts +1 -0
- package/src/modules.d.ts +4 -0
- package/src/services/index.ts +1 -0
- package/src/stories/Demarrer/Accueil.mdx +10 -0
- package/src/stories/Demarrer/Accueil.stories.ts +76 -0
- package/src/stories/Demarrer/PolitiqueDeConfidentialite.mdx +9 -0
- package/src/stories/Demarrer/PolitiqueDeConfidentialite.stories.ts +20 -0
- package/src/stories/Fondamentaux/Accessibilite/Accessibilite.mdx +1 -2
- package/src/stories/Fondamentaux/Accessibilite/Accessibilite.stories.ts +1 -1
- package/src/stories/Fondamentaux/EcoConception/Econception.stories.ts +1 -1
- package/src/stories/GuideDuDev/moduleDeNotification.mdx +52 -48
- package/src/stories/GuideDuDev/vuetifyOptions.mdx +31 -28
- package/src/stories/Guidelines/CustomisationEtThemes.mdx +1 -1
- package/src/utils/functions/throttleDisplayFn/tests/throttleDisplayFn.spec.ts +47 -0
- package/src/utils/functions/throttleDisplayFn/throttleDisplayFn.ts +26 -0
- package/src/utils/rules/exactLength/index.ts +33 -0
- package/src/utils/rules/exactLength/locales.ts +6 -0
- package/src/utils/rules/required/index.ts +25 -0
- package/src/utils/rules/required/locales.ts +5 -0
- package/src/utils/rules/required/ruleMessageHelper.ts +14 -0
- package/src/utils/rules/required/tests/index.spec.ts +47 -0
- package/src/utils/rules/required/tests/rulesMessageHelper.spec.ts +22 -0
- package/src/utils/rules/types.d.ts +15 -0
- package/src/components/Beta/beta.mdx +0 -5
- package/src/components/Deprecated/deprecated.mdx +0 -5
- package/src/components/HeaderBar/HeaderComplexMenu/HeaderComplexMenu.stories.ts +0 -272
- package/src/components/HeaderBar/HeaderComplexMenu/HeaderMenuItem/HeaderMenuItem.stories.ts +0 -49
- package/src/components/HeaderBar/HeaderComplexMenu/HeaderMenuSection/HeaderMenuSection.stories.ts +0 -56
- package/src/components/HeaderBar/HeaderComplexMenu/HeaderSubMenu/HeaderSubMenu.stories.ts +0 -137
- package/src/components/HeaderBar/HeaderComplexMenu/tests/HeaderComplexMenu.spec.ts +0 -129
- package/src/components/HeaderBar/HeaderComplexMenu/tests/__snapshots__/HeaderComplexMenu.spec.ts.snap +0 -18
- package/src/stories/Home/Accueil.mdx +0 -7
- package/src/stories/Home/PolitiqueDeConfidentialite.mdx +0 -4
- package/src/stories/Home/synapse.webp +0 -0
- /package/src/components/HeaderBar/{HeaderComplexMenu → HeaderBurgerMenu}/HeaderMenuItem/HeaderMenuItem.vue +0 -0
- /package/src/components/HeaderBar/{HeaderComplexMenu → HeaderBurgerMenu}/HeaderMenuItem/tests/HeaderMenuItem.spec.ts +0 -0
- /package/src/components/HeaderBar/{HeaderComplexMenu → HeaderBurgerMenu}/conts.ts +0 -0
- /package/src/components/HeaderBar/{HeaderComplexMenu → HeaderBurgerMenu}/locals.ts +0 -0
- /package/src/components/HeaderBar/{HeaderComplexMenu → HeaderBurgerMenu}/tests/useHandleSubMenus.spec.ts +0 -0
- /package/src/components/HeaderBar/{HeaderComplexMenu → HeaderBurgerMenu}/useHandleSubMenus.ts +0 -0
- /package/src/components/Logo/{types.d.ts → types.ts} +0 -0
|
@@ -1 +1,10 @@
|
|
|
1
|
-
(function(f,e){typeof exports=="object"&&typeof module<"u"?e(exports,require("vue"),require("vuetify"),require("vuetify/lib/components/VSheet/index.mjs"),require("vuetify/lib/components/VAlert/index.mjs"),require("vuetify/lib/components/VBtn/index.mjs"),require("vuetify/lib/components/VIcon/index.mjs"),require("vuetify/components"),require("vuetify/lib/components/transitions/index.mjs"),require("vuetify/lib/directives/index.mjs"),require("vuetify/lib/components/VSnackbar/index.mjs"),require("vuetify/lib/components/VList/index.mjs"),require("vuetify/lib/components/VMenu/index.mjs"),require("vuetify/lib/components/VExpansionPanel/index.mjs"),require("vuetify/lib/components/VDivider/index.mjs"),require("vuetify/lib/components/VFooter/index.mjs"),require("vuetify/lib/components/VGrid/index.mjs")):typeof define=="function"&&define.amd?define(["exports","vue","vuetify","vuetify/lib/components/VSheet/index.mjs","vuetify/lib/components/VAlert/index.mjs","vuetify/lib/components/VBtn/index.mjs","vuetify/lib/components/VIcon/index.mjs","vuetify/components","vuetify/lib/components/transitions/index.mjs","vuetify/lib/directives/index.mjs","vuetify/lib/components/VSnackbar/index.mjs","vuetify/lib/components/VList/index.mjs","vuetify/lib/components/VMenu/index.mjs","vuetify/lib/components/VExpansionPanel/index.mjs","vuetify/lib/components/VDivider/index.mjs","vuetify/lib/components/VFooter/index.mjs","vuetify/lib/components/VGrid/index.mjs"],e):(f=typeof globalThis<"u"?globalThis:f||self,e(f.DesignSystemV3={},f.Vue,f.Vuetify,f.VSheet,f.VAlert,f.VBtn,f.VIcon,f.components,f.transitions,f.vuetifyDirectives,f.VSnackbar,f.VList,f.VMenu,f.VExpansionPanel,f.VDivider,f.VFooter,f.VGrid))})(this,function(f,e,A,ge,ke,M,C,E,ve,Ne,ye,q,Ve,P,X,Ce,we){"use strict";const Se=e.defineComponent({__name:"PageContainer",props:{size:{default:"xl"},spacing:{default:void 0},color:{default:"transparent"}},setup(n,{expose:a}){const t=n,o=A.useDisplay(),r={xs:"px-0",sm:"px-4",md:"px-8",lg:"px-8",xl:"px-8"},m=r[o.name.value],s=e.computed(()=>t.spacing?`py-10 ${r[t.spacing]}`:`py-10 ${m}`),i={xl:1440,l:960,m:800,s:600},c=e.computed(()=>i[t.size]);return a({spacingClass:s,containerSize:c}),(h,g)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass([s.value,"vd-page-container d-flex justify-center"])},[e.createVNode(ge.VSheet,{width:c.value,color:h.color},{default:e.withCtx(()=>[e.renderSlot(h.$slots,"default",{},void 0,!0)]),_:3},8,["width","color"])],2))}}),y=(n,a)=>{const t=n.__vccOpts||n;for(const[o,r]of a)t[o]=r;return t},Le=y(Se,[["__scopeId","data-v-773c0ca7"]]),Be={close:"Fermer"};var xe="M11,15H13V17H11V15M11,7H13V13H11V7M12,2C6.47,2 2,6.5 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2M12,20A8,8 0 0,1 4,12A8,8 0 0,1 12,4A8,8 0 0,1 20,12A8,8 0 0,1 12,20Z",Y="M8.27,3L3,8.27V15.73L8.27,21H15.73C17.5,19.24 21,15.73 21,15.73V8.27L15.73,3M9.1,5H14.9L19,9.1V14.9L14.9,19H9.1L5,14.9V9.1M11,15H13V17H11V15M11,7H13V13H11V7",Me="M12,2L1,21H23M12,6L19.53,19H4.47M11,10V14H13V10M11,16V18H13V16",Ze="M20,11V13H8L13.5,18.5L12.08,19.92L4.16,12L12.08,4.08L13.5,5.5L8,11H20Z",J="M13,20H11V8L5.5,13.5L4.08,12.08L12,4.16L19.92,12.08L18.5,13.5L13,8V20Z",ee="M12 2C6.5 2 2 6.5 2 12S6.5 22 12 22 22 17.5 22 12 17.5 2 12 2M12 20C7.59 20 4 16.41 4 12S7.59 4 12 4 20 7.59 20 12 16.41 20 12 20M16.59 7.58L10 14.17L7.41 11.59L6 13L10 17L18 9L16.59 7.58Z",ae="M19,6.41L17.59,5L12,10.59L6.41,5L5,6.41L10.59,12L5,17.59L6.41,19L12,13.41L17.59,19L19,17.59L13.41,12L19,6.41Z",Ae="M19,21H8V7H19M19,5H8A2,2 0 0,0 6,7V21A2,2 0 0,0 8,23H19A2,2 0 0,0 21,21V7A2,2 0 0,0 19,5M16,1H4A2,2 0 0,0 2,3V17H4V3H16V1Z",_e="M5,20H19V18H5M19,9H15V3H9V9H5L12,16L19,9Z",Te="M12 2.04C6.5 2.04 2 6.53 2 12.06C2 17.06 5.66 21.21 10.44 21.96V14.96H7.9V12.06H10.44V9.85C10.44 7.34 11.93 5.96 14.22 5.96C15.31 5.96 16.45 6.15 16.45 6.15V8.62H15.19C13.95 8.62 13.56 9.39 13.56 10.18V12.06H16.34L15.89 14.96H13.56V21.96A10 10 0 0 0 22 12.06C22 6.53 17.5 2.04 12 2.04Z",te="M11,9H13V7H11M12,20C7.59,20 4,16.41 4,12C4,7.59 7.59,4 12,4C16.41,4 20,7.59 20,12C20,16.41 16.41,20 12,20M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2M11,17H13V11H11V17Z",Oe="M19 3A2 2 0 0 1 21 5V19A2 2 0 0 1 19 21H5A2 2 0 0 1 3 19V5A2 2 0 0 1 5 3H19M18.5 18.5V13.2A3.26 3.26 0 0 0 15.24 9.94C14.39 9.94 13.4 10.46 12.92 11.24V10.13H10.13V18.5H12.92V13.57C12.92 12.8 13.54 12.17 14.31 12.17A1.4 1.4 0 0 1 15.71 13.57V18.5H18.5M6.88 8.56A1.68 1.68 0 0 0 8.56 6.88C8.56 5.95 7.81 5.19 6.88 5.19A1.69 1.69 0 0 0 5.19 6.88C5.19 7.81 5.95 8.56 6.88 8.56M8.27 18.5V10.13H5.5V18.5H8.27Z",De="M7,10L12,15L17,10H7Z",Ee="M14,3V5H17.59L7.76,14.83L9.17,16.24L19,6.41V10H21V3M19,19H5V5H12V3H5C3.89,3 3,3.9 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V12H19V19Z",$e="M22.46,6C21.69,6.35 20.86,6.58 20,6.69C20.88,6.16 21.56,5.32 21.88,4.31C21.05,4.81 20.13,5.16 19.16,5.36C18.37,4.5 17.26,4 16,4C13.65,4 11.73,5.92 11.73,8.29C11.73,8.63 11.77,8.96 11.84,9.27C8.28,9.09 5.11,7.38 3,4.79C2.63,5.42 2.42,6.16 2.42,6.94C2.42,8.43 3.17,9.75 4.33,10.5C3.62,10.5 2.96,10.3 2.38,10C2.38,10 2.38,10 2.38,10.03C2.38,12.11 3.86,13.85 5.82,14.24C5.46,14.34 5.08,14.39 4.69,14.39C4.42,14.39 4.15,14.36 3.89,14.31C4.43,16 6,17.26 7.89,17.29C6.43,18.45 4.58,19.13 2.56,19.13C2.22,19.13 1.88,19.11 1.54,19.07C3.44,20.29 5.7,21 8.12,21C16,21 20.33,14.46 20.33,8.79C20.33,8.6 20.33,8.42 20.32,8.23C21.16,7.63 21.88,6.87 22.46,6Z";const He=y(e.defineComponent({__name:"Alert",props:e.mergeModels({type:{default:"info"},closable:{type:Boolean,default:!1},variant:{default:"tonal"}},{modelValue:{type:Boolean,default:!0},modelModifiers:{}}),emits:["update:modelValue"],setup(n,{expose:a}){const t=e.useModel(n,"modelValue"),o=n,r=e.computed(()=>({info:te,success:ee,warning:Me,error:Y})[o.type]);function m(){t.value=!1}return a({prependIcon:r,dismissAlert:m}),(s,i)=>(e.openBlock(),e.createBlock(ke.VAlert,{modelValue:t.value,"onUpdate:modelValue":i[0]||(i[0]=c=>t.value=c),type:s.type,closable:s.closable,variant:s.variant,class:e.normalizeClass(`alert alert--${s.type}`),color:s.type,border:s.variant==="tonal"?"start":!1},e.createSlots({prepend:e.withCtx(()=>[e.createVNode(C.VIcon,{class:"alert-icon",size:"1.5rem"},{default:e.withCtx(()=>[e.renderSlot(s.$slots,"icon",{},()=>[e.createTextVNode(e.toDisplayString(r.value),1)],!0)]),_:3})]),default:e.withCtx(()=>[e.renderSlot(s.$slots,"default",{},void 0,!0)]),_:2},[s.closable?{name:"close",fn:e.withCtx(()=>[e.createVNode(M.VBtn,{color:s.variant==="outlined"?void 0:"primary",ripple:!1,variant:"text",width:"auto",height:"100%",class:"alert-close-btn",onClick:m},{default:e.withCtx(()=>[e.createVNode(C.VIcon,{size:"small"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(ae)),1)]),_:1}),e.createElementVNode("span",null,e.toDisplayString(e.unref(Be).close),1)]),_:1},8,["color"])]),key:"0"}:void 0]),1032,["modelValue","type","closable","variant","class","color","border"]))}}),[["__scopeId","data-v-6f216856"]]);function ne(n){return n&&n.__esModule&&Object.prototype.hasOwnProperty.call(n,"default")?n.default:n}var Ie=function(a){return ze(a)&&!Pe(a)};function ze(n){return!!n&&typeof n=="object"}function Pe(n){var a=Object.prototype.toString.call(n);return a==="[object RegExp]"||a==="[object Date]"||Fe(n)}var je=typeof Symbol=="function"&&Symbol.for,Re=je?Symbol.for("react.element"):60103;function Fe(n){return n.$$typeof===Re}function qe(n){return Array.isArray(n)?[]:{}}function $(n,a){return a.clone!==!1&&a.isMergeableObject(n)?_(qe(n),n,a):n}function Ge(n,a,t){return n.concat(a).map(function(o){return $(o,t)})}function Ue(n,a){if(!a.customMerge)return _;var t=a.customMerge(n);return typeof t=="function"?t:_}function Ke(n){return Object.getOwnPropertySymbols?Object.getOwnPropertySymbols(n).filter(function(a){return Object.propertyIsEnumerable.call(n,a)}):[]}function oe(n){return Object.keys(n).concat(Ke(n))}function re(n,a){try{return a in n}catch{return!1}}function We(n,a){return re(n,a)&&!(Object.hasOwnProperty.call(n,a)&&Object.propertyIsEnumerable.call(n,a))}function Qe(n,a,t){var o={};return t.isMergeableObject(n)&&oe(n).forEach(function(r){o[r]=$(n[r],t)}),oe(a).forEach(function(r){We(n,r)||(re(n,r)&&t.isMergeableObject(a[r])?o[r]=Ue(r,t)(n[r],a[r],t):o[r]=$(a[r],t))}),o}function _(n,a,t){t=t||{},t.arrayMerge=t.arrayMerge||Ge,t.isMergeableObject=t.isMergeableObject||Ie,t.cloneUnlessOtherwiseSpecified=$;var o=Array.isArray(a),r=Array.isArray(n),m=o===r;return m?o?t.arrayMerge(n,a,t):Qe(n,a,t):$(a,t)}_.all=function(a,t){if(!Array.isArray(a))throw new Error("first argument should be an array");return a.reduce(function(o,r){return _(o,r,t)},{})};var Xe=_,Ye=Xe;const le=ne(Ye);function T(n,a){return e.computed(()=>le(n,e.toRaw(a.vuetifyOptions)??{}))}function Je(n){const a=document.createElement("textarea");a.value=n,a.setAttribute("readonly",""),a.style.position="absolute",a.style.left="-9999px",document.body.appendChild(a);const t=document.getSelection();let o=!1;t&&(o=t.rangeCount>0?t.getRangeAt(0):!1),a.select(),navigator.clipboard?navigator.clipboard.writeText(n):document.execCommand("copy"),document.body.removeChild(a),t&&o&&(t.removeAllRanges(),t.addRange(o))}const ea={tooltip:"Texte copié !"},aa={menu:{location:"end center",offset:16,zIndex:8,contentClass:"vd-copy-tooltip-menu text-white text-body-2 ml-2"},btn:{icon:!0,variant:"text",density:"comfortable"},icon:{color:"grey-darken-20"}},ta=["id"],na=e.defineComponent({__name:"CopyBtn",props:{vuetifyOptions:{},ariaLabel:{default:"copy-btn"},ariaOwns:{default:"copy-btn"},textToCopy:{type:[Function,String],default:""},hideTooltip:{type:Boolean,default:!1},tooltipDuration:{default:2500}},setup(n,{expose:a}){const t=n,o=T(aa,t),r=e.ref(!1),m=Ae;function s(){const i=typeof t.textToCopy=="function"?t.textToCopy():t.textToCopy;Je(i),!t.hideTooltip&&setTimeout(()=>{r.value=!1},t.tooltipDuration)}return a({copy:s,tooltip:r}),(i,c)=>(e.openBlock(),e.createElementBlock("div",{id:t.ariaOwns,class:"vd-copy-btn"},[e.createVNode(e.unref(E.VMenu),e.mergeProps(e.unref(o).menu,{id:t.ariaOwns,modelValue:r.value,"onUpdate:modelValue":c[0]||(c[0]=h=>r.value=h),disabled:t.hideTooltip,transition:"fade-transition"}),{activator:e.withCtx(({props:h})=>[e.createVNode(e.unref(E.VBtn),e.mergeProps({...h,...e.unref(o).btn},{"aria-label":t.ariaLabel,"aria-owns":t.ariaOwns,"data-test-id":t.ariaOwns,onClick:s}),{default:e.withCtx(()=>[e.renderSlot(i.$slots,"icon",{},()=>[e.createVNode(e.unref(E.VIcon),e.normalizeProps(e.guardReactiveProps(e.unref(o).icon)),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(m)),1)]),_:1},16)])]),_:2},1040,["aria-label","aria-owns","data-test-id"])]),default:e.withCtx(()=>[e.renderSlot(i.$slots,"tooltip",{},()=>[e.createTextVNode(e.toDisplayString(e.unref(ea).tooltip),1)])]),_:3},16,["id","modelValue","disabled"])],8,ta))}}),oa={label:"Aller au contenu principal"},ra={class:"vd-skip-link-container"},la=["href"],ia=e.defineComponent({__name:"SkipLink",props:{label:{default:oa.label},target:{default:"#main"}},setup(n){const a=e.ref(null);return e.onMounted(()=>{var s,i;const t=e.getCurrentInstance();if(!t)return;const o=(s=t==null?void 0:t.appContext.app)==null?void 0:s.$nuxt;let r;o&&o.$router&&(r=o.$router);const m=(i=t.appContext.app.config.globalProperties)==null?void 0:i.$router;m&&(r=m),r&&r.afterEach&&r.afterEach((c,h,g)=>{g||c.path!==h.path&&e.nextTick(()=>{var u;(u=a.value)==null||u.focus()})})}),(t,o)=>(e.openBlock(),e.createElementBlock("div",ra,[e.createElementVNode("span",{ref_key:"skipLinkSpan",ref:a,tabindex:"-1"},null,512),e.createElementVNode("a",{href:t.target,class:"vd-skip-link text-primary d-block d-sr-only-focusable px-2"},[e.renderSlot(t.$slots,"default",{},()=>[e.createTextVNode(e.toDisplayString(t.label),1)],!0)],8,la)]))}}),ca=y(ia,[["__scopeId","data-v-2bd5b004"]]);function ie(n,a="px"){if(!(n==null||n===""))return isNaN(+n)?String(n):`${Number(n)}${a}`}const sa={label:"Retour en haut"},da={btn:{variant:"outlined",color:"primary",class:"text-wrap px-0 px-md-4"},icon:{color:"primary",size:"small",class:"ml-0 ml-md-1"}},ma=y(e.defineComponent({__name:"BackToTopBtn",props:{threshold:{default:120},nudgeRight:{default:"16px"},nudgeBottom:{default:"16px"},target:{default:void 0},vuetifyOptions:{}},setup(n){const a=n,t=T(da,a),o=e.ref(!1),r=e.ref(!1),m=e.computed(()=>a.target?`#${a.target}`:null),s=e.computed(()=>{const d=ie(a.nudgeRight)||"0";return{bottom:ie(a.nudgeBottom)||"0",marginRight:d}}),i=e.computed(()=>r.value?"36px":void 0),c=e.computed(()=>({"d-sr-only":r.value})),h=A.useDisplay();e.watch(()=>h.smAndDown.value,d=>{r.value=d},{immediate:!0});const g=d=>{const p=d.currentTarget;p instanceof Window?o.value=window.scrollY>a.threshold:o.value=p.scrollTop>a.threshold},u=()=>{a.target?(document.getElementById(a.target)||window).scrollTo(0,0):window.scrollTo(0,0)},k=e.computed(()=>a.target?document.getElementById(a.target):window);return e.onMounted(()=>{var d;(d=k.value)==null||d.addEventListener("scroll",g)}),e.onUnmounted(()=>{var d;(d=k.value)==null||d.removeEventListener("scroll",g)}),(d,p)=>(e.openBlock(),e.createBlock(ve.VFadeTransition,null,{default:e.withCtx(()=>[e.withDirectives((e.openBlock(),e.createBlock(M.VBtn,e.mergeProps({...e.unref(t).btn,...d.$attrs},{style:s.value,"min-width":i.value,class:"vd-back-to-top-btn",onClick:u}),{default:e.withCtx(()=>[e.createElementVNode("span",{class:e.normalizeClass(c.value)},[e.renderSlot(d.$slots,"default",{},()=>[e.createTextVNode(e.toDisplayString(e.unref(sa).label),1)],!0)],2),e.renderSlot(d.$slots,"icon",{},()=>[e.createVNode(C.VIcon,e.normalizeProps(e.guardReactiveProps(e.unref(t).icon)),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(J)),1)]),_:1},16)],!0)]),_:3},16,["style","min-width"])),[[e.vShow,o.value],[Ne.Scroll,g,m.value]])]),_:3}))}}),[["__scopeId","data-v-c019b012"]]),ha={label:"Retour"},pa=y(e.defineComponent({__name:"BackBtn",props:{hideBackIcon:{type:Boolean},dark:{type:Boolean}},setup(n){const a=n,t=e.ref(Ze),o=e.computed(()=>a.dark??!1),r=e.computed(()=>o.value?"white":"primary"),m=e.computed(()=>o.value?"outlined":"text"),s=e.computed(()=>o.value?"dark":"light"),i=e.computed(()=>o.value?"white":"primary"),c=e.computed(()=>({"px-0":!o.value,"pr-1":!o.value&&!a.hideBackIcon}));return(h,g)=>(e.openBlock(),e.createBlock(e.unref(E.VBtn),e.mergeProps(h.$attrs,{variant:m.value,theme:s.value,color:i.value,outlined:o.value,class:["vd-back-btn","text-none",c.value]}),{default:e.withCtx(()=>[e.renderSlot(h.$slots,"icon",{},()=>[a.hideBackIcon?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(e.unref(E.VIcon),{key:0,color:r.value,class:e.normalizeClass([{"ml-n1":o.value},"mr-1"])},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(t.value),1)]),_:1},8,["color","class"]))],!0),e.renderSlot(h.$slots,"default",{},()=>[e.createTextVNode(e.toDisplayString(e.unref(ha).label),1)],!0)]),_:3},16,["variant","theme","color","outlined","class"]))}}),[["__scopeId","data-v-b9c7d584"]]);function fa(n,a,t,o=!1){const r=o?["\uFEFF",n]:[n],m=window.navigator,s=new Blob(r,{type:t});if(m.msSaveOrOpenBlob)m.msSaveOrOpenBlob(s,a);else{const i=document.createElement("a");i.target="_blank",i.style.display="none",i.rel="noopener noreferrer",i.href=window.URL.createObjectURL(s),i.download=a,document.body.appendChild(i),i.click(),document.body.removeChild(i),window.URL.revokeObjectURL(i.href)}}const ua={btn:{variant:"outlined",color:"primary",class:"text-wrap",minHeight:"36px",height:"auto"},icon:{color:"primary",class:"mr-3"}},ba=y(e.defineComponent({inheritAttrs:!1,__name:"DownloadBtn",props:{filePromise:{},fallbackFilename:{default:void 0},vuetifyOptions:{}},emits:["error","success"],setup(n,{expose:a,emit:t}){const o=n,r=t,m=e.useAttrs(),s=e.ref("idle"),i=T(ua,o),c=e.computed(()=>le(i.value.btn,m));function h(u){var b,N,w;const k=u["content-type"],d=u["content-disposition"];let p;return p=(w=(N=(b=d==null?void 0:d.split(";"))==null?void 0:b.find(z=>z.includes("filename=")))==null?void 0:N.split("="))==null?void 0:w[1],p||(p=o.fallbackFilename||"file"),{name:p,type:k}}async function g(){s.value="loading";try{const{data:u,headers:k}=await o.filePromise(),{name:d,type:p}=h(k);fa(u,d,p)}catch(u){s.value="error",r("error",u);return}s.value="success",r("success")}return a({getFileInfo:h,download:g,state:s}),(u,k)=>(e.openBlock(),e.createBlock(M.VBtn,e.mergeProps(c.value,{loading:s.value==="loading",class:[c.value.variant==="outlined"?"outlined-style":"","vd-download-btn"],"data-testid":"download-btn",onClick:g}),{default:e.withCtx(()=>[e.renderSlot(u.$slots,"icon",{},()=>[e.createVNode(C.VIcon,e.normalizeProps(e.guardReactiveProps(e.unref(i).icon)),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(_e)),1)]),_:1},16)],!0),e.renderSlot(u.$slots,"default",{},void 0,!0)]),_:3},16,["loading","class"]))}}),[["__scopeId","data-v-ef3f6e33"]]),ce={btnLabel:n=>`S’identifier avec FranceConnect${n?"+":""}`,infoLinkLabel:n=>`Qu’est-ce que FranceConnect${n?"+":""} ?`},ga=["href","aria-label"],ka=["viewBox","width"],va=["fill"],Na=["fill"],ya=["href"],Va=y(e.defineComponent({__name:"FranceConnectBtn",props:{href:{},isConnectPlus:{type:Boolean,default:!1},dark:{type:Boolean,default:!1}},setup(n){const a=n,t=A.useTheme(),o=e.computed(()=>t.current.value.dark||a.dark),r=a.isConnectPlus?"https://franceconnect.gouv.fr/france-connect-plus":"https://franceconnect.gouv.fr/",m=e.computed(()=>a.isConnectPlus?"245px":"209px"),s=e.computed(()=>r);return(i,c)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["vd-france-connect-btn d-flex flex-column align-start",{"vd-france-connect-btn--dark":o.value}])},[e.createElementVNode("a",{href:i.href,"aria-label":e.unref(ce).btnLabel(i.isConnectPlus),class:"vd-france-connect-link d-inline-flex"},[(e.openBlock(),e.createElementBlock("svg",{viewBox:`0 0 ${a.isConnectPlus?"245":"209"} 56`,width:m.value,height:"56",xmlns:"http://www.w3.org/2000/svg"},[c[0]||(c[0]=e.createElementVNode("path",{fill:"#000091",d:"m47 19.1-15-8.68-15 8.76a.6.6 0 0 0-.3.53v16.94a.67.67 0 0 0 .3.53l15 8.6 14.99-8.7a.67.67 0 0 0 .3-.53V19.63a.6.6 0 0 0-.3-.53Z"},null,-1)),c[1]||(c[1]=e.createElementVNode("path",{fill:"#e1000f",d:"m26.64 19.6-5.03 8.63-4.55-9.18 5.39-3.11 4.48 3.16-.29.5ZM47.3 36.58V19.62a.6.6 0 0 0-.3-.52l-15-8.68"},null,-1)),c[2]||(c[2]=e.createElementVNode("path",{fill:"#0063cb",d:"M16.7 36.58 32 10.42v35.36l-15-8.6a.67.67 0 0 1-.3-.53V19.71v16.87Zm24.67-20.74L46.83 19l-4.5 9.15-5.38-9.24 4.42-3.07Z"},null,-1)),c[3]||(c[3]=e.createElementVNode("path",{fill:"#fff",d:"M51.6 16.3 32.43 5.28a.93.93 0 0 0-.84 0L12.4 16.3a.89.89 0 0 0-.39.7v22a.89.89 0 0 0 .4.7l19.18 11.02a.93.93 0 0 0 .84 0L51.6 39.7A.89.89 0 0 0 52 39V17a.89.89 0 0 0-.4-.7ZM22.8 34.06h.08c-.04 0-.08 0-.08.05 0 .1.15 0 .2.1-.24 0-.46.1-.63.27 0 .06.1.06.15.06-.07.1-.23.05-.28.15l.1.05c-.05 0-.1 0-.1.05v.15c-.12 0-.17.1-.27.15.2.15.32 0 .52 0-.52.2-.95.48-1.48.63-.1 0 0 .15-.1.15.15.1.23-.05.38-.05-.66.38-1.34.7-2.04 1.13a.35.35 0 0 0-.1.2h-.2c-.1.05-.05.18-.15.28.23.15.5-.2.65 0 .05 0-.1.05-.2.05-.05 0-.05.1-.1.1H19c-.1.07-.2.12-.2.27a.22.22 0 0 0-.23.1c1.08 0 2.14-.2 3.15-.57.78-.4 1.48-.93 2.09-1.56l.05.1c-.15.43-.43.81-.81 1.08-.28.15-.48.37-.7.48-.15.08-.3.17-.43.27-.63.2-1.28.34-1.94.41l-.3.05-.67.1-2-1.13a.65.65 0 0 1-.28-.41.58.58 0 0 0 .09-.07.26.26 0 0 0-.11-.07v-.65a12.8 12.8 0 0 0 3.04-.94 8.75 8.75 0 0 0-3.04-1.34v-1.52c.55.1 1.1.22 1.64.4.41.15.8.34 1.18.57.15.14.3.27.48.38a.91.91 0 0 0 .8.05h.33a3.96 3.96 0 0 0 1.93-.9c0 .04.05.04.1.04-.07.4-.22.79-.42 1.14 0 .05-.05.15.05.2Zm2.82 3.57c.25-.1.4-.28.63-.38-.05.05-.05.15-.1.2a3.7 3.7 0 0 0-.53.4c-.57.5-1.1 1.04-1.59 1.61-.25.3-.53.58-.8.86l-.3.24-2.54-1.45c.36.03.73.02 1.08-.05a5 5 0 0 0 .86-.33v.1c.7-.27 1.23-.9 1.93-1.13.03 0 .13.1.23.05a1.88 1.88 0 0 1 1.5-.7c0 .05 0 .1.06.1h.02c-.15.13-.32.25-.5.38-.05.05 0 .1.05.1Zm-8.91-6.16v-.19c.52-.14 1.05-.2 1.59-.19a5.86 5.86 0 0 0-1.59.37Zm30.6 5.08a.67.67 0 0 1-.3.53L36.9 42.93a32.3 32.3 0 0 1-3.4-1.19 2.83 2.83 0 0 1-.05-2.24c.07-.3.2-.6.35-.88.02-.03.05-.05.05-.08h.01l.01-.03c.11-.19.24-.38.38-.55l.01-.02.02-.02.02-.01c0-.03.02-.05.05-.08.02-.05.07-.07.1-.12.17-.19.37-.36.58-.5.21-.08.43-.14.65-.18.81.06 1.62.17 2.42.33.1.01.19.05.27.1.3.06.62.04.9-.05a1.14 1.14 0 0 0 .86-.7 1.21 1.21 0 0 0 .05-1.07c-.17-.27 0-.43.19-.59l.06-.05c.09-.06.17-.14.23-.22.13-.25-.1-.4-.15-.63-.05-.1-.22-.05-.32-.2.35-.15.85-.43.63-.86-.16-.22-.38-.63-.1-.85.35-.2.85-.15 1-.48a1.14 1.14 0 0 0-.3-1.09l-.07-.1-.2-.32a6.9 6.9 0 0 0-.53-.76 4.3 4.3 0 0 1-.53-1.01c-.15-.38.05-.7.05-1.08.01-.73-.1-1.46-.33-2.15-.13-.35-.18-.73-.33-1.06-.02-.2-.1-.4-.22-.58a.37.37 0 0 1 0-.33c.2-.14.4-.3.58-.47a.57.57 0 0 0-.2-.71c-.33-.15-.3.33-.53.43h-.15c-.05-.13.05-.18.15-.28 0-.05 0-.15-.05-.15-.2 0-.38-.05-.43-.15a3.96 3.96 0 0 0-1.86-1.29c.19.06.38.1.58.1.34.08.69.04 1-.1.23-.07.28-.48.38-.7a.8.8 0 0 0-.15-.63c-.23-.33-.54-.6-.9-.76a9.13 9.13 0 0 1-.94-.48c-2.96-1.48-9.07-.2-9.53 0-.44.13-.86.29-1.26.48a3.92 3.92 0 0 0-2.36 2.46c-.57.38-1.03.9-1.34 1.51-.42.8-1.05 1.51-.95 2.41.1.78.28 1.49.43 2.3.04.27.1.53.2.8s0 .62.15.85c.07.15.02.33.22.43v.2c.05.05.05.1.16.1v.2c.43.42.8.9 1.1 1.43.1.28-.48.15-.7.05-.41-.27-.8-.6-1.13-.96a.18.18 0 0 0-.05.1c.2.36.9.78.53 1.01-.2.1-.43-.15-.63.05-.05.08 0 .18 0 .28-.28-.2-.58-.1-.86-.2-.2-.05-.25-.43-.48-.43-.6-.14-1.2-.25-1.8-.33-.58-.08-1.16-.14-1.75-.16V19.71a.6.6 0 0 1 .31-.53L32 10.42l15 8.68a.6.6 0 0 1 .3.52v16.93Zm-7.96-8.26a.32.32 0 0 1-.28.15l-.28.27c.1 0 0 .15.1.15-.2.23.08.7-.2.8-.37.1-.76.1-1.13 0a.72.72 0 0 1 .17-.02h.08a.38.38 0 0 0 .34-.13v-.2c0-.05-.05-.05-.1-.05a.16.16 0 0 1-.1.05.22.22 0 0 0-.16-.2.8.8 0 0 1-.72-.27.67.67 0 0 1 .44-.05c.13 0 .08-.23.23-.33h.16c.3-.37.87-.47.97-.84 0-.1-.28-.1-.49-.15a2.26 2.26 0 0 0-.82.05c-.36.05-.7.14-1.05.27.28-.2.6-.36.92-.47.24-.09.48-.15.72-.2l.13-.02.14-.03a.97.97 0 0 1 .55 0c.23.1.62.1.67.25.1.27-.15.54-.44.74-.05.08.15.14.15.23Z"},null,-1)),e.createElementVNode("path",{fill:o.value?"#000091":"#f5f5fe",d:"M64.99 24.87a4.9 4.9 0 0 0 4.08 1.95c2.1 0 3.69-1.3 3.69-3.36 0-3.96-5.63-3.35-5.63-6.02 0-1.02.75-1.75 1.92-1.75 1.02 0 1.85.56 2.55 1.56l1.2-1.05a4.54 4.54 0 0 0-3.77-1.94c-2.07 0-3.53 1.45-3.53 3.21 0 3.93 5.64 3.35 5.64 6.04 0 1.09-.77 1.88-2.1 1.88-1.1 0-2.05-.56-2.86-1.61l-1.2 1.09Zm10.81-5.71 1.75-4.56H75.9l-1.44 4.56h1.34Zm4.82-3.46a1 1 0 0 0 1-1.01 1 1 0 0 0-1-1c-.56 0-1.02.45-1.02 1 0 .56.46 1.02 1.02 1.02Zm-.73 10.8h1.45v-8.57h-1.45v8.57Zm3.77-4.28c0 2.5 1.72 4.62 4.4 4.62 1.28 0 2.28-.5 3.04-1.36v1.02h1.45V13.75H91.1v5.2a3.89 3.89 0 0 0-3.04-1.36c-2.68 0-4.4 2.13-4.4 4.63Zm1.53 0c0-1.82 1.22-3.27 3.04-3.27 1.17 0 2.21.56 2.87 1.58v3.37a3.33 3.33 0 0 1-2.87 1.58c-1.82 0-3.04-1.45-3.04-3.26Zm18.02 2.87-1.07-.83a3.19 3.19 0 0 1-2.6 1.27c-1.84 0-3.15-1.24-3.2-3.3h6.58c.05-.23.1-.56.1-.9 0-2.1-1.5-3.74-3.84-3.74-2.65 0-4.32 2.02-4.32 4.63a4.5 4.5 0 0 0 4.68 4.62c1.6 0 2.87-.68 3.67-1.75Zm-4.06-6.27a2.31 2.31 0 0 1 2.43 2.3h-5.13c.3-1.47 1.29-2.3 2.7-2.3Zm6.32 7.68h1.45v-5.93c.54-.9 1.32-1.62 2.56-1.62 1.33 0 2.2.89 2.2 2.42v5.13h1.44v-5.18c0-2.44-1.43-3.73-3.35-3.73-1.27 0-2.16.55-2.85 1.31v-.97h-1.45v8.57Zm11.06-2.87c0 2.09 1.07 3.04 2.97 3.04.61 0 1.07-.07 1.48-.24v-1.29c-.32.14-.72.2-1.28.2-1.03 0-1.71-.37-1.71-1.71v-4.39h2.97v-1.3H118v-2.15h-1.46v2.14h-1.62v1.31h1.62v4.39Zm7.37-7.92a1 1 0 0 0 1-1.03 1 1 0 0 0-1-1c-.56 0-1.02.46-1.02 1 0 .57.46 1.03 1.02 1.03Zm-.73 10.79h1.45v-8.57h-1.45v8.57Zm3.38-8.57v1.31h1.61v7.26h1.47v-7.26h2.97v-1.3h-2.97v-1.1c0-1.12.64-1.78 1.61-1.78.5 0 .88.15 1.2.39l.65-1.2c-.47-.28-1.1-.5-1.88-.5-1.87 0-3.05 1.3-3.05 3.13v1.05h-1.61Zm8.54-2.22a1 1 0 0 0 1-1.03 1 1 0 0 0-1-1c-.56 0-1.02.46-1.02 1 0 .57.46 1.03 1.02 1.03Zm-.73 10.79h1.44v-8.57h-1.44v8.57Zm12.11-1.41-1.07-.83a3.19 3.19 0 0 1-2.6 1.27c-1.83 0-3.14-1.24-3.2-3.3h6.59c.05-.23.1-.56.1-.9 0-2.1-1.51-3.74-3.84-3.74-2.66 0-4.32 2.02-4.32 4.63a4.5 4.5 0 0 0 4.67 4.62c1.6 0 2.88-.68 3.67-1.75Zm-4.06-6.27a2.31 2.31 0 0 1 2.43 2.3h-5.13c.3-1.47 1.3-2.3 2.7-2.3Zm6.33 7.68h1.44v-5.88c.53-.87 1.26-1.45 2.38-1.45.34 0 .6.04.85.1v-1.4a3.13 3.13 0 0 0-3.23 1.14v-1.08h-1.44v8.57Zm13.66.24c1.11 0 2.23-.5 2.88-1.33v1.09h1.44v-5.75c0-1.88-1.29-3.16-3.47-3.16-1.5 0-2.7.63-3.45 1.65l1.1.83a2.78 2.78 0 0 1 2.3-1.19c1.23 0 2.08.68 2.08 1.87v.6l-2.9.47c-1.81.31-2.8 1.23-2.8 2.52 0 1.46 1.14 2.4 2.82 2.4Zm-1.36-2.45c0-.73.53-1.26 1.7-1.46l2.54-.43v1.69a3 3 0 0 1-2.64 1.46c-1 0-1.6-.53-1.6-1.26Zm7.2-6.36 3.36 8.57h1.9l3.35-8.57h-1.56L172.54 25l-2.74-7.06h-1.56Zm17.86 7.16-1.07-.83a3.19 3.19 0 0 1-2.6 1.27c-1.84 0-3.14-1.24-3.2-3.3h6.58c.06-.23.1-.56.1-.9 0-2.1-1.5-3.74-3.84-3.74-2.65 0-4.31 2.02-4.31 4.63a4.5 4.5 0 0 0 4.67 4.62c1.6 0 2.87-.68 3.67-1.75Zm-4.06-6.27a2.31 2.31 0 0 1 2.43 2.3h-5.13c.3-1.47 1.29-2.3 2.7-2.3Zm10.24 6.66c-1.86 0-3.17-1.43-3.17-3.26 0-1.82 1.31-3.27 3.15-3.27 1.07 0 1.94.51 2.46 1.26l1.14-.87a4.43 4.43 0 0 0-3.6-1.75 4.51 4.51 0 0 0-4.66 4.63c0 2.5 1.82 4.62 4.66 4.62 1.56 0 2.8-.68 3.6-1.75l-1.14-.87a2.95 2.95 0 0 1-2.44 1.26ZM65.85 44.5h2.56v-5.36h4.07V37H68.4v-2.99h4.79V31.9h-7.35v12.6Zm8.9 0h2.3v-5.81a2.48 2.48 0 0 1 2.17-1.2c.41 0 .72.06 1 .13v-2.25a2.52 2.52 0 0 0-.79-.12c-1.02 0-1.8.47-2.39 1.08v-.9h-2.29v9.07Zm9.43.27c1.07 0 2.15-.45 2.72-1.15v.88h2.29v-5.87c0-2-1.35-3.56-3.98-3.56-1.66 0-2.99.68-3.8 1.8l1.68 1.28a2.46 2.46 0 0 1 2.05-1.08c1.04 0 1.76.6 1.76 1.56v.24l-2.77.46c-1.94.33-3 1.35-3 2.72 0 1.68 1.24 2.72 3.05 2.72Zm-.79-2.83c0-.55.4-.95 1.35-1.11l2.16-.36v1.28c-.45.72-1.2 1.2-2.25 1.2-.77 0-1.26-.4-1.26-1Zm8.42 2.56h2.28v-5.92c.34-.58.96-1.35 2.1-1.35 1.12 0 1.8.75 1.8 1.96v5.31h2.31v-5.4c0-2.68-1.56-4.03-3.53-4.03-1.2 0-2.05.47-2.68 1.08v-.72h-2.28v9.07Zm15.44-1.8c-1.53 0-2.63-1.13-2.63-2.74 0-1.58 1.1-2.73 2.6-2.73.93 0 1.65.41 2.09 1.04l1.78-1.37a4.69 4.69 0 0 0-3.84-1.83c-3.13 0-5 2.25-5 4.9 0 2.64 1.87 4.89 5 4.89 1.66 0 3-.72 3.84-1.84l-1.78-1.36a2.42 2.42 0 0 1-2.06 1.04Zm13.54.32-1.63-1.3a2.91 2.91 0 0 1-2.34 1.09c-1.43 0-2.47-.69-2.69-2.38h6.36c.07-.3.14-.77.14-1.28 0-2.37-1.65-4.08-4.17-4.08-2.97 0-4.67 2.21-4.67 4.9 0 2.64 1.82 4.89 5.04 4.89 1.71 0 3.12-.7 3.96-1.84Zm-4.39-6.08c1.28 0 1.95.92 1.98 1.84h-4.17c.25-1.2 1.02-1.84 2.2-1.84Zm12.5 5.53c-2.38 0-4.07-1.86-4.07-4.27 0-2.41 1.7-4.27 4.07-4.27 1.44 0 2.57.7 3.3 1.73l2-1.56a6.53 6.53 0 0 0-5.3-2.56 6.55 6.55 0 0 0-6.7 6.66c0 3.6 2.72 6.66 6.7 6.66 2.28 0 4.16-1 5.3-2.57l-2-1.55a3.94 3.94 0 0 1-3.3 1.73Zm11.36-7.4a4.8 4.8 0 0 0-4.96 4.9 4.8 4.8 0 0 0 4.96 4.89 4.8 4.8 0 0 0 4.97-4.9 4.8 4.8 0 0 0-4.97-4.9Zm.04 7.63c-1.51 0-2.63-1.15-2.63-2.74 0-1.58 1.12-2.73 2.63-2.73 1.46 0 2.56 1.15 2.56 2.73 0 1.57-1.1 2.74-2.56 2.74Zm7.02 1.8h2.28v-5.92c.34-.58.96-1.35 2.1-1.35 1.13 0 1.8.75 1.8 1.96v5.31h2.31v-5.4c0-2.68-1.56-4.03-3.53-4.03-1.2 0-2.05.47-2.68 1.08v-.72h-2.28v9.07Zm11.09 0h2.28v-5.92c.35-.58.96-1.35 2.11-1.35 1.12 0 1.8.75 1.8 1.96v5.31h2.3v-5.4c0-2.68-1.56-4.03-3.52-4.03-1.2 0-2.06.47-2.69 1.08v-.72h-2.28v9.07Zm19.44-1.48-1.63-1.3a2.91 2.91 0 0 1-2.34 1.09c-1.43 0-2.47-.69-2.69-2.38h6.36c.07-.3.14-.77.14-1.28 0-2.37-1.66-4.08-4.18-4.08-2.97 0-4.66 2.21-4.66 4.9 0 2.64 1.82 4.89 5.04 4.89 1.71 0 3.12-.7 3.96-1.84Zm-4.39-6.08c1.28 0 1.94.92 1.98 1.84h-4.18c.26-1.2 1.03-1.84 2.2-1.84Zm10.75 5.76c-1.53 0-2.63-1.13-2.63-2.74 0-1.58 1.1-2.73 2.6-2.73.93 0 1.65.41 2.08 1.04l1.78-1.37a4.69 4.69 0 0 0-3.83-1.83c-3.13 0-5 2.25-5 4.9 0 2.64 1.87 4.89 5 4.89 1.66 0 2.99-.72 3.83-1.84l-1.78-1.36a2.42 2.42 0 0 1-2.05 1.04Zm6.2-1.51c0 2.21 1.09 3.49 3.35 3.49.76 0 1.3-.09 1.75-.29v-2c-.3.13-.72.2-1.35.2-.9 0-1.44-.4-1.44-1.4v-3.71h2.77v-2.05h-2.77v-2.27h-2.3v2.27h-1.7v2.05h1.7v3.7Z"},null,8,va),i.isConnectPlus?(e.openBlock(),e.createElementBlock("path",{key:0,fill:o.value?"#000091":"#f5f5fe",d:"M233 30.571V25.429H223.6V16H218.448V25.429H209V30.572H218.448V40H223.6V30.571H233Z"},null,8,Na)):e.createCommentVNode("",!0)],8,ka))],8,ga),e.createElementVNode("a",{href:s.value,target:"_blank",rel:"noopener noreferrer",class:"vd-france-connect-info-link text-decoration-none mt-3"},[e.createTextVNode(e.toDisplayString(e.unref(ce).infoLinkLabel(i.isConnectPlus))+" ",1),e.createVNode(C.VIcon,{size:"1em",class:"ml-1 mb-1"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(Ee)),1)]),_:1})],8,ya)],2))}}),[["__scopeId","data-v-7d3bb666"]]),O=e.ref([]);function Ca(){return{notificationQueue:O,addNotification:o=>{O.value.some(r=>r.id===o.id)||O.value.push(o)},removeNotification:o=>{O.value=O.value.filter(r=>r.id!==o)},clearQueue:()=>{O.value=[]}}}const wa={snackBar:{timeout:-1},icon:{class:"mr-2"},btn:{variant:"text"}},Sa={key:0},La={class:"d-flex align-center ga-2"},Ba=y(e.defineComponent({__name:"NotificationBar",props:{vuetifyOptions:{},closeBtnText:{default:"Fermer"},rounded:{type:[Number,String,Boolean],default:4},bottom:{type:Boolean,default:!1}},setup(n,{expose:a}){const t=n,o=T(wa,t),r=A.useDisplay(),{notificationQueue:m,removeNotification:s}=Ca(),i=e.getCurrentInstance(),c=e.ref(),h=e.ref(!1),g=e.ref(!1),u=e.computed(()=>!!(i!=null&&i.slots.action)),k=e.computed(()=>r.name.value==="xs"),d=e.computed(()=>r.name.value==="sm"),p=e.computed(()=>{var v,B;return(((B=(v=c.value)==null?void 0:v.message)==null?void 0:B.length)??0)>50}),b={info:te,success:ee,warning:xe,error:Y},N=e.computed(()=>c.value?b[c.value.type]:null),w=e.computed(()=>c.value&&{info:"info",success:"success",warning:"warning",error:"error"}[c.value.type]||"info"),z=e.computed(()=>c.value?{contentColor:c.value.type==="success"||c.value.type==="warning"?"grey-darken-80":"white"}:{contentColor:"white"}),U=e.computed(()=>k.value&&!p.value&&!u.value),K=v=>{c.value={...v}},be=async()=>{for(g.value=!0;m.value.length>0;){const v=m.value[0];K(v),h.value=!0;let B=v.timeout??-1;B<=0?await new Promise(Z=>{const x=e.watch(h,Q=>{Q||(x(),Z())})}):await new Promise(Z=>{const x=setTimeout(()=>{W(),Z()},B),Q=e.watch(h,s1=>{s1||(clearTimeout(x),Q(),Z())})}),s(v.id)}g.value=!1},W=()=>{h.value=!1,c.value&&(s(c.value.id),c.value=void 0)},i1=v=>{K(v),h.value=!0},c1=()=>{if(m.value.length>0){const v=m.value[0];K(v),h.value=!0}};return e.watch(()=>m.value.length,v=>{v>0&&!g.value&&be()}),a({openNotification:i1,handleClearNotification:W,showNextNotification:c1,processNotificationQueue:be,currentNotification:c,isNotificationVisible:h,hasActionSlot:u,isMobileVersion:k,hasLongContent:p,color:w,icon:N,contentStyle:z,smallCloseBtn:U,isVertical:e.computed(()=>p.value&&k.value)}),(v,B)=>{var Z;return c.value?(e.openBlock(),e.createElementBlock("div",Sa,[e.createVNode(ye.VSnackbar,e.mergeProps(e.unref(o).snackbar,{modelValue:h.value,"onUpdate:modelValue":B[0]||(B[0]=x=>h.value=x),role:"status",color:w.value,location:t.bottom?"bottom":"top",vertical:p.value,"multi-line":p.value,timeout:((Z=c.value)==null?void 0:Z.timeout)??-1,width:k.value||d.value?"auto":"960px",rounded:t.rounded,class:[{"long-text":p.value}]}),{actions:e.withCtx(()=>[e.createElementVNode("div",{class:e.normalizeClass(["d-flex ga-2",p.value?"action-section-longText":"action-section-shortText"]),style:{width:"100%"}},[e.renderSlot(v.$slots,"action",{},void 0,!0),e.createVNode(M.VBtn,e.mergeProps({class:["notification-bar__close",{"ma-0":U.value}],"aria-label":"Fermer la notification"},e.unref(o).btn,{onClick:W}),{default:e.withCtx(()=>[U.value?(e.openBlock(),e.createBlock(C.VIcon,{key:1,icon:e.unref(ae)},null,8,["icon"])):(e.openBlock(),e.createElementBlock(e.Fragment,{key:0},[e.createTextVNode(e.toDisplayString(v.closeBtnText),1)],64))]),_:1},16,["class"])],2)]),default:e.withCtx(()=>{var x;return[e.createElementVNode("div",La,[!k.value&&N.value?(e.openBlock(),e.createBlock(C.VIcon,e.mergeProps({key:0},e.unref(o).icon,{icon:N.value,size:"24","aria-hidden":"true"}),null,16,["icon"])):e.createCommentVNode("",!0),e.createElementVNode("p",{class:e.normalizeClass("text-"+z.value.contentColor)},e.toDisplayString((x=c.value)==null?void 0:x.message),3)])]}),_:3},16,["modelValue","color","location","vertical","multi-line","timeout","width","rounded","class"])])):e.createCommentVNode("",!0)}}}),[["__scopeId","data-v-e6faa2ec"]]),xa={label:"Choix de la langue. Actuellement"};var Ma={aa:{name:"Afar",nativeName:"Afaraf"},ab:{name:"Abkhaz",nativeName:"аҧсуа бызшәа"},ae:{name:"Avestan",nativeName:"avesta"},af:{name:"Afrikaans",nativeName:"Afrikaans"},ak:{name:"Akan",nativeName:"Akan"},am:{name:"Amharic",nativeName:"አማርኛ"},an:{name:"Aragonese",nativeName:"aragonés"},ar:{name:"Arabic",nativeName:"العربية"},as:{name:"Assamese",nativeName:"অসমীয়া"},av:{name:"Avaric",nativeName:"авар мацӀ"},ay:{name:"Aymara",nativeName:"aymar aru"},az:{name:"Azerbaijani",nativeName:"azərbaycan dili"},ba:{name:"Bashkir",nativeName:"башҡорт теле"},be:{name:"Belarusian",nativeName:"беларуская мова"},bg:{name:"Bulgarian",nativeName:"български език"},bi:{name:"Bislama",nativeName:"Bislama"},bm:{name:"Bambara",nativeName:"bamanankan"},bn:{name:"Bengali",nativeName:"বাংলা"},bo:{name:"Tibetan",nativeName:"བོད་ཡིག"},br:{name:"Breton",nativeName:"brezhoneg"},bs:{name:"Bosnian",nativeName:"bosanski jezik"},ca:{name:"Catalan",nativeName:"Català"},ce:{name:"Chechen",nativeName:"нохчийн мотт"},ch:{name:"Chamorro",nativeName:"Chamoru"},co:{name:"Corsican",nativeName:"corsu"},cr:{name:"Cree",nativeName:"ᓀᐦᐃᔭᐍᐏᐣ"},cs:{name:"Czech",nativeName:"čeština"},cu:{name:"Old Church Slavonic",nativeName:"ѩзыкъ словѣньскъ"},cv:{name:"Chuvash",nativeName:"чӑваш чӗлхи"},cy:{name:"Welsh",nativeName:"Cymraeg"},da:{name:"Danish",nativeName:"Dansk"},de:{name:"German",nativeName:"Deutsch"},dv:{name:"Divehi",nativeName:"ދިވެހި"},dz:{name:"Dzongkha",nativeName:"རྫོང་ཁ"},ee:{name:"Ewe",nativeName:"Eʋegbe"},el:{name:"Greek",nativeName:"Ελληνικά"},en:{name:"English",nativeName:"English"},eo:{name:"Esperanto",nativeName:"Esperanto"},es:{name:"Spanish",nativeName:"Español"},et:{name:"Estonian",nativeName:"eesti"},eu:{name:"Basque",nativeName:"euskara"},fa:{name:"Persian",nativeName:"فارسی"},ff:{name:"Fula",nativeName:"Fulfulde"},fi:{name:"Finnish",nativeName:"suomi"},fj:{name:"Fijian",nativeName:"vosa Vakaviti"},fo:{name:"Faroese",nativeName:"Føroyskt"},fr:{name:"French",nativeName:"Français"},fy:{name:"Western Frisian",nativeName:"Frysk"},ga:{name:"Irish",nativeName:"Gaeilge"},gd:{name:"Scottish Gaelic",nativeName:"Gàidhlig"},gl:{name:"Galician",nativeName:"galego"},gn:{name:"Guaraní",nativeName:"Avañe'ẽ"},gu:{name:"Gujarati",nativeName:"ગુજરાતી"},gv:{name:"Manx",nativeName:"Gaelg"},ha:{name:"Hausa",nativeName:"هَوُسَ"},he:{name:"Hebrew",nativeName:"עברית"},hi:{name:"Hindi",nativeName:"हिन्दी"},ho:{name:"Hiri Motu",nativeName:"Hiri Motu"},hr:{name:"Croatian",nativeName:"Hrvatski"},ht:{name:"Haitian",nativeName:"Kreyòl ayisyen"},hu:{name:"Hungarian",nativeName:"magyar"},hy:{name:"Armenian",nativeName:"Հայերեն"},hz:{name:"Herero",nativeName:"Otjiherero"},ia:{name:"Interlingua",nativeName:"Interlingua"},id:{name:"Indonesian",nativeName:"Bahasa Indonesia"},ie:{name:"Interlingue",nativeName:"Interlingue"},ig:{name:"Igbo",nativeName:"Asụsụ Igbo"},ii:{name:"Nuosu",nativeName:"ꆈꌠ꒿ Nuosuhxop"},ik:{name:"Inupiaq",nativeName:"Iñupiaq"},io:{name:"Ido",nativeName:"Ido"},is:{name:"Icelandic",nativeName:"Íslenska"},it:{name:"Italian",nativeName:"Italiano"},iu:{name:"Inuktitut",nativeName:"ᐃᓄᒃᑎᑐᑦ"},ja:{name:"Japanese",nativeName:"日本語"},jv:{name:"Javanese",nativeName:"basa Jawa"},ka:{name:"Georgian",nativeName:"ქართული"},kg:{name:"Kongo",nativeName:"Kikongo"},ki:{name:"Kikuyu",nativeName:"Gĩkũyũ"},kj:{name:"Kwanyama",nativeName:"Kuanyama"},kk:{name:"Kazakh",nativeName:"қазақ тілі"},kl:{name:"Kalaallisut",nativeName:"kalaallisut"},km:{name:"Khmer",nativeName:"ខេមរភាសា"},kn:{name:"Kannada",nativeName:"ಕನ್ನಡ"},ko:{name:"Korean",nativeName:"한국어"},kr:{name:"Kanuri",nativeName:"Kanuri"},ks:{name:"Kashmiri",nativeName:"कश्मीरी"},ku:{name:"Kurdish",nativeName:"Kurdî"},kv:{name:"Komi",nativeName:"коми кыв"},kw:{name:"Cornish",nativeName:"Kernewek"},ky:{name:"Kyrgyz",nativeName:"Кыргызча"},la:{name:"Latin",nativeName:"latine"},lb:{name:"Luxembourgish",nativeName:"Lëtzebuergesch"},lg:{name:"Ganda",nativeName:"Luganda"},li:{name:"Limburgish",nativeName:"Limburgs"},ln:{name:"Lingala",nativeName:"Lingála"},lo:{name:"Lao",nativeName:"ພາສາລາວ"},lt:{name:"Lithuanian",nativeName:"lietuvių kalba"},lu:{name:"Luba-Katanga",nativeName:"Kiluba"},lv:{name:"Latvian",nativeName:"latviešu valoda"},mg:{name:"Malagasy",nativeName:"fiteny malagasy"},mh:{name:"Marshallese",nativeName:"Kajin M̧ajeļ"},mi:{name:"Māori",nativeName:"te reo Māori"},mk:{name:"Macedonian",nativeName:"македонски јазик"},ml:{name:"Malayalam",nativeName:"മലയാളം"},mn:{name:"Mongolian",nativeName:"Монгол хэл"},mr:{name:"Marathi",nativeName:"मराठी"},ms:{name:"Malay",nativeName:"Bahasa Melayu"},mt:{name:"Maltese",nativeName:"Malti"},my:{name:"Burmese",nativeName:"ဗမာစာ"},na:{name:"Nauru",nativeName:"Dorerin Naoero"},nb:{name:"Norwegian Bokmål",nativeName:"Norsk bokmål"},nd:{name:"Northern Ndebele",nativeName:"isiNdebele"},ne:{name:"Nepali",nativeName:"नेपाली"},ng:{name:"Ndonga",nativeName:"Owambo"},nl:{name:"Dutch",nativeName:"Nederlands"},nn:{name:"Norwegian Nynorsk",nativeName:"Norsk nynorsk"},no:{name:"Norwegian",nativeName:"Norsk"},nr:{name:"Southern Ndebele",nativeName:"isiNdebele"},nv:{name:"Navajo",nativeName:"Diné bizaad"},ny:{name:"Chichewa",nativeName:"chiCheŵa"},oc:{name:"Occitan",nativeName:"occitan"},oj:{name:"Ojibwe",nativeName:"ᐊᓂᔑᓈᐯᒧᐎᓐ"},om:{name:"Oromo",nativeName:"Afaan Oromoo"},or:{name:"Oriya",nativeName:"ଓଡ଼ିଆ"},os:{name:"Ossetian",nativeName:"ирон æвзаг"},pa:{name:"Panjabi",nativeName:"ਪੰਜਾਬੀ"},pi:{name:"Pāli",nativeName:"पाऴि"},pl:{name:"Polish",nativeName:"Polski"},ps:{name:"Pashto",nativeName:"پښتو"},pt:{name:"Portuguese",nativeName:"Português"},qu:{name:"Quechua",nativeName:"Runa Simi"},rm:{name:"Romansh",nativeName:"rumantsch grischun"},rn:{name:"Kirundi",nativeName:"Ikirundi"},ro:{name:"Romanian",nativeName:"Română"},ru:{name:"Russian",nativeName:"Русский"},rw:{name:"Kinyarwanda",nativeName:"Ikinyarwanda"},sa:{name:"Sanskrit",nativeName:"संस्कृतम्"},sc:{name:"Sardinian",nativeName:"sardu"},sd:{name:"Sindhi",nativeName:"सिन्धी"},se:{name:"Northern Sami",nativeName:"Davvisámegiella"},sg:{name:"Sango",nativeName:"yângâ tî sängö"},si:{name:"Sinhala",nativeName:"සිංහල"},sk:{name:"Slovak",nativeName:"slovenčina"},sl:{name:"Slovenian",nativeName:"slovenščina"},sm:{name:"Samoan",nativeName:"gagana fa'a Samoa"},sn:{name:"Shona",nativeName:"chiShona"},so:{name:"Somali",nativeName:"Soomaaliga"},sq:{name:"Albanian",nativeName:"Shqip"},sr:{name:"Serbian",nativeName:"српски језик"},ss:{name:"Swati",nativeName:"SiSwati"},st:{name:"Southern Sotho",nativeName:"Sesotho"},su:{name:"Sundanese",nativeName:"Basa Sunda"},sv:{name:"Swedish",nativeName:"Svenska"},sw:{name:"Swahili",nativeName:"Kiswahili"},ta:{name:"Tamil",nativeName:"தமிழ்"},te:{name:"Telugu",nativeName:"తెలుగు"},tg:{name:"Tajik",nativeName:"тоҷикӣ"},th:{name:"Thai",nativeName:"ไทย"},ti:{name:"Tigrinya",nativeName:"ትግርኛ"},tk:{name:"Turkmen",nativeName:"Türkmençe"},tl:{name:"Tagalog",nativeName:"Wikang Tagalog"},tn:{name:"Tswana",nativeName:"Setswana"},to:{name:"Tonga",nativeName:"faka Tonga"},tr:{name:"Turkish",nativeName:"Türkçe"},ts:{name:"Tsonga",nativeName:"Xitsonga"},tt:{name:"Tatar",nativeName:"татар теле"},tw:{name:"Twi",nativeName:"Twi"},ty:{name:"Tahitian",nativeName:"Reo Tahiti"},ug:{name:"Uyghur",nativeName:"ئۇيغۇرچە"},uk:{name:"Ukrainian",nativeName:"Українська"},ur:{name:"Urdu",nativeName:"اردو"},uz:{name:"Uzbek",nativeName:"Ўзбек"},ve:{name:"Venda",nativeName:"Tshivenḓa"},vi:{name:"Vietnamese",nativeName:"Tiếng Việt"},vo:{name:"Volapük",nativeName:"Volapük"},wa:{name:"Walloon",nativeName:"walon"},wo:{name:"Wolof",nativeName:"Wollof"},xh:{name:"Xhosa",nativeName:"isiXhosa"},yi:{name:"Yiddish",nativeName:"ייִדיש"},yo:{name:"Yoruba",nativeName:"Yorùbá"},za:{name:"Zhuang",nativeName:"Saɯ cueŋƅ"},zh:{name:"Chinese",nativeName:"中文"},zu:{name:"Zulu",nativeName:"isiZulu"}};const H=Ma,se={},j={},de=[],me=[],he=[];for(const n in H){const{name:a,nativeName:t}=H[n];se[n]=j[a.toLowerCase()]=j[t.toLowerCase()]={code:n,name:a,nativeName:t},de.push(n),me.push(a),he.push(t)}var Za=class F{static getLanguages(a=[]){return a.map(t=>F.validate(t)?Object.assign({},se[t]):{code:t,name:"",nativeName:""})}static getName(a){return F.validate(a)?H[a].name:""}static getAllNames(){return me.slice()}static getNativeName(a){return F.validate(a)?H[a].nativeName:""}static getAllNativeNames(){return he.slice()}static getCode(a){return a=a.toLowerCase(),j.hasOwnProperty(a)?j[a].code:""}static getAllCodes(){return de.slice()}static validate(a){return H.hasOwnProperty(a)}};const R=ne(Za),Aa={menu:{offsetY:!0},btn:{color:"primary",variant:"outlined",ripple:!0},icon:{class:"ml-1"}},_a=["id"],Ta=e.defineComponent({__name:"LangBtn",props:{vuetifyOptions:{},modelValue:{default:"fr"},hideDownArrow:{type:Boolean,default:!1},ariaLabel:{default:xa.label},ariaOwns:{default:"lang-btn"},availableLanguages:{default:()=>["fr","en"]}},emits:["update:modelValue","change"],setup(n,{expose:a,emit:t}){const o=n,r=T(Aa,o),m=t,s=e.ref(!1),i=e.ref(o.modelValue);e.watch(()=>o.modelValue,d=>{i.value=d});function c(d){i.value=d,m("update:modelValue",d),m("change",d),s.value=!1}const h=e.computed(()=>s.value),g=e.computed(()=>"lang-menu-id"),u=e.computed(()=>{const d={};let p;return o.availableLanguages==="*"?p=R.getAllCodes():p=o.availableLanguages,p.forEach(b=>{d[b]={code:b,name:R.getName(b)||b,nativeName:R.getNativeName(b)||R.getName(b)||b}}),d}),k=e.computed(()=>{const d=u.value[i.value];return{name:(d==null?void 0:d.nativeName)||i.value,label:`${o.ariaLabel} ${(d==null?void 0:d.nativeName)||i.value}`}});return a({currentLangData:k,updateLang:c,selectedLanguage:i}),(d,p)=>(e.openBlock(),e.createElementBlock("div",{id:g.value},[e.createVNode(Ve.VMenu,e.mergeProps(e.unref(r).menu,{id:h.value?"lang-menu":g.value,modelValue:s.value,"onUpdate:modelValue":p[0]||(p[0]=b=>s.value=b),role:"menu",location:"bottom"}),{activator:e.withCtx(({props:b})=>[e.createVNode(M.VBtn,e.mergeProps({id:"lang-menu-btn","aria-label":`${o.ariaLabel} ${k.value.name}`,"aria-haspopup":"menu","aria-controls":g.value,"aria-owns":g.value,"aria-expanded":h.value},{...e.unref(r).btn,...b},{class:"vd-lang-btn"}),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(k.value.name)+" ",1),d.hideDownArrow?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(C.VIcon,e.mergeProps({key:0},e.unref(r).icon,{class:"ml-1"}),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(De)),1)]),_:1},16))]),_:2},1040,["aria-label","aria-controls","aria-owns","aria-expanded"])]),default:e.withCtx(()=>[e.createVNode(q.VList,e.mergeProps(e.unref(r).list,{"aria-labelledby":"lang-menu-btn"}),{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(u.value,(b,N,w)=>(e.openBlock(),e.createBlock(q.VListItem,e.mergeProps({ref_for:!0},e.unref(r).listTile,{key:N,role:"menuitem",tabindex:w+1,"aria-label":`${o.ariaLabel} ${b.nativeName}`,"aria-labelledby":`${g.value} ${b.nativeName}`,onClick:z=>c(N)}),{default:e.withCtx(()=>[e.createVNode(q.VListItemTitle,e.mergeProps({ref_for:!0},e.unref(r).listTileTitle),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(b.nativeName),1)]),_:2},1040)]),_:2},1040,["tabindex","aria-label","aria-labelledby","onClick"]))),128))]),_:1},16)]),_:1},16,["id","modelValue"])],8,_a))}}),Oa=y(Ta,[["__scopeId","data-v-40aa801b"]]),I={organism:"Sécurité sociale",assuranceMaladie:"l’Assurance Maladie",signature:"Agir ensemble, protéger chacun",risquePro:"Risques Professionnels"},S={X_SMALL:"x-small",SMALL:"small",NORMAL:"normal"},Da=Object.values(S),V={orange:{darken80:"#2d100b",darken60:"#5a2017",darken40:"#862f22",darken20:"#b33f2e",base:"#e04f39",lighten20:"#e67261",lighten40:"#ec9588",lighten60:"#f3b9b0",lighten80:"#f9dcd7",lighten90:"#fcedeb",lighten97:"#fefaf9"},yellow:{darken80:"#302407",darken60:"#60480e",darken40:"#906b15",darken20:"#c08f1c",base:"#f0b323",lighten20:"#f3c24f",lighten40:"#f6d17b",lighten60:"#f9e1a7",lighten80:"#fcf0d3",lighten90:"#fdf7e9",lighten97:"#fffdf8"},green:{darken80:"#112717",darken60:"#224e2d",darken40:"#347444",darken20:"#459b5a",base:"#56c271",lighten20:"#78ce8d",lighten40:"#9adaaa",lighten60:"#bbe7c6",lighten80:"#ddf3e3",lighten90:"#eef9f1",lighten97:"#fafdfb"},turquoise:{darken80:"#00221c",darken60:"#004439",darken40:"#006755",darken20:"#008972",base:"#00ab8e",lighten20:"#33bca5",lighten40:"#66cdbb",lighten60:"#99ddd2",lighten80:"#cceee8",lighten90:"#e5f7f4",lighten97:"#f7fcfc"},blue:{darken80:"#020d1f",darken60:"#051a3e",darken40:"#07275c",darken20:"#0a347b",base:"#0c419a",lighten20:"#3d67ae",lighten40:"#6d8dc2",lighten60:"#9eb3d7",lighten80:"#ced9eb",lighten90:"#e7ecf5",lighten97:"#f8f9fc"},cyan:{darken80:"#00212d",darken60:"#004259",darken40:"#006386",darken20:"#0084b2",base:"#00a5df",lighten20:"#33b7e5",lighten40:"#66c9ec",lighten60:"#99dbf2",lighten80:"#ccedf9",lighten90:"#e5f6fc",lighten97:"#f7fcfe"},frostedBlue:{darken80:"#142327",darken60:"#28464d",darken40:"#3d6874",darken20:"#518b9a",base:"#65aec1",lighten20:"#84becd",lighten40:"#a3ceda",lighten60:"#c1dfe6",lighten80:"#e0eff3",lighten90:"#f0f7f9",lighten97:"#fafdfd"},parma:{darken80:"#171c26",darken60:"#2f384d",darken40:"#465473",darken20:"#5e709a",base:"#758cc0",lighten20:"#91a3cd",lighten40:"#acbad9",lighten60:"#c8d1e6",lighten80:"#e3e8f2",lighten90:"#f1f3f9",lighten97:"#fbfcfd"},mauve:{darken80:"#201224",darken60:"#402449",darken40:"#60376d",darken20:"#804992",base:"#a05bb6",lighten20:"#b37cc5",lighten40:"#c69dd3",lighten60:"#d9bde2",lighten80:"#ecdef0",lighten90:"#f5eff8",lighten97:"#fcfafd"},pink:{darken80:"#2d051a",darken60:"#5a0a34",darken40:"#87104d",darken20:"#b41567",base:"#e11a81",lighten20:"#e7489a",lighten40:"#ed76b3",lighten60:"#f3a3cd",lighten80:"#f9d1e6",lighten90:"#fce8f2",lighten97:"#fef8fb"},brick:{darken80:"#291112",darken60:"#522224",darken40:"#7b3237",darken20:"#a44349",base:"#cd545b",lighten20:"#d7767c",lighten40:"#e1989d",lighten60:"#ebbbbd",lighten80:"#f5ddde",lighten90:"#faeeef",lighten97:"#fdfafa"},grey:{darken80:"#111212",darken60:"#222324",darken40:"#323535",darken20:"#434647",base:"#545859",lighten20:"#76797a",lighten40:"#989b9b",lighten60:"#bbbcbd",lighten80:"#dddede",lighten90:"#eeeeee",lighten97:"#fafafa"},white:{20:"rgba(255, 255, 255, 0.2000)",38:"rgba(255, 255, 255, 0.3800)",40:"rgba(255, 255, 255, 0.4000)",70:"rgba(255, 255, 255, 0.7000)",8:"rgba(255, 255, 255, 0.0800)",0:"rgba(255, 255, 255, 0.0000)",base:"#ffffff"},transparentBlue:{transparentBlue18:"#a6d4eb",transparentBlue8:"#ebf0f7"}},l={colors:{background:{main:"#e7ecf5",surface:"#ffffff",mainAlt:"#ffffff",surfaceAlt:"#e7ecf5",raised:"#f8f9fc",accent:"#0c419a",accentContrasted:"#07275c",accentAlt:"#111212",info:"#ced9eb",infoSubdued:"#e7ecf5",infoContrasted:"#0c419a",success:"#cceee8",successSubdued:"#e5f7f4",successContrasted:"#56c271",warning:"#fcf0d3",warningSubdued:"#fdf7e9",warningContrasted:"#f0b323",error:"#f9dcd7",errorSubdued:"#fcedeb",errorContrasted:"#b33f2e",disabled:"#dddede",disabledOnDark:"rgba(255, 255, 255, 0.0800)",assure:"#ed76b3",professionnel:"#66c9ec",entreprise:"#f0b323"},border:{darker:"#222324",base:"#989b9b",subdued:"#dddede",accent:"#0c419a",accentContrasted:"#07275c",accentOnDark:"#ffffff",info:"#0c419a",success:"#224e2d",warning:"#60480e",error:"#b33f2e",onDark:"rgba(255, 255, 255, 0.7)",disabled:"#dddede",disabledOnDark:"rgba(255, 255, 255, 0.4)"},text:{base:"#222324",accent:"#0c419a",accentContrasted:"#07275c",subdued:"#545859",info:"#0c419a",success:"#224e2d",warning:"#60480e",error:"#b33f2e",disabled:"#989b9b",onDark:"#ffffff",subduedOnDark:"rgba(255, 255, 255, 0.7)",disabledOnDark:"rgba(255, 255, 255, 0.4)"},icon:{base:"#222324",subdued:"#545859",subduedOnDark:"rgba(255, 255, 255, 0.7)",accent:"#0c419a",accentContrasted:"#07275c",info:"#0c419a",success:"#224e2d",warning:"#60480e",error:"#b33f2e",onDark:"#ffffff",disabled:"#989b9b",disabledOnDark:"rgba(255, 255, 255, 0.4)"},overlay:{fullpage:"#989b9b",onDark:"#ffffff",onLight:"#0c419a"},interactive:{default:"rgba(255, 255, 255, 0.0000)",hover:"#e7ecf5",pressed:"#ced9eb",focus:"#e7ecf5",disabled:"rgba(255, 255, 255, 0.0000)",hoverOnSelected:"#ced9eb"}}},pe={primary:V.blue.base,secondary:V.cyan.darken40,accent:V.cyan.base,error:V.orange.darken20,info:V.blue.base,success:V.green.base,warning:V.yellow.base,risquePro:V.brick.base,onBackground:l.colors.background.surface,onSurfaceAlt:l.colors.background.surfaceAlt,onSurface:l.colors.background.surface,onWarning:l.colors.background.warning,overlayFullpage:l.colors.overlay.fullpage,overlayOnDark:l.colors.overlay.onDark,overlayOnLight:l.colors.overlay.onLight,interactiveDefault:l.colors.interactive.default,interactiveHover:l.colors.interactive.hover,interactivePressed:l.colors.interactive.pressed,interactiveFocus:l.colors.interactive.focus,interactiveDisabled:l.colors.interactive.disabled,interactiveHoverOnSelected:l.colors.interactive.hoverOnSelected,backgroundMain:l.colors.background.main,backgroundSurface:l.colors.background.surface,backgroundSurfaceAlt:l.colors.background.surfaceAlt,backgroungMainAlt:l.colors.background.mainAlt,backgroungRaised:l.colors.background.raised,backgroundAccent:l.colors.background.accent,backgroungAccentContrasted:l.colors.background.accentContrasted,backgroundAccentAlt:l.colors.background.accentAlt,backgroundInfo:l.colors.background.info,backgroundInfoSubdued:l.colors.background.infoSubdued,backgroundInfoContrasted:l.colors.background.infoContrasted,backgroundSuccess:l.colors.background.success,backgroundSuccessSubdued:l.colors.background.successSubdued,backgroundSuccessContrasted:l.colors.background.successContrasted,backgroundWarning:l.colors.background.warning,backgroundWarningSubdued:l.colors.background.warningSubdued,backgroundWarningContrasted:l.colors.background.warningContrasted,backgroundError:l.colors.background.error,backgroundErrorSubdued:l.colors.background.errorSubdued,backgroundErrorContrasted:l.colors.background.errorContrasted,backgroundDisabled:l.colors.background.disabled,backgroundDisabledOnDark:l.colors.background.disabledOnDark,backgroundAssure:l.colors.background.assure,backgroundProfessionnel:l.colors.background.professionnel,backgroundEntreprise:l.colors.background.entreprise,borderDarker:l.colors.border.darker,borderBase:l.colors.border.base,borderSubdued:l.colors.border.subdued,borderAccent:l.colors.border.accent,borderAccentContrasted:l.colors.border.accentContrasted,borderAccentOnDark:l.colors.border.accentOnDark,borderInfo:l.colors.border.info,borderSuccess:l.colors.border.success,borderWarning:l.colors.border.warning,borderError:l.colors.border.error,borderOnDark:l.colors.border.onDark,borderDisabled:l.colors.border.disabled,borderDisabledOnDark:l.colors.border.disabledOnDark,textBase:l.colors.text.base,textAccent:l.colors.text.accent,textAccentContrasted:l.colors.text.accentContrasted,textSubdued:l.colors.text.subdued,textInfo:l.colors.text.info,textSuccess:l.colors.text.success,textWarning:l.colors.text.warning,textError:l.colors.text.error,textDisabled:l.colors.text.disabled,textOnDark:l.colors.text.onDark,textSubduedOnDark:l.colors.text.subduedOnDark,textDisabledOnDark:l.colors.text.disabledOnDark,iconBase:l.colors.icon.base,iconSubdued:l.colors.icon.subdued,iconSubduedOnDark:l.colors.icon.subduedOnDark,iconAccent:l.colors.icon.accent,iconAccentContrasted:l.colors.icon.accentContrasted,iconInfo:l.colors.icon.info,iconSuccess:l.colors.icon.success,iconWarning:l.colors.icon.warning,iconError:l.colors.icon.error,iconOnDark:l.colors.icon.onDark,iconDisabled:l.colors.icon.disabled,iconDisabledOnDark:l.colors.icon.disabledOnDark,transparentBlue18:V.blue.base,transparentBlue8:V.transparentBlue.transparentBlue8},D=(n,a)=>({width:n,height:a}),Ea={[S.X_SMALL]:D("105","32"),[S.SMALL]:D("131","40"),[S.NORMAL]:D("211","64")},$a={[S.X_SMALL]:D("32","32"),[S.SMALL]:D("40","40"),[S.NORMAL]:D("64","64")};function Ha(n,a,t){const r=`(${a.join("|")})`,m=new RegExp(`^${r}$`);return t.match(m)!==null||console.error(`Invalid value for the \`${n}\` prop. Received: "${t}", expected one of: [${a.join(", ")}].`),!0}const Ia=["fill","aria-label","width","height","viewBox","aria-hidden"],za=["fill"],Pa={key:1,"aria-hidden":"true",role:"presentation"},ja={key:2,role:"presentation","aria-hidden":"true"},Ra={key:3},fe=e.defineComponent({__name:"Logo",props:{hideSignature:{type:Boolean,default:!1},hideOrganism:{type:Boolean,default:!1},risquePro:{type:Boolean,default:!1},ariaLabel:{type:String,default:void 0},avatar:{type:Boolean,default:!1},dark:{type:Boolean,default:!1},size:{type:String,default:S.NORMAL,validator:n=>Ha("size",Da,n)}},setup(n){const a=n,t=e.ref(pe.risquePro),o=e.computed(()=>a.dark?"#fff":pe.primary),r=e.computed(()=>a.avatar?$a[a.size]:Ea[a.size]),m=e.computed(()=>a.avatar?"0 0 64 64":a.hideSignature?"0 0 206 64":"0 0 211 64"),s=e.computed(()=>{if(a.ariaLabel)return a.ariaLabel;if(a.avatar)return"";const i=" : ",c=", ";let h=`${I.assuranceMaladie}`;return a.hideOrganism||(h=I.organism.concat(c,h)),a.hideSignature||(h=h.concat(i,I.signature)),a.risquePro&&(h=I.assuranceMaladie+": "+I.risquePro),h});return(i,c)=>(e.openBlock(),e.createElementBlock("svg",{fill:o.value,"aria-label":s.value,width:r.value.width,height:r.value.height,viewBox:m.value,role:"img",focusable:"false",xmlns:"http://www.w3.org/2000/svg","aria-hidden":n.avatar?"true":"false"},[n.risquePro&&!n.avatar?(e.openBlock(),e.createElementBlock("path",{key:0,fill:t.value,d:"M68 55.8h2.8a3 3 0 0 1 2 .6c.5.4.8 1 .8 1.8 0 .6-.2 1-.4 1.4-.2.4-.6.6-1 .9l1.8 3.3h-1.5l-1.6-3h-1.6v3H68zm2.6 3.8c.5 0 1 0 1.2-.3.2-.3.4-.6.4-1 0-1-.6-1.4-1.6-1.4h-1.3v2.7zm4.5-3.8h1.3v8H75zm5.4 8.2a6.5 6.5 0 0 1-2.7-.6L78 62c1 .5 1.9.7 2.7.7.4 0 .8 0 1-.2.3-.2.4-.5.4-.8 0-.3 0-.5-.2-.6-.1-.2-.3-.3-.6-.4l-1.1-.5a7 7 0 0 1-1.3-.5l-.8-.7a2 2 0 0 1-.2-1.1c0-.7.2-1.2.7-1.6.5-.4 1.2-.6 2.1-.6a6.1 6.1 0 0 1 2.6.5l-.2 1.3-1.2-.4c-.4-.2-.8-.2-1.2-.2a2 2 0 0 0-1.1.2c-.2.2-.4.4-.4.7 0 .3 0 .5.2.6l.5.4 1 .3c1 .3 1.6.6 2 1 .5.4.7 1 .7 1.6 0 .6-.3 1.2-.7 1.6-.5.4-1.3.7-2.4.7zm11.7-4.2c0 1-.3 2-.8 2.7l.7.7-.8.8-.7-.7a4 4 0 0 1-2.3.7 4 4 0 0 1-2-.6c-.7-.3-1.1-.8-1.5-1.4-.3-.6-.5-1.4-.5-2.2 0-.8.2-1.6.5-2.2.4-.6.8-1 1.4-1.4a4 4 0 0 1 2-.5 4 4 0 0 1 2.1.5c.6.3 1 .8 1.4 1.4.3.6.5 1.4.5 2.2zm-4 2.9c.6 0 1-.1 1.4-.4l-1-.9.8-.8 1 .9c.3-.5.4-1 .4-1.7 0-.8-.2-1.5-.7-2-.4-.6-1-.9-1.8-.9s-1.5.3-2 .8c-.4.6-.6 1.3-.6 2.1 0 .9.2 1.6.7 2 .4.6 1 .9 1.9.9zm8.5 1.3c-1 0-1.9-.4-2.4-1-.6-.6-.9-1.5-.9-2.6v-4.6h1.3V60c0 .9.2 1.6.5 2 .2.5.8.7 1.5.7.8 0 1.3-.2 1.6-.7.3-.4.4-1.1.4-2v-4.2h1.3v4.6c0 1.1-.2 2-.8 2.6-.5.6-1.4 1-2.5 1zm5-8.2h5v1.3h-3.6v2h2.9v1.2h-3v2.2h3.9v1.3h-5.2zm8.8 8.2a6.5 6.5 0 0 1-2.7-.6l.2-1.4c1 .5 1.9.7 2.7.7.4 0 .8 0 1-.2.3-.2.4-.5.4-.8 0-.3 0-.5-.2-.6-.1-.2-.3-.3-.6-.4l-1.1-.5a7 7 0 0 1-1.3-.5l-.8-.7a2 2 0 0 1-.2-1.1c0-.7.2-1.2.7-1.6.5-.4 1.2-.6 2.1-.6a6.1 6.1 0 0 1 2.6.5l-.2 1.3-1.3-.4c-.3-.2-.7-.2-1.1-.2a2 2 0 0 0-1.1.2c-.3.2-.4.4-.4.7 0 .3 0 .5.2.6l.5.4 1 .3c1 .3 1.6.6 2 1 .5.4.7 1 .7 1.6 0 .6-.3 1.2-.7 1.6-.5.4-1.3.7-2.4.7zm6.9-8.2h2.7c1.9 0 2.8.9 2.8 2.6 0 .9-.2 1.5-.7 2-.5.4-1.2.6-2 .6h-1.5v2.8h-1.3zm2.6 4c.5 0 1 0 1.2-.3.2-.2.4-.6.4-1 0-.6-.2-1-.4-1.2-.3-.2-.7-.4-1.2-.4h-1.3v3zm4-4h2.9a3 3 0 0 1 2 .6c.5.4.7 1 .7 1.8 0 .6-.1 1-.3 1.4l-1 .9 1.7 3.3h-1.5l-1.5-3h-1.6v3h-1.3zm2.6 3.8c.6 0 1 0 1.2-.3.3-.3.4-.6.4-1 0-1-.5-1.4-1.6-1.4h-1.2v2.7zm8 4.4a4 4 0 0 1-2-.6c-.6-.3-1.1-.8-1.5-1.4-.3-.6-.5-1.4-.5-2.2 0-.8.2-1.6.5-2.2.4-.6.9-1 1.4-1.4a4 4 0 0 1 2-.5 4 4 0 0 1 2.1.5c.6.3 1 .8 1.4 1.4.3.6.5 1.4.5 2.2 0 .8-.2 1.6-.5 2.2-.3.6-.8 1.1-1.4 1.4a4 4 0 0 1-2 .6zm0-1.3c.8 0 1.4-.3 1.9-.8.4-.5.6-1.2.6-2 0-1-.2-1.6-.6-2.2-.5-.5-1.1-.8-2-.8-.7 0-1.4.3-1.8.8-.4.6-.7 1.3-.7 2.1 0 .9.3 1.6.7 2 .4.6 1 .9 1.9.9zm5.2-6.9h5v1.3h-3.6v2h2.7v1.2h-2.7v3.5h-1.4zm6 0h5v1.3h-3.6v2h2.8v1.2h-2.8v2.2h3.7v1.3h-5zm8.7 8.2a6.5 6.5 0 0 1-2.6-.6l.2-1.4c1 .5 1.9.7 2.7.7.4 0 .8 0 1-.2.3-.2.4-.5.4-.8 0-.3 0-.5-.2-.6l-.6-.4-1.2-.5a7 7 0 0 1-1.2-.5l-.8-.7a2 2 0 0 1-.3-1.1c0-.7.3-1.2.8-1.6.5-.4 1.2-.6 2.1-.6a6.1 6.1 0 0 1 2.5.5v1.3l-1.4-.4c-.4-.2-.8-.2-1.2-.2a2 2 0 0 0-1 .2c-.3.2-.4.4-.4.7 0 .3 0 .5.2.6l.5.4 1 .3c1 .3 1.6.6 2 1 .4.4.7 1 .7 1.6 0 .6-.3 1.2-.8 1.6-.4.4-1.2.7-2.4.7zm6.7 0a6.5 6.5 0 0 1-2.7-.6l.2-1.4c1 .5 1.9.7 2.7.7.4 0 .8 0 1-.2.3-.2.4-.5.4-.8 0-.3 0-.5-.2-.6-.1-.2-.3-.3-.6-.4l-1.1-.5a7 7 0 0 1-1.3-.5l-.7-.7a2 2 0 0 1-.3-1.1c0-.7.2-1.2.7-1.6.5-.4 1.2-.6 2.2-.6a6.1 6.1 0 0 1 2.5.5l-.2 1.3-1.2-.4c-.4-.2-.8-.2-1.2-.2a2 2 0 0 0-1 .2c-.3.2-.5.4-.5.7l.2.6.5.4 1 .3c1 .3 1.6.6 2 1 .5.4.7 1 .7 1.6 0 .6-.3 1.2-.7 1.6-.5.4-1.3.7-2.4.7zm4.3-8.2h1.3v8h-1.3zm6.6 8.2a4 4 0 0 1-2-.6c-.6-.3-1.1-.8-1.4-1.4-.4-.6-.6-1.4-.6-2.2 0-.8.2-1.6.6-2.2.3-.6.8-1 1.4-1.4a4 4 0 0 1 2-.5 4 4 0 0 1 2 .5c.6.3 1 .8 1.4 1.4.4.6.5 1.4.5 2.2 0 .8-.1 1.6-.5 2.2-.3.6-.8 1.1-1.4 1.4a4 4 0 0 1-2 .6zm0-1.3c.8 0 1.4-.3 1.9-.8.4-.5.6-1.2.6-2 0-1-.2-1.6-.6-2.2-.5-.5-1.1-.8-2-.8-.7 0-1.4.3-1.8.8-.4.6-.7 1.3-.7 2.1 0 .9.3 1.6.7 2 .4.6 1 .9 1.9.9zm5.2-6.9h1.4l3.6 5.5v-5.5h1.3v8h-1l-4-5.8v5.8h-1.3zm8 0h1.4l3.6 5.5v-5.5h1.4v8h-1.1l-3.9-5.8v5.8h-1.3zm8.2 0h5v1.3h-3.7v2h2.9v1.2h-2.9v2.2h3.8v1.3h-5.1zm6.4 0h1.3v6.8h3.4v1.2H200zm8 8.2a6.5 6.5 0 0 1-2.6-.6l.1-1.4c1 .5 1.9.7 2.7.7.4 0 .8 0 1-.2.3-.2.4-.5.4-.8 0-.3 0-.5-.2-.6-.1-.2-.3-.3-.6-.4l-1.1-.5a7 7 0 0 1-1.2-.5c-.4-.2-.6-.4-.8-.7a2 2 0 0 1-.3-1.1c0-.7.2-1.2.7-1.6.5-.4 1.2-.6 2.2-.6a6.1 6.1 0 0 1 2.5.5l-.1 1.3-1.3-.4c-.4-.2-.8-.2-1.2-.2a2 2 0 0 0-1 .2c-.3.2-.4.4-.4.7l.1.6.6.4 1 .3c.9.3 1.5.6 2 1 .4.4.6 1 .6 1.6 0 .6-.2 1.2-.7 1.6-.5.4-1.3.7-2.4.7z"},null,8,za)):!n.hideSignature&&!n.avatar?(e.openBlock(),e.createElementBlock("g",Pa,c[0]||(c[0]=[e.createStaticVNode('<path d="M69.2 55.3h1.3l2.1 6.5h-1.2l-1-3.4-.6-2.1-.6 2-1 3.5H67l2.2-6.5Zm-.9 3.9h3v.9h-3v-1Z"></path><path d="M73.3 62.7c0-.4.3-.7.7-1a.9.9 0 0 1-.4-.8c0-.4.2-.8.5-1-.3-.2-.7-.7-.7-1.3 0-1.1 1-1.7 2-1.7h2.4v1H77c.2 0 .3.4.3.7 0 1.1-.8 1.7-1.8 1.7l-.7-.1-.2.4c0 .3.1.5.8.5h.8c1.2 0 1.8.3 1.8 1.2 0 1-1 1.7-2.6 1.7-1.1 0-2-.4-2-1.3Zm3.6-.2c0-.4-.3-.5-1-.5h-1.2c-.3.1-.4.4-.4.6 0 .4.5.7 1.2.7.8 0 1.4-.4 1.4-.8Zm-.7-3.9c0-.6-.3-1-.8-1s-.8.4-.8 1 .3 1 .8 1 .8-.4.8-1Z"></path><path d="M79 55.5c0-.4.3-.7.7-.7.4 0 .8.3.8.7 0 .3-.3.6-.8.6-.4 0-.7-.2-.7-.6Zm.2 1.5h1.1v4.9h-1.1v-5Z"></path><path d="M82.1 57h1v.8c.4-.6 1-1 1.4-1l.6.2-.2 1-.5-.1c-.4 0-.9.2-1.2 1v3h-1.1v-5Z"></path><path d="M88.1 59.4c0-1.6 1.1-2.6 2.3-2.6 1.3 0 2 1 2 2.3v.6h-3.1c0 .9.6 1.4 1.4 1.4a2 2 0 0 0 1.1-.4l.4.7a3 3 0 0 1-1.6.6c-1.4 0-2.5-1-2.5-2.6Zm3.3-.5c0-.7-.3-1.2-1-1.2-.6 0-1 .5-1.1 1.2h2.1Z"></path><path d="M93.8 57h1v.6c.5-.4 1-.8 1.7-.8 1 0 1.5.8 1.5 2v3h-1.2V59c0-.8-.2-1-.8-1-.4 0-.7.1-1 .5v3.4h-1.2V57Z"></path><path d="m99.3 61.3.5-.7c.4.3.9.5 1.3.5.6 0 .8-.2.8-.6 0-.4-.5-.6-1-.8-.7-.2-1.4-.6-1.4-1.4 0-.8.7-1.4 1.8-1.4.7 0 1.2.3 1.6.5l-.5.7c-.3-.2-.7-.4-1-.4-.6 0-.8.2-.8.5 0 .4.5.6 1 .8.7.2 1.4.5 1.4 1.5 0 .8-.6 1.5-1.9 1.5a3 3 0 0 1-1.8-.7Z"></path><path d="M104 59.4c0-1.6 1.1-2.6 2.3-2.6 1.3 0 2 1 2 2.3v.6h-3.1c0 .9.6 1.4 1.4 1.4a2 2 0 0 0 1.1-.4l.4.7a3 3 0 0 1-1.6.6c-1.4 0-2.5-1-2.5-2.6Zm3.3-.5c0-.7-.3-1.2-1-1.2-.6 0-1.1.5-1.2 1.2h2.2Z"></path><path d="M109.7 57h1v.6c.5-.4 1-.8 1.6-.8.7 0 1 .4 1.3.9.5-.5 1-.9 1.5-.9 1 0 1.6.8 1.6 2v3h-1.2V59c0-.8-.2-1-.7-1-.4 0-.7 0-1 .5v3.4h-1.2V59c0-.8-.3-1-.8-1-.3 0-.6 0-1 .5v3.4h-1.2V57h.1Z"></path><path d="m119.5 61.4-.2.5h-.9v-7h1.2v2.5c.3-.3.8-.6 1.3-.6 1.3 0 2 1 2 2.5 0 1.7-1 2.6-2.1 2.6-.4 0-1-.1-1.3-.5Zm2.2-2c0-1-.3-1.6-1-1.6-.4 0-.7.2-1.1.6v2.2c.3.3.7.4 1 .4.6 0 1.1-.5 1.1-1.6Z"></path><path d="M124.3 60.6v-5.8h1.2v5.9c0 .3.1.4.2.4h.2l.1.8-.6.1c-.8 0-1-.6-1-1.4Z"></path><path d="M127 59.4c0-1.6 1.1-2.6 2.3-2.6 1.3 0 2 1 2 2.3v.6H128c.2.9.7 1.4 1.5 1.4a2 2 0 0 0 1.1-.4l.4.7a3 3 0 0 1-1.7.6c-1.3 0-2.4-1-2.4-2.6Zm3.3-.5c0-.7-.3-1.2-1-1.2-.6 0-1.1.5-1.2 1.2h2.2Z"></path><path d="M133.4 60.4c-.4 0-.8.3-.8.7 0 .5.4.7.8.7 0 .5-.3 1-1 1.2l.3.6c1-.3 1.5-1 1.5-2 0-.7-.3-1.2-.8-1.2Z"></path><path d="M138.2 57h1v.5c.5-.4 1-.7 1.5-.7 1.3 0 2 1 2 2.5 0 1.7-1 2.7-2.1 2.7-.5 0-1-.2-1.3-.6v2.3h-1.1V57Zm3.3 2.4c0-1-.4-1.6-1-1.6-.4 0-.8.2-1.1.6v2.2c.3.3.7.4 1 .4.6 0 1-.5 1-1.6Z"></path><path d="M144.1 57h1v.8c.4-.6 1-1 1.4-1l.6.2-.2 1-.5-.1c-.4 0-.9.2-1.2 1v3h-1.1v-5Z"></path><path d="M147.5 59.4c0-1.6 1.2-2.6 2.4-2.6s2.3 1 2.3 2.6-1.1 2.6-2.3 2.6c-1.2 0-2.4-1-2.4-2.6Zm3.5 0c0-1-.4-1.6-1.2-1.6-.7 0-1.1.6-1.1 1.6s.4 1.6 1.1 1.6c.8 0 1.2-.6 1.2-1.6Z"></path><path d="M153.6 60.2v-2.3h-.7V57h.8l.1-1.4h1V57h1.2v.9h-1.2v2.3c0 .6.2.9.7.9l.5-.1.2.8-1 .2c-1.1 0-1.6-.8-1.6-1.8Z"></path><path d="M157 59.4c0-1.6 1-2.6 2.2-2.6 1.3 0 2 1 2 2.3v.6H158c.2.9.7 1.4 1.5 1.4a2 2 0 0 0 1.1-.4l.4.7a3 3 0 0 1-1.7.6c-1.3 0-2.4-1-2.4-2.6Zm3.2-.5c0-.7-.3-1.2-1-1.2-.6 0-1.1.5-1.2 1.2h2.2Zm-1.6-3.3 1.4-1.7.8.7-1.7 1.5-.5-.5Z"></path><path d="M162.2 62.7c0-.4.3-.7.7-1a.9.9 0 0 1-.4-.8c0-.4.2-.8.5-1-.3-.2-.6-.7-.6-1.3 0-1.1.9-1.7 1.9-1.7h2.4v1h-.9c.2 0 .3.4.3.7 0 1.1-.8 1.7-1.8 1.7l-.7-.1-.2.4c0 .3.1.5.8.5h.8c1.2 0 1.8.3 1.8 1.2 0 1-1 1.7-2.6 1.7-1.1 0-2-.4-2-1.3Zm3.6-.2c0-.4-.3-.5-1-.5h-1.2c-.3.1-.4.4-.4.6 0 .4.5.7 1.3.7.7 0 1.3-.4 1.3-.8Zm-.7-3.9c0-.6-.3-1-.8-1s-.8.4-.8 1 .3 1 .8 1 .8-.4.8-1Z"></path><path d="M167.5 59.4c0-1.6 1.1-2.6 2.3-2.6 1.3 0 2 1 2 2.3v.6h-3.1c0 .9.6 1.4 1.4 1.4a2 2 0 0 0 1.1-.4l.4.7a3 3 0 0 1-1.6.6c-1.4 0-2.5-1-2.5-2.6Zm3.3-.5c0-.7-.3-1.2-1-1.2-.6 0-1.1.5-1.2 1.2h2.2Z"></path><path d="M173.2 57h1v.8c.4-.6 1-1 1.4-1l.6.2-.2 1-.5-.1c-.4 0-.9.2-1.2 1v3h-1.1v-5Z"></path><path d="M179.3 59.4c0-1.6 1.1-2.6 2.4-2.6.6 0 1.1.3 1.4.6l-.5.7c-.3-.2-.5-.3-.8-.3-.8 0-1.3.6-1.3 1.6s.5 1.6 1.3 1.6c.4 0 .7-.1 1-.4l.4.8c-.4.4-1 .6-1.6.6-1.3 0-2.3-1-2.3-2.6Z"></path><path d="M184.5 54.8h1.1v2.8c.4-.4.9-.7 1.5-.7 1.1 0 1.5.7 1.5 2v3h-1.1v-3c0-.7-.2-1-.8-1-.4 0-.7.2-1.1.6v3.4h-1.2v-7Z"></path><path d="M190 60.5c0-1 .9-1.6 2.9-1.8 0-.5-.2-1-.9-1-.5 0-1 .3-1.4.5l-.4-.8a4 4 0 0 1 2-.6c1.2 0 1.8.8 1.8 2.1v2.9h-1v-.6c-.5.4-1 .7-1.5.7-1 0-1.5-.5-1.5-1.4Zm2.9 0v-1c-1.4.2-1.8.5-1.8 1 0 .4.3.6.7.6.4 0 .7-.2 1-.5Z"></path><path d="M195.4 59.4c0-1.6 1.1-2.6 2.4-2.6.6 0 1.1.3 1.4.6l-.5.7c-.3-.2-.5-.3-.8-.3-.8 0-1.3.6-1.3 1.6s.5 1.6 1.3 1.6c.4 0 .7-.1 1-.4l.4.8c-.4.4-1 .6-1.5.6-1.4 0-2.4-1-2.4-2.6Z"></path><path d="M200.5 60v-3h1.2v2.9c0 .8.2 1.1.7 1.1.5 0 .7-.2 1.1-.7V57h1.2v4.9h-1V61h-.1c-.5.5-1 .9-1.6.9-1 0-1.5-.8-1.5-2Z"></path><path d="M206.3 57h1v.6c.5-.4 1-.8 1.7-.8 1 0 1.5.8 1.5 2v3h-1.1V59c0-.8-.2-1-.8-1-.4 0-.7.1-1.1.5v3.4h-1.2V57Z"></path>',27)]))):e.createCommentVNode("",!0),!n.hideOrganism&&!n.avatar?(e.openBlock(),e.createElementBlock("g",ja,c[1]||(c[1]=[e.createStaticVNode('<path d="m3.3 32.3-.4-.4c.1-.3.3-.5.3-.8 0-.3 0-.4-.2-.4s-.3.1-.4.4l-.2.4c-.1.3-.4.6-.8.6-.5 0-.9-.5-.8-1.1 0-.4.1-.7.4-1l.4.4a1 1 0 0 0-.3.6c0 .2.1.4.3.4.2 0 .2-.2.4-.4l.1-.4c.2-.3.5-.6.9-.5.5 0 .9.5.8 1.2 0 .2-.2.7-.5 1Z"></path><path d="M.5 28 0 27l.5-.2.4.9-.4.2Zm.4.6.3-1.8h.5L1.6 28h.6l.1-1 .6.1-.1 1 .6.2.2-1.3.6.1-.3 2-3-.5Z"></path><path d="M2.8 26c-1-.3-1.4-1-1.2-1.8l.6-.8.3.5c-.1.1-.3.2-.3.5-.1.4.2.8.7.9.6.1 1 0 1.2-.5 0-.2 0-.4-.2-.6l.5-.3c.2.4.3.7.2 1-.1.9-.8 1.3-1.8 1Z"></path><path d="m3.7 22.8-1.5-.5.3-.7 1.6.6c.5.2.8.1.9-.2.1-.3 0-.6-.5-.8l-1.6-.6.2-.6 1.5.6c1 .3 1.2.9 1 1.6-.4.8-1 1-1.9.6Z"></path><path d="m3.7 18.6.5-1c.3-.6.7-1 1.4-.6.6.3.6.9.3 1.5l-.2.3 1 .5-.3.6-2.7-1.3Zm1.7-.3c.2-.3.1-.6-.2-.7-.2-.2-.4 0-.6.3l-.1.3.7.4.2-.3Zm.3.2-.2-.6h2l-.4.6H5.7Z"></path><path d="m5.4 15.3.4-.6 2.5 1.7-.3.5-2.6-1.6Z"></path><path d="m7.3 13.5-.5.7-.4-.4 1.4-1.9.5.4-.6.7 2 1.4-.4.6-2-1.5Z"></path><path d="m8.5 11 1.3-1.3.5.4-.9.8.5.4.7-.7.4.4-.7.7.5.5.9-1 .4.5-1.3 1.4-2.3-2Zm.1-.7v-1h.7l-.2 1h-.5Z"></path><path d="M13.6 9.7v-.6c.3 0 .6 0 .8-.2.2-.2.3-.4.2-.5-.2-.2-.3-.1-.6 0h-.4c-.4.2-.7.1-1-.2-.3-.4-.2-1 .3-1.4.3-.2.6-.3 1-.3v.6a1 1 0 0 0-.7.1c-.1.2-.2.4-.1.5h.6l.4-.1c.4-.1.7-.1 1 .3.2.4.2 1-.4 1.4-.3.3-.7.4-1 .4Z"></path><path d="M15.5 6.8c-.5-.8-.4-1.6.3-2 .7-.5 1.5-.2 2 .6s.3 1.6-.4 2c-.6.5-1.4.2-2-.6Zm1.7-1c-.3-.6-.7-.7-1-.5-.4.2-.5.6-.1 1.1.3.6.7.8 1 .6.4-.3.4-.7.1-1.2Z"></path><path d="M18.7 5c-.5-1 0-1.8.6-2.1.4-.2.7-.1 1 0l-.2.5h-.6c-.3.2-.5.7-.2 1.2.2.6.7.8 1 .6.3-.1.4-.3.5-.5l.5.2c-.1.4-.3.7-.7.8-.7.3-1.5.1-2-.8Z"></path><path d="m21.4 2.1.6-.2 1 2.8-.6.2-1-2.8Z"></path><path d="M24 1.2 25 1l1.7 2.7-.7.1-.8-1.3-.4-1v2.7l-.7.2V1.2Zm.2 1.8 1.4-.4.2.5-1.4.4-.2-.5Z"></path><path d="m26.9.5.7-.1.3 2.4 1.2-.2v.6l-1.8.3-.4-3Z"></path><path d="m29.8.1 2-.1v.6h-1.2v.7l1-.1v.6h-1v.7H32V3l-1.9.1-.2-3Z"></path>',15)]))):e.createCommentVNode("",!0),n.avatar?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("g",Ra,c[2]||(c[2]=[e.createStaticVNode('<path d="M100.1 45V30.6h3.8v14.6c0 .8.4 1 .7 1h.5l.5 2.9a5 5 0 0 1-2 .3c-2.6 0-3.5-1.7-3.5-4.4Z"></path><path d="m75.7 40.4 3.8-8.5h4V49h-3.6V38.4l-3 7.8h-2.4l-3-7.8v10.7H68V32h4l3.8 8.5Z"></path><path d="M107.1 45.5c0-2.8 2.3-4.3 7.4-4.9 0-1.1-.8-1.8-2.2-1.8-1 0-2.1.4-3.4 1.2l-1.3-2.6c1.6-1 3.5-1.7 5.5-1.7 3.3 0 5 1.9 5 5.9V49h-3.5v-1.3s-1.5 1.6-3.6 1.6c-2.4 0-3.9-1.7-3.9-4Zm7.4-.3V43c-2.7.3-3.7 1.2-3.7 2.2 0 .8.5 1.2 1.5 1.2.8 0 1.5-.5 2.2-1.2Z"></path><path d="M86.1 45.5c0-2.8 2.3-4.3 7.4-4.9 0-1.1-.8-1.8-2.2-1.8-1 0-2.1.4-3.4 1.2l-1.3-2.6c1.6-1 3.5-1.7 5.5-1.7 3.3 0 5 1.9 5 5.9V49h-3.5v-1.3S92 49.4 90 49.4c-2.4 0-3.9-1.7-3.9-4Zm7.4-.3V43c-2.7.3-3.7 1.2-3.7 2.2 0 .8.6 1.2 1.5 1.2.8 0 1.6-.5 2.2-1.2Z"></path><path d="M129 30.6v6.3a4.1 4.1 0 0 0-3.2-1.2c-2.7 0-5.3 2.6-5.3 6.8 0 4.3 2 7 5.2 7 1.8 0 3.1-1.4 3.2-1.5v1.1h3.8V30.6H129Zm-2.3 15.7c-1.5 0-2.4-1.2-2.4-3.8 0-2.5 1.1-3.6 2.4-3.6.6 0 1.4.2 2.2.8v5.4c-.7.8-1.4 1.2-2.2 1.2Z"></path><path d="M135.7 32c0-1.2 1-2 2.2-2 1.2 0 2.2.8 2.2 2s-1 2-2.2 2c-1.3 0-2.2-.8-2.2-2Zm.3 4h3.8V49H136V36Z"></path><path d="M142.2 42.5c0-4.2 2.6-6.8 5.9-6.8 3.6 0 5.6 2.7 5.6 6.3l-.1 1.7h-7.7c.3 2 1.6 2.8 3.3 2.8 1 0 1.8-.4 2.8-1l1.3 2.5c-1.3.9-3 1.4-4.6 1.4-3.8 0-6.5-2.5-6.5-6.9Zm8.3-1.4c0-1.4-.9-2.5-2.4-2.5-1.2 0-2 .9-2.3 2.5h4.7Z"></path><path d="M68 23.3V8.8h3.7v14.7c0 .8.4 1 .7 1h.5l.4 2.9a5 5 0 0 1-1.9.3c-2.6 0-3.5-1.7-3.5-4.4Z"></path><path d="m88.1 23.3 1 4.1h4l-5.3-17.3h-4.4l-5.3 17.3h4l1-4.1h5Zm-4.2-3 1.6-6.6h.2l1.6 6.5H84Z"></path><path d="m93.9 25.9 1.7-2.4c1.1.9 2.2 1.3 3.3 1.3 1.1 0 1.6-.4 1.6-1 0-1-1.2-1.4-2.6-1.9-1.6-.6-3.4-1.7-3.4-3.8 0-2.5 2-4.2 5-4.2 1.9 0 3.4.8 4.5 1.7l-1.7 2.4c-1-.7-1.8-1.2-2.8-1.2-1 0-1.4.4-1.4 1 0 1 1.2 1.2 2.5 1.7 1.6.7 3.5 1.6 3.5 4s-1.9 4.2-5.3 4.2c-1.7 0-3.6-.7-5-1.8Z"></path><path d="m105.3 25.9 1.7-2.4c1.1.9 2.2 1.3 3.3 1.3 1.1 0 1.6-.4 1.6-1 0-1-1.2-1.4-2.6-1.9-1.6-.6-3.4-1.7-3.4-3.8 0-2.5 2-4.2 5-4.2 1.9 0 3.4.8 4.5 1.7l-1.7 2.4c-1-.7-1.8-1.2-2.8-1.2-1 0-1.4.4-1.4 1 0 1 1.2 1.2 2.5 1.7 1.6.7 3.5 1.6 3.5 4s-1.9 4.2-5.3 4.2c-1.7 0-3.6-.7-5-1.8Z"></path><path d="M132.2 14.3h3.8V16c.8-1.4 2.5-2 3.4-2 .8 0 1.2.2 1.6.3l-.4 3.6c-.5-.2-1.1-.4-1.7-.4-1.5 0-2.8 1.3-2.9 3v6.8h-3.8V14.3Z"></path><path d="M155.7 14.3h3.8v1.6c1-1 2.2-2 4-2 2.7 0 4 2 4 5.3v8.2h-3.9v-7.7c0-1.9-.5-2.5-1.6-2.5-1 0-1.6.5-2.5 1.3v8.8h-3.8v-13Z"></path><path d="M180.6 20.8c0-4.3 2.7-6.9 5.9-6.9 3.7 0 5.7 2.8 5.7 6.3 0 .7 0 1.4-.2 1.8h-7.7c.4 1.9 1.7 2.8 3.4 2.8 1 0 1.8-.4 2.7-1l1.3 2.4c-1.3 1-3 1.5-4.6 1.5-3.7 0-6.5-2.5-6.5-6.9Zm8.4-1.4c0-1.4-.9-2.5-2.4-2.5-1.2 0-2 .8-2.3 2.5h4.7Z"></path><path d="M141.8 23.7c0-2.7 2.3-4.3 7.4-4.8 0-1.2-.8-1.9-2.2-1.9a7 7 0 0 0-3.4 1.2l-1.3-2.5c1.6-1 3.4-1.8 5.5-1.8 3.3 0 5 2 5 6v7.5h-3.6V26s-1.4 1.6-3.5 1.6c-2.4 0-4-1.7-4-4Zm7.4-.2v-2.3c-2.7.4-3.8 1.3-3.8 2.3 0 .8.6 1.2 1.5 1.2s1.7-.5 2.3-1.2Z"></path><path d="M76.7 8.8c-.8 0-1.9.6-1.9 1.7 0 1 .8 1.5 1.6 1.5 0 1.2-1 1.8-1.5 2.1l1 1.4c3.3-1 4-6.7.8-6.7Z"></path><path d="M125.3 14.3V23c-.8 1-1.4 1.4-2.3 1.4-1 0-1.6-.6-1.6-2.5v-7.6h-3.8v8.3c0 3 1.4 5.1 4 5.1 2.5 0 3.8-1.6 3.8-1.6v1.3h3.7V14.3h-3.8Z"></path><path d="M176.3 24.6c-1.7 0-3-1.5-3-3.7 0-2.3 1.3-3.8 3-3.8.6 0 1.1.2 1.7.7l1.8-2.5c-.9-.8-2.1-1.3-3.7-1.3a6.5 6.5 0 0 0-6.6 6.9c0 4.3 2.7 6.8 6.3 6.8 1.4 0 3-.4 4.2-1.5l-1.4-2.7c-.7.6-1.5 1-2.3 1Z"></path>',18)]))),c[3]||(c[3]=e.createStaticVNode('<path d="M34.8 9c-.1-.2-.4-.3-.6-.3H34c-.2-.2-5.3 0-6.5.7 0-.8-.4-1.8-1.7-2-1-.3-3.1.7-2.4 2.8 0 .3.3.6.7.8.2 0 .5 0 .7.6h.3l.2.2h.5c.4.4.8-.1 1-.5l.7 2c-.2-.2-1.8-.6-2.5.2s-1.2 1.8-1.7 3.5c-.2.4-.5.7-1 .9-.9.3-.4.7-.2.7a6 6 0 0 0 2 0c.4-.2.1-1 .5-1.4l.8-1c0 .5 0 .8-.3 1.5-.2.7-1 1-1.3 1.3-.4.5.6.5.8.5.7-.2 1-.2 1.3-.4.4-.2.2-.8.3-1 .3-.7 1.4-2 1.6-2.3.8.2 1.7.2 2 .2 1.9-.2 2.3-1.5 2-2.6-.1-1-.7-1.5-.9-1.8l-.9-1.4 3.5-.9c0 .3.3.3.4.4.2.1.3 0 .2-.1a.6.6 0 0 1-.2-.2h.7c.3 0 .4-.4.3-.5Z"></path><path fill-rule="evenodd" clip-rule="evenodd" d="M61 26.7c-.5-2.6-2.9-4.1-4.1-4.7l-1.4-.4-.4-.2c.1-.5.8-.5 1.2-1.3 1-2.3-1.2-3.8-2.8-3.5-.8.2-1.3.4-1.5 1 0 .4-.3.4-.7.8-.2.2.1.4.2.5l-.1.3v.5s-.3.3 0 .7l.3.8c0 .1 0 .2-.3 0l-3.4-1a37.4 37.4 0 0 1-4.2-4.7c-.7 0 .5 1.3-.1.8-.2 0-.7-.4-.8-.5l-.1-.2-.3-.3H42.2c-.2 0-.1.5 0 .7 0 0 .4 1.2.6 1.4l1.5 1 2.6 3c.7.7 3.8 2.5 3.9 2.6.2 0 .5.8 0 5.5-.1 1.8-1.4 5.6-.8 7.5.4 1.3.9 2.2 1.3 5.6.1.8-.5 1.3-1.3 2l-1.4.8c-.2.2 0 .4.2.5.2 0 .5.3.8.3.3.1.9 0 1.4-.3.7-.3.7-.4 1-.6.5-.3 1-.3 1.2-.8.2-.6-.3-1.4-.3-1.7.4-2.8.9-4.1.2-5.8-.2-.3 1-4 1-3.4.2.9.3 3.8.3 5.9 0 .9.8 4.2 1 5.4.4 1.8-2.6 3.2-2 3.8l1 .3 1-.1c.3-.1.6-.5.7-.6.6-.8.4-.6 1-1.1.4-.5 0-1.4 0-1.8v-2.9c0-1.9 0-2.4.2-3.2l1-6.2s.2 0 .3-.2c.2-.2.1-.5.2-.7 0-.2 0 0 0 0l.2.6-.2.8c-.2.4.1.4.2.5 0 0 1-.7 1.2-1l.1-.8-.2-1.8c.2-.9 1-3.2.8-3.8Zm-2.2 3.6c-.2.5-.2 0-.6 1.7V31.1c0-2.1-1.5-6.5-.6-5.6 0 0 1.2.8 1.4 1.4.2.5.1 1.8-.2 3.4Z"></path><path d="M20 35.3c-.3-.3-1.6-2-2.4-2.7l-1-1.5c-1.6-2-1.9-2.1-3-2.2-.1-.2 0-.3 0-.4 1.3-.5.9-1.6.8-1.7l.2-.6-.2-1-.1-.7c-.8-.9-2.6-.9-3.5-.3-.8.5-.3.9-.6 1.6-.1.5 0 .9.3 1.2 0 .3.8.7.7 1.2-.2.6-1 .7-1 .7l-.3.1c-1.4.8-2.7 2-2.9 3.2 0 1 1.7 2.5 2.7 3.3.1 1.7 1.2 4.4 1.3 4.5.1.3-.3-.3-1.4-.7-.6-.1-1.2-.9-1.4 0 0 .4 0 1-.3 1.8-.2.6 0 1.5.7 1.5.5 0 .8-1.4.8-1.4s2.3 1 3.3.7c.7-.2.8-2.7.2-5-.2-.8.4 1.3 2 3.1.2.4 0 .7.2 2.2v1c0 .7-.7 1.6.9 2 1.6.4 1.5.8 2.5.1.5-.3-1.4-.5-1.8-1.6v-.2c0-.9.3-2.9.2-3.6-.6-3.4-2-5-2.2-5.8 0-2.4-.2-3.2 0-2.6l1 1.5.3.3.4.4 2.8 2.1s.1 1 .6 1c.4 0 2.3-1 2.2-1.1 0-.3-2-.3-2-.4ZM9.7 34l-1-1.8c.4-.7 1-1 1-.9.2 0 0 2.7 0 2.7Z"></path><path d="M51.8 54.8c-.1 0-1.2-.5-2.2-2-.5-.8-3.8-7-4.3-8.2-.9-2.4-8-6.7-8.2-7-.2-.1-.2-.5-.1-.8.5-2 .3-3.8.4-4.1.3-.7.8-1.7.4-2.3l-.7-1.2s3.7 1.4 4.6 1.2c.8-.2 4.5-2.8 4.7-2.9.5-.2 1.8.1 3-1.3.5-.5.2-.6 0-.6.1 0-.1-.2-.4 0-.2.1-1.3.4-1.1.2.8-.5.2-.7.2-.7-.3.3-1.8.7-2.1 1l-.8.5c-.9.5-2.4 1.3-4 1.7-.3 0-3.3-2-5-2.2-1-.1-1.3 0-1.8.1-.6.2-.6-.7 0-1 .2 0 .6-.1.7-.4.2-.4 0-.7 0-.8v-.2l-.1-.1v-.5c.3-.2.2-.4.1-.4-.1-.1-.6-.4-.7-.7 0-.6-.3-.9-.3-1.2 0 0-.1-.8-.4-1-.4-.4-1.2-.8-2.8-.3-.6.1-.5.4-1.8.6-1.6.3-2.4 2.7-2.3 3.7.1.8.8.4.8.7 0 .6-.1 1.5 1 1.8.3 0 1.8-.2 2.4 0 0 0 .5 0 .2.4-.1.2-1.6.9-2 1-1 .4-3.6 4.6-4.3 5-.7.3-1 .6-1.3.8-1 .6-2.1 1.4-2.7 1.4-.7 0-1.4.3-1.9 1.5-.1.3 0 .5.3.5 0 .1.2.3.4.3.2.2.5 0 .7 0l1-.7c.5-.2 4-1.5 4.7-2.1 1.2-.6 3.5-3 4-3s1.6 1 1.2 3c0 .7-1 2-1.4 2.6-1 1.5-.2 2.7-.4 3-1 1.6-2.2 3.7-4.2 5.5-.8.6-2.4.7-3.3 1-2 .5-4.2 2-5.7 2.8-.5.3-1-.3-1.6-.4-.7 0-.7 1-1 1.8l-.7 1.5c-.1.4-.7 1.7-.1 2.2.4.7 1.5-1.4 2.4-2.3.4-.5.7-.7 1.7-1 .6 0 5.6-1.4 8.8-2.2h.3c4.2-1.1 8.6-6.6 8.7-6.6l7.2 3.5c.7.4.7 1.8 1.5 3.4a22 22 0 0 0 4.4 4.9c.4.4 0 1 .2 1.6.2.6.6.6 1.1.6l1.6-.2c.7 0 .5 0 1.3.2.4 0 1.3.1 2-.5 1-1.2-1.2-.6-2.3-1.1Z"></path><path d="M44 51.7a.4.4 0 0 0-.6-.2 22.2 22.2 0 0 1-21-.6.5.5 0 0 0-.6.2c-.1.2 0 .4.1.6a23 23 0 0 0 21.9.5c.2 0 .3-.3.2-.5Z"></path><path d="M12.9 22.9h-.2c-.2-.2-.3-.4-.2-.6 2-4.4 5.2-8 9.3-10.4.2-.1.5 0 .6.2.2.2 0 .4-.1.6-4 2.3-7.1 5.7-9 10l-.4.2Z"></path><path d="M50.3 17.3c-.1 0-.3 0-.3-.2A22 22 0 0 0 36.5 10c-.2 0-.4-.3-.3-.5 0-.3.2-.4.5-.4a23 23 0 0 1 14 7.5v.7h-.4Z"></path>',7))],8,Ia))}}),Fa={class:"pl-0"},qa=["href","aria-label"],Ga={key:1,class:"vd-collapse-list"},Ua={class:"text-subtitle-1 font-weight-bold mb-3"},Ka={class:"pl-0"},Wa=["href","aria-label"],Qa=y(e.defineComponent({__name:"CollapsibleList",props:{listTitle:{},items:{}},setup(n){const a=n,{smAndDown:t}=A.useDisplay(),o=e.computed(()=>t.value);return(r,m)=>o.value?(e.openBlock(),e.createBlock(P.VExpansionPanels,{key:0,class:"vd-collapse-list-mobile",variant:"accordion",flat:""},{default:e.withCtx(()=>[e.createVNode(P.VExpansionPanel,{class:"vd-panel",elevation:"0","bg-color":"transparent"},{default:e.withCtx(()=>[e.createVNode(P.VExpansionPanelTitle,{class:"vd-panel-title text-subtitle-2 pl-0 py-4"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(a.listTitle),1)]),_:1}),e.createVNode(P.VExpansionPanelText,{class:"vd-panel-text"},{default:e.withCtx(()=>[e.createElementVNode("ul",Fa,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(a.items,(s,i)=>(e.openBlock(),e.createElementBlock("li",{key:i,class:"py-3"},[e.createElementVNode("a",{href:s.href,"aria-label":s.text,class:"text-body-2 text-decoration-none"},e.toDisplayString(s.text),9,qa)]))),128))])]),_:1})]),_:1})]),_:1})):(e.openBlock(),e.createElementBlock("div",Ga,[e.createElementVNode("h4",Ua,e.toDisplayString(r.listTitle),1),e.createElementVNode("ul",Ka,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(r.items,(s,i)=>(e.openBlock(),e.createElementBlock("li",{key:i,class:e.normalizeClass({"mb-2":i<r.items.length-1})},[e.createElementVNode("a",{href:s.href,"aria-label":s.ariaLabel,class:"text-body-2 text-decoration-none text--primary"},e.toDisplayString(s.text),9,Wa)],2))),128))])]))}}),[["__scopeId","data-v-8456c2b9"]]),Xa={followUs:"Suivez-nous :"},Ya={class:"d-flex flex-column"},Ja={class:"vd-social-media-links-label text-subtitle-2 text--primary"},e1={class:"d-flex max-width-none"},ue=y(e.defineComponent({__name:"SocialMediaLinks",props:{links:{type:Array,default:null}},setup(n){const a=n;return(t,o)=>(e.openBlock(),e.createElementBlock("div",Ya,[e.createElementVNode("span",Ja,e.toDisplayString(e.unref(Xa).followUs),1),e.createElementVNode("ul",e1,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(a.links,(r,m)=>(e.openBlock(),e.createElementBlock("li",{key:m},[e.createVNode(M.VBtn,{id:`social-btn-${m}`,href:r.href,target:"_blank",rel:"noopener noreferrer",icon:!0,"aria-label":`Lien vers ${r.name}`,variant:"text"},{default:e.withCtx(()=>[e.createVNode(C.VIcon,{size:"30px",class:"vd-social-media-links-icon"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(r.icon),1)]),_:2},1024)]),_:2},1032,["id","href","aria-label"])]))),128))])]))}}),[["__scopeId","data-v-82e1e286"]]),G={"non-compliant":"non-compliant","partially-compliant":"partially-compliant","fully-compliant":"fully-compliant"},a1=[{icon:Oe,name:"LinkedIn",href:"https://www.linkedin.com/company/assurance-maladie/"},{icon:Te,name:"Facebook",href:"https://www.facebook.com/AssurMaladie/"},{icon:$e,name:"Twitter",href:"https://twitter.com/Assur_Maladie"}],t1={footer:{elevation:3,color:V.parma.darken60,height:"auto"},goTopBtn:{elevation:0,density:"compact",icon:"true",variant:"text",color:V.parma.darken60},goTopBtnIcon:{color:"white"}},L={goTopBtnLabel:"Retour en haut de la page",sitemapLabel:"Plan du site",cguLabel:"Conditions générales d’utilisation",cookiesLabel:"Gestion des cookies",legalNoticeLabel:"Mentions légales",versionLabel:"Version",followUs:"Suivez-nous",[G["non-compliant"]]:"non conforme",[G["partially-compliant"]]:"partiellement conforme",[G["fully-compliant"]]:"totalement conforme",a11yLabel:n=>`Accessibilité : ${n}`},n1={key:0,class:"d-flex align-start align-sm-center mb-6"},o1={class:"d-flex flex-grow-1 flex-column flex-sm-row"},r1={key:0,class:"text-primary my-3 mx-4"},l1=y(e.defineComponent({__name:"FooterBar",props:{vuetifyOptions:{},a11yCompliance:{default:"non-compliant"},linkItems:{default:null},items:{default:null},sitemapRoute:{default:()=>({name:"sitemap"})},cguRoute:{default:()=>({name:"cgu"})},cookiesRoute:{default:()=>({name:"cookies"})},legalNoticeRoute:{default:()=>({name:"legalNotice"})},a11yStatementRoute:{default:()=>({name:"a11yStatement"})},hideSitemapLink:{type:Boolean,default:!1},hideCguLink:{type:Boolean,default:!1},hideCookiesLink:{type:Boolean,default:!1},hideLegalNoticeLink:{type:Boolean,default:!1},hideA11yLink:{type:Boolean,default:!1},version:{default:void 0},hideLogo:{type:Boolean,default:!1},hideSocialMediaLinks:{type:Boolean,default:!1},socialMediaLinks:{default:()=>a1},light:{type:Boolean,default:!1}},setup(n,{expose:a}){const t=n,o=J,r=S,m=e.useSlots(),s=A.useDisplay(),i=T(t1,t),c=p=>p.href?"a":"RouterLink",h=()=>{window.scrollTo({top:0,behavior:"smooth"})},g=e.computed(()=>{const p=L[t.a11yCompliance];return typeof p=="string"?L.a11yLabel(p):""}),u=e.computed(()=>!!m.default),k=e.computed(()=>s.smAndDown.value?r.SMALL:r.NORMAL),d=e.computed(()=>t.linkItems?t.linkItems:[{text:L.sitemapLabel,to:t.sitemapRoute,hidden:t.hideSitemapLink},{text:L.cguLabel,to:t.cguRoute,hidden:t.hideCguLink},{text:L.cookiesLabel,to:t.cookiesRoute,hidden:t.hideCookiesLink},{text:L.legalNoticeLabel,to:t.legalNoticeRoute,hidden:t.hideLegalNoticeLink},{text:g.value,to:t.a11yStatementRoute,hidden:t.hideA11yLink}].filter(b=>!b.hidden));return a({logoSize:k}),(p,b)=>(e.openBlock(),e.createBlock(Ce.VFooter,e.mergeProps({...e.unref(i).footer,...p.$attrs},{color:t.light?"white":e.unref(i).footer.color,class:["vd-footer-bar flex-column align-stretch pa-3 w-100",{"py-4 py-sm-7 px-4 px-md-14":u.value,"v-theme--light":t.light,"v-theme--dark":!t.light}],role:"contentinfo"}),{default:e.withCtx(()=>[u.value?(e.openBlock(),e.createElementBlock("div",n1,[e.createElementVNode("div",o1,[e.renderSlot(p.$slots,"logo",{},()=>[t.hideLogo?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(fe,{key:0,size:k.value,class:e.normalizeClass([{"mb-2 mb-sm-0":!t.hideSocialMediaLinks},"logo"])},null,8,["size","class"]))],!0),e.createVNode(we.VSpacer,e.normalizeProps(e.guardReactiveProps(e.unref(i).spacer)),null,16),t.hideSocialMediaLinks?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(ue,{key:0,links:t.socialMediaLinks,class:"mr-8 social"},null,8,["links"]))]),e.createVNode(M.VBtn,e.mergeProps({id:"scroll-btn"},e.unref(i).goTopBtn,{"aria-label":e.unref(L).goTopBtnLabel,onClick:h}),{default:e.withCtx(()=>[e.createVNode(C.VIcon,e.mergeProps(e.unref(i).goTopBtnIcon,{class:"scroll"}),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(o)),1)]),_:1},16)]),_:1},16,["aria-label"])])):e.createCommentVNode("",!0),u.value?(e.openBlock(),e.createBlock(X.VDivider,e.mergeProps({key:1},e.unref(i).divider,{class:"mb-3"}),null,16)):e.createCommentVNode("",!0),e.renderSlot(p.$slots,"default",{},void 0,!0),u.value?(e.openBlock(),e.createBlock(X.VDivider,e.mergeProps({key:2},e.unref(i).divider,{class:"mt-3 mb-6"}),null,16)):e.createCommentVNode("",!0),e.createElementVNode("ul",{class:e.normalizeClass([{"py-2 py-sm-0":!u.value},"vd-footer-bar-links text-sm-center d-flex flex-column flex-sm-row flex-wrap align-start justify-center max-width-none mx-n3 my-n3"])},[e.renderSlot(p.$slots,"prepend",{},void 0,!0),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(d.value,(N,w)=>(e.openBlock(),e.createElementBlock("li",{key:w},[(e.openBlock(),e.createBlock(e.resolveDynamicComponent(c(N)),{href:N.href,to:N.to,"aria-label":N.ariaLabel,target:N.openInNewTab?"_blank":void 0,tabindex:w,rel:N.openInNewTab?"noopener noreferrer":void 0,class:"my-3 mx-4"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(N.text),1)]),_:2},1032,["href","to","aria-label","target","tabindex","rel"]))]))),128)),t.version?(e.openBlock(),e.createElementBlock("li",r1,e.toDisplayString(e.unref(L).versionLabel)+" "+e.toDisplayString(t.version),1)):e.createCommentVNode("",!0),e.renderSlot(p.$slots,"append",{},void 0,!0)],2)]),_:3},16,["color","class"]))}}),[["__scopeId","data-v-ccd9e76e"]]);f.Alert=He,f.BackBtn=pa,f.BackToTopBtn=ma,f.CollapsibleList=Qa,f.CopyBtn=na,f.DownloadBtn=ba,f.FooterBar=l1,f.FranceConnectBtn=Va,f.LangBtn=Oa,f.Logo=fe,f.NotificationBar=Ba,f.PageContainer=Le,f.SkipLink=ca,f.SocialMediaLinks=ue,Object.defineProperty(f,Symbol.toStringTag,{value:"Module"})});
|
|
1
|
+
(function(f,e){typeof exports=="object"&&typeof module<"u"?e(exports,require("vue"),require("vuetify/lib/components/VAlert/index.mjs"),require("vuetify/lib/components/VBtn/index.mjs"),require("vuetify/lib/components/VIcon/index.mjs"),require("vuetify/components"),require("vuetify"),require("vuetify/lib/components/transitions/index.mjs"),require("vuetify/lib/directives/index.mjs"),require("vuetify/lib/components/VExpansionPanel/index.mjs"),require("vuetify/lib/components/VInput/index.mjs"),require("vuetify/lib/components/VDivider/index.mjs"),require("vuetify/lib/components/VTextField/index.mjs"),require("vuetify/lib/components/VChip/index.mjs"),require("vuetify/components/VSkeletonLoader"),require("vuetify/lib/components/VFooter/index.mjs"),require("vuetify/lib/components/VGrid/index.mjs"),require("vuetify/lib/components/VSheet/index.mjs"),require("vuetify/lib/components/VTabs/index.mjs"),require("vuetify/lib/components/VList/index.mjs"),require("vuetify/lib/components/VMenu/index.mjs"),require("vuetify/lib/components/VSnackbar/index.mjs")):typeof define=="function"&&define.amd?define(["exports","vue","vuetify/lib/components/VAlert/index.mjs","vuetify/lib/components/VBtn/index.mjs","vuetify/lib/components/VIcon/index.mjs","vuetify/components","vuetify","vuetify/lib/components/transitions/index.mjs","vuetify/lib/directives/index.mjs","vuetify/lib/components/VExpansionPanel/index.mjs","vuetify/lib/components/VInput/index.mjs","vuetify/lib/components/VDivider/index.mjs","vuetify/lib/components/VTextField/index.mjs","vuetify/lib/components/VChip/index.mjs","vuetify/components/VSkeletonLoader","vuetify/lib/components/VFooter/index.mjs","vuetify/lib/components/VGrid/index.mjs","vuetify/lib/components/VSheet/index.mjs","vuetify/lib/components/VTabs/index.mjs","vuetify/lib/components/VList/index.mjs","vuetify/lib/components/VMenu/index.mjs","vuetify/lib/components/VSnackbar/index.mjs"],e):(f=typeof globalThis<"u"?globalThis:f||self,e(f.DesignSystemV3={},f.Vue,f.VAlert,f.VBtn,f.VIcon,f.components,f.Vuetify,f.transitions,f.vuetifyDirectives,f.VExpansionPanel,f.VInput,f.VDivider,f.VTextField,f.VChip,f.VSkeletonLoader,f.VFooter,f.VGrid,f.VSheet,f.VTabs,f.VList,f.VMenu,f.VSnackbar))})(this,function(f,e,Je,S,w,B,M,D,J,j,et,ee,tt,at,se,nt,ot,te,lt,ae,rt,it){"use strict";const ct={close:"Fermer"};var st="M11,15H13V17H11V15M11,7H13V13H11V7M12,2C6.47,2 2,6.5 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2M12,20A8,8 0 0,1 4,12A8,8 0 0,1 12,4A8,8 0 0,1 20,12A8,8 0 0,1 12,20Z",de="M8.27,3L3,8.27V15.73L8.27,21H15.73C17.5,19.24 21,15.73 21,15.73V8.27L15.73,3M9.1,5H14.9L19,9.1V14.9L14.9,19H9.1L5,14.9V9.1M11,15H13V17H11V15M11,7H13V13H11V7",me="M12,2L1,21H23M12,6L19.53,19H4.47M11,10V14H13V10M11,16V18H13V16",dt="M20,11V13H8L13.5,18.5L12.08,19.92L4.16,12L12.08,4.08L13.5,5.5L8,11H20Z",pe="M13,20H11V8L5.5,13.5L4.08,12.08L12,4.16L19.92,12.08L18.5,13.5L13,8V20Z",mt="M21,7L9,19L3.5,13.5L4.91,12.09L9,16.17L19.59,5.59L21,7Z",he="M12 2C6.5 2 2 6.5 2 12S6.5 22 12 22 22 17.5 22 12 17.5 2 12 2M12 20C7.59 20 4 16.41 4 12S7.59 4 12 4 20 7.59 20 12 16.41 20 12 20M16.59 7.58L10 14.17L7.41 11.59L6 13L10 17L18 9L16.59 7.58Z",pt="M7.41,8.58L12,13.17L16.59,8.58L18,10L12,16L6,10L7.41,8.58Z",ht="M15.41,16.58L10.83,12L15.41,7.41L14,6L8,12L14,18L15.41,16.58Z",ut="M8.59,16.58L13.17,12L8.59,7.41L10,6L16,12L10,18L8.59,16.58Z",K="M19,6.41L17.59,5L12,10.59L6.41,5L5,6.41L10.59,12L5,17.59L6.41,19L12,13.41L17.59,19L19,17.59L13.41,12L19,6.41Z",ft="M19,21H8V7H19M19,5H8A2,2 0 0,0 6,7V21A2,2 0 0,0 8,23H19A2,2 0 0,0 21,21V7A2,2 0 0,0 19,5M16,1H4A2,2 0 0,0 2,3V17H4V3H16V1Z",bt="M5,20H19V18H5M19,9H15V3H9V9H5L12,16L19,9Z",gt="M12 2.04C6.5 2.04 2 6.53 2 12.06C2 17.06 5.66 21.21 10.44 21.96V14.96H7.9V12.06H10.44V9.85C10.44 7.34 11.93 5.96 14.22 5.96C15.31 5.96 16.45 6.15 16.45 6.15V8.62H15.19C13.95 8.62 13.56 9.39 13.56 10.18V12.06H16.34L15.89 14.96H13.56V21.96A10 10 0 0 0 22 12.06C22 6.53 17.5 2.04 12 2.04Z",ue="M13,9H11V7H13M13,17H11V11H13M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2Z",ne="M11,9H13V7H11M12,20C7.59,20 4,16.41 4,12C4,7.59 7.59,4 12,4C16.41,4 20,7.59 20,12C20,16.41 16.41,20 12,20M12,2A10,10 0 0,0 2,12A10,10 0 0,0 12,22A10,10 0 0,0 22,12A10,10 0 0,0 12,2M11,17H13V11H11V17Z",kt="M21,11H6.83L10.41,7.41L9,6L3,12L9,18L10.41,16.58L6.83,13H21V11Z",yt="M19 3A2 2 0 0 1 21 5V19A2 2 0 0 1 19 21H5A2 2 0 0 1 3 19V5A2 2 0 0 1 5 3H19M18.5 18.5V13.2A3.26 3.26 0 0 0 15.24 9.94C14.39 9.94 13.4 10.46 12.92 11.24V10.13H10.13V18.5H12.92V13.57C12.92 12.8 13.54 12.17 14.31 12.17A1.4 1.4 0 0 1 15.71 13.57V18.5H18.5M6.88 8.56A1.68 1.68 0 0 0 8.56 6.88C8.56 5.95 7.81 5.19 6.88 5.19A1.69 1.69 0 0 0 5.19 6.88C5.19 7.81 5.95 8.56 6.88 8.56M8.27 18.5V10.13H5.5V18.5H8.27Z",vt="M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z",fe="M7,10L12,15L17,10H7Z",Vt="M14,3V5H17.59L7.76,14.83L9.17,16.24L19,6.41V10H21V3M19,19H5V5H12V3H5C3.89,3 3,3.9 3,5V19A2,2 0 0,0 5,21H19A2,2 0 0,0 21,19V12H19V19Z",Nt="M22.46,6C21.69,6.35 20.86,6.58 20,6.69C20.88,6.16 21.56,5.32 21.88,4.31C21.05,4.81 20.13,5.16 19.16,5.36C18.37,4.5 17.26,4 16,4C13.65,4 11.73,5.92 11.73,8.29C11.73,8.63 11.77,8.96 11.84,9.27C8.28,9.09 5.11,7.38 3,4.79C2.63,5.42 2.42,6.16 2.42,6.94C2.42,8.43 3.17,9.75 4.33,10.5C3.62,10.5 2.96,10.3 2.38,10C2.38,10 2.38,10 2.38,10.03C2.38,12.11 3.86,13.85 5.82,14.24C5.46,14.34 5.08,14.39 4.69,14.39C4.42,14.39 4.15,14.36 3.89,14.31C4.43,16 6,17.26 7.89,17.29C6.43,18.45 4.58,19.13 2.56,19.13C2.22,19.13 1.88,19.11 1.54,19.07C3.44,20.29 5.7,21 8.12,21C16,21 20.33,14.46 20.33,8.79C20.33,8.6 20.33,8.42 20.32,8.23C21.16,7.63 21.88,6.87 22.46,6Z";const wt=e.defineComponent({__name:"Alert",props:e.mergeModels({type:{default:"info"},closable:{type:Boolean,default:!1},variant:{default:"tonal"}},{modelValue:{type:Boolean,default:!0},modelModifiers:{}}),emits:["update:modelValue"],setup(t,{expose:n}){const a=e.useModel(t,"modelValue"),l=t,o=e.computed(()=>({info:ne,success:he,warning:me,error:de})[l.type]);function r(){a.value=!1}return n({prependIcon:o,dismissAlert:r}),(s,c)=>(e.openBlock(),e.createBlock(Je.VAlert,{modelValue:a.value,"onUpdate:modelValue":c[0]||(c[0]=i=>a.value=i),type:s.type,closable:s.closable,variant:s.variant,class:e.normalizeClass(`alert alert--${s.type}`),color:s.type,border:s.variant==="tonal"?"start":!1},e.createSlots({prepend:e.withCtx(()=>[e.createVNode(w.VIcon,{class:"alert-icon",size:"1.5rem"},{default:e.withCtx(()=>[e.renderSlot(s.$slots,"icon",{},()=>[e.createTextVNode(e.toDisplayString(o.value),1)],!0)]),_:3})]),default:e.withCtx(()=>[e.renderSlot(s.$slots,"default",{},void 0,!0)]),_:2},[s.closable?{name:"close",fn:e.withCtx(()=>[e.createVNode(S.VBtn,{color:s.variant==="outlined"?void 0:"primary",ripple:!1,variant:"text",width:"auto",height:"100%",class:"alert-close-btn",onClick:r},{default:e.withCtx(()=>[e.createVNode(w.VIcon,{size:"small"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(K)),1)]),_:1}),e.createElementVNode("span",null,e.toDisplayString(e.unref(ct).close),1)]),_:1},8,["color"])]),key:"0"}:void 0]),1032,["modelValue","type","closable","variant","class","color","border"]))}}),v=(t,n)=>{const a=t.__vccOpts||t;for(const[l,o]of n)a[l]=o;return a},Bt=v(wt,[["__scopeId","data-v-6f216856"]]),Ct={label:"Retour"},St=v(e.defineComponent({__name:"BackBtn",props:{hideBackIcon:{type:Boolean},dark:{type:Boolean}},setup(t){const n=t,a=e.ref(dt),l=e.computed(()=>n.dark??!1),o=e.computed(()=>l.value?"white":"primary"),r=e.computed(()=>l.value?"outlined":"text"),s=e.computed(()=>l.value?"dark":"light"),c=e.computed(()=>l.value?"white":"primary"),i=e.computed(()=>({"px-0":!l.value,"pr-1":!l.value&&!n.hideBackIcon}));return(d,p)=>(e.openBlock(),e.createBlock(e.unref(B.VBtn),e.mergeProps(d.$attrs,{variant:r.value,theme:s.value,color:c.value,outlined:l.value,class:["vd-back-btn","text-none",i.value]}),{default:e.withCtx(()=>[e.renderSlot(d.$slots,"icon",{},()=>[n.hideBackIcon?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(e.unref(B.VIcon),{key:0,color:o.value,class:e.normalizeClass([{"ml-n1":l.value},"mr-1"])},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(a.value),1)]),_:1},8,["color","class"]))],!0),e.renderSlot(d.$slots,"default",{},()=>[e.createTextVNode(e.toDisplayString(e.unref(Ct).label),1)],!0)]),_:3},16,["variant","theme","color","outlined","class"]))}}),[["__scopeId","data-v-b9c7d584"]]);function be(t){return t&&t.__esModule&&Object.prototype.hasOwnProperty.call(t,"default")?t.default:t}var Mt=function(n){return Lt(n)&&!Zt(n)};function Lt(t){return!!t&&typeof t=="object"}function Zt(t){var n=Object.prototype.toString.call(t);return n==="[object RegExp]"||n==="[object Date]"||$t(t)}var _t=typeof Symbol=="function"&&Symbol.for,xt=_t?Symbol.for("react.element"):60103;function $t(t){return t.$$typeof===xt}function Et(t){return Array.isArray(t)?[]:{}}function z(t,n){return n.clone!==!1&&n.isMergeableObject(t)?I(Et(t),t,n):t}function Tt(t,n,a){return t.concat(n).map(function(l){return z(l,a)})}function It(t,n){if(!n.customMerge)return I;var a=n.customMerge(t);return typeof a=="function"?a:I}function At(t){return Object.getOwnPropertySymbols?Object.getOwnPropertySymbols(t).filter(function(n){return Object.propertyIsEnumerable.call(t,n)}):[]}function ge(t){return Object.keys(t).concat(At(t))}function ke(t,n){try{return n in t}catch{return!1}}function Ht(t,n){return ke(t,n)&&!(Object.hasOwnProperty.call(t,n)&&Object.propertyIsEnumerable.call(t,n))}function Ot(t,n,a){var l={};return a.isMergeableObject(t)&&ge(t).forEach(function(o){l[o]=z(t[o],a)}),ge(n).forEach(function(o){Ht(t,o)||(ke(t,o)&&a.isMergeableObject(n[o])?l[o]=It(o,a)(t[o],n[o],a):l[o]=z(n[o],a))}),l}function I(t,n,a){a=a||{},a.arrayMerge=a.arrayMerge||Tt,a.isMergeableObject=a.isMergeableObject||Mt,a.cloneUnlessOtherwiseSpecified=z;var l=Array.isArray(n),o=Array.isArray(t),r=l===o;return r?l?a.arrayMerge(t,n,a):Ot(t,n,a):z(n,a)}I.all=function(n,a){if(!Array.isArray(n))throw new Error("first argument should be an array");return n.reduce(function(l,o){return I(l,o,a)},{})};var Dt=I,zt=Dt;const ye=be(zt);function L(t,n){return e.computed(()=>ye(t,e.toRaw(n.vuetifyOptions)??{}))}function P(t,n="px"){if(!(t==null||t===""))return isNaN(+t)?String(t):`${Number(t)}${n}`}const Pt={label:"Retour en haut"},Rt={btn:{variant:"outlined",color:"primary",class:"text-wrap px-0 px-md-4"},icon:{color:"primary",size:"small",class:"ml-0 ml-md-1"}},Ft=v(e.defineComponent({__name:"BackToTopBtn",props:{threshold:{default:120},nudgeRight:{default:"16px"},nudgeBottom:{default:"16px"},target:{default:void 0},vuetifyOptions:{}},setup(t){const n=t,a=L(Rt,n),l=e.ref(!1),o=e.ref(!1),r=e.computed(()=>n.target?`#${n.target}`:null),s=e.computed(()=>{const u=P(n.nudgeRight)||"0";return{bottom:P(n.nudgeBottom)||"0",marginRight:u}}),c=e.computed(()=>o.value?"36px":void 0),i=e.computed(()=>({"d-sr-only":o.value})),d=M.useDisplay();e.watch(()=>d.smAndDown.value,u=>{o.value=u},{immediate:!0});const p=u=>{const g=u.currentTarget;g instanceof Window?l.value=window.scrollY>n.threshold:l.value=g.scrollTop>n.threshold},b=()=>{n.target?(document.getElementById(n.target)||window).scrollTo(0,0):window.scrollTo(0,0)},y=e.computed(()=>n.target?document.getElementById(n.target):window);return e.onMounted(()=>{var u;(u=y.value)==null||u.addEventListener("scroll",p)}),e.onUnmounted(()=>{var u;(u=y.value)==null||u.removeEventListener("scroll",p)}),(u,g)=>(e.openBlock(),e.createBlock(D.VFadeTransition,null,{default:e.withCtx(()=>[e.withDirectives((e.openBlock(),e.createBlock(S.VBtn,e.mergeProps({...e.unref(a).btn,...u.$attrs},{style:s.value,"min-width":c.value,class:"vd-back-to-top-btn",onClick:b}),{default:e.withCtx(()=>[e.createElementVNode("span",{class:e.normalizeClass(i.value)},[e.renderSlot(u.$slots,"default",{},()=>[e.createTextVNode(e.toDisplayString(e.unref(Pt).label),1)],!0)],2),e.renderSlot(u.$slots,"icon",{},()=>[e.createVNode(w.VIcon,e.normalizeProps(e.guardReactiveProps(e.unref(a).icon)),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(pe)),1)]),_:1},16)],!0)]),_:3},16,["style","min-width"])),[[e.vShow,l.value],[J.Scroll,p,r.value]])]),_:3}))}}),[["__scopeId","data-v-c019b012"]]),jt={class:"pl-0"},Kt=["href","aria-label"],qt={key:1,class:"vd-collapse-list"},Ut={class:"text-subtitle-1 font-weight-bold mb-3"},Gt={class:"pl-0"},Wt=["href","aria-label"],Yt=v(e.defineComponent({__name:"CollapsibleList",props:{listTitle:{},items:{}},setup(t){const n=t,{smAndDown:a}=M.useDisplay(),l=e.computed(()=>a.value);return(o,r)=>l.value?(e.openBlock(),e.createBlock(j.VExpansionPanels,{key:0,class:"vd-collapse-list-mobile",variant:"accordion",flat:""},{default:e.withCtx(()=>[e.createVNode(j.VExpansionPanel,{class:"vd-panel",elevation:"0","bg-color":"transparent"},{default:e.withCtx(()=>[e.createVNode(j.VExpansionPanelTitle,{class:"vd-panel-title text-subtitle-2 pl-0 py-4"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(n.listTitle),1)]),_:1}),e.createVNode(j.VExpansionPanelText,{class:"vd-panel-text"},{default:e.withCtx(()=>[e.createElementVNode("ul",jt,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(n.items,(s,c)=>(e.openBlock(),e.createElementBlock("li",{key:c,class:"py-3"},[e.createElementVNode("a",{href:s.href,"aria-label":s.text,class:"text-body-2 text-decoration-none"},e.toDisplayString(s.text),9,Kt)]))),128))])]),_:1})]),_:1})]),_:1})):(e.openBlock(),e.createElementBlock("div",qt,[e.createElementVNode("h4",Ut,e.toDisplayString(o.listTitle),1),e.createElementVNode("ul",Gt,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(o.items,(s,c)=>(e.openBlock(),e.createElementBlock("li",{key:c,class:e.normalizeClass({"mb-2":c<o.items.length-1})},[e.createElementVNode("a",{href:s.href,"aria-label":s.ariaLabel,class:"text-body-2 text-decoration-none text--primary"},e.toDisplayString(s.text),9,Wt)],2))),128))])]))}}),[["__scopeId","data-v-8456c2b9"]]);function Qt(t){const n=document.createElement("textarea");n.value=t,n.setAttribute("readonly",""),n.style.position="absolute",n.style.left="-9999px",document.body.appendChild(n);const a=document.getSelection();let l=!1;a&&(l=a.rangeCount>0?a.getRangeAt(0):!1),n.select(),navigator.clipboard?navigator.clipboard.writeText(t):document.execCommand("copy"),document.body.removeChild(n),a&&l&&(a.removeAllRanges(),a.addRange(l))}const Xt={tooltip:"Texte copié !"},Jt={menu:{location:"end center",offset:16,zIndex:8,contentClass:"vd-copy-tooltip-menu text-white text-body-2 ml-2"},btn:{icon:!0,variant:"text",density:"comfortable"},icon:{color:"grey-darken-20"}},e1=["id"],t1=e.defineComponent({__name:"CopyBtn",props:{vuetifyOptions:{},ariaLabel:{default:"copy-btn"},ariaOwns:{default:"copy-btn"},textToCopy:{type:[Function,String],default:""},hideTooltip:{type:Boolean,default:!1},tooltipDuration:{default:2500}},setup(t,{expose:n}){const a=t,l=L(Jt,a),o=e.ref(!1),r=ft;function s(){const c=typeof a.textToCopy=="function"?a.textToCopy():a.textToCopy;Qt(c),!a.hideTooltip&&setTimeout(()=>{o.value=!1},a.tooltipDuration)}return n({copy:s,tooltip:o}),(c,i)=>(e.openBlock(),e.createElementBlock("div",{id:a.ariaOwns,class:"vd-copy-btn"},[e.createVNode(e.unref(B.VMenu),e.mergeProps(e.unref(l).menu,{id:a.ariaOwns,modelValue:o.value,"onUpdate:modelValue":i[0]||(i[0]=d=>o.value=d),disabled:a.hideTooltip,transition:"fade-transition"}),{activator:e.withCtx(({props:d})=>[e.createVNode(e.unref(B.VBtn),e.mergeProps({...d,...e.unref(l).btn},{"aria-label":a.ariaLabel,"aria-owns":a.ariaOwns,"data-test-id":a.ariaOwns,onClick:s}),{default:e.withCtx(()=>[e.renderSlot(c.$slots,"icon",{},()=>[e.createVNode(e.unref(B.VIcon),e.normalizeProps(e.guardReactiveProps(e.unref(l).icon)),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(r)),1)]),_:1},16)])]),_:2},1040,["aria-label","aria-owns","data-test-id"])]),default:e.withCtx(()=>[e.renderSlot(c.$slots,"tooltip",{},()=>[e.createTextVNode(e.toDisplayString(e.unref(Xt).tooltip),1)])]),_:3},16,["id","modelValue","disabled"])],8,e1))}}),a1={menu:{color:"primary"},option:{color:"primary"}},n1=["onKeydown"],o1=v(e.defineComponent({__name:"CustomInputSelect",props:{vuetifyOptions:{},modelValue:{default:null},items:{default:()=>[]},textKey:{default:"text"},valueKey:{default:"value"},label:{default:"Sélectionnez une option"},outlined:{type:Boolean,default:!1},required:{type:Boolean,default:!1},errorMessages:{default:()=>[]}},emits:["update:modelValue"],setup(t,{emit:n}){const a=t,l=L(a1,a),o=n,r=e.ref(!1),s=e.ref(a.modelValue),c=()=>{r.value=!r.value},i=()=>{r.value=!1},d=e.ref(`custom-input-select-${Math.random().toString(36).substring(7)}`),p=k=>{s.value=k,o("update:modelValue",k),r.value=!1},b=k=>k[a.textKey],y=e.computed(()=>s.value&&typeof s.value=="object"?s.value[a.textKey]:a.label);e.watch(()=>a.modelValue,k=>{s.value=k}),e.watch(()=>a.errorMessages,k=>{h.value=k});const u=e.computed(()=>a.outlined?"v-btn v-btn--density-default v-btn--size-default v-btn--variant-outlined":"text-color"),g=e.computed(()=>a.items.map(k=>typeof k=="string"?{[a.textKey]:k,[a.valueKey]:k}:k)),h=e.ref(a.errorMessages),m=()=>a.required&&!s.value?(h.value=["Le champ est requis."],!1):a.errorMessages.length>0?(h.value=a.errorMessages,!1):(h.value=[],!0);return(k,V)=>(e.openBlock(),e.createBlock(et.VInput,{id:d.value,modelValue:s.value,"onUpdate:modelValue":V[1]||(V[1]=C=>s.value=C),label:a.label,title:a.label,role:"menu","error-messages":h.value,onClick:m},{default:e.withCtx(()=>[e.withDirectives((e.openBlock(),e.createElementBlock("div",{ref:"menu",class:e.normalizeClass(["custom-select",u.value,"text-"+e.unref(l).menu.color]),role:"menu",tabindex:"0",onClick:c,onKeydown:[e.withKeys(e.withModifiers(c,["prevent"]),["enter"]),e.withKeys(e.withModifiers(c,["prevent"]),["space"])]},[e.createElementVNode("span",null,e.toDisplayString(y.value),1),e.createVNode(e.unref(B.VIcon),null,{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(pt)),1)]),_:1})],42,n1)),[[J.ClickOutside,i]]),r.value?(e.openBlock(),e.createBlock(e.unref(B.VList),e.mergeProps({key:0},e.unref(l).list,{class:"v-list",style:`max-width: ${k.$refs.menu?k.$refs.menu.getBoundingClientRect().width:0}px; ${a.outlined?"top: 36px;":"top: 30px;"}`,"aria-label":a.label,title:a.label,onKeydown:V[0]||(V[0]=e.withKeys(e.withModifiers(C=>r.value=!1,["prevent"]),["esc"]))}),{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(g.value,(C,x)=>(e.openBlock(),e.createBlock(e.unref(B.VListItem),e.mergeProps({ref_for:!0},e.unref(l).option,{key:x,ref_for:!0,ref:"options-"+x,"base-color":e.unref(l).option.color,role:"option",class:"v-list-item","aria-selected":s.value===C,tabindex:x+1,onClick:re=>p(C)}),{default:e.withCtx(()=>[e.createVNode(e.unref(B.VListItemTitle),null,{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(b(C)),1)]),_:2},1024)]),_:2},1040,["base-color","aria-selected","tabindex","onClick"]))),128))]),_:1},16,["style","aria-label","title"])):e.createCommentVNode("",!0)]),_:1},8,["id","modelValue","label","title","error-messages"]))}}),[["__scopeId","data-v-4858239a"]]),l1=v(e.defineComponent({__name:"CustomSelect",props:{modelValue:{type:[Object,String],default:null},items:{type:Array,default:()=>[]},label:{type:String,default:"Sélectionnez une option"},errorMessages:{type:[String,Array],default:()=>[]},required:{type:Boolean,default:!1},menuId:{type:String,default:"custom-select-menu"},outlined:{type:Boolean,default:!1},textKey:{type:String,default:"text"},valueKey:{type:String,default:"value"}},emits:["update:modelValue"],setup(t,{emit:n}){const a=t,l=n,o=e.ref(!1),r=e.ref(a.modelValue),s=e.ref(!1),c=()=>{o.value=!o.value},i=()=>{o.value=!1},d=e.ref(`custom-select-${Math.random().toString(36).substring(7)}`),p=h=>{r.value=h,l("update:modelValue",h),o.value=!1},b=h=>h[a.textKey],y=e.computed(()=>r.value&&typeof r.value=="object"?r.value[a.textKey]:a.label),u=e.computed(()=>a.items.map(h=>typeof h=="string"?{[a.textKey]:h,[a.valueKey]:h}:h)),g=e.computed(()=>(a.required||a.errorMessages.length>0)&&!r.value);return e.watch(()=>a.modelValue,h=>{r.value=h}),e.watch(o,h=>{s.value=!h&&!r.value&&g.value}),(h,m)=>{var k;return e.openBlock(),e.createElementBlock("div",null,[e.withDirectives((e.openBlock(),e.createBlock(e.unref(B.VTextField),{id:d.value,ref:"input",modelValue:y.value,"onUpdate:modelValue":m[0]||(m[0]=V=>y.value=V),title:"Sélectionnez une option",color:"primary",tabindex:"0",readonly:"",label:r.value?t.label:"","aria-label":r.value?t.label:"Sélectionnez une option","error-messages":t.errorMessages,variant:t.outlined?"outlined":"underlined",rules:g.value?["Le champ est requis."]:[],class:"custom-select",onClick:c,onKeydown:[e.withKeys(e.withModifiers(c,["prevent"]),["enter"]),e.withKeys(e.withModifiers(c,["prevent"]),["space"])]},{"append-inner":e.withCtx(()=>[s.value?(e.openBlock(),e.createBlock(e.unref(B.VIcon),{key:0,class:"mr-6"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(ue)),1)]),_:1})):e.createCommentVNode("",!0),e.createVNode(e.unref(B.VIcon),null,{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(fe)),1)]),_:1})]),_:1},8,["id","modelValue","label","aria-label","error-messages","variant","rules","onKeydown"])),[[J.ClickOutside,i]]),o.value?(e.openBlock(),e.createBlock(e.unref(B.VList),{key:0,class:"v-list",style:e.normalizeStyle(`min-width: ${(k=h.$refs.input)==null?void 0:k.$el.offsetWidth}px`),onKeydown:m[1]||(m[1]=e.withKeys(e.withModifiers(V=>o.value=!1,["prevent"]),["esc"]))},{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(u.value,(V,C)=>(e.openBlock(),e.createBlock(e.unref(B.VListItem),{key:C,ref_for:!0,ref:"options-"+C,role:"option",class:"v-list-item","aria-selected":r.value===V,tabindex:C+1,onClick:x=>p(V)},{default:e.withCtx(()=>[e.createVNode(e.unref(B.VListItemTitle),null,{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(b(V)),1)]),_:2},1024)]),_:2},1032,["aria-selected","tabindex","onClick"]))),128))]),_:1},8,["style"])):e.createCommentVNode("",!0)])}}}),[["__scopeId","data-v-8e832a54"]]),r1=e.defineComponent({__name:"CustomTextField",props:{prependIcon:{},appendIcon:{},prependInnerIcon:{},appendInnerIcon:{},variantStyle:{default:"outlined"},color:{},isClearable:{type:Boolean},showDivider:{type:Boolean},label:{}},setup(t,{expose:n}){const a=t,l={info:ne,success:mt,warning:me,error:ue,close:K},o=e.ref(""),r=e.computed(()=>a.appendInnerIcon==="error"||a.appendInnerIcon==="success"?a.appendInnerIcon:"black"),s={thickness:2,length:"25px",color:"primary",opacity:"1"};return n({appendInnerIconColor:r}),(c,i)=>(e.openBlock(),e.createBlock(tt.VTextField,{modelValue:o.value,"onUpdate:modelValue":i[0]||(i[0]=d=>o.value=d),variant:a.variantStyle,color:a.color,clearable:a.isClearable,"clear-icon":l.close,"aria-label":a.label,label:a.label},{prepend:e.withCtx(()=>[e.renderSlot(c.$slots,"prepend",{},()=>[a.prependIcon?(e.openBlock(),e.createBlock(w.VIcon,{key:0,icon:l[a.prependIcon]},null,8,["icon"])):e.createCommentVNode("",!0)])]),append:e.withCtx(()=>[e.renderSlot(c.$slots,"append",{},()=>[a.appendIcon?(e.openBlock(),e.createBlock(w.VIcon,{key:0,icon:l[a.appendIcon]},null,8,["icon"])):e.createCommentVNode("",!0)])]),"prepend-inner":e.withCtx(()=>[e.renderSlot(c.$slots,"prepend-inner",{},()=>[a.prependInnerIcon?(e.openBlock(),e.createBlock(w.VIcon,{key:0,icon:l[a.prependInnerIcon]},null,8,["icon"])):e.createCommentVNode("",!0)]),a.showDivider?(e.openBlock(),e.createBlock(ee.VDivider,e.mergeProps({key:0},s,{class:"mt-4 pa-1",vertical:""}),null,16)):e.createCommentVNode("",!0)]),"append-inner":e.withCtx(()=>[e.renderSlot(c.$slots,"append-inner",{},()=>[a.appendInnerIcon?(e.openBlock(),e.createBlock(w.VIcon,{key:0,icon:l[a.appendInnerIcon],class:e.normalizeClass({"error-icon":a.appendInnerIcon==="error"}),color:r.value},null,8,["icon","class","color"])):e.createCommentVNode("",!0)])]),_:3},8,["modelValue","variant","color","clearable","clear-icon","aria-label","label"]))}}),i1={loadingLabel:"Le contenu est en cours de chargement."},c1={icon:{size:24,class:"mr-4 mt-2"},chip:{class:"mt-1"},actionBtn:{variant:"text",size:"small",color:"secondary",class:"text-body-1 pa-0"}},s1={placeholder:"…"},d1={class:"vd-data-list-item d-flex flex-wrap"},m1={class:"vd-data-list-item-content"},p1={class:"vd-data-list-item-value"},h1=["innerHTML"],u1=["textContent"],f1=e.defineComponent({__name:"DataListItem",props:{vuetifyOptions:{},label:{default:""},value:{default:void 0},action:{default:void 0},placeholder:{default:s1.placeholder},chip:{type:Boolean,default:!1},icon:{default:void 0},row:{type:Boolean,default:!1},renderHtmlValue:{type:Boolean,default:!1}},emits:["click:action"],setup(t,{emit:n}){const a=t,l=n,o=L(c1,a),r=M.useTheme(),s=e.computed(()=>r.current.value.dark?"rgba(255, 255, 255, .7)":"rgba(0, 0, 0, .6)"),c=e.computed(()=>typeof a.value=="number"?isNaN(a.value)?a.placeholder:a.value.toString():a.value||a.placeholder);return(i,d)=>(e.openBlock(),e.createElementBlock("li",d1,[e.renderSlot(i.$slots,"icon",{},()=>[i.icon?(e.openBlock(),e.createBlock(w.VIcon,e.normalizeProps(e.mergeProps({key:0},e.unref(o).icon)),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(i.icon),1)]),_:1},16)):e.createCommentVNode("",!0)],!0),e.createElementVNode("div",m1,[e.createElementVNode("div",{class:e.normalizeClass({"vd-row":i.row})},[e.createElementVNode("div",{class:"vd-data-list-item-label text-caption",style:e.normalizeStyle({color:s.value})},e.toDisplayString(i.label),5),e.createElementVNode("div",p1,[e.renderSlot(i.$slots,"value",e.normalizeProps(e.guardReactiveProps({itemValue:c.value})),()=>[i.chip?(e.openBlock(),e.createBlock(at.VChip,e.normalizeProps(e.mergeProps({key:0},e.unref(o).chip)),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(c.value),1)]),_:1},16)):i.renderHtmlValue?(e.openBlock(),e.createElementBlock("span",{key:1,class:"text-body-1",innerHTML:c.value},null,8,h1)):(e.openBlock(),e.createElementBlock("span",{key:2,class:"text-body-1",textContent:e.toDisplayString(c.value)},null,8,u1))],!0)])],2),e.renderSlot(i.$slots,"action",{},()=>[i.action?(e.openBlock(),e.createBlock(S.VBtn,e.mergeProps({key:0},e.unref(o).actionBtn,{class:"vd-data-list-item-action-btn",onClick:d[0]||(d[0]=p=>l("click:action"))}),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(i.action),1)]),_:1},16)):e.createCommentVNode("",!0)],!0)])]))}}),b1=v(f1,[["__scopeId","data-v-ac4bdcda"]]),A=v(e.defineComponent({__name:"HeaderLoading",props:{width:{type:String,default:"100px"},height:{type:String,default:"1rem"}},setup(t){const n=t;return(a,l)=>(e.openBlock(),e.createBlock(e.unref(se.VSkeletonLoader),e.mergeProps(a.$attrs,{width:n.width,height:n.height,type:"heading","aria-hidden":"true",class:"vd-header-loading"}),null,16,["width","height"]))}}),[["__scopeId","data-v-7d435f46"]]),g1={"aria-hidden":"true",class:"vd-data-list-loading"},k1=e.defineComponent({__name:"DataListLoading",props:{itemsNumber:{type:Number,default:1},heading:{type:Boolean,default:!1},row:{type:Boolean,default:!1}},setup(t){const n=t,a=e.computed(()=>n.row?"150px":"90px");return(l,o)=>(e.openBlock(),e.createElementBlock("div",g1,[t.heading?(e.openBlock(),e.createBlock(A,{key:0,width:"100px",height:"1.5rem",class:"mb-4"})):e.createCommentVNode("",!0),e.createElementVNode("ul",null,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(t.itemsNumber,r=>(e.openBlock(),e.createElementBlock("li",{key:r+"-loading-item",class:e.normalizeClass([{"mb-4":r!==t.itemsNumber},"vd-data-list-loading-item"])},[t.row?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(A,{key:0,width:"60px",height:"1rem",class:"mb-1"})),e.createVNode(A,{width:a.value,height:"1.5rem"},null,8,["width"])],2))),128))])]))}});function ve(t){return{widthStyles:e.computed(()=>({maxWidth:P(t.maxWidth),minWidth:P(t.minWidth),width:P(t.width??"100%")}))}}const y1=["aria-label"],v1={key:1},V1={key:0},Ve=v(e.defineComponent({__name:"DataList",props:{items:{type:Array,required:!0},icons:{type:Object,default:void 0},listTitle:{type:String,default:void 0},titleClass:{type:String,default:"text-subtitle-1 font-weight-bold mb-3"},row:{type:Boolean,default:!1},placeholder:{type:String,default:void 0},loading:{type:Boolean,default:!1},itemsNumberLoading:{type:Number,default:1},headingLoading:{type:Boolean,default:!1},renderHtmlValue:{type:Boolean,default:!1},maxWidth:{type:String,default:void 0},minWidth:{type:String,default:void 0},width:{type:String,default:void 0}},emits:["click:item-action"],setup(t,{emit:n}){const a=t,{widthStyles:l}=ve(a),o=n,r=e.computed(()=>a.loading?i1.loadingLabel:void 0),s=i=>{var d;if(!(!i||!a.icons))return(d=a.icons)==null?void 0:d[i]},c=(i,d)=>[{"mb-2":i!==a.items.length-1},d];return(i,d)=>(e.openBlock(),e.createElementBlock("div",{"aria-label":r.value,style:e.normalizeStyle(e.unref(l)),class:"vd-data-list"},[e.createVNode(D.VFadeTransition,{mode:"out-in"},{default:e.withCtx(()=>[t.loading?(e.openBlock(),e.createBlock(k1,{key:0,"items-number":t.itemsNumberLoading,heading:t.headingLoading,"title-class":t.titleClass,row:t.row},null,8,["items-number","heading","title-class","row"])):(e.openBlock(),e.createElementBlock("div",v1,[e.renderSlot(i.$slots,"title",{},()=>[t.listTitle?(e.openBlock(),e.createElementBlock("h4",{key:0,class:e.normalizeClass(t.titleClass)},e.toDisplayString(t.listTitle),3)):e.createCommentVNode("",!0)],!0),t.items.length?(e.openBlock(),e.createElementBlock("ul",V1,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(t.items,(p,b)=>(e.openBlock(),e.createBlock(b1,{key:b,label:p.key,value:p.value,action:p.action,chip:p.chip,row:t.row,"render-html-value":t.renderHtmlValue,icon:s(p.icon),placeholder:t.placeholder,"vuetify-options":p.options,class:e.normalizeClass([c(b,p.class),"vd-data-list-item text-body-1"]),"onClick:action":y=>o("click:item-action",b)},null,8,["label","value","action","chip","row","render-html-value","icon","placeholder","vuetify-options","class","onClick:action"]))),128))])):e.createCommentVNode("",!0)]))]),_:3})],12,y1))}}),[["__scopeId","data-v-ec7b0098"]]),N1={class:"vd-data-list-group d-flex flex-wrap max-width-none ma-n4"},Ne=e.defineComponent({__name:"DataListGroup",props:{items:{type:Array,required:!0},icons:{type:Object,default:void 0},itemWidth:{type:String,default:"200px"},loading:{type:Boolean,default:!1},renderHtmlValue:{type:Boolean,default:!1}},emits:["click:list-item"],setup(t,{emit:n}){const a=t,l=n,o=(r,s)=>{l("click:list-item",{dataListIndex:r,itemIndex:s})};return(r,s)=>(e.openBlock(),e.createElementBlock("div",N1,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(a.items,(c,i)=>(e.openBlock(),e.createBlock(Ve,{key:`vd-data-list-${i}`,loading:a.loading,"render-html-value":a.renderHtmlValue,"list-title":c.title,items:c.items,"items-number-loading":c.itemsNumberLoading,"heading-loading":c.headingLoading,width:a.itemWidth,icons:a.icons,class:"ma-4","onClick:itemAction":d=>o(i,d)},null,8,["loading","render-html-value","list-title","items","items-number-loading","heading-loading","width","icons","onClick:itemAction"]))),128))]))}});function w1(t,n,a,l=!1){const o=l?["\uFEFF",t]:[t],r=window.navigator,s=new Blob(o,{type:a});if(r.msSaveOrOpenBlob)r.msSaveOrOpenBlob(s,n);else{const c=document.createElement("a");c.target="_blank",c.style.display="none",c.rel="noopener noreferrer",c.href=window.URL.createObjectURL(s),c.download=n,document.body.appendChild(c),c.click(),document.body.removeChild(c),window.URL.revokeObjectURL(c.href)}}const B1={btn:{variant:"outlined",color:"primary",class:"text-wrap",minHeight:"36px",height:"auto"},icon:{color:"primary",class:"mr-3"}},C1=v(e.defineComponent({inheritAttrs:!1,__name:"DownloadBtn",props:{filePromise:{},fallbackFilename:{default:void 0},vuetifyOptions:{}},emits:["error","success"],setup(t,{expose:n,emit:a}){const l=t,o=a,r=e.useAttrs(),s=e.ref("idle"),c=L(B1,l),i=e.computed(()=>ye(c.value.btn,r));function d(b){var h,m,k;const y=b["content-type"],u=b["content-disposition"];let g;return g=(k=(m=(h=u==null?void 0:u.split(";"))==null?void 0:h.find(V=>V.includes("filename=")))==null?void 0:m.split("="))==null?void 0:k[1],g||(g=l.fallbackFilename||"file"),{name:g,type:y}}async function p(){s.value="loading";try{const{data:b,headers:y}=await l.filePromise(),{name:u,type:g}=d(y);w1(b,u,g)}catch(b){s.value="error",o("error",b);return}s.value="success",o("success")}return n({getFileInfo:d,download:p,state:s}),(b,y)=>(e.openBlock(),e.createBlock(S.VBtn,e.mergeProps(i.value,{loading:s.value==="loading",class:[i.value.variant==="outlined"?"outlined-style":"","vd-download-btn"],"data-testid":"download-btn",onClick:p}),{default:e.withCtx(()=>[e.renderSlot(b.$slots,"icon",{},()=>[e.createVNode(w.VIcon,e.normalizeProps(e.guardReactiveProps(e.unref(c).icon)),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(bt)),1)]),_:1},16)],!0),e.renderSlot(b.$slots,"default",{},void 0,!0)]),_:3},16,["loading","class"]))}}),[["__scopeId","data-v-ef3f6e33"]]);/*!
|
|
2
|
+
* vue-router v4.4.5
|
|
3
|
+
* (c) 2024 Eduardo San Martin Morote
|
|
4
|
+
* @license MIT
|
|
5
|
+
*/const S1=typeof document<"u",M1=()=>{},q=Array.isArray;function we(t){const n=Array.from(arguments).slice(1);console.warn.apply(console,["[Vue Router warn]: "+t].concat(n))}function Be(t,n){return(t.aliasOf||t)===(n.aliasOf||n)}function L1(t,n){if(Object.keys(t).length!==Object.keys(n).length)return!1;for(const a in t)if(!Z1(t[a],n[a]))return!1;return!0}function Z1(t,n){return q(t)?Ce(t,n):q(n)?Ce(n,t):t===n}function Ce(t,n){return q(n)?t.length===n.length&&t.every((a,l)=>a===n[l]):t.length===1&&t[0]===n}var Se;(function(t){t.pop="pop",t.push="push"})(Se||(Se={}));var Me;(function(t){t.back="back",t.forward="forward",t.unknown=""})(Me||(Me={}));function Le(t){return typeof t=="string"||t&&typeof t=="object"}Symbol(process.env.NODE_ENV!=="production"?"navigation failure":"");var Ze;(function(t){t[t.aborted=4]="aborted",t[t.cancelled=8]="cancelled",t[t.duplicated=16]="duplicated"})(Ze||(Ze={})),Symbol(process.env.NODE_ENV!=="production"?"router view location matched":""),Symbol(process.env.NODE_ENV!=="production"?"router view depth":"");const _e=Symbol(process.env.NODE_ENV!=="production"?"router":""),_1=Symbol(process.env.NODE_ENV!=="production"?"route location":"");Symbol(process.env.NODE_ENV!=="production"?"router view location":"");function xe(t){const n=e.inject(_e),a=e.inject(_1);let l=!1,o=null;const r=e.computed(()=>{const p=e.unref(t.to);return process.env.NODE_ENV!=="production"&&(!l||p!==o)&&(Le(p)||(l?we(`Invalid value for prop "to" in useLink()
|
|
6
|
+
- to:`,p,`
|
|
7
|
+
- previous to:`,o,`
|
|
8
|
+
- props:`,t):we(`Invalid value for prop "to" in useLink()
|
|
9
|
+
- to:`,p,`
|
|
10
|
+
- props:`,t)),o=p,l=!0),n.resolve(p)}),s=e.computed(()=>{const{matched:p}=r.value,{length:b}=p,y=p[b-1],u=a.matched;if(!y||!u.length)return-1;const g=u.findIndex(Be.bind(null,y));if(g>-1)return g;const h=$e(p[b-2]);return b>1&&$e(y)===h&&u[u.length-1].path!==h?u.findIndex(Be.bind(null,p[b-2])):g}),c=e.computed(()=>s.value>-1&&E1(a.params,r.value.params)),i=e.computed(()=>s.value>-1&&s.value===a.matched.length-1&&L1(a.params,r.value.params));function d(p={}){return $1(p)?n[e.unref(t.replace)?"replace":"push"](e.unref(t.to)).catch(M1):Promise.resolve()}if(process.env.NODE_ENV!=="production"&&S1){const p=e.getCurrentInstance();if(p){const b={route:r.value,isActive:c.value,isExactActive:i.value,error:null};p.__vrl_devtools=p.__vrl_devtools||[],p.__vrl_devtools.push(b),e.watchEffect(()=>{b.route=r.value,b.isActive=c.value,b.isExactActive=i.value,b.error=Le(e.unref(t.to))?null:'Invalid "to" value'},{flush:"post"})}}return{route:r,href:e.computed(()=>r.value.href),isActive:c,isExactActive:i,navigate:d}}const x1=e.defineComponent({name:"RouterLink",compatConfig:{MODE:3},props:{to:{type:[String,Object],required:!0},replace:Boolean,activeClass:String,exactActiveClass:String,custom:Boolean,ariaCurrentValue:{type:String,default:"page"}},useLink:xe,setup(t,{slots:n}){const a=e.reactive(xe(t)),{options:l}=e.inject(_e),o=e.computed(()=>({[Ee(t.activeClass,l.linkActiveClass,"router-link-active")]:a.isActive,[Ee(t.exactActiveClass,l.linkExactActiveClass,"router-link-exact-active")]:a.isExactActive}));return()=>{const r=n.default&&n.default(a);return t.custom?r:e.h("a",{"aria-current":a.isExactActive?t.ariaCurrentValue:null,href:a.href,onClick:a.navigate,class:o.value},r)}}});function $1(t){if(!(t.metaKey||t.altKey||t.ctrlKey||t.shiftKey)&&!t.defaultPrevented&&!(t.button!==void 0&&t.button!==0)){if(t.currentTarget&&t.currentTarget.getAttribute){const n=t.currentTarget.getAttribute("target");if(/\b_blank\b/i.test(n))return}return t.preventDefault&&t.preventDefault(),!0}}function E1(t,n){for(const a in n){const l=n[a],o=t[a];if(typeof l=="string"){if(l!==o)return!1}else if(!q(o)||o.length!==l.length||l.some((r,s)=>r!==o[s]))return!1}return!0}function $e(t){return t?t.aliasOf?t.aliasOf.path:t.path:""}const Ee=(t,n,a)=>t??n??a,R={organism:"Sécurité sociale",assuranceMaladie:"l’Assurance Maladie",signature:"Agir ensemble, protéger chacun",risquePro:"Risques Professionnels"},Z={X_SMALL:"x-small",SMALL:"small",NORMAL:"normal"},T1=Object.values(Z),U={blue:{base:"#0c419a"},parma:{darken60:"#2f384d"},brick:{base:"#cd545b"}},Te={colors:{background:{accentContrasted:"#07275c"},text:{subduedOnDark:"rgba(255, 255, 255, 0.7)"}}},Ie={primary:U.blue.base,risquePro:U.brick.base},H=(t,n)=>({width:t,height:n}),I1={[Z.X_SMALL]:H("105","32"),[Z.SMALL]:H("131","40"),[Z.NORMAL]:H("211","64")},A1={[Z.X_SMALL]:H("32","32"),[Z.SMALL]:H("40","40"),[Z.NORMAL]:H("64","64")};function H1(t,n,a){const o=`(${n.join("|")})`,r=new RegExp(`^${o}$`);return a.match(r)!==null||console.error(`Invalid value for the \`${t}\` prop. Received: "${a}", expected one of: [${n.join(", ")}].`),!0}const O1=["fill","aria-label","width","height","viewBox","aria-hidden"],D1=["fill"],z1={key:1,"aria-hidden":"true",role:"presentation"},P1={key:2,role:"presentation","aria-hidden":"true"},R1={key:3},Ae=e.defineComponent({__name:"Logo",props:{hideSignature:{type:Boolean,default:!1},hideOrganism:{type:Boolean,default:!1},risquePro:{type:Boolean,default:!1},ariaLabel:{type:String,default:void 0},avatar:{type:Boolean,default:!1},dark:{type:Boolean,default:!1},size:{type:String,default:Z.NORMAL,validator:t=>H1("size",T1,t)}},setup(t){const n=t,a=e.ref(Ie.risquePro),l=e.computed(()=>n.dark?"#fff":Ie.primary),o=e.computed(()=>n.avatar?A1[n.size]:I1[n.size]),r=e.computed(()=>n.avatar?"0 0 64 64":n.hideSignature?"0 0 206 64":"0 0 211 64"),s=e.computed(()=>{if(n.ariaLabel)return n.ariaLabel;if(n.avatar)return"";const c=" : ",i=", ";let d=`${R.assuranceMaladie}`;return n.hideOrganism||(d=R.organism.concat(i,d)),n.hideSignature||(d=d.concat(c,R.signature)),n.risquePro&&(d=R.assuranceMaladie+": "+R.risquePro),d});return(c,i)=>(e.openBlock(),e.createElementBlock("svg",{fill:l.value,"aria-label":s.value,width:o.value.width,height:o.value.height,viewBox:r.value,role:"img",focusable:"false",xmlns:"http://www.w3.org/2000/svg","aria-hidden":t.avatar?"true":"false"},[t.risquePro&&!t.avatar?(e.openBlock(),e.createElementBlock("path",{key:0,fill:a.value,d:"M68 55.8h2.8a3 3 0 0 1 2 .6c.5.4.8 1 .8 1.8 0 .6-.2 1-.4 1.4-.2.4-.6.6-1 .9l1.8 3.3h-1.5l-1.6-3h-1.6v3H68zm2.6 3.8c.5 0 1 0 1.2-.3.2-.3.4-.6.4-1 0-1-.6-1.4-1.6-1.4h-1.3v2.7zm4.5-3.8h1.3v8H75zm5.4 8.2a6.5 6.5 0 0 1-2.7-.6L78 62c1 .5 1.9.7 2.7.7.4 0 .8 0 1-.2.3-.2.4-.5.4-.8 0-.3 0-.5-.2-.6-.1-.2-.3-.3-.6-.4l-1.1-.5a7 7 0 0 1-1.3-.5l-.8-.7a2 2 0 0 1-.2-1.1c0-.7.2-1.2.7-1.6.5-.4 1.2-.6 2.1-.6a6.1 6.1 0 0 1 2.6.5l-.2 1.3-1.2-.4c-.4-.2-.8-.2-1.2-.2a2 2 0 0 0-1.1.2c-.2.2-.4.4-.4.7 0 .3 0 .5.2.6l.5.4 1 .3c1 .3 1.6.6 2 1 .5.4.7 1 .7 1.6 0 .6-.3 1.2-.7 1.6-.5.4-1.3.7-2.4.7zm11.7-4.2c0 1-.3 2-.8 2.7l.7.7-.8.8-.7-.7a4 4 0 0 1-2.3.7 4 4 0 0 1-2-.6c-.7-.3-1.1-.8-1.5-1.4-.3-.6-.5-1.4-.5-2.2 0-.8.2-1.6.5-2.2.4-.6.8-1 1.4-1.4a4 4 0 0 1 2-.5 4 4 0 0 1 2.1.5c.6.3 1 .8 1.4 1.4.3.6.5 1.4.5 2.2zm-4 2.9c.6 0 1-.1 1.4-.4l-1-.9.8-.8 1 .9c.3-.5.4-1 .4-1.7 0-.8-.2-1.5-.7-2-.4-.6-1-.9-1.8-.9s-1.5.3-2 .8c-.4.6-.6 1.3-.6 2.1 0 .9.2 1.6.7 2 .4.6 1 .9 1.9.9zm8.5 1.3c-1 0-1.9-.4-2.4-1-.6-.6-.9-1.5-.9-2.6v-4.6h1.3V60c0 .9.2 1.6.5 2 .2.5.8.7 1.5.7.8 0 1.3-.2 1.6-.7.3-.4.4-1.1.4-2v-4.2h1.3v4.6c0 1.1-.2 2-.8 2.6-.5.6-1.4 1-2.5 1zm5-8.2h5v1.3h-3.6v2h2.9v1.2h-3v2.2h3.9v1.3h-5.2zm8.8 8.2a6.5 6.5 0 0 1-2.7-.6l.2-1.4c1 .5 1.9.7 2.7.7.4 0 .8 0 1-.2.3-.2.4-.5.4-.8 0-.3 0-.5-.2-.6-.1-.2-.3-.3-.6-.4l-1.1-.5a7 7 0 0 1-1.3-.5l-.8-.7a2 2 0 0 1-.2-1.1c0-.7.2-1.2.7-1.6.5-.4 1.2-.6 2.1-.6a6.1 6.1 0 0 1 2.6.5l-.2 1.3-1.3-.4c-.3-.2-.7-.2-1.1-.2a2 2 0 0 0-1.1.2c-.3.2-.4.4-.4.7 0 .3 0 .5.2.6l.5.4 1 .3c1 .3 1.6.6 2 1 .5.4.7 1 .7 1.6 0 .6-.3 1.2-.7 1.6-.5.4-1.3.7-2.4.7zm6.9-8.2h2.7c1.9 0 2.8.9 2.8 2.6 0 .9-.2 1.5-.7 2-.5.4-1.2.6-2 .6h-1.5v2.8h-1.3zm2.6 4c.5 0 1 0 1.2-.3.2-.2.4-.6.4-1 0-.6-.2-1-.4-1.2-.3-.2-.7-.4-1.2-.4h-1.3v3zm4-4h2.9a3 3 0 0 1 2 .6c.5.4.7 1 .7 1.8 0 .6-.1 1-.3 1.4l-1 .9 1.7 3.3h-1.5l-1.5-3h-1.6v3h-1.3zm2.6 3.8c.6 0 1 0 1.2-.3.3-.3.4-.6.4-1 0-1-.5-1.4-1.6-1.4h-1.2v2.7zm8 4.4a4 4 0 0 1-2-.6c-.6-.3-1.1-.8-1.5-1.4-.3-.6-.5-1.4-.5-2.2 0-.8.2-1.6.5-2.2.4-.6.9-1 1.4-1.4a4 4 0 0 1 2-.5 4 4 0 0 1 2.1.5c.6.3 1 .8 1.4 1.4.3.6.5 1.4.5 2.2 0 .8-.2 1.6-.5 2.2-.3.6-.8 1.1-1.4 1.4a4 4 0 0 1-2 .6zm0-1.3c.8 0 1.4-.3 1.9-.8.4-.5.6-1.2.6-2 0-1-.2-1.6-.6-2.2-.5-.5-1.1-.8-2-.8-.7 0-1.4.3-1.8.8-.4.6-.7 1.3-.7 2.1 0 .9.3 1.6.7 2 .4.6 1 .9 1.9.9zm5.2-6.9h5v1.3h-3.6v2h2.7v1.2h-2.7v3.5h-1.4zm6 0h5v1.3h-3.6v2h2.8v1.2h-2.8v2.2h3.7v1.3h-5zm8.7 8.2a6.5 6.5 0 0 1-2.6-.6l.2-1.4c1 .5 1.9.7 2.7.7.4 0 .8 0 1-.2.3-.2.4-.5.4-.8 0-.3 0-.5-.2-.6l-.6-.4-1.2-.5a7 7 0 0 1-1.2-.5l-.8-.7a2 2 0 0 1-.3-1.1c0-.7.3-1.2.8-1.6.5-.4 1.2-.6 2.1-.6a6.1 6.1 0 0 1 2.5.5v1.3l-1.4-.4c-.4-.2-.8-.2-1.2-.2a2 2 0 0 0-1 .2c-.3.2-.4.4-.4.7 0 .3 0 .5.2.6l.5.4 1 .3c1 .3 1.6.6 2 1 .4.4.7 1 .7 1.6 0 .6-.3 1.2-.8 1.6-.4.4-1.2.7-2.4.7zm6.7 0a6.5 6.5 0 0 1-2.7-.6l.2-1.4c1 .5 1.9.7 2.7.7.4 0 .8 0 1-.2.3-.2.4-.5.4-.8 0-.3 0-.5-.2-.6-.1-.2-.3-.3-.6-.4l-1.1-.5a7 7 0 0 1-1.3-.5l-.7-.7a2 2 0 0 1-.3-1.1c0-.7.2-1.2.7-1.6.5-.4 1.2-.6 2.2-.6a6.1 6.1 0 0 1 2.5.5l-.2 1.3-1.2-.4c-.4-.2-.8-.2-1.2-.2a2 2 0 0 0-1 .2c-.3.2-.5.4-.5.7l.2.6.5.4 1 .3c1 .3 1.6.6 2 1 .5.4.7 1 .7 1.6 0 .6-.3 1.2-.7 1.6-.5.4-1.3.7-2.4.7zm4.3-8.2h1.3v8h-1.3zm6.6 8.2a4 4 0 0 1-2-.6c-.6-.3-1.1-.8-1.4-1.4-.4-.6-.6-1.4-.6-2.2 0-.8.2-1.6.6-2.2.3-.6.8-1 1.4-1.4a4 4 0 0 1 2-.5 4 4 0 0 1 2 .5c.6.3 1 .8 1.4 1.4.4.6.5 1.4.5 2.2 0 .8-.1 1.6-.5 2.2-.3.6-.8 1.1-1.4 1.4a4 4 0 0 1-2 .6zm0-1.3c.8 0 1.4-.3 1.9-.8.4-.5.6-1.2.6-2 0-1-.2-1.6-.6-2.2-.5-.5-1.1-.8-2-.8-.7 0-1.4.3-1.8.8-.4.6-.7 1.3-.7 2.1 0 .9.3 1.6.7 2 .4.6 1 .9 1.9.9zm5.2-6.9h1.4l3.6 5.5v-5.5h1.3v8h-1l-4-5.8v5.8h-1.3zm8 0h1.4l3.6 5.5v-5.5h1.4v8h-1.1l-3.9-5.8v5.8h-1.3zm8.2 0h5v1.3h-3.7v2h2.9v1.2h-2.9v2.2h3.8v1.3h-5.1zm6.4 0h1.3v6.8h3.4v1.2H200zm8 8.2a6.5 6.5 0 0 1-2.6-.6l.1-1.4c1 .5 1.9.7 2.7.7.4 0 .8 0 1-.2.3-.2.4-.5.4-.8 0-.3 0-.5-.2-.6-.1-.2-.3-.3-.6-.4l-1.1-.5a7 7 0 0 1-1.2-.5c-.4-.2-.6-.4-.8-.7a2 2 0 0 1-.3-1.1c0-.7.2-1.2.7-1.6.5-.4 1.2-.6 2.2-.6a6.1 6.1 0 0 1 2.5.5l-.1 1.3-1.3-.4c-.4-.2-.8-.2-1.2-.2a2 2 0 0 0-1 .2c-.3.2-.4.4-.4.7l.1.6.6.4 1 .3c.9.3 1.5.6 2 1 .4.4.6 1 .6 1.6 0 .6-.2 1.2-.7 1.6-.5.4-1.3.7-2.4.7z"},null,8,D1)):!t.hideSignature&&!t.avatar?(e.openBlock(),e.createElementBlock("g",z1,i[0]||(i[0]=[e.createStaticVNode('<path d="M69.2 55.3h1.3l2.1 6.5h-1.2l-1-3.4-.6-2.1-.6 2-1 3.5H67l2.2-6.5Zm-.9 3.9h3v.9h-3v-1Z"></path><path d="M73.3 62.7c0-.4.3-.7.7-1a.9.9 0 0 1-.4-.8c0-.4.2-.8.5-1-.3-.2-.7-.7-.7-1.3 0-1.1 1-1.7 2-1.7h2.4v1H77c.2 0 .3.4.3.7 0 1.1-.8 1.7-1.8 1.7l-.7-.1-.2.4c0 .3.1.5.8.5h.8c1.2 0 1.8.3 1.8 1.2 0 1-1 1.7-2.6 1.7-1.1 0-2-.4-2-1.3Zm3.6-.2c0-.4-.3-.5-1-.5h-1.2c-.3.1-.4.4-.4.6 0 .4.5.7 1.2.7.8 0 1.4-.4 1.4-.8Zm-.7-3.9c0-.6-.3-1-.8-1s-.8.4-.8 1 .3 1 .8 1 .8-.4.8-1Z"></path><path d="M79 55.5c0-.4.3-.7.7-.7.4 0 .8.3.8.7 0 .3-.3.6-.8.6-.4 0-.7-.2-.7-.6Zm.2 1.5h1.1v4.9h-1.1v-5Z"></path><path d="M82.1 57h1v.8c.4-.6 1-1 1.4-1l.6.2-.2 1-.5-.1c-.4 0-.9.2-1.2 1v3h-1.1v-5Z"></path><path d="M88.1 59.4c0-1.6 1.1-2.6 2.3-2.6 1.3 0 2 1 2 2.3v.6h-3.1c0 .9.6 1.4 1.4 1.4a2 2 0 0 0 1.1-.4l.4.7a3 3 0 0 1-1.6.6c-1.4 0-2.5-1-2.5-2.6Zm3.3-.5c0-.7-.3-1.2-1-1.2-.6 0-1 .5-1.1 1.2h2.1Z"></path><path d="M93.8 57h1v.6c.5-.4 1-.8 1.7-.8 1 0 1.5.8 1.5 2v3h-1.2V59c0-.8-.2-1-.8-1-.4 0-.7.1-1 .5v3.4h-1.2V57Z"></path><path d="m99.3 61.3.5-.7c.4.3.9.5 1.3.5.6 0 .8-.2.8-.6 0-.4-.5-.6-1-.8-.7-.2-1.4-.6-1.4-1.4 0-.8.7-1.4 1.8-1.4.7 0 1.2.3 1.6.5l-.5.7c-.3-.2-.7-.4-1-.4-.6 0-.8.2-.8.5 0 .4.5.6 1 .8.7.2 1.4.5 1.4 1.5 0 .8-.6 1.5-1.9 1.5a3 3 0 0 1-1.8-.7Z"></path><path d="M104 59.4c0-1.6 1.1-2.6 2.3-2.6 1.3 0 2 1 2 2.3v.6h-3.1c0 .9.6 1.4 1.4 1.4a2 2 0 0 0 1.1-.4l.4.7a3 3 0 0 1-1.6.6c-1.4 0-2.5-1-2.5-2.6Zm3.3-.5c0-.7-.3-1.2-1-1.2-.6 0-1.1.5-1.2 1.2h2.2Z"></path><path d="M109.7 57h1v.6c.5-.4 1-.8 1.6-.8.7 0 1 .4 1.3.9.5-.5 1-.9 1.5-.9 1 0 1.6.8 1.6 2v3h-1.2V59c0-.8-.2-1-.7-1-.4 0-.7 0-1 .5v3.4h-1.2V59c0-.8-.3-1-.8-1-.3 0-.6 0-1 .5v3.4h-1.2V57h.1Z"></path><path d="m119.5 61.4-.2.5h-.9v-7h1.2v2.5c.3-.3.8-.6 1.3-.6 1.3 0 2 1 2 2.5 0 1.7-1 2.6-2.1 2.6-.4 0-1-.1-1.3-.5Zm2.2-2c0-1-.3-1.6-1-1.6-.4 0-.7.2-1.1.6v2.2c.3.3.7.4 1 .4.6 0 1.1-.5 1.1-1.6Z"></path><path d="M124.3 60.6v-5.8h1.2v5.9c0 .3.1.4.2.4h.2l.1.8-.6.1c-.8 0-1-.6-1-1.4Z"></path><path d="M127 59.4c0-1.6 1.1-2.6 2.3-2.6 1.3 0 2 1 2 2.3v.6H128c.2.9.7 1.4 1.5 1.4a2 2 0 0 0 1.1-.4l.4.7a3 3 0 0 1-1.7.6c-1.3 0-2.4-1-2.4-2.6Zm3.3-.5c0-.7-.3-1.2-1-1.2-.6 0-1.1.5-1.2 1.2h2.2Z"></path><path d="M133.4 60.4c-.4 0-.8.3-.8.7 0 .5.4.7.8.7 0 .5-.3 1-1 1.2l.3.6c1-.3 1.5-1 1.5-2 0-.7-.3-1.2-.8-1.2Z"></path><path d="M138.2 57h1v.5c.5-.4 1-.7 1.5-.7 1.3 0 2 1 2 2.5 0 1.7-1 2.7-2.1 2.7-.5 0-1-.2-1.3-.6v2.3h-1.1V57Zm3.3 2.4c0-1-.4-1.6-1-1.6-.4 0-.8.2-1.1.6v2.2c.3.3.7.4 1 .4.6 0 1-.5 1-1.6Z"></path><path d="M144.1 57h1v.8c.4-.6 1-1 1.4-1l.6.2-.2 1-.5-.1c-.4 0-.9.2-1.2 1v3h-1.1v-5Z"></path><path d="M147.5 59.4c0-1.6 1.2-2.6 2.4-2.6s2.3 1 2.3 2.6-1.1 2.6-2.3 2.6c-1.2 0-2.4-1-2.4-2.6Zm3.5 0c0-1-.4-1.6-1.2-1.6-.7 0-1.1.6-1.1 1.6s.4 1.6 1.1 1.6c.8 0 1.2-.6 1.2-1.6Z"></path><path d="M153.6 60.2v-2.3h-.7V57h.8l.1-1.4h1V57h1.2v.9h-1.2v2.3c0 .6.2.9.7.9l.5-.1.2.8-1 .2c-1.1 0-1.6-.8-1.6-1.8Z"></path><path d="M157 59.4c0-1.6 1-2.6 2.2-2.6 1.3 0 2 1 2 2.3v.6H158c.2.9.7 1.4 1.5 1.4a2 2 0 0 0 1.1-.4l.4.7a3 3 0 0 1-1.7.6c-1.3 0-2.4-1-2.4-2.6Zm3.2-.5c0-.7-.3-1.2-1-1.2-.6 0-1.1.5-1.2 1.2h2.2Zm-1.6-3.3 1.4-1.7.8.7-1.7 1.5-.5-.5Z"></path><path d="M162.2 62.7c0-.4.3-.7.7-1a.9.9 0 0 1-.4-.8c0-.4.2-.8.5-1-.3-.2-.6-.7-.6-1.3 0-1.1.9-1.7 1.9-1.7h2.4v1h-.9c.2 0 .3.4.3.7 0 1.1-.8 1.7-1.8 1.7l-.7-.1-.2.4c0 .3.1.5.8.5h.8c1.2 0 1.8.3 1.8 1.2 0 1-1 1.7-2.6 1.7-1.1 0-2-.4-2-1.3Zm3.6-.2c0-.4-.3-.5-1-.5h-1.2c-.3.1-.4.4-.4.6 0 .4.5.7 1.3.7.7 0 1.3-.4 1.3-.8Zm-.7-3.9c0-.6-.3-1-.8-1s-.8.4-.8 1 .3 1 .8 1 .8-.4.8-1Z"></path><path d="M167.5 59.4c0-1.6 1.1-2.6 2.3-2.6 1.3 0 2 1 2 2.3v.6h-3.1c0 .9.6 1.4 1.4 1.4a2 2 0 0 0 1.1-.4l.4.7a3 3 0 0 1-1.6.6c-1.4 0-2.5-1-2.5-2.6Zm3.3-.5c0-.7-.3-1.2-1-1.2-.6 0-1.1.5-1.2 1.2h2.2Z"></path><path d="M173.2 57h1v.8c.4-.6 1-1 1.4-1l.6.2-.2 1-.5-.1c-.4 0-.9.2-1.2 1v3h-1.1v-5Z"></path><path d="M179.3 59.4c0-1.6 1.1-2.6 2.4-2.6.6 0 1.1.3 1.4.6l-.5.7c-.3-.2-.5-.3-.8-.3-.8 0-1.3.6-1.3 1.6s.5 1.6 1.3 1.6c.4 0 .7-.1 1-.4l.4.8c-.4.4-1 .6-1.6.6-1.3 0-2.3-1-2.3-2.6Z"></path><path d="M184.5 54.8h1.1v2.8c.4-.4.9-.7 1.5-.7 1.1 0 1.5.7 1.5 2v3h-1.1v-3c0-.7-.2-1-.8-1-.4 0-.7.2-1.1.6v3.4h-1.2v-7Z"></path><path d="M190 60.5c0-1 .9-1.6 2.9-1.8 0-.5-.2-1-.9-1-.5 0-1 .3-1.4.5l-.4-.8a4 4 0 0 1 2-.6c1.2 0 1.8.8 1.8 2.1v2.9h-1v-.6c-.5.4-1 .7-1.5.7-1 0-1.5-.5-1.5-1.4Zm2.9 0v-1c-1.4.2-1.8.5-1.8 1 0 .4.3.6.7.6.4 0 .7-.2 1-.5Z"></path><path d="M195.4 59.4c0-1.6 1.1-2.6 2.4-2.6.6 0 1.1.3 1.4.6l-.5.7c-.3-.2-.5-.3-.8-.3-.8 0-1.3.6-1.3 1.6s.5 1.6 1.3 1.6c.4 0 .7-.1 1-.4l.4.8c-.4.4-1 .6-1.5.6-1.4 0-2.4-1-2.4-2.6Z"></path><path d="M200.5 60v-3h1.2v2.9c0 .8.2 1.1.7 1.1.5 0 .7-.2 1.1-.7V57h1.2v4.9h-1V61h-.1c-.5.5-1 .9-1.6.9-1 0-1.5-.8-1.5-2Z"></path><path d="M206.3 57h1v.6c.5-.4 1-.8 1.7-.8 1 0 1.5.8 1.5 2v3h-1.1V59c0-.8-.2-1-.8-1-.4 0-.7.1-1.1.5v3.4h-1.2V57Z"></path>',27)]))):e.createCommentVNode("",!0),!t.hideOrganism&&!t.avatar?(e.openBlock(),e.createElementBlock("g",P1,i[1]||(i[1]=[e.createStaticVNode('<path d="m3.3 32.3-.4-.4c.1-.3.3-.5.3-.8 0-.3 0-.4-.2-.4s-.3.1-.4.4l-.2.4c-.1.3-.4.6-.8.6-.5 0-.9-.5-.8-1.1 0-.4.1-.7.4-1l.4.4a1 1 0 0 0-.3.6c0 .2.1.4.3.4.2 0 .2-.2.4-.4l.1-.4c.2-.3.5-.6.9-.5.5 0 .9.5.8 1.2 0 .2-.2.7-.5 1Z"></path><path d="M.5 28 0 27l.5-.2.4.9-.4.2Zm.4.6.3-1.8h.5L1.6 28h.6l.1-1 .6.1-.1 1 .6.2.2-1.3.6.1-.3 2-3-.5Z"></path><path d="M2.8 26c-1-.3-1.4-1-1.2-1.8l.6-.8.3.5c-.1.1-.3.2-.3.5-.1.4.2.8.7.9.6.1 1 0 1.2-.5 0-.2 0-.4-.2-.6l.5-.3c.2.4.3.7.2 1-.1.9-.8 1.3-1.8 1Z"></path><path d="m3.7 22.8-1.5-.5.3-.7 1.6.6c.5.2.8.1.9-.2.1-.3 0-.6-.5-.8l-1.6-.6.2-.6 1.5.6c1 .3 1.2.9 1 1.6-.4.8-1 1-1.9.6Z"></path><path d="m3.7 18.6.5-1c.3-.6.7-1 1.4-.6.6.3.6.9.3 1.5l-.2.3 1 .5-.3.6-2.7-1.3Zm1.7-.3c.2-.3.1-.6-.2-.7-.2-.2-.4 0-.6.3l-.1.3.7.4.2-.3Zm.3.2-.2-.6h2l-.4.6H5.7Z"></path><path d="m5.4 15.3.4-.6 2.5 1.7-.3.5-2.6-1.6Z"></path><path d="m7.3 13.5-.5.7-.4-.4 1.4-1.9.5.4-.6.7 2 1.4-.4.6-2-1.5Z"></path><path d="m8.5 11 1.3-1.3.5.4-.9.8.5.4.7-.7.4.4-.7.7.5.5.9-1 .4.5-1.3 1.4-2.3-2Zm.1-.7v-1h.7l-.2 1h-.5Z"></path><path d="M13.6 9.7v-.6c.3 0 .6 0 .8-.2.2-.2.3-.4.2-.5-.2-.2-.3-.1-.6 0h-.4c-.4.2-.7.1-1-.2-.3-.4-.2-1 .3-1.4.3-.2.6-.3 1-.3v.6a1 1 0 0 0-.7.1c-.1.2-.2.4-.1.5h.6l.4-.1c.4-.1.7-.1 1 .3.2.4.2 1-.4 1.4-.3.3-.7.4-1 .4Z"></path><path d="M15.5 6.8c-.5-.8-.4-1.6.3-2 .7-.5 1.5-.2 2 .6s.3 1.6-.4 2c-.6.5-1.4.2-2-.6Zm1.7-1c-.3-.6-.7-.7-1-.5-.4.2-.5.6-.1 1.1.3.6.7.8 1 .6.4-.3.4-.7.1-1.2Z"></path><path d="M18.7 5c-.5-1 0-1.8.6-2.1.4-.2.7-.1 1 0l-.2.5h-.6c-.3.2-.5.7-.2 1.2.2.6.7.8 1 .6.3-.1.4-.3.5-.5l.5.2c-.1.4-.3.7-.7.8-.7.3-1.5.1-2-.8Z"></path><path d="m21.4 2.1.6-.2 1 2.8-.6.2-1-2.8Z"></path><path d="M24 1.2 25 1l1.7 2.7-.7.1-.8-1.3-.4-1v2.7l-.7.2V1.2Zm.2 1.8 1.4-.4.2.5-1.4.4-.2-.5Z"></path><path d="m26.9.5.7-.1.3 2.4 1.2-.2v.6l-1.8.3-.4-3Z"></path><path d="m29.8.1 2-.1v.6h-1.2v.7l1-.1v.6h-1v.7H32V3l-1.9.1-.2-3Z"></path>',15)]))):e.createCommentVNode("",!0),t.avatar?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("g",R1,i[2]||(i[2]=[e.createStaticVNode('<path d="M100.1 45V30.6h3.8v14.6c0 .8.4 1 .7 1h.5l.5 2.9a5 5 0 0 1-2 .3c-2.6 0-3.5-1.7-3.5-4.4Z"></path><path d="m75.7 40.4 3.8-8.5h4V49h-3.6V38.4l-3 7.8h-2.4l-3-7.8v10.7H68V32h4l3.8 8.5Z"></path><path d="M107.1 45.5c0-2.8 2.3-4.3 7.4-4.9 0-1.1-.8-1.8-2.2-1.8-1 0-2.1.4-3.4 1.2l-1.3-2.6c1.6-1 3.5-1.7 5.5-1.7 3.3 0 5 1.9 5 5.9V49h-3.5v-1.3s-1.5 1.6-3.6 1.6c-2.4 0-3.9-1.7-3.9-4Zm7.4-.3V43c-2.7.3-3.7 1.2-3.7 2.2 0 .8.5 1.2 1.5 1.2.8 0 1.5-.5 2.2-1.2Z"></path><path d="M86.1 45.5c0-2.8 2.3-4.3 7.4-4.9 0-1.1-.8-1.8-2.2-1.8-1 0-2.1.4-3.4 1.2l-1.3-2.6c1.6-1 3.5-1.7 5.5-1.7 3.3 0 5 1.9 5 5.9V49h-3.5v-1.3S92 49.4 90 49.4c-2.4 0-3.9-1.7-3.9-4Zm7.4-.3V43c-2.7.3-3.7 1.2-3.7 2.2 0 .8.6 1.2 1.5 1.2.8 0 1.6-.5 2.2-1.2Z"></path><path d="M129 30.6v6.3a4.1 4.1 0 0 0-3.2-1.2c-2.7 0-5.3 2.6-5.3 6.8 0 4.3 2 7 5.2 7 1.8 0 3.1-1.4 3.2-1.5v1.1h3.8V30.6H129Zm-2.3 15.7c-1.5 0-2.4-1.2-2.4-3.8 0-2.5 1.1-3.6 2.4-3.6.6 0 1.4.2 2.2.8v5.4c-.7.8-1.4 1.2-2.2 1.2Z"></path><path d="M135.7 32c0-1.2 1-2 2.2-2 1.2 0 2.2.8 2.2 2s-1 2-2.2 2c-1.3 0-2.2-.8-2.2-2Zm.3 4h3.8V49H136V36Z"></path><path d="M142.2 42.5c0-4.2 2.6-6.8 5.9-6.8 3.6 0 5.6 2.7 5.6 6.3l-.1 1.7h-7.7c.3 2 1.6 2.8 3.3 2.8 1 0 1.8-.4 2.8-1l1.3 2.5c-1.3.9-3 1.4-4.6 1.4-3.8 0-6.5-2.5-6.5-6.9Zm8.3-1.4c0-1.4-.9-2.5-2.4-2.5-1.2 0-2 .9-2.3 2.5h4.7Z"></path><path d="M68 23.3V8.8h3.7v14.7c0 .8.4 1 .7 1h.5l.4 2.9a5 5 0 0 1-1.9.3c-2.6 0-3.5-1.7-3.5-4.4Z"></path><path d="m88.1 23.3 1 4.1h4l-5.3-17.3h-4.4l-5.3 17.3h4l1-4.1h5Zm-4.2-3 1.6-6.6h.2l1.6 6.5H84Z"></path><path d="m93.9 25.9 1.7-2.4c1.1.9 2.2 1.3 3.3 1.3 1.1 0 1.6-.4 1.6-1 0-1-1.2-1.4-2.6-1.9-1.6-.6-3.4-1.7-3.4-3.8 0-2.5 2-4.2 5-4.2 1.9 0 3.4.8 4.5 1.7l-1.7 2.4c-1-.7-1.8-1.2-2.8-1.2-1 0-1.4.4-1.4 1 0 1 1.2 1.2 2.5 1.7 1.6.7 3.5 1.6 3.5 4s-1.9 4.2-5.3 4.2c-1.7 0-3.6-.7-5-1.8Z"></path><path d="m105.3 25.9 1.7-2.4c1.1.9 2.2 1.3 3.3 1.3 1.1 0 1.6-.4 1.6-1 0-1-1.2-1.4-2.6-1.9-1.6-.6-3.4-1.7-3.4-3.8 0-2.5 2-4.2 5-4.2 1.9 0 3.4.8 4.5 1.7l-1.7 2.4c-1-.7-1.8-1.2-2.8-1.2-1 0-1.4.4-1.4 1 0 1 1.2 1.2 2.5 1.7 1.6.7 3.5 1.6 3.5 4s-1.9 4.2-5.3 4.2c-1.7 0-3.6-.7-5-1.8Z"></path><path d="M132.2 14.3h3.8V16c.8-1.4 2.5-2 3.4-2 .8 0 1.2.2 1.6.3l-.4 3.6c-.5-.2-1.1-.4-1.7-.4-1.5 0-2.8 1.3-2.9 3v6.8h-3.8V14.3Z"></path><path d="M155.7 14.3h3.8v1.6c1-1 2.2-2 4-2 2.7 0 4 2 4 5.3v8.2h-3.9v-7.7c0-1.9-.5-2.5-1.6-2.5-1 0-1.6.5-2.5 1.3v8.8h-3.8v-13Z"></path><path d="M180.6 20.8c0-4.3 2.7-6.9 5.9-6.9 3.7 0 5.7 2.8 5.7 6.3 0 .7 0 1.4-.2 1.8h-7.7c.4 1.9 1.7 2.8 3.4 2.8 1 0 1.8-.4 2.7-1l1.3 2.4c-1.3 1-3 1.5-4.6 1.5-3.7 0-6.5-2.5-6.5-6.9Zm8.4-1.4c0-1.4-.9-2.5-2.4-2.5-1.2 0-2 .8-2.3 2.5h4.7Z"></path><path d="M141.8 23.7c0-2.7 2.3-4.3 7.4-4.8 0-1.2-.8-1.9-2.2-1.9a7 7 0 0 0-3.4 1.2l-1.3-2.5c1.6-1 3.4-1.8 5.5-1.8 3.3 0 5 2 5 6v7.5h-3.6V26s-1.4 1.6-3.5 1.6c-2.4 0-4-1.7-4-4Zm7.4-.2v-2.3c-2.7.4-3.8 1.3-3.8 2.3 0 .8.6 1.2 1.5 1.2s1.7-.5 2.3-1.2Z"></path><path d="M76.7 8.8c-.8 0-1.9.6-1.9 1.7 0 1 .8 1.5 1.6 1.5 0 1.2-1 1.8-1.5 2.1l1 1.4c3.3-1 4-6.7.8-6.7Z"></path><path d="M125.3 14.3V23c-.8 1-1.4 1.4-2.3 1.4-1 0-1.6-.6-1.6-2.5v-7.6h-3.8v8.3c0 3 1.4 5.1 4 5.1 2.5 0 3.8-1.6 3.8-1.6v1.3h3.7V14.3h-3.8Z"></path><path d="M176.3 24.6c-1.7 0-3-1.5-3-3.7 0-2.3 1.3-3.8 3-3.8.6 0 1.1.2 1.7.7l1.8-2.5c-.9-.8-2.1-1.3-3.7-1.3a6.5 6.5 0 0 0-6.6 6.9c0 4.3 2.7 6.8 6.3 6.8 1.4 0 3-.4 4.2-1.5l-1.4-2.7c-.7.6-1.5 1-2.3 1Z"></path>',18)]))),i[3]||(i[3]=e.createStaticVNode('<path d="M34.8 9c-.1-.2-.4-.3-.6-.3H34c-.2-.2-5.3 0-6.5.7 0-.8-.4-1.8-1.7-2-1-.3-3.1.7-2.4 2.8 0 .3.3.6.7.8.2 0 .5 0 .7.6h.3l.2.2h.5c.4.4.8-.1 1-.5l.7 2c-.2-.2-1.8-.6-2.5.2s-1.2 1.8-1.7 3.5c-.2.4-.5.7-1 .9-.9.3-.4.7-.2.7a6 6 0 0 0 2 0c.4-.2.1-1 .5-1.4l.8-1c0 .5 0 .8-.3 1.5-.2.7-1 1-1.3 1.3-.4.5.6.5.8.5.7-.2 1-.2 1.3-.4.4-.2.2-.8.3-1 .3-.7 1.4-2 1.6-2.3.8.2 1.7.2 2 .2 1.9-.2 2.3-1.5 2-2.6-.1-1-.7-1.5-.9-1.8l-.9-1.4 3.5-.9c0 .3.3.3.4.4.2.1.3 0 .2-.1a.6.6 0 0 1-.2-.2h.7c.3 0 .4-.4.3-.5Z"></path><path fill-rule="evenodd" clip-rule="evenodd" d="M61 26.7c-.5-2.6-2.9-4.1-4.1-4.7l-1.4-.4-.4-.2c.1-.5.8-.5 1.2-1.3 1-2.3-1.2-3.8-2.8-3.5-.8.2-1.3.4-1.5 1 0 .4-.3.4-.7.8-.2.2.1.4.2.5l-.1.3v.5s-.3.3 0 .7l.3.8c0 .1 0 .2-.3 0l-3.4-1a37.4 37.4 0 0 1-4.2-4.7c-.7 0 .5 1.3-.1.8-.2 0-.7-.4-.8-.5l-.1-.2-.3-.3H42.2c-.2 0-.1.5 0 .7 0 0 .4 1.2.6 1.4l1.5 1 2.6 3c.7.7 3.8 2.5 3.9 2.6.2 0 .5.8 0 5.5-.1 1.8-1.4 5.6-.8 7.5.4 1.3.9 2.2 1.3 5.6.1.8-.5 1.3-1.3 2l-1.4.8c-.2.2 0 .4.2.5.2 0 .5.3.8.3.3.1.9 0 1.4-.3.7-.3.7-.4 1-.6.5-.3 1-.3 1.2-.8.2-.6-.3-1.4-.3-1.7.4-2.8.9-4.1.2-5.8-.2-.3 1-4 1-3.4.2.9.3 3.8.3 5.9 0 .9.8 4.2 1 5.4.4 1.8-2.6 3.2-2 3.8l1 .3 1-.1c.3-.1.6-.5.7-.6.6-.8.4-.6 1-1.1.4-.5 0-1.4 0-1.8v-2.9c0-1.9 0-2.4.2-3.2l1-6.2s.2 0 .3-.2c.2-.2.1-.5.2-.7 0-.2 0 0 0 0l.2.6-.2.8c-.2.4.1.4.2.5 0 0 1-.7 1.2-1l.1-.8-.2-1.8c.2-.9 1-3.2.8-3.8Zm-2.2 3.6c-.2.5-.2 0-.6 1.7V31.1c0-2.1-1.5-6.5-.6-5.6 0 0 1.2.8 1.4 1.4.2.5.1 1.8-.2 3.4Z"></path><path d="M20 35.3c-.3-.3-1.6-2-2.4-2.7l-1-1.5c-1.6-2-1.9-2.1-3-2.2-.1-.2 0-.3 0-.4 1.3-.5.9-1.6.8-1.7l.2-.6-.2-1-.1-.7c-.8-.9-2.6-.9-3.5-.3-.8.5-.3.9-.6 1.6-.1.5 0 .9.3 1.2 0 .3.8.7.7 1.2-.2.6-1 .7-1 .7l-.3.1c-1.4.8-2.7 2-2.9 3.2 0 1 1.7 2.5 2.7 3.3.1 1.7 1.2 4.4 1.3 4.5.1.3-.3-.3-1.4-.7-.6-.1-1.2-.9-1.4 0 0 .4 0 1-.3 1.8-.2.6 0 1.5.7 1.5.5 0 .8-1.4.8-1.4s2.3 1 3.3.7c.7-.2.8-2.7.2-5-.2-.8.4 1.3 2 3.1.2.4 0 .7.2 2.2v1c0 .7-.7 1.6.9 2 1.6.4 1.5.8 2.5.1.5-.3-1.4-.5-1.8-1.6v-.2c0-.9.3-2.9.2-3.6-.6-3.4-2-5-2.2-5.8 0-2.4-.2-3.2 0-2.6l1 1.5.3.3.4.4 2.8 2.1s.1 1 .6 1c.4 0 2.3-1 2.2-1.1 0-.3-2-.3-2-.4ZM9.7 34l-1-1.8c.4-.7 1-1 1-.9.2 0 0 2.7 0 2.7Z"></path><path d="M51.8 54.8c-.1 0-1.2-.5-2.2-2-.5-.8-3.8-7-4.3-8.2-.9-2.4-8-6.7-8.2-7-.2-.1-.2-.5-.1-.8.5-2 .3-3.8.4-4.1.3-.7.8-1.7.4-2.3l-.7-1.2s3.7 1.4 4.6 1.2c.8-.2 4.5-2.8 4.7-2.9.5-.2 1.8.1 3-1.3.5-.5.2-.6 0-.6.1 0-.1-.2-.4 0-.2.1-1.3.4-1.1.2.8-.5.2-.7.2-.7-.3.3-1.8.7-2.1 1l-.8.5c-.9.5-2.4 1.3-4 1.7-.3 0-3.3-2-5-2.2-1-.1-1.3 0-1.8.1-.6.2-.6-.7 0-1 .2 0 .6-.1.7-.4.2-.4 0-.7 0-.8v-.2l-.1-.1v-.5c.3-.2.2-.4.1-.4-.1-.1-.6-.4-.7-.7 0-.6-.3-.9-.3-1.2 0 0-.1-.8-.4-1-.4-.4-1.2-.8-2.8-.3-.6.1-.5.4-1.8.6-1.6.3-2.4 2.7-2.3 3.7.1.8.8.4.8.7 0 .6-.1 1.5 1 1.8.3 0 1.8-.2 2.4 0 0 0 .5 0 .2.4-.1.2-1.6.9-2 1-1 .4-3.6 4.6-4.3 5-.7.3-1 .6-1.3.8-1 .6-2.1 1.4-2.7 1.4-.7 0-1.4.3-1.9 1.5-.1.3 0 .5.3.5 0 .1.2.3.4.3.2.2.5 0 .7 0l1-.7c.5-.2 4-1.5 4.7-2.1 1.2-.6 3.5-3 4-3s1.6 1 1.2 3c0 .7-1 2-1.4 2.6-1 1.5-.2 2.7-.4 3-1 1.6-2.2 3.7-4.2 5.5-.8.6-2.4.7-3.3 1-2 .5-4.2 2-5.7 2.8-.5.3-1-.3-1.6-.4-.7 0-.7 1-1 1.8l-.7 1.5c-.1.4-.7 1.7-.1 2.2.4.7 1.5-1.4 2.4-2.3.4-.5.7-.7 1.7-1 .6 0 5.6-1.4 8.8-2.2h.3c4.2-1.1 8.6-6.6 8.7-6.6l7.2 3.5c.7.4.7 1.8 1.5 3.4a22 22 0 0 0 4.4 4.9c.4.4 0 1 .2 1.6.2.6.6.6 1.1.6l1.6-.2c.7 0 .5 0 1.3.2.4 0 1.3.1 2-.5 1-1.2-1.2-.6-2.3-1.1Z"></path><path d="M44 51.7a.4.4 0 0 0-.6-.2 22.2 22.2 0 0 1-21-.6.5.5 0 0 0-.6.2c-.1.2 0 .4.1.6a23 23 0 0 0 21.9.5c.2 0 .3-.3.2-.5Z"></path><path d="M12.9 22.9h-.2c-.2-.2-.3-.4-.2-.6 2-4.4 5.2-8 9.3-10.4.2-.1.5 0 .6.2.2.2 0 .4-.1.6-4 2.3-7.1 5.7-9 10l-.4.2Z"></path><path d="M50.3 17.3c-.1 0-.3 0-.3-.2A22 22 0 0 0 36.5 10c-.2 0-.4-.3-.3-.5 0-.3.2-.4.5-.4a23 23 0 0 1 14 7.5v.7h-.4Z"></path>',7))],8,O1))}}),F1={followUs:"Suivez-nous :"},j1={class:"d-flex flex-column"},K1={class:"vd-social-media-links-label text-subtitle-2 text--primary"},q1={class:"d-flex max-width-none"},He=v(e.defineComponent({__name:"SocialMediaLinks",props:{links:{type:Array,default:null}},setup(t){const n=t;return(a,l)=>(e.openBlock(),e.createElementBlock("div",j1,[e.createElementVNode("span",K1,e.toDisplayString(e.unref(F1).followUs),1),e.createElementVNode("ul",q1,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(n.links,(o,r)=>(e.openBlock(),e.createElementBlock("li",{key:r},[e.createVNode(S.VBtn,{id:`social-btn-${r}`,href:o.href,target:"_blank",rel:"noopener noreferrer",icon:!0,"aria-label":`Lien vers ${o.name}`,variant:"text"},{default:e.withCtx(()=>[e.createVNode(w.VIcon,{size:"30px",class:"vd-social-media-links-icon"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(o.icon),1)]),_:2},1024)]),_:2},1032,["id","href","aria-label"])]))),128))])]))}}),[["__scopeId","data-v-82e1e286"]]),oe={"non-compliant":"non-compliant","partially-compliant":"partially-compliant","fully-compliant":"fully-compliant"},U1=[{icon:yt,name:"LinkedIn",href:"https://www.linkedin.com/company/assurance-maladie/"},{icon:gt,name:"Facebook",href:"https://www.facebook.com/AssurMaladie/"},{icon:Nt,name:"Twitter",href:"https://twitter.com/Assur_Maladie"}],G1={footer:{elevation:3,color:U.parma.darken60,height:"auto"},goTopBtn:{elevation:0,density:"compact",icon:"true",variant:"text",color:U.parma.darken60},goTopBtnIcon:{color:"white"}},_={goTopBtnLabel:"Retour en haut de la page",sitemapLabel:"Plan du site",cguLabel:"Conditions générales d’utilisation",cookiesLabel:"Gestion des cookies",legalNoticeLabel:"Mentions légales",versionLabel:"Version",followUs:"Suivez-nous",[oe["non-compliant"]]:"non conforme",[oe["partially-compliant"]]:"partiellement conforme",[oe["fully-compliant"]]:"totalement conforme",a11yLabel:t=>`Accessibilité : ${t}`},W1={key:0,class:"d-flex align-start align-sm-center mb-6"},Y1={class:"d-flex flex-grow-1 flex-column flex-sm-row"},Q1={key:0,class:"text-primary my-3 mx-4"},X1=v(e.defineComponent({__name:"FooterBar",props:{vuetifyOptions:{},a11yCompliance:{default:"non-compliant"},linkItems:{default:null},items:{default:null},sitemapRoute:{default:()=>({name:"sitemap"})},cguRoute:{default:()=>({name:"cgu"})},cookiesRoute:{default:()=>({name:"cookies"})},legalNoticeRoute:{default:()=>({name:"legalNotice"})},a11yStatementRoute:{default:()=>({name:"a11yStatement"})},hideSitemapLink:{type:Boolean,default:!1},hideCguLink:{type:Boolean,default:!1},hideCookiesLink:{type:Boolean,default:!1},hideLegalNoticeLink:{type:Boolean,default:!1},hideA11yLink:{type:Boolean,default:!1},version:{default:void 0},hideLogo:{type:Boolean,default:!1},hideSocialMediaLinks:{type:Boolean,default:!1},socialMediaLinks:{default:()=>U1},light:{type:Boolean,default:!1}},setup(t,{expose:n}){const a=t,l=pe,o=Z,r=e.useSlots(),s=M.useDisplay(),c=L(G1,a),i=g=>g.href?"a":"RouterLink",d=()=>{window.scrollTo({top:0,behavior:"smooth"})},p=e.computed(()=>{const g=_[a.a11yCompliance];return typeof g=="string"?_.a11yLabel(g):""}),b=e.computed(()=>!!r.default),y=e.computed(()=>s.smAndDown.value?o.SMALL:o.NORMAL),u=e.computed(()=>a.linkItems?a.linkItems:[{text:_.sitemapLabel,to:a.sitemapRoute,hidden:a.hideSitemapLink},{text:_.cguLabel,to:a.cguRoute,hidden:a.hideCguLink},{text:_.cookiesLabel,to:a.cookiesRoute,hidden:a.hideCookiesLink},{text:_.legalNoticeLabel,to:a.legalNoticeRoute,hidden:a.hideLegalNoticeLink},{text:p.value,to:a.a11yStatementRoute,hidden:a.hideA11yLink}].filter(h=>!h.hidden));return n({logoSize:y}),(g,h)=>(e.openBlock(),e.createBlock(nt.VFooter,e.mergeProps({...e.unref(c).footer,...g.$attrs},{color:a.light?"white":e.unref(c).footer.color,class:["vd-footer-bar flex-column align-stretch pa-3 w-100",{"py-4 py-sm-7 px-4 px-md-14":b.value,"v-theme--light":a.light,"v-theme--dark":!a.light}],role:"contentinfo"}),{default:e.withCtx(()=>[b.value?(e.openBlock(),e.createElementBlock("div",W1,[e.createElementVNode("div",Y1,[e.renderSlot(g.$slots,"logo",{},()=>[a.hideLogo?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(Ae,{key:0,size:y.value,class:e.normalizeClass([{"mb-2 mb-sm-0":!a.hideSocialMediaLinks},"logo"])},null,8,["size","class"]))],!0),e.createVNode(ot.VSpacer,e.normalizeProps(e.guardReactiveProps(e.unref(c).spacer)),null,16),a.hideSocialMediaLinks?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(He,{key:0,links:a.socialMediaLinks,class:"mr-8 social"},null,8,["links"]))]),e.createVNode(S.VBtn,e.mergeProps({id:"scroll-btn"},e.unref(c).goTopBtn,{"aria-label":e.unref(_).goTopBtnLabel,onClick:d}),{default:e.withCtx(()=>[e.createVNode(w.VIcon,e.mergeProps(e.unref(c).goTopBtnIcon,{class:"scroll"}),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(l)),1)]),_:1},16)]),_:1},16,["aria-label"])])):e.createCommentVNode("",!0),b.value?(e.openBlock(),e.createBlock(ee.VDivider,e.mergeProps({key:1},e.unref(c).divider,{class:"mb-3"}),null,16)):e.createCommentVNode("",!0),e.renderSlot(g.$slots,"default",{},void 0,!0),b.value?(e.openBlock(),e.createBlock(ee.VDivider,e.mergeProps({key:2},e.unref(c).divider,{class:"mt-3 mb-6"}),null,16)):e.createCommentVNode("",!0),e.createElementVNode("ul",{class:e.normalizeClass([{"py-2 py-sm-0":!b.value},"vd-footer-bar-links text-sm-center d-flex flex-column flex-sm-row flex-wrap align-start justify-center max-width-none mx-n3 my-n3"])},[e.renderSlot(g.$slots,"prepend",{},void 0,!0),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(u.value,(m,k)=>(e.openBlock(),e.createElementBlock("li",{key:k},[(e.openBlock(),e.createBlock(e.resolveDynamicComponent(i(m)),{href:m.href,to:m.to,"aria-label":m.ariaLabel,target:m.openInNewTab?"_blank":void 0,tabindex:k,rel:m.openInNewTab?"noopener noreferrer":void 0,class:"my-3 mx-4"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(m.text),1)]),_:2},1032,["href","to","aria-label","target","tabindex","rel"]))]))),128)),a.version?(e.openBlock(),e.createElementBlock("li",Q1,e.toDisplayString(e.unref(_).versionLabel)+" "+e.toDisplayString(a.version),1)):e.createCommentVNode("",!0),e.renderSlot(g.$slots,"append",{},void 0,!0)],2)]),_:3},16,["color","class"]))}}),[["__scopeId","data-v-ccd9e76e"]]),Oe={btnLabel:t=>`S’identifier avec FranceConnect${t?"+":""}`,infoLinkLabel:t=>`Qu’est-ce que FranceConnect${t?"+":""} ?`},J1=["href","aria-label"],ea=["viewBox","width"],ta=["fill"],aa=["fill"],na=["href"],oa=v(e.defineComponent({__name:"FranceConnectBtn",props:{href:{},isConnectPlus:{type:Boolean,default:!1},dark:{type:Boolean,default:!1}},setup(t){const n=t,a=M.useTheme(),l=e.computed(()=>a.current.value.dark||n.dark),o=n.isConnectPlus?"https://franceconnect.gouv.fr/france-connect-plus":"https://franceconnect.gouv.fr/",r=e.computed(()=>n.isConnectPlus?"245px":"209px"),s=e.computed(()=>o);return(c,i)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["vd-france-connect-btn d-flex flex-column align-start",{"vd-france-connect-btn--dark":l.value}])},[e.createElementVNode("a",{href:c.href,"aria-label":e.unref(Oe).btnLabel(c.isConnectPlus),class:"vd-france-connect-link d-inline-flex"},[(e.openBlock(),e.createElementBlock("svg",{viewBox:`0 0 ${n.isConnectPlus?"245":"209"} 56`,width:r.value,height:"56",xmlns:"http://www.w3.org/2000/svg"},[i[0]||(i[0]=e.createElementVNode("path",{fill:"#000091",d:"m47 19.1-15-8.68-15 8.76a.6.6 0 0 0-.3.53v16.94a.67.67 0 0 0 .3.53l15 8.6 14.99-8.7a.67.67 0 0 0 .3-.53V19.63a.6.6 0 0 0-.3-.53Z"},null,-1)),i[1]||(i[1]=e.createElementVNode("path",{fill:"#e1000f",d:"m26.64 19.6-5.03 8.63-4.55-9.18 5.39-3.11 4.48 3.16-.29.5ZM47.3 36.58V19.62a.6.6 0 0 0-.3-.52l-15-8.68"},null,-1)),i[2]||(i[2]=e.createElementVNode("path",{fill:"#0063cb",d:"M16.7 36.58 32 10.42v35.36l-15-8.6a.67.67 0 0 1-.3-.53V19.71v16.87Zm24.67-20.74L46.83 19l-4.5 9.15-5.38-9.24 4.42-3.07Z"},null,-1)),i[3]||(i[3]=e.createElementVNode("path",{fill:"#fff",d:"M51.6 16.3 32.43 5.28a.93.93 0 0 0-.84 0L12.4 16.3a.89.89 0 0 0-.39.7v22a.89.89 0 0 0 .4.7l19.18 11.02a.93.93 0 0 0 .84 0L51.6 39.7A.89.89 0 0 0 52 39V17a.89.89 0 0 0-.4-.7ZM22.8 34.06h.08c-.04 0-.08 0-.08.05 0 .1.15 0 .2.1-.24 0-.46.1-.63.27 0 .06.1.06.15.06-.07.1-.23.05-.28.15l.1.05c-.05 0-.1 0-.1.05v.15c-.12 0-.17.1-.27.15.2.15.32 0 .52 0-.52.2-.95.48-1.48.63-.1 0 0 .15-.1.15.15.1.23-.05.38-.05-.66.38-1.34.7-2.04 1.13a.35.35 0 0 0-.1.2h-.2c-.1.05-.05.18-.15.28.23.15.5-.2.65 0 .05 0-.1.05-.2.05-.05 0-.05.1-.1.1H19c-.1.07-.2.12-.2.27a.22.22 0 0 0-.23.1c1.08 0 2.14-.2 3.15-.57.78-.4 1.48-.93 2.09-1.56l.05.1c-.15.43-.43.81-.81 1.08-.28.15-.48.37-.7.48-.15.08-.3.17-.43.27-.63.2-1.28.34-1.94.41l-.3.05-.67.1-2-1.13a.65.65 0 0 1-.28-.41.58.58 0 0 0 .09-.07.26.26 0 0 0-.11-.07v-.65a12.8 12.8 0 0 0 3.04-.94 8.75 8.75 0 0 0-3.04-1.34v-1.52c.55.1 1.1.22 1.64.4.41.15.8.34 1.18.57.15.14.3.27.48.38a.91.91 0 0 0 .8.05h.33a3.96 3.96 0 0 0 1.93-.9c0 .04.05.04.1.04-.07.4-.22.79-.42 1.14 0 .05-.05.15.05.2Zm2.82 3.57c.25-.1.4-.28.63-.38-.05.05-.05.15-.1.2a3.7 3.7 0 0 0-.53.4c-.57.5-1.1 1.04-1.59 1.61-.25.3-.53.58-.8.86l-.3.24-2.54-1.45c.36.03.73.02 1.08-.05a5 5 0 0 0 .86-.33v.1c.7-.27 1.23-.9 1.93-1.13.03 0 .13.1.23.05a1.88 1.88 0 0 1 1.5-.7c0 .05 0 .1.06.1h.02c-.15.13-.32.25-.5.38-.05.05 0 .1.05.1Zm-8.91-6.16v-.19c.52-.14 1.05-.2 1.59-.19a5.86 5.86 0 0 0-1.59.37Zm30.6 5.08a.67.67 0 0 1-.3.53L36.9 42.93a32.3 32.3 0 0 1-3.4-1.19 2.83 2.83 0 0 1-.05-2.24c.07-.3.2-.6.35-.88.02-.03.05-.05.05-.08h.01l.01-.03c.11-.19.24-.38.38-.55l.01-.02.02-.02.02-.01c0-.03.02-.05.05-.08.02-.05.07-.07.1-.12.17-.19.37-.36.58-.5.21-.08.43-.14.65-.18.81.06 1.62.17 2.42.33.1.01.19.05.27.1.3.06.62.04.9-.05a1.14 1.14 0 0 0 .86-.7 1.21 1.21 0 0 0 .05-1.07c-.17-.27 0-.43.19-.59l.06-.05c.09-.06.17-.14.23-.22.13-.25-.1-.4-.15-.63-.05-.1-.22-.05-.32-.2.35-.15.85-.43.63-.86-.16-.22-.38-.63-.1-.85.35-.2.85-.15 1-.48a1.14 1.14 0 0 0-.3-1.09l-.07-.1-.2-.32a6.9 6.9 0 0 0-.53-.76 4.3 4.3 0 0 1-.53-1.01c-.15-.38.05-.7.05-1.08.01-.73-.1-1.46-.33-2.15-.13-.35-.18-.73-.33-1.06-.02-.2-.1-.4-.22-.58a.37.37 0 0 1 0-.33c.2-.14.4-.3.58-.47a.57.57 0 0 0-.2-.71c-.33-.15-.3.33-.53.43h-.15c-.05-.13.05-.18.15-.28 0-.05 0-.15-.05-.15-.2 0-.38-.05-.43-.15a3.96 3.96 0 0 0-1.86-1.29c.19.06.38.1.58.1.34.08.69.04 1-.1.23-.07.28-.48.38-.7a.8.8 0 0 0-.15-.63c-.23-.33-.54-.6-.9-.76a9.13 9.13 0 0 1-.94-.48c-2.96-1.48-9.07-.2-9.53 0-.44.13-.86.29-1.26.48a3.92 3.92 0 0 0-2.36 2.46c-.57.38-1.03.9-1.34 1.51-.42.8-1.05 1.51-.95 2.41.1.78.28 1.49.43 2.3.04.27.1.53.2.8s0 .62.15.85c.07.15.02.33.22.43v.2c.05.05.05.1.16.1v.2c.43.42.8.9 1.1 1.43.1.28-.48.15-.7.05-.41-.27-.8-.6-1.13-.96a.18.18 0 0 0-.05.1c.2.36.9.78.53 1.01-.2.1-.43-.15-.63.05-.05.08 0 .18 0 .28-.28-.2-.58-.1-.86-.2-.2-.05-.25-.43-.48-.43-.6-.14-1.2-.25-1.8-.33-.58-.08-1.16-.14-1.75-.16V19.71a.6.6 0 0 1 .31-.53L32 10.42l15 8.68a.6.6 0 0 1 .3.52v16.93Zm-7.96-8.26a.32.32 0 0 1-.28.15l-.28.27c.1 0 0 .15.1.15-.2.23.08.7-.2.8-.37.1-.76.1-1.13 0a.72.72 0 0 1 .17-.02h.08a.38.38 0 0 0 .34-.13v-.2c0-.05-.05-.05-.1-.05a.16.16 0 0 1-.1.05.22.22 0 0 0-.16-.2.8.8 0 0 1-.72-.27.67.67 0 0 1 .44-.05c.13 0 .08-.23.23-.33h.16c.3-.37.87-.47.97-.84 0-.1-.28-.1-.49-.15a2.26 2.26 0 0 0-.82.05c-.36.05-.7.14-1.05.27.28-.2.6-.36.92-.47.24-.09.48-.15.72-.2l.13-.02.14-.03a.97.97 0 0 1 .55 0c.23.1.62.1.67.25.1.27-.15.54-.44.74-.05.08.15.14.15.23Z"},null,-1)),e.createElementVNode("path",{fill:l.value?"#000091":"#f5f5fe",d:"M64.99 24.87a4.9 4.9 0 0 0 4.08 1.95c2.1 0 3.69-1.3 3.69-3.36 0-3.96-5.63-3.35-5.63-6.02 0-1.02.75-1.75 1.92-1.75 1.02 0 1.85.56 2.55 1.56l1.2-1.05a4.54 4.54 0 0 0-3.77-1.94c-2.07 0-3.53 1.45-3.53 3.21 0 3.93 5.64 3.35 5.64 6.04 0 1.09-.77 1.88-2.1 1.88-1.1 0-2.05-.56-2.86-1.61l-1.2 1.09Zm10.81-5.71 1.75-4.56H75.9l-1.44 4.56h1.34Zm4.82-3.46a1 1 0 0 0 1-1.01 1 1 0 0 0-1-1c-.56 0-1.02.45-1.02 1 0 .56.46 1.02 1.02 1.02Zm-.73 10.8h1.45v-8.57h-1.45v8.57Zm3.77-4.28c0 2.5 1.72 4.62 4.4 4.62 1.28 0 2.28-.5 3.04-1.36v1.02h1.45V13.75H91.1v5.2a3.89 3.89 0 0 0-3.04-1.36c-2.68 0-4.4 2.13-4.4 4.63Zm1.53 0c0-1.82 1.22-3.27 3.04-3.27 1.17 0 2.21.56 2.87 1.58v3.37a3.33 3.33 0 0 1-2.87 1.58c-1.82 0-3.04-1.45-3.04-3.26Zm18.02 2.87-1.07-.83a3.19 3.19 0 0 1-2.6 1.27c-1.84 0-3.15-1.24-3.2-3.3h6.58c.05-.23.1-.56.1-.9 0-2.1-1.5-3.74-3.84-3.74-2.65 0-4.32 2.02-4.32 4.63a4.5 4.5 0 0 0 4.68 4.62c1.6 0 2.87-.68 3.67-1.75Zm-4.06-6.27a2.31 2.31 0 0 1 2.43 2.3h-5.13c.3-1.47 1.29-2.3 2.7-2.3Zm6.32 7.68h1.45v-5.93c.54-.9 1.32-1.62 2.56-1.62 1.33 0 2.2.89 2.2 2.42v5.13h1.44v-5.18c0-2.44-1.43-3.73-3.35-3.73-1.27 0-2.16.55-2.85 1.31v-.97h-1.45v8.57Zm11.06-2.87c0 2.09 1.07 3.04 2.97 3.04.61 0 1.07-.07 1.48-.24v-1.29c-.32.14-.72.2-1.28.2-1.03 0-1.71-.37-1.71-1.71v-4.39h2.97v-1.3H118v-2.15h-1.46v2.14h-1.62v1.31h1.62v4.39Zm7.37-7.92a1 1 0 0 0 1-1.03 1 1 0 0 0-1-1c-.56 0-1.02.46-1.02 1 0 .57.46 1.03 1.02 1.03Zm-.73 10.79h1.45v-8.57h-1.45v8.57Zm3.38-8.57v1.31h1.61v7.26h1.47v-7.26h2.97v-1.3h-2.97v-1.1c0-1.12.64-1.78 1.61-1.78.5 0 .88.15 1.2.39l.65-1.2c-.47-.28-1.1-.5-1.88-.5-1.87 0-3.05 1.3-3.05 3.13v1.05h-1.61Zm8.54-2.22a1 1 0 0 0 1-1.03 1 1 0 0 0-1-1c-.56 0-1.02.46-1.02 1 0 .57.46 1.03 1.02 1.03Zm-.73 10.79h1.44v-8.57h-1.44v8.57Zm12.11-1.41-1.07-.83a3.19 3.19 0 0 1-2.6 1.27c-1.83 0-3.14-1.24-3.2-3.3h6.59c.05-.23.1-.56.1-.9 0-2.1-1.51-3.74-3.84-3.74-2.66 0-4.32 2.02-4.32 4.63a4.5 4.5 0 0 0 4.67 4.62c1.6 0 2.88-.68 3.67-1.75Zm-4.06-6.27a2.31 2.31 0 0 1 2.43 2.3h-5.13c.3-1.47 1.3-2.3 2.7-2.3Zm6.33 7.68h1.44v-5.88c.53-.87 1.26-1.45 2.38-1.45.34 0 .6.04.85.1v-1.4a3.13 3.13 0 0 0-3.23 1.14v-1.08h-1.44v8.57Zm13.66.24c1.11 0 2.23-.5 2.88-1.33v1.09h1.44v-5.75c0-1.88-1.29-3.16-3.47-3.16-1.5 0-2.7.63-3.45 1.65l1.1.83a2.78 2.78 0 0 1 2.3-1.19c1.23 0 2.08.68 2.08 1.87v.6l-2.9.47c-1.81.31-2.8 1.23-2.8 2.52 0 1.46 1.14 2.4 2.82 2.4Zm-1.36-2.45c0-.73.53-1.26 1.7-1.46l2.54-.43v1.69a3 3 0 0 1-2.64 1.46c-1 0-1.6-.53-1.6-1.26Zm7.2-6.36 3.36 8.57h1.9l3.35-8.57h-1.56L172.54 25l-2.74-7.06h-1.56Zm17.86 7.16-1.07-.83a3.19 3.19 0 0 1-2.6 1.27c-1.84 0-3.14-1.24-3.2-3.3h6.58c.06-.23.1-.56.1-.9 0-2.1-1.5-3.74-3.84-3.74-2.65 0-4.31 2.02-4.31 4.63a4.5 4.5 0 0 0 4.67 4.62c1.6 0 2.87-.68 3.67-1.75Zm-4.06-6.27a2.31 2.31 0 0 1 2.43 2.3h-5.13c.3-1.47 1.29-2.3 2.7-2.3Zm10.24 6.66c-1.86 0-3.17-1.43-3.17-3.26 0-1.82 1.31-3.27 3.15-3.27 1.07 0 1.94.51 2.46 1.26l1.14-.87a4.43 4.43 0 0 0-3.6-1.75 4.51 4.51 0 0 0-4.66 4.63c0 2.5 1.82 4.62 4.66 4.62 1.56 0 2.8-.68 3.6-1.75l-1.14-.87a2.95 2.95 0 0 1-2.44 1.26ZM65.85 44.5h2.56v-5.36h4.07V37H68.4v-2.99h4.79V31.9h-7.35v12.6Zm8.9 0h2.3v-5.81a2.48 2.48 0 0 1 2.17-1.2c.41 0 .72.06 1 .13v-2.25a2.52 2.52 0 0 0-.79-.12c-1.02 0-1.8.47-2.39 1.08v-.9h-2.29v9.07Zm9.43.27c1.07 0 2.15-.45 2.72-1.15v.88h2.29v-5.87c0-2-1.35-3.56-3.98-3.56-1.66 0-2.99.68-3.8 1.8l1.68 1.28a2.46 2.46 0 0 1 2.05-1.08c1.04 0 1.76.6 1.76 1.56v.24l-2.77.46c-1.94.33-3 1.35-3 2.72 0 1.68 1.24 2.72 3.05 2.72Zm-.79-2.83c0-.55.4-.95 1.35-1.11l2.16-.36v1.28c-.45.72-1.2 1.2-2.25 1.2-.77 0-1.26-.4-1.26-1Zm8.42 2.56h2.28v-5.92c.34-.58.96-1.35 2.1-1.35 1.12 0 1.8.75 1.8 1.96v5.31h2.31v-5.4c0-2.68-1.56-4.03-3.53-4.03-1.2 0-2.05.47-2.68 1.08v-.72h-2.28v9.07Zm15.44-1.8c-1.53 0-2.63-1.13-2.63-2.74 0-1.58 1.1-2.73 2.6-2.73.93 0 1.65.41 2.09 1.04l1.78-1.37a4.69 4.69 0 0 0-3.84-1.83c-3.13 0-5 2.25-5 4.9 0 2.64 1.87 4.89 5 4.89 1.66 0 3-.72 3.84-1.84l-1.78-1.36a2.42 2.42 0 0 1-2.06 1.04Zm13.54.32-1.63-1.3a2.91 2.91 0 0 1-2.34 1.09c-1.43 0-2.47-.69-2.69-2.38h6.36c.07-.3.14-.77.14-1.28 0-2.37-1.65-4.08-4.17-4.08-2.97 0-4.67 2.21-4.67 4.9 0 2.64 1.82 4.89 5.04 4.89 1.71 0 3.12-.7 3.96-1.84Zm-4.39-6.08c1.28 0 1.95.92 1.98 1.84h-4.17c.25-1.2 1.02-1.84 2.2-1.84Zm12.5 5.53c-2.38 0-4.07-1.86-4.07-4.27 0-2.41 1.7-4.27 4.07-4.27 1.44 0 2.57.7 3.3 1.73l2-1.56a6.53 6.53 0 0 0-5.3-2.56 6.55 6.55 0 0 0-6.7 6.66c0 3.6 2.72 6.66 6.7 6.66 2.28 0 4.16-1 5.3-2.57l-2-1.55a3.94 3.94 0 0 1-3.3 1.73Zm11.36-7.4a4.8 4.8 0 0 0-4.96 4.9 4.8 4.8 0 0 0 4.96 4.89 4.8 4.8 0 0 0 4.97-4.9 4.8 4.8 0 0 0-4.97-4.9Zm.04 7.63c-1.51 0-2.63-1.15-2.63-2.74 0-1.58 1.12-2.73 2.63-2.73 1.46 0 2.56 1.15 2.56 2.73 0 1.57-1.1 2.74-2.56 2.74Zm7.02 1.8h2.28v-5.92c.34-.58.96-1.35 2.1-1.35 1.13 0 1.8.75 1.8 1.96v5.31h2.31v-5.4c0-2.68-1.56-4.03-3.53-4.03-1.2 0-2.05.47-2.68 1.08v-.72h-2.28v9.07Zm11.09 0h2.28v-5.92c.35-.58.96-1.35 2.11-1.35 1.12 0 1.8.75 1.8 1.96v5.31h2.3v-5.4c0-2.68-1.56-4.03-3.52-4.03-1.2 0-2.06.47-2.69 1.08v-.72h-2.28v9.07Zm19.44-1.48-1.63-1.3a2.91 2.91 0 0 1-2.34 1.09c-1.43 0-2.47-.69-2.69-2.38h6.36c.07-.3.14-.77.14-1.28 0-2.37-1.66-4.08-4.18-4.08-2.97 0-4.66 2.21-4.66 4.9 0 2.64 1.82 4.89 5.04 4.89 1.71 0 3.12-.7 3.96-1.84Zm-4.39-6.08c1.28 0 1.94.92 1.98 1.84h-4.18c.26-1.2 1.03-1.84 2.2-1.84Zm10.75 5.76c-1.53 0-2.63-1.13-2.63-2.74 0-1.58 1.1-2.73 2.6-2.73.93 0 1.65.41 2.08 1.04l1.78-1.37a4.69 4.69 0 0 0-3.83-1.83c-3.13 0-5 2.25-5 4.9 0 2.64 1.87 4.89 5 4.89 1.66 0 2.99-.72 3.83-1.84l-1.78-1.36a2.42 2.42 0 0 1-2.05 1.04Zm6.2-1.51c0 2.21 1.09 3.49 3.35 3.49.76 0 1.3-.09 1.75-.29v-2c-.3.13-.72.2-1.35.2-.9 0-1.44-.4-1.44-1.4v-3.71h2.77v-2.05h-2.77v-2.27h-2.3v2.27h-1.7v2.05h1.7v3.7Z"},null,8,ta),c.isConnectPlus?(e.openBlock(),e.createElementBlock("path",{key:0,fill:l.value?"#000091":"#f5f5fe",d:"M233 30.571V25.429H223.6V16H218.448V25.429H209V30.572H218.448V40H223.6V30.571H233Z"},null,8,aa)):e.createCommentVNode("",!0)],8,ea))],8,J1),e.createElementVNode("a",{href:s.value,target:"_blank",rel:"noopener noreferrer",class:"vd-france-connect-info-link text-decoration-none mt-3"},[e.createTextVNode(e.toDisplayString(e.unref(Oe).infoLinkLabel(c.isConnectPlus))+" ",1),e.createVNode(w.VIcon,{size:"1em",class:"ml-1 mb-1"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(Vt)),1)]),_:1})],8,na)],2))}}),[["__scopeId","data-v-7d3bb666"]]),la=990,De=Symbol("registerHeaderMenu");function G(){const t=e.ref(!1);let n;function a(l){t.value=l.matches}return e.onMounted(()=>{n=window.matchMedia(`(min-width: ${la}px)`),t.value=n.matches,n.addEventListener("change",a)}),e.onUnmounted(()=>{n.removeEventListener("change",a)}),{isDesktop:t}}const ra={ariaLabel:"Ouvrir le menu"},ia={},ca={fill:"#0c419a",width:141,height:42,viewBox:"0 0 211 64",role:"img",focusable:"false",xmlns:"http://www.w3.org/2000/svg"};function sa(t,n){return e.openBlock(),e.createElementBlock("svg",ca,n[0]||(n[0]=[e.createStaticVNode('<g data-v-c84a4cb8><path d="M100.1 45V30.6h3.8v14.6c0 .8.4 1 .7 1h.5l.5 2.9a5 5 0 0 1-2 .3c-2.6 0-3.5-1.7-3.5-4.4Z" data-v-c84a4cb8></path><path d="m75.7 40.4 3.8-8.5h4V49h-3.6V38.4l-3 7.8h-2.4l-3-7.8v10.7H68V32h4l3.8 8.5Z" data-v-c84a4cb8></path><path d="M107.1 45.5c0-2.8 2.3-4.3 7.4-4.9 0-1.1-.8-1.8-2.2-1.8-1 0-2.1.4-3.4 1.2l-1.3-2.6c1.6-1 3.5-1.7 5.5-1.7 3.3 0 5 1.9 5 5.9V49h-3.5v-1.3s-1.5 1.6-3.6 1.6c-2.4 0-3.9-1.7-3.9-4Zm7.4-.3V43c-2.7.3-3.7 1.2-3.7 2.2 0 .8.5 1.2 1.5 1.2.8 0 1.5-.5 2.2-1.2Z" data-v-c84a4cb8></path><path d="M86.1 45.5c0-2.8 2.3-4.3 7.4-4.9 0-1.1-.8-1.8-2.2-1.8-1 0-2.1.4-3.4 1.2l-1.3-2.6c1.6-1 3.5-1.7 5.5-1.7 3.3 0 5 1.9 5 5.9V49h-3.5v-1.3S92 49.4 90 49.4c-2.4 0-3.9-1.7-3.9-4Zm7.4-.3V43c-2.7.3-3.7 1.2-3.7 2.2 0 .8.6 1.2 1.5 1.2.8 0 1.6-.5 2.2-1.2Z" data-v-c84a4cb8></path><path d="M129 30.6v6.3a4.1 4.1 0 0 0-3.2-1.2c-2.7 0-5.3 2.6-5.3 6.8 0 4.3 2 7 5.2 7 1.8 0 3.1-1.4 3.2-1.5v1.1h3.8V30.6H129Zm-2.3 15.7c-1.5 0-2.4-1.2-2.4-3.8 0-2.5 1.1-3.6 2.4-3.6.6 0 1.4.2 2.2.8v5.4c-.7.8-1.4 1.2-2.2 1.2Z" data-v-c84a4cb8></path><path d="M135.7 32c0-1.2 1-2 2.2-2 1.2 0 2.2.8 2.2 2s-1 2-2.2 2c-1.3 0-2.2-.8-2.2-2Zm.3 4h3.8V49H136V36Z" data-v-c84a4cb8></path><path d="M142.2 42.5c0-4.2 2.6-6.8 5.9-6.8 3.6 0 5.6 2.7 5.6 6.3l-.1 1.7h-7.7c.3 2 1.6 2.8 3.3 2.8 1 0 1.8-.4 2.8-1l1.3 2.5c-1.3.9-3 1.4-4.6 1.4-3.8 0-6.5-2.5-6.5-6.9Zm8.3-1.4c0-1.4-.9-2.5-2.4-2.5-1.2 0-2 .9-2.3 2.5h4.7Z" data-v-c84a4cb8></path><path d="M68 23.3V8.8h3.7v14.7c0 .8.4 1 .7 1h.5l.4 2.9a5 5 0 0 1-1.9.3c-2.6 0-3.5-1.7-3.5-4.4Z" data-v-c84a4cb8></path><path d="m88.1 23.3 1 4.1h4l-5.3-17.3h-4.4l-5.3 17.3h4l1-4.1h5Zm-4.2-3 1.6-6.6h.2l1.6 6.5H84Z" data-v-c84a4cb8></path><path d="m93.9 25.9 1.7-2.4c1.1.9 2.2 1.3 3.3 1.3 1.1 0 1.6-.4 1.6-1 0-1-1.2-1.4-2.6-1.9-1.6-.6-3.4-1.7-3.4-3.8 0-2.5 2-4.2 5-4.2 1.9 0 3.4.8 4.5 1.7l-1.7 2.4c-1-.7-1.8-1.2-2.8-1.2-1 0-1.4.4-1.4 1 0 1 1.2 1.2 2.5 1.7 1.6.7 3.5 1.6 3.5 4s-1.9 4.2-5.3 4.2c-1.7 0-3.6-.7-5-1.8Z" data-v-c84a4cb8></path><path d="m105.3 25.9 1.7-2.4c1.1.9 2.2 1.3 3.3 1.3 1.1 0 1.6-.4 1.6-1 0-1-1.2-1.4-2.6-1.9-1.6-.6-3.4-1.7-3.4-3.8 0-2.5 2-4.2 5-4.2 1.9 0 3.4.8 4.5 1.7l-1.7 2.4c-1-.7-1.8-1.2-2.8-1.2-1 0-1.4.4-1.4 1 0 1 1.2 1.2 2.5 1.7 1.6.7 3.5 1.6 3.5 4s-1.9 4.2-5.3 4.2c-1.7 0-3.6-.7-5-1.8Z" data-v-c84a4cb8></path><path d="M132.2 14.3h3.8V16c.8-1.4 2.5-2 3.4-2 .8 0 1.2.2 1.6.3l-.4 3.6c-.5-.2-1.1-.4-1.7-.4-1.5 0-2.8 1.3-2.9 3v6.8h-3.8V14.3Z" data-v-c84a4cb8></path><path d="M155.7 14.3h3.8v1.6c1-1 2.2-2 4-2 2.7 0 4 2 4 5.3v8.2h-3.9v-7.7c0-1.9-.5-2.5-1.6-2.5-1 0-1.6.5-2.5 1.3v8.8h-3.8v-13Z" data-v-c84a4cb8></path><path d="M180.6 20.8c0-4.3 2.7-6.9 5.9-6.9 3.7 0 5.7 2.8 5.7 6.3 0 .7 0 1.4-.2 1.8h-7.7c.4 1.9 1.7 2.8 3.4 2.8 1 0 1.8-.4 2.7-1l1.3 2.4c-1.3 1-3 1.5-4.6 1.5-3.7 0-6.5-2.5-6.5-6.9Zm8.4-1.4c0-1.4-.9-2.5-2.4-2.5-1.2 0-2 .8-2.3 2.5h4.7Z" data-v-c84a4cb8></path><path d="M141.8 23.7c0-2.7 2.3-4.3 7.4-4.8 0-1.2-.8-1.9-2.2-1.9a7 7 0 0 0-3.4 1.2l-1.3-2.5c1.6-1 3.4-1.8 5.5-1.8 3.3 0 5 2 5 6v7.5h-3.6V26s-1.4 1.6-3.5 1.6c-2.4 0-4-1.7-4-4Zm7.4-.2v-2.3c-2.7.4-3.8 1.3-3.8 2.3 0 .8.6 1.2 1.5 1.2s1.7-.5 2.3-1.2Z" data-v-c84a4cb8></path><path d="M76.7 8.8c-.8 0-1.9.6-1.9 1.7 0 1 .8 1.5 1.6 1.5 0 1.2-1 1.8-1.5 2.1l1 1.4c3.3-1 4-6.7.8-6.7Z" data-v-c84a4cb8></path><path d="M125.3 14.3V23c-.8 1-1.4 1.4-2.3 1.4-1 0-1.6-.6-1.6-2.5v-7.6h-3.8v8.3c0 3 1.4 5.1 4 5.1 2.5 0 3.8-1.6 3.8-1.6v1.3h3.7V14.3h-3.8Z" data-v-c84a4cb8></path><path d="M176.3 24.6c-1.7 0-3-1.5-3-3.7 0-2.3 1.3-3.8 3-3.8.6 0 1.1.2 1.7.7l1.8-2.5c-.9-.8-2.1-1.3-3.7-1.3a6.5 6.5 0 0 0-6.6 6.9c0 4.3 2.7 6.8 6.3 6.8 1.4 0 3-.4 4.2-1.5l-1.4-2.7c-.7.6-1.5 1-2.3 1Z" data-v-c84a4cb8></path></g><path d="M34.8 9c-.1-.2-.4-.3-.6-.3H34c-.2-.2-5.3 0-6.5.7 0-.8-.4-1.8-1.7-2-1-.3-3.1.7-2.4 2.8 0 .3.3.6.7.8.2 0 .5 0 .7.6h.3l.2.2h.5c.4.4.8-.1 1-.5l.7 2c-.2-.2-1.8-.6-2.5.2s-1.2 1.8-1.7 3.5c-.2.4-.5.7-1 .9-.9.3-.4.7-.2.7a6 6 0 0 0 2 0c.4-.2.1-1 .5-1.4l.8-1c0 .5 0 .8-.3 1.5-.2.7-1 1-1.3 1.3-.4.5.6.5.8.5.7-.2 1-.2 1.3-.4.4-.2.2-.8.3-1 .3-.7 1.4-2 1.6-2.3.8.2 1.7.2 2 .2 1.9-.2 2.3-1.5 2-2.6-.1-1-.7-1.5-.9-1.8l-.9-1.4 3.5-.9c0 .3.3.3.4.4.2.1.3 0 .2-.1a.6.6 0 0 1-.2-.2h.7c.3 0 .4-.4.3-.5Z" data-v-c84a4cb8></path><path fill-rule="evenodd" clip-rule="evenodd" d="M61 26.7c-.5-2.6-2.9-4.1-4.1-4.7l-1.4-.4-.4-.2c.1-.5.8-.5 1.2-1.3 1-2.3-1.2-3.8-2.8-3.5-.8.2-1.3.4-1.5 1 0 .4-.3.4-.7.8-.2.2.1.4.2.5l-.1.3v.5s-.3.3 0 .7l.3.8c0 .1 0 .2-.3 0l-3.4-1a37.4 37.4 0 0 1-4.2-4.7c-.7 0 .5 1.3-.1.8-.2 0-.7-.4-.8-.5l-.1-.2-.3-.3H42.2c-.2 0-.1.5 0 .7 0 0 .4 1.2.6 1.4l1.5 1 2.6 3c.7.7 3.8 2.5 3.9 2.6.2 0 .5.8 0 5.5-.1 1.8-1.4 5.6-.8 7.5.4 1.3.9 2.2 1.3 5.6.1.8-.5 1.3-1.3 2l-1.4.8c-.2.2 0 .4.2.5.2 0 .5.3.8.3.3.1.9 0 1.4-.3.7-.3.7-.4 1-.6.5-.3 1-.3 1.2-.8.2-.6-.3-1.4-.3-1.7.4-2.8.9-4.1.2-5.8-.2-.3 1-4 1-3.4.2.9.3 3.8.3 5.9 0 .9.8 4.2 1 5.4.4 1.8-2.6 3.2-2 3.8l1 .3 1-.1c.3-.1.6-.5.7-.6.6-.8.4-.6 1-1.1.4-.5 0-1.4 0-1.8v-2.9c0-1.9 0-2.4.2-3.2l1-6.2s.2 0 .3-.2c.2-.2.1-.5.2-.7 0-.2 0 0 0 0l.2.6-.2.8c-.2.4.1.4.2.5 0 0 1-.7 1.2-1l.1-.8-.2-1.8c.2-.9 1-3.2.8-3.8Zm-2.2 3.6c-.2.5-.2 0-.6 1.7V31.1c0-2.1-1.5-6.5-.6-5.6 0 0 1.2.8 1.4 1.4.2.5.1 1.8-.2 3.4Z" data-v-c84a4cb8></path><path d="M20 35.3c-.3-.3-1.6-2-2.4-2.7l-1-1.5c-1.6-2-1.9-2.1-3-2.2-.1-.2 0-.3 0-.4 1.3-.5.9-1.6.8-1.7l.2-.6-.2-1-.1-.7c-.8-.9-2.6-.9-3.5-.3-.8.5-.3.9-.6 1.6-.1.5 0 .9.3 1.2 0 .3.8.7.7 1.2-.2.6-1 .7-1 .7l-.3.1c-1.4.8-2.7 2-2.9 3.2 0 1 1.7 2.5 2.7 3.3.1 1.7 1.2 4.4 1.3 4.5.1.3-.3-.3-1.4-.7-.6-.1-1.2-.9-1.4 0 0 .4 0 1-.3 1.8-.2.6 0 1.5.7 1.5.5 0 .8-1.4.8-1.4s2.3 1 3.3.7c.7-.2.8-2.7.2-5-.2-.8.4 1.3 2 3.1.2.4 0 .7.2 2.2v1c0 .7-.7 1.6.9 2 1.6.4 1.5.8 2.5.1.5-.3-1.4-.5-1.8-1.6v-.2c0-.9.3-2.9.2-3.6-.6-3.4-2-5-2.2-5.8 0-2.4-.2-3.2 0-2.6l1 1.5.3.3.4.4 2.8 2.1s.1 1 .6 1c.4 0 2.3-1 2.2-1.1 0-.3-2-.3-2-.4ZM9.7 34l-1-1.8c.4-.7 1-1 1-.9.2 0 0 2.7 0 2.7Z" data-v-c84a4cb8></path><path d="M51.8 54.8c-.1 0-1.2-.5-2.2-2-.5-.8-3.8-7-4.3-8.2-.9-2.4-8-6.7-8.2-7-.2-.1-.2-.5-.1-.8.5-2 .3-3.8.4-4.1.3-.7.8-1.7.4-2.3l-.7-1.2s3.7 1.4 4.6 1.2c.8-.2 4.5-2.8 4.7-2.9.5-.2 1.8.1 3-1.3.5-.5.2-.6 0-.6.1 0-.1-.2-.4 0-.2.1-1.3.4-1.1.2.8-.5.2-.7.2-.7-.3.3-1.8.7-2.1 1l-.8.5c-.9.5-2.4 1.3-4 1.7-.3 0-3.3-2-5-2.2-1-.1-1.3 0-1.8.1-.6.2-.6-.7 0-1 .2 0 .6-.1.7-.4.2-.4 0-.7 0-.8v-.2l-.1-.1v-.5c.3-.2.2-.4.1-.4-.1-.1-.6-.4-.7-.7 0-.6-.3-.9-.3-1.2 0 0-.1-.8-.4-1-.4-.4-1.2-.8-2.8-.3-.6.1-.5.4-1.8.6-1.6.3-2.4 2.7-2.3 3.7.1.8.8.4.8.7 0 .6-.1 1.5 1 1.8.3 0 1.8-.2 2.4 0 0 0 .5 0 .2.4-.1.2-1.6.9-2 1-1 .4-3.6 4.6-4.3 5-.7.3-1 .6-1.3.8-1 .6-2.1 1.4-2.7 1.4-.7 0-1.4.3-1.9 1.5-.1.3 0 .5.3.5 0 .1.2.3.4.3.2.2.5 0 .7 0l1-.7c.5-.2 4-1.5 4.7-2.1 1.2-.6 3.5-3 4-3s1.6 1 1.2 3c0 .7-1 2-1.4 2.6-1 1.5-.2 2.7-.4 3-1 1.6-2.2 3.7-4.2 5.5-.8.6-2.4.7-3.3 1-2 .5-4.2 2-5.7 2.8-.5.3-1-.3-1.6-.4-.7 0-.7 1-1 1.8l-.7 1.5c-.1.4-.7 1.7-.1 2.2.4.7 1.5-1.4 2.4-2.3.4-.5.7-.7 1.7-1 .6 0 5.6-1.4 8.8-2.2h.3c4.2-1.1 8.6-6.6 8.7-6.6l7.2 3.5c.7.4.7 1.8 1.5 3.4a22 22 0 0 0 4.4 4.9c.4.4 0 1 .2 1.6.2.6.6.6 1.1.6l1.6-.2c.7 0 .5 0 1.3.2.4 0 1.3.1 2-.5 1-1.2-1.2-.6-2.3-1.1Z" data-v-c84a4cb8></path><path d="M44 51.7a.4.4 0 0 0-.6-.2 22.2 22.2 0 0 1-21-.6.5.5 0 0 0-.6.2c-.1.2 0 .4.1.6a23 23 0 0 0 21.9.5c.2 0 .3-.3.2-.5Z" data-v-c84a4cb8></path><path d="M12.9 22.9h-.2c-.2-.2-.3-.4-.2-.6 2-4.4 5.2-8 9.3-10.4.2-.1.5 0 .6.2.2.2 0 .4-.1.6-4 2.3-7.1 5.7-9 10l-.4.2Z" data-v-c84a4cb8></path><path d="M50.3 17.3c-.1 0-.3 0-.3-.2A22 22 0 0 0 36.5 10c-.2 0-.4-.3-.3-.5 0-.3.2-.4.5-.4a23 23 0 0 1 14 7.5v.7h-.4Z" data-v-c84a4cb8></path>',8)]))}const da=v(ia,[["render",sa],["__scopeId","data-v-c84a4cb8"]]),ma={},pa={fill:"#0c419a",width:211,height:63,viewBox:"0 0 211 64",role:"img",focusable:"false",xmlns:"http://www.w3.org/2000/svg"};function ha(t,n){return e.openBlock(),e.createElementBlock("svg",pa,n[0]||(n[0]=[e.createStaticVNode('<g data-v-3e4cb924><path d="M69.2 55.3h1.3l2.1 6.5h-1.2l-1-3.4-.6-2.1-.6 2-1 3.5H67l2.2-6.5Zm-.9 3.9h3v.9h-3v-1Z" data-v-3e4cb924></path><path d="M73.3 62.7c0-.4.3-.7.7-1a.9.9 0 0 1-.4-.8c0-.4.2-.8.5-1-.3-.2-.7-.7-.7-1.3 0-1.1 1-1.7 2-1.7h2.4v1H77c.2 0 .3.4.3.7 0 1.1-.8 1.7-1.8 1.7l-.7-.1-.2.4c0 .3.1.5.8.5h.8c1.2 0 1.8.3 1.8 1.2 0 1-1 1.7-2.6 1.7-1.1 0-2-.4-2-1.3Zm3.6-.2c0-.4-.3-.5-1-.5h-1.2c-.3.1-.4.4-.4.6 0 .4.5.7 1.2.7.8 0 1.4-.4 1.4-.8Zm-.7-3.9c0-.6-.3-1-.8-1s-.8.4-.8 1 .3 1 .8 1 .8-.4.8-1Z" data-v-3e4cb924></path><path d="M79 55.5c0-.4.3-.7.7-.7.4 0 .8.3.8.7 0 .3-.3.6-.8.6-.4 0-.7-.2-.7-.6Zm.2 1.5h1.1v4.9h-1.1v-5Z" data-v-3e4cb924></path><path d="M82.1 57h1v.8c.4-.6 1-1 1.4-1l.6.2-.2 1-.5-.1c-.4 0-.9.2-1.2 1v3h-1.1v-5Z" data-v-3e4cb924></path><path d="M88.1 59.4c0-1.6 1.1-2.6 2.3-2.6 1.3 0 2 1 2 2.3v.6h-3.1c0 .9.6 1.4 1.4 1.4a2 2 0 0 0 1.1-.4l.4.7a3 3 0 0 1-1.6.6c-1.4 0-2.5-1-2.5-2.6Zm3.3-.5c0-.7-.3-1.2-1-1.2-.6 0-1 .5-1.1 1.2h2.1Z" data-v-3e4cb924></path><path d="M93.8 57h1v.6c.5-.4 1-.8 1.7-.8 1 0 1.5.8 1.5 2v3h-1.2V59c0-.8-.2-1-.8-1-.4 0-.7.1-1 .5v3.4h-1.2V57Z" data-v-3e4cb924></path><path d="m99.3 61.3.5-.7c.4.3.9.5 1.3.5.6 0 .8-.2.8-.6 0-.4-.5-.6-1-.8-.7-.2-1.4-.6-1.4-1.4 0-.8.7-1.4 1.8-1.4.7 0 1.2.3 1.6.5l-.5.7c-.3-.2-.7-.4-1-.4-.6 0-.8.2-.8.5 0 .4.5.6 1 .8.7.2 1.4.5 1.4 1.5 0 .8-.6 1.5-1.9 1.5a3 3 0 0 1-1.8-.7Z" data-v-3e4cb924></path><path d="M104 59.4c0-1.6 1.1-2.6 2.3-2.6 1.3 0 2 1 2 2.3v.6h-3.1c0 .9.6 1.4 1.4 1.4a2 2 0 0 0 1.1-.4l.4.7a3 3 0 0 1-1.6.6c-1.4 0-2.5-1-2.5-2.6Zm3.3-.5c0-.7-.3-1.2-1-1.2-.6 0-1.1.5-1.2 1.2h2.2Z" data-v-3e4cb924></path><path d="M109.7 57h1v.6c.5-.4 1-.8 1.6-.8.7 0 1 .4 1.3.9.5-.5 1-.9 1.5-.9 1 0 1.6.8 1.6 2v3h-1.2V59c0-.8-.2-1-.7-1-.4 0-.7 0-1 .5v3.4h-1.2V59c0-.8-.3-1-.8-1-.3 0-.6 0-1 .5v3.4h-1.2V57h.1Z" data-v-3e4cb924></path><path d="m119.5 61.4-.2.5h-.9v-7h1.2v2.5c.3-.3.8-.6 1.3-.6 1.3 0 2 1 2 2.5 0 1.7-1 2.6-2.1 2.6-.4 0-1-.1-1.3-.5Zm2.2-2c0-1-.3-1.6-1-1.6-.4 0-.7.2-1.1.6v2.2c.3.3.7.4 1 .4.6 0 1.1-.5 1.1-1.6Z" data-v-3e4cb924></path><path d="M124.3 60.6v-5.8h1.2v5.9c0 .3.1.4.2.4h.2l.1.8-.6.1c-.8 0-1-.6-1-1.4Z" data-v-3e4cb924></path><path d="M127 59.4c0-1.6 1.1-2.6 2.3-2.6 1.3 0 2 1 2 2.3v.6H128c.2.9.7 1.4 1.5 1.4a2 2 0 0 0 1.1-.4l.4.7a3 3 0 0 1-1.7.6c-1.3 0-2.4-1-2.4-2.6Zm3.3-.5c0-.7-.3-1.2-1-1.2-.6 0-1.1.5-1.2 1.2h2.2Z" data-v-3e4cb924></path><path d="M133.4 60.4c-.4 0-.8.3-.8.7 0 .5.4.7.8.7 0 .5-.3 1-1 1.2l.3.6c1-.3 1.5-1 1.5-2 0-.7-.3-1.2-.8-1.2Z" data-v-3e4cb924></path><path d="M138.2 57h1v.5c.5-.4 1-.7 1.5-.7 1.3 0 2 1 2 2.5 0 1.7-1 2.7-2.1 2.7-.5 0-1-.2-1.3-.6v2.3h-1.1V57Zm3.3 2.4c0-1-.4-1.6-1-1.6-.4 0-.8.2-1.1.6v2.2c.3.3.7.4 1 .4.6 0 1-.5 1-1.6Z" data-v-3e4cb924></path><path d="M144.1 57h1v.8c.4-.6 1-1 1.4-1l.6.2-.2 1-.5-.1c-.4 0-.9.2-1.2 1v3h-1.1v-5Z" data-v-3e4cb924></path><path d="M147.5 59.4c0-1.6 1.2-2.6 2.4-2.6s2.3 1 2.3 2.6-1.1 2.6-2.3 2.6c-1.2 0-2.4-1-2.4-2.6Zm3.5 0c0-1-.4-1.6-1.2-1.6-.7 0-1.1.6-1.1 1.6s.4 1.6 1.1 1.6c.8 0 1.2-.6 1.2-1.6Z" data-v-3e4cb924></path><path d="M153.6 60.2v-2.3h-.7V57h.8l.1-1.4h1V57h1.2v.9h-1.2v2.3c0 .6.2.9.7.9l.5-.1.2.8-1 .2c-1.1 0-1.6-.8-1.6-1.8Z" data-v-3e4cb924></path><path d="M157 59.4c0-1.6 1-2.6 2.2-2.6 1.3 0 2 1 2 2.3v.6H158c.2.9.7 1.4 1.5 1.4a2 2 0 0 0 1.1-.4l.4.7a3 3 0 0 1-1.7.6c-1.3 0-2.4-1-2.4-2.6Zm3.2-.5c0-.7-.3-1.2-1-1.2-.6 0-1.1.5-1.2 1.2h2.2Zm-1.6-3.3 1.4-1.7.8.7-1.7 1.5-.5-.5Z" data-v-3e4cb924></path><path d="M162.2 62.7c0-.4.3-.7.7-1a.9.9 0 0 1-.4-.8c0-.4.2-.8.5-1-.3-.2-.6-.7-.6-1.3 0-1.1.9-1.7 1.9-1.7h2.4v1h-.9c.2 0 .3.4.3.7 0 1.1-.8 1.7-1.8 1.7l-.7-.1-.2.4c0 .3.1.5.8.5h.8c1.2 0 1.8.3 1.8 1.2 0 1-1 1.7-2.6 1.7-1.1 0-2-.4-2-1.3Zm3.6-.2c0-.4-.3-.5-1-.5h-1.2c-.3.1-.4.4-.4.6 0 .4.5.7 1.3.7.7 0 1.3-.4 1.3-.8Zm-.7-3.9c0-.6-.3-1-.8-1s-.8.4-.8 1 .3 1 .8 1 .8-.4.8-1Z" data-v-3e4cb924></path><path d="M167.5 59.4c0-1.6 1.1-2.6 2.3-2.6 1.3 0 2 1 2 2.3v.6h-3.1c0 .9.6 1.4 1.4 1.4a2 2 0 0 0 1.1-.4l.4.7a3 3 0 0 1-1.6.6c-1.4 0-2.5-1-2.5-2.6Zm3.3-.5c0-.7-.3-1.2-1-1.2-.6 0-1.1.5-1.2 1.2h2.2Z" data-v-3e4cb924></path><path d="M173.2 57h1v.8c.4-.6 1-1 1.4-1l.6.2-.2 1-.5-.1c-.4 0-.9.2-1.2 1v3h-1.1v-5Z" data-v-3e4cb924></path><path d="M179.3 59.4c0-1.6 1.1-2.6 2.4-2.6.6 0 1.1.3 1.4.6l-.5.7c-.3-.2-.5-.3-.8-.3-.8 0-1.3.6-1.3 1.6s.5 1.6 1.3 1.6c.4 0 .7-.1 1-.4l.4.8c-.4.4-1 .6-1.6.6-1.3 0-2.3-1-2.3-2.6Z" data-v-3e4cb924></path><path d="M184.5 54.8h1.1v2.8c.4-.4.9-.7 1.5-.7 1.1 0 1.5.7 1.5 2v3h-1.1v-3c0-.7-.2-1-.8-1-.4 0-.7.2-1.1.6v3.4h-1.2v-7Z" data-v-3e4cb924></path><path d="M190 60.5c0-1 .9-1.6 2.9-1.8 0-.5-.2-1-.9-1-.5 0-1 .3-1.4.5l-.4-.8a4 4 0 0 1 2-.6c1.2 0 1.8.8 1.8 2.1v2.9h-1v-.6c-.5.4-1 .7-1.5.7-1 0-1.5-.5-1.5-1.4Zm2.9 0v-1c-1.4.2-1.8.5-1.8 1 0 .4.3.6.7.6.4 0 .7-.2 1-.5Z" data-v-3e4cb924></path><path d="M195.4 59.4c0-1.6 1.1-2.6 2.4-2.6.6 0 1.1.3 1.4.6l-.5.7c-.3-.2-.5-.3-.8-.3-.8 0-1.3.6-1.3 1.6s.5 1.6 1.3 1.6c.4 0 .7-.1 1-.4l.4.8c-.4.4-1 .6-1.5.6-1.4 0-2.4-1-2.4-2.6Z" data-v-3e4cb924></path><path d="M200.5 60v-3h1.2v2.9c0 .8.2 1.1.7 1.1.5 0 .7-.2 1.1-.7V57h1.2v4.9h-1V61h-.1c-.5.5-1 .9-1.6.9-1 0-1.5-.8-1.5-2Z" data-v-3e4cb924></path><path d="M206.3 57h1v.6c.5-.4 1-.8 1.7-.8 1 0 1.5.8 1.5 2v3h-1.1V59c0-.8-.2-1-.8-1-.4 0-.7.1-1.1.5v3.4h-1.2V57Z" data-v-3e4cb924></path></g><g data-v-3e4cb924><path d="m3.3 32.3-.4-.4c.1-.3.3-.5.3-.8 0-.3 0-.4-.2-.4s-.3.1-.4.4l-.2.4c-.1.3-.4.6-.8.6-.5 0-.9-.5-.8-1.1 0-.4.1-.7.4-1l.4.4a1 1 0 0 0-.3.6c0 .2.1.4.3.4.2 0 .2-.2.4-.4l.1-.4c.2-.3.5-.6.9-.5.5 0 .9.5.8 1.2 0 .2-.2.7-.5 1Z" data-v-3e4cb924></path><path d="M.5 28 0 27l.5-.2.4.9-.4.2Zm.4.6.3-1.8h.5L1.6 28h.6l.1-1 .6.1-.1 1 .6.2.2-1.3.6.1-.3 2-3-.5Z" data-v-3e4cb924></path><path d="M2.8 26c-1-.3-1.4-1-1.2-1.8l.6-.8.3.5c-.1.1-.3.2-.3.5-.1.4.2.8.7.9.6.1 1 0 1.2-.5 0-.2 0-.4-.2-.6l.5-.3c.2.4.3.7.2 1-.1.9-.8 1.3-1.8 1Z" data-v-3e4cb924></path><path d="m3.7 22.8-1.5-.5.3-.7 1.6.6c.5.2.8.1.9-.2.1-.3 0-.6-.5-.8l-1.6-.6.2-.6 1.5.6c1 .3 1.2.9 1 1.6-.4.8-1 1-1.9.6Z" data-v-3e4cb924></path><path d="m3.7 18.6.5-1c.3-.6.7-1 1.4-.6.6.3.6.9.3 1.5l-.2.3 1 .5-.3.6-2.7-1.3Zm1.7-.3c.2-.3.1-.6-.2-.7-.2-.2-.4 0-.6.3l-.1.3.7.4.2-.3Zm.3.2-.2-.6h2l-.4.6H5.7Z" data-v-3e4cb924></path><path d="m5.4 15.3.4-.6 2.5 1.7-.3.5-2.6-1.6Z" data-v-3e4cb924></path><path d="m7.3 13.5-.5.7-.4-.4 1.4-1.9.5.4-.6.7 2 1.4-.4.6-2-1.5Z" data-v-3e4cb924></path><path d="m8.5 11 1.3-1.3.5.4-.9.8.5.4.7-.7.4.4-.7.7.5.5.9-1 .4.5-1.3 1.4-2.3-2Zm.1-.7v-1h.7l-.2 1h-.5Z" data-v-3e4cb924></path><path d="M13.6 9.7v-.6c.3 0 .6 0 .8-.2.2-.2.3-.4.2-.5-.2-.2-.3-.1-.6 0h-.4c-.4.2-.7.1-1-.2-.3-.4-.2-1 .3-1.4.3-.2.6-.3 1-.3v.6a1 1 0 0 0-.7.1c-.1.2-.2.4-.1.5h.6l.4-.1c.4-.1.7-.1 1 .3.2.4.2 1-.4 1.4-.3.3-.7.4-1 .4Z" data-v-3e4cb924></path><path d="M15.5 6.8c-.5-.8-.4-1.6.3-2 .7-.5 1.5-.2 2 .6s.3 1.6-.4 2c-.6.5-1.4.2-2-.6Zm1.7-1c-.3-.6-.7-.7-1-.5-.4.2-.5.6-.1 1.1.3.6.7.8 1 .6.4-.3.4-.7.1-1.2Z" data-v-3e4cb924></path><path d="M18.7 5c-.5-1 0-1.8.6-2.1.4-.2.7-.1 1 0l-.2.5h-.6c-.3.2-.5.7-.2 1.2.2.6.7.8 1 .6.3-.1.4-.3.5-.5l.5.2c-.1.4-.3.7-.7.8-.7.3-1.5.1-2-.8Z" data-v-3e4cb924></path><path d="m21.4 2.1.6-.2 1 2.8-.6.2-1-2.8Z" data-v-3e4cb924></path><path d="M24 1.2 25 1l1.7 2.7-.7.1-.8-1.3-.4-1v2.7l-.7.2V1.2Zm.2 1.8 1.4-.4.2.5-1.4.4-.2-.5Z" data-v-3e4cb924></path><path d="m26.9.5.7-.1.3 2.4 1.2-.2v.6l-1.8.3-.4-3Z" data-v-3e4cb924></path><path d="m29.8.1 2-.1v.6h-1.2v.7l1-.1v.6h-1v.7H32V3l-1.9.1-.2-3Z" data-v-3e4cb924></path></g><g data-v-3e4cb924><path d="M100.1 45V30.6h3.8v14.6c0 .8.4 1 .7 1h.5l.5 2.9a5 5 0 0 1-2 .3c-2.6 0-3.5-1.7-3.5-4.4Z" data-v-3e4cb924></path><path d="m75.7 40.4 3.8-8.5h4V49h-3.6V38.4l-3 7.8h-2.4l-3-7.8v10.7H68V32h4l3.8 8.5Z" data-v-3e4cb924></path><path d="M107.1 45.5c0-2.8 2.3-4.3 7.4-4.9 0-1.1-.8-1.8-2.2-1.8-1 0-2.1.4-3.4 1.2l-1.3-2.6c1.6-1 3.5-1.7 5.5-1.7 3.3 0 5 1.9 5 5.9V49h-3.5v-1.3s-1.5 1.6-3.6 1.6c-2.4 0-3.9-1.7-3.9-4Zm7.4-.3V43c-2.7.3-3.7 1.2-3.7 2.2 0 .8.5 1.2 1.5 1.2.8 0 1.5-.5 2.2-1.2Z" data-v-3e4cb924></path><path d="M86.1 45.5c0-2.8 2.3-4.3 7.4-4.9 0-1.1-.8-1.8-2.2-1.8-1 0-2.1.4-3.4 1.2l-1.3-2.6c1.6-1 3.5-1.7 5.5-1.7 3.3 0 5 1.9 5 5.9V49h-3.5v-1.3S92 49.4 90 49.4c-2.4 0-3.9-1.7-3.9-4Zm7.4-.3V43c-2.7.3-3.7 1.2-3.7 2.2 0 .8.6 1.2 1.5 1.2.8 0 1.6-.5 2.2-1.2Z" data-v-3e4cb924></path><path d="M129 30.6v6.3a4.1 4.1 0 0 0-3.2-1.2c-2.7 0-5.3 2.6-5.3 6.8 0 4.3 2 7 5.2 7 1.8 0 3.1-1.4 3.2-1.5v1.1h3.8V30.6H129Zm-2.3 15.7c-1.5 0-2.4-1.2-2.4-3.8 0-2.5 1.1-3.6 2.4-3.6.6 0 1.4.2 2.2.8v5.4c-.7.8-1.4 1.2-2.2 1.2Z" data-v-3e4cb924></path><path d="M135.7 32c0-1.2 1-2 2.2-2 1.2 0 2.2.8 2.2 2s-1 2-2.2 2c-1.3 0-2.2-.8-2.2-2Zm.3 4h3.8V49H136V36Z" data-v-3e4cb924></path><path d="M142.2 42.5c0-4.2 2.6-6.8 5.9-6.8 3.6 0 5.6 2.7 5.6 6.3l-.1 1.7h-7.7c.3 2 1.6 2.8 3.3 2.8 1 0 1.8-.4 2.8-1l1.3 2.5c-1.3.9-3 1.4-4.6 1.4-3.8 0-6.5-2.5-6.5-6.9Zm8.3-1.4c0-1.4-.9-2.5-2.4-2.5-1.2 0-2 .9-2.3 2.5h4.7Z" data-v-3e4cb924></path><path d="M68 23.3V8.8h3.7v14.7c0 .8.4 1 .7 1h.5l.4 2.9a5 5 0 0 1-1.9.3c-2.6 0-3.5-1.7-3.5-4.4Z" data-v-3e4cb924></path><path d="m88.1 23.3 1 4.1h4l-5.3-17.3h-4.4l-5.3 17.3h4l1-4.1h5Zm-4.2-3 1.6-6.6h.2l1.6 6.5H84Z" data-v-3e4cb924></path><path d="m93.9 25.9 1.7-2.4c1.1.9 2.2 1.3 3.3 1.3 1.1 0 1.6-.4 1.6-1 0-1-1.2-1.4-2.6-1.9-1.6-.6-3.4-1.7-3.4-3.8 0-2.5 2-4.2 5-4.2 1.9 0 3.4.8 4.5 1.7l-1.7 2.4c-1-.7-1.8-1.2-2.8-1.2-1 0-1.4.4-1.4 1 0 1 1.2 1.2 2.5 1.7 1.6.7 3.5 1.6 3.5 4s-1.9 4.2-5.3 4.2c-1.7 0-3.6-.7-5-1.8Z" data-v-3e4cb924></path><path d="m105.3 25.9 1.7-2.4c1.1.9 2.2 1.3 3.3 1.3 1.1 0 1.6-.4 1.6-1 0-1-1.2-1.4-2.6-1.9-1.6-.6-3.4-1.7-3.4-3.8 0-2.5 2-4.2 5-4.2 1.9 0 3.4.8 4.5 1.7l-1.7 2.4c-1-.7-1.8-1.2-2.8-1.2-1 0-1.4.4-1.4 1 0 1 1.2 1.2 2.5 1.7 1.6.7 3.5 1.6 3.5 4s-1.9 4.2-5.3 4.2c-1.7 0-3.6-.7-5-1.8Z" data-v-3e4cb924></path><path d="M132.2 14.3h3.8V16c.8-1.4 2.5-2 3.4-2 .8 0 1.2.2 1.6.3l-.4 3.6c-.5-.2-1.1-.4-1.7-.4-1.5 0-2.8 1.3-2.9 3v6.8h-3.8V14.3Z" data-v-3e4cb924></path><path d="M155.7 14.3h3.8v1.6c1-1 2.2-2 4-2 2.7 0 4 2 4 5.3v8.2h-3.9v-7.7c0-1.9-.5-2.5-1.6-2.5-1 0-1.6.5-2.5 1.3v8.8h-3.8v-13Z" data-v-3e4cb924></path><path d="M180.6 20.8c0-4.3 2.7-6.9 5.9-6.9 3.7 0 5.7 2.8 5.7 6.3 0 .7 0 1.4-.2 1.8h-7.7c.4 1.9 1.7 2.8 3.4 2.8 1 0 1.8-.4 2.7-1l1.3 2.4c-1.3 1-3 1.5-4.6 1.5-3.7 0-6.5-2.5-6.5-6.9Zm8.4-1.4c0-1.4-.9-2.5-2.4-2.5-1.2 0-2 .8-2.3 2.5h4.7Z" data-v-3e4cb924></path><path d="M141.8 23.7c0-2.7 2.3-4.3 7.4-4.8 0-1.2-.8-1.9-2.2-1.9a7 7 0 0 0-3.4 1.2l-1.3-2.5c1.6-1 3.4-1.8 5.5-1.8 3.3 0 5 2 5 6v7.5h-3.6V26s-1.4 1.6-3.5 1.6c-2.4 0-4-1.7-4-4Zm7.4-.2v-2.3c-2.7.4-3.8 1.3-3.8 2.3 0 .8.6 1.2 1.5 1.2s1.7-.5 2.3-1.2Z" data-v-3e4cb924></path><path d="M76.7 8.8c-.8 0-1.9.6-1.9 1.7 0 1 .8 1.5 1.6 1.5 0 1.2-1 1.8-1.5 2.1l1 1.4c3.3-1 4-6.7.8-6.7Z" data-v-3e4cb924></path><path d="M125.3 14.3V23c-.8 1-1.4 1.4-2.3 1.4-1 0-1.6-.6-1.6-2.5v-7.6h-3.8v8.3c0 3 1.4 5.1 4 5.1 2.5 0 3.8-1.6 3.8-1.6v1.3h3.7V14.3h-3.8Z" data-v-3e4cb924></path><path d="M176.3 24.6c-1.7 0-3-1.5-3-3.7 0-2.3 1.3-3.8 3-3.8.6 0 1.1.2 1.7.7l1.8-2.5c-.9-.8-2.1-1.3-3.7-1.3a6.5 6.5 0 0 0-6.6 6.9c0 4.3 2.7 6.8 6.3 6.8 1.4 0 3-.4 4.2-1.5l-1.4-2.7c-.7.6-1.5 1-2.3 1Z" data-v-3e4cb924></path></g><path d="M34.8 9c-.1-.2-.4-.3-.6-.3H34c-.2-.2-5.3 0-6.5.7 0-.8-.4-1.8-1.7-2-1-.3-3.1.7-2.4 2.8 0 .3.3.6.7.8.2 0 .5 0 .7.6h.3l.2.2h.5c.4.4.8-.1 1-.5l.7 2c-.2-.2-1.8-.6-2.5.2s-1.2 1.8-1.7 3.5c-.2.4-.5.7-1 .9-.9.3-.4.7-.2.7a6 6 0 0 0 2 0c.4-.2.1-1 .5-1.4l.8-1c0 .5 0 .8-.3 1.5-.2.7-1 1-1.3 1.3-.4.5.6.5.8.5.7-.2 1-.2 1.3-.4.4-.2.2-.8.3-1 .3-.7 1.4-2 1.6-2.3.8.2 1.7.2 2 .2 1.9-.2 2.3-1.5 2-2.6-.1-1-.7-1.5-.9-1.8l-.9-1.4 3.5-.9c0 .3.3.3.4.4.2.1.3 0 .2-.1a.6.6 0 0 1-.2-.2h.7c.3 0 .4-.4.3-.5Z" data-v-3e4cb924></path><path fill-rule="evenodd" clip-rule="evenodd" d="M61 26.7c-.5-2.6-2.9-4.1-4.1-4.7l-1.4-.4-.4-.2c.1-.5.8-.5 1.2-1.3 1-2.3-1.2-3.8-2.8-3.5-.8.2-1.3.4-1.5 1 0 .4-.3.4-.7.8-.2.2.1.4.2.5l-.1.3v.5s-.3.3 0 .7l.3.8c0 .1 0 .2-.3 0l-3.4-1a37.4 37.4 0 0 1-4.2-4.7c-.7 0 .5 1.3-.1.8-.2 0-.7-.4-.8-.5l-.1-.2-.3-.3H42.2c-.2 0-.1.5 0 .7 0 0 .4 1.2.6 1.4l1.5 1 2.6 3c.7.7 3.8 2.5 3.9 2.6.2 0 .5.8 0 5.5-.1 1.8-1.4 5.6-.8 7.5.4 1.3.9 2.2 1.3 5.6.1.8-.5 1.3-1.3 2l-1.4.8c-.2.2 0 .4.2.5.2 0 .5.3.8.3.3.1.9 0 1.4-.3.7-.3.7-.4 1-.6.5-.3 1-.3 1.2-.8.2-.6-.3-1.4-.3-1.7.4-2.8.9-4.1.2-5.8-.2-.3 1-4 1-3.4.2.9.3 3.8.3 5.9 0 .9.8 4.2 1 5.4.4 1.8-2.6 3.2-2 3.8l1 .3 1-.1c.3-.1.6-.5.7-.6.6-.8.4-.6 1-1.1.4-.5 0-1.4 0-1.8v-2.9c0-1.9 0-2.4.2-3.2l1-6.2s.2 0 .3-.2c.2-.2.1-.5.2-.7 0-.2 0 0 0 0l.2.6-.2.8c-.2.4.1.4.2.5 0 0 1-.7 1.2-1l.1-.8-.2-1.8c.2-.9 1-3.2.8-3.8Zm-2.2 3.6c-.2.5-.2 0-.6 1.7V31.1c0-2.1-1.5-6.5-.6-5.6 0 0 1.2.8 1.4 1.4.2.5.1 1.8-.2 3.4Z" data-v-3e4cb924></path><path d="M20 35.3c-.3-.3-1.6-2-2.4-2.7l-1-1.5c-1.6-2-1.9-2.1-3-2.2-.1-.2 0-.3 0-.4 1.3-.5.9-1.6.8-1.7l.2-.6-.2-1-.1-.7c-.8-.9-2.6-.9-3.5-.3-.8.5-.3.9-.6 1.6-.1.5 0 .9.3 1.2 0 .3.8.7.7 1.2-.2.6-1 .7-1 .7l-.3.1c-1.4.8-2.7 2-2.9 3.2 0 1 1.7 2.5 2.7 3.3.1 1.7 1.2 4.4 1.3 4.5.1.3-.3-.3-1.4-.7-.6-.1-1.2-.9-1.4 0 0 .4 0 1-.3 1.8-.2.6 0 1.5.7 1.5.5 0 .8-1.4.8-1.4s2.3 1 3.3.7c.7-.2.8-2.7.2-5-.2-.8.4 1.3 2 3.1.2.4 0 .7.2 2.2v1c0 .7-.7 1.6.9 2 1.6.4 1.5.8 2.5.1.5-.3-1.4-.5-1.8-1.6v-.2c0-.9.3-2.9.2-3.6-.6-3.4-2-5-2.2-5.8 0-2.4-.2-3.2 0-2.6l1 1.5.3.3.4.4 2.8 2.1s.1 1 .6 1c.4 0 2.3-1 2.2-1.1 0-.3-2-.3-2-.4ZM9.7 34l-1-1.8c.4-.7 1-1 1-.9.2 0 0 2.7 0 2.7Z" data-v-3e4cb924></path><path d="M51.8 54.8c-.1 0-1.2-.5-2.2-2-.5-.8-3.8-7-4.3-8.2-.9-2.4-8-6.7-8.2-7-.2-.1-.2-.5-.1-.8.5-2 .3-3.8.4-4.1.3-.7.8-1.7.4-2.3l-.7-1.2s3.7 1.4 4.6 1.2c.8-.2 4.5-2.8 4.7-2.9.5-.2 1.8.1 3-1.3.5-.5.2-.6 0-.6.1 0-.1-.2-.4 0-.2.1-1.3.4-1.1.2.8-.5.2-.7.2-.7-.3.3-1.8.7-2.1 1l-.8.5c-.9.5-2.4 1.3-4 1.7-.3 0-3.3-2-5-2.2-1-.1-1.3 0-1.8.1-.6.2-.6-.7 0-1 .2 0 .6-.1.7-.4.2-.4 0-.7 0-.8v-.2l-.1-.1v-.5c.3-.2.2-.4.1-.4-.1-.1-.6-.4-.7-.7 0-.6-.3-.9-.3-1.2 0 0-.1-.8-.4-1-.4-.4-1.2-.8-2.8-.3-.6.1-.5.4-1.8.6-1.6.3-2.4 2.7-2.3 3.7.1.8.8.4.8.7 0 .6-.1 1.5 1 1.8.3 0 1.8-.2 2.4 0 0 0 .5 0 .2.4-.1.2-1.6.9-2 1-1 .4-3.6 4.6-4.3 5-.7.3-1 .6-1.3.8-1 .6-2.1 1.4-2.7 1.4-.7 0-1.4.3-1.9 1.5-.1.3 0 .5.3.5 0 .1.2.3.4.3.2.2.5 0 .7 0l1-.7c.5-.2 4-1.5 4.7-2.1 1.2-.6 3.5-3 4-3s1.6 1 1.2 3c0 .7-1 2-1.4 2.6-1 1.5-.2 2.7-.4 3-1 1.6-2.2 3.7-4.2 5.5-.8.6-2.4.7-3.3 1-2 .5-4.2 2-5.7 2.8-.5.3-1-.3-1.6-.4-.7 0-.7 1-1 1.8l-.7 1.5c-.1.4-.7 1.7-.1 2.2.4.7 1.5-1.4 2.4-2.3.4-.5.7-.7 1.7-1 .6 0 5.6-1.4 8.8-2.2h.3c4.2-1.1 8.6-6.6 8.7-6.6l7.2 3.5c.7.4.7 1.8 1.5 3.4a22 22 0 0 0 4.4 4.9c.4.4 0 1 .2 1.6.2.6.6.6 1.1.6l1.6-.2c.7 0 .5 0 1.3.2.4 0 1.3.1 2-.5 1-1.2-1.2-.6-2.3-1.1Z" data-v-3e4cb924></path><path d="M44 51.7a.4.4 0 0 0-.6-.2 22.2 22.2 0 0 1-21-.6.5.5 0 0 0-.6.2c-.1.2 0 .4.1.6a23 23 0 0 0 21.9.5c.2 0 .3-.3.2-.5Z" data-v-3e4cb924></path><path d="M12.9 22.9h-.2c-.2-.2-.3-.4-.2-.6 2-4.4 5.2-8 9.3-10.4.2-.1.5 0 .6.2.2.2 0 .4-.1.6-4 2.3-7.1 5.7-9 10l-.4.2Z" data-v-3e4cb924></path><path d="M50.3 17.3c-.1 0-.3 0-.3-.2A22 22 0 0 0 36.5 10c-.2 0-.4-.3-.3-.5 0-.3.2-.4.5-.4a23 23 0 0 1 14 7.5v.7h-.4Z" data-v-3e4cb924></path>',10)]))}const ua=v(ma,[["render",ha],["__scopeId","data-v-3e4cb924"]]),fa={class:"logo"},ba=["fill"],ga={if:"serviceTitle"},ka={class:"service-title"},ya={key:0,class:"service-subtitle"},va=e.defineComponent({__name:"HeaderLogo",props:{ariaLabel:{default:ra.ariaLabel},serviceTitle:{default:void 0},serviceSubtitle:{default:void 0}},setup(t){e.useCssVars(o=>({"4db05cc3":e.unref(a)}));const a=M.useTheme().current.value.colors.primary,{isDesktop:l}=G();return(o,r)=>(e.openBlock(),e.createElementBlock("div",fa,[e.unref(l)?(e.openBlock(),e.createBlock(ua,{key:0,"aria-label":o.ariaLabel},null,8,["aria-label"])):(e.openBlock(),e.createBlock(da,{key:1,"aria-label":o.ariaLabel},null,8,["aria-label"])),e.renderSlot(o.$slots,"brand-content",{},()=>[o.serviceTitle?(e.openBlock(),e.createElementBlock("svg",{key:0,width:22,height:64,fill:e.unref(a),role:"img",focusable:"false","aria-hidden":"true",xmlns:"http://www.w3.org/2000/svg",viewBox:"0 0 22 64",class:"vd-divider"},r[0]||(r[0]=[e.createElementVNode("path",{d:"M14.3 49.3c-.2 0-.4-.2-.4-.4V14.2c0-.2.2-.4.4-.4.3 0 .5.2.5.4v34.7c0 .2-.2.4-.5.4Z"},null,-1)]),8,ba)):e.createCommentVNode("",!0),e.createElementVNode("div",ga,[e.createElementVNode("div",ka,e.toDisplayString(o.serviceTitle),1),o.serviceSubtitle?(e.openBlock(),e.createElementBlock("div",ya,e.toDisplayString(o.serviceSubtitle),1)):e.createCommentVNode("",!0)])],!0)]))}}),ze=v(va,[["__scopeId","data-v-6dde3a6b"]]),Va={homeAriaLabel:"Logo de l'Assurance Maladie, cliquez pour revenir à l'accueil"};function Na(){const t=e.ref(null),n=e.ref("");function a(){const l=document.documentElement.scrollTop;if(t.value===null)return t.value=l,"";n.value=l>=t.value?"bottom":"top",t.value=l}return e.onMounted(()=>{window.addEventListener("scroll",a)}),e.onUnmounted(()=>{window.removeEventListener("scroll",a)}),{scrollDirection:n}}const wa={key:0,class:"header-prepend"},Ba={class:"inner-header"},Ca={class:"header-logo"},Sa={key:0,class:"header-side"},Ma={key:1,class:"header-append"},La=e.defineComponent({__name:"HeaderBar",props:{sticky:{type:Boolean,default:!0},hideWhenDown:{type:Boolean,default:!1},homeAriaLabel:{default:Va.homeAriaLabel},serviceTitle:{default:void 0},serviceSubtitle:{default:void 0}},setup(t){const n=e.ref(),a=t;function l(m){e.watch(m,k=>{n.value=k})}e.provide(De,l);const o=e.ref(null),r=e.ref(null),s=e.ref("auto"),c=e.ref(0),i=e.ref(!0),d=e.ref(!1),p=e.ref(!1);function b(){const m=o.value.getBoundingClientRect();c.value=m.top+window.scrollY,s.value=`${r.value.offsetHeight}px`,i.value=window.scrollY<=c.value,d.value=window.scrollY>c.value+m.height,p.value=window.scrollY>c.value+m.height*2}e.onMounted(()=>{b(),window.addEventListener("scroll",b),window.addEventListener("resize",b)}),e.onUnmounted(()=>{window.removeEventListener("scroll",b),window.removeEventListener("resize",b)});const y=e.computed(()=>({minHeight:s.value})),{scrollDirection:u}=Na(),{isDesktop:g}=G(),h=e.computed(()=>{if(a.hideWhenDown&&!g.value&&!n.value){const k=u.value===""&&i.value||u.value==="bottom"&&!d.value||u.value==="top"&&i.value,V=u.value==="bottom"&&d.value;return{position:k?"relative":"fixed",width:k?"100%":o.value.offsetWidth+"px",top:k?"auto":"0",transform:V?"translateY(-100%)":"none",transition:p.value?"transform 0.3s ease":"none"}}const m=!i.value&&a.sticky;return{position:m?"fixed":"relative",width:m?o.value.offsetWidth+"px":"100%",top:m?"0":"auto",transform:"none",transition:"none"}});return(m,k)=>(e.openBlock(),e.createElementBlock("header",{ref_key:"header",ref:o,class:"header",style:e.normalizeStyle(y.value)},[e.createElementVNode("div",{ref_key:"headerSticky",ref:r,class:"sticky-header",style:e.normalizeStyle(h.value)},[m.$slots.prepend?(e.openBlock(),e.createElementBlock("div",wa,[e.renderSlot(m.$slots,"prepend",{menuOpen:n.value},void 0,!0)])):e.createCommentVNode("",!0),e.createElementVNode("div",Ba,[e.renderSlot(m.$slots,"menu",{menuOpen:n.value},void 0,!0),e.createElementVNode("div",Ca,[e.renderSlot(m.$slots,"logo",{menuOpen:n.value,homeAriaLabel:m.homeAriaLabel,serviceTitle:m.serviceTitle,serviceSubtitle:m.serviceSubtitle},()=>[e.createVNode(ze,{"aria-label":m.homeAriaLabel,"service-title":m.serviceTitle,"service-subtitle":m.serviceSubtitle},{"brand-content":e.withCtx(()=>[e.renderSlot(m.$slots,"logo-brand-content",{menuOpen:n.value,homeAriaLabel:m.homeAriaLabel,serviceTitle:m.serviceTitle,serviceSubtitle:m.serviceSubtitle},void 0,!0)]),_:3},8,["aria-label","service-title","service-subtitle"])],!0)]),m.$slots["header-side"]?(e.openBlock(),e.createElementBlock("div",Sa,[e.renderSlot(m.$slots,"header-side",{menuOpen:n.value},void 0,!0)])):e.createCommentVNode("",!0)]),m.$slots.append?(e.openBlock(),e.createElementBlock("div",Ma,[e.renderSlot(m.$slots,"append",{menuOpen:n.value},void 0,!0)])):e.createCommentVNode("",!0)],4)],4))}}),Pe=v(La,[["__scopeId","data-v-a7767594"]]),W={closeMenu:"Fermer le menu",openMenu:"Ouvrir le menu"},Za=["aria-label","title"],le=v(e.defineComponent({__name:"HeaderMenuBtn",props:{modelValue:{type:Boolean},modelModifiers:{}},emits:["update:modelValue"],setup(t,{expose:n}){const a=M.useTheme(),l=e.ref(null),o=e.ref(!1),r=e.useModel(t,"modelValue"),s=e.computed(()=>{const i=r.value||o.value;return{backgroundColor:i?"#fff":a.current.value.colors.primary,color:i?a.current.value.colors.primary:"#fff"}});function c(){var i;(i=l.value)==null||i.focus()}return n({focus:c}),(i,d)=>(e.openBlock(),e.createElementBlock("button",{ref_key:"btn",ref:l,class:"header-menu-btn",style:e.normalizeStyle(s.value),type:"button","aria-label":r.value?e.unref(W).closeMenu:e.unref(W).openMenu,title:r.value?e.unref(W).closeMenu:e.unref(W).openMenu,onClick:d[0]||(d[0]=()=>r.value=!r.value),onFocus:d[1]||(d[1]=p=>o.value=!0),onBlur:d[2]||(d[2]=p=>o.value=!1)},[e.createVNode(w.VIcon,{size:"48"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(r.value?e.unref(K):e.unref(vt)),1)]),_:1}),d[3]||(d[3]=e.createElementVNode("span",{class:"header-menu-btn__label"},"Menu",-1))],44,Za))}}),[["__scopeId","data-v-cbbf13b1"]]),Re={mainMenu:"Menu principal",publicMenu:"Menu public"},Fe=Symbol("registerSubMenu");function je(t){const n=e.ref([]);function a(r,s){const i={id:String(n.value.length),status:r,close:s};n.value.push(i),e.watch(r,d=>{d&&l(i)})}function l(r){n.value.forEach(s=>{s.id!==r.id&&s.status&&s.close()})}e.watch(t,r=>{r||n.value.forEach(s=>{s.status&&s.close()})});const o=e.computed(()=>n.value.some(r=>r.status));return e.provide(Fe,a),{haveOpenSubMenu:o}}const _a=["aria-label"],xa={key:0,class:"overlay"},$a=["aria-label"],Ea={class:"header-menu"},Ke=v(e.defineComponent({__name:"HeaderBurgerMenu",setup(t){const n=e.ref(null),a=e.ref(null),l=e.ref(null),o=e.ref(null),r=e.ref(0),s=e.ref(0),c=e.ref("70vh");function i(){const h=a.value.getBoundingClientRect();r.value=h.left,s.value=h.top,c.value=`calc(100vh - ${h.top}px - 48px)`}e.onMounted(()=>{i(),window.addEventListener("scroll",i),window.addEventListener("resize",i),window.addEventListener("click",y,{capture:!0})}),e.onUnmounted(()=>{window.removeEventListener("scroll",i),window.removeEventListener("resize",i),window.removeEventListener("click",y,{capture:!0})});const d=e.ref(!1);e.watch(d,async h=>{document.documentElement.style.overflow=h?"hidden":"auto",document.body.style.overflow=h?"hidden":"auto",h?(i(),await e.nextTick(),o.value.focus()):l.value.focus()});const{isDesktop:p}=G(),b=e.computed(()=>({left:`${r.value}px`,top:`${s.value}px`,height:p.value?c.value:void 0}));function y(h){if(!d.value)return;let m=h.target;for(;m&&m!==document.body;){if(m===n.value)return;m=m.parentElement}d.value=!1}const{haveOpenSubMenu:u}=je(e.readonly(d)),g=e.inject(De);return g&&g(d),(h,m)=>(e.openBlock(),e.createElementBlock("div",{role:"dialog","aria-modal":"true","aria-label":e.unref(Re).mainMenu},[e.createElementVNode("div",{ref_key:"menuBtnWrapper",ref:a},[e.createVNode(le,{ref_key:"outerBtn",ref:l,modelValue:d.value,"onUpdate:modelValue":m[0]||(m[0]=k=>d.value=k)},null,8,["modelValue"])],512),(e.openBlock(),e.createBlock(e.Teleport,{to:"body"},[e.createVNode(e.Transition,{name:"menu"},{default:e.withCtx(()=>[d.value?(e.openBlock(),e.createElementBlock("div",xa,[e.createElementVNode("div",{ref_key:"menuWrapper",ref:n,role:"menu",class:"menu-wrapper",style:e.normalizeStyle(b.value)},[e.createVNode(le,{ref_key:"innerBtn",ref:o,modelValue:d.value,"onUpdate:modelValue":m[1]||(m[1]=k=>d.value=k)},null,8,["modelValue"]),e.createElementVNode("nav",{id:"header-menu-wrapper",class:e.normalizeClass(["header-menu-wrapper",{"header-menu-wrapper--submenu-open":e.unref(u)}]),role:"navigation","aria-label":e.unref(Re).publicMenu},[e.createElementVNode("div",Ea,[e.renderSlot(h.$slots,"default",{},void 0,!0)])],10,$a)],4)])):e.createCommentVNode("",!0)]),_:3})]))],8,_a))}}),[["__scopeId","data-v-3e36a465"]]),Ta={},Ia={class:"header-menu-item"};function Aa(t,n){return e.openBlock(),e.createElementBlock("li",Ia,[e.renderSlot(t.$slots,"default",{},void 0,!0)])}const qe=v(Ta,[["render",Aa],["__scopeId","data-v-753dd5aa"]]),Ha={class:"header-menu-section"},Ue=v(e.defineComponent({__name:"HeaderMenuSection",props:{title:{}},setup(t){const n=e.useId(),a=`${n}-group`,l=`${n}-group-title`;return(o,r)=>(e.openBlock(),e.createElementBlock("div",Ha,[o.title?(e.openBlock(),e.createElementBlock("div",{key:0,id:l,class:"header-menu-section-title"},e.toDisplayString(o.title),1)):e.createCommentVNode("",!0),e.createElementVNode("ul",{id:a,role:"group",class:"header-menu-section-list"},[e.renderSlot(o.$slots,"default",{},void 0,!0)])]))}}),[["__scopeId","data-v-c7879d24"]]),Oa=["aria-expanded","aria-controls","title"],Da=["id"],za={class:"sub-menu-content"},Pa=v(e.defineComponent({__name:"HeaderSubMenu",setup(t){const n=e.ref(!1),a=e.useId(),l=`${a}-btn`,o=e.inject(Fe,void 0);if(!o)throw new Error("The HeaderSubMenu component must be used inside a HeaderBurgerMenu component");o(n,()=>{n.value=!1});const{haveOpenSubMenu:r}=je(e.readonly(n));return(s,c)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["sub-menu",{"sub-menu--open":n.value,"sub-menu--child-open":e.unref(r)}])},[e.createElementVNode("button",{id:l,class:"sub-menu-btn",type:"button","aria-expanded":n.value?"true":"false","aria-controls":e.unref(a),title:n.value?"Close submenu":"Open submenu",onClick:c[0]||(c[0]=i=>n.value=!n.value)},[e.renderSlot(s.$slots,"title",{},void 0,!0),e.createVNode(w.VIcon,{size:"36",class:"sub-menu-btn__icon"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(n.value?e.unref(ht):e.unref(ut)),1)]),_:1})],8,Oa),e.createVNode(e.Transition,{name:"slide-fade"},{default:e.withCtx(()=>[e.withDirectives(e.createElementVNode("div",{id:e.unref(a),class:"sub-menu-content-wrapper","aria-labelledby":l},[e.createElementVNode("div",za,[e.renderSlot(s.$slots,"default",{},void 0,!0)])],8,Da),[[e.vShow,n.value]])]),_:3})],2))}}),[["__scopeId","data-v-5b9763a6"]]),Ra={class:"horizontal-menu__item-link"},Fa=v(e.defineComponent({__name:"HorizontalNavbar",props:{items:{}},setup(t){const n=Te.colors.background.accentContrasted,a=Te.colors.text.subduedOnDark;return(l,o)=>(e.openBlock(),e.createBlock(te.VSheet,{class:"horizontal-menu px-12",dense:"",theme:"dark",color:e.unref(n)},{default:e.withCtx(()=>[e.renderSlot(l.$slots,"navigation-bar-prepend",{},void 0,!0),e.renderSlot(l.$slots,"default",{},()=>[e.createVNode(e.unref(B.VTabs),{height:"53",class:"horizontal-menu__tabs","show-arrows":""},{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(l.items,(r,s)=>(e.openBlock(),e.createBlock(lt.VTab,{key:s,href:r.href,to:r.to,"slider-color":"#fff","base-color":e.unref(a),ripple:!1,tabindex:"0",class:"horizontal-menu__item"},{default:e.withCtx(()=>[e.createElementVNode("span",Ra,e.toDisplayString(r.label),1)]),_:2},1032,["href","to","base-color"]))),128))]),_:1})],!0),e.renderSlot(l.$slots,"navigation-bar-append",{},void 0,!0)]),_:3},8,["color"]))}}),[["__scopeId","data-v-22407376"]]),ja={class:"inner-vertical-menu"},Ka={class:"inner-vertical-menu__main-content"},qa=["href"],Ua=v(e.defineComponent({__name:"HeaderNavbar",props:{homeAriaLabel:{default:void 0},serviceTitle:{default:void 0},serviceSubtitle:{default:void 0},sticky:{type:Boolean},hideWhenDown:{type:Boolean,default:!1},maxHorizontalMenuItems:{default:6},items:{default:void 0}},setup(t){const n=t,{isDesktop:a}=G(),l=e.computed(()=>!a.value||n.items!==void 0&&n.items.length>0&&n.items.length>n.maxHorizontalMenuItems),o=e.ref();return(r,s)=>(e.openBlock(),e.createBlock(Pe,{sticky:r.sticky,"hide-when-down":r.hideWhenDown,"home-aria-label":r.homeAriaLabel,"service-title":r.serviceTitle,"service-subtitle":r.serviceSubtitle},{menu:e.withCtx(()=>[l.value?(e.openBlock(),e.createBlock(Ke,{key:0},{default:e.withCtx(()=>[e.createElementVNode("div",ja,[e.renderSlot(r.$slots,"navigation-menu-prepend",{menuOpen:o.value},void 0,!0),e.createElementVNode("div",Ka,[e.renderSlot(r.$slots,"navigation-menu-content",{menuOpen:o.value},()=>[e.createVNode(Ue,null,{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(r.items,c=>(e.openBlock(),e.createBlock(qe,{key:c.label},{default:e.withCtx(()=>[c.href?(e.openBlock(),e.createElementBlock("a",{key:0,href:c.href},e.toDisplayString(c.label),9,qa)):c.to?(e.openBlock(),e.createBlock(e.unref(x1),{key:1,to:c.to},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(c.label),1)]),_:2},1032,["to"])):e.createCommentVNode("",!0)]),_:2},1024))),128))]),_:1})],!0)]),e.renderSlot(r.$slots,"navigation-menu-append",{menuOpen:o.value},void 0,!0)])]),_:3})):e.createCommentVNode("",!0)]),"logo-brand-content":e.withCtx(()=>[e.renderSlot(r.$slots,"logo-brand-content",{menuOpen:o.value,homeAriaLabel:r.homeAriaLabel,serviceTitle:r.serviceTitle,serviceSubtitle:r.serviceSubtitle},void 0,!0)]),logo:e.withCtx(()=>[e.renderSlot(r.$slots,"logo",{menuOpen:o.value,homeAriaLabel:r.homeAriaLabel,serviceTitle:r.serviceTitle,serviceSubtitle:r.serviceSubtitle},void 0,!0)]),"header-side":e.withCtx(()=>[e.renderSlot(r.$slots,"header-side",{menuOpen:o.value},void 0,!0)]),append:e.withCtx(()=>[n.items&&!l.value?(e.openBlock(),e.createBlock(Fa,{key:0,items:r.items},{"navigation-bar-prepend":e.withCtx(()=>[e.renderSlot(r.$slots,"navigation-bar-prepend",{},void 0,!0)]),"navigation-bar-append":e.withCtx(()=>[e.renderSlot(r.$slots,"navigation-bar-append",{},void 0,!0)]),default:e.withCtx(()=>[e.renderSlot(r.$slots,"navigation-bar-content",{},void 0,!0)]),_:3},8,["items"])):e.createCommentVNode("",!0)]),_:3},8,["sticky","hide-when-down","home-aria-label","service-title","service-subtitle"]))}}),[["__scopeId","data-v-542c3eaa"]]),Ga={label:"Choix de la langue. Actuellement"};var Wa={aa:{name:"Afar",nativeName:"Afaraf"},ab:{name:"Abkhaz",nativeName:"аҧсуа бызшәа"},ae:{name:"Avestan",nativeName:"avesta"},af:{name:"Afrikaans",nativeName:"Afrikaans"},ak:{name:"Akan",nativeName:"Akan"},am:{name:"Amharic",nativeName:"አማርኛ"},an:{name:"Aragonese",nativeName:"aragonés"},ar:{name:"Arabic",nativeName:"العربية"},as:{name:"Assamese",nativeName:"অসমীয়া"},av:{name:"Avaric",nativeName:"авар мацӀ"},ay:{name:"Aymara",nativeName:"aymar aru"},az:{name:"Azerbaijani",nativeName:"azərbaycan dili"},ba:{name:"Bashkir",nativeName:"башҡорт теле"},be:{name:"Belarusian",nativeName:"беларуская мова"},bg:{name:"Bulgarian",nativeName:"български език"},bi:{name:"Bislama",nativeName:"Bislama"},bm:{name:"Bambara",nativeName:"bamanankan"},bn:{name:"Bengali",nativeName:"বাংলা"},bo:{name:"Tibetan",nativeName:"བོད་ཡིག"},br:{name:"Breton",nativeName:"brezhoneg"},bs:{name:"Bosnian",nativeName:"bosanski jezik"},ca:{name:"Catalan",nativeName:"Català"},ce:{name:"Chechen",nativeName:"нохчийн мотт"},ch:{name:"Chamorro",nativeName:"Chamoru"},co:{name:"Corsican",nativeName:"corsu"},cr:{name:"Cree",nativeName:"ᓀᐦᐃᔭᐍᐏᐣ"},cs:{name:"Czech",nativeName:"čeština"},cu:{name:"Old Church Slavonic",nativeName:"ѩзыкъ словѣньскъ"},cv:{name:"Chuvash",nativeName:"чӑваш чӗлхи"},cy:{name:"Welsh",nativeName:"Cymraeg"},da:{name:"Danish",nativeName:"Dansk"},de:{name:"German",nativeName:"Deutsch"},dv:{name:"Divehi",nativeName:"ދިވެހި"},dz:{name:"Dzongkha",nativeName:"རྫོང་ཁ"},ee:{name:"Ewe",nativeName:"Eʋegbe"},el:{name:"Greek",nativeName:"Ελληνικά"},en:{name:"English",nativeName:"English"},eo:{name:"Esperanto",nativeName:"Esperanto"},es:{name:"Spanish",nativeName:"Español"},et:{name:"Estonian",nativeName:"eesti"},eu:{name:"Basque",nativeName:"euskara"},fa:{name:"Persian",nativeName:"فارسی"},ff:{name:"Fula",nativeName:"Fulfulde"},fi:{name:"Finnish",nativeName:"suomi"},fj:{name:"Fijian",nativeName:"vosa Vakaviti"},fo:{name:"Faroese",nativeName:"Føroyskt"},fr:{name:"French",nativeName:"Français"},fy:{name:"Western Frisian",nativeName:"Frysk"},ga:{name:"Irish",nativeName:"Gaeilge"},gd:{name:"Scottish Gaelic",nativeName:"Gàidhlig"},gl:{name:"Galician",nativeName:"galego"},gn:{name:"Guaraní",nativeName:"Avañe'ẽ"},gu:{name:"Gujarati",nativeName:"ગુજરાતી"},gv:{name:"Manx",nativeName:"Gaelg"},ha:{name:"Hausa",nativeName:"هَوُسَ"},he:{name:"Hebrew",nativeName:"עברית"},hi:{name:"Hindi",nativeName:"हिन्दी"},ho:{name:"Hiri Motu",nativeName:"Hiri Motu"},hr:{name:"Croatian",nativeName:"Hrvatski"},ht:{name:"Haitian",nativeName:"Kreyòl ayisyen"},hu:{name:"Hungarian",nativeName:"magyar"},hy:{name:"Armenian",nativeName:"Հայերեն"},hz:{name:"Herero",nativeName:"Otjiherero"},ia:{name:"Interlingua",nativeName:"Interlingua"},id:{name:"Indonesian",nativeName:"Bahasa Indonesia"},ie:{name:"Interlingue",nativeName:"Interlingue"},ig:{name:"Igbo",nativeName:"Asụsụ Igbo"},ii:{name:"Nuosu",nativeName:"ꆈꌠ꒿ Nuosuhxop"},ik:{name:"Inupiaq",nativeName:"Iñupiaq"},io:{name:"Ido",nativeName:"Ido"},is:{name:"Icelandic",nativeName:"Íslenska"},it:{name:"Italian",nativeName:"Italiano"},iu:{name:"Inuktitut",nativeName:"ᐃᓄᒃᑎᑐᑦ"},ja:{name:"Japanese",nativeName:"日本語"},jv:{name:"Javanese",nativeName:"basa Jawa"},ka:{name:"Georgian",nativeName:"ქართული"},kg:{name:"Kongo",nativeName:"Kikongo"},ki:{name:"Kikuyu",nativeName:"Gĩkũyũ"},kj:{name:"Kwanyama",nativeName:"Kuanyama"},kk:{name:"Kazakh",nativeName:"қазақ тілі"},kl:{name:"Kalaallisut",nativeName:"kalaallisut"},km:{name:"Khmer",nativeName:"ខេមរភាសា"},kn:{name:"Kannada",nativeName:"ಕನ್ನಡ"},ko:{name:"Korean",nativeName:"한국어"},kr:{name:"Kanuri",nativeName:"Kanuri"},ks:{name:"Kashmiri",nativeName:"कश्मीरी"},ku:{name:"Kurdish",nativeName:"Kurdî"},kv:{name:"Komi",nativeName:"коми кыв"},kw:{name:"Cornish",nativeName:"Kernewek"},ky:{name:"Kyrgyz",nativeName:"Кыргызча"},la:{name:"Latin",nativeName:"latine"},lb:{name:"Luxembourgish",nativeName:"Lëtzebuergesch"},lg:{name:"Ganda",nativeName:"Luganda"},li:{name:"Limburgish",nativeName:"Limburgs"},ln:{name:"Lingala",nativeName:"Lingála"},lo:{name:"Lao",nativeName:"ພາສາລາວ"},lt:{name:"Lithuanian",nativeName:"lietuvių kalba"},lu:{name:"Luba-Katanga",nativeName:"Kiluba"},lv:{name:"Latvian",nativeName:"latviešu valoda"},mg:{name:"Malagasy",nativeName:"fiteny malagasy"},mh:{name:"Marshallese",nativeName:"Kajin M̧ajeļ"},mi:{name:"Māori",nativeName:"te reo Māori"},mk:{name:"Macedonian",nativeName:"македонски јазик"},ml:{name:"Malayalam",nativeName:"മലയാളം"},mn:{name:"Mongolian",nativeName:"Монгол хэл"},mr:{name:"Marathi",nativeName:"मराठी"},ms:{name:"Malay",nativeName:"Bahasa Melayu"},mt:{name:"Maltese",nativeName:"Malti"},my:{name:"Burmese",nativeName:"ဗမာစာ"},na:{name:"Nauru",nativeName:"Dorerin Naoero"},nb:{name:"Norwegian Bokmål",nativeName:"Norsk bokmål"},nd:{name:"Northern Ndebele",nativeName:"isiNdebele"},ne:{name:"Nepali",nativeName:"नेपाली"},ng:{name:"Ndonga",nativeName:"Owambo"},nl:{name:"Dutch",nativeName:"Nederlands"},nn:{name:"Norwegian Nynorsk",nativeName:"Norsk nynorsk"},no:{name:"Norwegian",nativeName:"Norsk"},nr:{name:"Southern Ndebele",nativeName:"isiNdebele"},nv:{name:"Navajo",nativeName:"Diné bizaad"},ny:{name:"Chichewa",nativeName:"chiCheŵa"},oc:{name:"Occitan",nativeName:"occitan"},oj:{name:"Ojibwe",nativeName:"ᐊᓂᔑᓈᐯᒧᐎᓐ"},om:{name:"Oromo",nativeName:"Afaan Oromoo"},or:{name:"Oriya",nativeName:"ଓଡ଼ିଆ"},os:{name:"Ossetian",nativeName:"ирон æвзаг"},pa:{name:"Panjabi",nativeName:"ਪੰਜਾਬੀ"},pi:{name:"Pāli",nativeName:"पाऴि"},pl:{name:"Polish",nativeName:"Polski"},ps:{name:"Pashto",nativeName:"پښتو"},pt:{name:"Portuguese",nativeName:"Português"},qu:{name:"Quechua",nativeName:"Runa Simi"},rm:{name:"Romansh",nativeName:"rumantsch grischun"},rn:{name:"Kirundi",nativeName:"Ikirundi"},ro:{name:"Romanian",nativeName:"Română"},ru:{name:"Russian",nativeName:"Русский"},rw:{name:"Kinyarwanda",nativeName:"Ikinyarwanda"},sa:{name:"Sanskrit",nativeName:"संस्कृतम्"},sc:{name:"Sardinian",nativeName:"sardu"},sd:{name:"Sindhi",nativeName:"सिन्धी"},se:{name:"Northern Sami",nativeName:"Davvisámegiella"},sg:{name:"Sango",nativeName:"yângâ tî sängö"},si:{name:"Sinhala",nativeName:"සිංහල"},sk:{name:"Slovak",nativeName:"slovenčina"},sl:{name:"Slovenian",nativeName:"slovenščina"},sm:{name:"Samoan",nativeName:"gagana fa'a Samoa"},sn:{name:"Shona",nativeName:"chiShona"},so:{name:"Somali",nativeName:"Soomaaliga"},sq:{name:"Albanian",nativeName:"Shqip"},sr:{name:"Serbian",nativeName:"српски језик"},ss:{name:"Swati",nativeName:"SiSwati"},st:{name:"Southern Sotho",nativeName:"Sesotho"},su:{name:"Sundanese",nativeName:"Basa Sunda"},sv:{name:"Swedish",nativeName:"Svenska"},sw:{name:"Swahili",nativeName:"Kiswahili"},ta:{name:"Tamil",nativeName:"தமிழ்"},te:{name:"Telugu",nativeName:"తెలుగు"},tg:{name:"Tajik",nativeName:"тоҷикӣ"},th:{name:"Thai",nativeName:"ไทย"},ti:{name:"Tigrinya",nativeName:"ትግርኛ"},tk:{name:"Turkmen",nativeName:"Türkmençe"},tl:{name:"Tagalog",nativeName:"Wikang Tagalog"},tn:{name:"Tswana",nativeName:"Setswana"},to:{name:"Tonga",nativeName:"faka Tonga"},tr:{name:"Turkish",nativeName:"Türkçe"},ts:{name:"Tsonga",nativeName:"Xitsonga"},tt:{name:"Tatar",nativeName:"татар теле"},tw:{name:"Twi",nativeName:"Twi"},ty:{name:"Tahitian",nativeName:"Reo Tahiti"},ug:{name:"Uyghur",nativeName:"ئۇيغۇرچە"},uk:{name:"Ukrainian",nativeName:"Українська"},ur:{name:"Urdu",nativeName:"اردو"},uz:{name:"Uzbek",nativeName:"Ўзбек"},ve:{name:"Venda",nativeName:"Tshivenḓa"},vi:{name:"Vietnamese",nativeName:"Tiếng Việt"},vo:{name:"Volapük",nativeName:"Volapük"},wa:{name:"Walloon",nativeName:"walon"},wo:{name:"Wolof",nativeName:"Wollof"},xh:{name:"Xhosa",nativeName:"isiXhosa"},yi:{name:"Yiddish",nativeName:"ייִדיש"},yo:{name:"Yoruba",nativeName:"Yorùbá"},za:{name:"Zhuang",nativeName:"Saɯ cueŋƅ"},zh:{name:"Chinese",nativeName:"中文"},zu:{name:"Zulu",nativeName:"isiZulu"}};const F=Wa,Ge={},Y={},We=[],Ye=[],Qe=[];for(const t in F){const{name:n,nativeName:a}=F[t];Ge[t]=Y[n.toLowerCase()]=Y[a.toLowerCase()]={code:t,name:n,nativeName:a},We.push(t),Ye.push(n),Qe.push(a)}var Ya=class X{static getLanguages(n=[]){return n.map(a=>X.validate(a)?Object.assign({},Ge[a]):{code:a,name:"",nativeName:""})}static getName(n){return X.validate(n)?F[n].name:""}static getAllNames(){return Ye.slice()}static getNativeName(n){return X.validate(n)?F[n].nativeName:""}static getAllNativeNames(){return Qe.slice()}static getCode(n){return n=n.toLowerCase(),Y.hasOwnProperty(n)?Y[n].code:""}static getAllCodes(){return We.slice()}static validate(n){return F.hasOwnProperty(n)}};const Q=be(Ya),Qa={menu:{offsetY:!0},btn:{color:"primary",variant:"outlined",ripple:!0},icon:{class:"ml-1"}},Xa=["id"],Ja=e.defineComponent({__name:"LangBtn",props:{vuetifyOptions:{},modelValue:{default:"fr"},hideDownArrow:{type:Boolean,default:!1},ariaLabel:{default:Ga.label},ariaOwns:{default:"lang-btn"},availableLanguages:{default:()=>["fr","en"]}},emits:["update:modelValue","change"],setup(t,{expose:n,emit:a}){const l=t,o=L(Qa,l),r=a,s=e.ref(!1),c=e.ref(l.modelValue);e.watch(()=>l.modelValue,u=>{c.value=u});function i(u){c.value=u,r("update:modelValue",u),r("change",u),s.value=!1}const d=e.computed(()=>s.value),p=e.computed(()=>"lang-menu-id"),b=e.computed(()=>{const u={};let g;return l.availableLanguages==="*"?g=Q.getAllCodes():g=l.availableLanguages,g.forEach(h=>{u[h]={code:h,name:Q.getName(h)||h,nativeName:Q.getNativeName(h)||Q.getName(h)||h}}),u}),y=e.computed(()=>{const u=b.value[c.value];return{name:(u==null?void 0:u.nativeName)||c.value,label:`${l.ariaLabel} ${(u==null?void 0:u.nativeName)||c.value}`}});return n({currentLangData:y,updateLang:i,selectedLanguage:c}),(u,g)=>(e.openBlock(),e.createElementBlock("div",{id:p.value},[e.createVNode(rt.VMenu,e.mergeProps(e.unref(o).menu,{id:d.value?"lang-menu":p.value,modelValue:s.value,"onUpdate:modelValue":g[0]||(g[0]=h=>s.value=h),role:"menu",location:"bottom"}),{activator:e.withCtx(({props:h})=>[e.createVNode(S.VBtn,e.mergeProps({id:"lang-menu-btn","aria-label":`${l.ariaLabel} ${y.value.name}`,"aria-haspopup":"menu","aria-controls":p.value,"aria-owns":p.value,"aria-expanded":d.value},{...e.unref(o).btn,...h},{class:"vd-lang-btn"}),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(y.value.name)+" ",1),u.hideDownArrow?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(w.VIcon,e.mergeProps({key:0},e.unref(o).icon,{class:"ml-1"}),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(e.unref(fe)),1)]),_:1},16))]),_:2},1040,["aria-label","aria-controls","aria-owns","aria-expanded"])]),default:e.withCtx(()=>[e.createVNode(ae.VList,e.mergeProps(e.unref(o).list,{"aria-labelledby":"lang-menu-btn"}),{default:e.withCtx(()=>[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(b.value,(h,m,k)=>(e.openBlock(),e.createBlock(ae.VListItem,e.mergeProps({ref_for:!0},e.unref(o).listTile,{key:m,role:"menuitem",tabindex:k+1,"aria-label":`${l.ariaLabel} ${h.nativeName}`,"aria-labelledby":`${p.value} ${h.nativeName}`,onClick:V=>i(m)}),{default:e.withCtx(()=>[e.createVNode(ae.VListItemTitle,e.mergeProps({ref_for:!0},e.unref(o).listTileTitle),{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(h.nativeName),1)]),_:2},1040)]),_:2},1040,["tabindex","aria-label","aria-labelledby","onClick"]))),128))]),_:1},16)]),_:1},16,["id","modelValue"])],8,Xa))}}),en=v(Ja,[["__scopeId","data-v-40aa801b"]]),O=e.ref([]);function Xe(){return{notificationQueue:O,addNotification:l=>{O.value.some(o=>o.id===l.id)||O.value.push(l)},removeNotification:l=>{O.value=O.value.filter(o=>o.id!==l)},clearQueue:()=>{O.value=[]}}}const tn=Object.freeze(Object.defineProperty({__proto__:null,useNotificationService:Xe},Symbol.toStringTag,{value:"Module"})),an={snackBar:{timeout:-1},icon:{class:"mr-2"},btn:{variant:"text"}},nn={key:0},on={class:"d-flex align-center ga-2"},ln=v(e.defineComponent({__name:"NotificationBar",props:{vuetifyOptions:{},closeBtnText:{default:"Fermer"},rounded:{type:[Number,String,Boolean],default:4},bottom:{type:Boolean,default:!1}},setup(t,{expose:n}){const a=t,l=L(an,a),o=M.useDisplay(),{notificationQueue:r,removeNotification:s}=Xe(),c=e.getCurrentInstance(),i=e.ref(),d=e.ref(!1),p=e.ref(!1),b=e.computed(()=>!!(c!=null&&c.slots.action)),y=e.computed(()=>o.name.value==="xs"),u=e.computed(()=>o.name.value==="sm"),g=e.computed(()=>{var N,$;return((($=(N=i.value)==null?void 0:N.message)==null?void 0:$.length)??0)>50}),h={info:ne,success:he,warning:st,error:de},m=e.computed(()=>i.value?h[i.value.type]:null),k=e.computed(()=>i.value&&{info:"info",success:"#56C271",warning:"#F0B323",error:"error"}[i.value.type]||"info"),V=e.computed(()=>i.value?{contentColor:i.value.type==="success"||i.value.type==="warning"?"grey-darken-80":"white"}:{contentColor:"white"}),C=e.computed(()=>y.value&&!g.value&&!b.value),x=N=>{i.value={...N}},re=async()=>{for(p.value=!0;r.value.length>0;){const N=r.value[0];x(N),d.value=!0;let $=N.timeout??-1;$<=0?await new Promise(T=>{const E=e.watch(d,ce=>{ce||(E(),T())})}):await new Promise(T=>{const E=setTimeout(()=>{ie(),T()},$),ce=e.watch(d,wn=>{wn||(clearTimeout(E),ce(),T())})}),s(N.id)}p.value=!1},ie=()=>{d.value=!1,i.value&&(s(i.value.id),i.value=void 0)},Vn=N=>{x(N),d.value=!0},Nn=()=>{if(r.value.length>0){const N=r.value[0];x(N),d.value=!0}};return e.watch(()=>r.value.length,N=>{N>0&&!p.value&&re()}),n({openNotification:Vn,handleClearNotification:ie,showNextNotification:Nn,processNotificationQueue:re,currentNotification:i,isNotificationVisible:d,hasActionSlot:b,isMobileVersion:y,hasLongContent:g,color:k,icon:m,contentStyle:V,smallCloseBtn:C,isVertical:e.computed(()=>g.value&&y.value)}),(N,$)=>{var T;return i.value?(e.openBlock(),e.createElementBlock("div",nn,[e.createVNode(it.VSnackbar,e.mergeProps(e.unref(l).snackbar,{modelValue:d.value,"onUpdate:modelValue":$[0]||($[0]=E=>d.value=E),role:"status",color:k.value,location:a.bottom?"bottom":"top",vertical:g.value,"multi-line":g.value,timeout:((T=i.value)==null?void 0:T.timeout)??-1,width:y.value||u.value?"auto":"960px",rounded:a.rounded,class:[{"long-text":g.value}]}),{actions:e.withCtx(()=>[e.createElementVNode("div",{class:e.normalizeClass(["d-flex ga-2",g.value?"action-section-longText":"action-section-shortText"]),style:{width:"100%"}},[e.renderSlot(N.$slots,"action",{},void 0,!0),e.createVNode(S.VBtn,e.mergeProps({class:["notification-bar__close",{"ma-0":C.value}],"aria-label":"Fermer la notification"},e.unref(l).btn,{onClick:ie}),{default:e.withCtx(()=>[C.value?(e.openBlock(),e.createBlock(w.VIcon,{key:1,icon:e.unref(K)},null,8,["icon"])):(e.openBlock(),e.createElementBlock(e.Fragment,{key:0},[e.createTextVNode(e.toDisplayString(N.closeBtnText),1)],64))]),_:1},16,["class"])],2)]),default:e.withCtx(()=>{var E;return[e.createElementVNode("div",on,[!y.value&&m.value?(e.openBlock(),e.createBlock(w.VIcon,e.mergeProps({key:0},e.unref(l).icon,{icon:m.value,size:"24","aria-hidden":"true"}),null,16,["icon"])):e.createCommentVNode("",!0),e.createElementVNode("p",{class:e.normalizeClass("text-"+V.value.contentColor)},e.toDisplayString((E=i.value)==null?void 0:E.message),3)])]}),_:3},16,["modelValue","color","location","vertical","multi-line","timeout","width","rounded","class"])])):e.createCommentVNode("",!0)}}}),[["__scopeId","data-v-93d35fbf"]]),rn=v(e.defineComponent({__name:"PageContainer",props:{size:{default:"xl"},spacing:{default:void 0},color:{default:"transparent"}},setup(t,{expose:n}){const a=t,l=M.useDisplay(),o={xs:"px-0",sm:"px-4",md:"px-8",lg:"px-8",xl:"px-8"},r=o[l.name.value],s=e.computed(()=>a.spacing?`py-10 ${o[a.spacing]}`:`py-10 ${r}`),c={xl:1440,l:960,m:800,s:600},i=e.computed(()=>c[a.size]);return n({spacingClass:s,containerSize:i}),(d,p)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass([s.value,"vd-page-container d-flex justify-center"])},[e.createVNode(te.VSheet,{width:i.value,color:d.color},{default:e.withCtx(()=>[e.renderSlot(d.$slots,"default",{},void 0,!0)]),_:3},8,["width","color"])],2))}}),[["__scopeId","data-v-773c0ca7"]]),cn={label:"Aller au contenu principal"},sn={class:"vd-skip-link-container"},dn=["href"],mn=e.defineComponent({__name:"SkipLink",props:{label:{default:cn.label},target:{default:"#main"}},setup(t){const n=e.ref(null);return e.onMounted(()=>{var s,c;const a=e.getCurrentInstance();if(!a)return;const l=(s=a==null?void 0:a.appContext.app)==null?void 0:s.$nuxt;let o;l&&l.$router&&(o=l.$router);const r=(c=a.appContext.app.config.globalProperties)==null?void 0:c.$router;r&&(o=r),o&&o.afterEach&&o.afterEach((i,d,p)=>{p||i.path!==d.path&&e.nextTick(()=>{var b;(b=n.value)==null||b.focus()})})}),(a,l)=>(e.openBlock(),e.createElementBlock("div",sn,[e.createElementVNode("span",{ref_key:"skipLinkSpan",ref:n,tabindex:"-1"},null,512),e.createElementVNode("a",{href:a.target,class:"vd-skip-link text-primary d-block d-sr-only-focusable px-2"},[e.renderSlot(a.$slots,"default",{},()=>[e.createTextVNode(e.toDisplayString(a.label),1)],!0)],8,dn)]))}}),pn=v(mn,[["__scopeId","data-v-2bd5b004"]]),hn={sheet:{color:"secondary"},backBtn:{size:"small",variant:"text",class:"font-weight-regular white--text px-1"}},un={backBtnText:"Retour"},fn={class:"vd-sub-header-content d-flex justify-space-between"},bn={class:"vd-sub-header-informations d-flex flex-column flex-shrink-0 mr-10"},gn={key:1,class:"text-h5 font-weight-bold"},kn={key:1,class:"text-h6 font-weight-bold mt-1 mb-0",style:{color:"rgba(255, 255, 255, .7)"}},yn=e.defineComponent({__name:"SubHeader",props:{vuetifyOptions:{},maxWidth:{},minWidth:{},width:{},hideBackBtn:{type:Boolean,default:!1},backBtnText:{default:un.backBtnText},titleText:{default:void 0},subTitleText:{default:void 0},dataListGroupItems:{default:void 0},loading:{type:Boolean,default:!1},renderHtmlValue:{type:Boolean,default:!1}},emits:["click:list-item","back"],setup(t,{emit:n}){const a=t,l=L(hn,a),{widthStyles:o}=ve(a),r=e.ref(kt),s=n;function c(i){s("click:list-item",i)}return(i,d)=>(e.openBlock(),e.createBlock(te.VSheet,e.mergeProps(e.unref(l).sheet,{style:e.unref(o),class:"vd-sub-header white--text py-6 px-8"}),{default:e.withCtx(()=>[e.renderSlot(i.$slots,"back-btn",{},()=>[i.hideBackBtn?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(D.VFadeTransition,{key:0,mode:"out-in"},{default:e.withCtx(()=>[i.loading?(e.openBlock(),e.createBlock(e.unref(se.VSkeletonLoader),{key:0,"max-height":"28",type:"button",color:"secondary",class:"vd-subheader-loading mb-4"})):(e.openBlock(),e.createBlock(S.VBtn,e.mergeProps({key:1},e.unref(l).backBtn,{class:"vd-sub-header-back-btn mb-1",onClick:d[0]||(d[0]=p=>i.$emit("back"))}),{default:e.withCtx(()=>[e.renderSlot(i.$slots,"back-btn-icon",{},()=>[e.createVNode(w.VIcon,{class:"mr-2"},{default:e.withCtx(()=>[e.createTextVNode(e.toDisplayString(r.value),1)]),_:1})],!0),e.createTextVNode(" "+e.toDisplayString(i.backBtnText),1)]),_:3},16))]),_:3}))],!0),e.createElementVNode("div",fn,[e.createElementVNode("div",bn,[e.renderSlot(i.$slots,"title",{},()=>[e.createVNode(D.VFadeTransition,{mode:"out-in"},{default:e.withCtx(()=>[i.loading?(e.openBlock(),e.createBlock(A,{key:0,width:"300",height:"2rem",color:"secondary"})):i.titleText?(e.openBlock(),e.createElementBlock("h2",gn,e.toDisplayString(i.titleText),1)):e.createCommentVNode("",!0)]),_:1})],!0),e.renderSlot(i.$slots,"sub-title",{},()=>[i.subTitleText?(e.openBlock(),e.createBlock(D.VFadeTransition,{key:0,mode:"out-in"},{default:e.withCtx(()=>[i.loading?(e.openBlock(),e.createBlock(A,{key:0,class:"mt-1",width:"250",height:"2rem",color:"secondary"})):(e.openBlock(),e.createElementBlock("p",kn,e.toDisplayString(i.subTitleText),1))]),_:1})):e.createCommentVNode("",!0)],!0),e.renderSlot(i.$slots,"additional-informations",{},void 0,!0)]),e.renderSlot(i.$slots,"right-content",{},()=>[i.dataListGroupItems?(e.openBlock(),e.createBlock(Ne,{key:0,items:i.dataListGroupItems,loading:i.loading,"render-html-value":i.renderHtmlValue,"item-width":"auto",class:"flex-nowrap flex-shrink-0","onClick:listItem":c},null,8,["items","loading","render-html-value"])):e.createCommentVNode("",!0)],!0)])]),_:3},16,["style"]))}}),vn=v(yn,[["__scopeId","data-v-ac02e38f"]]);f.Alert=Bt,f.BackBtn=St,f.BackToTopBtn=Ft,f.CollapsibleList=Yt,f.CopyBtn=t1,f.CustomInputSelect=o1,f.CustomSelect=l1,f.CustomTextField=r1,f.DataList=Ve,f.DataListGroup=Ne,f.DownloadBtn=C1,f.FooterBar=X1,f.FranceConnectBtn=oa,f.HeaderBar=Pe,f.HeaderBurgerMenu=Ke,f.HeaderLoading=A,f.HeaderLogo=ze,f.HeaderMenuBtn=le,f.HeaderMenuItem=qe,f.HeaderMenuSection=Ue,f.HeaderNavbar=Ua,f.HeaderSubMenu=Pa,f.LangBtn=en,f.Logo=Ae,f.NotificationBar=ln,f.NotificationService=tn,f.PageContainer=rn,f.SkipLink=pn,f.SocialMediaLinks=He,f.SubHeader=vn,Object.defineProperty(f,Symbol.toStringTag,{value:"Module"})});
|